commit 2862d358bd3abad6ca0afca5e4bc5168c68a6e40 Author: Ramadhan Sjamsani Date: Wed Feb 19 11:17:17 2025 +0800 initial commit diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 0000000..105ce2d --- /dev/null +++ b/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/mensa-gpt.iml b/.idea/mensa-gpt.iml new file mode 100644 index 0000000..d0876a7 --- /dev/null +++ b/.idea/mensa-gpt.iml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..af479d5 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..9637cfa --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/HSCodeMasterBPS.pdf b/HSCodeMasterBPS.pdf new file mode 100644 index 0000000..bd4a73e Binary files /dev/null and b/HSCodeMasterBPS.pdf differ diff --git a/MensaResumeHS.xlsx b/MensaResumeHS.xlsx new file mode 100644 index 0000000..00a55ab Binary files /dev/null and b/MensaResumeHS.xlsx differ diff --git a/README.md b/README.md new file mode 100644 index 0000000..479c546 --- /dev/null +++ b/README.md @@ -0,0 +1,48 @@ +# Cara Running GPT Training +1. Siapkan file HSCodeMasterBPS.pdf dari https://www.bps.go.id/assets/docs/HSCode%20Master%20BPS.pdf +2. Siapkan file seluruh list import dari oracle sesuai format tblPibDtl.xlsx +3. Siapkan dokumen koreksi hs code dari bea cukai sesuai dengan format MensaResumeHs.xlsx +4. Applikasi hanya bisa dijalankan di linux, dikarenakan adanya library python +yang tidak bisa dipkaai di windows +5. Install Anaconda / Mini Conda. URL ada di https://www.anaconda.com/download/success +6. Buat virtual environment di conda dengan menjalankan command berikut +```shell +conda create -f environment.yml +``` +4. Aktivasi conda virtual environment +```shell +conda activate mensa-gpt +``` +5. Untuk memastikan library telah terdownload jalankan conda environment update +```shell +conda env update --file environment.yml +``` +6. Update open api key di dalam gpt_training, serta update gpt model apabila diperlukan +7. Jalankan main.py dengan python +```shell +python main.py +``` + + +## Konfigurasi tambahan +### Konfigurasi File HS Code BPS +1. Apabila ada perubahan halaman HS Code terbaru, silahkan update file `insw_scarapper.py` pada line 28. +Rubah nilai `start_page` dengan nilai yang sesuai +2. Nama file PDF serta path dari file tersebut dapat di sesuaikan di main.py pada pemanggilan fungsi `create_gpt_training_data` di parameter `hscode_bps_pdf` + +### Konfigurasi Dokumen Import Mensa +1. Sistem hanya menerima format file xlsx +2. Nama file excel serta path dari file tersebut dapat di sesuaikan di main.py pada pemanggilan fungsi +`create_gpt_training_data` di parameter `mensa_import_excel` +3. Usahakan menggunakan format yang sama persis seperti contoh. Apabila ada perubahan, penyesuaian dapat dilakukan di +file `insw_scarapper.py` pada line 37, dimana kolom A pada excel terdapat pada array index ke 0 + +### Konfigurasi Dokumen koreksi hs code dari bea cukai +1. Sistem hanya menerima format file xlsx +2. Nama file excel serta path dari file tersebut dapat di sesuaikan di main.py pada pemanggilan fungsi +`create_gpt_training_data` di parameter `mensa_custom_correction_excel` +3. 3. Usahakan menggunakan format yang sama persis seperti contoh. Apabila ada perubahan, penyesuaian dapat dilakukan di +file `insw_scarapper.py` pada line 46 dan 44, dimana kolom A pada excel terdapat pada array index ke 0 +4. line 44 digunakan untuk mengecek apakah hs code dari row tersebut kosong, sebagai indikator empty row +5. parameter usecols pada line 41 digunakan untuk memotong data yang terlalu besar dengan cara mengambil +data dari kolom tertentu saja diff --git a/__pycache__/gemini_trainer.cpython-310.pyc b/__pycache__/gemini_trainer.cpython-310.pyc new file mode 100644 index 0000000..57043df Binary files /dev/null and b/__pycache__/gemini_trainer.cpython-310.pyc differ diff --git a/__pycache__/gpt_trainer.cpython-310.pyc b/__pycache__/gpt_trainer.cpython-310.pyc new file mode 100644 index 0000000..311fc14 Binary files /dev/null and b/__pycache__/gpt_trainer.cpython-310.pyc differ diff --git a/__pycache__/insw_scrapper.cpython-310.pyc b/__pycache__/insw_scrapper.cpython-310.pyc new file mode 100644 index 0000000..a5046c3 Binary files /dev/null and b/__pycache__/insw_scrapper.cpython-310.pyc differ diff --git a/environment.yml b/environment.yml new file mode 100644 index 0000000..6237414 --- /dev/null +++ b/environment.yml @@ -0,0 +1,8 @@ +name: mensa-gpt +dependencies: + - pip: + - pdfplumber + - pandas + - openpyxl + - openai + - scikit-learn \ No newline at end of file diff --git a/gemini_trainer.py b/gemini_trainer.py new file mode 100644 index 0000000..be37756 --- /dev/null +++ b/gemini_trainer.py @@ -0,0 +1,17 @@ +import json +import csv +GEMINI_API_KEY = "AIzaSyCpLX-Ps4U9BxrKPL22bL_SAX1S30QF-Xg" + + +def generate_gemini_training_file(data): + training_temp_filename = "training_gemini.csv" + + # create files that contain training data in jsonl format + with open(training_temp_filename, 'w') as file: + fieldnames = ['text_input', 'output'] + writer = csv.DictWriter(file, fieldnames=fieldnames) + writer.writeheader() + writer.writerows(data) + + + diff --git a/gpt_trainer.py b/gpt_trainer.py new file mode 100644 index 0000000..4bae25d --- /dev/null +++ b/gpt_trainer.py @@ -0,0 +1,38 @@ +import json +from openai import OpenAI + +# we can use gpt-4o-mini , gpt-4o or gpt-3.5-turbo . right now we use mini for price reason +gpt_model = "gpt-4o-mini" +openai_api_key = "apikey" + +fine_tune_modelname = "mensa-hsai" + + +def train_gpt(data): + client = OpenAI(api_key=openai_api_key) + training_temp_filename = "training.jsonl" + + # create files that contain training data in jsonl format + with open(training_temp_filename, 'w') as file: + for entry in data: + json.dump(entry, file) + file.write('\n') + + # upload file training to gpt + training_file = client.files.create( + file=open(training_temp_filename, 'rb'), purpose='fine-tune') + print("Training file id:", training_file.id) + + # create job to start training + response = client.fine_tuning.jobs.create( + training_file=training_file.id, + model=gpt_model, + suffix=fine_tune_modelname + ) + + print("GPT Fine Tune job id:", response.id) + + + + + diff --git a/insw_scrapper.py b/insw_scrapper.py new file mode 100644 index 0000000..8448dc8 --- /dev/null +++ b/insw_scrapper.py @@ -0,0 +1,64 @@ +import numpy +import pdfplumber +import pandas as pd + + +def extract_table_from_pdf(pdf_path, start_page, skip_header): + data = [] + with pdfplumber.open(pdf_path) as pdf: + for i in range(start_page - 1, len(pdf.pages)): + page = pdf.pages[i] + tables = page.extract_table() + if tables: + if skip_header: + del tables[:1] + data.extend(tables) + if data: + df = pd.DataFrame(data) + return df + else: + print("No table found in the specified range.") + return None + + +def create_gpt_training_data(hscode_bps_pdf=None, mensa_import_excel=None, mensa_custom_correction_excel=None): + training_data = [] + # create training data in pandas from INSW PDF files. the newest data is started from page 864 + if hscode_bps_pdf is not None: + data = extract_table_from_pdf(pdf_path=hscode_bps_pdf, start_page=864, skip_header=True) + + for _, row in data.iterrows(): + training_data.append(construct_gpt_hs_training(product_desc=row[2], hs_code=row[1])) + + # create training data from mensa historical import data + if mensa_import_excel is not None: + import_hist = pd.read_excel(mensa_import_excel) + for _, row in import_hist.iterrows(): + training_data.append(construct_gpt_hs_training(product_desc=row[2], hs_code=row[1])) + + # create training data from mensa custom's correction import data + if mensa_custom_correction_excel is not None: + custom_correction = pd.read_excel(mensa_custom_correction_excel, usecols="B,K,L") + for _, row in custom_correction.iterrows(): + # if no hs code found (empty data), skip data append + if not row[2] or numpy.isnan(row[2]): + continue + training_data.append(construct_gpt_hs_training(product_desc=row[1], hs_code=row[2])) + + return training_data + + +def construct_gpt_hs_training(product_desc, hs_code): + if 1 == 1: + return construct_gemini_training_data(product_desc, hs_code) + + return ({ + "messages": [ + {"role": "system", "content": "You are mensa-hsai that able to determine HS Code" + " from a product including product in Bahasa Indonesia"}, + {"role": "user", "content": f'"What is the hs code for {product_desc}"'}, + {"role": "assistant", "content": f'{{"hs_code" : "{hs_code}", "uraian": "{product_desc}" }}'}]}) + + +def construct_gemini_training_data(product_desc, hs_code): + return {"text_input": f'What is the hs code for {product_desc}', "output": f'{hs_code}'} diff --git a/main.py b/main.py new file mode 100644 index 0000000..d2de94b --- /dev/null +++ b/main.py @@ -0,0 +1,14 @@ +from insw_scrapper import create_gpt_training_data +from gemini_trainer import generate_gemini_training_file +from gpt_trainer import train_gpt + +if __name__ == '__main__': + # extract_table_from_pdf(pdf_path="HSCodeMasterBPS.pdf", start_page=864, skip_header=True) + training_data = create_gpt_training_data( # hscode_bps_pdf="HSCodeMasterBPS.pdf", + mensa_import_excel="tblPibDtl.xlsx", + mensa_custom_correction_excel="MensaResumeHS.xlsx") + # train_gpt(data=training_data) + generate_gemini_training_file(training_data) + + +# See PyCharm help at https://www.jetbrains.com/help/pycharm/ diff --git a/mensa-gpt.zip b/mensa-gpt.zip new file mode 100644 index 0000000..80a27c6 Binary files /dev/null and b/mensa-gpt.zip differ diff --git a/tblPibDtl.xlsx b/tblPibDtl.xlsx new file mode 100644 index 0000000..0559497 Binary files /dev/null and b/tblPibDtl.xlsx differ diff --git a/training.jsonl b/training.jsonl new file mode 100644 index 0000000..355015a --- /dev/null +++ b/training.jsonl @@ -0,0 +1,38179 @@ +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592250\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592250\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592245\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592245\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592249\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592249\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592259\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592259\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592243\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592243\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592244\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592244\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592253\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592253\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592252\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592252\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592161\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592161\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592357\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592357\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592248\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592248\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592251\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592251\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592433\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592433\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592433\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592433\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIOTOX (BHN BAKU OBAT UTK PAKAN TERNAK) COA 020217-109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"BIOTOX (BHN BAKU OBAT UTK PAKAN TERNAK) COA 020217-109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIQUIPHOS STRONG (BHN BAKU UTK PAKAN TERNAK) COA 200117-073\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"LIQUIPHOS STRONG (BHN BAKU UTK PAKAN TERNAK) COA 200117-073\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM DAB /EP 7.0 (BHN BAKU OBAT) COA 1701127,29,30,31\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331100\", \"uraian\": \"METAMIZOLE SODIUM DAB /EP 7.0 (BHN BAKU OBAT) COA 1701127,29,30,31\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EPA DHA 44 37 (BHN BAKU OBAT) COA EE4437-170111\""}, {"role": "assistant", "content": "{\"hs_code\" : \"2906130000\", \"uraian\": \"EPA DHA 44 37 (BHN BAKU OBAT) COA EE4437-170111\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFIXIME (BHN BAKU OBAT) COA AP004-1701-1105\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFIXIME (BHN BAKU OBAT) COA AP004-1701-1105\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFIXIME MICRONIZED (BHN BAKU OBAT) COA AP004-1701-2032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFIXIME MICRONIZED (BHN BAKU OBAT) COA AP004-1701-2032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT)COA. 1603847188\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT)COA. 1603847188\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAPROTILINE HCL (BHN BAKU OBAT) COA 5000/13/16\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29214900\", \"uraian\": \"MAPROTILINE HCL (BHN BAKU OBAT) COA 5000/13/16\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SALBUTAMOL SULPHATE BP (BHN BAKU OBAT) COA SLL/SS/0217007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29225090\", \"uraian\": \"SALBUTAMOL SULPHATE BP (BHN BAKU OBAT) COA SLL/SS/0217007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTABIO ARV-S (BHN BAKU OBAT) COA.1701241K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"ASTABIO ARV-S (BHN BAKU OBAT) COA.1701241K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ61202630\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ61202630\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX ,200KG PLACTIC DRUM (BHN BAKU KOSMETIK) COA 0517010004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL MCX ,200KG PLACTIC DRUM (BHN BAKU KOSMETIK) COA 0517010004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609078,9079\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609078,9079\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT16080047\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT16080047\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT16030028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT16030028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01609079\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01609079\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT16100155\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT16100155\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT16090080\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT16090080\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01610585\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01610585\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01606108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01606108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT16030101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT16030101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU.G (TOCO) BHN BAKU MAKANAN, COA UT16090697\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU.G (TOCO) BHN BAKU MAKANAN, COA UT16090697\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B2 UNIVERSAL FINE POWDER,5KG BAG ALU (B. BAKU MAKANAN) COA UQ60610117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"B2 UNIVERSAL FINE POWDER,5KG BAG ALU (B. BAKU MAKANAN) COA UQ60610117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT16100279\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT16100279\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT16080047\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT16080047\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT16090032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT16090032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE01605027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"RONOXAN A (BHN BAKU MAKANAN) COA UE01605027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01610550\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01610550\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT16030028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT16030028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609078\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609078\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01610774\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01610774\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01606108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01606108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT16100279\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT16100279\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS BHN BAKU SUPLEMEN, COA UT16060009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS BHN BAKU SUPLEMEN, COA UT16060009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1608010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1608010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT GRANULATION 25KG BAL(B. BAKU SUPLEMEN) COA WB01016959\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT GRANULATION 25KG BAL(B. BAKU SUPLEMEN) COA WB01016959\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ60610100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ60610100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (B BAKU SUPLEMEN) COA UT16100155\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (B BAKU SUPLEMEN) COA UT16100155\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT16030101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT16030101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D PANTHENOL (BHN BAKU SUPLEMEN) COA TL01609089\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D PANTHENOL (BHN BAKU SUPLEMEN) COA TL01609089\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ61202630\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ61202630\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (B BAKU MAKANAN) COA UT16090697\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (B BAKU MAKANAN) COA UT16090697\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01607067\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01607067\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT16090336\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT16090336\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609078,79\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609078,79\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT16100155\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT16100155\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ60903296\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ60903296\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ60903296\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ60903296\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OPI1608010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU KOSMETIK) COA OPI1608010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00216051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00216051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY C (BHN BAKU KOSMETIK) COA UE01610072,74\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY C (BHN BAKU KOSMETIK) COA UE01610072,74\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01609089,90\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01609089,90\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91612142\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX 504010 (BHN BAKU MAKANAN) COA XW91612142\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DWI-BI (BHN BAKU MAKANAN) COA XW91612196\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"DWI-BI (BHN BAKU MAKANAN) COA XW91612196\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW91612128\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 C (BHN BAKU MAKANAN) COA XW91612128\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 C3 (BHN BAKU MAKANAN) COA XW91612129\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 C3 (BHN BAKU MAKANAN) COA XW91612129\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91701095,96\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91701095,96\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (B BAKU SUPLEMEN) COA WB00216021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (B BAKU SUPLEMEN) COA WB00216021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (B. BAKU SUPLEMEN) COA WB00216051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT (B. BAKU SUPLEMEN) COA WB00216051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT16090116\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT16090116\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01606108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU MAKANAN) COA UE01606108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT16090256,100279\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT16090256,100279\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D PANTHENOL (BHN BAKU MAKANAN) COA TL01609089\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D PANTHENOL (BHN BAKU MAKANAN) COA TL01609089\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ60713203\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ60713203\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ60610100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ60610100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT16080049\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT16080049\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL01610550\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU MAKANAN) COA TL01610550\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UE16090080\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UE16090080\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN), COA UT16080034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN), COA UT16080034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT16070012,21\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT16070012,21\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-96A-6CS (BHN BAKU KOSMETIK) COA 702877\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"KF-96A-6CS (BHN BAKU KOSMETIK) COA 702877\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG 16 (16KG) BHN BAKU KOSMETIK, COA 612397\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"KSG 16 (16KG) BHN BAKU KOSMETIK, COA 612397\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC SODIUM ASCORBATE REGULAR,25KG BAL (B. BAKU SUPLEMEN)COA HPN1702003,2013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC SODIUM ASCORBATE REGULAR,25KG BAL (B. BAKU SUPLEMEN)COA HPN1702003,2013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID REGULAR,25KG BAL (BAHAN BAKU SUPLEMEN) COA HPD1701047,2003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID REGULAR,25KG BAL (BAHAN BAKU SUPLEMEN) COA HPD1701047,2003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT16100155\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT16100155\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE PURIMOX POWDER (BHN BAKU OBAT) COA M4832 42,43,46,37,41\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE PURIMOX POWDER (BHN BAKU OBAT) COA M4832 42,43,46,37,41\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COATED ASCORBIC ACID TYPE EC (BHN BAKU SUPLEMEN) COA TL01611655\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"COATED ASCORBIC ACID TYPE EC (BHN BAKU SUPLEMEN) COA TL01611655\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00116619\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00116619\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GENI VIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"GENI VIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT16110036\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT16110036\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA 20170119\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17023010\", \"uraian\": \"DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA 20170119\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIVD160903-BGBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIVD160903-BGBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO161104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO161104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO-160802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO-160802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-170101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-170101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN VIRGIN COLD PRESSED DEODORISED ORGANIC OIL (B BAKU KOSMETIK)COA ARHV170101-SICBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ARGAN VIRGIN COLD PRESSED DEODORISED ORGANIC OIL (B BAKU KOSMETIK)COA ARHV170101-SICBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INCA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK)COA II170201-AI-D-BIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"INCA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK)COA II170201-AI-D-BIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIGELINE (BHN BAKU KOSMETIK) COA KA160904-B\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"KIGELINE (BHN BAKU KOSMETIK) COA KA160904-B\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA VIVD160903-BGBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA VIVD160903-BGBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE (BHN BAKU OBAT) COA X5-161217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE (BHN BAKU OBAT) COA X5-161217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN COA 32144/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN COA 32144/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYMARIN (BHN BAKU SUPLEMEN) COA 32142/M5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILYMARIN (BHN BAKU SUPLEMEN) COA 32142/M5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA/PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 31730/H1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA/PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 31730/H1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 32190/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 32190/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRTOGENOL (R) BHN BAKU SUPLEMEN, COA 80320/M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MIRTOGENOL (R) BHN BAKU SUPLEMEN, COA 80320/M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-161002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-161002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETAMETHASONE VALERATE (BHN BAKU OBAT) COA S-X21-161001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"BETAMETHASONE VALERATE (BHN BAKU OBAT) COA S-X21-161001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DICLOFENAC POTASSIUM (BHN BAKU OBAT) COA 303160625-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"DICLOFENAC POTASSIUM (BHN BAKU OBAT) COA 303160625-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIROXICAM (BHN BAKU OBAT) COA PRX2016010M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"PIROXICAM (BHN BAKU OBAT) COA PRX2016010M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 850/1000 SUGLETS 850/1000 (18/20 MESH) BHN BAKU OBAT UTK PEWARNA TABLET) COA.ST507527\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"850/1000 SUGLETS 850/1000 (18/20 MESH) BHN BAKU OBAT UTK PEWARNA TABLET) COA.ST507527\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK)COA ARP-1052296\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK)COA ARP-1052296\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-042696\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-042696\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT (B.BAKU KOSMETIK) COA HMVBD-061626,011817\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND WITCH HAZEL EXTRACT (B.BAKU KOSMETIK) COA HMVBD-061626,011817\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK)COA MCP-N-071116\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK)COA MCP-N-071116\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK) COA NMSP-D-011516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK) COA NMSP-D-011516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA EHN\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA EHN\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VISTANOL GDHR (BHN BAKU KOSMETIK) COA EJF\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"VISTANOL GDHR (BHN BAKU KOSMETIK) COA EJF\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS SILK 1000 (BHN BAKU KOSMETIK) COA DBD\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROMOIS SILK 1000 (BHN BAKU KOSMETIK) COA DBD\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6333802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6333802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPSULAC 60 (BHN BAKU OBAT) COA. L100404916A545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"CAPSULAC 60 (BHN BAKU OBAT) COA. L100404916A545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. L101854516A542, L101855016A542\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 200 (BHN BAKU OBAT) COA. L101854516A542, L101855016A542\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPHEROLAC 100 (BHN BAKU OBAT) COA L103875016A545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"SPHEROLAC 100 (BHN BAKU OBAT) COA L103875016A545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABLETTOSE 80 (BHN BAKU OBAT) COA L104315216A552\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"TABLETTOSE 80 (BHN BAKU OBAT) COA L104315216A552\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA L101854516A542\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 200 (BHN BAKU OBAT) COA L101854516A542\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPICILLIN TRIHYDRATE PURICILLIN COMPACTED (BHN BAKU OBAT),COA.M842042 S/D 44\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411020\", \"uraian\": \"AMPICILLIN TRIHYDRATE PURICILLIN COMPACTED (BHN BAKU OBAT),COA.M842042 S/D 44\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPICILLIN TRIHYDRATE PURICILLIN COMPACTED (BHN BAKU OBAT) COA M842040,45,46\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411020\", \"uraian\": \"AMPICILLIN TRIHYDRATE PURICILLIN COMPACTED (BHN BAKU OBAT) COA M842040,45,46\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334429\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334429\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT) COA B334435,36,41,42\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT) COA B334435,36,41,42\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 CN 10KG KA (BHN BAKU KOSMETIK) COA 1320553, 1320841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 CN 10KG KA (BHN BAKU KOSMETIK) COA 1320553, 1320841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 CN 10 KG KA (BHN BAKU KOSMETIK) COA 1321469\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 CN 10 KG KA (BHN BAKU KOSMETIK) COA 1321469\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIDIN DO CN 10KG CA (BHN BAKU KOSMETIK) COA 1322047\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIDIN DO CN 10KG CA (BHN BAKU KOSMETIK) COA 1322047\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIFE'S ARA (TM)'12' N-6 ARA POWDER (BHN BAKU MAKANAN) COA WB00117257\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"LIFE'S ARA (TM)'12' N-6 ARA POWDER (BHN BAKU MAKANAN) COA WB00117257\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TECA M (BHN BAKU KOSMETIK)COA SX001XF\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"TECA M (BHN BAKU KOSMETIK)COA SX001XF\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 87-28-5 SALICYLIC ACID ETHYLENE GLYCOL ESTER/GLYCOL SALICYLATE (B.BAKU KOSMETIK)COA.DE170224\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"87-28-5 SALICYLIC ACID ETHYLENE GLYCOL ESTER/GLYCOL SALICYLATE (B.BAKU KOSMETIK)COA.DE170224\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT16090080\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT16090080\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW91701272\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 C (BHN BAKU MAKANAN) COA XW91701272\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01610099,100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01610099,100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01610452\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01610452\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (B. BAKU SUPLEMEN) COA UT16100155\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (B. BAKU SUPLEMEN) COA UT16100155\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT16090080\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT16090080\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (B. BAKU MAKANAN) COA UT16050032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (B. BAKU MAKANAN) COA UT16050032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL01610585,589\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU MAKANAN) COA TL01610585,589\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO)(BHN BAKU MAKANAN) COA UT16090697\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO)(BHN BAKU MAKANAN) COA UT16090697\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11608011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP11608011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (B BAKU MAKANAN) COA UT16080033\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (B BAKU MAKANAN) COA UT16080033\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT16080033\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT16080033\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01611783\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01611783\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01610589\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01610589\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT GRANULATION,25KG BAL (B. BAKU SUPLEMEN) COA WB01016959\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT GRANULATION,25KG BAL (B. BAKU SUPLEMEN) COA WB01016959\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT16030101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT16030101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00316016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00316016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C 50 (BHN BAKU KOSMETIK) COA UE01611080\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C 50 (BHN BAKU KOSMETIK) COA UE01611080\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HS (BHN BAKU KOSMETIK) COA 0709150075\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL HS (BHN BAKU KOSMETIK) COA 0709150075\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P6UI4UA000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL TX (BHN BAKU KOSMETIK) COA P6UI4UA000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00428949\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"AMPHISOL K (BHN BAKU KOSMETIK) COA VE00428949\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU KOSMETIK) COA UT16090698\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU KOSMETIK) COA UT16090698\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NYSTATIN MICRONIZED (BHN BAKU OBAT) COA.C130469\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NYSTATIN MICRONIZED (BHN BAKU OBAT) COA.C130469\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-0140117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334910\", \"uraian\": \"DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-0140117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA.LC 001-7-801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 200 (BHN BAKU OBAT) COA.LC 001-7-801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEANOL BITARTRATE CRYST (BHN BAKU OBAT) COA 16/11180\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221910\", \"uraian\": \"DEANOL BITARTRATE CRYST (BHN BAKU OBAT) COA 16/11180\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ60907011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ60907011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BELSIL(R) DM 6000 (BAHAN BAKU KOSMETIK) COA OH43774\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"BELSIL(R) DM 6000 (BAHAN BAKU KOSMETIK) COA OH43774\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA 2614068\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA 2614068\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG161104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG161104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ61206139, 6014, 6016, 6018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ61206139, 6014, 6016, 6018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1702015 S/D 34\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"MEFENAMIC ACID (BHN BAKU OBAT) COA MA1702015 S/D 34\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEOMYCIN SULPHATE(B. BAKU OBAT UTK PAKAN TERNAK)COA 201701039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NEOMYCIN SULPHATE(B. BAKU OBAT UTK PAKAN TERNAK)COA 201701039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COLISTIN SULFATE (BHN BAKU OBAT UTK PAKAN TERNAK)COA KA-CS-20170102-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"COLISTIN SULFATE (BHN BAKU OBAT UTK PAKAN TERNAK)COA KA-CS-20170102-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NICLOSAMIDE ETHANOLAMINE SALT (BHN BAKU OBAT UTK PAKAN TERNAK) COA 20161201 S/D 206\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"NICLOSAMIDE ETHANOLAMINE SALT (BHN BAKU OBAT UTK PAKAN TERNAK) COA 20161201 S/D 206\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEVOFLOXACIN HEMIHYDRATE (BHN BAKU OBAT) COA C008-1609101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"LEVOFLOXACIN HEMIHYDRATE (BHN BAKU OBAT) COA C008-1609101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD3 HORIZON V450 UCHT1 120TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD3 HORIZON V450 UCHT1 120TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD45 HORIZON V500 HI30 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD45 HORIZON V500 HI30 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANTI MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD79A PE HM47 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD79A PE HM47 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD34 PERCP CY5.5 8G12 50 TESTS... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD34 PERCP CY5.5 8G12 50 TESTS... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD19 PE-CY7 SJ25C1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 5357809\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD19 PE-CY7 SJ25C1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 5357809\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD7 APC (M-T701) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD7 APC (M-T701) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 APC H7 SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 APC H7 SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CS AND T RUO BEADS 50 TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CS AND T RUO BEADS 50 TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD ACCURI C6 PLUS SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BD ACCURI C6 PLUS SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DELL OPTIPLEX WORKSTATION BUNDLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DELL OPTIPLEX WORKSTATION BUNDLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT C6 FLOW CYTOMETRY FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT C6 FLOW CYTOMETRY FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP778251\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP778251\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP777104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP777104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP777112\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP777112\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1701083 S/D 90, 2010 S/D 14\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"MEFENAMIC ACID (BHN BAKU OBAT) COA MA1701083 S/D 90, 2010 S/D 14\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180G7P023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180G7P023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702160382\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702160382\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND170201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND170201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISOLONE BP93/USP39 (BHN BAKU OBAT) COA.NPL170206\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISOLONE BP93/USP39 (BHN BAKU OBAT) COA.NPL170206\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANOCOBALAMINE VITAMIN B12 CRYSTALLINE (B.BAKU OBAT) COA.1604544296\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANOCOBALAMINE VITAMIN B12 CRYSTALLINE (B.BAKU OBAT) COA.1604544296\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.17100131\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29391900\", \"uraian\": \"PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.17100131\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA 17100131\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29391900\", \"uraian\": \"PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA 17100131\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT BLACK TEA POWDER (BHN BAKU MAKANAN) COA 2017020501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"INSTANT BLACK TEA POWDER (BHN BAKU MAKANAN) COA 2017020501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OMEPRAZOLE PELLETS 8,5 PCT (BHN BAKU OBAT) COA OP0217C016 S/D 19\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30034100\", \"uraian\": \"OMEPRAZOLE PELLETS 8,5 PCT (BHN BAKU OBAT) COA OP0217C016 S/D 19\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID REGULAR,25KG BAL (BAHAN BAKU SUPLEMEN) COA HPD1702003,4,17\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID REGULAR,25KG BAL (BAHAN BAKU SUPLEMEN) COA HPD1702003,4,17\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP05117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP05117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID REGULAR,25KG BAL (BAHAN BAKU SUPLEMEN) COA HPB1702066\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID REGULAR,25KG BAL (BAHAN BAKU SUPLEMEN) COA HPB1702066\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592765\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592765\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592780\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592780\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592779\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592779\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592778\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592778\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592769\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592769\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592760\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592760\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592781\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592781\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592770\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592770\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592768\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592768\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592771\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592771\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592773\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592773\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592762\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592762\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592763\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592763\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592772\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592772\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592761\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592761\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 1702EF5711\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"L-ARGININE LO (BHN BAKU KOSMETIK),COA 1702EF5711\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUMPLEMEN) COA 16229\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUMPLEMEN) COA 16229\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 16229\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 16229\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIX'L CANNULAS (BHN BAKU OBAT) COA 016.633\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"PIX'L CANNULAS (BHN BAKU OBAT) COA 016.633\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIX'L CANNULAS (BHN BAKU OBAT) COA 016.649\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"PIX'L CANNULAS (BHN BAKU OBAT) COA 016.649\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SKINBOOSTERS VITAL LIDOCAINE (BHN BAKU OBAT) COA 14838-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE SKINBOOSTERS VITAL LIDOCAINE (BHN BAKU OBAT) COA 14838-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SKINBOOSTERS VITAL LIGHT LIDOCAINE (BHN BAKU OBAT) COA 14765-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE SKINBOOSTERS VITAL LIGHT LIDOCAINE (BHN BAKU OBAT) COA 14765-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK), COA.162935\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE II (BHN BAKU KOSMETIK), COA.162935\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 162525\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 162525\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for K2 GLYCYRRHIZINATE ( BHN BAKU KOSMETIK), COA 161287\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"K2 GLYCYRRHIZINATE ( BHN BAKU KOSMETIK), COA 161287\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 161943\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ABSORAGE (BHN BAKU KOSMETIK) COA 161943\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 160173\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 160173\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR JU (BHN BAKU KOSMETIK) COA 162591\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"CLAIR JU (BHN BAKU KOSMETIK) COA 162591\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 162797\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 162797\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEBIVOLOL HYDROCHLORIDE (BHN BAKU OBAT) COA NH0040217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"NEBIVOLOL HYDROCHLORIDE (BHN BAKU OBAT) COA NH0040217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GENAGEN KB (BHN BAKU KOSMETIK) COA INB3212065\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34021990\", \"uraian\": \"GENAGEN KB (BHN BAKU KOSMETIK) COA INB3212065\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECITHIN (BHN BAKU OBAT) COA G0215702, G0215703\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232010\", \"uraian\": \"LECITHIN (BHN BAKU OBAT) COA G0215702, G0215703\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CILOSTAZOL USP (BHN BAKU OBAT) COA 6004CB2ARI\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29337900\", \"uraian\": \"CILOSTAZOL USP (BHN BAKU OBAT) COA 6004CB2ARI\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID REGULAR,25KG BAL (BAHAN BAKU SUPLEMEN) COA HPB1702126,2143,2027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID REGULAR,25KG BAL (BAHAN BAKU SUPLEMEN) COA HPB1702126,2143,2027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA620157\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA620157\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY FX YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA819882\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY FX YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA819882\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 INF OIL, 4,5KG PJUG (BHN BAKU MAKANAN) COA.TS00007062\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 INF OIL, 4,5KG PJUG (BHN BAKU MAKANAN) COA.TS00007062\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT17020011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT17020011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00616160\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00616160\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB01116170\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB01116170\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT17020011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT17020011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00616159\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00616159\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM DAB /EP 7.0 (BHN BAKU OBAT) COA 1701130,1701155, 1702303,2304\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331100\", \"uraian\": \"METAMIZOLE SODIUM DAB /EP 7.0 (BHN BAKU OBAT) COA 1701130,1701155, 1702303,2304\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITASMOOTH (R) 041 ( BHN BAKU OBAT) COA 121607123, 121607271\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28365010\", \"uraian\": \"VITASMOOTH (R) 041 ( BHN BAKU OBAT) COA 121607123, 121607271\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 121607216\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 121607216\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYDROCORTISONE ACETATE USP (BHN BAKU OBAT) COA 16004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"HYDROCORTISONE ACETATE USP (BHN BAKU OBAT) COA 16004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91701290,91\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91701290,91\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 103093-A (BHN BAKU MAKANAN) COA XW91701199\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 103093-A (BHN BAKU MAKANAN) COA XW91701199\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70102008,9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70102008,9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70102009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70102009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70102009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70102009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70102009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70102009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70102009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70102009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPI PX 507 (BHN BAKU MAKANAN) COA XW91701271\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"SPI PX 507 (BHN BAKU MAKANAN) COA XW91701271\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91702010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91702010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL01611784\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL01611784\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ60903303\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ60903303\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01611784\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01611784\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ60903303\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ60903303\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00316016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00316016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01610458\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01610458\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ60813243\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ60813243\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20161227\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20161227\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELOXICAM BP/EP (BHN BAKU OBAT) COA HMXCPK009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29341000\", \"uraian\": \"MELOXICAM BP/EP (BHN BAKU OBAT) COA HMXCPK009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 17021706\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 17021706\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELLUCIRE 44/14 (BHN BAKU KOSMETIK) COA 162020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELLUCIRE 44/14 (BHN BAKU KOSMETIK) COA 162020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK)COA NMP-L-1550506, 040827\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK)COA NMP-L-1550506, 040827\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-010736\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-010736\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-091417\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-091417\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK)COA MUP-031296\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK)COA MUP-031296\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE POWDER(B. BAKU KOSMETIK) COA CHP1170209\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND BIO-SODIUM HYALURONATE POWDER(B. BAKU KOSMETIK) COA CHP1170209\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BAHAN BAKU UNTUK PEWARNA TABLET) COA.SH592724\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BAHAN BAKU UNTUK PEWARNA TABLET) COA.SH592724\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II WHITE (BAHAN BAKU PEWARNA TABLET) COA.SH593050\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II WHITE (BAHAN BAKU PEWARNA TABLET) COA.SH593050\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY PURPLE (BAHAN BAKU PEWARNA TABLET) COA.SH593051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY PURPLE (BAHAN BAKU PEWARNA TABLET) COA.SH593051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL -EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592978\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL -EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592978\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592966\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592966\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592975\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592975\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592985\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592985\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592988\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592988\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592979\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592979\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592980\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592980\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592987\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592987\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE(BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592609\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE(BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592609\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592965\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592965\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592976\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592976\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592977\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592977\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517020018,19\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517020018,19\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SELVOL 540 PVOH 25 KG BAG (BHN BAKU KOSMETIK) COA PO41683061\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SELVOL 540 PVOH 25 KG BAG (BHN BAKU KOSMETIK) COA PO41683061\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYDROXOCOBALAMINE CHLORIDE HP (BHN BAKU OBAT) COA IR00002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"HYDROXOCOBALAMINE CHLORIDE HP (BHN BAKU OBAT) COA IR00002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA 20170222\""}, {"role": "assistant", "content": "{\"hs_code\" : \"11081200\", \"uraian\": \"CORN STARCH (BHN BAKU MAKANAN) COA 20170222\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MARCOL 52 (BHN BAKU OBAT UTK PAKAN TERNAK) COA 7104HH8502\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101989\", \"uraian\": \"MARCOL 52 (BHN BAKU OBAT UTK PAKAN TERNAK) COA 7104HH8502\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA 16552\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29225090\", \"uraian\": \"TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA 16552\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00116619\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00116619\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB0011161709\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB0011161709\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GENI VIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"GENI VIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT17020011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT17020011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT17010031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT17010031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NONIVAMIDE (BHN BAKU KOSMETIK) COA.20170215\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"NONIVAMIDE (BHN BAKU KOSMETIK) COA.20170215\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILDENAFIL CITRATE USP (BHN BAKU OBAT) COA SLC 429 03 17\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"SILDENAFIL CITRATE USP (BHN BAKU OBAT) COA SLC 429 03 17\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GLICLAZIDE (BHN BAKU OBAT) COA 160440\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29351000\", \"uraian\": \"GLICLAZIDE (BHN BAKU OBAT) COA 160440\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU MAKANAN) COA.TS00007208\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU MAKANAN) COA.TS00007208\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT16060053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT16060053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT16100279\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT16100279\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11611005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11611005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT15060006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT15060006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT16090051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT16090051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI16070004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI16070004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01510014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01510014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT16060009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT16060009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT16070020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT16070020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01609081\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01609081\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01606108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01606108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01611114\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01611114\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT16100279\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT16100279\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT16090051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT16090051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT16090037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT16090037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE01605028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"RONOXAN A (BHN BAKU MAKANAN) COA UE01605028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT16090331\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT16090331\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX TRS1 WITHOUT K1 (BHN BAKU MAKANAN) COA XW91702240\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX TRS1 WITHOUT K1 (BHN BAKU MAKANAN) COA XW91702240\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX TRS2 WITHOUT K1 (BHN BAKU MAKANAN) COA XW91702241\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX TRS2 WITHOUT K1 (BHN BAKU MAKANAN) COA XW91702241\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT16100703,707\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT16100703,707\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW91702304\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 C (BHN BAKU MAKANAN) COA XW91702304\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 - C3 (BHN BAKU MAKANAN) COA XW91702250\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 - C3 (BHN BAKU MAKANAN) COA XW91702250\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT16070020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT16070020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI16070004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI16070004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91702099\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX 504010 (BHN BAKU MAKANAN) COA XW91702099\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91702242\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91702242\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU SUPLEMEN) COA UT16090698,699\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU SUPLEMEN) COA UT16090698,699\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID FINE POWDER (BHN BAKU SUPLEMEN) COA TL01606527\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID FINE POWDER (BHN BAKU SUPLEMEN) COA TL01606527\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI16070004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI16070004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA WB09140224\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA WB09140224\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609081\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609081\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU KOSMETIK,COA UT16100155\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU KOSMETIK,COA UT16100155\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OPI1611006, 007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU KOSMETIK) COA OPI1611006, 007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RICE EXTRACT AGAR 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7032710\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RICE EXTRACT AGAR 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7032710\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6336799\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6336799\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6293897\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6293897\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6313683\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6313683\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6250573,6271554\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6250573,6271554\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6277974,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6277974,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6130548\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6130548\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA.6278558\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA.6278558\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6207871,6295747\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6207871,6295747\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TC LACTALBUMIN HYDROLYSATE 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 6026771\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TC LACTALBUMIN HYDROLYSATE 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 6026771\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6300873\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6300873\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6298992\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6298992\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8LE116\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8LE116\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6298992\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6298992\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8LE116\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8LE116\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POLYSORBATE 80 100G 1 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6363753\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POLYSORBATE 80 100G 1 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6363753\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE CRYSTAL E/ ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6182893,6354747\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"TUBE CRYSTAL E/ ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6182893,6354747\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH H5JA15\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH H5JA15\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6286718\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6286718\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6130534\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6130534\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6146706\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6146706\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6040519\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6040519\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6147880\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6147880\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009581\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009581\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7005840\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7005840\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6295747\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6295747\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CASAMINO ACIDS 500G. (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6266538\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CASAMINO ACIDS 500G. (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6266538\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PROTEOSE PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6256734\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PROTEOSE PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6256734\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6258957\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6258957\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BORDET GENGOU AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6250597\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BORDET GENGOU AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6250597\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6125618\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6125618\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CZAPEK DOX BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6271600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CZAPEK DOX BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6271600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D-MANNOSE 25G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6314651\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D-MANNOSE 25G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6314651\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6292604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6292604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6315878\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6315878\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEMOGLOBIN FREEZE DRIED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6315896\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEMOGLOBIN FREEZE DRIED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6315896\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL LAURYL TRYPTOSE BROTH 2KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6221523\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL LAURYL TRYPTOSE BROTH 2KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6221523\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE L-ARABINOSE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 5348621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE L-ARABINOSE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 5348621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE L-ARABINOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 5348620\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE L-ARABINOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 5348620\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6315865\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6315865\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6229558\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6229558\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MARINE BROTH 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7005834\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MARINE BROTH 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7005834\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MR-VP MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6153766\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MR-VP MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6153766\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NITRATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6067735\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE NITRATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6067735\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PURPLE BROTH BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6074970\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PURPLE BROTH BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6074970\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH.6229545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH.6229545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTONE GLUCOSE EXT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6221521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTONE GLUCOSE EXT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6221521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE PHOSPHATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 6334525\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTOSE PHOSPHATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 6334525\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 6305521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 6305521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6298992\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6298992\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6257879\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6257879\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6336799\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6336799\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6278835\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6278835\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6188647\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6188647\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6132974\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6132974\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6132955\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6132955\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6194922\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6194922\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6293927\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6293927\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6201909,6291752\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6201909,6291752\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6250612\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6250612\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6291710\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6291710\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6117955\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6117955\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTLE POTATO DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6271571\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTLE POTATO DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6271571\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2 AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6054655,6257924\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE R2 AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6054655,6257924\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 6313683\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 6313683\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6271554\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6271554\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6215665\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6215665\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6300873\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6300873\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009829\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009829\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7041754\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7041754\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6354800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6354800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6307974\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6307974\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6258712\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3MI 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6258712\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6320529,6328593\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6320529,6328593\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6336600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6336600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6306727,6354664\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6306727,6354664\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7030892\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7030892\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD34 APC BG12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA.7018612\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD34 APC BG12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA.7018612\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6350718\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6350718\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 6215857\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 6215857\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6326648\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6326648\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD10 FITC H110A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6354550\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD10 FITC H110A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6354550\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6183716,..\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6183716,..\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6328593\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6328593\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG L P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6354664\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG L P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6354664\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6333739\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6333739\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6138627\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6138627\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009833\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009833\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009704\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009704\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FOLIC ACID ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6090962\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE FOLIC ACID ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6090962\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7025950\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7025950\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6278712\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6278712\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6271585\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6271585\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6333738\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6333738\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6239957\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6239957\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTISERUM GRP A LYOPHILLIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6246962\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL O ANTISERUM GRP A LYOPHILLIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6246962\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTISERUM GRP C1 FTR ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6204871\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL O ANTISERUM GRP C1 FTR ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6204871\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL VI ANTISERUM LYOPHILLIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6092802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL VI ANTISERUM LYOPHILLIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6092802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 5049770\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 5049770\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI-HLA DR FITC L243... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7005516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANTI-HLA DR FITC L243... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7005516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6354550\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6354550\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6350718\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6350718\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7030892\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7030892\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6306886\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6306886\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7018612\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7018612\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 PER CP-CY5.5 201 50 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7025817\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD45 PER CP-CY5.5 201 50 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7025817\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6215837\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6215837\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6326648\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6326648\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MS LG KPA COMP BEAD SE 6ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6158689\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"MS LG KPA COMP BEAD SE 6ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6158689\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6258712\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL COAG PLASMA EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6258712\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6258712\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6258712\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6363745\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6363745\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7005527\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7005527\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6228624\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6228624\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7053972\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7053972\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IFN GAMMA APC RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7058535\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"IFN GAMMA APC RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7058535\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6243861\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6243861\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYTOFIX/CYTOPERM W/GOLGIPLUG... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7012738\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CYTOFIX/CYTOPERM W/GOLGIPLUG... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7012738\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 6243861\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD13 PE L138 100 TESTS RUO/GMP (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 6243861\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7005527\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7005527\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD20 APC L27 100 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6228624\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD20 APC L27 100 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6228624\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6259506\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6259506\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6211814\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6211814\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG170126\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG170126\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GOTALENE 120 GREEN 23 (BHN BAKU KOSMETIK) COA 3081327\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"GOTALENE 120 GREEN 23 (BHN BAKU KOSMETIK) COA 3081327\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER DMACA INDOLA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6307800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER DMACA INDOLA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6307800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6294631\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6294631\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6246831\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6246831\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7032755\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7032755\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER VOGES-PROSKAUER A (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6320902\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER VOGES-PROSKAUER A (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6320902\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER VOGES-PROSKAUER B (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6341681\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER VOGES-PROSKAUER B (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6341681\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20170227\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20170227\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM TYPE T 25KG (BHN BAKU OBAT) COA N143\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331100\", \"uraian\": \"METAMIZOLE SODIUM TYPE T 25KG (BHN BAKU OBAT) COA N143\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOBUTAMINE HCL (BHN BAKU OBAT) COA.16100696\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29222900\", \"uraian\": \"DOBUTAMINE HCL (BHN BAKU OBAT) COA.16100696\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACYCLOVIR MICRONIZED (BHN BAKU OBAT) COA 17100164\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"ACYCLOVIR MICRONIZED (BHN BAKU OBAT) COA 17100164\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACYCLOVIR MICRONIZED (BHN BAKU OBAT) COA 17100164\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"ACYCLOVIR MICRONIZED (BHN BAKU OBAT) COA 17100164\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX MAROON (BAHAN BAKU PEWARNA TABLET)COA DT659352\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX MAROON (BAHAN BAKU PEWARNA TABLET)COA DT659352\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT659381\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPAGLOS WHITE/OFF-WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT659381\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT657666\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT657666\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABLETTOSE 80 (BHN BAKU OBAT) COA L104310117A552\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"TABLETTOSE 80 (BHN BAKU OBAT) COA L104310117A552\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LABRAFIL M 1944 CS (BHN BAKU OBAT) COA.162433\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LABRAFIL M 1944 CS (BHN BAKU OBAT) COA.162433\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TEFOSE 63 (BHN BAKU OBAT) COA.163016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TEFOSE 63 (BHN BAKU OBAT) COA.163016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE AM PELLETS (BAHAN BAKU OBAT) COA.16E5008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE AM PELLETS (BAHAN BAKU OBAT) COA.16E5008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAMELLIA OIL (BHN BAKU KOSMETIK), COA M290146\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CAMELLIA OIL (BHN BAKU KOSMETIK), COA M290146\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91702176\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91702176\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01607811,TL01610815\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01607811,TL01610815\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC 20KG BAL (BHN BAKU KOSMETIK) COA OP81609008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC 20KG BAL (BHN BAKU KOSMETIK) COA OP81609008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708160089,90,91\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708160089,90,91\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT16110338\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT16110338\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01611113,4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01611113,4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001432940\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL SLX (BHN BAKU KOSMETIK) COA 0001432940\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OPI1611006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU KOSMETIK) COA OPI1611006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0014953\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0014953\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01610074, UE01612089\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY C 50 (BHN BAKU KOSMETIK) COA UE01610074, UE01612089\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P6V15UA000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL TX (BHN BAKU KOSMETIK) COA P6V15UA000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA MCS1602067\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA MCS1602067\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517020019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517020019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS ,25KG PC (BHN BAKU KOSMETIK) COA MCS1607004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL EHS ,25KG PC (BHN BAKU KOSMETIK) COA MCS1607004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES1605045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"ALLANTOIN (BHN BAKU KOSMETIK) COA ES1605045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC ,20KG BAL (BHN BAKU KOSMETIK) COA OP81609008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC ,20KG BAL (BHN BAKU KOSMETIK) COA OP81609008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001432940\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL SLX (BHN BAKU KOSMETIK) COA 0001432940\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LINEN OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA LIU170201-H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LINEN OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA LIU170201-H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO-160802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO-160802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK)COA EG543-170101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK)COA EG543-170101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-170101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-170101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANOLINE ANHYDROUS (BHN BAKU KOSMETIK) COA 4135\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LANOLINE ANHYDROUS (BHN BAKU KOSMETIK) COA 4135\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CORTISONE ACETATE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1600926226\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"CORTISONE ACETATE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1600926226\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID S 67 F (BHN BAKU OBAT) COA.572000-2160029/007-012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232010\", \"uraian\": \"LIPOID S 67 F (BHN BAKU OBAT) COA.572000-2160029/007-012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA 2614068\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA 2614068\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA 2614068\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA 2614068\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 20170302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 20170302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REFINED TRACED SHEA OLEIN (BHN BAKU KOSMETIK) COA 0000015611\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"REFINED TRACED SHEA OLEIN (BHN BAKU KOSMETIK) COA 0000015611\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LUZENAC PHARMA M (BHN BAKU KOSMETIK) COA S401/16\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25262010\", \"uraian\": \"LUZENAC PHARMA M (BHN BAKU KOSMETIK) COA S401/16\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTABIO ARV-S (BHN BAKU OBAT) COA.1703151K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"ASTABIO ARV-S (BHN BAKU OBAT) COA.1703151K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL. PANTHENOL 50L (BHN BAKU KOSMETIK) COA.TL01611650\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL. PANTHENOL 50L (BHN BAKU KOSMETIK) COA.TL01611650\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA.TL01610813\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA.TL01610813\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01611929,01701331...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01611929,01701331...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOGLYCOLIC ACID 99PCT COSMETIC GRADE (BHN BAKU KOSMETIK) COA.0000057944\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOGLYCOLIC ACID 99PCT COSMETIC GRADE (BHN BAKU KOSMETIK) COA.0000057944\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMMONIUM THIOGLYCOLATE 71PCT(60PCT TGA) BHN BAKU KOSMETIK, COA.0000057951\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"AMMONIUM THIOGLYCOLATE 71PCT(60PCT TGA) BHN BAKU KOSMETIK, COA.0000057951\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOGLYCOLIC ACID 80PCT COSMETIC GRADE, BHN BAKU KOSMETIK, COA 0000057954\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOGLYCOLIC ACID 80PCT COSMETIC GRADE, BHN BAKU KOSMETIK, COA 0000057954\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MONOETHANOLAMINE THIOGLYCOLATE 83PCT (50PCT TGA) BHN BAKU KOSMETIK, COA 0000057943\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221100\", \"uraian\": \"MONOETHANOLAMINE THIOGLYCOLATE 83PCT (50PCT TGA) BHN BAKU KOSMETIK, COA 0000057943\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DPG FG (BHN BAKU KOSMETIK) COA A02311D\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29094900\", \"uraian\": \"DPG FG (BHN BAKU KOSMETIK) COA A02311D\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PG USP (BHN BAKU KOSMETIK) COA A02311U\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"PG USP (BHN BAKU KOSMETIK) COA A02311U\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA MIE160401\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA MIE160401\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POMEGRANATE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA PUG161106-BGBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"POMEGRANATE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA PUG161106-BGBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEPPERMINT ORGANIC DISTILLATE 1:5 SB (BHN BAKU KOSMETIK)COA MEPD160803-BIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PEPPERMINT ORGANIC DISTILLATE 1:5 SB (BHN BAKU KOSMETIK)COA MEPD160803-BIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593394\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593394\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593386\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593386\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593387\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593387\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE YELLOWE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593385\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE YELLOWE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593385\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593442\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593442\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593503\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593503\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593390\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593390\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593384\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593384\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593384\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593384\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593384\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593384\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593391\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593391\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593413\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593413\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593392\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593392\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593417\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593417\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593383\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593383\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593412\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593412\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593393\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593393\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593416\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593416\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593395\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593395\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593538\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593538\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593425\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593425\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593536\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593536\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517020019,31\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517020019,31\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT16110011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT16110011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT17020013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT17020013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20170101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20170101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK) COA.16L034SV01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SAVONOL 16 (BAHAN BAKU KOSMETIK) COA.16L034SV01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM PD S25 1000 4WHTP (BHN BAKU KOSMETIK) COA. 050217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25070000\", \"uraian\": \"KAOLIN SUPREME LOREAL DECONTAM PD S25 1000 4WHTP (BHN BAKU KOSMETIK) COA. 050217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GOTALENE 120 BLUE 23 (BHN BAKU KOSMETIK) COA 3289011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"GOTALENE 120 BLUE 23 (BHN BAKU KOSMETIK) COA 3289011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS S-CAQ (BHN BAKU KOSMETIK) COA DBM\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROMOIS S-CAQ (BHN BAKU KOSMETIK) COA DBM\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA EJA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROTESIL LH (BHN BAKU KOSMETIK) COA EJA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VISTANOL GDHR (BHN BAKU KOSMETIK) COA EJF\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"VISTANOL GDHR (BHN BAKU KOSMETIK) COA EJF\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA DCG\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) COA DCG\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA DCA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA DCA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20170309\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20170309\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1611105 ,1612023, 1703032 S/D 41\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"MEFENAMIC ACID (BHN BAKU OBAT) COA MA1611105 ,1612023, 1703032 S/D 41\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-0380217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334910\", \"uraian\": \"DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-0380217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 17022101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 17022101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GLUCOSAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA WA201612004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"GLUCOSAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA WA201612004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND170302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND170302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISONE BP93/USP39 (BHN BAKU OBAT) COA.NPD 170310\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISONE BP93/USP39 (BHN BAKU OBAT) COA.NPD 170310\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE EP5/USP38 (BHN BAKU OBAT) COA.ND170103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE EP5/USP38 (BHN BAKU OBAT) COA.ND170103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BAHAN BAKU OBAT UTK PEWARNA TABLET) COA.SH593390\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BAHAN BAKU OBAT UTK PEWARNA TABLET) COA.SH593390\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BAHAN BAKU OBAT UTK PEWARNA TABLET) COA.SH593583\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BAHAN BAKU OBAT UTK PEWARNA TABLET) COA.SH593583\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BAHAN BAKU OBAT UTK PEWARNA TABLET) COA.SH593582\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BAHAN BAKU OBAT UTK PEWARNA TABLET) COA.SH593582\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593575\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593575\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593606\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593606\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1602146243\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1602146243\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 1603847188\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 1603847188\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPICILLIN TRIHYDRATE PURICILLIN COMPACTED (BHN BAKU OBAT),COA.M842056 S/D 60\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411020\", \"uraian\": \"AMPICILLIN TRIHYDRATE PURICILLIN COMPACTED (BHN BAKU OBAT),COA.M842056 S/D 60\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LUZENAC PHARMA M (BHN BAKU KOSMETIK) COA S820/16\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25262010\", \"uraian\": \"LUZENAC PHARMA M (BHN BAKU KOSMETIK) COA S820/16\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 70307\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 70307\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK)COA SFP-N-011427\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK)COA SFP-N-011427\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-031296\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-031296\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK) COA CPG-302327\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK) COA CPG-302327\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK)COA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK)COA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-152766\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-152766\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 2016I1001,2016G1532\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 2016I1001,2016G1532\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASFERM PLUS (BHN BAKU KOSMETIK) COA POTN-022037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ASFERM PLUS (BHN BAKU KOSMETIK) COA POTN-022037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT16060053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT16060053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ60709021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ60709021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01605103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01605103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT16090039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT16090039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01611114\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01611114\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT16120061\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT16120061\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01611705\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01611705\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT GRANULATION 25KG BAL (BHN BAKU SUPLEMEN) COA WB01016960\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT GRANULATION 25KG BAL (BHN BAKU SUPLEMEN) COA WB01016960\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1611007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1611007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ60710127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ60710127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT16100155\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT16100155\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT16060053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT16060053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1611007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1611007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 204005 (BHN BAKU MAKANAN) COA XW91702343\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 204005 (BHN BAKU MAKANAN) COA XW91702343\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT16080034,43\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT16080034,43\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CANTHAXANTHIN 10PCT CWS/S (BHN BAKU MAKANAN) COA UT16120003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"CANTHAXANTHIN 10PCT CWS/S (BHN BAKU MAKANAN) COA UT16120003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANANN) COA UQ60710127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANANN) COA UQ60710127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (B. BAKU MAKANAN) COA UT16110707,08\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (B. BAKU MAKANAN) COA UT16110707,08\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPI PX 507 (BHN BAKU MAKANAN) COA XW91703080\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"SPI PX 507 (BHN BAKU MAKANAN) COA XW91703080\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20160302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20160302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20160302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20160302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609081,82\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609081,82\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EPA DHA 44 37 (BHN BAKU OBAT) COA EE4437-170323\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"EPA DHA 44 37 (BHN BAKU OBAT) COA EE4437-170323\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA.70216\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA.70216\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA.61101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA.61101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLOZAPINE (BHN BAKU OBAT) COA 721112\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"CLOZAPINE (BHN BAKU OBAT) COA 721112\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA.1GC01CLB ZP48D 25MT\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA.1GC01CLB ZP48D 25MT\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA MCS1604004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL HMS (BHN BAKU KOSMETIK) COA MCS1604004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DISPENSED ISDN NACL 10/90 (BHN BAKU KOSMETIK) COA.193876\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"DISPENSED ISDN NACL 10/90 (BHN BAKU KOSMETIK) COA.193876\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA.LC 003-7-801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 200 (BHN BAKU OBAT) COA.LC 003-7-801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M595227,228\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M595227,228\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT )COA.ASG/03/030317, ASG/03/040317...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT )COA.ASG/03/030317, ASG/03/040317...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-96A-6CS (BHN BAKU KOSMETIK) COA 703882\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"KF-96A-6CS (BHN BAKU KOSMETIK) COA 703882\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP 100 (10KG) BHN BAKU KOSMETIK, COA 703494\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"KSP 100 (10KG) BHN BAKU KOSMETIK, COA 703494\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE POWDER (BHN BAKU MAKANAN) COA 0000157322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE POWDER (BHN BAKU MAKANAN) COA 0000157322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0331216\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0331216\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMBROXOL HYDROCHLORIDE POWDER (BHN BAKU OBAT) COA AHM/17025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"AMBROXOL HYDROCHLORIDE POWDER (BHN BAKU OBAT) COA AHM/17025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMBROXOL HYDROCHLORIDE POWDER (BHN BAKU OBAT) COA AHM/17026,SAMPLE FREE OF CHARGE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"AMBROXOL HYDROCHLORIDE POWDER (BHN BAKU OBAT) COA AHM/17026,SAMPLE FREE OF CHARGE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BROMHEXINE EP/BP (BHN BAKU OBAT) COA BHH/17001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"BROMHEXINE EP/BP (BHN BAKU OBAT) COA BHH/17001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GUAIFENESIN USP (BHN BAKU OBAT) COA GGE-1702043 S/D 60\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29091900\", \"uraian\": \"GUAIFENESIN USP (BHN BAKU OBAT) COA GGE-1702043 S/D 60\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FIBRE DRUM (DRUM KOSONG) INVOICE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"48192000\", \"uraian\": \"FIBRE DRUM (DRUM KOSONG) INVOICE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1703047,49 S/D 57, 59\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"MEFENAMIC ACID (BHN BAKU OBAT) COA MA1703047,49 S/D 57, 59\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BH01806\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BH01806\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROVIMIX D3-500 (BHN BAKU OBAT UTK PAKAN TERNAK) COA UE01608045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROVIMIX D3-500 (BHN BAKU OBAT UTK PAKAN TERNAK) COA UE01608045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROVIMIX E 50 SD (BHN BAKU OBAT UTK PAKAN TERNAK) COA UE01603002,3005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"ROVIMIX E 50 SD (BHN BAKU OBAT UTK PAKAN TERNAK) COA UE01603002,3005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROVIMIX AD3 1000/200,20KG BAL (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT16111404 S/D 406\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"ROVIMIX AD3 1000/200,20KG BAL (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT16111404 S/D 406\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROVIMIX C-EC (BHN BAKU OBAT UTK PAKAN TERNAK) COA TL01611695\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ROVIMIX C-EC (BHN BAKU OBAT UTK PAKAN TERNAK) COA TL01611695\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT16100099\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT16100099\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT16090038\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT16090038\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01606108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU MAKANAN) COA UE01606108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA 16100279,UT16110312\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA 16100279,UT16110312\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL01611114\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU MAKANAN) COA TL01611114\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11611007,OP11611016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP11611007,OP11611016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT16120157\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT16120157\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT16100099\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT16100099\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL01611711,TL01611714\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU MAKANAN) COA TL01611711,TL01611714\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT16120050\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT16120050\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT16090336\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT16090336\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ61206144\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ61206144\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ61206142, 44\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ61206142, 44\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70102037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70102037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70203053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70203053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70102039,83\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70102039,83\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70203053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70203053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX TYPE MM81 (105PCT) BHN BAKU MAKANAN, COA XW91703211\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX TYPE MM81 (105PCT) BHN BAKU MAKANAN, COA XW91703211\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT16060053,54\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT16060053,54\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ60809026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ60809026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI16070010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI16070010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01605103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01605103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT,GRANULATION 25KG BAL (BHN BAKU SUPLEMEN) COA WB01016965,66\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT,GRANULATION 25KG BAL (BHN BAKU SUPLEMEN) COA WB01016965,66\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT16100279\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT16100279\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01611114\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01611114\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT16120007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT16120007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT16090331\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT16090331\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11611007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11611007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ60813251\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ60813251\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ60610107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ60610107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01612970\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01612970\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)BHN BAKU SUPLEMEN, COA UT16100156\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO)BHN BAKU SUPLEMEN, COA UT16100156\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT16120052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT16120052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK,COA 02/16-GL4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK,COA 02/16-GL4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK,COA 02/16-GL4 ,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK,COA 02/16-GL4 ,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 016.633\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 016.633\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CANNULA 25G PIX'L 0,5X40 (BHN BAKU OBAT) COA 016.649\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"CANNULA 25G PIX'L 0,5X40 (BHN BAKU OBAT) COA 016.649\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SB VITAL LIDO 1 ML (BHN BAKU OBAT) COA 14838-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE SB VITAL LIDO 1 ML (BHN BAKU OBAT) COA 14838-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SB VITAL LIGHT LIDO 1ML (BHN BAKU OBAT) COA 14765-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE SB VITAL LIGHT LIDO 1ML (BHN BAKU OBAT) COA 14765-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT17010079,80\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT17010079,80\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20170101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20170101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01701354,2757\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01701354,2757\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-PANTHENOL 50L (BHN BAKU KOSMETIK) COA TL01703614\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL-PANTHENOL 50L (BHN BAKU KOSMETIK) COA TL01703614\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01701802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01701802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT SD, 15KG BOXALU (BHN BAKU SUPLEMEN) COA WB02170044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT SD, 15KG BOXALU (BHN BAKU SUPLEMEN) COA WB02170044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT17010080\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT17010080\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ61007012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ61007012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 162797\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 162797\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR JU (BHN BAKU KOSMETIK) COA 163044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"CLAIR JU (BHN BAKU KOSMETIK) COA 163044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 163261\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 163261\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 163170\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 163170\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 170083\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 170083\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-GLUTAMIC ACID ( BHN BAKU OBAT), COA 1000031052/170310\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224290\", \"uraian\": \"L-GLUTAMIC ACID ( BHN BAKU OBAT), COA 1000031052/170310\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ACORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01611929\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ACORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01611929\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT17020002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT17020002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20170321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20170321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA. DOC0721721\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"SODIUM CARBONATE IPH (BHN BAKU OBAT) COA. DOC0721721\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALDAVINE 5X (BHN BAKU KOSMETIK) COA 5450616\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ALDAVINE 5X (BHN BAKU KOSMETIK) COA 5450616\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829015062H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"B-WHITE (BHN BAKU KOSMETIK) COA 829015062H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830015092H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CAPIXYL (BHN BAKU KOSMETIK) COA 830015092H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769014752G\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CHRONOLINE (BHN BAKU KOSMETIK) COA 769014752G\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769014829G\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CHRONOLINE (BHN BAKU KOSMETIK) COA 769014829G\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXO-H (BHN BAKU KOSMETIK), COA 715024757G\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"EXO-H (BHN BAKU KOSMETIK), COA 715024757G\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANABLUE (BHN BAKU KOSMETIK), COA 5470017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LANABLUE (BHN BAKU KOSMETIK), COA 5470017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL (BHN BAKU KOSMETIK) COA 1631305\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LECIGEL (BHN BAKU KOSMETIK) COA 1631305\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5451416\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK) COA 5451416\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828014899G\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"NEUTRAZEN (BHN BAKU KOSMETIK) COA 828014899G\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRO-LIPO NEO (BHN BAKU KOSMETIK), COA 1625002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PRO-LIPO NEO (BHN BAKU KOSMETIK), COA 1625002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOXYL (BHN BAKU KOSMETIK) COA P186501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"RIBOXYL (BHN BAKU KOSMETIK) COA P186501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SWT-7 L (BHN BAKU KOSMETIK) COA 1628401\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SWT-7 L (BHN BAKU KOSMETIK) COA 1628401\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784024937G\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784024937G\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0014849\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0014849\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AC091KF FUCOGEL 1.5P 25 KG (BHN BAKU KOSMETIK) COA 0014687\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"AC091KF FUCOGEL 1.5P 25 KG (BHN BAKU KOSMETIK) COA 0014687\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA 20170302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17023010\", \"uraian\": \"DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA 20170302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM ..(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180GAP003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM ..(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180GAP003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180GAU003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180GAU003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E15 PREMIUM LV (BHN BAKU OBAT UTK PEWARNA TABLET)COA D011GA9L01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E15 PREMIUM LV (BHN BAKU OBAT UTK PEWARNA TABLET)COA D011GA9L01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E15 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011GA9L01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E15 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011GA9L01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NX0560M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NX0560M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17020051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17020051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOTAXIME SODIUM STERILE (BHN BAKU OBAT) COA 101161130\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOTAXIME SODIUM STERILE (BHN BAKU OBAT) COA 101161130\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA 102160902\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA 102160902\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTRIAXONE HYDROCHLORIDE (BHN BAKU OBAT) COA 102170332\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTRIAXONE HYDROCHLORIDE (BHN BAKU OBAT) COA 102170332\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-161001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-161001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP07217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP07217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 1703EF6413\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"L-ARGININE LO (BHN BAKU KOSMETIK),COA 1703EF6413\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-020186\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-020186\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CUCUMBER EXTRACT (BHN BAKU KOSMETIK) COA CUPD-010937\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND CUCUMBER EXTRACT (BHN BAKU KOSMETIK) COA CUPD-010937\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-042696\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-042696\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK)COA MUB-021186\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK)COA MUB-021186\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-061626\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-061626\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-040316\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-040316\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ESOMEPRAZOLE SODIUM STERILE (34PERCENT TO 38PERCENT W/W)COA AESS16003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"ESOMEPRAZOLE SODIUM STERILE (34PERCENT TO 38PERCENT W/W)COA AESS16003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLEANBIO CG (BHN BAKU KOSMETIK) COA.1117-86-8\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CLEANBIO CG (BHN BAKU KOSMETIK) COA.1117-86-8\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA JP511301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA JP511301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU OBAT) COA 162392\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU OBAT) COA 162392\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TEFOSE 63 (BHN BAKU OBAT) COA.163386\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TEFOSE 63 (BHN BAKU OBAT) COA.163386\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRANSCUTOL P (BAHAN BAKU OBAT) COA.162895\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TRANSCUTOL P (BAHAN BAKU OBAT) COA.162895\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE (BHN BAKU OBAT) COA X5-170204\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE (BHN BAKU OBAT) COA X5-170204\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 184565\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 184565\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 1PCT SD (BHN BAKU SUPLEMEN) COA UT17010004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 1PCT SD (BHN BAKU SUPLEMEN) COA UT17010004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT17010010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT17010010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GENI VIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"GENI VIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED(BHN BAKU OBAT UTK PAKAN TERNAK) COA MTP01317\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED(BHN BAKU OBAT UTK PAKAN TERNAK) COA MTP01317\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593665\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593665\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593703\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593703\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592955\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592955\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593676\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593676\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593675\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593675\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593666\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593666\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593691\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593691\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593674\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593674\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593704\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593704\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593705\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593705\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593706\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593706\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17010017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17010017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT17020014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT17020014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 (TM) '10'N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT17020014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 (TM) '10'N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT17020014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LUZENAC PHARMA M (BHN BAKU KOSMETIK) COA S820/16\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25262010\", \"uraian\": \"LUZENAC PHARMA M (BHN BAKU KOSMETIK) COA S820/16\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTELENE COMPLEX EGX 773 BHN BAKU KOSMETIK)COA PX773-170301-GS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PHYTELENE COMPLEX EGX 773 BHN BAKU KOSMETIK)COA PX773-170301-GS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-170301-GS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-170301-GS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LOTUS OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA NEN170202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LOTUS OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA NEN170202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSE OILY EXTRACT (BHN BAKU KOSMETIK)COA ROS170201-H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ROSE OILY EXTRACT (BHN BAKU KOSMETIK)COA ROS170201-H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO161104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO161104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO170301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO170301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALM 1.0 M + VIT.D3 100.000 (BHN BAKU MAKANAN) COA UT17010038\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALM 1.0 M + VIT.D3 100.000 (BHN BAKU MAKANAN) COA UT17010038\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) '10' N-3 FOOD POWDER S/SD (BHN BAKU MAKANAN) COA UT16070007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) '10' N-3 FOOD POWDER S/SD (BHN BAKU MAKANAN) COA UT16070007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHAMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA.RBA0661700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHAMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA.RBA0661700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0517030045,46\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0517030045,46\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P6X08UA00\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL TX (BHN BAKU KOSMETIK) COA P6X08UA00\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01612089\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY C 50 (BHN BAKU KOSMETIK) COA UE01612089\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01612089\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY C 50 (BHN BAKU KOSMETIK) COA UE01612089\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT16110708\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT16110708\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0517030045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0517030045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL A TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT16110338\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL A TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT16110338\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D PANTHENOL (BHN BAKU KOSMETIK) COA TL01611121, 25,28\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D PANTHENOL (BHN BAKU KOSMETIK) COA TL01611121, 25,28\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01610815\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01610815\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 ( BHN BAKU KOSMETIK), COA 0708160091,93\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL 5000 ( BHN BAKU KOSMETIK), COA 0708160091,93\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA.ROA074174\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA.ROA074174\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLONIDINE HCL (BHN BAKU OBAT) COA 180839\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"CLONIDINE HCL (BHN BAKU OBAT) COA 180839\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOPROFEN (BHN BAKU OBAT) COA 184386\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29183000\", \"uraian\": \"KETOPROFEN (BHN BAKU OBAT) COA 184386\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334449 S/D 51\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334449 S/D 51\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRISODIUM CITRATE DIHYDRATE FINE GRANULAR (B. BAKU MAKANAN, COA UJ703, UJ711\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"TRISODIUM CITRATE DIHYDRATE FINE GRANULAR (B. BAKU MAKANAN, COA UJ703, UJ711\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOBUTAMINE HCL (BHN BAKU OBAT) COA.17100196\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29222900\", \"uraian\": \"DOBUTAMINE HCL (BHN BAKU OBAT) COA.17100196\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK)COA SFP-N-022037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK)COA SFP-N-022037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-160127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-160127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-031296\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-031296\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK)COA OSLP-042027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK)COA OSLP-042027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-040827\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-040827\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SODIUM HYDROGEN (BHN BAKU KOSMETIK) COA 092016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND SODIUM HYDROGEN (BHN BAKU KOSMETIK) COA 092016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (B. BAKU KOSMETIK) COA CHP1170404\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (B. BAKU KOSMETIK) COA CHP1170404\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LICORICE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA GLG161102-BGBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LICORICE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA GLG161102-BGBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIVD160903-BGBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIVD160903-BGBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO161104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO161104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POMEGRANATE OILY EXTRACT (BHN BAKU KOSMETIK)COA PUG170101-H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"POMEGRANATE OILY EXTRACT (BHN BAKU KOSMETIK)COA PUG170101-H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIGELINE (BHN BAKU KOSMETIK)COA KA170201-B\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"KIGELINE (BHN BAKU KOSMETIK)COA KA170201-B\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POMEGRANATE ORGANIC OILY EXTRACT (BHN BAKU KOSMETIK)COA PUG170101-H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"POMEGRANATE ORGANIC OILY EXTRACT (BHN BAKU KOSMETIK)COA PUG170101-H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK)COA CFM170301 PGH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK)COA CFM170301 PGH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ULVA LACTUCA ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA ULL170401-GS-BGBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ULVA LACTUCA ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA ULL170401-GS-BGBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO170301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO170301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VISTANOL GDHR (BHN BAKU KOSMETIK) COA EJF\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"VISTANOL GDHR (BHN BAKU KOSMETIK) COA EJF\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS SILK 1000 (BHN BAKU KOSMETIK) COA DCE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROMOIS SILK 1000 (BHN BAKU KOSMETIK) COA DCE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA DCA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA DCA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20170101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20170101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT17010010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT17010010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17020051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17020051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIDOCAINE BASE (BHN BAKU OBAT) COA 183564\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"LIDOCAINE BASE (BHN BAKU OBAT) COA 183564\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIDOCAINE HCL (BHN BAKU OBAT) COA 183842\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"LIDOCAINE HCL (BHN BAKU OBAT) COA 183842\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 1703045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"ACESULFAME K (BHN BAKU OBAT) COA 1703045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GLUCOSAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA WA201701005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"GLUCOSAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA WA201701005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1703117 S/D 128, 4001,4002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"MEFENAMIC ACID (BHN BAKU OBAT) COA MA1703117 S/D 128, 4001,4002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYL SULFONYL METHANE USP (BHN BAKU OBAT) COA 17032001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"METHYL SULFONYL METHANE USP (BHN BAKU OBAT) COA 17032001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEVOFLOXACIN HEMIHYDRATE (BHN BAKU OBAT) COA C008-1612610\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"LEVOFLOXACIN HEMIHYDRATE (BHN BAKU OBAT) COA C008-1612610\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEFENAMIC ACID COMPACTED (BHN BAKU OBAT) COA MFAC-1612702-A\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"MEFENAMIC ACID COMPACTED (BHN BAKU OBAT) COA MFAC-1612702-A\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20170212\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20170212\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OXYTETRACYCLINE HYDROCHLORIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 16121107 S/D9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29413000\", \"uraian\": \"OXYTETRACYCLINE HYDROCHLORIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 16121107 S/D9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FIBRE DRUM (DRUM KOSONG) SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"48192000\", \"uraian\": \"FIBRE DRUM (DRUM KOSONG) SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517030046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517030046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ60513136\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ60513136\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01612096\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY C 50 (BHN BAKU KOSMETIK) COA UE01612096\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES1611065\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"ALLANTOIN (BHN BAKU KOSMETIK) COA ES1611065\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HS (BHN BAKU KOSMETIK) 0709150100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL HS (BHN BAKU KOSMETIK) 0709150100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001432940\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL SLX (BHN BAKU KOSMETIK) COA 0001432940\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01606108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE01606108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT16090083\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT16090083\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL01701611\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL01701611\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ60813251\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ60813251\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ60813251\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ60813251\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70202084\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70202084\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70202084\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70202084\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT16120060\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT16120060\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ61110248\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ61110248\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT16120060\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT16120060\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91703287\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91703287\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA XH20160302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA XH20160302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01609082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01609082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01701611\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01701611\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT16120007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT16120007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT16120007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT16120007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01701603\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01701603\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70202084\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70202084\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70303063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70303063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01701603,1611\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01701603,1611\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01701611\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01701611\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00216024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00216024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00316016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00316016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00216024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00216024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00216052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00216052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ60813251\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ60813251\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAJANAN) COA UQ70303063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAJANAN) COA UQ70303063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT16120024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT16120024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT16090336\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT16090336\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA 20170405\""}, {"role": "assistant", "content": "{\"hs_code\" : \"11081200\", \"uraian\": \"CORN STARCH (BHN BAKU MAKANAN) COA 20170405\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SHIGELA ANTIS POLY A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 5275835\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SHIGELA ANTIS POLY A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 5275835\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SHIGELLA ANTIS POLY A1 LYOPHILIZED(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6120544\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SHIGELLA ANTIS POLY A1 LYOPHILIZED(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6120544\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6328593,7003501,..\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6328593,7003501,..\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6197586\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6197586\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6211814\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6211814\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6354664,7045891\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6354664,7045891\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053972\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053972\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MS LG KPA COMP BEAD SET 6ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA.6158677\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"MS LG KPA COMP BEAD SET 6ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA.6158677\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD14 APC MPHLP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7030892\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD14 APC MPHLP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7030892\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 6183704\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 6183704\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6215857\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6215857\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD10 FITC H110A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7068890\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD10 FITC H110A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7068890\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6228624\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6228624\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI HLA DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7005516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANTI HLA DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7005516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6306886\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6306886\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6243861\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6243861\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD36 FITC CB38 (NL07) 100TST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6259506\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD36 FITC CB38 (NL07) 100TST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6259506\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD34 PE 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7038867\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD34 PE 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7038867\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LYSING BUFFER 10X CONCENTRATE 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6326641\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"LYSING BUFFER 10X CONCENTRATE 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6326641\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 7-AAD STAINING SOLUTION 2ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6274739\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"7-AAD STAINING SOLUTION 2ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6274739\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 FITC/CD34 PE 2D1/8G12 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6320578\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD45 FITC/CD34 PE 2D1/8G12 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6320578\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PERM/WASH BUFFER 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6188876\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PERM/WASH BUFFER 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6188876\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6307974\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6307974\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6358789\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6358789\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7003501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7003501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7045891\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG L&P 80... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7045891\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 5205615\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS OGAWA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 5205615\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6333739\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6333739\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6138627\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6138627\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7032642\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7032642\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOOTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7038998\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOOTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7038998\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FOLIC ACID ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060658\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE FOLIC ACID ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060658\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYCHECK FOT TOTAL COUNT 10/PK (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 16120201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HYCHECK FOT TOTAL COUNT 10/PK (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 16120201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7006694\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7006694\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009560\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009560\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7067595\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7067595\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL TINSDALE ENRICHMENT 6X15ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7039771\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL TINSDALE ENRICHMENT 6X15ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7039771\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7027501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7027501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7058904\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7058904\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SELENITE CYSTINE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6137923\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SELENITE CYSTINE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6137923\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6294631\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6294631\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC, 20 KG BAL (B. BAKU KOSMETIK) COA.OP81609009,81701024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC, 20 KG BAL (B. BAKU KOSMETIK) COA.OP81609009,81701024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 010317/004293\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 010317/004293\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594094\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594094\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594105\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594105\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594105\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594105\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594105\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594105\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594093\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594093\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593992\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593992\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593884\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593884\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594095\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594095\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIFE'S DHA S35-O100, 5KG ALUF (B.BAKU MAKANAN) COA VY00202404\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"LIFE'S DHA S35-O100, 5KG ALUF (B.BAKU MAKANAN) COA VY00202404\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CONCOMBRE HESPERIDE P 107 345 (BHN BAKU KOSMETIK) COA 0000006799\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"CONCOMBRE HESPERIDE P 107 345 (BHN BAKU KOSMETIK) COA 0000006799\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA 1 P001062 (BHN BAKU KOSMETIK) COA 0000003113\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA 1 P001062 (BHN BAKU KOSMETIK) COA 0000003113\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLAISANCE P116808 (BHN BAKU KOSMETIK) COA.0000007332\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"PLAISANCE P116808 (BHN BAKU KOSMETIK) COA.0000007332\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISONE (BHN BAKU OBAT) COA K03B20170114,115,207\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISONE (BHN BAKU OBAT) COA K03B20170114,115,207\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG EXTRACT G115 (COA: G0236801)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG EXTRACT G115 (COA: G0236801)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA LOT NO. 17021003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA LOT NO. 17021003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.SH594262\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.SH594262\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BAHAN BAKU OBAT UTK PEWARNA TABLET) COA.SH594260\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BAHAN BAKU OBAT UTK PEWARNA TABLET) COA.SH594260\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA.SH594261\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA.SH594261\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594280\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594280\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA 2627088\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA 2627088\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG170331\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG170331\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FDANDC YELLOW 6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP773657\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FDANDC YELLOW 6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP773657\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FDANDC BLUE 1/BRILLIANT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP775687\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FDANDC BLUE 1/BRILLIANT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP775687\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FDANDC YELLOW 6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP773654\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FDANDC YELLOW 6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP773654\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FDANDC YELLOW 5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP762352\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FDANDC YELLOW 5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP762352\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FDANDC BLUE 2/INDIGO CARMINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP776268\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FDANDC BLUE 2/INDIGO CARMINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP776268\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FDANDC BLUE 2/INDIGO CARMINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP776268\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FDANDC BLUE 2/INDIGO CARMINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP776268\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DANDC YELLOW 10 AL 15PCT - 20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP774844\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"DANDC YELLOW 10 AL 15PCT - 20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP774844\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FDANDC YELLOW 6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP773657\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FDANDC YELLOW 6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP773657\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FDANDC YELLOW 5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP762352\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FDANDC YELLOW 5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP762352\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID 325 MESH (BAHAN BAKU SUPLEMEN) COA HPD1703038,3074,3080,3081\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID 325 MESH (BAHAN BAKU SUPLEMEN) COA HPD1703038,3074,3080,3081\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BH02707\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BH02707\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS BP98 (8-80MESH) BHN BAKU MAKANAN, COA M703731,\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS BP98 (8-80MESH) BHN BAKU MAKANAN, COA M703731,\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC CALCIUM ASCORBATE DC,25KG BAL (BAHAN BAKU SUPLEMEN) COA T201612011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC CALCIUM ASCORBATE DC,25KG BAL (BAHAN BAKU SUPLEMEN) COA T201612011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID DC 97%,25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG1702009,2010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID DC 97%,25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG1702009,2010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC SODIUM ASCORBATE DC ,25KG BAL (BAHAN BAKU SUPLEMEN) COA HPS1701038\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC SODIUM ASCORBATE DC ,25KG BAL (BAHAN BAKU SUPLEMEN) COA HPS1701038\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COATED ASCORBIC ACID TYPE SC (BHN BAKU SUPLEMEN) COA TL01702623\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"COATED ASCORBIC ACID TYPE SC (BHN BAKU SUPLEMEN) COA TL01702623\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00116619\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00116619\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB00217177\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB00217177\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT SD,15KG BOX ALU (BHN BAKU SUPLEMEN) COA WB02170044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT SD,15KG BOX ALU (BHN BAKU SUPLEMEN) COA WB02170044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT16080022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT16080022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 (TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT17020004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 (TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT17020004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COAUT17010010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COAUT17010010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP780951\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP780951\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP780951\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP780951\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20170403\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20170403\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPASPRAY BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT660655\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPASPRAY BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT660655\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT660656\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPAGLOS WHITE/OFF-WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT660656\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPASPRAY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT660657\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPASPRAY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT660657\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT659402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT659402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT660712\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT660712\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP780951\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP780951\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP780951\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP780951\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU SUPLEMEN) COA.8MT170347\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30032000\", \"uraian\": \"STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU SUPLEMEN) COA.8MT170347\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMLODIPINE BESILATE BP/EP (BHN BAKU OBAT), COA. AMB/026/03/17\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29398000\", \"uraian\": \"AMLODIPINE BESILATE BP/EP (BHN BAKU OBAT), COA. AMB/026/03/17\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPICILLIN TRIHYDRATE PURICILLIN COMPACTED (BHN BAKU OBAT) COA. M842075, 76, 79, 80, 81\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411020\", \"uraian\": \"AMPICILLIN TRIHYDRATE PURICILLIN COMPACTED (BHN BAKU OBAT) COA. M842075, 76, 79, 80, 81\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NYSTATIN (BHN BAKU OBAT) COA.C114016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NYSTATIN (BHN BAKU OBAT) COA.C114016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NYSTATIN MICRONIZED (BHN BAKU OBAT) COA CC130521,23\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NYSTATIN MICRONIZED (BHN BAKU OBAT) COA CC130521,23\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1730003,1750072, 1750076\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"PARACETAMOL (BHN BAKU OBAT) COA 1730003,1750072, 1750076\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334406 S/D 8\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334406 S/D 8\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU MAKANAN) COA.TS00007500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU MAKANAN) COA.TS00007500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT660989\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT660989\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT660990\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT660990\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT660656\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPAGLOS WHITE/OFF-WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT660656\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA622330\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA622330\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA622293\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA622293\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID S 67 F (BHN BAKU OBAT) COA.576200-2160029/006, 576200-2160029/013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232010\", \"uraian\": \"LIPOID S 67 F (BHN BAKU OBAT) COA.576200-2160029/006, 576200-2160029/013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID S 67 F (BHN BAKU OBAT) COA.572000-2160029/007-012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232010\", \"uraian\": \"LIPOID S 67 F (BHN BAKU OBAT) COA.572000-2160029/007-012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU OBAT) COA.201600433,201600418\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"AL HYD WET GEL VAC 20 (BHN BAKU OBAT) COA.201600433,201600418\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 201700036,374\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 201700036,374\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP - 100 (BHN BAKU KOSMETIK) COA 703498\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"KSP - 100 (BHN BAKU KOSMETIK) COA 703498\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNE BUSTERSI (BHN BAKU KOSMETIK), COA.162600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNE BUSTERSI (BHN BAKU KOSMETIK), COA.162600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 163261\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 163261\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB ( BHN BAKU KOSMETIK), COA 163170\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB ( BHN BAKU KOSMETIK), COA 163170\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 163170\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 163170\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 170083\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 170083\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 162275\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 162275\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5457516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5457516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830015092H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CAPIXYL (BHN BAKU KOSMETIK) COA 830015092H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769014752G\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CHRONOLINE (BHN BAKU KOSMETIK) COA 769014752G\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769014829G\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CHRONOLINE (BHN BAKU KOSMETIK) COA 769014829G\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769014829G\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CHRONOLINE (BHN BAKU KOSMETIK) COA 769014829G\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK), COA 7850103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK), COA 7850103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK), COA 785014498G\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK), COA 785014498G\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL (BHN BAKU KOSMETIK) COA 1631312\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LECIGEL (BHN BAKU KOSMETIK) COA 1631312\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5451416\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK) COA 5451416\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELANOSTATINE 5BG (50PPM) (BHN BAKU KOSMETIK) COA 817044648G\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"MELANOSTATINE 5BG (50PPM) (BHN BAKU KOSMETIK) COA 817044648G\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELANOSTATINE 5PS (50PPM) (BHN BAKU KOSMETIK), COA 817015023H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"MELANOSTATINE 5PS (50PPM) (BHN BAKU KOSMETIK), COA 817015023H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828014899G\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"NEUTRAZEN (BHN BAKU KOSMETIK) COA 828014899G\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025025H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025025H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOXYL (BHN BAKU KOSMETIK) COA P0516501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"RIBOXYL (BHN BAKU KOSMETIK) COA P0516501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NONIVAMIDE 99PCT (BHN BAKU KOSMETIK) COA.20170410\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"NONIVAMIDE 99PCT (BHN BAKU KOSMETIK) COA.20170410\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TECA M (BHN BAKU KOSMETIK)COA 1730310040076\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"TECA M (BHN BAKU KOSMETIK)COA 1730310040076\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594161\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594161\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594163\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594163\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH591456\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH591456\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594147\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594147\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594143\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594143\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594144\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594144\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594164\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594164\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594146\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594146\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594150\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594150\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594157\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594157\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594145\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594145\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594149\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594149\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594158\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594158\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594148\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594148\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7068731\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7068731\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7068731\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7068731\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7005704\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7005704\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MATCHED SIP/FLOW CELL DRY (SAMPLE NO COMMERCIAL VALUE)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"MATCHED SIP/FLOW CELL DRY (SAMPLE NO COMMERCIAL VALUE)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6336799\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6336799\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7068731\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7068731\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6342932\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6342932\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA.6277974,6286718\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA.6277974,6286718\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6130548\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6130548\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 6130534\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 6130534\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6336929\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6336929\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXTRACT 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6207871,6295747\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE YEAST EXTRACT 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6207871,6295747\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6257879\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6257879\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6229763\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6229763\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6336799\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6336799\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6146706,6315880\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6146706,6315880\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6315667\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6315667\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6132955\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6132955\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6293897\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6293897\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6040519\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6040519\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7068731\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7068731\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6194922\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6194922\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6293927\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6293927\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6250612\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6250612\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6147880\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6147880\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6291710\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6291710\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MIO MEDIUM 500G. (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6117955\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MIO MEDIUM 500G. (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6117955\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6271636\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6271636\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6305521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6305521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6294544\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6294544\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6258853\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6258853\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6221518\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6221518\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6215665\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TCBS AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6215665\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6300873,7005840\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6300873,7005840\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7081569\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7081569\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6075719\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6075719\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7005704\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7005704\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7081569\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7081569\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7003923\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7003923\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8LE116\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8LE116\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PROTEOSE PEPTONE NO 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7044945\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PROTEOSE PEPTONE NO 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7044945\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6257503\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6257503\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GASPAK EZ LARGE INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7251515010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"GASPAK EZ LARGE INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7251515010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6307744\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE GN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6307744\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MICRO INOCULUM BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6342747\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MICRO INOCULUM BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6342747\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PALCAM MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6168855\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PALCAM MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6168855\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 6327604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 6327604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 6243907\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 6243907\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE STOCK CULTURE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6110932\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE STOCK CULTURE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6110932\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7052648\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7052648\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID0 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7003923\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID0 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7003923\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6357513\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6357513\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE CRYSTAL E/ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6354747\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"TUBE CRYSTAL E/ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6354747\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6362692\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6362692\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7027523\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7027523\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009836\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009836\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6278668\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6278668\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7041754\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7041754\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7080701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7080701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PROTEOSE PEPTONE NO 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7069660\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PROTEOSE PEPTONE NO 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7069660\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009829\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009829\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL BACTO AGAR 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7076592\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL BACTO AGAR 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7076592\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BIGGY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6300828\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BIGGY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6300828\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 63200616\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 63200616\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRAIN HEART INFUSION BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6090728\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRAIN HEART INFUSION BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6090728\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6320903,904\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6320903,904\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EE BROTH MOSSEL AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6315878\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EE BROTH MOSSEL AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6315878\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009564\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009564\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL LAURYL TRYPTOSE BROTH 2KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7017945\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL LAURYL TRYPTOSE BROTH 2KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7017945\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE L-ARABINOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 5348620\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE L-ARABINOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 5348620\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7011542\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7011542\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MOTILITY TEST MEDIUM BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 5348620\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MOTILITY TEST MEDIUM BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 5348620\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6319885\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6319885\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHENOL RED BROTH BASE BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6061569\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PHENOL RED BROTH BASE BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6061569\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6074970\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6074970\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6243907\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6243907\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE STOCK CULTURE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6110932\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE STOCK CULTURE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6110932\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009551\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009551\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRIPTYCASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6333797\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRIPTYCASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6333797\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6201879\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6201879\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REFERENCE PANEL AUTORDR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6007835\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"REFERENCE PANEL AUTORDR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6007835\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7081569\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7081569\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SYSTEM GASPAK 150 LARGE ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO OEGANISME) BATCH 6250601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"SYSTEM GASPAK 150 LARGE ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO OEGANISME) BATCH 6250601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6315869\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6315869\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TINSDALE BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 5005918\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TINSDALE BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 5005918\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7081781\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7081781\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7081781\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7081781\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7009568\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7009568\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7081781\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7081781\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7081781\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7081781\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6147899\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6147899\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6147899\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6147899\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 6291752\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 6291752\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7017943\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7017943\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6284972\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6284972\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CASEIN DIGEST 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7030894\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CASEIN DIGEST 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7030894\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6188781\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6188781\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6342932\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6342932\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 50-0G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7009849\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRILLIANT GREEN BILE 2PCT 50-0G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7009849\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6295747\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6295747\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BEEF EXTRACT POWDER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6298524\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BEEF EXTRACT POWDER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6298524\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT16120050,51\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT16120050,51\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT16090336\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT16090336\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ60809026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ60809026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 ( BHN BAKU SUPLEMEN) COA SI16070010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 ( BHN BAKU SUPLEMEN) COA SI16070010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT17010053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT17010053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01611726\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01611726\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT GRANULATION ,25KG BAL (BHN BAKU SUPLEMEN) COA WB01016967\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT GRANULATION ,25KG BAL (BHN BAKU SUPLEMEN) COA WB01016967\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT16090083\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT16090083\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL01612127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU MAKANAN) COA TL01612127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT16110312\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT16110312\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT16090039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT16090039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01606108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU MAKANAN) COA UE01606108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL01611726\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU MAKANAN) COA TL01611726\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE01605029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"RONOXAN A (BHN BAKU MAKANAN) COA UE01605029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT16060054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT16060054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01609082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01609082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT16110312\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT16110312\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01612127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01612127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT16120007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT16120007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT16060009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT16060009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ60809026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ60809026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)(BHN BAKU SUPLEMEN) COA UT16120157\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO)(BHN BAKU SUPLEMEN) COA UT16120157\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI16070010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI16070010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE(BHN BAKU SUPLEMEN) COA UE01605103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE(BHN BAKU SUPLEMEN) COA UE01605103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01611726\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01611726\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT GRANULATION ,25KGBAL (BHN BAKU SUPLEMEN) COA WB01016967\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT GRANULATION ,25KGBAL (BHN BAKU SUPLEMEN) COA WB01016967\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01606108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01606108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ61110248\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ61110248\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01701310\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01701310\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT17010053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT17010053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01609082,83\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01609082,83\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO)(BHN BAKU MAKANAN) COA UT16110711\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO)(BHN BAKU MAKANAN) COA UT16110711\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B2 UNIVERSAL FINE POWDER, 5K BAG ALU (BHN BAKU MAKANAN) COA UQ60610117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"B2 UNIVERSAL FINE POWDER, 5K BAG ALU (BHN BAKU MAKANAN) COA UQ60610117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17010053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17010053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70303064\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70303064\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO)(BHN BAKU MAKANAN) COA UT16110711,712\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO)(BHN BAKU MAKANAN) COA UT16110711,712\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT16120060\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT16120060\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT16120157\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT16120157\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT16110710,711\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT16110710,711\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW917032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 C (BHN BAKU MAKANAN) COA XW917032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070-C3 (BHN BAKU MAKANAN) COA XW91703254\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070-C3 (BHN BAKU MAKANAN) COA XW91703254\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL01611726\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU MAKANAN) COA TL01611726\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ60809026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ60809026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01611726\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01611726\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01606108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01606108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20160302, 60104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20160302, 60104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70303064\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70303064\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD(BHN BAKU MAKANAN) COA UT16120007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD(BHN BAKU MAKANAN) COA UT16120007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01611086\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY C 50 (BHN BAKU KOSMETIK) COA UE01611086\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA MCS1603817,818\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA MCS1603817,818\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91703399\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91703399\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91703400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91703400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01611086\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY C 50 (BHN BAKU KOSMETIK) COA UE01611086\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND LICORICE EXTRACT (BHN BAKU KOSMETIK)COA GGB-032986,011017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND LICORICE EXTRACT (BHN BAKU KOSMETIK)COA GGB-032986,011017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ALWHITE 7 (BHN BAKU KOSMETIK) COA CLHW-020186\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND ALWHITE 7 (BHN BAKU KOSMETIK) COA CLHW-020186\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-030126\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-030126\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK)COA U170417\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK)COA U170417\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-042696\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-042696\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-011637\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-011637\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF(B. BAKU KOSMETIK) COA HMVBD-061626\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND WITCH HAZEL EXTRACT PF(B. BAKU KOSMETIK) COA HMVBD-061626\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK)COA OSLP-042027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK)COA OSLP-042027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-040827\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-040827\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 040717\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 040717\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND OLIGO HA (BHN BAKU KOSMETIK) COA OHA-040316\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND OLIGO HA (BHN BAKU KOSMETIK) COA OHA-040316\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA.05630217,06670317...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29351000\", \"uraian\": \"SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA.05630217,06670317...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE BP MICRONISED (BHN BAKU OBAT) COA 08430317,09400417...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29351000\", \"uraian\": \"SULPHAMETHOXAZOLE BP MICRONISED (BHN BAKU OBAT) COA 08430317,09400417...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLOPURINOL (BHN BAKU OBAT) COA 17008AY3ARII\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"ALLOPURINOL (BHN BAKU OBAT) COA 17008AY3ARII\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOXYCYCLINE MONOHYDRATE (BHN BAKU OBAT) COA 3042-201704003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29413000\", \"uraian\": \"DOXYCYCLINE MONOHYDRATE (BHN BAKU OBAT) COA 3042-201704003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITICOLINE SODIUM (BHN BAKU OBAT) COA 3A26170312\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"CITICOLINE SODIUM (BHN BAKU OBAT) COA 3A26170312\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RANITIDINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA RH006 04 17, RH 007 04 17\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29321900\", \"uraian\": \"RANITIDINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA RH006 04 17, RH 007 04 17\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RBD SUNFLOWER OIL (BHN BAKU KOSMETIK) COA KKLJ-07/17\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"RBD SUNFLOWER OIL (BHN BAKU KOSMETIK) COA KKLJ-07/17\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLOPURINOL BP (BHN BAKU OBAT) COA ALP0051216\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"ALLOPURINOL BP (BHN BAKU OBAT) COA ALP0051216\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHOLINE L-BITARTRATE (BAHAN BAKU OBAT) COA.3012169\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29231000\", \"uraian\": \"CHOLINE L-BITARTRATE (BAHAN BAKU OBAT) COA.3012169\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PERFECTAMYL AC (BHN BAKU KOSMETIK)COA G5252805\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PERFECTAMYL AC (BHN BAKU KOSMETIK)COA G5252805\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 87-28-5 SALICYLIC ACID ETHYLENE GLYCOL ESTER/GLYCOL SALICYLATE (B.BAKU KOSMETIK)COA.DE170423\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"87-28-5 SALICYLIC ACID ETHYLENE GLYCOL ESTER/GLYCOL SALICYLATE (B.BAKU KOSMETIK)COA.DE170423\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA.70325\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA.70325\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA.70216\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA.70216\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAPROTILINE HCL (BHN BAKU OBAT) COA 5000/02/17\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29214900\", \"uraian\": \"MAPROTILINE HCL (BHN BAKU OBAT) COA 5000/02/17\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOTAXIME SODIUM STERILE (BHN BAKU OBAT) COA P202300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOTAXIME SODIUM STERILE (BHN BAKU OBAT) COA P202300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOTAXIME SODIUM STERILE (BHN BAKU OBAT) COA P202800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOTAXIME SODIUM STERILE (BHN BAKU OBAT) COA P202800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS BP98 (8-80MESH) BHN BAKU MAKANAN, COA M703731,\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS BP98 (8-80MESH) BHN BAKU MAKANAN, COA M703731,\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 20170302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 20170302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA.ROA091174\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA.ROA091174\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OXYTOCIN POWDER (SYNTHETIC) (BAHAN BAKU OBAT) COA.OP-140317\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29371900\", \"uraian\": \"OXYTOCIN POWDER (SYNTHETIC) (BAHAN BAKU OBAT) COA.OP-140317\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY EXTRACT (BHN BAKU KOSMETIK)COA CHS170401\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"COMPLEX DRY EXTRACT (BHN BAKU KOSMETIK)COA CHS170401\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIVD160903-BGBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIVD160903-BGBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LINEN OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA LIU170201-H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LINEN OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA LIU170201-H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO161104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO161104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO170301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO170301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91704126\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX 504010 (BHN BAKU MAKANAN) COA XW91704126\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70302159\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70302159\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT16120024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT16120024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT16120025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT16120025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70303074\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70303074\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70302159\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70302159\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70302159,2161,2164\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70302159,2161,2164\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT16120024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT16120024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT16120024,25\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT16120024,25\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN), COA UT16120025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN), COA UT16120025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P6X08UA000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL TX (BHN BAKU KOSMETIK) COA P6X08UA000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91704142\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91704142\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES1611065\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"ALLANTOIN (BHN BAKU KOSMETIK) COA ES1611065\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HS (BHN BAKU KOSMETIK) COA 0709150100,101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL HS (BHN BAKU KOSMETIK) COA 0709150100,101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01606108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE01606108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70303074\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70303074\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11703021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP11703021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT16120025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT16120025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11703021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11703021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT17010054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT17010054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT16090083\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT16090083\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT16090039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT16090039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT16110158\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT16110158\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11703021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP11703021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KANAMYCIN SULFATE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 16201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"KANAMYCIN SULFATE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 16201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OXYTETRACYCLINE DIHYDRATE... (BHN BAKU OBAT UTK PAKAN TERNAK) COA ZT170330\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29413000\", \"uraian\": \"OXYTETRACYCLINE DIHYDRATE... (BHN BAKU OBAT UTK PAKAN TERNAK) COA ZT170330\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GLUCOSAMINE HCL (BHN BAKU OBAT) COA XH2017040901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"GLUCOSAMINE HCL (BHN BAKU OBAT) COA XH2017040901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYL SULFONYL METHANE USP (BHN BAKU OBAT) COA 20170406\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"METHYL SULFONYL METHANE USP (BHN BAKU OBAT) COA 20170406\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INOSITOL (BHN BAKU OBAT) COA 201703071\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"INOSITOL (BHN BAKU OBAT) COA 201703071\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 1704028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"ACESULFAME K (BHN BAKU OBAT) COA 1704028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1612024, 4045,4047 S/D 57\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"MEFENAMIC ACID (BHN BAKU OBAT) COA MA1612024, 4045,4047 S/D 57\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OXYTETRACYCLINE HYDROCHLORIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 16121115\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29413000\", \"uraian\": \"OXYTETRACYCLINE HYDROCHLORIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 16121115\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRANTEL PAMOATE (BHN BAKU OBAT) COA PRP1612022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"PYRANTEL PAMOATE (BHN BAKU OBAT) COA PRP1612022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1704084,86 S/D 97\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"MEFENAMIC ACID (BHN BAKU OBAT) COA MA1704084,86 S/D 97\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA.MLAH007041718\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29341000\", \"uraian\": \"MELOXICAM BP (BHN BAKU OBAT) COA.MLAH007041718\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121607482, 7486\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121607482, 7486\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYOSCINE BUTYLBROMIDE EP/BP (BHN BAKU OBAT) COA.2510417\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"HYOSCINE BUTYLBROMIDE EP/BP (BHN BAKU OBAT) COA.2510417\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANOCOBALAMINE VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1704770694\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANOCOBALAMINE VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1704770694\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FRENCH MARITIME PINE BARK EXTRACT PYCNOGENOL (R) (BHN BAKU OBAT) COA T/5770\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"FRENCH MARITIME PINE BARK EXTRACT PYCNOGENOL (R) (BHN BAKU OBAT) COA T/5770\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA 20170408\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17023010\", \"uraian\": \"DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA 20170408\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA.163021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELUCIRE 44/14 (BHN BAKU OBAT) COA.163021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE AM PELLETS (BHN BAKU OBAT) COA.16E5008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE AM PELLETS (BHN BAKU OBAT) COA.16E5008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU OBAT) COA.01/16-GAAK\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT KIWI (BAHAN BAKU OBAT) COA.01/16-GAAK\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU OBAT) COA.01/16-GAAK, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT KIWI (BAHAN BAKU OBAT) COA.01/16-GAAK, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLOZAPINE (BHN BAKU OBAT) COA 710106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"CLOZAPINE (BHN BAKU OBAT) COA 710106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17020002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17020002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17030008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17030008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17030008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17030008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP09817\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP09817\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 17011806\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 17011806\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OPI1703021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU KOSMETIK) COA OPI1703021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT17010003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT17010003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01612128,29\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01612128,29\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01610815\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01610815\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0004132940\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL SLX (BHN BAKU KOSMETIK) COA 0004132940\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708160096,97\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708160096,97\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX VH (BHN BAKU KOSMETIK) COA UF16335018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"BEAUPLEX VH (BHN BAKU KOSMETIK) COA UF16335018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX 25KG PC (BHN BAKU KOSMETIK) COA MCS1605018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL MCX 25KG PC (BHN BAKU KOSMETIK) COA MCS1605018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC 20KG BAL (BHN BAKU KOSMETIK) COA OP81702001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC 20KG BAL (BHN BAKU KOSMETIK) COA OP81702001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6130534\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6130534\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6333858,7009856\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6333858,7009856\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6333802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6333802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6278737\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6278737\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7005840\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7005840\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7033659\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7033659\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7033659\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7033659\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.SH594583\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.SH594583\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BAHAN BAKU OBAT UTK PEWARNA TABLET) COA.SH594689\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BAHAN BAKU OBAT UTK PEWARNA TABLET) COA.SH594689\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.SH594423\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.SH594423\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLOPURINOL (BHN BAKU OBAT) COA 17011AY3ARII\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"ALLOPURINOL (BHN BAKU OBAT) COA 17011AY3ARII\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PERMETHRIN PHARMA GRADE BHN BAKU OBAT COA 174046001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29163990\", \"uraian\": \"PERMETHRIN PHARMA GRADE BHN BAKU OBAT COA 174046001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN SODIUM STERILE (BHN BAKU OBAT) COA 25M50060\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN SODIUM STERILE (BHN BAKU OBAT) COA 25M50060\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00616156\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00616156\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00616156\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00616156\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00616156\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00616156\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00616156\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00616156\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00616156\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00616156\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70203030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70203030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN/PHOSPHOLIPIDS (BAHAN BAKU SUPPLEMEN) COA 10130/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILYBIN/PHOSPHOLIPIDS (BAHAN BAKU SUPPLEMEN) COA 10130/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN/PHOSPHOLIPIDS (BAHAN BAKU SUPPLEMEN) COA 10236/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILYBIN/PHOSPHOLIPIDS (BAHAN BAKU SUPPLEMEN) COA 10236/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for P.GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 32113/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"P.GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 32113/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLOTRIMAZOLE MICRONIZED (BHN BAKU OBAT ) COA 201703170316\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"CLOTRIMAZOLE MICRONIZED (BHN BAKU OBAT ) COA 201703170316\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 INF OIL, 4,5KG PJUG (BHN BAKU SUPLEMEN) COA.TS00007817\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 INF OIL, 4,5KG PJUG (BHN BAKU SUPLEMEN) COA.TS00007817\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20170417\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20170417\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 (TM)'10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA.UT17020005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 (TM)'10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA.UT17020005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 20170314\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 20170314\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KOLLICOAT IR WHITE 2 25KG (BHN BAKU OBAT UTK PEWARNA TABLET) COA 25165316K0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"KOLLICOAT IR WHITE 2 25KG (BHN BAKU OBAT UTK PEWARNA TABLET) COA 25165316K0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KOLLICOAT IR WHITE 2 25KG (BHN BAKU OBAT UTK PEWARNA TABLET) COA 25165316K0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"KOLLICOAT IR WHITE 2 25KG (BHN BAKU OBAT UTK PEWARNA TABLET) COA 25165316K0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA. WP781126\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA. WP781126\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP PHTHALAVIN NF CLEAR (BAHAN BAKU OBAT UTK PEWARNA TABLET) COA. WP781127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP PHTHALAVIN NF CLEAR (BAHAN BAKU OBAT UTK PEWARNA TABLET) COA. WP781127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA. WP781130\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA. WP781130\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP781128\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP781128\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE BP MICRONISED (BHN BAKU OBAT) COA.11170417,11190417...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29351000\", \"uraian\": \"SULPHAMETHOXAZOLE BP MICRONISED (BHN BAKU OBAT) COA.11170417,11190417...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0230716\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0230716\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NX0562M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NX0562M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334453 S/D 55\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334453 S/D 55\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ61206150\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ61206150\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA 16552\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29225090\", \"uraian\": \"TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA 16552\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOPAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA.17100091\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29222900\", \"uraian\": \"DOPAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA.17100091\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS BP98 (8-80MESH) BHN BAKU MAKANAN, COA M704084\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS BP98 (8-80MESH) BHN BAKU MAKANAN, COA M704084\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LINCOMYCIN HCL (BHN BAKU OBAT) COA 1704069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"LINCOMYCIN HCL (BHN BAKU OBAT) COA 1704069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEVOFLOXACIN HEMIHYDRATE (BHN BAKU OBAT) COA C008-1702309\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"LEVOFLOXACIN HEMIHYDRATE (BHN BAKU OBAT) COA C008-1702309\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT BLACK TEA POWDER (BHN BAKU MAKANAN) COA 2017020501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"INSTANT BLACK TEA POWDER (BHN BAKU MAKANAN) COA 2017020501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594614\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594614\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH5946\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH5946\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594625\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594625\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593538\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593538\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594626\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594626\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594623\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594623\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594605\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594605\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594613\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594613\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594624\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594624\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594629\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594629\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593812\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593812\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUMPLEMEN) COA 17027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUMPLEMEN) COA 17027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 16229\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 16229\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU OBAT), COA UJ715\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU OBAT), COA UJ715\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU OBAT) COA UJ715\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU OBAT) COA UJ715\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU OBAT), COA UJ717\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU OBAT), COA UJ717\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU OBAT) COA UJ717\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU OBAT) COA UJ717\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ALWHITE 7 (BHN BAKU KOSMETIK) COA CLHW-020186\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND ALWHITE 7 (BHN BAKU KOSMETIK) COA CLHW-020186\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-030126\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-030126\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK)COA U170511\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK)COA U170511\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012547\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012547\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-040416\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-040416\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-011637\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-011637\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND OLIGO HA (BHN BAKU KOSMETIK)COA OHA-040316\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND OLIGO HA (BHN BAKU KOSMETIK)COA OHA-040316\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MINIPORYL (BHN BAKU KOSMETIK) COA 832015256H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"MINIPORYL (BHN BAKU KOSMETIK) COA 832015256H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5471517\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5471517\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5471517\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5471517\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALDAVINE 5X (BHN BAKU KOSMETIK) COA 5478717\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ALDAVINE 5X (BHN BAKU KOSMETIK) COA 5478717\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830015092H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CAPIXYL (BHN BAKU KOSMETIK) COA 830015092H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK), COA 769015093H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CHRONOLINE (BHN BAKU KOSMETIK), COA 769015093H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK), COA 785014499H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK), COA 785014499H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELANOSTATINE 5BG (50PPM) (BHN BAKU KOSMETIK) COA 817044833G\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"MELANOSTATINE 5BG (50PPM) (BHN BAKU KOSMETIK) COA 817044833G\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELANOSTATINE 5PS (50PPM) (BHN BAKU KOSMETIK) COA 817014258G\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"MELANOSTATINE 5PS (50PPM) (BHN BAKU KOSMETIK) COA 817014258G\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SWT 7L (BHN BAKU KOSMETIK) COA 1628401\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SWT 7L (BHN BAKU KOSMETIK) COA 1628401\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK), COA 784025025H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"TYROSTAT 11 (BHN BAKU KOSMETIK), COA 784025025H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEFENSCALP (BHN BAKU KOSMETIK) COA 785075173H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"DEFENSCALP (BHN BAKU KOSMETIK) COA 785075173H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6336799\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6336799\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6278668\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6278668\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7047892\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7047892\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7041754\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7041754\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009955\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009955\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6286718\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6286718\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6278558\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6278558\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA.6295747,7033659\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA.6295747,7033659\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6336799\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6336799\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 6315880,7009836\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 6315880,7009836\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009849\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009849\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6293897\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6293897\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009966\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009966\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7068731\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7068731\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6314700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6314700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7009829\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7009829\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6250612\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6250612\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7041754\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7041754\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6271562,7080702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6271562,7080702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009813\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE STERILE RODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009813\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7053795\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7053795\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6271571,700983\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6271571,700983\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7009581\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7009581\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009955\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009955\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6139903\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6139903\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6320612\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6320612\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G. (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7005704,7018909\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE XLD AGAR 500G. (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7005704,7018909\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6160813\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6160813\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANEL VIEWER EUROPE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 111616\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PANEL VIEWER EUROPE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 111616\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE KOSER CITRATE MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 5055842\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE KOSER CITRATE MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 5055842\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7065938\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7065938\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8LE116\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8LE116\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE CRYSTAL E/ ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053551\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"TUBE CRYSTAL E/ ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053551\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SOLUTION BACTERIOSTAT CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3477C419\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"SOLUTION BACTERIOSTAT CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3477C419\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SOLUTION CLEANING CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1166C514\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"SOLUTION CLEANING CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1166C514\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT MAINTENANCE C6 FLOW CYT 1-YR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT MAINTENANCE C6 FLOW CYT 1-YR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7083628\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7083628\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7027991,70549\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7027991,70549\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB STERILE SINGLE SWAB(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH CACI15\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CULTURESWAB STERILE SINGLE SWAB(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH CACI15\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6130548\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6130548\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7093593\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7093593\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7103621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7103621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6278668\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6278668\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7068859\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7068859\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6342932,7009568\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SKIM MILK 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6342932,7009568\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7109793\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7109793\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7081569, 7087782\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7081569, 7087782\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7005857\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7005857\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHYTONE PEPTONE 454G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6287929\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PHYTONE PEPTONE 454G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6287929\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PROTEOSE PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7005507\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PROTEOSE PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7005507\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7088694\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7088694\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6278737\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6278737\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6320612\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6320612\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ADONITOL 10G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6314645\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ADONITOL 10G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6314645\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAILACTO AGAR 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6322551\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAILACTO AGAR 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6322551\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BIGGY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6300828\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BIGGY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6300828\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BILE SALT NO 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6069958\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BILE SALT NO 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6069958\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BORDET GENGOU AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6250597\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BORDET GENGOU AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6250597\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6201884\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6201884\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7038965\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7038965\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DUICITOL 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DUICITOL 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6315878\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6315878\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ENDO AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6026738\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ENDO AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6026738\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EOSIN METHYLENE BLUE AG HHT 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 63200616\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EOSIN METHYLENE BLUE AG HHT 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 63200616\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL SULFATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6307826\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LAURYL SULFATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6307826\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6278861\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6278861\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE L-ARABINOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 5348620\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE L-ARABINOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 5348620\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7081822\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7081822\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6320614\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6320614\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLEOF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7067719\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLEOF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7067719\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 4056159\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 4056159\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6315869\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6315869\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6074970\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6074970\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6258791\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6258791\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6229545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6229545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6243907\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6243907\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE STANDARD METHODS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7017680\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE STANDARD METHODS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7017680\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009551\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009551\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRIPTYCASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6278889\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRIPTYCASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6278889\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6333797\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6333797\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009836\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009836\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL LAURYL TRYPTOSE BROTH0 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7017945\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL LAURYL TRYPTOSE BROTH0 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7017945\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE CRYSTAL E/ ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO OEGANISME) BATCH 7053551\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"TUBE CRYSTAL E/ ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO OEGANISME) BATCH 7053551\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7009568\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7009568\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE KOSER CITRATE MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 5055842\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE KOSER CITRATE MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 5055842\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO BOTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7110677\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PPLO BOTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7110677\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HUILE DE COPRAH RAFF GV 24/26 (BHN BAKU KOSMETIK)COA BA006245\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15131910\", \"uraian\": \"HUILE DE COPRAH RAFF GV 24/26 (BHN BAKU KOSMETIK)COA BA006245\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK)COA MS/2460/B15/LOREAL/270916\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK)COA MS/2460/B15/LOREAL/270916\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA MS/70120/B15YOI/LOREAL/021016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA MS/70120/B15YOI/LOREAL/021016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA MS/70120/B15/LOREAL/270916\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA MS/70120/B15/LOREAL/270916\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT SD, 15KG BOX ALU (BHN BAKU SUPLEMEN) COA WB02170045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT SD, 15KG BOX ALU (BHN BAKU SUPLEMEN) COA WB02170045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU OBAT), COA UJ7167\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU OBAT), COA UJ7167\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRISODIUM CITRATE DIHYDRATE FINE GRANULAR (BHN BAKU MAKANAN), COA UJ7147\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"TRISODIUM CITRATE DIHYDRATE FINE GRANULAR (BHN BAKU MAKANAN), COA UJ7147\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID PPL-600 (BHN BAKU OBAT) COA.577200-2170186/005-006 (2)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232010\", \"uraian\": \"LIPOID PPL-600 (BHN BAKU OBAT) COA.577200-2170186/005-006 (2)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA 20170412\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17023010\", \"uraian\": \"DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA 20170412\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1705001 S/D 8\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"MEFENAMIC ACID (BHN BAKU OBAT) COA MA1705001 S/D 8\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRISEOFULVIN (BHN BAKU OBAT) COA BP/EP-161223\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"GRISEOFULVIN (BHN BAKU OBAT) COA BP/EP-161223\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6307974\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6307974\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7003501,7010897\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7003501,7010897\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6347631\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6347631\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6197586\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6197586\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7045891\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7045891\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6043596\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6043596\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 5205615\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS OGAWA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 5205615\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYTOFIX/CYTOPERM SOLN KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7033753\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CYTOFIX/CYTOPERM SOLN KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7033753\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009833\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009833\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 7005527\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 7005527\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7030892,706888\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7030892,706888\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7018612\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7018612\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6350858\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6350858\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6215857\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6215857\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7068890\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7068890\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6354550\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6354550\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6228624\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6228624\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7025817\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7025817\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI HLA DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7055792\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANTI HLA DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7055792\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD33 PE P67.6 100 TESTS RUO/ GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7073574\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD33 PE P67.6 100 TESTS RUO/ GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7073574\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6243862,7061652\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6243862,7061652\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANNEXIN V FITC APOP DTEC KIT I 100 TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7026585\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANNEXIN V FITC APOP DTEC KIT I 100 TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7026585\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD CST BEADS KIT 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 63097\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BD CST BEADS KIT 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 63097\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7004830\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7004830\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7045891\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7045891\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6258903\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6258903\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6197586\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6197586\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6043596\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6043596\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 5205615\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS OGAWA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 5205615\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6333739\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6333739\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6138627,7060854\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6138627,7060854\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7032642\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7032642\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6251799\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"TUBE EGG YOLK ENRICHMENT 50PCT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6251799\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ANAEROBE ID(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7065850\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ANAEROBE ID(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7065850\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-GREEN YEAST AND MOLD... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6278712\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE M-GREEN YEAST AND MOLD... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6278712\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC 9 GROUP D (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7045553\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL POLYMYXIN B ANTIMICROBIC 9 GROUP D (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7045553\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTISERUM FACTOR 9 GROUP D (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6008891\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL O ANTISERUM FACTOR 9 GROUP D (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6008891\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTISERUM GRP A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6246962\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL O ANTISERUM GRP A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6246962\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6092802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6092802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTISERUM FACTOR 2 GROUP A (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6253972\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL O ANTISERUM FACTOR 2 GROUP A (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6253972\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VBRIO CHOLERAE ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 5049770\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL VBRIO CHOLERAE ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 5049770\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6211814\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6211814\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SOLUTION DECONTAMINATION CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 3477C409\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"SOLUTION DECONTAMINATION CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 3477C409\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7027501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7027501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER DMACA INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7053856\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER DMACA INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7053856\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SELENITE CYSTINE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6137923\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SELENITE CYSTINE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6137923\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANOCOBALAMINE VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1704790698\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANOCOBALAMINE VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1704790698\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE EP6/USP38 (BHN BAKU OBAT) COA.NMP170506\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE EP6/USP38 (BHN BAKU OBAT) COA.NMP170506\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND170401\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND170401\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISONE BP93/USP39 (BHN BAKU OBAT) COA.NPD170310\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISONE BP93/USP39 (BHN BAKU OBAT) COA.NPD170310\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E15 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011GCML01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E15 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011GCML01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E15 PREMIUM LV (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011H21L01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E15 PREMIUM LV (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011H21L01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM (BHN BAKU OBAT UTK PEWARNA TABLET)COA D0180GCG012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM (BHN BAKU OBAT UTK PEWARNA TABLET)COA D0180GCG012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D0180GAV005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D0180GAV005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180GCG012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180GCG012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA DDH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) COA DDH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA DCA, DDB\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA DCA, DDB\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK-GB (BHN BAKU KOSMETIK) COA DBN\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROMOIS WK-GB (BHN BAKU KOSMETIK) COA DBN\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA EKB\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROTESIL LH (BHN BAKU KOSMETIK) COA EKB\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VISTANOL GDHR (BHN BAKU KOSMETIK) COA EJF\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"VISTANOL GDHR (BHN BAKU KOSMETIK) COA EJF\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00447271, 50970\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"AMPHISOL K (BHN BAKU KOSMETIK) COA VE00447271, 50970\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT17010007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT17010007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01612129,30\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01612129,30\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX VH (BHN BAKU KOSMETIK) COA UF16335018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"BEAUPLEX VH (BHN BAKU KOSMETIK) COA UF16335018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT16090083\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT16090083\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT16090083\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT16090083\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517030046,40078\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517030046,40078\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P6X08UA000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL TX (BHN BAKU KOSMETIK) COA P6X08UA000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01606109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE01606109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL01701613\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL01701613\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70203029,70203030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70203029,70203030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609083\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609083\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN), COA UT16120057\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN), COA UT16120057\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUP0LEMEN), COA UQ61113292,3294\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUP0LEMEN), COA UQ61113292,3294\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01701613\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01701613\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00216053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00216053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00216053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00216053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01701613\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01701613\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70402171\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70402171\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70402171\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70402171\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (BHN BAKU SUPLEMEN) COA UT16110713,16,17\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (BHN BAKU SUPLEMEN) COA UT16110713,16,17\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00316017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00316017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91704126,4127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX 504010 (BHN BAKU MAKANAN) COA XW91704126,4127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DWI BI (BHN BAKU MAKANAN) COA XW91704128\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"DWI BI (BHN BAKU MAKANAN) COA XW91704128\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70402171\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70402171\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT16110312\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT16110312\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN,COA UT16120157\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN,COA UT16120157\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE01605030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"RONOXAN A (BHN BAKU MAKANAN) COA UE01605030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECHINACEA PURP D.AQ.E>0,8PCT (BAHAN BAKU SUPPLEMEN) COA 10266/M2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ECHINACEA PURP D.AQ.E>0,8PCT (BAHAN BAKU SUPPLEMEN) COA 10266/M2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECHINACEA PURP D.AQ.E.>0,8PCT (BAHAN BAKU SUPPLEMEN) COA 10226/M2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ECHINACEA PURP D.AQ.E.>0,8PCT (BAHAN BAKU SUPPLEMEN) COA 10226/M2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VALERIAN D.H.E.>0,8PCT VAL.AC (BHN BAKU SUPLEMEN) COA 10288/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VALERIAN D.H.E.>0,8PCT VAL.AC (BHN BAKU SUPLEMEN) COA 10288/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECHINACEA PURP.D.AQ.E.>0,8PCT (BHN BAKU SUPLEMEN) COA 10226/M2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ECHINACEA PURP.D.AQ.E.>0,8PCT (BHN BAKU SUPLEMEN) COA 10226/M2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYMARIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 10000/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILYMARIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 10000/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINKGO BILOBA DRY EXTRACT HF (BHN BAKU SUMPLEMEN) COA 17050\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINKGO BILOBA DRY EXTRACT HF (BHN BAKU SUMPLEMEN) COA 17050\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIVE POLYPHENOLIC DRY EXTRACT (BHN BAKU SUPLEMEN) COA 16414\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"OLIVE POLYPHENOLIC DRY EXTRACT (BHN BAKU SUPLEMEN) COA 16414\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1602146243\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1602146243\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EMPILAN CIS (BAHAN BAKU KOSMETIK) COA.BLW0012389\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34021390\", \"uraian\": \"EMPILAN CIS (BAHAN BAKU KOSMETIK) COA.BLW0012389\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104311117A552\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104311117A552\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M595269 S/D 71\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M595269 S/D 71\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1750239,243,245\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"PARACETAMOL (BHN BAKU OBAT) COA 1750239,243,245\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA PHOSPHOLIP BHN BAKU SUPLEMEN COA 31730 M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA PHOSPHOLIP BHN BAKU SUPLEMEN COA 31730 M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GREEN TEA DRY DEC.EX PHOSPHOL BHN BAKU SUPLEMEN COA 32157M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GREEN TEA DRY DEC.EX PHOSPHOL BHN BAKU SUPLEMEN COA 32157M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA TRITERPENES BHN BAKU SUPLEMEN COA 32227 M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA TRITERPENES BHN BAKU SUPLEMEN COA 32227 M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BILBERRY V. MYRTILLUS ET. EX 36PCT BHN BAKU SUPLEMEN COA 32361M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BILBERRY V. MYRTILLUS ET. EX 36PCT BHN BAKU SUPLEMEN COA 32361M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for P.GINSENG DRY EXTRACT 10PCT COL BHN BAKU SUPLEMEN COA 32113M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"P.GINSENG DRY EXTRACT 10PCT COL BHN BAKU SUPLEMEN COA 32113M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VACCINIUM MYRTILLUS DRY EX BHN BAKU SUPLEMEN COA 32254M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VACCINIUM MYRTILLUS DRY EX BHN BAKU SUPLEMEN COA 32254M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECHINACEA ANG DRY PURIF.EX BHN BAKU SUPLEMEN, COA 32024M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ECHINACEA ANG DRY PURIF.EX BHN BAKU SUPLEMEN, COA 32024M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for P.GINSENG DRY EXTRACTIDB BHN BAKU SUPLEMEN, COA 32190M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"P.GINSENG DRY EXTRACTIDB BHN BAKU SUPLEMEN, COA 32190M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRTOGENOL R BHN BAKU SUPLEMEN, COA 80320M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MIRTOGENOL R BHN BAKU SUPLEMEN, COA 80320M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABLETTOSE R 80 BHN BAKU OBAT COA L104311217A552\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"TABLETTOSE R 80 BHN BAKU OBAT COA L104311217A552\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT17010010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT17010010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COATED ASCORBIC ACID TYPE EC (BHN BAKU SUPLEMEN) COA TL01702765\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"COATED ASCORBIC ACID TYPE EC (BHN BAKU SUPLEMEN) COA TL01702765\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00116619\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00116619\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB0217177\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB0217177\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT SD (BHN BAKU SUPLEMEN) COA WB02170045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT SD (BHN BAKU SUPLEMEN) COA WB02170045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 (TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT17020015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 (TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT17020015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17020051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17020051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT17010032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT17010032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595057\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595057\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595042\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595042\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595065\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595065\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595065\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595065\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595065\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595065\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595065\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595065\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595065\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595065\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595177\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595177\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595175\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595175\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REFINED TRACED SHEA OLEIN BHN BAKU KOSMETIK COA 0000016816\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"REFINED TRACED SHEA OLEIN BHN BAKU KOSMETIK COA 0000016816\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIRGIN SWEET ALMOND OIL CONFORM ... BHN BAKU KOSMETIK COA 0000017313\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"VIRGIN SWEET ALMOND OIL CONFORM ... BHN BAKU KOSMETIK COA 0000017313\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY ORANGE (BAHAN BAKU UNTUK PEWARNA TABLET) COA. GA623947\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY ORANGE (BAHAN BAKU UNTUK PEWARNA TABLET) COA. GA623947\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA623944\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA623944\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20170101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20170101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT17020004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT17020004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01704136,47\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01704136,47\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00116619\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00116619\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT SD, 15KGBOX ALU (BHN BAKU SUPLEMEN) COA WB02170045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT SD, 15KGBOX ALU (BHN BAKU SUPLEMEN) COA WB02170045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GENIVIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"GENIVIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17020051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17020051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT17010032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT17010032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO161104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO161104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POMEGRANATE OILY EXTRACT (BHN BAKU KOSMETIK)COA PUG170101-H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"POMEGRANATE OILY EXTRACT (BHN BAKU KOSMETIK)COA PUG170101-H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIVE ORGANIC VIRGIN OIL EXTRACT XNE102 (BHN BAKU KOSMETIK)COA OLVH170101-ENBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"OLIVE ORGANIC VIRGIN OIL EXTRACT XNE102 (BHN BAKU KOSMETIK)COA OLVH170101-ENBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO170301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO170301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA.ROA1311700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA.ROA1311700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594938\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594938\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594890\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594890\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594810\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594810\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594623\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594623\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594948\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594948\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594948\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594948\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594939\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594939\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594943\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594943\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594944\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594944\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594942\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594942\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594940\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594940\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK)COA MS/2460/B15/LOREAL/100517\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK)COA MS/2460/B15/LOREAL/100517\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA MS/70120/B15/LOREAL/060517\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA MS/70120/B15/LOREAL/060517\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID REGULAR,25KG BAL (BAHAN BAKU MAKANAN) COA HPD1704093,4105\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID REGULAR,25KG BAL (BAHAN BAKU MAKANAN) COA HPD1704093,4105\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SOPHORA ROOT POWDER BHN BAKU KOSMETIK COA SFP-N-022037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND SOPHORA ROOT POWDER BHN BAKU KOSMETIK COA SFP-N-022037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND BIO OSLP BHN BAKU KOSMETIK COA OSLP 071447\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND BIO OSLP BHN BAKU KOSMETIK COA OSLP 071447\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ARBUTIN BHN BAKU KOSMETIK COA ARP 1052296\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND ARBUTIN BHN BAKU KOSMETIK COA ARP 1052296\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ALWHITE 7 BHN BAKU KOSMETIK COA CLHW 020186\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND ALWHITE 7 BHN BAKU KOSMETIK COA CLHW 020186\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF BHN BAKU KOSMETIK COA HMVBD 021447\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND WITCH HAZEL EXTRACT PF BHN BAKU KOSMETIK COA HMVBD 021447\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND BIO SODIUM HYALURONATE POWDER MMW BHN BAKU KOSMETIK COA CHP1170513\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND BIO SODIUM HYALURONATE POWDER MMW BHN BAKU KOSMETIK COA CHP1170513\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND OLIGO HA BHN BAKU KOSMETIK COA OHA 040316\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND OLIGO HA BHN BAKU KOSMETIK COA OHA 040316\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17010054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17010054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UT1607048\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"RONOXAN A (BHN BAKU MAKANAN) COA UT1607048\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609083,88\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609083,88\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17010054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17010054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT16060057\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT16060057\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DWI BI (BHN BAKU MAKANAN) COA XW91704309\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"DWI BI (BHN BAKU MAKANAN) COA XW91704309\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT16110312\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT16110312\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI16070010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI16070010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01605103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01605103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01611828\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01611828\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01606109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01606109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VP ENG01 (BHN BAKU MAKANAN) COA XW91704261\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VP ENG01 (BHN BAKU MAKANAN) COA XW91704261\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MILKUAT ZN FE (25PCT CARRIER) (BHN BAKU MAKANAN) COA XW91704310\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"MILKUAT ZN FE (25PCT CARRIER) (BHN BAKU MAKANAN) COA XW91704310\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91704258\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX 504010 (BHN BAKU MAKANAN) COA XW91704258\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DWI-BI (BHN BAKU MAKANAN) COA XW91704309\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"DWI-BI (BHN BAKU MAKANAN) COA XW91704309\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91704258,59\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX 504010 (BHN BAKU MAKANAN) COA XW91704258,59\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01612130\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01612130\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) BCOA UQ70402173\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) BCOA UQ70402173\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70402173\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70402173\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70206027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70206027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70106020,206027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70106020,206027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70106020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70106020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70106020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70106020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1701002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1701002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI16070010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI16070010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT16060057\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT16060057\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT17010020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT17010020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70303084\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70303084\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70303084\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70303084\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70303084\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70303084\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70303082,84\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70303082,84\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70303082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70303082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70303082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70303082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20160302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20160302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA TL01600099\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA TL01600099\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE01607048\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"RONOXAN A (BHN BAKU MAKANAN) COA UE01607048\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70303084\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70303084\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70303084\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70303084\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for QUINOLINE YELLOW 70 E 104 (BHN BAKU KOSMETIK)COA 16RM0040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041710\", \"uraian\": \"QUINOLINE YELLOW 70 E 104 (BHN BAKU KOSMETIK)COA 16RM0040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ESOMEPRAZOLE SODIUM STERILE (34PERCENT TO 38PERCENT W/W)COA AESS16003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"ESOMEPRAZOLE SODIUM STERILE (34PERCENT TO 38PERCENT W/W)COA AESS16003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANTOPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W)BHN BAKU OBAT, COA APSS16004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"PANTOPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W)BHN BAKU OBAT, COA APSS16004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU OBAT), COA UJ718\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU OBAT), COA UJ718\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANNITOL POWDER USP/EP (BHN BAKU OBAT) COA.301704302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054300\", \"uraian\": \"MANNITOL POWDER USP/EP (BHN BAKU OBAT) COA.301704302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP17043685, TP17043686\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP17043685, TP17043686\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT16090332\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT16090332\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00316017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00316017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00216024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00216024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00316017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00316017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB09140224\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB09140224\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00316017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00316017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA MCS1603A67 S/D 75,80,81\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA MCS1603A67 S/D 75,80,81\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU KOSMETIK) COA UT16120157\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU KOSMETIK) COA UT16120157\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517040078\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL MCX 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517040078\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91705067\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91705067\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0014952\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0014952\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HEXETIDINE (BAHAN BAKU OBAT) COA.FG17200742\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"HEXETIDINE (BAHAN BAKU OBAT) COA.FG17200742\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOXYCYCLINE MONOHYDRATE (BHN BAKU OBAT) COA DX170504001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29413000\", \"uraian\": \"DOXYCYCLINE MONOHYDRATE (BHN BAKU OBAT) COA DX170504001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFPIROME SULFATE SODIUM CARBONATE (B BAKU OBAT) COA 1704401M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFPIROME SULFATE SODIUM CARBONATE (B BAKU OBAT) COA 1704401M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FIBRE DRUM (DRUM KOSONG)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"48192000\", \"uraian\": \"FIBRE DRUM (DRUM KOSONG)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT )COA.ASG/05/020517,030517...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT )COA.ASG/05/020517,030517...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AC019KC PHYTOVITYL C 5KG BHN BAKU KOSMETIK COA 0013570\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"AC019KC PHYTOVITYL C 5KG BHN BAKU KOSMETIK COA 0013570\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AC019KC PHYTOVITYL C 5KG BHN BAKU KOSMETIK COA 13570\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"AC019KC PHYTOVITYL C 5KG BHN BAKU KOSMETIK COA 13570\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA CONCOMBRE (BHN BAKU KOSMETIK) COA 2648836\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA CONCOMBRE (BHN BAKU KOSMETIK) COA 2648836\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT16110011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT16110011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20170101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20170101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1705001 S/D 8\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"MEFENAMIC ACID (BHN BAKU OBAT) COA MA1705001 S/D 8\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ70107004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ70107004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CETIRIZINE DIHYDROCHLORIDE PH EUR (BHN BAKU OBAT) COA SLL/CTRI/0417001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29395900\", \"uraian\": \"CETIRIZINE DIHYDROCHLORIDE PH EUR (BHN BAKU OBAT) COA SLL/CTRI/0417001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINKGO BILOBA DRY EXTRACT HF (BHN BAKU SUMPLEMEN) COA 17152\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINKGO BILOBA DRY EXTRACT HF (BHN BAKU SUMPLEMEN) COA 17152\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LORATADINE MICRONIZED (BHN BAKU OBAT) COA LRH6109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"LORATADINE MICRONIZED (BHN BAKU OBAT) COA LRH6109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN0160117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN0160117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU KOSMETIK) COA VBN206116\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"AMBROXOL HYDROCHLORIDE (BHN BAKU KOSMETIK) COA VBN206116\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 016.633, 016.664\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 016.633, 016.664\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SB VITAL LIDO 1 ML (BHN BAKU OBAT) COA 14838-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE SB VITAL LIDO 1 ML (BHN BAKU OBAT) COA 14838-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RES SB VITAL LIGHT LIDO 1 ML (BHN BAKU OBAT) COA 14765-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RES SB VITAL LIGHT LIDO 1 ML (BHN BAKU OBAT) COA 14765-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE LIDOCAINE 1 ML D16 (BHN BAKU OBAT) COA 15141-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE LIDOCAINE 1 ML D16 (BHN BAKU OBAT) COA 15141-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML (BHN BAKU OBAT) COA 15055-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE LYFT LIDOCAINE 1ML (BHN BAKU OBAT) COA 15055-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CUREBERRY (BHN BAKU KOSMETIK), COA.163186\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"CUREBERRY (BHN BAKU KOSMETIK), COA.163186\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALPINIAWHITE (BHN BAKU KOSMETIK) COA 170102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ALPINIAWHITE (BHN BAKU KOSMETIK) COA 170102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALPINIAWHITE( BHN BAKU KOSMETIK), COA 170441\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ALPINIAWHITE( BHN BAKU KOSMETIK), COA 170441\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 170473\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNEBUSTERS (BHN BAKU KOSMETIK) COA 170473\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 170083\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 170083\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 170304\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 170304\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594997\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594997\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595105\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595105\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595105\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595105\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595065\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595065\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595065\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595065\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595065\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595065\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593384\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593384\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595065\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595065\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595099\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595099\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595096\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595096\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595096\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595096\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595145\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595145\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595094\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595094\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594890\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594890\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594782\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594782\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595098\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595098\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595097\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595097\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIOTOX (R) (BHN BAKU OBAT UTK PAKAN TERNAK) COA 270417-342\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"BIOTOX (R) (BHN BAKU OBAT UTK PAKAN TERNAK) COA 270417-342\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECOTRACE (R) FE 20PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC100516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"ECOTRACE (R) FE 20PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC100516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIQUIPHOS (R) STRONG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 030417-289\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"LIQUIPHOS (R) STRONG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 030417-289\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIQUIPHOS (R) STRONG (BHN BAKU UTK PAKAN TERNAK) COA 020517-356\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"LIQUIPHOS (R) STRONG (BHN BAKU UTK PAKAN TERNAK) COA 020517-356\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PERMETHRIN PHARMA GRADE BHN BAKU OBAT COA 174046003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29163990\", \"uraian\": \"PERMETHRIN PHARMA GRADE BHN BAKU OBAT COA 174046003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANOCOBALAMINE VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1704680165\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANOCOBALAMINE VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1704680165\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LABRAFIL M 1944 CS (BHN BAKU OBAT) COA.161499\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LABRAFIL M 1944 CS (BHN BAKU OBAT) COA.161499\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRECIROL ATO 5 (BHN BAKU OBAT) COA.163914\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"PRECIROL ATO 5 (BHN BAKU OBAT) COA.163914\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE AM PELLETS (BAHAN BAKU OBAT) COA.16E3503\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE AM PELLETS (BAHAN BAKU OBAT) COA.16E3503\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TEFOSE 63 (BAHAN BAKU OBAT) COA.163177\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TEFOSE 63 (BAHAN BAKU OBAT) COA.163177\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121707734\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121707734\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK) COA.LDC 98 17\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SAVONOL 16 (BAHAN BAKU KOSMETIK) COA.LDC 98 17\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CINNARIZINE (BHN BAKU OBAT) COA 011 05 2017 CIN\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"CINNARIZINE (BHN BAKU OBAT) COA 011 05 2017 CIN\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMBROXOL HYDROCHLORIDE POWDER (BHN BAKU OBAT) COA AHM/17035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"AMBROXOL HYDROCHLORIDE POWDER (BHN BAKU OBAT) COA AHM/17035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP13417\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP13417\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP13417\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP13417\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II TAN (BHN BAKU OBAT UTK PEWARNA TABLET) COA.DT660907\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II TAN (BHN BAKU OBAT UTK PEWARNA TABLET) COA.DT660907\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT661988\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT661988\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT661989\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT661989\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT661990\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT661990\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SELVOL 540 PVOH 25 KG BAG (BHN BAKU KOSMETIK) COA PO41683061\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SELVOL 540 PVOH 25 KG BAG (BHN BAKU KOSMETIK) COA PO41683061\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIROXICAM (BHN BAKU OBAT) COA PRX2016009M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"PIROXICAM (BHN BAKU OBAT) COA PRX2016009M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609088,89\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609088,89\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70402224\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70402224\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT17010021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT17010021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT17020016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT17020016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA TL017020016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA TL017020016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL01611911,1920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU MAKANAN) COA TL01611911,1920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL01611856,859,911\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU MAKANAN) COA TL01611856,859,911\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW91705112\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 C (BHN BAKU MAKANAN) COA XW91705112\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ61206148, 149,6029...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ61206148, 149,6029...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70206048,306066\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70206048,306066\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01702526\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01702526\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01702526\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01702526\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B2 RIBOFLAVIN UNIVERAL 5KG BAG ALU (BHN BAKU MAKANAN) COA UQ61010219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"B2 RIBOFLAVIN UNIVERAL 5KG BAG ALU (BHN BAKU MAKANAN) COA UQ61010219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70402213,2224\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70402213,2224\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70402213\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70402213\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL01701616\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL01701616\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01701617\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01701617\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) BCOA TL01701617\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) BCOA TL01701617\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4452966142\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4452966142\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CILOSTAZOL USP (BHN BAKU OBAT) COA 6004CB2ARI\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29337900\", \"uraian\": \"CILOSTAZOL USP (BHN BAKU OBAT) COA 6004CB2ARI\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOGLYCOLIC ACID 99PCT COSMETIC GRADE (BHN BAKU KOSMETIK) COA.0000058766\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOGLYCOLIC ACID 99PCT COSMETIC GRADE (BHN BAKU KOSMETIK) COA.0000058766\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMMONIUM THIOGLYCOLATE 71PCT(60PCT TGA) BHN BAKU KOSMETIK, COA.0000058767\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"AMMONIUM THIOGLYCOLATE 71PCT(60PCT TGA) BHN BAKU KOSMETIK, COA.0000058767\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOGLYCOLIC ACID 80PCT COSMETIC GRADE, BHN BAKU KOSMETIK, COA 0000058768\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOGLYCOLIC ACID 80PCT COSMETIC GRADE, BHN BAKU KOSMETIK, COA 0000058768\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MONOETHANOLAMINE THIOGLYCOLATE 83PCT (50PCT TGA) BHN BAKU KOSMETIK, COA 0000058769\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221100\", \"uraian\": \"MONOETHANOLAMINE THIOGLYCOLATE 83PCT (50PCT TGA) BHN BAKU KOSMETIK, COA 0000058769\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01704147,286...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01704147,286...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17010017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17010017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID DC 97PCT, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG1704007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID DC 97PCT, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG1704007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPB1704247, HPD1705002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPB1704247, HPD1705002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC SODIUM ASCORBATE DC ,25KG BAL (BAHAN BAKU SUPLEMEN) COA HPN1705155,68,73,81\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC SODIUM ASCORBATE DC ,25KG BAL (BAHAN BAKU SUPLEMEN) COA HPN1705155,68,73,81\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 1705EF8912\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"L-ARGININE LO (BHN BAKU KOSMETIK),COA 1705EF8912\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SALBUTAMOL SULPHATE BP (BHN BAKU OBAT) COA SLL/55/0317015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29225090\", \"uraian\": \"SALBUTAMOL SULPHATE BP (BHN BAKU OBAT) COA SLL/55/0317015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLOPURINOL BP/EP (BHN BAKU OBAT) COA SLL/ALP/0816003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"ALLOPURINOL BP/EP (BHN BAKU OBAT) COA SLL/ALP/0816003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANOCOBALAMINE VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1704951503\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANOCOBALAMINE VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1704951503\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 017.420\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 017.420\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SKINB VITLIDO 1 MLD16 (BHN BAKU OBAT) COA 14898-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE SKINB VITLIDO 1 MLD16 (BHN BAKU OBAT) COA 14898-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REST SKINB VITALLGHLIDO 1 MLD16 (BHN BAKU OBAT) COA 14994-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"REST SKINB VITALLGHLIDO 1 MLD16 (BHN BAKU OBAT) COA 14994-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE LIDOCAINE 1 ML D16 (BHN BAKU OBAT) COA 15141-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE LIDOCAINE 1 ML D16 (BHN BAKU OBAT) COA 15141-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML (BHN BAKU OBAT) COA 15055-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE LYFT LIDOCAINE 1ML (BHN BAKU OBAT) COA 15055-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK), COA.170304\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE II (BHN BAKU KOSMETIK), COA.170304\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 170370\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 170370\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAKURA EXTRACT B BHN BAKU KOSMETIK), COA 170433\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SAKURA EXTRACT B BHN BAKU KOSMETIK), COA 170433\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 170467\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 170467\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OUBAKU LIQUID BI (BHN BAKU KOSMETIK) COA 170365\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"OUBAKU LIQUID BI (BHN BAKU KOSMETIK) COA 170365\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOPROFEN (BHN BAKU OBAT) COA.184421\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29183000\", \"uraian\": \"KETOPROFEN (BHN BAKU OBAT) COA.184421\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00616161\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00616161\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT16120031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT16120031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 20PCT SAF (BHN BAKU SUPLEMEN) COA UE01704031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 20PCT SAF (BHN BAKU SUPLEMEN) COA UE01704031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA 1 P001062 (BHN BAKU KOSMETIK) COA 0000006987\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA 1 P001062 (BHN BAKU KOSMETIK) COA 0000006987\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLAISANCE P116808 (BHN BAKU KOSMETIK) COA.0000008081\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"PLAISANCE P116808 (BHN BAKU KOSMETIK) COA.0000008081\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA.02/16-GL4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA.02/16-GL4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) (B. BAKU KOSMETIK) COA02/16-GL4.SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40 BRIX) (B. BAKU KOSMETIK) COA02/16-GL4.SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE NA PELLETS (BAHAN BAKU SUPLEMEN) COA.16E3907\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE NA PELLETS (BAHAN BAKU SUPLEMEN) COA.16E3907\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE NA PELLETS (BAHAN BAKU SUPLEMEN) COA.16E4305\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE NA PELLETS (BAHAN BAKU SUPLEMEN) COA.16E4305\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE NA PELLETS (BAHAN BAKU SUPLEMEN) COA.17E0707\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE NA PELLETS (BAHAN BAKU SUPLEMEN) COA.17E0707\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELUCIRE 44/14 (BAHAN BAKU SUPLEMEN) COA.163021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELUCIRE 44/14 (BAHAN BAKU SUPLEMEN) COA.163021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE AM PELLETS (BHN BAKU SUPLEMEN) COA. 16E3503\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE AM PELLETS (BHN BAKU SUPLEMEN) COA. 16E3503\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA.1GC01CLB ZP48D 25MT\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA.1GC01CLB ZP48D 25MT\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BH04006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BH04006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEROPENEM WITH SODIUM CARBONATE (BHN BAKU OBAT) COA P900200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"MEROPENEM WITH SODIUM CARBONATE (BHN BAKU OBAT) COA P900200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOTAXIME SODIUM STERILE USP (BHN BAKU OBAT) COA Q200900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOTAXIME SODIUM STERILE USP (BHN BAKU OBAT) COA Q200900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA Q600200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA Q600200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 1603847188\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 1603847188\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DICLOFENAC SODIUM (BHN BAKU OBAT) COA 170155\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"DICLOFENAC SODIUM (BHN BAKU OBAT) COA 170155\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA EKB\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROTESIL LH (BHN BAKU KOSMETIK) COA EKB\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WS (BHN BAKU KOSMETIK) COA DCN\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROMOIS WS (BHN BAKU KOSMETIK) COA DCN\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS S-CAQ (BHN BAKU KOSMETIK) COA DBM\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROMOIS S-CAQ (BHN BAKU KOSMETIK) COA DBM\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA.ROA130177\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA.ROA130177\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6278668\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6278668\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7080723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7080723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6336799\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6336799\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6286718\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6286718\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6130548\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6130548\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6284972,7093593\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6284972,7093593\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7030910\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7030910\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6295747,7033659\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6295747,7033659\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 6336799\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 6336799\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009836\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009836\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009856\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO AGAR 454G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009856\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7065608,7081793\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7065608,7081793\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7018890\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7018890\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6319905\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6319905\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6155865\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6155865\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009966\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009966\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7068731\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7068731\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6314700,7045539\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6314700,7045539\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009829\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009829\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7017943\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7017943\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6278668\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6278668\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6250612\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6250612\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6278737\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6278737\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7047892\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7047892\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6291710\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6291710\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT AGAR 500G. (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7041754\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MALT AGAR 500G. (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7041754\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7080701,702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7080701,702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6333840\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6333840\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7009834\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7009834\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6257924\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6257924\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7080723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7080723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009581\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009581\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6319903\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6319903\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7005840,7053894\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7005840,7053894\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6320612\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6320612\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053952\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053952\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7005857\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7005857\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7102884,9903\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7102884,9903\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7102903\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7102903\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060762\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060762\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SOLUTION BACTERIOSTAT CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3477C419\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"SOLUTION BACTERIOSTAT CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3477C419\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SOLUTION CLEANING CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0046C521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"SOLUTION CLEANING CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0046C521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7088559\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7088559\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB STERILE SINGLE SWAB 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH CACI15\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CULTURESWAB STERILE SINGLE SWAB 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH CACI15\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 6287929\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 6287929\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7109998\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7109998\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009829\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009829\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060731\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060731\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6320612\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6320612\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7081822\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7081822\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE BROTH0 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTOSE BROTH0 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PROTEOSE PEPTONE NO.3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7107877\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PROTEOSE PEPTONE NO.3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7107877\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BILE SALTS NO 3 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6209796\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BILE SALTS NO 3 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6209796\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7017983\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7017983\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7005857\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7005857\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6201884\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6201884\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7084577\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7084577\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL LAURYL TRYPTOSE BROTH 2KG(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7017945\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL LAURYL TRYPTOSE BROTH 2KG(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7017945\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7068859\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7068859\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6229558\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6229558\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NITRATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6342774\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE NITRATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6342774\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHENOL RED MANNITOL BR BBL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 6327837\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PHENOL RED MANNITOL BR BBL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 6327837\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7110693\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7110693\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7088775\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7088775\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6315869\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6315869\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIADIS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7081822\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIADIS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7081822\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6327604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6327604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6319507\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6319507\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE STANDARD METHODS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7017680\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE STANDARD METHODS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7017680\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTONE GLUCOSE EXT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060509\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTONE GLUCOSE EXT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060509\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YPD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7053905\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE YPD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7053905\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER LACTOPHENOL COTTON BLUE STAIN (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6279744\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER LACTOPHENOL COTTON BLUE STAIN (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6279744\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7082926\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7082926\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SWUBE SINGLE SWAB STERILE COTTON TIP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 35616008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"SWUBE SINGLE SWAB STERILE COTTON TIP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 35616008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6336799\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6336799\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7041588\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7041588\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7005527\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7005527\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD14 APC MPHLP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7068880\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD14 APC MPHLP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7068880\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7018612\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7018612\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6350858\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6350858\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6215857\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6215857\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7068890\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7068890\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD10 FITC HI10A 60 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6354550\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD10 FITC HI10A 60 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6354550\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 6228624\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 6228624\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7123691\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7123691\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PERM/WASH BUFFER 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6356786B\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PERM/WASH BUFFER 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6356786B\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6259506\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6259506\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 7-AAD STINING SOLUTION 2ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6274739A\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"7-AAD STINING SOLUTION 2ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6274739A\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD4 APC SK3 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6291874\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD4 APC SK3 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6291874\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FASTIMMUNE IFN-GAMMA/IL... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6343739\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"FASTIMMUNE IFN-GAMMA/IL... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6343739\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYTOFIX FLXATION BUFFER 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6292698\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CYTOFIX FLXATION BUFFER 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6292698\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAIN BUFFER FBS 500ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6326635\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"STAIN BUFFER FBS 500ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6326635\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LETHEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6258903\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LETHEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6258903\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6197586\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6197586\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7045891\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7045891\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6333739\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6333739\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL E COLL H ANTISERUM H7 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6281546\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL E COLL H ANTISERUM H7 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6281546\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT 10X10MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6251799\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"TUBE EGG YOLK ENRICHMENT 50PCT 10X10MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6251799\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7102829\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7102829\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7067660\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7067660\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6092802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6092802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3MI(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6309655\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS POLY 3MI(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6309655\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA.70325\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA.70325\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 70405\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 70405\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7095722\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7095722\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTEIN TRANSPORT INHIBITOR SOLN 0.7ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6189672\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PROTEIN TRANSPORT INHIBITOR SOLN 0.7ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6189672\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M110243\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M110243\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLOPURINOL (BHN BAKU OBAT) COA 17011AY3ARII, 17012AY3ARII\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"ALLOPURINOL (BHN BAKU OBAT) COA 17011AY3ARII, 17012AY3ARII\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121607486,121707734,48\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121607486,121707734,48\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEG 400 (BAHAN BAKU KOSMETIK) COA.AKW0003785\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PEG 400 (BAHAN BAKU KOSMETIK) COA.AKW0003785\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLOZAPINE (BHN BAKU OBAT) COA 730106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"CLOZAPINE (BHN BAKU OBAT) COA 730106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO161104, CO160202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO161104, CO160202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO161104, CO160202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO161104, CO160202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO161104, CO160202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO161104, CO160202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK)COA EG138-160301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK)COA EG138-160301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LINEN OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA LIU170302-H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LINEN OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA LIU170302-H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INCA ANCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK)COA II170405-AI-D-BIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"INCA ANCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK)COA II170405-AI-D-BIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMISOL TRIO (BHN BAKU KOSMETIK) COA 1629114\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"AMISOL TRIO (BHN BAKU KOSMETIK) COA 1629114\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769015093H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CHRONOLINE (BHN BAKU KOSMETIK) COA 769015093H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL (BHN BAKU KOSMETIK) COA 1631314\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LECIGEL (BHN BAKU KOSMETIK) COA 1631314\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL (BHN BAKU KOSMETIK) COA 1631315\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LECIGEL (BHN BAKU KOSMETIK) COA 1631315\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5457516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5457516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829015062H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"B-WHITE (BHN BAKU KOSMETIK) COA 829015062H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL (BHN BAKU KOSMETIK), COA 830015198H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CAPIXYL (BHN BAKU KOSMETIK), COA 830015198H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL (BHN BAKU KOSMETIK), COA 830015254H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CAPIXYL (BHN BAKU KOSMETIK), COA 830015254H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANABLUE (BHN BAKU KOSMETIK) COA 5470017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LANABLUE (BHN BAKU KOSMETIK) COA 5470017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL (BHN BAKU KOSMETIK) COA 1700605\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LECIGEL (BHN BAKU KOSMETIK) COA 1700605\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL (BHN BAKU KOSMETIK) COA 1710601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LECIGEL (BHN BAKU KOSMETIK) COA 1710601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5452816\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK) COA 5452816\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRO-LIPO NEO (BHN BAKU KOSMETIK) COA 1707301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PRO-LIPO NEO (BHN BAKU KOSMETIK) COA 1707301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025025H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025025H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMISOL TRIO (BHN BAKU KOSMETIK) COA 1629114\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"AMISOL TRIO (BHN BAKU KOSMETIK) COA 1629114\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW 5C 5PCT CLEAR BHN BAKU KOSMETIK, COA 785015305H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CW 5C 5PCT CLEAR BHN BAKU KOSMETIK, COA 785015305H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL (BHN BAKU KOSMETIK) COA 1710601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LECIGEL (BHN BAKU KOSMETIK) COA 1710601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015046H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015046H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROGELINE (BHN BAKU KOSMETIK) COA 820053903F\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROGELINE (BHN BAKU KOSMETIK) COA 820053903F\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025025H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025025H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTABIO ARV-S (BHN BAKU OBAT) COA.1703061K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"ASTABIO ARV-S (BHN BAKU OBAT) COA.1703061K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA.8MT170367\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30032000\", \"uraian\": \"STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA.8MT170367\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAPROTILINE HCL (BHN BAKU OBAT) COA 5000/04/17\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29214900\", \"uraian\": \"MAPROTILINE HCL (BHN BAKU OBAT) COA 5000/04/17\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPI PX 507 (BHN BAKU MAKANAN) COA XW91705184\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"SPI PX 507 (BHN BAKU MAKANAN) COA XW91705184\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 012017/004350\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 012017/004350\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND BIO SODIUM HYALURONATE POWDER (MMW) (B BAKU KOSMETIK)COA CHP1170530\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND BIO SODIUM HYALURONATE POWDER (MMW) (B BAKU KOSMETIK)COA CHP1170530\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-271347\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-271347\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 040717 061416\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 040717 061416\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK)COA GSC K 012547\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK)COA GSC K 012547\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-021247\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-021247\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND OLIGO HA (BHN BAKU KOSMETIK) COA OHA 042457\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND OLIGO HA (BHN BAKU KOSMETIK) COA OHA 042457\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ALWHITE 7 (BHN BAKU KOSMETIK)COA CLHW 020186\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND ALWHITE 7 (BHN BAKU KOSMETIK)COA CLHW 020186\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD 021447\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD 021447\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702322512\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702322512\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TELMISARTAN (BHN BAKU OBAT) COA TM0140617\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"TELMISARTAN (BHN BAKU OBAT) COA TM0140617\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GABAPENTIN (BHN BAKU OBAT) COA GBW1705134\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"GABAPENTIN (BHN BAKU OBAT) COA GBW1705134\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RANITIDINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA RH 118 05 17, RH 119 05 17\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29321900\", \"uraian\": \"RANITIDINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA RH 118 05 17, RH 119 05 17\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EVERMAP 160K (BHN BAKU KOSMETIK) COA.C17031701E160K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EVERMAP 160K (BHN BAKU KOSMETIK) COA.C17031701E160K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX TYPE MM81 (105PCT) (B. BAKU MAKANAN) COA XW91705186\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX TYPE MM81 (105PCT) (B. BAKU MAKANAN) COA XW91705186\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT BLACK TEA POWDER TH B430 (BHN BAKU MAKANAN) COA 2017020501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"INSTANT BLACK TEA POWDER TH B430 (BHN BAKU MAKANAN) COA 2017020501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA LOT NO. 17053104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA LOT NO. 17053104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT EMULS (BHN BAKU MAKANAN) COA UE01611018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT EMULS (BHN BAKU MAKANAN) COA UE01611018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALM 1.0M + VIT D3 100000 (BHN BAKU MAKANAN) COA UE01611018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALM 1.0M + VIT D3 100000 (BHN BAKU MAKANAN) COA UE01611018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20170101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20170101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 1PCT SD (BHN BAKU SUPLEMEN) COA UT17010007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 1PCT SD (BHN BAKU SUPLEMEN) COA UT17010007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT17010010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT17010010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COATED ASCORBIC ACID TYPE EC (BHN BAKU MAKANAN) COA TL01703894\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"COATED ASCORBIC ACID TYPE EC (BHN BAKU MAKANAN) COA TL01703894\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00616161\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00616161\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17020051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17020051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT17010033\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT17010033\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NATURAL MIXED TOCOPHEROLS (BHN BAKU KOSMETIK) COA.170507M002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"NATURAL MIXED TOCOPHEROLS (BHN BAKU KOSMETIK) COA.170507M002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VISTANOL GDHR (BHN BAKU KOSMETIK) COA EJF\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"VISTANOL GDHR (BHN BAKU KOSMETIK) COA EJF\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILASOMA MFA (S) (BHN BAKU KOSMETIK) COA EGB\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SILASOMA MFA (S) (BHN BAKU KOSMETIK) COA EGB\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA DDI\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) COA DDI\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WG-SIG (BHN BAKU KOSMETIK) COA DBF\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROMOIS WG-SIG (BHN BAKU KOSMETIK) COA DBF\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILASOMA REA (S)BHN BAKU KOSMETIK) COA DBD\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SILASOMA REA (S)BHN BAKU KOSMETIK) COA DBD\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E15 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011G8SL01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E15 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011G8SL01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 20 PREMIUM (BHN BAKU OBAT UTK PEWARNA TABLET) COA D184G1J021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 20 PREMIUM (BHN BAKU OBAT UTK PEWARNA TABLET) COA D184G1J021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E15M PREMIUM LV (BHN BAKU OBAT UTK PEWARNA TABLET)COA D011GCKL02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E15M PREMIUM LV (BHN BAKU OBAT UTK PEWARNA TABLET)COA D011GCKL02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK), COA.170569\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK), COA.170569\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 170585\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 170585\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB( BHN BAKU KOSMETIK), COA 170569\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB( BHN BAKU KOSMETIK), COA 170569\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 170569\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 170569\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEACH LEAF LIQUID B (BHN BAKU KOSMETIK) COA 170305\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PEACH LEAF LIQUID B (BHN BAKU KOSMETIK) COA 170305\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 170467\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 170467\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.SH596112\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.SH596112\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB RED (BAHAN BAKU OBAT UTK PEWARNA TABLET) COA.SH595732\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB RED (BAHAN BAKU OBAT UTK PEWARNA TABLET) COA.SH595732\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.SH595728\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.SH595728\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595828\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595828\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595829\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595829\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595791\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595791\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595797\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595797\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595778\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595778\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595176\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595176\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595825\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595825\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595826\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595826\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595774\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595774\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595795\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595795\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595827\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595827\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595234\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595234\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595799\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595799\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA MCS1602079,97\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA MCS1602079,97\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ60813235\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ60813235\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517050094\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL MCX 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517050094\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT17010003,7,16,21\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT17010003,7,16,21\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC, 29KG BAL (BHN BAKU KOSMETIK) COA OP81702006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC, 29KG BAL (BHN BAKU KOSMETIK) COA OP81702006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517040078\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517040078\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA MCS1605116\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA MCS1605116\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001440327\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL SLX (BHN BAKU KOSMETIK) COA 0001440327\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA MCS1603C82,D44,D68,E28\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA MCS1603C82,D44,D68,E28\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517050094\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517050094\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES1611066\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"ALLANTOIN (BHN BAKU KOSMETIK) COA ES1611066\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA MCS1607004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA MCS1607004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT16100097\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT16100097\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)BHN BAKU KOSMETIK, COA UT17020158\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO)BHN BAKU KOSMETIK, COA UT17020158\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01606109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE01606109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA MCS1603E29,30,31,32\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL 1789 (BHN BAKU KOSMETIK) COA MCS1603E29,30,31,32\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA MCS1603D88,89,91,92\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA MCS1603D88,89,91,92\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT17010003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT17010003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01701001,1007,1008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01701001,1007,1008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01610815\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01610815\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708160098,99,123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708160098,99,123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11704017,27\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11704017,27\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7033659\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7033659\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7103621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7103621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6293897\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6293897\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D-MANNOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7135976\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D-MANNOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7135976\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7128637\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MALTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7128637\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7055755\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7055755\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 170110416\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 170110416\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7041588\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7041588\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7010897,7065702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7010897,7065702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7045535,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7045535,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6197586\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6197586\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6337887\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6337887\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7045891\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7045891\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NOREPINEPHRINE BITARTRATE (BHN BAKU OBAT) COA 370104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29379010\", \"uraian\": \"NOREPINEPHRINE BITARTRATE (BHN BAKU OBAT) COA 370104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHOLINE L-BITARTRATE (BAHAN BAKU OBAT) COA.3012605\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29231000\", \"uraian\": \"CHOLINE L-BITARTRATE (BAHAN BAKU OBAT) COA.3012605\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101852217A545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA L101852217A545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP17063035,36\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP17063035,36\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA.RBA1651700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA.RBA1651700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIUSID AQUA ORAL SOLUTION (PAKAN IKAN BERBENTUK CAIR) COA N-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"VIUSID AQUA ORAL SOLUTION (PAKAN IKAN BERBENTUK CAIR) COA N-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP - 100 (BHN BAKU KOSMETIK) COA 706516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"KSP - 100 (BHN BAKU KOSMETIK) COA 706516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MACADAMIA EXFOL TM 100 (BHN BAKU KOSMETIK) COA.51117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"MACADAMIA EXFOL TM 100 (BHN BAKU KOSMETIK) COA.51117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA.70318\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LIME PEARL TM AF (BHN BAKU KOSMETIK) COA.70318\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE BP MICRONISED (BHN BAKU OBAT) COA.15380617,15390617...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29351000\", \"uraian\": \"SULPHAMETHOXAZOLE BP MICRONISED (BHN BAKU OBAT) COA.15380617,15390617...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.17100272\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29391900\", \"uraian\": \"PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.17100272\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE EP6/USP38 (BHN BAKU OBAT) COA.NMP170607, 609\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE EP6/USP38 (BHN BAKU OBAT) COA.NMP170607, 609\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND170405\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND170405\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLOPURINOL BP (BHN BAKU OBAT) COA ALP0010417\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"ALLOPURINOL BP (BHN BAKU OBAT) COA ALP0010417\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LABRAFIL M 1944 CS (BHN BAKU OBAT) COA.162835\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LABRAFIL M 1944 CS (BHN BAKU OBAT) COA.162835\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRANSCUTOL P (BHN BAKU OBAT) COA.164103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TRANSCUTOL P (BHN BAKU OBAT) COA.164103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TEFOSE 63 (BAHAN BAKU OBAT) COA.163177\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TEFOSE 63 (BAHAN BAKU OBAT) COA.163177\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CETYL PALMITATE PELLETS CAR (BAHAN BAKU OBAT) COA.161792\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"CETYL PALMITATE PELLETS CAR (BAHAN BAKU OBAT) COA.161792\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 162392\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 162392\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEFERASIROX (BHN BAKU OBAT) COA DR0010217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"DEFERASIROX (BHN BAKU OBAT) COA DR0010217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFIXIME TRIHYDRATE (BHN BAKU OBAT) COA Q200100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFIXIME TRIHYDRATE (BHN BAKU OBAT) COA Q200100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFIXIME MICRONIZED (BHN BAKU OBAT) COA Q500200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFIXIME MICRONIZED (BHN BAKU OBAT) COA Q500200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTRIAXONE SODIUM STERILE BP (BHN BAKU OBAT) COA P702200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTRIAXONE SODIUM STERILE BP (BHN BAKU OBAT) COA P702200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEROPENEM WITH SODIUM CARBONATE (BHN BAKU OBAT) COA P900200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"MEROPENEM WITH SODIUM CARBONATE (BHN BAKU OBAT) COA P900200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMLODIPINE BESILATE BP/EP (BHN BAKU OBAT), COA. AMB/052/06/17\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"AMLODIPINE BESILATE BP/EP (BHN BAKU OBAT), COA. AMB/052/06/17\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POVIDONE K30 (BHN BAKU OBAT) COA PK30-170522F13, 170528F32\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"POVIDONE K30 (BHN BAKU OBAT) COA PK30-170522F13, 170528F32\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POVIDONE K25 (BHN BAKU OBAT) COA PK25-170224F32\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"POVIDONE K25 (BHN BAKU OBAT) COA PK25-170224F32\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CROSPOVIDONE XL (BHN BAKU OBAT) COA PP170512XL,513XL SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"CROSPOVIDONE XL (BHN BAKU OBAT) COA PP170512XL,513XL SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CROSPOVIDONE XL-10 (BHN BAKU OBAT, COA.PP170519XL-10,0516XL-10,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"CROSPOVIDONE XL-10 (BHN BAKU OBAT, COA.PP170519XL-10,0516XL-10,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POVIDONE K25 (BHN BKU OBAT) COA PK25-170228F21,224F32 SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"POVIDONE K25 (BHN BKU OBAT) COA PK25-170228F21,224F32 SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POVIDONE K30 (BHN BAKU OBAT) COA PK30-170514F11,516F21,32,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"POVIDONE K30 (BHN BAKU OBAT) COA PK30-170514F11,516F21,32,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POVIDONE K90 (BHN BAKU OBAT) COA PK90-170427FF1, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"POVIDONE K90 (BHN BAKU OBAT) COA PK90-170427FF1, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOPAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA.17100379\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29222900\", \"uraian\": \"DOPAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA.17100379\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOROLAC TROMETAMOL /TROMETHAMINE (BHN BAKU OBAT) COA.17100413\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"KETOROLAC TROMETAMOL /TROMETHAMINE (BHN BAKU OBAT) COA.17100413\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NOREPINEPHRINE BITARTRATE (BHN BAKU OBAT) COA 390104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29379010\", \"uraian\": \"NOREPINEPHRINE BITARTRATE (BHN BAKU OBAT) COA 390104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OXFENDAZOLE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 60417025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"OXFENDAZOLE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 60417025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OXYTETRACYCLINE DIHYDRATE... (BHN BAKU OBAT UTK PAKAN TERNAK) COA ZT170621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29413000\", \"uraian\": \"OXYTETRACYCLINE DIHYDRATE... (BHN BAKU OBAT UTK PAKAN TERNAK) COA ZT170621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPTOPRIL (BHN BAKU OBAT) COA 5103-17-103, 119\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"CAPTOPRIL (BHN BAKU OBAT) COA 5103-17-103, 119\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INOSITOL (BHN BAKU OBAT) COA 201704145\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"INOSITOL (BHN BAKU OBAT) COA 201704145\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 1706025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"ACESULFAME K (BHN BAKU OBAT) COA 1706025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GLUCOSAMINE HCL (BHN BAKU OBAT) COA XH2017052701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"GLUCOSAMINE HCL (BHN BAKU OBAT) COA XH2017052701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEVOFLOXACIN HEMIDRATE (FREE ALKALINE) B. BAKU OBAT COA C008-1704602\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"LEVOFLOXACIN HEMIDRATE (FREE ALKALINE) B. BAKU OBAT COA C008-1704602\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20170612\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20170612\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYL SULFONYL METHANE USP (B.BAKU OBAT) COA 17060601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"METHYL SULFONYL METHANE USP (B.BAKU OBAT) COA 17060601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LINCOMYCIN HCL EP (BHN BAKU OBAT) COA 1706020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"LINCOMYCIN HCL EP (BHN BAKU OBAT) COA 1706020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEFENAMIC ACID COMPACTED (BHN BAKU OBAT) COA MFAC-1705235-A\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"MEFENAMIC ACID COMPACTED (BHN BAKU OBAT) COA MFAC-1705235-A\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1706009,6201,6217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"MEFENAMIC ACID (BHN BAKU OBAT) COA MA1706009,6201,6217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FIBRE DRUM ( DRUM KOSONG) PRICE AND AMOUNT ARE FOR CUSTOM ONLY\""}, {"role": "assistant", "content": "{\"hs_code\" : \"48192000\", \"uraian\": \"FIBRE DRUM ( DRUM KOSONG) PRICE AND AMOUNT ARE FOR CUSTOM ONLY\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 20170622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 20170622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT662844\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT662844\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT662847\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT662847\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPASPRAY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT662696\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPASPRAY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT662696\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPASPRAY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT662850\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPASPRAY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT662850\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT663264\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT663264\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK)COA MS/2460/B15/LOREAL/100517,290617\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK)COA MS/2460/B15/LOREAL/100517,290617\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA MS/70120/B15/LOREAL/280617\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA MS/70120/B15/LOREAL/280617\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA MS/70120/YOIB155/LOREAL/130417\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA MS/70120/YOIB155/LOREAL/130417\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 CN 10KG KA (BHN BAKU KOSMETIK) COA.1331519\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 CN 10KG KA (BHN BAKU KOSMETIK) COA.1331519\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FDANDC BLUE #2/INDIGO CARMINE... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP776267AX5538\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FDANDC BLUE #2/INDIGO CARMINE... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP776267AX5538\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FDANDC RED #40/ALLURA RED AC AL(BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP776679 AX6248\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FDANDC RED #40/ALLURA RED AC AL(BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP776679 AX6248\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP758988\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"ERYTHROSINE AL 38PCT-42PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP758988\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FDANDC YELLOW #6/SUNSET YELLOW... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP779705 AX7664\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FDANDC YELLOW #6/SUNSET YELLOW... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP779705 AX7664\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FDANDC YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP778726AX6793\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FDANDC YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP778726AX6793\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DANDC YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP774846AX4855\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"DANDC YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP774846AX4855\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT17010005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT17010005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20160302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20160302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11704027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11704027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO)BHN BAKU SUPLEMEN, COA UT17030726\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO)BHN BAKU SUPLEMEN, COA UT17030726\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609090\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609090\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT16110352\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT16110352\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE01607055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"RONOXAN A (BHN BAKU MAKANAN) COA UE01607055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70502239\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70502239\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70502238,39\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70502238,39\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CANTHAXANTHIN 10PCT CWS/S (BHN BAKU MAKANAN) COA UT16120004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"CANTHAXANTHIN 10PCT CWS/S (BHN BAKU MAKANAN) COA UT16120004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11704027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP11704027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11704027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP11704027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609089\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609089\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01606109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU MAKANAN) COA UE01606109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT16060057\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT16060057\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)BHN BAKU MAKANAN, COA UT17020158\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO)BHN BAKU MAKANAN, COA UT17020158\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17030726\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17030726\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ61210273\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ61210273\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT16110352\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT16110352\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL01701009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU MAKANAN) COA TL01701009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT17020158\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT17020158\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT16060057\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT16060057\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609089\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609089\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01606109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU MAKANAN) COA UE01606109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL01701009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU MAKANAN) COA TL01701009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT16120060\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT16120060\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT17010006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT17010006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417005,7008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417005,7008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT GRANULATION,25KG BAL (B. BAKU SUPLEMEN) COA WB00117972,73\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT GRANULATION,25KG BAL (B. BAKU SUPLEMEN) COA WB00117972,73\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT16110066\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT16110066\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT16110352\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT16110352\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11704027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11704027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT17030060\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT17030060\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SII6070010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN) COA SII6070010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01704178\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01704178\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01606109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01606109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17010007,11\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17010007,11\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ61210278,70110001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ61210278,70110001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 103093-A (BHN BAKU MAKANAN) COA XW91705250,51\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 103093-A (BHN BAKU MAKANAN) COA XW91705250,51\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17010055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17010055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70403105,3135\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70403105,3135\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT16120025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT16120025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT16120172\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT16120172\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1701006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1701006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70502237,38,39\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70502237,38,39\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70503129,35\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70503129,35\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70403105,UQ70503129\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70403105,UQ70503129\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70403104,3105\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70403104,3105\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70403104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70403104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70403104,3129,3134,3135\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70403104,3129,3134,3135\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17020001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17020001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT16090336\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT16090336\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPI PX 507 (BHN BAKU MAKANAN) COA XW91705185\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"SPI PX 507 (BHN BAKU MAKANAN) COA XW91705185\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 INF OIL, 4,5KG PJUG (BHN BAKU SUPLEMEN) COA.TS00008021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 INF OIL, 4,5KG PJUG (BHN BAKU SUPLEMEN) COA.TS00008021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP14817\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP14817\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ASTRIN AG BHN BAKU KOSMETIK COA BAG-030126\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND ASTRIN AG BHN BAKU KOSMETIK COA BAG-030126\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ARBUTIN BHN BAKU KOSMETIK COA ARP 481537\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND ARBUTIN BHN BAKU KOSMETIK COA ARP 481537\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ARBUTIN BHN BAKU KOSMETIK COA ARP 1052296\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND ARBUTIN BHN BAKU KOSMETIK COA ARP 1052296\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND PORTULACA EXTRACT BHN BAKU KOSMETIK COA NMP L 333057\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND PORTULACA EXTRACT BHN BAKU KOSMETIK COA NMP L 333057\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND NANOMOIST D BHN BAKU KOSMETIK COA NMSP D 021157\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND NANOMOIST D BHN BAKU KOSMETIK COA NMSP D 021157\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DPG FG (BHN BAKU KOSMETIK) COA A02691D\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29094900\", \"uraian\": \"DPG FG (BHN BAKU KOSMETIK) COA A02691D\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PG USP (BHN BAKU KOSMETIK) COA A0269IU\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"PG USP (BHN BAKU KOSMETIK) COA A0269IU\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OATWELL (R) 22,18KG BAG (BHN BAKU MAKANAN) COA SOF164303,04\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"OATWELL (R) 22,18KG BAG (BHN BAKU MAKANAN) COA SOF164303,04\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALM 1.0M + VIT D3 100000 (BHN BAKU MAKANAN) COA UT17030039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALM 1.0M + VIT D3 100000 (BHN BAKU MAKANAN) COA UT17030039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596303\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596303\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596294\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596294\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596293\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596293\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595902\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595902\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596306\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596306\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596307\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596307\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596291\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596291\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596305\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596305\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596340\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596340\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596340\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596340\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596340\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596340\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596316\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596316\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596315\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596315\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596311\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596311\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595148\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595148\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596309\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596309\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596162\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596162\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596308\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596308\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596317\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596317\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596290\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596290\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596304\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596304\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596310\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596310\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596298\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596298\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596299\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596299\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596292\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596292\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596296\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596296\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596297\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596297\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PI0030616 (MC)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349920\", \"uraian\": \"PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PI0030616 (MC)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CORTISONE ACETATE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1600926226\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"CORTISONE ACETATE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1600926226\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA Q100300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA Q100300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA Q600200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA Q600200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTAXIDIME BUFFERED (BHN BAKU OBAT) COA Q101100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTAXIDIME BUFFERED (BHN BAKU OBAT) COA Q101100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOTAXIME SODIUM STERILE USP (BHN BAKU OBAT) COA Q201200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOTAXIME SODIUM STERILE USP (BHN BAKU OBAT) COA Q201200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 017.453\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 017.453\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SKINB VITLIDO 1 MLD16 (BHN BAKU OBAT) COA 14898-2,15058-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE SKINB VITLIDO 1 MLD16 (BHN BAKU OBAT) COA 14898-2,15058-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REST SKINB VITALLGHLIDO 1 MLD16 (BHN BAKU OBAT) COA 14994-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"REST SKINB VITALLGHLIDO 1 MLD16 (BHN BAKU OBAT) COA 14994-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE LIDOCAINE 1 ML D16 (BHN BAKU OBAT) COA 15141-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE LIDOCAINE 1 ML D16 (BHN BAKU OBAT) COA 15141-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML (BHN BAKU OBAT) COA 15085-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE LYFT LIDOCAINE 1ML (BHN BAKU OBAT) COA 15085-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 030117/004441\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 030117/004441\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SELVOL 540 PVOH 25 KG BAG (BHN BAKU KOSMETIK) COA PO41683061\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SELVOL 540 PVOH 25 KG BAG (BHN BAKU KOSMETIK) COA PO41683061\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-1040617\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334910\", \"uraian\": \"DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-1040617\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAMELLIA OIL (BHN BAKU KOSMETIK), COA M290553\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CAMELLIA OIL (BHN BAKU KOSMETIK), COA M290553\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MARCOL 52 (BHN BAKU OBAT UTK PAKAN TERNAK) COA 17121HH702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101989\", \"uraian\": \"MARCOL 52 (BHN BAKU OBAT UTK PAKAN TERNAK) COA 17121HH702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MARCOL 52 (BHN BAKU PAKAN TERNAK) COA 17419HH701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101989\", \"uraian\": \"MARCOL 52 (BHN BAKU PAKAN TERNAK) COA 17419HH701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPSULAC (R) 60 (BHN BAKU OBAT) COA. L100400517A545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"CAPSULAC (R) 60 (BHN BAKU OBAT) COA. L100400517A545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103872017A545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103872017A545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104311417A552\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104311417A552\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN0160117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN0160117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANOCOBALAMINE VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1704840986\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANOCOBALAMINE VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1704840986\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRAZINAMIDE USP (BHN BAKU OBAT) COA PZ 044 F 17,PZ 045 F 17...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"PYRAZINAMIDE USP (BHN BAKU OBAT) COA PZ 044 F 17,PZ 045 F 17...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX TM COMPACTED, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B339892 S/D 4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX TM COMPACTED, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B339892 S/D 4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT17060023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT17060023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROVIMIX AD3 1000/200,20KG BAL (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT17020089,90\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"ROVIMIX AD3 1000/200,20KG BAL (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT17020089,90\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROVIMIX E 50 ADSORBATE (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT17040101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"ROVIMIX E 50 ADSORBATE (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT17040101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 190417\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25070000\", \"uraian\": \"KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 190417\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED(BHN BAKU OBAT UTK PAKAN TERNAK) COA MTP02617\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED(BHN BAKU OBAT UTK PAKAN TERNAK) COA MTP02617\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUMPLEMEN) COA 16229\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUMPLEMEN) COA 16229\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA625326\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA625326\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA625404\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA625404\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MONOCALCIUM PHOSPHATE (B.BAKU OBAT UTK PAKAN TERNAK)COA EVSHUE000313GBF,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28352510\", \"uraian\": \"MONOCALCIUM PHOSPHATE (B.BAKU OBAT UTK PAKAN TERNAK)COA EVSHUE000313GBF,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MONO-CALCIUM PHOSPHATE (B.BAKU OBAT UTK PAKAN TERNAK)COA BCL HUE000453GBF SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28352510\", \"uraian\": \"MONO-CALCIUM PHOSPHATE (B.BAKU OBAT UTK PAKAN TERNAK)COA BCL HUE000453GBF SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DICALCIUM PHOSPHATE (B.BAKU OBAT UTK PAKAN TERNAK) COA L-2/17\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28352510\", \"uraian\": \"DICALCIUM PHOSPHATE (B.BAKU OBAT UTK PAKAN TERNAK) COA L-2/17\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PERFECTAMYL AC (BHN BAKU KOSMETIK)COA H1242804\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PERFECTAMYL AC (BHN BAKU KOSMETIK)COA H1242804\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-170) BHN BAKU KOSMETIK, COA MS/70120/B15/LOREAL/280617\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-170) BHN BAKU KOSMETIK, COA MS/70120/B15/LOREAL/280617\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA MS/2460/B15/LOREAL/100517\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA MS/2460/B15/LOREAL/100517\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALDAVINE 5X (BHN BAKU KOSMETIK) COA 5478717\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ALDAVINE 5X (BHN BAKU KOSMETIK) COA 5478717\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829015301H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"B-WHITE (BHN BAKU KOSMETIK) COA 829015301H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830015179H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CAPIXYL (BHN BAKU KOSMETIK) COA 830015179H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 7850104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 7850104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL (BHN BAKU KOSMETIK), COA 1710601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LECIGEL (BHN BAKU KOSMETIK), COA 1710601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK), COA 828014899G\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"NEUTRAZEN (BHN BAKU KOSMETIK), COA 828014899G\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015046H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015046H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015208H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015208H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70306068,69\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70306068,69\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ61213328\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ61213328\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ61213329\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ61213329\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ61213329\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ61213329\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPI PX 507 (BHN BAKU MAKANAN) COA XW91706127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"SPI PX 507 (BHN BAKU MAKANAN) COA XW91706127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL01702621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL01702621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070C (BHN BAKU SUPLEMEN) COA XW91706128\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070C (BHN BAKU SUPLEMEN) COA XW91706128\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL01704169\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU MAKANAN) COA TL01704169\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91705406\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91705406\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17030060,61\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17030060,61\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70306070\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70306070\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70306071\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70306071\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01809090\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01809090\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01606109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU MAKANAN) COA UE01606109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL A TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT16110352\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL A TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT16110352\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT16120007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT16120007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11705003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11705003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ61213328,29\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ61213328,29\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01605006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01605006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT16120172\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT16120172\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17010001,5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17010001,5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01704169\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01704169\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UT61213329\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UT61213329\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01703810\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01703810\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01702621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01702621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91706071\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91706071\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ61210257\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ61210257\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC,20KG BAL (BHN BAKU KOSMETIK) COA OP81705014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC,20KG BAL (BHN BAKU KOSMETIK) COA OP81705014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL, 10KG PAIL PE(BHN BAKU KOSMETIK) COA AVD0014953\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL, 10KG PAIL PE(BHN BAKU KOSMETIK) COA AVD0014953\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517050089\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517050089\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P7O06UA000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL TX (BHN BAKU KOSMETIK) COA P7O06UA000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00453869,57400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"AMPHISOL K (BHN BAKU KOSMETIK) COA VE00453869,57400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01701010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01701010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01701801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01701801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX VH (BHN BAKU KOSMETIK) COA UF17027002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"BEAUPLEX VH (BHN BAKU KOSMETIK) COA UF17027002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX VH (BHN BAKU KOSMETIK) COA UF17082001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"BEAUPLEX VH (BHN BAKU KOSMETIK) COA UF17082001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA MCS1605116\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA MCS1605116\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P7O06UA000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL TX (BHN BAKU KOSMETIK) COA P7O06UA000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS ,25KG PC (BHN BAKU KOSMETIK) COA MCS1607004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL EHS ,25KG PC (BHN BAKU KOSMETIK) COA MCS1607004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM 0325 DRIED AL HYD GEL USP(BHN BAKU OBAT) COA.101758002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"BARCROFT TM 0325 DRIED AL HYD GEL USP(BHN BAKU OBAT) COA.101758002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP783834\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP783834\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP783834\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP783834\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY C 50, 20KG BOXNA (BHN BAKU KOSMETIK) COA UT17040035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY C 50, 20KG BOXNA (BHN BAKU KOSMETIK) COA UT17040035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE PURIMOX COMPACTED (BHN BAKU OBAT) COA M529136,152,162,229\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE PURIMOX COMPACTED (BHN BAKU OBAT) COA M529136,152,162,229\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CILOSTAZOL USP (BHN BAKU OBAT) COA 6004CB2ARI\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29337900\", \"uraian\": \"CILOSTAZOL USP (BHN BAKU OBAT) COA 6004CB2ARI\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.17100439\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29391900\", \"uraian\": \"PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.17100439\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA P-53\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA P-53\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA P-53\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA P-53\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B.I.O.KEY SELENIUM VM (BHN BAKU OBAT UTK PAKAN TERNAK) COA 251016-809\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"B.I.O.KEY SELENIUM VM (BHN BAKU OBAT UTK PAKAN TERNAK) COA 251016-809\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIOTOX (BHN BAKU OBAT UTK PAKAN TERNAK) COA 280617-530\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"BIOTOX (BHN BAKU OBAT UTK PAKAN TERNAK) COA 280617-530\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for E.C.O TRACE FE 20PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC12021702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"E.C.O TRACE FE 20PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC12021702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for E.C.O TRACE MN 20PCT (BHN BAKU UTK PAKAN TERNAK) COA BC14011702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"E.C.O TRACE MN 20PCT (BHN BAKU UTK PAKAN TERNAK) COA BC14011702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for E.C.O.TRACE ZN 25PCT(BHN BAKU OBAT UTK PAKAN TERNAK) COA BC21041602\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"E.C.O.TRACE ZN 25PCT(BHN BAKU OBAT UTK PAKAN TERNAK) COA BC21041602\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIQUIPHOS STRONG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 020517-356\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"LIQUIPHOS STRONG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 020517-356\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIQUIPHOS STRONG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 020517-356\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"LIQUIPHOS STRONG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 020517-356\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRANOL ULTRA C32 200KG PLASCTIC DRUM (BHN BAKU KOSMETIK) COA BP706275R\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34029099\", \"uraian\": \"MIRANOL ULTRA C32 200KG PLASCTIC DRUM (BHN BAKU KOSMETIK) COA BP706275R\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/17060256\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/17060256\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NYSTATIN (BHN BAKU OBAT) COA.C114033,35\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NYSTATIN (BHN BAKU OBAT) COA.C114033,35\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EPA DHA 44 37 (BHN BAKU OBAT) COA EE4437-170710\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"EPA DHA 44 37 (BHN BAKU OBAT) COA EE4437-170710\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHENYTOIN SODIUM (BHN BAKU OBAT) COA.17100245\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332100\", \"uraian\": \"PHENYTOIN SODIUM (BHN BAKU OBAT) COA.17100245\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 17100474\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 17100474\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 17100474\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 17100474\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANTOPRAZOLE SODIUM (STERILE) BHN BAKU OBAT, COA SI/PPZ/00200617\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"PANTOPRAZOLE SODIUM (STERILE) BHN BAKU OBAT, COA SI/PPZ/00200617\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANTOPRAZOLE SODIUM (STERILE) BHN BAKU OBAT, COA SI/PPZ/00200617\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"PANTOPRAZOLE SODIUM (STERILE) BHN BAKU OBAT, COA SI/PPZ/00200617\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND170405\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND170405\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPICILLIN TRIHYDRATE PURICILLIN COMPACTED (BHN BAKU OBAT) COA. M842102 S/D 4 , 6,7,8\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411020\", \"uraian\": \"AMPICILLIN TRIHYDRATE PURICILLIN COMPACTED (BHN BAKU OBAT) COA. M842102 S/D 4 , 6,7,8\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRAPE SEED ORGANIC OIL C00031 (BHN BAKU KOSMETIK)COA RPH170201-ENBIO-RQ\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"GRAPE SEED ORGANIC OIL C00031 (BHN BAKU KOSMETIK)COA RPH170201-ENBIO-RQ\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK)COA EG138-170601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK)COA EG138-170601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK)COA CFM170301-PGH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK)COA CFM170301-PGH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LICORICE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA GLG161102-BGBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LICORICE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA GLG161102-BGBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LICORICE ORGANIC OILY EXTRACT (BHN BAKU KOSMETIK)COA GLGT161102-HBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LICORICE ORGANIC OILY EXTRACT (BHN BAKU KOSMETIK)COA GLGT161102-HBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK)COA EG209-160402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK)COA EG209-160402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIVD160903-BGBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIVD160903-BGBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO170601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO170601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO170601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO170601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG LP 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7142814\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG LP 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7142814\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU REGULATORY T CELL ...(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7158981\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU REGULATORY T CELL ...(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7158981\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6307974\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6307974\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7041588\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7041588\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7090816\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7090816\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7082920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7082920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6197586\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6197586\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG LP80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7142814\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG LP80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7142814\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP AI VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6337887\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP AI VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6337887\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYCLETEST PLUS DNA REAGENT KIT RUO/GMP (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 7110822\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CYCLETEST PLUS DNA REAGENT KIT RUO/GMP (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 7110822\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7055959\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7055959\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6228624,7116960\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6228624,7116960\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PERM/WASH BUFFER 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6356786\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PERM/WASH BUFFER 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6356786\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD36 FITC CB (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7125585\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD36 FITC CB (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7125585\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANNEXIN V FITC APOP DTEC... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7026585\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANNEXIN V FITC APOP DTEC... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7026585\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7158901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7158901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7068880\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7068880\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7104797\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7104797\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD117 PE 10402 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7094972\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD117 PE 10402 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7094972\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6215857\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD5 APC L17F12 100 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6215857\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD14 PERCP MPHIP9 50 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7171991\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD14 PERCP MPHIP9 50 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7171991\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6354550,715984\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6354550,715984\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7123691\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7123691\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI HLA DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7159533\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANTI HLA DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7159533\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7115545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7115545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7041588\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7041588\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7088538\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7088538\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7109549\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7109549\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEMOGLOBIN SOL 2PCT 100ML 10EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7045874\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEMOGLOBIN SOL 2PCT 100ML 10EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7045874\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ANNAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7087889\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ANNAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7087889\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7102829\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7102829\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTISERUM GRP A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6246962\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL O ANTISERUM GRP A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6246962\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009560\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009560\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6309655\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6309655\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA.RBA1811700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA.RBA1811700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM TYPE T 25KG (BHN BAKU OBAT) COA B0003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331100\", \"uraian\": \"METAMIZOLE SODIUM TYPE T 25KG (BHN BAKU OBAT) COA B0003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AC019KC PHYTOVITYL C 5KG BHN BAKU KOSMETIK COA 0013570\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"AC019KC PHYTOVITYL C 5KG BHN BAKU KOSMETIK COA 0013570\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITASMOOTH (R) 041 ( BHN BAKU OBAT) COA 121707720\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28365010\", \"uraian\": \"VITASMOOTH (R) 041 ( BHN BAKU OBAT) COA 121707720\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT663924\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT663924\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT663925\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT663925\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPASPRAY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT663926\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPASPRAY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT663926\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II TAN (BHN BAKU OBAT UTK PEWARNA TABLET) COA.DT663920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II TAN (BHN BAKU OBAT UTK PEWARNA TABLET) COA.DT663920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTABIO ARV-S (BHN BAKU OBAT) COA.1703061K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"ASTABIO ARV-S (BHN BAKU OBAT) COA.1703061K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17050011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17050011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GENIVIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"GENIVIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT17010010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT17010010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COATED ASCORBIC ACID TYPE EC (BHN BAKU SUPLEMEN) COA TL01703912\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"COATED ASCORBIC ACID TYPE EC (BHN BAKU SUPLEMEN) COA TL01703912\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB00217177\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB00217177\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 (TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT17060023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 (TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT17060023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17020051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17020051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT17010033\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT17010033\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA. DOC1791772\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA. DOC1791772\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT17060023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT17060023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ70107003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ70107003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ALWHITE-7 (B BAKU KOSMETIK)COA CLHW-011177\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND ALWHITE-7 (B BAKU KOSMETIK)COA CLHW-011177\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-590147\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-590147\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND BIO SODIUM HYALURONATE POWDER (MMW) (B. BAKU KOSMETIK) COA CHP1170621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND BIO SODIUM HYALURONATE POWDER (MMW) (B. BAKU KOSMETIK) COA CHP1170621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK)COA MUP-011017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK)COA MUP-011017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 060117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 060117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (B. BAKU KOSMETIK) COA SFP-N-040857\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND SOPHORA ROOT POWDER (B. BAKU KOSMETIK) COA SFP-N-040857\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK)COA U170622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK)COA U170622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD 021447\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD 021447\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702362711\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702362711\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO170601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO170601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-170301-GS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-170301-GS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSE OILY EXTRACT (BHN BAKU KOSMETIK)COA ROS170604-H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ROSE OILY EXTRACT (BHN BAKU KOSMETIK)COA ROS170604-H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LOTUS OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA NEN170605-H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LOTUS OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA NEN170605-H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OMEPRAZOLE PELLETS 8,5 PCT (BHN BAKU OBAT) COA OP0217C044,050\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30034100\", \"uraian\": \"OMEPRAZOLE PELLETS 8,5 PCT (BHN BAKU OBAT) COA OP0217C044,050\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMETHAZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA HPHCPL029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29343000\", \"uraian\": \"PROMETHAZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA HPHCPL029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 55166P\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 55166P\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SWT 7L (BHN BAKU KOSMETIK) COA 1632001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SWT 7L (BHN BAKU KOSMETIK) COA 1632001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SWT 7L (BHN BAKU KOSMETIK) COA 1629501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SWT 7L (BHN BAKU KOSMETIK) COA 1629501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SWT 7L (BHN BAKU KOSMETIK) COA 1632001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SWT 7L (BHN BAKU KOSMETIK) COA 1632001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRO LIPO NEO (BHN BAKU KOSMETIK) COA 1713601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PRO LIPO NEO (BHN BAKU KOSMETIK) COA 1713601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HELIOGEL (BHN BAKU KOSMETIK), COA 1706301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HELIOGEL (BHN BAKU KOSMETIK), COA 1706301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SWT 7L (BHN BAKU KOSMETIK), COA 1629501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SWT 7L (BHN BAKU KOSMETIK), COA 1629501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 17071101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 17071101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFEPIME HYDROCHLORIDE/L-ARGININE STERILE (B BAKU OBAT) COA YS17136\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFEPIME HYDROCHLORIDE/L-ARGININE STERILE (B BAKU OBAT) COA YS17136\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEROPENEM TRIHYDRATE WITH SODIUM CARBONATE STERILE(B.BAKU OBAT) COA S0820170506\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30032000\", \"uraian\": \"MEROPENEM TRIHYDRATE WITH SODIUM CARBONATE STERILE(B.BAKU OBAT) COA S0820170506\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PERMETHRIN PHARMA GRADE BHN BAKU OBAT COA PE0022-S77\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29163990\", \"uraian\": \"PERMETHRIN PHARMA GRADE BHN BAKU OBAT COA PE0022-S77\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA.121707505\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054300\", \"uraian\": \"MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA.121707505\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SORBITOL SPECIAL TM MDF 85, SORBITOL( BHN BAKU OBAT) COA M7013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054400\", \"uraian\": \"SORBITOL SPECIAL TM MDF 85, SORBITOL( BHN BAKU OBAT) COA M7013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NYSTATIN MICRONIZED (BHN BAKU OBAT) COA.C130567\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NYSTATIN MICRONIZED (BHN BAKU OBAT) COA.C130567\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM DAB /EP 7.0 (BHN BAKU OBAT) COA 1705676,5688,5690,5694\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331100\", \"uraian\": \"METAMIZOLE SODIUM DAB /EP 7.0 (BHN BAKU OBAT) COA 1705676,5688,5690,5694\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MARCOL 52 (BHN BAKU OBAT UTK PAKAN TERNAK) COA 17125HH701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101989\", \"uraian\": \"MARCOL 52 (BHN BAKU OBAT UTK PAKAN TERNAK) COA 17125HH701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM DAB /EP 7.0 (BHN BAKU OBAT) COA 1705655,73,74,76\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331100\", \"uraian\": \"METAMIZOLE SODIUM DAB /EP 7.0 (BHN BAKU OBAT) COA 1705655,73,74,76\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANNITOL POWDER USP/EP (BHN BAKU OBAT) COA.301706304\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054300\", \"uraian\": \"MANNITOL POWDER USP/EP (BHN BAKU OBAT) COA.301706304\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 100 CN 10KG KA (BHN BAKU KOSMETIK) COA 1315385, 1317274\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 100 CN 10KG KA (BHN BAKU KOSMETIK) COA 1315385, 1317274\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 CN 10KG KA (BHN BAKU KOSMETIK) COA 1329272,1331434,1331435\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 CN 10KG KA (BHN BAKU KOSMETIK) COA 1329272,1331434,1331435\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIDIN DO CN 10KG CA (BHN BAKU KOSMETIK) COA 1331493\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIDIN DO CN 10KG CA (BHN BAKU KOSMETIK) COA 1331493\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 120 CN 10KG KA (BHN BAKU KOSMETIK) COA 1326779,1327068\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 120 CN 10KG KA (BHN BAKU KOSMETIK) COA 1326779,1327068\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 900 CN 10KG KA (BHN BAKU KOSMETIK) COA 1316900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 900 CN 10KG KA (BHN BAKU KOSMETIK) COA 1316900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GROTANOL 3025 CN 10KG KA (BHN BAKU KOSMETIK) COA 1330940\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GROTANOL 3025 CN 10KG KA (BHN BAKU KOSMETIK) COA 1330940\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 CN 10KG KA (BHN BAKU KOSMETIK) COA 1331519\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 CN 10KG KA (BHN BAKU KOSMETIK) COA 1331519\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 120 100 ML FL (BHN BAKU KOSMETIK) COA 1324731, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 120 100 ML FL (BHN BAKU KOSMETIK) COA 1324731, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 220 100 ML FL (BHN BAKU KOSMETIK) COA 1321271, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 220 100 ML FL (BHN BAKU KOSMETIK) COA 1321271, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 340 100 ML FL (BHN BAKU KOSMETIK) COA 1315684 , SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 340 100 ML FL (BHN BAKU KOSMETIK) COA 1315684 , SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 350 100 ML FL (BHN BAKU KOSMETIK) COA 1330239, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 350 100 ML FL (BHN BAKU KOSMETIK) COA 1330239, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 500 SAMPLES 100ML FL (BHN BAKU KOSMETIK) COA 1328484 SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 500 SAMPLES 100ML FL (BHN BAKU KOSMETIK) COA 1328484 SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 510 100ML FL (BHN BAKU KOSMETIK) COA 1310515,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 510 100ML FL (BHN BAKU KOSMETIK) COA 1310515,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 700 SAMPLES 100 ML FL (BHN BAKU KOSMETIK) COA 1328475 SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 700 SAMPLES 100 ML FL (BHN BAKU KOSMETIK) COA 1328475 SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 702 SAMPLES 100 ML FL (BHN BAKU KOSMETIK) COA 1317499,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 702 SAMPLES 100 ML FL (BHN BAKU KOSMETIK) COA 1317499,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 703 100 ML FL (BHN BAKU KOSMETIK) COA 1324733 SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 703 100 ML FL (BHN BAKU KOSMETIK) COA 1324733 SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 SAMPLES 100 ML FL (BHN BAKU KOSMETIK) COA 1328644, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 SAMPLES 100 ML FL (BHN BAKU KOSMETIK) COA 1328644, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA PA 20 SAMPLES 100 ML FL (BHN BAKU KOSMETIK) COA 1330238, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA PA 20 SAMPLES 100 ML FL (BHN BAKU KOSMETIK) COA 1330238, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA PA 30 (SAMPLE) 100 ML FL (BHN BAKU KOSMETIK) COA 1324734, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA PA 30 (SAMPLE) 100 ML FL (BHN BAKU KOSMETIK) COA 1324734, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARMETOL A 28 SAMPLE 250 ML FL (BHN BAKU KOSMETIK) COA 1324734 SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PARMETOL A 28 SAMPLE 250 ML FL (BHN BAKU KOSMETIK) COA 1324734 SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARMETOL DF 35 N SAMPLE 250 ML FL (BHN BAKU KOSMETIK) COA 1311473,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PARMETOL DF 35 N SAMPLE 250 ML FL (BHN BAKU KOSMETIK) COA 1311473,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARMETOL K 20 SAMPLE 250 ML FL (BHN BAKU KOSMETIK) COA 1299377,1304762\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PARMETOL K 20 SAMPLE 250 ML FL (BHN BAKU KOSMETIK) COA 1299377,1304762\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARMETOL MBX SAMPLE 250 ML FL (BHN BAKU KOSMETIK) COA 1314577, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PARMETOL MBX SAMPLE 250 ML FL (BHN BAKU KOSMETIK) COA 1314577, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GROTAN BA 21 SAMPLE 250 ML FL (BHN BAKU KOSMETIK) COA 1314740,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GROTAN BA 21 SAMPLE 250 ML FL (BHN BAKU KOSMETIK) COA 1314740,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL PANTHENOL 50L (BHN BAKU KOSMETIK) COA TL01701604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL PANTHENOL 50L (BHN BAKU KOSMETIK) COA TL01701604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY C 50, 5KG BALUS (BHN BAKU KOSMETIK) COA UT17030024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY C 50, 5KG BALUS (BHN BAKU KOSMETIK) COA UT17030024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70502258\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70502258\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70502258, 59\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70502258, 59\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70503148\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70503148\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70503148,50\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70503148,50\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ70309012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ70309012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17010011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17010011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU MAKANAN) COA UT16120007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU MAKANAN) COA UT16120007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 C3 (BHN BAKU MAKANAN) COA XW91706238\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 C3 (BHN BAKU MAKANAN) COA XW91706238\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX TYPE MM81 (105PCT) (BHN BAKU MAKANAN) COA XW91706241\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX TYPE MM81 (105PCT) (BHN BAKU MAKANAN) COA XW91706241\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70402215,2258\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70402215,2258\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70402215\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70402215\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70402215\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70402215\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70503147, 3148\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70503147, 3148\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL A TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT17020016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL A TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT17020016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT17030728\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT17030728\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1703030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1703030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ70309012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ70309012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70503148\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70503148\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 70307028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 70307028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7115789\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7115789\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SOLUTION DECONTAMINATION CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2497C319\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"SOLUTION DECONTAMINATION CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2497C319\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT 10X10MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7137564\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"TUBE EGG YOLK ENRICHMENT 50PCT 10X10MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7137564\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7137605\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANTI MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7137605\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD79A PE HM47 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7097800,7165753\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD79A PE HM47 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7097800,7165753\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD19 PE CY7 SJ25C1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7146771\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD19 PE CY7 SJ25C1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7146771\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD34 PERCP CY5.5 8G12 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7153914\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD34 PERCP CY5.5 8G12 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7153914\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD7 APC (M-T701) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7165727\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD7 APC (M-T701) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7165727\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD3 HORIZON V450 UCHT1 120TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7130596\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD3 HORIZON V450 UCHT1 120TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7130596\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD45 HORIZON V500 HI30 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7131686\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD45 HORIZON V500 HI30 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7131686\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 7074616\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 7074616\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX C TM AF (BHN BAKU KOSMETIK) COA.70611\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SUPEROX C TM AF (BHN BAKU KOSMETIK) COA.70611\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA.70517\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA.70517\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7117970\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7117970\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7173845\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7173845\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7173845\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7173845\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7152953\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7152953\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANEL VIEWER EUROPE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 111616\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PANEL VIEWER EUROPE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 111616\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6286718,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6286718,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6130548\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6130548\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7093593\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7093593\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7033659\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7033659\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 6300912,6333983\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 6300912,6333983\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053881\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053881\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6336799\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6336799\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009836\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009836\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009856,7109998\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009856,7109998\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060848\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060848\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7081793,710288\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7081793,710288\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL BUFFERED PEPTONE WATER 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7075740\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL BUFFERED PEPTONE WATER 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7075740\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7103621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7103621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6293897,7095842\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6293897,7095842\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009966\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D SORBITOL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009966\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009829\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009829\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7017943,70958\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7017943,70958\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6250612\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6250612\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6278737\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6278737\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7053868\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7053868\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6291710\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6291710\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6333840\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6333840\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6257924\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6257924\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7089764,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7089764,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6342932,7009568\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6342932,7009568\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7088842\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7088842\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053894\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053894\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7081569\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7081569\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6320612\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6320612\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7005857\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7005857\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7116509\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7116509\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053868\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053868\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SOLUTION BACTERIOSTAT CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3207C313\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"SOLUTION BACTERIOSTAT CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3207C313\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7116509\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7116509\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7088559\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7088559\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE CRYSTAL E/ ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7053551\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"TUBE CRYSTAL E/ ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7053551\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GRAM CRYSTAL VIOLET 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7115698\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE GRAM CRYSTAL VIOLET 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7115698\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB LIQUID STUART SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 170715999\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CULTURESWAB LIQUID STUART SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 170715999\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK E2 CAMPY CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7089775\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"SACHET GASPAK E2 CAMPY CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7089775\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7116552\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7116552\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6333983\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6333983\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7109945\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7109945\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7116560\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7116560\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7142578\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7142578\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6250612\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6250612\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053868\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053868\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R1 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 63206117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R1 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 63206117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7114758\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7114758\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7075737\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7075737\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060762\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060762\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7082650\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7082650\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 8 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 5201890\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 8 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 5201890\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 5 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6278815\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 5 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6278815\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BASE HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7135933\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BASE HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7135933\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7017983\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7017983\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009709\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009709\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7066737\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7066737\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER LACTOPHENOL COTTON BLUE STAIN (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 7031949\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER LACTOPHENOL COTTON BLUE STAIN (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 7031949\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7143744\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7143744\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GASPAK EZ LARGE INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7261717010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"GASPAK EZ LARGE INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7261717010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL LAURYL TRYPTOSE BROTH 2KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7143979620\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL LAURYL TRYPTOSE BROTH 2KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7143979620\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7082926\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7082926\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7135968\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7135968\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7067719\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7067719\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 4056159\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 4056159\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHENOL RED LACTOSE BR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6235657\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PHENOL RED LACTOSE BR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6235657\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHENOL RED SUCROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009818\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PHENOL RED SUCROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009818\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7088775\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7088775\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6327604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6327604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6243907\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6243907\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7114681\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7114681\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121602\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121602\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BEEF EXTRACT POWDER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6298524\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BEEF EXTRACT POWDER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6298524\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7060948\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7060948\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIVE POLYPHENOLIC DRY EXTRACT (BHN BAKU SUPLEMEN) COA 17210\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"OLIVE POLYPHENOLIC DRY EXTRACT (BHN BAKU SUPLEMEN) COA 17210\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MARCOL 52 (BHN BAKU OBAT UTK PAKAN TERNAK) COA 17326HH701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101989\", \"uraian\": \"MARCOL 52 (BHN BAKU OBAT UTK PAKAN TERNAK) COA 17326HH701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MARCOL 52 (BHN BAKU OBAT UTK PAKAN TERNAK) COA 17125HH701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101989\", \"uraian\": \"MARCOL 52 (BHN BAKU OBAT UTK PAKAN TERNAK) COA 17125HH701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIPERAZINE CITRATE BP/USP (BHN BAKU OBAT) COA PC-140/17, PC-142/17...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"PIPERAZINE CITRATE BP/USP (BHN BAKU OBAT) COA PC-140/17, PC-142/17...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS EFLS (BHN BAKU KOSMETIK) COA DDK\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROMOIS EFLS (BHN BAKU KOSMETIK) COA DDK\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA ELC\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROTESIL LH (BHN BAKU KOSMETIK) COA ELC\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA DEJ\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) COA DEJ\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK-GB (BHN BAKU KOSMETIK) COA DCA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROMOIS WK-GB (BHN BAKU KOSMETIK) COA DCA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY C 50, 20KG BOXNA (BHN BAKU KOSMETIK) COA UT17040027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY C 50, 20KG BOXNA (BHN BAKU KOSMETIK) COA UT17040027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334470,72,73\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334470,72,73\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIRJU (BHN BAKU KOSMETIK) COA 170509\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"CLAIRJU (BHN BAKU KOSMETIK) COA 170509\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE II( BHN BAKU KOSMETIK), COA 170585\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE II( BHN BAKU KOSMETIK), COA 170585\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 170935\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 170935\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 170467\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 170467\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 171058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 171058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID DC 97PCT, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG1704012,7001,7002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID DC 97PCT, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG1704012,7001,7002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC CALCIUM ASCORBIC DC, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPT1706025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC CALCIUM ASCORBIC DC, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPT1706025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID SPECIAL ,25KG BAL (B.BAKU SUPLEMEN) COA HPB1704104 -SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID SPECIAL ,25KG BAL (B.BAKU SUPLEMEN) COA HPB1704104 -SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1707020,23 24,27 S/D 33 209,210\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"MEFENAMIC ACID (BHN BAKU OBAT) COA MA1707020,23 24,27 S/D 33 209,210\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOPROFEN (BHN BAKU OBAT) COA.178918\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29183000\", \"uraian\": \"KETOPROFEN (BHN BAKU OBAT) COA.178918\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MOXIFLOXACIN HYDROCHLORIDE(BHN BAKU OBAT) COA MP0060517\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334990\", \"uraian\": \"MOXIFLOXACIN HYDROCHLORIDE(BHN BAKU OBAT) COA MP0060517\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702362711\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702362711\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OATWELL (R) 22,18KG BAG (BHN BAKU MAKANAN) COA SOF172004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"OATWELL (R) 22,18KG BAG (BHN BAKU MAKANAN) COA SOF172004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA. ROA186173\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA. ROA186173\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA. ROA193173\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA. ROA193173\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE BP MICRONISED (BHN BAKU OBAT) COA.17890717,17900717...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29351000\", \"uraian\": \"SULPHAMETHOXAZOLE BP MICRONISED (BHN BAKU OBAT) COA.17890717,17900717...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10236/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILYBIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10236/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYMARIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10447/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILYMARIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10447/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VALERIAN D.H.E > 0.8PCT VAL.AC (BAHAN BAKU SUPPLEMEN) COA 10121/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VALERIAN D.H.E > 0.8PCT VAL.AC (BAHAN BAKU SUPPLEMEN) COA 10121/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VALERIAN D.H.E >0.8PCT VAL.AC (BAHAN BAKU SUPPLEMEN) COA 10318/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VALERIAN D.H.E >0.8PCT VAL.AC (BAHAN BAKU SUPPLEMEN) COA 10318/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10219/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10219/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10399/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10399/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10400/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10400/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10429/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10429/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SERENOA REPENS PURIFIED EXT (BHN BAKU SUPLEMEN) COA 32455/B/1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SERENOA REPENS PURIFIED EXT (BHN BAKU SUPLEMEN) COA 32455/B/1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA/PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 31730/H1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA/PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 31730/H1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CURCUMA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 32460/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CURCUMA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 32460/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SERENOA REPENS PURIFIED EXT (BHN BAKU SUPLEMEN) COA 32455/B/1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SERENOA REPENS PURIFIED EXT (BHN BAKU SUPLEMEN) COA 32455/B/1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 32190/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 32190/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECHINACEA ANG DRY PURIF EX (BHN BAKU SUPLEMEN) COA 32226/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ECHINACEA ANG DRY PURIF EX (BHN BAKU SUPLEMEN) COA 32226/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5457516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5457516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829015126H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"B-WHITE (BHN BAKU KOSMETIK) COA 829015126H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830015300H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CAPIXYL (BHN BAKU KOSMETIK) COA 830015300H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 7850104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 7850104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANABLUE (BHN BAKU KOSMETIK) COA 5470017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LANABLUE (BHN BAKU KOSMETIK) COA 5470017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANABLUE (BHN BAKU KOSMETIK) COA 5497917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LANABLUE (BHN BAKU KOSMETIK) COA 5497917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5462616\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK) COA 5462616\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELANOSTATINE 5 BG (50PPM) BHN BAKU KOSMETIK,COA 817044833G\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"MELANOSTATINE 5 BG (50PPM) BHN BAKU KOSMETIK,COA 817044833G\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELANOSTATINE 5 PS (50PPM) BHN BAKU KOSMETIK, COA 817014258G\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"MELANOSTATINE 5 PS (50PPM) BHN BAKU KOSMETIK, COA 817014258G\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOXYL (BHN BAKU KOSMETIK) COA P0516501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"RIBOXYL (BHN BAKU KOSMETIK) COA P0516501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025335H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025335H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015208H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015208H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SWT 7L (BHN BAKU KOSMETIK) COA 1632001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SWT 7L (BHN BAKU KOSMETIK) COA 1632001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SWT 7L (BHN BAKU KOSMETIK) COA 1629501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SWT 7L (BHN BAKU KOSMETIK) COA 1629501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SWT 7L (BHN BAKU KOSMETIK) COA 1632001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SWT 7L (BHN BAKU KOSMETIK) COA 1632001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRO LIPO NEO (BHN BAKU KOSMETIK) COA 1713601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PRO LIPO NEO (BHN BAKU KOSMETIK) COA 1713601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HELIOGEL (BHN BAKU KOSMETIK), COA 1706301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HELIOGEL (BHN BAKU KOSMETIK), COA 1706301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SWT 7L (BHN BAKU KOSMETIK), COA 1629501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SWT 7L (BHN BAKU KOSMETIK), COA 1629501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596853\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596853\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596851\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596851\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596568\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596568\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596862\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596862\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596863\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596863\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596859\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596859\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596867\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596867\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596857\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596857\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596856\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596856\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596852\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596852\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596861\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596861\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596851\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596851\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596864\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596864\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596858\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596858\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596855\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596855\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596855\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596855\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596855\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596855\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596854\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596854\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA OBAT) COA SH595414\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA OBAT) COA SH595414\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TECA M (BHN BAKU KOSMETIK)COA 1730310040076\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"TECA M (BHN BAKU KOSMETIK)COA 1730310040076\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NX0562M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NX0562M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIAMCINOLONE ACETONIDE MICRONIZED (BHN BAKU OBAT) COA NX1540M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"TRIAMCINOLONE ACETONIDE MICRONIZED (BHN BAKU OBAT) COA NX1540M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM DAB /EP 7.0 (BHN BAKU OBAT) COA 1704601,5694,5695,5721\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331100\", \"uraian\": \"METAMIZOLE SODIUM DAB /EP 7.0 (BHN BAKU OBAT) COA 1704601,5694,5695,5721\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAPROTILINE HCL (BHN BAKU OBAT) COA 5000/05/17\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29214900\", \"uraian\": \"MAPROTILINE HCL (BHN BAKU OBAT) COA 5000/05/17\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IPRATROPIO BROMIDE (B. BAKU OBAT) COA 9800/03/16,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"IPRATROPIO BROMIDE (B. BAKU OBAT) COA 9800/03/16,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 900 CN 10 KG KA (BHN BAKU KOSMETIK) COA.1316900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 900 CN 10 KG KA (BHN BAKU KOSMETIK) COA.1316900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 CN 10KG KA (BHN BAKU KOSMETIK) COA 13331435,1331782\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 CN 10KG KA (BHN BAKU KOSMETIK) COA 13331435,1331782\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SORBOSIL BFG50 (BHN BAKU OBAT) COA RE17406\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28112210\", \"uraian\": \"SORBOSIL BFG50 (BHN BAKU OBAT) COA RE17406\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK)COA MS/70120/B15/LOREAL/090717\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK)COA MS/70120/B15/LOREAL/090717\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA MS/2460/B15/LOREAL/070717\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA MS/2460/B15/LOREAL/070717\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA MS/70120/YOIB155/LOREAL/130417\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA MS/70120/YOIB155/LOREAL/130417\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 171118,170585\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 171118,170585\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE II( BHN BAKU KOSMETIK), COA 171118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE II( BHN BAKU KOSMETIK), COA 171118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA. WP785036\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA. WP785036\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP PHTHALAVIN NF CLEAR (BAHAN BAKU OBAT UTK PEWARNA TABLET) COA. WP785040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP PHTHALAVIN NF CLEAR (BAHAN BAKU OBAT UTK PEWARNA TABLET) COA. WP785040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C BLUE 2/INDIGO VARMINE...(BHN BAKU OBAT UTK PEWARNA TABLET) COA. WP781750\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C BLUE 2/INDIGO VARMINE...(BHN BAKU OBAT UTK PEWARNA TABLET) COA. WP781750\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6017 (BHN BAKU KOSMETIK) , COA 707020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"KF-6017 (BHN BAKU KOSMETIK) , COA 707020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-210 (BHN BAKU KOSMETIK) COA 707213\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"KSG-210 (BHN BAKU KOSMETIK) COA 707213\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP-100 (BHN BAKU KOSMETIK) COA 707520\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"KSP-100 (BHN BAKU KOSMETIK) COA 707520\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-710 (BHN BAKU KOSMETIK) COA 706034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"KSG-710 (BHN BAKU KOSMETIK) COA 706034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DWI BI (BHN BAKU MAKANAN) COA XW91707041,42\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"DWI BI (BHN BAKU MAKANAN) COA XW91707041,42\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DWI BI (BHN BAKU MAKANAN) COA XW91706318,19\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"DWI BI (BHN BAKU MAKANAN) COA XW91706318,19\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ70110003,7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ70110003,7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT16120061\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT16120061\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT17010007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT17010007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO)BHN BAKU MAKANAN,COA UT17030729,730\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO)BHN BAKU MAKANAN,COA UT17030729,730\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11706001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP11706001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17050062\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17050062\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT16120061\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT16120061\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT17030728,729\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT17030728,729\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0217060071\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0217060071\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91707261\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91707261\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01702023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01702023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01701801,3,5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01701801,3,5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708160125,26,27\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708160125,26,27\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX ,25KG PC (BHN BAKU KOSMETIK) COA MCS1605116\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL MCX ,25KG PC (BHN BAKU KOSMETIK) COA MCS1605116\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX VH (BHN BAKU KOSMETIK) COA UF17082001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"BEAUPLEX VH (BHN BAKU KOSMETIK) COA UF17082001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11706001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11706001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P8O07UA000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL TX (BHN BAKU KOSMETIK) COA P8O07UA000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789,20 KG BOX (BHN BAKU KOSMETIK) COA 0317050730\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL 1789,20 KG BOX (BHN BAKU KOSMETIK) COA 0317050730\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EPA DHA 44 37 (BHN BAKU OBAT) COA EE4437-170730\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"EPA DHA 44 37 (BHN BAKU OBAT) COA EE4437-170730\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK)COA EG209-160402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK)COA EG209-160402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS170401\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS170401\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK)COA CFM170301-PGH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK)COA CFM170301-PGH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CARICILINE SB (BHN BAKU KOSMETIK) COA CAR170301-SB\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CARICILINE SB (BHN BAKU KOSMETIK) COA CAR170301-SB\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB250717\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB250717\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B290717\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B290717\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA MS/70120/YOIB15S/LOREAL/080517\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA MS/70120/YOIB15S/LOREAL/080517\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0150517\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0150517\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA.MLAH032071718\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29341000\", \"uraian\": \"MELOXICAM BP (BHN BAKU OBAT) COA.MLAH032071718\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NYSTATIN (BHN BAKU OBAT) COA.C114052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NYSTATIN (BHN BAKU OBAT) COA.C114052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ADRENALINE TARTRATE/EPINEPHRINE BITARTRATE (BHN BAKU OBAT) COA 060108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29379020\", \"uraian\": \"ADRENALINE TARTRATE/EPINEPHRINE BITARTRATE (BHN BAKU OBAT) COA 060108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S471/17\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S471/17\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD FACS MELODY BRV 9 COLOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6616340009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BD FACS MELODY BRV 9 COLOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6616340009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA.01/17GAAK\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA.01/17GAAK\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 162392\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 162392\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LABRAFIL M 1944 CS (BAHAN BAKU OBAT) COA 163292\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LABRAFIL M 1944 CS (BAHAN BAKU OBAT) COA 163292\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE AM PELLETS (BAHAN BAKU OBAT) COA 16E3503\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE AM PELLETS (BAHAN BAKU OBAT) COA 16E3503\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRANSCUTOL P (BHN BAKU OBAT) COA 164103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TRANSCUTOL P (BHN BAKU OBAT) COA 164103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TEFOSE 63 (BHN BAKU OBAT) COA 163177\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TEFOSE 63 (BHN BAKU OBAT) COA 163177\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DICLOFENAC SODIUM (BHN BAKU OBAT) COA 170244\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"DICLOFENAC SODIUM (BHN BAKU OBAT) COA 170244\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334471, 85\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334471, 85\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP17073031 S/D 34\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP17073031 S/D 34\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID 325MESH ,20KGBOALPO (BAHAN BAKU SUPLEMEN) COA HPD1706033,38,45,52,58...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID 325MESH ,20KGBOALPO (BAHAN BAKU SUPLEMEN) COA HPD1706033,38,45,52,58...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1710577,1750943,1750933\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"PARACETAMOL (BHN BAKU OBAT) COA 1710577,1750943,1750933\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM DAB /EP 7.0 (BHN BAKU OBAT) COA 1704593,1705725,1705759\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331100\", \"uraian\": \"METAMIZOLE SODIUM DAB /EP 7.0 (BHN BAKU OBAT) COA 1704593,1705725,1705759\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121707945\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121707945\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KANAMYCIN ACID SULFATE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 170603\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"KANAMYCIN ACID SULFATE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 170603\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHARMABURST (R) C1 (BHN BAKU OBAT) COA.121707780\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069099\", \"uraian\": \"PHARMABURST (R) C1 (BHN BAKU OBAT) COA.121707780\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIRACETAM INJECTABLE GRADE BHN BAKU OBAT COA. PIR02417\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29337900\", \"uraian\": \"PIRACETAM INJECTABLE GRADE BHN BAKU OBAT COA. PIR02417\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT664474\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT664474\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT664475\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT664475\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE BALCK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT664501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE BALCK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT664501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT664476\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT664476\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 1707EF8011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"L-ARGININE LO (BHN BAKU KOSMETIK),COA 1707EF8011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CARBOMER (BHN BAKU KOSMETIK) COA JCR170803189\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39069099\", \"uraian\": \"CARBOMER (BHN BAKU KOSMETIK) COA JCR170803189\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIFE'S DHA S35-O100, 5KG ALUF (B.BAKU UPLEMEN) COA VY00219709\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"LIFE'S DHA S35-O100, 5KG ALUF (B.BAKU UPLEMEN) COA VY00219709\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIFE'S DHA (TM) S35-O300,5KG ALUF (BHN BAKU SUPLEMEN) COA VY00224309\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"LIFE'S DHA (TM) S35-O300,5KG ALUF (BHN BAKU SUPLEMEN) COA VY00224309\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B CAROTENE 10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT17030001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B CAROTENE 10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT17030001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17070018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17070018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 (TM)'10' N-3 FOOD POWDER S/SD (BHN BAKU MAKANAN) COA UT17060002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 (TM)'10' N-3 FOOD POWDER S/SD (BHN BAKU MAKANAN) COA UT17060002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB250717\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB250717\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B290717\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B290717\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA MS/70120/YOIB15S/LOREAL/080517\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA MS/70120/YOIB15S/LOREAL/080517\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA.70502\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA.70502\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA.70618\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA.70618\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA 70618\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA 70618\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597408\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597408\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595234\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595234\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597405\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597405\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU UTK PEWARNA TABLET) COA SH597409\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU UTK PEWARNA TABLET) COA SH597409\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU OBAT), COA UJ728\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU OBAT), COA UJ728\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU OBAT) COA UJ728\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU OBAT) COA UJ728\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596568\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596568\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597164\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597164\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597179\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597179\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594654\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594654\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597166\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597166\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597178\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597178\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597165\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597165\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594927\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594927\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597176\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597176\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595336\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595336\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597177\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597177\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597163\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597163\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597173\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597173\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597174\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597174\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597168\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597168\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597175\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597175\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597172\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597172\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597169\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597169\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU TH17/TREG PHENOTYPING KIT 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7191531\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU TH17/TREG PHENOTYPING KIT 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7191531\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7095852\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7095852\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GRAM DECOLORIZER 260ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7044940\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE GRAM DECOLORIZER 260ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7044940\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7125607\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7125607\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7128730\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7128730\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CASAMINO ACIDS 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7177959\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CASAMINO ACIDS 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7177959\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE OXGAIL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7074561\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE OXGAIL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7074561\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7193724\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7193724\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7193724\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7193724\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6228993\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6228993\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 170706516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CULTURESWAB PLUS AMIES W/O CHARC SINGLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 170706516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 17070651\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 17070651\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB LIQUID STUART SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 170715499\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CULTURESWAB LIQUID STUART SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 170715499\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7083743\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7083743\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 170706516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CULTURESWAB PLUS AMIES W/O CHARC SINGLE(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 170706516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6287929\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6287929\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7192642\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRILLIANT GREEN AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7192642\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7177823\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7177823\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PERMEABILIZING SOLUTION 2 10X 500 TESTS(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6357992\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PERMEABILIZING SOLUTION 2 10X 500 TESTS(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6357992\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 170706516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 170706516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NOZZLE ASSY 100 MN SQ CUVETTE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"NOZZLE ASSY 100 MN SQ CUVETTE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7093593\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7093593\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7065886\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7065886\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7069545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7069545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHYTONE PEPTONE 454G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6287929,7121602\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PHYTONE PEPTONE 454G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6287929,7121602\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121569\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121569\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009836\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009836\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6278835\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6278835\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7109998\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7109998\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060848\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060848\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 71028840\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 71028840\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7018890\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7018890\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL BUFFERED PEPTONE WATER 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7117969\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL BUFFERED PEPTONE WATER 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7117969\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7152788.\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7152788.\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7095842\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7095842\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7045539\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7045539\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009829\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009829\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053868\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053868\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7047892\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7047892\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7068859\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7068859\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6257924,7151674\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6257924,7151674\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6320611\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6320611\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7102792,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7102792,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MICROORGANISME) BATCH 7009568,7060731\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MICROORGANISME) BATCH 7009568,7060731\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7075737\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7075737\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRORGANISME) BATCH 7088842\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRORGANISME) BATCH 7088842\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7193724\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7193724\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6320612\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6320612\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7053952\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7053952\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7081822,7109946\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7081822,7109946\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7060807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7060807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7068731\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7068731\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6250612\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6250612\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7047892\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7047892\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7109972\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7109972\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7114771\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7114771\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6320611\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6320611\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7135844\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7135844\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6294620\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6294620\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7140695,7142532\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7140695,7142532\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7114800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7114800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121602\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121602\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR NOBLE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7109502\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE AGAR NOBLE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7109502\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7192642\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7192642\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6201884\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6201884\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7066737\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7066737\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DULCITOL 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7163609\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DULCITOL 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7163609\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EE BROTH MOSSAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7143744\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EE BROTH MOSSAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7143744\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060948\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060948\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MARINA AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7135968\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MARINA AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7135968\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHENOL RED BROTH BASE... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6131892\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PHENOL RED BROTH BASE... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6131892\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHOSPHATE BUFFER PH 7.2...(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121877\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PHOSPHATE BUFFER PH 7.2...(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121877\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7153977\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7153977\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6319507\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6319507\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTONE GLUCOSE EXT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060509\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTONE GLUCOSE EXT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060509\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST NITROGEN BASE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6320617\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE YEAST NITROGEN BASE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6320617\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD4 APC SK3 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7030773\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD4 APC SK3 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7030773\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FASTIMMUNE IFN GAMMA/IL 4 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6343739\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"FASTIMMUNE IFN GAMMA/IL 4 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6343739\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7159848\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7159848\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7123691\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD45 PERCP CY5.5 2D1 50 TESTS... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7123691\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7061652\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7061652\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MS LG KPA COMP BEAD SET 6ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6239960\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"MS LG KPA COMP BEAD SET 6ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6239960\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAIN BUFFER FBS 500ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7031808\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"STAIN BUFFER FBS 500ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7031808\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LYSING BUFFER 10X CONCENTRATE 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7061888\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"LYSING BUFFER 10X CONCENTRATE 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7061888\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROPIDIUM IODINE STAINING SOLUTION 2ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6308708\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PROPIDIUM IODINE STAINING SOLUTION 2ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6308708\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANNEXIN V FITC APOP DTEC KIT I 100TST(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 7040932\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANNEXIN V FITC APOP DTEC KIT I 100TST(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 7040932\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7100675\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7100675\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 PERCP SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7177904\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 PERCP SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7177904\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7146880\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7146880\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 APC H7 SK7 100 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7201546\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 APC H7 SK7 100 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7201546\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7041588\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7041588\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7124644.\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7124644.\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7146880\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7146880\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7129883\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7129883\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7041588\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7041588\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060674\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060674\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6197586\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6197586\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7142814\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7142814\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7041588\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7041588\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060674,..\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060674,..\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7142814\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7142814\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 5205615\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS OGAWA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 5205615\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7109549\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BIOTIN ASSAY MEDIUM 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7109549\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FOLIC ACID ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060658\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE FOLIC ACID ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060658\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOBACILI AGAR AOAC 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6327907\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LACTOBACILI AGAR AOAC 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6327907\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7060799\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7060799\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE PENASE CONCENTRATE 10X20MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7143749\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"TUBE PENASE CONCENTRATE 10X20MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7143749\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD FC BEADS PE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7115724\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BD FC BEADS PE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7115724\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD FC BEADS PE-CY7 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7115737\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BD FC BEADS PE-CY7 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7115737\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD FC BEADS APC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7115725\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BD FC BEADS APC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7115725\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD FC BEADS APC-H7 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7115732\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BD FC BEADS APC-H7 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7115732\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD FC BEADS BV421 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7138589\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BD FC BEADS BV421 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7138589\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD FC BEADS BV510 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7138591\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BD FC BEADS BV510 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7138591\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD FC BEADS BB515 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7138592\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BD FC BEADS BB515 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7138592\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NONIVAMIDE (SYNTHETIC CAPSAICIN)BHN BAKU KOSMETIK, COA.20170410\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"NONIVAMIDE (SYNTHETIC CAPSAICIN)BHN BAKU KOSMETIK, COA.20170410\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA 20170805\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17023010\", \"uraian\": \"DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA 20170805\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA MCS1604107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL HMS, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA MCS1604107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISOLONE BP2010/USP38 (BHN BAKU OBAT) COA.NPL170708\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISOLONE BP2010/USP38 (BHN BAKU OBAT) COA.NPL170708\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND170404\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND170404\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5 PHOSPHATE UNIVERSAL (BHN BAKU SUPLEMEN) COA UEB1703030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5 PHOSPHATE UNIVERSAL (BHN BAKU SUPLEMEN) COA UEB1703030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5 PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1703032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5 PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1703032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D A TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20160302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D A TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20160302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW91707202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 C (BHN BAKU MAKANAN) COA XW91707202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT17030731\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT17030731\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CANTHAXANTHIN 10PCT CWS/S (BHN BAKU MAKANAN) COA UT17040003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"CANTHAXANTHIN 10PCT CWS/S (BHN BAKU MAKANAN) COA UT17040003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT17020001, 20002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT17020001, 20002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT17020002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT17020002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL A TOCOPHEROL (BHN BAKU MAKANAN) COA UT17020019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL A TOCOPHEROL (BHN BAKU MAKANAN) COA UT17020019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT17020159\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT17020159\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT16120061\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT16120061\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT16110067\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT16110067\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01702023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01702023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ70309012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ70309012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN) COA UT17020159\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN) COA UT17020159\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11706001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11706001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ70110009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ70110009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01606109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU MAKANAN) COA UE01606109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT16110067\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT16110067\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL A TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT17010012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL A TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT17010012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D PANTHENOL (BHN BAKU MAKANAN) COA TL01702023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D PANTHENOL (BHN BAKU MAKANAN) COA TL01702023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM(BHN BAKU MAKANAN) COA UT17010007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM(BHN BAKU MAKANAN) COA UT17010007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL A TOCOPHEROL (BHN BAKU MAKANAN) COA UT17020019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL A TOCOPHEROL (BHN BAKU MAKANAN) COA UT17020019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ70110009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ70110009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01610103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01610103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 50CT SD (BHN BAKU SUPLEMEN) COA UT16120007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 50CT SD (BHN BAKU SUPLEMEN) COA UT16120007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ70309012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ70309012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01606109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01606109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17010011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17010011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17010005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17010005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17010005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17010005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID FINE POWDER (BHN BAKU SUPLEMEN) COA TL01611698\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID FINE POWDER (BHN BAKU SUPLEMEN) COA TL01611698\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT17010007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT17010007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB0116017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB0116017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT16120034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT16120034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170803\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170803\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK)COA CFM170702-PGH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK)COA CFM170702-PGH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LINEN OILY XTRACT GT10 (BHN BAKU KOSMETIK)COA LIU170603-H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LINEN OILY XTRACT GT10 (BHN BAKU KOSMETIK)COA LIU170603-H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170803\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170803\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK) COA EG209-160402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK) COA EG209-160402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT SD, 15KG BOXALU (BHN BAKU SUPLEMEN) COA WB02170048\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT SD, 15KG BOXALU (BHN BAKU SUPLEMEN) COA WB02170048\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM BICARBONATE IPH (BHN BAKU SUPLEMEN) COA. DOC1981721\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"SODIUM BICARBONATE IPH (BHN BAKU SUPLEMEN) COA. DOC1981721\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA. RBA2141700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA. RBA2141700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-600347\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-600347\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-010747\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-010747\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK)COA MUP-011017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK)COA MUP-011017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-222837\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-222837\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 060117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 060117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA 1 P001062 (BHN BAKU KOSMETIK) COA 0000006986\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA 1 P001062 (BHN BAKU KOSMETIK) COA 0000006986\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SORBOSIL BFG50 (BHN BAKU OBAT) COA RE17407\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28112210\", \"uraian\": \"SORBOSIL BFG50 (BHN BAKU OBAT) COA RE17407\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 CN 10 KG KA (BHN BAKU KOSMETIK) COA.1331610\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 CN 10 KG KA (BHN BAKU KOSMETIK) COA.1331610\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 017.534, 017.453\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 017.534, 017.453\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CANNULA 25G PIX'L 0,5X40 (BHN BAKU OBAT) COA 017.507\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"CANNULA 25G PIX'L 0,5X40 (BHN BAKU OBAT) COA 017.507\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REST SKINB VITLIDO 1 MLD16 (BHN BAKU OBAT) COA 15058-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"REST SKINB VITLIDO 1 MLD16 (BHN BAKU OBAT) COA 15058-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REST SKINB VITALLGHLIDO 1 ML D16 (BHN BAKU OBAT) COA 15126-2, 15430-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"REST SKINB VITALLGHLIDO 1 ML D16 (BHN BAKU OBAT) COA 15126-2, 15430-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML (BHN BAKU OBAT) COA 15264-2,15328-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE LYFT LIDOCAINE 1ML (BHN BAKU OBAT) COA 15264-2,15328-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOTAXIME SODIUM STERILE (BHN BAKU OBAT) COA Q900400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOTAXIME SODIUM STERILE (BHN BAKU OBAT) COA Q900400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA Q701900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA Q701900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTAZIDIME BUFFERED (BHN BAKU OBAT) COA Q102500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTAZIDIME BUFFERED (BHN BAKU OBAT) COA Q102500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEROPENEM WITH SODIUM CARBONATE (BHN BAKU OBAT) COA Q900100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"MEROPENEM WITH SODIUM CARBONATE (BHN BAKU OBAT) COA Q900100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597206\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597206\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597433\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597433\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597448\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597448\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597449\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597449\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596568\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596568\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597446\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597446\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597438\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597438\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597450\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597450\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597437\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597437\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA MCS1604107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL HMS, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA MCS1604107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL PANTHENOL 50L (BHN BAKU KOSMETIK) COA TL01705622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL PANTHENOL 50L (BHN BAKU KOSMETIK) COA TL01705622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01703804\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01703804\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT17020008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT17020008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT17070018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT17070018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KOLLICOAT IR WHITE 2 25KG (BHN BAKU OBAT UTK PEWARNA TABLET) COA 82770816K0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"KOLLICOAT IR WHITE 2 25KG (BHN BAKU OBAT UTK PEWARNA TABLET) COA 82770816K0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CATECHINS (TEA EXTRACT) BHN BAKU KOSMETIK, COA 706292\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CATECHINS (TEA EXTRACT) BHN BAKU KOSMETIK, COA 706292\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BH07306\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BH07306\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX TM COMPACTED, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B339903,07,10\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX TM COMPACTED, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B339903,07,10\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ESOMEPRAZOLE SODIUM STERILE (34PERCENT TO 38PERCENT W/W)COA AESS17001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"ESOMEPRAZOLE SODIUM STERILE (34PERCENT TO 38PERCENT W/W)COA AESS17001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANTOPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W)BHN BAKU OBAT, COA APSS17002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"PANTOPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W)BHN BAKU OBAT, COA APSS17002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 201707T-CC\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 201707T-CC\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-GLUTAMIC ACID ( BHN BAKU OBAT), COA 1000033453/170706\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224210\", \"uraian\": \"L-GLUTAMIC ACID ( BHN BAKU OBAT), COA 1000033453/170706\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 103047-D (BHN BAKU MAKANAN) COA XW91707335\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 103047-D (BHN BAKU MAKANAN) COA XW91707335\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT17010026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT17010026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 DHA H POWDER, 0,1KG POS (B.BAKU UPLEMEN) COA XI00004109 SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 DHA H POWDER, 0,1KG POS (B.BAKU UPLEMEN) COA XI00004109 SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 30PCT K POWDER, 0,1KG POS (B.BAKU SUPLEMEN) COA XI00003797 SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 30PCT K POWDER, 0,1KG POS (B.BAKU SUPLEMEN) COA XI00003797 SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 17050203\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 17050203\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRISODIUM CITRATE DIHYDRATE FINE GRANULAR (BHN BAKU MAKANAN), COA UJ730\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"TRISODIUM CITRATE DIHYDRATE FINE GRANULAR (BHN BAKU MAKANAN), COA UJ730\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA 16636\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29225090\", \"uraian\": \"TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA 16636\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01706008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY C 50 (BHN BAKU KOSMETIK) COA UE01706008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY C 50, 5KG BAL US (BHN BAKU KOSMETIK) COA UT17050062\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY C 50, 5KG BAL US (BHN BAKU KOSMETIK) COA UT17050062\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLUOROMETHOLONE MICRONISED USP BP JP (BHN BAKU OBAT) COA 1701261241\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"FLUOROMETHOLONE MICRONISED USP BP JP (BHN BAKU OBAT) COA 1701261241\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA.70618\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA.70618\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA 70618\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA 70618\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY C 50,20KG BOXNA (BHN BAKU KOSMETIK) COA UT17040039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY C 50,20KG BOXNA (BHN BAKU KOSMETIK) COA UT17040039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY C 50, 5KG BALUS (BHN BAKU KOSMETIK) COA UT17040045,49,50\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY C 50, 5KG BALUS (BHN BAKU KOSMETIK) COA UT17040045,49,50\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01706017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY C 50 (BHN BAKU KOSMETIK) COA UE01706017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0217070082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0217070082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0317050735,738 ,739,748...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL 1789 (BHN BAKU KOSMETIK) COA 0317050735,738 ,739,748...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MILKUAT ZN FET (25PCT CARRIER) BHN BAKU MAKANAN, COA XW91707208\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"MILKUAT ZN FET (25PCT CARRIER) BHN BAKU MAKANAN, COA XW91707208\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D PANTHENOL (BHN BAKU SUPLEMEN) COA TL01703026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D PANTHENOL (BHN BAKU SUPLEMEN) COA TL01703026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01610103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01610103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D BIOTIN (BHN BAKU SUPLEMEN) COA UE01704001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D BIOTIN (BHN BAKU SUPLEMEN) COA UE01704001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ70110024,26\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ70110024,26\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI16070010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI16070010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI16070010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI16070010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI16070010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI16070010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70502281, 2284\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70502281, 2284\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70502281\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70502281\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VP ENG01 (BHN BAKU MAKANAN) COA XW91707209\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VP ENG01 (BHN BAKU MAKANAN) COA XW91707209\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70306071\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70306071\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT16120034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT16120034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70502281\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70502281\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX TRS2 WITHOUT K1 (BHN BAKU MAKANAN) COA XW91707336\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX TRS2 WITHOUT K1 (BHN BAKU MAKANAN) COA XW91707336\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU(TOCO) B. BAKU MAKANAN, COA UT17030160\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU(TOCO) B. BAKU MAKANAN, COA UT17030160\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX KNPX CH 00 16 (BHN BAKU MAKANAN) COA XW91707253\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX KNPX CH 00 16 (BHN BAKU MAKANAN) COA XW91707253\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91707349\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91707349\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70502281\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70502281\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70306071,72,75\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70306071,72,75\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70502277,81\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70502277,81\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D PANTOTHENATE (BHN BAKU MAKANAN) COA UT1702632\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D PANTOTHENATE (BHN BAKU MAKANAN) COA UT1702632\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70503143\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70503143\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01702624,2632\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01702624,2632\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01705464\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01705464\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70406084,6090\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70406084,6090\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17050063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17050063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70306075,84\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70306075,84\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL01704205\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU MAKANAN) COA TL01704205\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT17050063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT17050063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01702624\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01702624\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE(BHN BAKU SUPLEMEN) COA UQ70113033\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE(BHN BAKU SUPLEMEN) COA UQ70113033\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D PANTOTHENATE (BHN BAKU MAKANAN) COA TL01702624,2632\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D PANTOTHENATE (BHN BAKU MAKANAN) COA TL01702624,2632\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5 PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1703032,4051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5 PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1703032,4051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALDAVINE 5X (BHN BAKU KOSMETIK) COA 5493217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ALDAVINE 5X (BHN BAKU KOSMETIK) COA 5493217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830015347H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CAPIXYL (BHN BAKU KOSMETIK) COA 830015347H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769015443H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CHRONOLINE (BHN BAKU KOSMETIK) COA 769015443H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXO H (BHN BAKU KOSMETIK) COA 715025400H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"EXO H (BHN BAKU KOSMETIK) COA 715025400H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL (BHN BAKU KOSMETIK), COA 1710602\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LECIGEL (BHN BAKU KOSMETIK), COA 1710602\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK), COA 5462616\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK), COA 5462616\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELITANE GL (200PPM) (BHN BAKU KOSMETIK) COA 818065302H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"MELITANE GL (200PPM) (BHN BAKU KOSMETIK) COA 818065302H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784025335H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784025335H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025335H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025335H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK), COA 828015208H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"NEUTRAZEN (BHN BAKU KOSMETIK), COA 828015208H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 110717\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25070000\", \"uraian\": \"KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 110717\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01704302,4311\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01704302,4311\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POMEGRANATE OF ACORES HYDROGLYCERINED (BHN BAKU KOSMETIK)COA PUGA170602-GL\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"POMEGRANATE OF ACORES HYDROGLYCERINED (BHN BAKU KOSMETIK)COA PUGA170602-GL\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO170601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO170601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170803\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170803\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO170601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO170601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 17277\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 17277\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK-GB (BHN BAKU KOSMETIK) COA DFB\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROMOIS WK-GB (BHN BAKU KOSMETIK) COA DFB\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA DHN\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) COA DHN\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA DDD\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROTESIL LH (BHN BAKU KOSMETIK) COA DDD\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA DDB\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA DDB\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SHIN ETSU SILICONE X 21 5616 (B. BAKU KOSMETIK) COA 705013 SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SHIN ETSU SILICONE X 21 5616 (B. BAKU KOSMETIK) COA 705013 SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-54 (BHN BAKU KOSMETIK) , COA 705592/ 706596 SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"KF-54 (BHN BAKU KOSMETIK) , COA 705592/ 706596 SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6028 (BHN BAKU KOSMETIK) COA 706167 SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"KF-6028 (BHN BAKU KOSMETIK) COA 706167 SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6048 (BHN BAKU KOSMETIK) COA 706017 SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"KF-6048 (BHN BAKU KOSMETIK) COA 706017 SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6050 (BHN BAKU KOSMETIK) COA 707019 SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"KF-6050 (BHN BAKU KOSMETIK) COA 707019 SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-56A (BHN BAKU KOSMETIK) COA 705219 SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"KF-56A (BHN BAKU KOSMETIK) COA 705219 SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-210 (BHN BAKU KOSMETIK) COA 708234,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"KSG-210 (BHN BAKU KOSMETIK) COA 708234,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TMF-1.5 (BHN BAKU KOSMETIK) COA 704028,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"TMF-1.5 (BHN BAKU KOSMETIK) COA 704028,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP-441 (BHN BAKU KOSMETIK) COA 704018 SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"KSP-441 (BHN BAKU KOSMETIK) COA 704018 SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for X-21-5250 (BHN BAKU KOSMETIK) COA 706030 SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"X-21-5250 (BHN BAKU KOSMETIK) COA 706030 SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA TP17073513, 3514\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA TP17073513, 3514\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANOCARE PUR JAR 800G, 6 JARS/CASE(BHN BAKU OBAT UTK PAKAN TERNAK, COA 2117334651\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"SANOCARE PUR JAR 800G, 6 JARS/CASE(BHN BAKU OBAT UTK PAKAN TERNAK, COA 2117334651\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SEP-ART SEPARATOR SET V2 - SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"84212119\", \"uraian\": \"SEP-ART SEPARATOR SET V2 - SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (BHN BAKU KOSMETIK) , COA 707181 SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"KF-6038 (BHN BAKU KOSMETIK) , COA 707181 SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KP-549 (BHN BAKU KOSMETIK) COA 702280 SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"KP-549 (BHN BAKU KOSMETIK) COA 702280 SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6011 (BHN BAKU KOSMETIK) COA 708326 SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"KF-6011 (BHN BAKU KOSMETIK) COA 708326 SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 70628, 70706\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 70628, 70706\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS FUMARATE USP/EP (BHN BAKU OBAT) COA.2017/203\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"FERROUS FUMARATE USP/EP (BHN BAKU OBAT) COA.2017/203\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1707111 S/D 7118,8002,8003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"MEFENAMIC ACID (BHN BAKU OBAT) COA MA1707111 S/D 7118,8002,8003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAKURA EXTRACT B( BHN BAKU KOSMETIK), COA 171058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SAKURA EXTRACT B( BHN BAKU KOSMETIK), COA 171058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 170569\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 170569\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 171118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 171118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIRJU (BHN BAKU KOSMETIK) COA 171204\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"CLAIRJU (BHN BAKU KOSMETIK) COA 171204\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EMPILAN CIS (BAHAN BAKU KOSMETIK) COA.BLW0012903\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34021390\", \"uraian\": \"EMPILAN CIS (BAHAN BAKU KOSMETIK) COA.BLW0012903\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REFINED SUNFLOWER OIL (BHN BAKU KOSMETIK) COA KKLJ 11/17\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"REFINED SUNFLOWER OIL (BHN BAKU KOSMETIK) COA KKLJ 11/17\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POMEGRANATE OF ACORES HYDROGLYCERINED (BHN BAKU KOSMETIK)COA PUGA170602-GL\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"POMEGRANATE OF ACORES HYDROGLYCERINED (BHN BAKU KOSMETIK)COA PUGA170602-GL\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO170601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO170601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170803\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170803\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO170601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO170601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT BLACK TEA POWDER TH B430 (BHN BAKU MAKANAN) COA 2017080701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"INSTANT BLACK TEA POWDER TH B430 (BHN BAKU MAKANAN) COA 2017080701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID REGULAR, 25KG BAL (BHN BAKU SUPLEMEN) COA HPB1708105, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID REGULAR, 25KG BAL (BHN BAKU SUPLEMEN) COA HPB1708105, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID REGULAR, 25KG BAL (BHN BAKU SUPLEMEN) COA HPB1708119,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID REGULAR, 25KG BAL (BHN BAKU SUPLEMEN) COA HPB1708119,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID REGULAR, 25KG BAL (BHN BAKU SUPLEMEN) COA HPD1708069 SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID REGULAR, 25KG BAL (BHN BAKU SUPLEMEN) COA HPD1708069 SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC SODIUM ASCORBATE REGULAR, 25KG BAL(BHN BAKU SUPLEMEN) COA HPN1708030, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC SODIUM ASCORBATE REGULAR, 25KG BAL(BHN BAKU SUPLEMEN) COA HPN1708030, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC SODIUM ASCORBATE REGULAR, 25KG BAL (BHN BAKU SUPLEMEN) COA HPN1708075, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC SODIUM ASCORBATE REGULAR, 25KG BAL (BHN BAKU SUPLEMEN) COA HPN1708075, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC SODIUM ASCORBATE REGULAR, 25KG BAL (BHN BAKU SUPLEMEN) COA HPN1708076, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC SODIUM ASCORBATE REGULAR, 25KG BAL (BHN BAKU SUPLEMEN) COA HPN1708076, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ONDASENTRON HCL USP (BHN BAKU OBAT) COA 17OS001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"ONDASENTRON HCL USP (BHN BAKU OBAT) COA 17OS001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101853017A542\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101853017A542\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103872417A545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103872417A545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104313117A552\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104313117A552\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID S67F (BHN BAKU OBAT) COA.576200-2160029/025-030 (6)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232010\", \"uraian\": \"LIPOID S67F (BHN BAKU OBAT) COA.576200-2160029/025-030 (6)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT SD,15KG BOXALU (BHN BAKU SUPLEMEN) COA WB02170048\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT SD,15KG BOXALU (BHN BAKU SUPLEMEN) COA WB02170048\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00117637\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00117637\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT SD,15KGBOXALU (BHN BAKU SUPLEMEN) COA WB02170048\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT SD,15KGBOXALU (BHN BAKU SUPLEMEN) COA WB02170048\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT,CWS/S TG (BHN BAKU SUPLEMEN) COA UT17050011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT,CWS/S TG (BHN BAKU SUPLEMEN) COA UT17050011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GENIVIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010014,15\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"GENIVIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010014,15\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COATED ASCORBIC ACID TYPE EC (BHN BAKU SUPLEMEN) COA TL01705484\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"COATED ASCORBIC ACID TYPE EC (BHN BAKU SUPLEMEN) COA TL01705484\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75HP (BHN BAKU SUPLEMEN) COA WB00517168\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75HP (BHN BAKU SUPLEMEN) COA WB00517168\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E ACETATE 950NS (BHN BAKU SUPLEMEN) COA WB00117637\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E ACETATE 950NS (BHN BAKU SUPLEMEN) COA WB00117637\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT SD, 15KGBOXALU (BHN BAKU SUPLEMEN) COA WB02170048\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT SD, 15KGBOXALU (BHN BAKU SUPLEMEN) COA WB02170048\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17050011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17050011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GENIVIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"GENIVIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COATED ASCORBIC ACID TYPE EC (BHN BAKU SUPLEMEN) COA TL00705484\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"COATED ASCORBIC ACID TYPE EC (BHN BAKU SUPLEMEN) COA TL00705484\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT ,15KGBOXALU (BHN BAKU SUPLEMEN) COA WB02170048\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT ,15KGBOXALU (BHN BAKU SUPLEMEN) COA WB02170048\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A AND D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT17070034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A AND D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT17070034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE VOLYME 1 ML (BHN BAKU OBAT) COA 15202-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE VOLYME 1 ML (BHN BAKU OBAT) COA 15202-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE REFYNE 1 ML (BHN BAKU OBAT) COA 15100-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE REFYNE 1 ML (BHN BAKU OBAT) COA 15100-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE DEFYNE 1 ML (BHN BAKU OBAT) COA 15022-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE DEFYNE 1 ML (BHN BAKU OBAT) COA 15022-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE KYSSE 1 ML (BHN BAKU OBAT) COA 15001-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE KYSSE 1 ML (BHN BAKU OBAT) COA 15001-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CANNULA 23G PIXL 0,6X50 (BHN BAKU OBAT) COA 017.534\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"CANNULA 23G PIXL 0,6X50 (BHN BAKU OBAT) COA 017.534\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CANNULA 25G PIXL 0,5X40 (BHN BAKU OBAT) COA 017.507\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"CANNULA 25G PIXL 0,5X40 (BHN BAKU OBAT) COA 017.507\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SKINB VITLIDO 1MLD16 (BHN BAKU OBAT) COA 15058-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE SKINB VITLIDO 1MLD16 (BHN BAKU OBAT) COA 15058-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REST SKINB VITALLGHLIDO 1MLD16 (BHN BAKU OBAT) COA 15430-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"REST SKINB VITALLGHLIDO 1MLD16 (BHN BAKU OBAT) COA 15430-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE LYFT LIDOCAINE 1 ML (BHN BAKU OBAT) COA 15264-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE LYFT LIDOCAINE 1 ML (BHN BAKU OBAT) COA 15264-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIO SODIUM HYALURONATE POWDER (MMW)BHN BAKU KOSMETIK, COA CHP1170818\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"BIO SODIUM HYALURONATE POWDER (MMW)BHN BAKU KOSMETIK, COA CHP1170818\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-020497\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-020497\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARBUTIN (BHN BAKU KOSMETIK) COA ARP-1071887\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ARBUTIN (BHN BAKU KOSMETIK) COA ARP-1071887\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 071817\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 071817\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIGO HA (BHN BAKU KOSMETIK) COA OHA-042457\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"OLIGO HA (BHN BAKU KOSMETIK) COA OHA-042457\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LICORICE EXTRACT (BHN BAKU KOSMETIK) COA GGB-011017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LICORICE EXTRACT (BHN BAKU KOSMETIK) COA GGB-011017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-031477\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-031477\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-040857\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-040857\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE USP (BHN BAKU OBAT) COA M110351\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM CRYSTALLINE USP (BHN BAKU OBAT) COA M110351\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NX1738M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NX1738M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SURELEASE ETHYLCELLULOSE ( BHN BAKU OBAT UTK PEWARNA TABLET) COA. IN535414\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"SURELEASE ETHYLCELLULOSE ( BHN BAKU OBAT UTK PEWARNA TABLET) COA. IN535414\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX TM AF (BHN BAKU KOSMETIK) COA.70611, 70807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SUPEROX TM AF (BHN BAKU KOSMETIK) COA.70611, 70807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA 70618\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA 70618\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C RED #40/ALLURA RED AC AL... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP776692\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C RED #40/ALLURA RED AC AL... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP776692\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP762354\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP762354\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP769009.1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"ERYTHROSINE AL 38PCT-42PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP769009.1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP779704...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #6/SUNSET YELLOW... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP779704...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180GCR003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180GCR003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E4M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180H5P032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E4M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180H5P032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180F3L001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180F3L001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180GCR003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180GCR003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011H14L01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011H14L01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011GB7L02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011GB7L02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN0160117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN0160117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CINNARIZINE (BHN BAKU OBAT) COA 011052017CIN\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"CINNARIZINE (BHN BAKU OBAT) COA 011052017CIN\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA. 8MT170642\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30032000\", \"uraian\": \"STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA. 8MT170642\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 170474\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNEBUSTERS (BHN BAKU KOSMETIK) COA 170474\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE II( BHN BAKU KOSMETIK), COA 171381\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE II( BHN BAKU KOSMETIK), COA 171381\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01707019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY C 50 (BHN BAKU KOSMETIK) COA UE01707019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00481106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"AMPHISOL K (BHN BAKU KOSMETIK) COA VE00481106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01707019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY C 50 (BHN BAKU KOSMETIK) COA UE01707019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01707019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY C 50 (BHN BAKU KOSMETIK) COA UE01707019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D PANTHENOL (BHN BAKU KOSMETIK) COA TL01704036,41\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D PANTHENOL (BHN BAKU KOSMETIK) COA TL01704036,41\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01703805\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01703805\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708160127,128,129\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708160127,128,129\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0517070149\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0517070149\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX VH (BHN BAKU KOSMETIK) COA UF17082001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"BEAUPLEX VH (BHN BAKU KOSMETIK) COA UF17082001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11706005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11706005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT17030160\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT17030160\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P7O07UA000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL TX (BHN BAKU KOSMETIK) COA P7O07UA000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P7O07UA000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL TX (BHN BAKU KOSMETIK) COA P7O07UA000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA TP17073511,3512\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA TP17073511,3512\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMLODIPINE BESILATE BP/EP (BHN BAKU OBAT), COA. AMB/086/08/17\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"AMLODIPINE BESILATE BP/EP (BHN BAKU OBAT), COA. AMB/086/08/17\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOROLAC TROMETAMOL /TROMETHAMINE (BHN BAKU OBAT) COA.17100413\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"KETOROLAC TROMETAMOL /TROMETHAMINE (BHN BAKU OBAT) COA.17100413\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA.201700286\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA.201700286\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM HYDROXIDE FLOGEL USP (BHN BAKU OBAT) COA 201700156\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"MAGNESIUM HYDROXIDE FLOGEL USP (BHN BAKU OBAT) COA 201700156\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75PCT HP (BHN BAKU SUPLEMEN) COA WB0517168\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75PCT HP (BHN BAKU SUPLEMEN) COA WB0517168\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP24617\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP24617\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CORTISONE ACETATE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1600926226\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"CORTISONE ACETATE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1600926226\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GLICLAZIDE (BHN BAKU OBAT) COA 1740000389\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29351000\", \"uraian\": \"GLICLAZIDE (BHN BAKU OBAT) COA 1740000389\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEVOFLOXACIN HEMIHYDRATE USP (BHN BAKU OBAT) COA LF17080041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"LEVOFLOXACIN HEMIHYDRATE USP (BHN BAKU OBAT) COA LF17080041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MATCHA POWDER 101-O (BHN BAKU KOSMETIK) , COA 707063 SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"MATCHA POWDER 101-O (BHN BAKU KOSMETIK) , COA 707063 SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID DC, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG1705001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID DC, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG1705001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPB1707053,8145,8069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPB1707053,8145,8069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC SODIUM ASCORBATE REGULAR ,25KG BAL (B.BAKU SUPLEMEN) COA HPN1708148,8152\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC SODIUM ASCORBATE REGULAR ,25KG BAL (B.BAKU SUPLEMEN) COA HPN1708148,8152\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 1000/1400 SUGLETS 1000/1400 ( BHN BAKU OBAT UTK PEWARNA TABLET) COA. ST507221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"1000/1400 SUGLETS 1000/1400 ( BHN BAKU OBAT UTK PEWARNA TABLET) COA. ST507221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) LYCOPENE 10PCT FS, 5KG ALU (BHN BAKU SUPLEMEN) COA UE01702004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"REDIVIVO (R) LYCOPENE 10PCT FS, 5KG ALU (BHN BAKU SUPLEMEN) COA UE01702004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 20PCT SAF,1KG BOT PE (BHN BAKU SUPLEMEN) COA UE01704014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 20PCT SAF,1KG BOT PE (BHN BAKU SUPLEMEN) COA UE01704014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT17080035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT17080035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00117637\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00117637\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17050011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17050011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17070052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17070052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A AND D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT17070034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A AND D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT17070034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANSOPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA LP0217C011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"LANSOPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA LP0217C011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYL SULFONYL METHANE USP (BHN BAKU OBAT) COA 20170725\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"METHYL SULFONYL METHANE USP (BHN BAKU OBAT) COA 20170725\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KANAMYCIN SULFATE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 170603\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"KANAMYCIN SULFATE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 170603\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NICLOSAMIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 20170810\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"NICLOSAMIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 20170810\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LINCOMYCIN HCL EP (BHN BAKU OBAT) COA 1705005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"LINCOMYCIN HCL EP (BHN BAKU OBAT) COA 1705005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20170816\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20170816\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPTOPRIL (BHN BAKU OBAT) COA 5103-17-119\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"CAPTOPRIL (BHN BAKU OBAT) COA 5103-17-119\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1708046, 47,48,52,53,56, 57\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"MEFENAMIC ACID (BHN BAKU OBAT) COA MA1708046, 47,48,52,53,56, 57\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 17082601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 17082601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYL SULFONYL METHANE USP (B.BAKU OBAT) COA 17082601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"METHYL SULFONYL METHANE USP (B.BAKU OBAT) COA 17082601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIOTOX (BHN BAKU OBAT UTK PAKAN TERNAK) COA 280817-701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"BIOTOX (BHN BAKU OBAT UTK PAKAN TERNAK) COA 280817-701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIQUIPHOS STRONG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 300817-810\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"LIQUIPHOS STRONG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 300817-810\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIQUIPHOS STRONG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 300817-810\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"LIQUIPHOS STRONG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 300817-810\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS170802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS170802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEPPERMINT ORGANIC DISTILLATE 1:5 SB (BHN BAKU KOSMETIK)COA MEPD170701-BIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PEPPERMINT ORGANIC DISTILLATE 1:5 SB (BHN BAKU KOSMETIK)COA MEPD170701-BIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRAPEFRUIT PHYTELENE EG 498 (BHN BAKU KOSMETIK)COA EG498-160702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"GRAPEFRUIT PHYTELENE EG 498 (BHN BAKU KOSMETIK)COA EG498-160702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LICOURICE ORGANIC OILY EXTRACT (BHN BAKU KOSMETIK)COA GLGT161102-HBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LICOURICE ORGANIC OILY EXTRACT (BHN BAKU KOSMETIK)COA GLGT161102-HBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK)COA EG138-170601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK)COA EG138-170601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROMAN CHAMOMILLE PHYTELENE EG 088 (BHN BAKU KOSMETIK)COA EG088-170101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ROMAN CHAMOMILLE PHYTELENE EG 088 (BHN BAKU KOSMETIK)COA EG088-170101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO170601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO170601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO170601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO170601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OATWELL 22,18KG BAG (BHN BAKU MAKANAN) COA SOF172005, 2203\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"OATWELL 22,18KG BAG (BHN BAKU MAKANAN) COA SOF172005, 2203\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598096\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598096\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598095\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598095\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598062\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598062\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598074\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598074\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598087\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598087\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598086\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598086\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE(BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598089\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE(BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598089\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598094\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598094\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598093\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598093\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598099\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598099\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598088\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598088\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598097\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598097\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598090\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598090\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID PPL-600 (BHN BAKU OBAT) COA.577200-2170186/008-009 (2)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232010\", \"uraian\": \"LIPOID PPL-600 (BHN BAKU OBAT) COA.577200-2170186/008-009 (2)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598416\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598416\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598418\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598418\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598417\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598417\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB090817\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB090817\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B300717\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B300717\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7170636\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7170636\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER VOGES-PROSKAUER A (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7136718\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER VOGES-PROSKAUER A (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7136718\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7209759\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7209759\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7209759\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7209759\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MARK EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7219546\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MARK EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7219546\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7209750\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7209750\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE KOSER CITRATE MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 5055842\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE KOSER CITRATE MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 5055842\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE OXFORD MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7198842\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE OXFORD MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7198842\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TREHALOSE 10G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7228569\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TREHALOSE 10G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7228569\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TREHALOSE 10G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7228569\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TREHALOSE 10G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7228569\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7143641\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7143641\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171538\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171538\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053868\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053868\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121569\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121569\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7135806\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7135806\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7069571,597\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7069571,597\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121602,7171820\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121602,7171820\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7143641\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7143641\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121569\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121569\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7109998,7110592\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7109998,7110592\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060848,71099\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060848,71099\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7102884,7109903\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7102884,7109903\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7018890\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7018890\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7193678\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7193678\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7193678\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7193678\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7103621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7103621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7095842\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7095842\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009966\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009966\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7068731\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7068731\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7045539\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7045539\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7142578\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7142578\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7143982\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7143982\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7114681\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7114681\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7142628\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7142628\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7102868\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7102868\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053868\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053868\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7047892\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7047892\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121584\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE STERILE RODAC EMPTY ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121584\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6333840\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6333840\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7114771\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7114771\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7151674\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7151674\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6320611\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6320611\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 6294620\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 6294620\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7114758\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7114758\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7193724\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TCBS AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7193724\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7130695\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7130695\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILR GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6320612\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE VIOLET RED BILR GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6320612\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7109946\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7109946\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7111887,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7111887,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB PLUS AMIES W/O ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 170706516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CULTURESWAB PLUS AMIES W/O ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 170706516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7136957\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7136957\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7159717\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7159717\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7151905\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7151905\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7151925\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7151925\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7131814\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7131814\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 7146936\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 7146936\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121848\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121848\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009966\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009966\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7142625\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7142625\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060815\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060815\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7005857\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DESTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7005857\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060762\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060762\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7047892\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7047892\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7074531\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7074531\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CZAPEK DOX BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7024575\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CZAPEK DOX BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7024575\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009518\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009518\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060948\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060948\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7152953\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7152953\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7135968\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7135968\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MICRO INOCULUM BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6342747\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MICRO INOCULUM BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6342747\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7030541\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE NUTRIENT GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7030541\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE OXGALL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7074561\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE OXGALL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7074561\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7177823\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7177823\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7088775\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7088775\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILLIADIS MSRV 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6314689\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RAPPAPORT VASSILLIADIS MSRV 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6314689\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 7212562\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 7212562\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6319507\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6319507\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SIM MEDIUM BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7009822\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SIM MEDIUM BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7009822\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7009838\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7009838\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SOLUTION BACTERIOSTAT CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2057C324\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"SOLUTION BACTERIOSTAT CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2057C324\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for O RING 0,028IN DIAX 0,009IN DIA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"O RING 0,028IN DIAX 0,009IN DIA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHOSFLOW PERM BUFFER III 125ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7111910\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PHOSFLOW PERM BUFFER III 125ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7111910\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NOZZLE ASSEMBLY 100UM S-TYPE (MEDIA UTK PENGEMBANGAN MIKROORGANISME)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"NOZZLE ASSEMBLY 100UM S-TYPE (MEDIA UTK PENGEMBANGAN MIKROORGANISME)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7158801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MALT EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7158801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT EXTRACT (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7158801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MALT EXTRACT (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7158801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BEEF EXTRACT POWDER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6298524\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BEEF EXTRACT POWDER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6298524\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PROTEOSE PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7102762\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PROTEOSE PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7102762\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 4056159\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 4056159\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7009551\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7009551\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7219674\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7219674\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7041671\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7041671\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD FC BEADS PERCP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7150701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BD FC BEADS PERCP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7150701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CUSTOM CS AND T RUO BEADS (50T) (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7206861\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CUSTOM CS AND T RUO BEADS (50T) (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7206861\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FACS ACCUDROP BEADS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6284736\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"FACS ACCUDROP BEADS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6284736\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FC BEADS DILUTION BUFFER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7116699\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"FC BEADS DILUTION BUFFER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7116699\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD FC BEADS FITC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7156984\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BD FC BEADS FITC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7156984\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD FC BEADS APC-R700 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7194809\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BD FC BEADS APC-R700 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7194809\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD FC BEADS APC CY7 (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7194807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BD FC BEADS APC CY7 (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7194807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD FC BEADS V450 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7150941\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BD FC BEADS V450 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7150941\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD FC BEADS V500-C (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7115984\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BD FC BEADS V500-C (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7115984\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD FC BEADS PERCP CY5.5 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7150699\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BD FC BEADS PERCP CY5.5 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7150699\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7201782\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7201782\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6307974\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6307974\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3 MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7041671\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3 MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7041671\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7111776\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7111776\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP ...(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6337887\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP ...(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6337887\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG ...(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7142814\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG ...(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7142814\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7146880\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7146880\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7111776,7117554\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7111776,7117554\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6197586\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6197586\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7146880\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7146880\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7109549\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7109549\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D/E NEUTRALIZING AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7153501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D/E NEUTRALIZING AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7153501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7129876\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7129876\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL E COLI H ANTISERUM H7 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6323840\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL E COLI H ANTISERUM H7 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6323840\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEMOGLOBIN SOL 2PCT... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7045874\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEMOGLOBIN SOL 2PCT... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7045874\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7117574,7200569\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7117574,7200569\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOBACILLI MRS BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7129880\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LACTOBACILLI MRS BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7129880\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7102829\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7102829\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP A (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6239952\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL N MENINGITIDIS ANTISERUM GRP A (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6239952\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP C (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6054509\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL N MENINGITIDIS ANTISERUM GRP C (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6054509\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP W135 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6267761\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL N MENINGITIDIS ANTISERUM GRP W135 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6267761\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP Y 1MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7117785\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL N MENINGITIDIS ANTISERUM GRP Y 1MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7117785\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP B (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6210869\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL N MENINGITIDIS ANTISERUM GRP B (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6210869\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP D (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6274754\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL N MENINGITIDIS ANTISERUM GRP D (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6274754\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060799\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060799\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTISERUM POLY A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6134963\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL O ANTISERUM POLY A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6134963\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD19 PE CY7 SJ25C1 100 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7223772\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD19 PE CY7 SJ25C1 100 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7223772\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAIN BUFFER FBS 500ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7031808\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"STAIN BUFFER FBS 500ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7031808\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD3 HORIZON V450 UCHT1 120TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7130596\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD3 HORIZON V450 UCHT1 120TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7130596\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD45 HORIZON V500 HI30 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7188870\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD45 HORIZON V500 HI30 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7188870\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 APC-H7 SK7 100 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7212822\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 APC-H7 SK7 100 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7212822\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD43 APC 8G12 100 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7186970\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD43 APC 8G12 100 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7186970\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 FITC/CD34 PE 2D1/8G12 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7157909\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD45 FITC/CD34 PE 2D1/8G12 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7157909\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 PER CP 2D1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7058522\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD45 PER CP 2D1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7058522\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7201538\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7201538\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD13 PE L138 100 TESTS RUO/GMP( MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7174889\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD13 PE L138 100 TESTS RUO/GMP( MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7174889\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MS LG G1 KPA LTCI PE MOPC 21 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7125847\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"MS LG G1 KPA LTCI PE MOPC 21 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7125847\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MS LG G1 KPA LTCI FITC MOPC 21 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6301865\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"MS LG G1 KPA LTCI FITC MOPC 21 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6301865\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LYSING BUFFER 10X CONCENTRATE 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7180899\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"LYSING BUFFER 10X CONCENTRATE 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7180899\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HUMAN FOXP3 STAINING KIT PE 100 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HUMAN FOXP3 STAINING KIT PE 100 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 72196742\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 72196742\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD CST BEADS KIT 50 TESTS(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 68954\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BD CST BEADS KIT 50 TESTS(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 68954\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD11C APC B-IY6 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7124669\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD11C APC B-IY6 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7124669\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD209 APC DCN46 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7075780\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD209 APC DCN46 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7075780\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD163 PE GHI/61 100TST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7160585\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD163 PE GHI/61 100TST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7160585\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD64 HITC 10.1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6280735\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD64 HITC 10.1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6280735\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD274 PE MIH1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7069869\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD274 PE MIH1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7069869\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD86 FITC 2331 (FUN-1) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7132528\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD86 FITC 2331 (FUN-1) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7132528\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD206 FITC 19.2 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7069986\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD206 FITC 19.2 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7069986\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD11C PE CE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7179827\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD11C PE CE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7179827\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD40 FITC 5C3 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 7132522\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD40 FITC 5C3 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 7132522\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU HLA DR FITC L243 (G46-6) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6263631\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU HLA DR FITC L243 (G46-6) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6263631\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MS LGG1KPA LTCI FITC MOPC-21 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6301865\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"MS LGG1KPA LTCI FITC MOPC-21 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6301865\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROVIMIX AD3 1000/200,20KG BAL (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT17020176, 189\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"ROVIMIX AD3 1000/200,20KG BAL (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT17020176, 189\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROVIMIX E 50 SD, 20KG BAG (BHN BAKU OBAT UTK PAKAN TERNAK) COA WB04170123,130\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"ROVIMIX E 50 SD, 20KG BAG (BHN BAKU OBAT UTK PAKAN TERNAK) COA WB04170123,130\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROVIMIX E-50 ADSORBATE (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT17060171\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"ROVIMIX E-50 ADSORBATE (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT17060171\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ70207006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ70207006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0018859\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0018859\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AC091KF FUCOGEL 1.5P 25 KG (BHN BAKU KOSMETIK) COA 0019047\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"AC091KF FUCOGEL 1.5P 25 KG (BHN BAKU KOSMETIK) COA 0019047\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTABIO ARV-S (BHN BAKU OBAT) COA.1706131K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"ASTABIO ARV-S (BHN BAKU OBAT) COA.1706131K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM DAB /EP 7.0 (BHN BAKU OBAT) COA 1705718,24,58,89\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331100\", \"uraian\": \"METAMIZOLE SODIUM DAB /EP 7.0 (BHN BAKU OBAT) COA 1705718,24,58,89\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND170704\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND170704\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK,COA 01/17GL4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK,COA 01/17GL4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK,COA 02/16-GL4 ,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK,COA 02/16-GL4 ,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 16E5006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 16E5006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 17E2402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 17E2402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 1709EF3311\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"L-ARGININE LO (BHN BAKU KOSMETIK),COA 1709EF3311\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINDIDONE 5KG (BHN BAKU KOSMETIK) COA 0017961\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29337900\", \"uraian\": \"ZINDIDONE 5KG (BHN BAKU KOSMETIK) COA 0017961\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOGLYCOLIC ACID 99PCT COSMETIC GRADE (BHN BAKU KOSMETIK) COA.0000060086\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOGLYCOLIC ACID 99PCT COSMETIC GRADE (BHN BAKU KOSMETIK) COA.0000060086\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMMONIUM THIOGLYCOLATE 71PCT(60PCT TGA) BHN BAKU KOSMETIK, COA.0000060063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"AMMONIUM THIOGLYCOLATE 71PCT(60PCT TGA) BHN BAKU KOSMETIK, COA.0000060063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MONOETHANOLAMINE THIOGLYCOLATE 83PCT (50PCT TGA) BHN BAKU KOSMETIK, COA 0000060062\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221100\", \"uraian\": \"MONOETHANOLAMINE THIOGLYCOLATE 83PCT (50PCT TGA) BHN BAKU KOSMETIK, COA 0000060062\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMMONIUM THIOGLYCOLATE 71PCT (60PCT TGA) B.BAKU KOSMETIK, COA 0000060080,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"AMMONIUM THIOGLYCOLATE 71PCT (60PCT TGA) B.BAKU KOSMETIK, COA 0000060080,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIAMMONIUM DITHIODIGLYCOLATE 48PCT... (BHN BAKU KOSMETIK),COA 0000060081,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"DIAMMONIUM DITHIODIGLYCOLATE 48PCT... (BHN BAKU KOSMETIK),COA 0000060081,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MONOETHANOLAMINE THIOGLYCOLATE 83PCT... (BHN BAKU KOSMETIK),COA 0000060082 SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"MONOETHANOLAMINE THIOGLYCOLATE 83PCT... (BHN BAKU KOSMETIK),COA 0000060082 SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POTASSIUM THIOGLYCOLATE 43PCT (30PCT TGA)B.BAKU KOSMETIK, COA 0000060083,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"POTASSIUM THIOGLYCOLATE 43PCT (30PCT TGA)B.BAKU KOSMETIK, COA 0000060083,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOGLYCOLIC ACID 99PCT PURE(BHN BAKU KOSMETIK) COA 0000060084,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOGLYCOLIC ACID 99PCT PURE(BHN BAKU KOSMETIK) COA 0000060084,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOGLYCOLIC ACID 80PCT, COSMETIC GRADE(BHN BAKU KOSMETIK) COA 000006085,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOGLYCOLIC ACID 80PCT, COSMETIC GRADE(BHN BAKU KOSMETIK) COA 000006085,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 2688201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 2688201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT16110070\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT16110070\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01611105\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01611105\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL A TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17010012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL A TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17010012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01704041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01704041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT16120007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT16120007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17010011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17010011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ70309009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ70309009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D PANTOTHENATE (BHN BAKU MAKANAN) COA TL01703648\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D PANTOTHENATE (BHN BAKU MAKANAN) COA TL01703648\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11706005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11706005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ70210055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ70210055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01704041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01704041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5 PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1705063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5 PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1705063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB01116017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB01116017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20160302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20160302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ70210055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ70210055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ70210056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ70210056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA WB00417031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA WB00417031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01704108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU MAKANAN) COA UE01704108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01704108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01704108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01704108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU MAKANAN) COA UE01704108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91708220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91708220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70602301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70602301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN)) COA UT17020002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN)) COA UT17020002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX TYPE MM81 (105PCT) BHN BAKU MAKANAN, COA XW91708169\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX TYPE MM81 (105PCT) BHN BAKU MAKANAN, COA XW91708169\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT17050014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT17050014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70602301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70602301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5 PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1705063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5 PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1705063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17040013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17040013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5 PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1705063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5 PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1705063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL01703648\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL01703648\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17040733\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17040733\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17050062\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17050062\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91708078\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX 504010 (BHN BAKU MAKANAN) COA XW91708078\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01703648\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01703648\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70506115\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70506115\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70213050,3051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70213050,3051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01705492\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01705492\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01703648\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01703648\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01705492\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01705492\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70503138\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70503138\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01705492\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01705492\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT16110070\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT16110070\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL A TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT17010012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL A TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT17010012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT17050014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT17050014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70406094,95\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70406094,95\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70213050\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70213050\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT17030160\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT17030160\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI16070010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI16070010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01705492\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01705492\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1706005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1706005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT16090336\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT16090336\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT17050022,12\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT17050022,12\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17050022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17050022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01705492\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01705492\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN535463\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN535463\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN535480\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN535480\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SELVOL 540 PVOH 25 KG BAG (BHN BAKU KOSMETIK) COA PO41683061\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SELVOL 540 PVOH 25 KG BAG (BHN BAKU KOSMETIK) COA PO41683061\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DPG FG (BHN BAKU KOSMETIK) COA A0292ID\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29094900\", \"uraian\": \"DPG FG (BHN BAKU KOSMETIK) COA A0292ID\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PG USP (BHN BAKU KOSMETIK) COA A02921U\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"PG USP (BHN BAKU KOSMETIK) COA A02921U\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT BLACK TEA POWDER TH B430 (BHN BAKU MAKANAN) COA 2017090402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"INSTANT BLACK TEA POWDER TH B430 (BHN BAKU MAKANAN) COA 2017090402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL, 10KG PAIL PE(BHN BAKU KOSMETIK) COA AVD0015511\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL, 10KG PAIL PE(BHN BAKU KOSMETIK) COA AVD0015511\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0317050734,736,737,748,779,780\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0317050734,736,737,748,779,780\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517070147\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517070147\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)BHN BAKU KOSMETIK, COA UT17030160\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO)BHN BAKU KOSMETIK, COA UT17030160\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01703805\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01703805\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708160129\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708160129\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX VH (BHN BAKU KOSMETIK) COA UF17082001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"BEAUPLEX VH (BHN BAKU KOSMETIK) COA UF17082001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517040082,84,86.70147\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517040082,84,86.70147\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340,25KG PC(BHN BAKU KOSMETIK) COA 0217070082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL 340,25KG PC(BHN BAKU KOSMETIK) COA 0217070082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0217060064\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0217060064\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00494228\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"AMPHISOL K (BHN BAKU KOSMETIK) COA VE00494228\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY C 50 (BHN BAKU KOSMETIK), COA UE01706008,6011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY C 50 (BHN BAKU KOSMETIK), COA UE01706008,6011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01706011,14\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY C 50 (BHN BAKU KOSMETIK) COA UE01706011,14\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91708174\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91708174\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA OP81705019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA OP81705019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ7041308447\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ7041308447\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT )COA.ASG/07/310717,08/260817...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT )COA.ASG/07/310717,08/260817...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM VALPROATE (BAHAN BAKU OBAT) COA.450183\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29159090\", \"uraian\": \"SODIUM VALPROATE (BAHAN BAKU OBAT) COA.450183\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHOLINE L-BITARTRATE (BAHAN BAKU OBAT) COA.3012866\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29231000\", \"uraian\": \"CHOLINE L-BITARTRATE (BAHAN BAKU OBAT) COA.3012866\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM DAB /EP 7.0 (BHN BAKU OBAT) COA 17071023,25,1148,1215\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331100\", \"uraian\": \"METAMIZOLE SODIUM DAB /EP 7.0 (BHN BAKU OBAT) COA 17071023,25,1148,1215\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CETIRIZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA 17028CZ6RII\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"CETIRIZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA 17028CZ6RII\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPICILLIN TRIHYDRATE PURICILLIN COMPACTED (BHN BAKU OBAT) COA. M842138 S/D 42\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411020\", \"uraian\": \"AMPICILLIN TRIHYDRATE PURICILLIN COMPACTED (BHN BAKU OBAT) COA. M842138 S/D 42\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE PURIMOX COMPACTED (BHN BAKU OBAT) COA M529259,286,289\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE PURIMOX COMPACTED (BHN BAKU OBAT) COA M529259,286,289\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILIN TRIHYDRATE PURIMOX POWDER (BHN BAKU OBAT) COA M483449\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILIN TRIHYDRATE PURIMOX POWDER (BHN BAKU OBAT) COA M483449\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK), COA.170864\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK), COA.170864\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 171058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 171058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIRJU (BHN BAKU KOSMETIK) COA 170508\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"CLAIRJU (BHN BAKU KOSMETIK) COA 170508\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 170864\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 170864\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 170864\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 170864\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 171335\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 171335\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MATIPURE OIL FREE (BHN BAKU KOSMETIK) COA 1714402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"MATIPURE OIL FREE (BHN BAKU KOSMETIK) COA 1714402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILIGEL (BHN BAKU KOSMETIK) COA 1719401\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SILIGEL (BHN BAKU KOSMETIK) COA 1719401\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5457516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5457516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B WHITE (BHN BAKU KOSMETIK) COA 829015126H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"B WHITE (BHN BAKU KOSMETIK) COA 829015126H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B WHITE (BHN BAKU KOSMETIK) COA 829015243H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"B WHITE (BHN BAKU KOSMETIK) COA 829015243H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830015347H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CAPIXYL (BHN BAKU KOSMETIK) COA 830015347H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANABLUE (BHN BAKU KOSMETIK), COA 5497917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LANABLUE (BHN BAKU KOSMETIK), COA 5497917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELANOSTATINE 5BG (50PPM) (BHN BAKU KOSMETIK), COA 817044833G\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"MELANOSTATINE 5BG (50PPM) (BHN BAKU KOSMETIK), COA 817044833G\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025335H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025335H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HELIOGEL (BHN BAKU KOSMETIK) COA 1706301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HELIOGEL (BHN BAKU KOSMETIK) COA 1706301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5471517\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5471517\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B WHITE (BHN BAKU KOSMETIK) COA 829015243H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"B WHITE (BHN BAKU KOSMETIK) COA 829015243H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769015349H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CHRONOLINE (BHN BAKU KOSMETIK) COA 769015349H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785015248H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785015248H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW 5C 5PCT CLEAR BHN BAKU KOSMETIK, COA 785015305H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CW 5C 5PCT CLEAR BHN BAKU KOSMETIK, COA 785015305H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HELIOGEL (BHN BAKU KOSMETIK) COA 1706301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HELIOGEL (BHN BAKU KOSMETIK) COA 1706301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5497617\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK) COA 5497617\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRO-LIPO NEO (BHN BAKU KOSMETIK) COA 1713601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PRO-LIPO NEO (BHN BAKU KOSMETIK) COA 1713601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025335H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025335H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597966\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597966\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598223\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598223\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598214\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598214\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598222\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598222\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598211\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598211\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598210\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598210\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598218\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598218\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598225\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598225\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598213\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598213\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598224\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598224\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598226\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598226\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00517168\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00517168\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU SUPLEMEN) COA XH20170701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95 (BHN BAKU SUPLEMEN) COA XH20170701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 20PCT SAF, IKG BOT PE (BHN BAKU SUPLEMEN) COA UE01704014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 20PCT SAF, IKG BOT PE (BHN BAKU SUPLEMEN) COA UE01704014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GENIVIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"GENIVIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ASTRIN AG (BHN BAKU KOSMETIK)COA BAG-030126\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND ASTRIN AG (BHN BAKU KOSMETIK)COA BAG-030126\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND GRAPE SED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-020497\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND GRAPE SED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-020497\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUP-021367\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUP-021367\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK)COA HMVBD-031477,040597\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK)COA HMVBD-031477,040597\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-1110597\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-1110597\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND LICORICE EXTRACT (BHN BAKU KOSMETIK) COA GGB-022887\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND LICORICE EXTRACT (BHN BAKU KOSMETIK) COA GGB-022887\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK)COA OSLP-142287, OSLP-152487\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK)COA OSLP-142287, OSLP-152487\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-040857,051277\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-040857,051277\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 071817\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 071817\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 110717\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25070000\", \"uraian\": \"KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 110717\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA DIB\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) COA DIB\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA DHC\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA DHC\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS HYDROMILK (BHN BAKU KOSMETIK) COA DED\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROMOIS HYDROMILK (BHN BAKU KOSMETIK) COA DED\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VISTANOL GDHR (BHN BAKU KOSMETIK) COA EJF\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"VISTANOL GDHR (BHN BAKU KOSMETIK) COA EJF\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OXYTETRACYCLINE DIHYDRATE (BHN BAKU OBAT) COA ZT170758,0926\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29413000\", \"uraian\": \"OXYTETRACYCLINE DIHYDRATE (BHN BAKU OBAT) COA ZT170758,0926\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHENYTOIN SODIUM (BHN BAKU OBAT) COA.17100504\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332100\", \"uraian\": \"PHENYTOIN SODIUM (BHN BAKU OBAT) COA.17100504\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.17100555,556\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29391900\", \"uraian\": \"PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.17100555,556\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VACCINIUM MYRTILLUS DRY EX (BHN BAKU SUPLEMEN) COA 32485/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VACCINIUM MYRTILLUS DRY EX (BHN BAKU SUPLEMEN) COA 32485/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CURCUMA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 32489/M7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CURCUMA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 32489/M7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WHITE WILLOW BARK 50/20PCT BHN BAKU KOSMETIK, COA 20161014-610\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"WHITE WILLOW BARK 50/20PCT BHN BAKU KOSMETIK, COA 20161014-610\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1708066,69,70,73,74,76,78 S/D 80,83\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"MEFENAMIC ACID (BHN BAKU OBAT) COA MA1708066,69,70,73,74,76,78 S/D 80,83\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S358/17\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S358/17\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB090817\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB090817\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B300717\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B300717\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANTOPROZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT,COA APSS17004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"PANTOPROZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT,COA APSS17004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 INF OIL, 4,5KG PJUG (BHN BAKU SUPLEMEN) COA.TS00008657\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 INF OIL, 4,5KG PJUG (BHN BAKU SUPLEMEN) COA.TS00008657\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 01/17GAAK\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 01/17GAAK\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU OBAT) COA.01/17GAAK,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT KIWI (BHN BAKU OBAT) COA.01/17GAAK,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TEFOSE 63 (BAHAN BAKU OBAT) COA.163794\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TEFOSE 63 (BAHAN BAKU OBAT) COA.163794\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M.31PCT (BHN BAKU OBAT) COA 101729021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MG HYD PASTE USP TYPE M.31PCT (BHN BAKU OBAT) COA 101729021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7082920,7214775\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7082920,7214775\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70313056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70313056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN) COA UT17070161\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN) COA UT17070161\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17030160\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17030160\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70503156,58\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70503156,58\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01611106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01611106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17010020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17010020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01704042\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01704042\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT17030160\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT17030160\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01612020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01612020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT16110070\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT16110070\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB00517033\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB00517033\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01704108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01704108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17030085\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17030085\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1706007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1706007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ70210059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ70210059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT17020002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT17020002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70602307\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70602307\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G TOCO) (BHN BAKU MAKANAN) COA UT17070161\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G TOCO) (BHN BAKU MAKANAN) COA UT17070161\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91708341\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX 504010 (BHN BAKU MAKANAN) COA XW91708341\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DWI BI (BHN BAKU MAKANAN) COA XW91708343\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"DWI BI (BHN BAKU MAKANAN) COA XW91708343\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91709064\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91709064\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX KNPX CH 00 16 (BHN BAKU MAKANAN) COA XW91709080\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX KNPX CH 00 16 (BHN BAKU MAKANAN) COA XW91709080\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW91709090\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 C (BHN BAKU MAKANAN) COA XW91709090\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17010011,30085\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17010011,30085\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT17040739\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT17040739\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT17030019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT17030019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN), COA UT17020002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN), COA UT17020002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17020017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17020017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ70309009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ70309009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01612020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01612020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01611106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01611106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB00517033\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB00517033\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01704108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01704108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20160302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20160302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRAPE SEED ORGANIC OIL C00031 (BHN BAKU KOSMETIK)COA RPH170903-ENBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"GRAPE SEED ORGANIC OIL C00031 (BHN BAKU KOSMETIK)COA RPH170903-ENBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA170901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA170901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LINEN OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA LIUH170804-H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LINEN OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA LIUH170804-H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO170601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO170601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-170301-GS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-170301-GS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA.70607\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA.70607\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX C TM AF (BHN BAKU KOSMETIK) COA.70807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SUPEROX C TM AF (BHN BAKU KOSMETIK) COA.70807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WILDPLUM HARVERST TM AF (BHN BAKU KOSMETIK) COA 70803\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"WILDPLUM HARVERST TM AF (BHN BAKU KOSMETIK) COA 70803\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA 70913\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA 70913\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA 70618\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA 70618\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM 0325 DRIED AL HYD GEL USP(BHN BAKU OBAT) COA.101758042\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"BARCROFT TM 0325 DRIED AL HYD GEL USP(BHN BAKU OBAT) COA.101758042\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COLCHICINE USP (BHN BAKU SUPLEMEN) COA 55032/1,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"COLCHICINE USP (BHN BAKU SUPLEMEN) COA 55032/1,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA 1 P001062 (BHN BAKU KOSMETIK) COA 0000006988\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA 1 P001062 (BHN BAKU KOSMETIK) COA 0000006988\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA.0000005734\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA.0000005734\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTRACT 2PCT COLOR (BAHAN BAKU SUPPLEMEN) COA 10430/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTRACT 2PCT COLOR (BAHAN BAKU SUPPLEMEN) COA 10430/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10504/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10504/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10399/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10399/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10400/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10400/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10429/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10429/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID S 20 (BHN BAKU OBAT) COA.572000-2170117/037-039 (3), 572000-2170117/051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232010\", \"uraian\": \"LIPOID S 20 (BHN BAKU OBAT) COA.572000-2170117/037-039 (3), 572000-2170117/051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEG 400 (BAHAN BAKU KOSMETIK) COA.AKW0004371\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PEG 400 (BAHAN BAKU KOSMETIK) COA.AKW0004371\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01708425,31,36\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01708425,31,36\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT17080010,11\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT17080010,11\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20170701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20170701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598218\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598218\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598405\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598405\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598404\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598404\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598414\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598414\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598543\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598543\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598409\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598409\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598407\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598407\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598408\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598408\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598412\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598412\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598403\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598403\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598414\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598414\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598413\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598413\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX TM COMPACTED, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B339914,17,18,19\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX TM COMPACTED, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B339914,17,18,19\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E5 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011G6KL03\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E5 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011G6KL03\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011GBFL01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011GBFL01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011GADL01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011GADL01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E50 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011GB0L03\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E50 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011GB0L03\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180G33001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180G33001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 20 PREMIUM... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D184H75021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 20 PREMIUM... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D184H75021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN MINERAL PREMIX FOR MICRONUTRIENT POWDER (BHN BAKU MAKANAN) COA MY61709168\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN MINERAL PREMIX FOR MICRONUTRIENT POWDER (BHN BAKU MAKANAN) COA MY61709168\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CARVEDILOL USP (BHN BAKU OBAT) COA 17CVM1002,003,005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29398000\", \"uraian\": \"CARVEDILOL USP (BHN BAKU OBAT) COA 17CVM1002,003,005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANOLINE ANHYDROUS (BHN BAKU KOSMETIK) COA 4501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LANOLINE ANHYDROUS (BHN BAKU KOSMETIK) COA 4501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20170701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20170701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT A PALM 1.0 M AND VIT D3 100000 (BHN BAKU MAKANAN) COA UT17090043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VIT A PALM 1.0 M AND VIT D3 100000 (BHN BAKU MAKANAN) COA UT17090043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00617194\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00617194\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JAGUAR C 162 CARDBOARD BOX 25 KG (BHN BAKU KOSMETIK) COA MJAC17255A\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"JAGUAR C 162 CARDBOARD BOX 25 KG (BHN BAKU KOSMETIK) COA MJAC17255A\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTISHARP NAT,ZEA 5PCT CWS/S... (B. BAKU SUPLEMEN) COA EW16115002 SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"OPTISHARP NAT,ZEA 5PCT CWS/S... (B. BAKU SUPLEMEN) COA EW16115002 SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTISHARP NAT.ZEA 5PCT CWS/S... (B. BAKU SUPLEMEN) COA EW16115003 SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"OPTISHARP NAT.ZEA 5PCT CWS/S... (B. BAKU SUPLEMEN) COA EW16115003 SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 0,050 KG SAMPLE (B. BAKU SUPLEMEN) COA TL01701285 SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 0,050 KG SAMPLE (B. BAKU SUPLEMEN) COA TL01701285 SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 0,050 KG SAMPLE (B. BAKU SUPLEMEN) COA TL01706844 SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 0,050 KG SAMPLE (B. BAKU SUPLEMEN) COA TL01706844 SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00915140 SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00915140 SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (B. BAKU SUPLEMEN) COA UT16110050 SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER MISCIBLE TYPE 100 (B. BAKU SUPLEMEN) COA UT16110050 SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01702635 SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01702635 SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01607020 SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01607020 SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID REGULAR (BHN BAKU SUPLEMEN) COA D201612002 SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID REGULAR (BHN BAKU SUPLEMEN) COA D201612002 SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT17010010 SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT17010010 SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID REGULAR ...(BHN BAKU SUPLEMEN) COA D201612002 SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID REGULAR ...(BHN BAKU SUPLEMEN) COA D201612002 SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID REGULAR... (BHN BAKU SUPLEMEN) COA B201612033 SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID REGULAR... (BHN BAKU SUPLEMEN) COA B201612033 SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00816163 SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00816163 SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00816163 SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00816163 SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB01016164, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB01016164, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (BHN BAKU SUPLEMEN) COA UT17040739 SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (BHN BAKU SUPLEMEN) COA UT17040739 SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT17010054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT17010054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 1PCT SD (BHN BAKU SUPLEMEN) COA UT17010001 SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 1PCT SD (BHN BAKU SUPLEMEN) COA UT17010001 SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00816163 SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00816163 SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL A TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT17020016 SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL A TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT17020016 SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI16070010 SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI16070010 SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTISHARP NAT.ZEA 5PCT CWS/S... (BHN BAKU SUPLEMEN) COA EW16115001 SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"OPTISHARP NAT.ZEA 5PCT CWS/S... (BHN BAKU SUPLEMEN) COA EW16115001 SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT16020014 SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT16020014 SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01702635 SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01702635 SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (B. BAKU SUPLEMEN) COA WB00715010 SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (B. BAKU SUPLEMEN) COA WB00715010 SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE VOLYME 1 ML (BHN BAKU OBAT) COA 15063-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE VOLYME 1 ML (BHN BAKU OBAT) COA 15063-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE DEFYNE 1 ML (BHN BAKU OBAT) COA 15022-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE DEFYNE 1 ML (BHN BAKU OBAT) COA 15022-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CANNULA 23G PIXL 0,6X50 (BHN BAKU OBAT) COA 10005023/190717\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"CANNULA 23G PIXL 0,6X50 (BHN BAKU OBAT) COA 10005023/190717\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CANNULA 25G PIXL 0,5X40 (BHN BAKU OBAT) COA 10005022/140617\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"CANNULA 25G PIXL 0,5X40 (BHN BAKU OBAT) COA 10005022/140617\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SKINB VITLIDO 1MLD16 (BHN BAKU OBAT) COA 15430-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE SKINB VITLIDO 1MLD16 (BHN BAKU OBAT) COA 15430-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE LYFT LIDOCAINE 1 ML (BHN BAKU OBAT) COA 15317-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE LYFT LIDOCAINE 1 ML (BHN BAKU OBAT) COA 15317-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE LYFT LIDOCAINE 1 ML (BHN BAKU OBAT) COA 15317-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE LYFT LIDOCAINE 1 ML (BHN BAKU OBAT) COA 15317-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA. RBA2491700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA. RBA2491700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRO LIPO NEO (BHN BAKU KOSMETIK) COA 1721501, 1715801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PRO LIPO NEO (BHN BAKU KOSMETIK) COA 1721501, 1715801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B WHITE (BHN BAKU KOSMETIK) COA 829015350H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"B WHITE (BHN BAKU KOSMETIK) COA 829015350H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769015349H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CHRONOLINE (BHN BAKU KOSMETIK) COA 769015349H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785015444H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785015444H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CS 5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785015526H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CS 5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785015526H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785015305H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785015305H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANABLUE (BHN BAKU KOSMETIK), COA 5497917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LANABLUE (BHN BAKU KOSMETIK), COA 5497917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK), COA 1710602\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK), COA 1710602\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5457416\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK) COA 5457416\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELANOSTATINE 5 PS (50PPM) (BHN BAKU KOSMETIK) COA 817015255H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"MELANOSTATINE 5 PS (50PPM) (BHN BAKU KOSMETIK) COA 817015255H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015372H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015372H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SWT 7TH H (BHN BAKU KOSMETIK) COA 1714501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SWT 7TH H (BHN BAKU KOSMETIK) COA 1714501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SWT 7 TM L (BHN BAKU KOSMETIK) COA 1632001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SWT 7 TM L (BHN BAKU KOSMETIK) COA 1632001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025335H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025335H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025335H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025335H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT666487\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT666487\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT666488\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT666488\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT666478\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT666478\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA ROA240174\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA ROA240174\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA ROA243173\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA ROA243173\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OATWELL 22,18KG BAG (BHN BAKU MAKANAN) COA SOF172005, 2204\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"OATWELL 22,18KG BAG (BHN BAKU MAKANAN) COA SOF172005, 2204\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CELLATOSE(R) 80 (BHN BAKU OBAT) COA L1004630017A535\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"CELLATOSE(R) 80 (BHN BAKU OBAT) COA L1004630017A535\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE USP (BHN BAKU OBAT) COA M110365\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM CRYSTALLINE USP (BHN BAKU OBAT) COA M110365\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE USP (BHN BAKU OBAT) COA M110365\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM CRYSTALLINE USP (BHN BAKU OBAT) COA M110365\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHARMABURST (R) C1 (BHN BAKU OBAT) COA.121707830\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069099\", \"uraian\": \"PHARMABURST (R) C1 (BHN BAKU OBAT) COA.121707830\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TEAVIGO (1KG), BHN BAKU MAKANAN, COA 708161\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"TEAVIGO (1KG), BHN BAKU MAKANAN, COA 708161\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK), COA.171728\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE II (BHN BAKU KOSMETIK), COA.171728\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 171383\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 171383\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 170864\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 170864\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 171728\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 171728\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY QX YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598863\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY QX YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598863\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 14 PREMIUM... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.D184G71021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 14 PREMIUM... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.D184G71021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP779705...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP779705...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C RED #40/ALLURA RED AC AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP784985...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C RED #40/ALLURA RED AC AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP784985...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP779706...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #6/SUNSET YELLOW... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP779706...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JAGUAR HP 105, 25KG CARDBOARD CARTON (BHN BAKU KOSMETIK) COA H1707157D\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"JAGUAR HP 105, 25KG CARDBOARD CARTON (BHN BAKU KOSMETIK) COA H1707157D\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AC019KC PHYTOVITYL C 5KG BHN BAKU KOSMETIK COA 0016267\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"AC019KC PHYTOVITYL C 5KG BHN BAKU KOSMETIK COA 0016267\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517050117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517050117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00494230,4231,4961,5421\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"AMPHISOL K (BHN BAKU KOSMETIK) COA VE00494230,4231,4961,5421\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11706007,6009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11706007,6009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT17030160\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT17030160\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01704043,5045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01704043,5045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01703806\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01703806\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708160129,130\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708160129,130\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX VH (BHN BAKU KOSMETIK) COA UF17082001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"BEAUPLEX VH (BHN BAKU KOSMETIK) COA UF17082001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P7P24UA000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL TX (BHN BAKU KOSMETIK) COA P7P24UA000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01706055 S/D 57\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01706055 S/D 57\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01703806\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01703806\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01706014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY C 50 (BHN BAKU KOSMETIK) COA UE01706014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HS (BHN BAKU KOSMETIK) COA 0709150116, 0709160001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL HS (BHN BAKU KOSMETIK) COA 0709150116, 0709160001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91709283,84\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91709283,84\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROCATEROL HCL HEMIHYDRATE MICRONIZED (B.BAKU OBAT) COA 860020315M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29337900\", \"uraian\": \"PROCATEROL HCL HEMIHYDRATE MICRONIZED (B.BAKU OBAT) COA 860020315M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-001-U\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-001-U\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA629366\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA629366\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND170705\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND170705\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 030117/004441\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 030117/004441\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLOWLAC (R) 100 (BHN BAKU OBAT) COA. L101503617A537, L101512617A537\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"FLOWLAC (R) 100 (BHN BAKU OBAT) COA. L101503617A537, L101512617A537\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101853717A545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA L101853717A545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA.17100596\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA.17100596\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIO SODIUM HYALURONATE POWDER (MMW)BHN BAKU KOSMETIK, COA CHP1170926\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"BIO SODIUM HYALURONATE POWDER (MMW)BHN BAKU KOSMETIK, COA CHP1170926\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 071817,2017G1492\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 071817,2017G1492\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-051277\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-051277\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-011177\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-011177\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARBUTIN (BHN BAKU KOSMETIK) COA ARP-1110597\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ARBUTIN (BHN BAKU KOSMETIK) COA ARP-1110597\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-010337\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-010337\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CUCUMBER EXTRACT (BHN BAKU KOSMETIK) COA CUPD-033067\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CUCUMBER EXTRACT (BHN BAKU KOSMETIK) COA CUPD-033067\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-122697\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-122697\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-052297\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-052297\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598649\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598649\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598648\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598648\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598652\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598652\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598637\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598637\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598653\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598653\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598655\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598655\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598656\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598656\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK) COA.LDC 238 17\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SAVONOL 16 (BAHAN BAKU KOSMETIK) COA.LDC 238 17\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7187993\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7187993\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL. PANTHENOL 50L (BHN BAKU KOSMETIK) COA TL01702609\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL. PANTHENOL 50L (BHN BAKU KOSMETIK) COA TL01702609\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0317050781 S/D 785\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0317050781 S/D 785\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ60913275\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ60913275\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK), COA 051705017,30\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK), COA 051705017,30\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA OP81706018,19\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA OP81706018,19\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL,19KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0015511\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL,19KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0015511\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0317050785,786\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL 1789 (BHN BAKU KOSMETIK) COA 0317050785,786\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK), COA 0517060131\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK), COA 0517060131\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D BIOTIN (BHN BAKU KOSMETIK) COA UE01704108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D BIOTIN (BHN BAKU KOSMETIK) COA UE01704108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA. ROA274173\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA. ROA274173\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170904\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170904\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-171002-GS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-171002-GS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIVD160903-BGBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIVD160903-BGBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO170601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO170601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170904\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170904\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO170601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO170601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK)COA EG543-170905\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK)COA EG543-170905\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH170903-ENBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH170903-ENBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIE170702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIE170702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LICORICE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA GLG171001-BGBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LICORICE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA GLG171001-BGBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIQUORICE ORGANIC OILY EXTRACT (BHN BAKU KOSMETIK) COA GLGT171001-HBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LIQUORICE ORGANIC OILY EXTRACT (BHN BAKU KOSMETIK) COA GLGT171001-HBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK) COA EG138-170601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK) COA EG138-170601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM170702-PGH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM170702-PGH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLOPURINOL BP (BHN BAKU OBAT) COA ALP0060817\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"ALLOPURINOL BP (BHN BAKU OBAT) COA ALP0060817\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7209759\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7209759\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7157502\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7157502\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6201884\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6201884\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7116560\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7116560\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7158801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MALT EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7158801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PROTEOSE PEPTONE NO 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7107877\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PROTEOSE PEPTONE NO 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7107877\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BEEF EXTRACT POWDER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6298524\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BEEF EXTRACT POWDER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6298524\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7109930\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7109930\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060762\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060762\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 7171993\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 7171993\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7205816\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7205816\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 8 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 5201890\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 8 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 5201890\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7135933\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7135933\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CELLOBIOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7156992\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CELLOBIOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7156992\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D-MANNOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7135976\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D-MANNOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7135976\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7207681\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7207681\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7143744\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7143744\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ENDO AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6026738\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ENDO AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6026738\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060948\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060948\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7075670\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7075670\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MARINE BROTH 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7156792\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MARINE BROTH 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7156792\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MICRO INOCULUM BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6342747\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MICRO INOCULUM BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6342747\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHENOL RED LACTOSE BR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7082956\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PHENOL RED LACTOSE BR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7082956\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHENOL RED SUCROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009818\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PHENOL RED SUCROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009818\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHENOL RED BROTH BASE BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6131892\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PHENOL RED BROTH BASE BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6131892\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7177823\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7177823\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7153977\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PSEUDOMONAS AGAR P 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7153977\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT CASSILIADIS MSRV 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6314689\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RAPPAPORT CASSILIADIS MSRV 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6314689\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7193914\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7193914\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE WL DIFFERENTIAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7009556\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE WL DIFFERENTIAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7009556\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7206693\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7206693\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7229653\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7229653\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7229653\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7229653\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7255892\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7255892\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7209759\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7209759\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7255892\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7255892\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7069597\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7069597\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7209759\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7209759\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7100982,9925\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7100982,9925\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7101832\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7101832\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6228993\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6228993\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7255892\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7255892\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171820\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171820\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7143641\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7143641\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121569\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121569\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171538\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171538\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 6278835\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 19 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 6278835\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7110592\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7110592\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7018890\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7018890\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121848\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121848\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009966\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009966\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7068731,7171993\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7068731,7171993\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7116560\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7116560\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7142578\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7142578\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7114681\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7114681\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7142628\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7142628\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7198804\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7198804\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7095554\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7095554\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7041754\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7041754\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060815\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060815\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060602\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060602\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7102910\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7102910\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6333840\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6333840\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 7114771\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 7114771\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7151674\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7151674\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6320611\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6320611\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7135844,71639\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7135844,71639\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE BROT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7053897\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE BROT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7053897\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7128678\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7128678\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7193724\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7193724\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7130695\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7130695\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6320612\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6320612\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7193733\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7193733\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7005857\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7005857\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7109946\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7109946\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7143815\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7143815\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009966\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009966\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NOXXLE ASSEMBLY 70UM S TYPE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"NOXXLE ASSEMBLY 70UM S TYPE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7179844\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7179844\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7255892\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7255892\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7156641,7208917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7156641,7208917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7152964,.\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7152964,.\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6197586\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6197586\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6337887\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6337887\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7142814\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7142814\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7237643\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS OGAWA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7237643\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD7 APC (M-T701) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7240826\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD7 APC (M-T701) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7240826\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD CST BEADS KIT 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 68954\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BD CST BEADS KIT 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 68954\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HY MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7219674\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HY MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7219674\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 7186970\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 7186970\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7174889\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7174889\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU REGULATORY T CELL CKTL 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7234824\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU REGULATORY T CELL CKTL 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7234824\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171565\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171565\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD117 PE 1-4D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7094972\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD117 PE 1-4D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7094972\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7241637\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7241637\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7212855\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7212855\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7125585\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7125585\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7214775\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7214775\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7102829\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE M GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7102829\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060854\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060854\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7200569\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7200569\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEPTOSPIRA ENRICHMENT... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7188915\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LEPTOSPIRA ENRICHMENT... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7188915\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP A (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6239952\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL N MENINGITIDIS ANTISERUM GRP A (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6239952\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP C (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6054509\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL N MENINGITIDIS ANTISERUM GRP C (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6054509\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP W135 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6267761\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL N MENINGITIDIS ANTISERUM GRP W135 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6267761\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP Y 1MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7117785\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL N MENINGITIDIS ANTISERUM GRP Y 1MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7117785\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE UREA BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7220790\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE UREA BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7220790\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6309655\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6309655\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IFN GAMMA APC RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7236968\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"IFN GAMMA APC RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7236968\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD19 PERCP CY5.5 SJ25C1 50 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7128512\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD19 PERCP CY5.5 SJ25C1 50 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7128512\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702444279\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702444279\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYOSCINE BUTYL BROMIDE EP/BP (BHN BAKU OBAT) COA.2530517\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"HYOSCINE BUTYL BROMIDE EP/BP (BHN BAKU OBAT) COA.2530517\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) BAHAN BAKU OBAT) COA.4453012184\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"XANTHAN 80 (PHARMACEUTICAL GRADE) BAHAN BAKU OBAT) COA.4453012184\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00617194\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00617194\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17070052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17070052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THEOPHYLLIN BP/EP (BHN BAKU OBAT) COA 17304 S/D 17313\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29395900\", \"uraian\": \"THEOPHYLLIN BP/EP (BHN BAKU OBAT) COA 17304 S/D 17313\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS FUMARATE USP/EP (BHN BAKU OBAT) COA.2017/261\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"FERROUS FUMARATE USP/EP (BHN BAKU OBAT) COA.2017/261\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA.01/17GAAK\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA.01/17GAAK\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 01/17GAAK,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 01/17GAAK,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BAHAN BAKU OBAT) COA 163815\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"VEGETOL GRAPEFRUIT GR403 HYDRO (BAHAN BAKU OBAT) COA 163815\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRANSCUTOL P (BAHAN BAKU OBAT) COA 165110\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TRANSCUTOL P (BAHAN BAKU OBAT) COA 165110\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LABRAFIL M 1944 CS (BHN BAKU OBAT) COA 164849\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LABRAFIL M 1944 CS (BHN BAKU OBAT) COA 164849\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE PURIMOX POWDER (BHN BAKU OBAT) COA M483509\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE PURIMOX POWDER (BHN BAKU OBAT) COA M483509\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE PURIMOX COMPACTED (BHN BAKU OBAT) COA M529404,405\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE PURIMOX COMPACTED (BHN BAKU OBAT) COA M529404,405\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE PURIMOX POWDER GRADE C (BHN BAKU OBAT) COA M631507, 510\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE PURIMOX POWDER GRADE C (BHN BAKU OBAT) COA M631507, 510\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE BP (BHN BAKU OBAT) COA.26241017,26251017...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29351000\", \"uraian\": \"SULPHAMETHOXAZOLE BP (BHN BAKU OBAT) COA.26241017,26251017...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RANITIDINE HCL (BHN BAKU OBAT) COA RH/10 2017 1315, RH 10 2017 1316\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29321900\", \"uraian\": \"RANITIDINE HCL (BHN BAKU OBAT) COA RH/10 2017 1315, RH 10 2017 1316\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE BP MICRONISED (BHN BAKU OBAT) COA.26371017,26381017...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29351000\", \"uraian\": \"SULPHAMETHOXAZOLE BP MICRONISED (BHN BAKU OBAT) COA.26371017,26381017...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 900 CN 10 KG KA (BHN BAKU KOSMETIK) COA.1336571\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 900 CN 10 KG KA (BHN BAKU KOSMETIK) COA.1336571\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIDIN DO CN 10KG CA (BHN BAKU KOSMETIK) COA.1336925,8671\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIDIN DO CN 10KG CA (BHN BAKU KOSMETIK) COA.1336925,8671\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WITCH HAZEL (14PCT STANDARD ALCOHOL) BHN BAKU KOSMETIK, COA A10212\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"WITCH HAZEL (14PCT STANDARD ALCOHOL) BHN BAKU KOSMETIK, COA A10212\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17090010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17090010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17090010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17090010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17090010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17090010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 INF OIL, 4,5KG PJUG (BHN BAKU SUPLEMEN) COA.TS00008874\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 INF OIL, 4,5KG PJUG (BHN BAKU SUPLEMEN) COA.TS00008874\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC,20KG BAL (BHN BAKU KOSMETIK) COA OP81706019,21\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC,20KG BAL (BHN BAKU KOSMETIK) COA OP81706019,21\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0317050786 S/D 91\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL 1789 (BHN BAKU KOSMETIK) COA 0317050786 S/D 91\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEROPENEM TRIHYDRATE WITH SODIUM CARBONATE STERILE (BHN BAKU OBAT) COA S0820170806\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30032000\", \"uraian\": \"MEROPENEM TRIHYDRATE WITH SODIUM CARBONATE STERILE (BHN BAKU OBAT) COA S0820170806\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEOMYCIN SULPHATE (BHN BAKU OBAT) COA 201708050\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NEOMYCIN SULPHATE (BHN BAKU OBAT) COA 201708050\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEVOFLOXACIN HEMIHYDRATE (FREE ALKALINE) BHN BAKU OBAT, COA C008-1701102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"LEVOFLOXACIN HEMIHYDRATE (FREE ALKALINE) BHN BAKU OBAT, COA C008-1701102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-GLUCOSAMINE SULPHATE POTASSIUM (BHN BAKU OBAT) COA XH2017092501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"D-GLUCOSAMINE SULPHATE POTASSIUM (BHN BAKU OBAT) COA XH2017092501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FENOFIBRATE MICRONIZED (BHN BAKU OBAT) COA W-F03-20170506-06\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"FENOFIBRATE MICRONIZED (BHN BAKU OBAT) COA W-F03-20170506-06\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRAVASTATIN SODIUM (BHN BAKU OBAT) COA PV201607173\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PRAVASTATIN SODIUM (BHN BAKU OBAT) COA PV201607173\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENTRY POLYOX WSR 303 LEO NF ( BHN BAKU OBAT UTK PEWARNA TABLET) COA. D682H4QRR4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"SENTRY POLYOX WSR 303 LEO NF ( BHN BAKU OBAT UTK PEWARNA TABLET) COA. D682H4QRR4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALDAVINE 5X (BHN BAKU KOSMETIK) COA 5493217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ALDAVINE 5X (BHN BAKU KOSMETIK) COA 5493217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830015440H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CAPIXYL (BHN BAKU KOSMETIK) COA 830015440H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK), COA 769015443H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CHRONOLINE (BHN BAKU KOSMETIK), COA 769015443H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HELIOGEL TM (BHN BAKU KOSMETIK), COA 1624901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HELIOGEL TM (BHN BAKU KOSMETIK), COA 1624901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HELIOGEL (BHN BAKU KOSMETIK) COA 1628101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HELIOGEL (BHN BAKU KOSMETIK) COA 1628101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL (BHN BAKU KOSMETIK) COA 1710603\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LECIGEL (BHN BAKU KOSMETIK) COA 1710603\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5509217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK) COA 5509217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRO-LIPO TM NEO (BHN BAKU KOSMETIK) COA 1726901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PRO-LIPO TM NEO (BHN BAKU KOSMETIK) COA 1726901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025335H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025335H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5471517\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5471517\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA.70704\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LIME PEARL TM AF (BHN BAKU KOSMETIK) COA.70704\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX C TM AF (BHN BAKU KOSMETIK) COA.70910\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SUPEROX C TM AF (BHN BAKU KOSMETIK) COA.70910\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 70910\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 70910\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA 70618\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA 70618\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B CAROTENE 10PCT EMULS (BHN BAKU MAKANAN) COA UE01710009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B CAROTENE 10PCT EMULS (BHN BAKU MAKANAN) COA UE01710009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334487,88,90\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334487,88,90\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA Q701900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA Q701900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEROPENEM WITH SODIUM CARBONATE (BHN BAKU OBAT) COA Q900100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"MEROPENEM WITH SODIUM CARBONATE (BHN BAKU OBAT) COA Q900100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA Q100700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA Q100700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT17080037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT17080037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT17080035,37\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT17080035,37\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT SD ,15KG BOXALU (BHN BAKU SUPLEMEN) COA WB01870237\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT SD ,15KG BOXALU (BHN BAKU SUPLEMEN) COA WB01870237\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROVIMIX A 1000,20KG BAL (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT17060596,597, 600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"ROVIMIX A 1000,20KG BAL (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT17060596,597, 600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POLYQUTA 400KC (BHN BAKU KOSMETIK) COA. 70922135\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39129090\", \"uraian\": \"POLYQUTA 400KC (BHN BAKU KOSMETIK) COA. 70922135\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA.MLAH053091718\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29341000\", \"uraian\": \"MELOXICAM BP (BHN BAKU OBAT) COA.MLAH053091718\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT17030019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT17030019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70313060,62,64\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70313060,62,64\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHNATE (BHN BAKU MAKANAN) COA TL01705671\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHNATE (BHN BAKU MAKANAN) COA TL01705671\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01611107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01611107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70413083\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70413083\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70413083\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70413083\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01704374\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01704374\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01707061\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01707061\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01704374\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01704374\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01611107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01611107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70603197,98\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70603197,98\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91709254\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91709254\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT17050024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT17050024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT17010034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT17010034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT17050024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT17050024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17050024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17050024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17050024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17050024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17050024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17050024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17050024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17050024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17030011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17030011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17050024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17050024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1704053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1704053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01705671\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01705671\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT16120007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT16120007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ70309009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ70309009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01612020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01612020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17040013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17040013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17050062\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17050062\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 103093-A (BHN BAKU MAKANAN) COA XW91709154\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 103093-A (BHN BAKU MAKANAN) COA XW91709154\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX, TYPE MM81 (105PCT) BHN BAKU MAKANAN, COA XW91709155\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX, TYPE MM81 (105PCT) BHN BAKU MAKANAN, COA XW91709155\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91709329\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX 504010 (BHN BAKU MAKANAN) COA XW91709329\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91709336\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91709336\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DWI-BI (BHN BAKU MAKANAN) COA XW91709330\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"DWI-BI (BHN BAKU MAKANAN) COA XW91709330\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT17050014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT17050014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN, COA U17050741\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN, COA U17050741\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL A TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17010020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL A TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17010020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT17070161\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT17070161\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB00517033\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB00517033\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01706057\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01706057\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17030085\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17030085\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11706016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11706016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5 PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1704053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5 PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1704053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17040013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17040013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01705671\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01705671\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW91710014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 C (BHN BAKU MAKANAN) COA XW91710014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 C3 (BHN BAKU MAKANAN) COA XW91710015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 C3 (BHN BAKU MAKANAN) COA XW91710015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL01705671\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL01705671\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)BHN BAKU MAKANAN, COA UT17070162\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO)BHN BAKU MAKANAN, COA UT17070162\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER (B.BAKU MAKANAN) COA WB00717300, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 (TM) '10' N-3 INF POWDER (B.BAKU MAKANAN) COA WB00717300, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EVERMAP 160K (BHN BAKU KOSMETIK) COA.C17050101E160K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EVERMAP 160K (BHN BAKU KOSMETIK) COA.C17050101E160K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFIXIME TRYHYDRATE (BHN BAKU OBAT) COA Q900100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFIXIME TRYHYDRATE (BHN BAKU OBAT) COA Q900100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA.1GC01CLB ZP48D 25MT\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA.1GC01CLB ZP48D 25MT\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRAPE SEED ORGANIC OIL C00031 (BHN BAKU KOSMETIK)COA RPH171004-ENBIO-RQ\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"GRAPE SEED ORGANIC OIL C00031 (BHN BAKU KOSMETIK)COA RPH171004-ENBIO-RQ\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO170601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO170601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK)COA EG543-170905\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK)COA EG543-170905\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIV171001-BGBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIV171001-BGBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEPPERMINT ORGANIC DISTILLATE 1:5 SB (BHN BAKU KOSMETIK) COA MEPD170701-BIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PEPPERMINT ORGANIC DISTILLATE 1:5 SB (BHN BAKU KOSMETIK) COA MEPD170701-BIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LICORICE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA GLG171001-BGBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LICORICE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA GLG171001-BGBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIQUORICE ORGANIC OILY EXTRACT (BHN BAKU KOSMETIK) COA GLGT171001-HBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LIQUORICE ORGANIC OILY EXTRACT (BHN BAKU KOSMETIK) COA GLGT171001-HBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA VIV171001-BGBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA VIV171001-BGBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DICLOFENAC SODIUM (BHN BAKU OBAT) COA 170244\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"DICLOFENAC SODIUM (BHN BAKU OBAT) COA 170244\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAPROTILINE HCL (BHN BAKU OBAT) COA 1750000147\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29214900\", \"uraian\": \"MAPROTILINE HCL (BHN BAKU OBAT) COA 1750000147\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERYTHROMYCIN ETHYL SUCCINATE BP (BHN BAKU OBAT) COA EES 061 117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29415000\", \"uraian\": \"ERYTHROMYCIN ETHYL SUCCINATE BP (BHN BAKU OBAT) COA EES 061 117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEG 400 (BAHAN BAKU KOSMETIK) COA.AKW0004548\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PEG 400 (BAHAN BAKU KOSMETIK) COA.AKW0004548\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 17090806\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 17090806\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 71003, 71004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 71003, 71004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIRACETAM INJECTABLE GRADE, BHN BAKU OBAT COA. PIR03317\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29337900\", \"uraian\": \"PIRACETAM INJECTABLE GRADE, BHN BAKU OBAT COA. PIR03317\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAFFEIN (BHN BAKU OBAT) COA 17091487,492, 493,495,500,501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29393000\", \"uraian\": \"CAFFEIN (BHN BAKU OBAT) COA 17091487,492, 493,495,500,501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334489,93,97\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334489,93,97\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1752045, 1752065, 1752079\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"PARACETAMOL (BHN BAKU OBAT) COA 1752045, 1752065, 1752079\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DESOXIMETASONE MICRONISED USP (BHN BAKU OBAT) COA 1601665549\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DESOXIMETASONE MICRONISED USP (BHN BAKU OBAT) COA 1601665549\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA. 17E2501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA. 17E2501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DAMIANA EXTRACT (BHN BAKU OBAT) COA BNPD170903\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"DAMIANA EXTRACT (BHN BAKU OBAT) COA BNPD170903\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP27917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP27917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP27917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP27917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP27917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP27917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLOPURINOL BP (BHN BAKU OBAT) COA ALP0060817\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"ALLOPURINOL BP (BHN BAKU OBAT) COA ALP0060817\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OXYTETRACYCLINE DIHYDRATE (BHN BAKU OBATUTK PAKAN TERNAK) COA ZT170903, ZT170927\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29413000\", \"uraian\": \"OXYTETRACYCLINE DIHYDRATE (BHN BAKU OBATUTK PAKAN TERNAK) COA ZT170903, ZT170927\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OXYTETRACYCLINE HYDROCHLORIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 17101109 S/D 111\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29413000\", \"uraian\": \"OXYTETRACYCLINE HYDROCHLORIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 17101109 S/D 111\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COLLISTIN SULFATE (BHN BAKU OBAT UTK PAKAN TERNAK) COA KB-CS-1707011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"COLLISTIN SULFATE (BHN BAKU OBAT UTK PAKAN TERNAK) COA KB-CS-1707011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20171011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20171011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LOSARTAN POTASSIUM (BHN BAKU OBAT) COA C5455-17-096\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"LOSARTAN POTASSIUM (BHN BAKU OBAT) COA C5455-17-096\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPTOPRIL (BHN BAKU OBAT) COA 5103-16-361\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"CAPTOPRIL (BHN BAKU OBAT) COA 5103-16-361\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GLUCOSAMINE HCL (BHN BAKU OBAT) COA XH2017100501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"GLUCOSAMINE HCL (BHN BAKU OBAT) COA XH2017100501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011H2LL02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011H2LL02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011H21L02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011H21L02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM (BHN BAKU OBAT UTK PEWARNA TABLET)COA D180H6G001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM (BHN BAKU OBAT UTK PEWARNA TABLET)COA D180H6G001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180H6C003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180H6C003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E5 PREMIUM LV (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011G9NL02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E5 PREMIUM LV (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011G9NL02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM CR (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180G33001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM CR (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180G33001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180G81031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180G81031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG170616\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG170616\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0217060072\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0217060072\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0217060064\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0217060064\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517090185,186\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517090185,186\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P7024UA000, P7S22UA000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL TX (BHN BAKU KOSMETIK) COA P7024UA000, P7S22UA000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01706014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY C 50 (BHN BAKU KOSMETIK) COA UE01706014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00496046,47\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"AMPHISOL K (BHN BAKU KOSMETIK) COA VE00496046,47\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA MCS1605151\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA MCS1605151\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708160130,131\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708160130,131\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX , 25KG PC (BHN BAKU KOSMETIK) COA MCS1605151\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL MCX , 25KG PC (BHN BAKU KOSMETIK) COA MCS1605151\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01706014,15\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY C 50 (BHN BAKU KOSMETIK) COA UE01706014,15\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11706016, 7005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11706016, 7005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT17070162\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT17070162\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01703807,810\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01703807,810\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1752065, 1752079, 1711302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"PARACETAMOL (BHN BAKU OBAT) COA 1752065, 1752079, 1711302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEFENAMIC ACID COMPACTED (BHN BAKU OBAT) COA MFAC-1707393-A\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"MEFENAMIC ACID COMPACTED (BHN BAKU OBAT) COA MFAC-1707393-A\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SIMVASTATIN (BHN BAKU OBAT) COA DK40-1710012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29322090\", \"uraian\": \"SIMVASTATIN (BHN BAKU OBAT) COA DK40-1710012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702564864\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702564864\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 57422P\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 57422P\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEROPENEM TRIHYDRATE WITH SODIUM CARBONATE STERILE (B. BAKU OBAT) COA S0820170806\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30032000\", \"uraian\": \"MEROPENEM TRIHYDRATE WITH SODIUM CARBONATE STERILE (B. BAKU OBAT) COA S0820170806\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599255\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599255\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599254\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599254\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599278\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599278\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599244\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599244\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599248\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599248\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599261\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599261\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599253\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599253\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599276\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599276\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599257\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599257\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599256\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599256\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599246\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599246\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597939\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597939\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599277\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599277\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599260\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599260\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599245\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599245\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599265\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599265\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599335\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599335\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA 1 P001062 (BHN BAKU KOSMETIK) COA 0000006989\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA 1 P001062 (BHN BAKU KOSMETIK) COA 0000006989\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA MCS1604115\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL HMS, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA MCS1604115\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20171013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20171013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND BIO SODIUM HYALURONATE POWDER (MMW) (B. BAKU KOSMETIK)COA CHP1170926\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND BIO SODIUM HYALURONATE POWDER (MMW) (B. BAKU KOSMETIK)COA CHP1170926\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-022307\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-022307\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-181207\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-181207\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK)COA NMP-L-333057\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK)COA NMP-L-333057\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-062297\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-062297\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ALWHITE 7 (BHN BAKU KOSMETIK) COA CLHW-011177\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND ALWHITE 7 (BHN BAKU KOSMETIK) COA CLHW-011177\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND APRICOT EXTRACT (BHN BAKU KOSMETIK) COA PAS-013007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND APRICOT EXTRACT (BHN BAKU KOSMETIK) COA PAS-013007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK)COA PSFAC-010347\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK)COA PSFAC-010347\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-020497,033107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-020497,033107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-052297\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-052297\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-062587\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-062587\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599820\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599820\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB RED(BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599820\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB RED(BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599820\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599822\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599822\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599823\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599823\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00617194\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00617194\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID ULTRA F.POWDER, 20KG BOX (BHN BAKU SUPLEMEN) COA TL01710783\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID ULTRA F.POWDER, 20KG BOX (BHN BAKU SUPLEMEN) COA TL01710783\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA. 8MT170656\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30032000\", \"uraian\": \"STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA. 8MT170656\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0019501,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29337900\", \"uraian\": \"ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0019501,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CUIRIDONE 5KG (BHN BAKU KOSMETIK) COA 001924,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CUIRIDONE 5KG (BHN BAKU KOSMETIK) COA 001924,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MICROCELAC 100 (BHN BAKU OBAT) COA L103151617A535, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"MICROCELAC 100 (BHN BAKU OBAT) COA L103151617A535, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP779713\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #6/SUNSET YELLOW... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP779713\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP781192X6248\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP781192X6248\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C RED #40/ALLURA RED AC AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP784989\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C RED #40/ALLURA RED AC AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP784989\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP779713\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #6/SUNSET YELLOW... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP779713\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP787026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP787026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP779311\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP779311\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMLODIPINE BESILATE BP (BHN BAKU OBAT) COA AB H 1710004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"AMLODIPINE BESILATE BP (BHN BAKU OBAT) COA AB H 1710004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/17100536\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/17100536\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CATECHINS (TEA EXTRACT) TEAVIGO (1KG), BHN BAKU MAKANAN, COA 709152\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"CATECHINS (TEA EXTRACT) TEAVIGO (1KG), BHN BAKU MAKANAN, COA 709152\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEEM LEAF LIQUID B (BHN BAKU KOSMETIK), COA.170630\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"NEEM LEAF LIQUID B (BHN BAKU KOSMETIK), COA.170630\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 171058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 171058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 171728\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 171728\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 171383\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 171383\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SWERTIANIN P (BHN BAKU KOSMETIK) COA 170729, 171891\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SWERTIANIN P (BHN BAKU KOSMETIK) COA 170729, 171891\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 170864\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 170864\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 170569\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 170569\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIRJU (BHN BAKU KOSMETI) COA 171204\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"CLAIRJU (BHN BAKU KOSMETI) COA 171204\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0130417\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0130417\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-96A-6CS (16KG) BHN BAKU KOSMETIK, COA 710929, 711930\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"KF-96A-6CS (16KG) BHN BAKU KOSMETIK, COA 710929, 711930\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) BHN BAKU KOSMETIK, COA 710185\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"KF-6038 (16KG) BHN BAKU KOSMETIK, COA 710185\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK COA B261017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK COA B261017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB231017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB231017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG301017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG301017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL A TOCOPHEROL (BHN BAKU KOSMETIK) COA UT17020023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL A TOCOPHEROL (BHN BAKU KOSMETIK) COA UT17020023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11707005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11707005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX VH (BHN BAKU KOSMETIK) COA UF17082001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"BEAUPLEX VH (BHN BAKU KOSMETIK) COA UF17082001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708160131,70045, 70046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708160131,70045, 70046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA MCS1605151\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA MCS1605151\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HS (BHN BAKU KOSMETIK) COA 0709160001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL HS (BHN BAKU KOSMETIK) COA 0709160001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01704011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE01704011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01706015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY C 50 (BHN BAKU KOSMETIK) COA UE01706015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT667466\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT667466\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT667467\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT667467\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT665884\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT665884\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND170706\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND170706\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AC019KC PHYTOVITYL C 5KG BHN BAKU KOSMETIK COA 0018132\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"AC019KC PHYTOVITYL C 5KG BHN BAKU KOSMETIK COA 0018132\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLOZAPINE (BHN BAKU OBAT) COA 720106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"CLOZAPINE (BHN BAKU OBAT) COA 720106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLOZAPINE (BHN BAKU OBAT) COA 720106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"CLOZAPINE (BHN BAKU OBAT) COA 720106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EMPILAN CIS (BAHAN BAKU KOSMETIK) COA.BLW0012900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34021390\", \"uraian\": \"EMPILAN CIS (BAHAN BAKU KOSMETIK) COA.BLW0012900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT SD, 15KGBOXALU (BHN BAKU SUPLEMEN) COA WB02170048, 0237\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT SD, 15KGBOXALU (BHN BAKU SUPLEMEN) COA WB02170048, 0237\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VISTANOL GDHR (BHN BAKU KOSMETIK) COA DIG, DJH, DKI\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"VISTANOL GDHR (BHN BAKU KOSMETIK) COA DIG, DJH, DKI\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VISTANOL NPGC (BHN BAKU KOSMETIK) COA DJI\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"VISTANOL NPGC (BHN BAKU KOSMETIK) COA DJI\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA DHC, DKD\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA DHC, DKD\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA DKD\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) COA DKD\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS W-32U (BHN BAKU KOSMETIK) COA DGC\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROMOIS W-32U (BHN BAKU KOSMETIK) COA DGC\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CILOSTAZOL USP (BHN BAKU OBAT) COA 6004CB2ARI\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29337900\", \"uraian\": \"CILOSTAZOL USP (BHN BAKU OBAT) COA 6004CB2ARI\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01704311,4344,9537\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01704311,4344,9537\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20170701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20170701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CARICILINE SB (BHN BAKU KOSMETIK)COA CAR170301-SB\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CARICILINE SB (BHN BAKU KOSMETIK)COA CAR170301-SB\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS170802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS170802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH17902-ENBIO-RQ\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH17902-ENBIO-RQ\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROMAN CHAMOMILLE PHYTELENE EG 088 (BHN BAKU KOSMETIK)COA EG088-170101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ROMAN CHAMOMILLE PHYTELENE EG 088 (BHN BAKU KOSMETIK)COA EG088-170101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIVE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA OLE161101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"OLIVE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA OLE161101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-171002-GS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-171002-GS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-171104-GS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-171104-GS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5497417\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5497417\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5497417\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5497417\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALDAVINE 5X (BHN BAKU KOSMETIK) COA 5493617\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ALDAVINE 5X (BHN BAKU KOSMETIK) COA 5493617\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B WHITE (BHN BAKU KOSMETIK) COA 829015555H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"B WHITE (BHN BAKU KOSMETIK) COA 829015555H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B WHITE (BHN BAKU KOSMETIK) COA 829015555H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"B WHITE (BHN BAKU KOSMETIK) COA 829015555H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830015655H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CAPIXYL (BHN BAKU KOSMETIK) COA 830015655H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK), COA 769015525H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CHRONOLINE (BHN BAKU KOSMETIK), COA 769015525H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANABLUE (BHN BAKU KOSMETIK), COA 5497917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LANABLUE (BHN BAKU KOSMETIK), COA 5497917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANABLUE (BHN BAKU KOSMETIK) COA 5512317\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LANABLUE (BHN BAKU KOSMETIK) COA 5512317\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5509217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK) COA 5509217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELANOSTATINE 5 BG (50PPM) (BHN BAKU KOSMETIK) COA 817045132H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"MELANOSTATINE 5 BG (50PPM) (BHN BAKU KOSMETIK) COA 817045132H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025654H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025654H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025654H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025654H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXO H(BHN BAKU KOSMETIK) COA 715025629H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"EXO H(BHN BAKU KOSMETIK) COA 715025629H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B WHITE (BHN BAKU KOSMETIK) COA 829015243H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"B WHITE (BHN BAKU KOSMETIK) COA 829015243H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830015554H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CAPIXYL (BHN BAKU KOSMETIK) COA 830015554H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785015526H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785015526H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EMULMETIK TM 100 (BHN BAKU KOSMETIK) COA 1627802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"EMULMETIK TM 100 (BHN BAKU KOSMETIK) COA 1627802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HELIOGEL TM (BHN BAKU KOSMETIK) COA 1719501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HELIOGEL TM (BHN BAKU KOSMETIK) COA 1719501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELANOSTATINE 5BG (50PPM) (BHN BAKU KOSMETIK) COA 817044833G\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"MELANOSTATINE 5BG (50PPM) (BHN BAKU KOSMETIK) COA 817044833G\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) COA 1634916\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PHYTENSO TM (BHN BAKU KOSMETIK) COA 1634916\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRO LIPO TM NEO (BHN BAKU KOSMETIK) COA 1726902\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PRO LIPO TM NEO (BHN BAKU KOSMETIK) COA 1726902\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025654H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025654H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015372H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015372H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 10005022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 10005022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CANNULA 25G PIX'L 0,5 X40 (BHN BAKU OBAT) COA 10005022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"CANNULA 25G PIX'L 0,5 X40 (BHN BAKU OBAT) COA 10005022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SKINB VITLIDO 1MLD16 (BHN BAKU OBAT) COA 15320-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE SKINB VITLIDO 1MLD16 (BHN BAKU OBAT) COA 15320-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REST SKINB VITALLGHLIDO 1MLD16 (BHN BAKU OBAT) COA 15430-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"REST SKINB VITALLGHLIDO 1MLD16 (BHN BAKU OBAT) COA 15430-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE LYFT LIDOCAINE 1 ML (BHN BAKU OBAT) COA 15468-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE LYFT LIDOCAINE 1 ML (BHN BAKU OBAT) COA 15468-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE REFYNE 1ML (BHN BAKU OBAT) COA 15100-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE REFYNE 1ML (BHN BAKU OBAT) COA 15100-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLENE KYSSE 1ML (BHN BAKU OBAT) COA 15268-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLENE KYSSE 1ML (BHN BAKU OBAT) COA 15268-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU SUPLEMEN) COA.TS00008992\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU SUPLEMEN) COA.TS00008992\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU MAKANAN) COA TA00008992\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU MAKANAN) COA TA00008992\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLOREDNISOLONE (BHN BAKU OBAT) COA 04.1064-171002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLOREDNISOLONE (BHN BAKU OBAT) COA 04.1064-171002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONIZED (BHN BAKU OBAT) COA F-04 1064-171001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONIZED (BHN BAKU OBAT) COA F-04 1064-171001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPSULAC (R) 60 (BHN BAKU OBAT) COA. L100413917A545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"CAPSULAC (R) 60 (BHN BAKU OBAT) COA. L100413917A545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103153017A535\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103153017A535\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101853917A533\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA L101853917A533\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BH08407\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BH08407\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GABAPENTIN (BHN BAKU OBAT) COA GBW1710282\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"GABAPENTIN (BHN BAKU OBAT) COA GBW1710282\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRANSCUTOL P (BHN BAKU OBAT) COA.165110\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TRANSCUTOL P (BHN BAKU OBAT) COA.165110\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 01/17GAAK\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 01/17GAAK\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU OBAT) COA 01/17GAAK,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT KIWI (BAHAN BAKU OBAT) COA 01/17GAAK,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE AM PELLETS (BAHAN BAKU OBAT) COA 17E3907\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE AM PELLETS (BAHAN BAKU OBAT) COA 17E3907\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VISTANOL GDHR (BHN BAKU KOSMETIK) COA DIG, DJH, DKI\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"VISTANOL GDHR (BHN BAKU KOSMETIK) COA DIG, DJH, DKI\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VISTANOL NPGC (BHN BAKU KOSMETIK) COA DJI\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"VISTANOL NPGC (BHN BAKU KOSMETIK) COA DJI\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA DHC, DKD\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA DHC, DKD\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA DKD\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) COA DKD\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS W-32U (BHN BAKU KOSMETIK) COA DGC\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROMOIS W-32U (BHN BAKU KOSMETIK) COA DGC\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANTOPROZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT,COA APSS17004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"PANTOPROZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT,COA APSS17004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB LIQUID STUART SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 171475299\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CULTURESWAB LIQUID STUART SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 171475299\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7171538\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7171538\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009699\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009699\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7193780,7242803\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7193780,7242803\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6228993\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6228993\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7255892\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7255892\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121602,7171820\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121602,7171820\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7143641\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7143641\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121569,7227521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121569,7227521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171538\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171538\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053919\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 19 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053919\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7110592\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7110592\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7109945\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7109945\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7018890\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7018890\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121848\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121848\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7103621,3675\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7103621,3675\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009966,7102560\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009966,7102560\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7171993\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7171993\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7116560\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7116560\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7142578\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7142578\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7177772\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7177772\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7114681\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7114681\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7251531\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7251531\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7047892\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7047892\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7095554\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7095554\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7116556\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE STERILE RODAC EMPTY 65X15MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7116556\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7109972,7193548\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7109972,7193548\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242928\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242928\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171972\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171972\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SACCHAROSE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7157502\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SACCHAROSE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7157502\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7114758,7152671\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7114758,7152671\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121863\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121863\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7005857\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7005857\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7109946\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7109946\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 170707116\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 170707116\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC /NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7213860,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ENTERIC /NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7213860,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7159723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7159723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7185935\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7185935\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EX CAMPY CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7277634\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"SACHET GASPAK EX CAMPY CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7277634\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POUCH GASPAK EZ CO2 SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7215899\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"POUCH GASPAK EZ CO2 SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7215899\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 6278558\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTOSE 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 6278558\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171538\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171538\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053919\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053919\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7109945\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7109945\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7103675\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7103675\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7095842\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7095842\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G. (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7102560\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D SORBITOL 500G. (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7102560\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171993\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171993\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7208901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7208901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7271779\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7271779\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7151674\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7151674\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7193661\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7193661\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D-MANITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 6201884\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D-MANITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 6201884\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7220797\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7220797\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7142625\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7142625\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR NOBLE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7256726\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE AGAR NOBLE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7256726\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7198993\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7198993\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121860\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121860\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CORN MEAL AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121881\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CORN MEAL AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121881\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7207682,7684\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7207682,7684\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLEEE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7143744\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLEEE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7143744\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GASPAK EZ STANDARD INCUBATIO CONTAINER (M.UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7261716010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"GASPAK EZ STANDARD INCUBATIO CONTAINER (M.UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7261716010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7235830\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7235830\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7235667\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE GN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7235667\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7198543\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7198543\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL LAURYL TRYPTOSE BROTH 2KG (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7143979\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL LAURYL TRYPTOSE BROTH 2KG (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7143979\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7135968\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7135968\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLEMICRO INOCULUM BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6342747\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLEMICRO INOCULUM BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6342747\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7009699\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7009699\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7177823\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7177823\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7153977\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7153977\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PURPLE BROTH BASE BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7163988\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PURPLE BROTH BASE BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7163988\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 7164997\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 7164997\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7193914\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7193914\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TINSDALE BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6026724\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TINSDALE BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6026724\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTONE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7143892\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTONE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7143892\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7109953\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7109953\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE WL DIFFERENTIAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7220799\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE WL DIFFERENTIAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7220799\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7206693\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7206693\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FOLIC ACID ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7277529\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE FOLIC ACID ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7277529\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7221976\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7221976\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7221983,7228753\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7221983,7228753\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060854\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060854\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7215691\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7215691\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL TINSDALE ENRICHMENT 6X15ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7110837\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL TINSDALE ENRICHMENT 6X15ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7110837\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7276698\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7276698\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANNEXIN V FITC APOP DTEC KIT I 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7303806\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANNEXIN V FITC APOP DTEC KIT I 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7303806\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7152580\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7152580\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD56 PE NCAM16.2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7235819\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD56 PE NCAM16.2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7235819\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FASTIMMUNE TNF-ALP APC 6401.1111 100 TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6357648\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"FASTIMMUNE TNF-ALP APC 6401.1111 100 TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6357648\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI BCL 2 FITC 100 50 TST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7212889\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANTI BCL 2 FITC 100 50 TST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7212889\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MS LGG1 ISOTYPE CONTROL APC X40 ASR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7262746\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"MS LGG1 ISOTYPE CONTROL APC X40 ASR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7262746\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD23 PE EBVCS 5 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7226533\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD23 PE EBVCS 5 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7226533\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD25 PE 2A3 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7293821\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD25 PE 2A3 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7293821\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HUMAN IL 2 APC 5344.111 100 TESTS(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7144744560\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HUMAN IL 2 APC 5344.111 100 TESTS(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7144744560\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD4 PERCP CY5.5 SK3 RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7159644\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD4 PERCP CY5.5 SK3 RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7159644\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FASTIMMUNE COSTIM CD28/CD49D 0.3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7157921\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"FASTIMMUNE COSTIM CD28/CD49D 0.3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7157921\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 FITC SK7 50 TESTS IVD(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7221981\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 FITC SK7 50 TESTS IVD(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7221981\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU IL4 APC MP4-25D2 100UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7005833\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU IL4 APC MP4-25D2 100UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7005833\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU IL-10 APC JES3-19F1 100UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7124679\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU IL-10 APC JES3-19F1 100UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7124679\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYTOFIX/CYTOPERM W/GOLG/PLUG KLT 250TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7012738\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CYTOFIX/CYTOPERM W/GOLG/PLUG KLT 250TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7012738\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD19 PE HIB19 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7217557\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD19 PE HIB19 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7217557\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X31MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7152580\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X31MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7152580\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7240715,7271504\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7240715,7271504\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7187918\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7187918\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL ISOVITALEX ENRICHMENT 10ML 5 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7237592\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL ISOVITALEX ENRICHMENT 10ML 5 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7237592\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU HLA-A2 FITC BB7.2 100UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7110642\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU HLA-A2 FITC BB7.2 100UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7110642\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD8 PER-CY5.5 SK1 50 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7226531,7304693\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD8 PER-CY5.5 SK1 50 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7226531,7304693\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD25 PE M-A251 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7012613\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD25 PE M-A251 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7012613\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD69 PE FN50 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171993\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD69 PE FN50 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171993\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD8 FITC HIT8A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7032886\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD8 FITC HIT8A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7032886\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU LGG FITC G18-145 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6263638\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU LGG FITC G18-145 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6263638\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU IL-17A PE N49-653 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7097563\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU IL-17A PE N49-653 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7097563\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD127 PE-CY7 HIL 7R M21 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7137618\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD127 PE-CY7 HIL 7R M21 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7137618\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7141671\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7141671\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7240707,715\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7240707,715\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6197586\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6197586\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7187918\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7187918\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7198968\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7198968\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7102829\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7102829\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD11C PE CE (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH 7254547\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD11C PE CE (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH 7254547\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7186970\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7186970\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7226996\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7226996\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7226520\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7226520\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7305643\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7305643\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7251512\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7251512\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IFN GAMMA APC RUO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7236968\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"IFN GAMMA APC RUO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7236968\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 PERCP SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7177904\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 PERCP SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7177904\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7255772\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7255772\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7174889\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7174889\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD206 FITC 19.2 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7258565\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD206 FITC 19.2 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7258565\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD209 APC DCN46 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 7201902\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD209 APC DCN46 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 7201902\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7125585\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7125585\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD64 FITC 10.1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6280735\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD64 FITC 10.1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6280735\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD40 FITC 5C3 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7132522\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD40 FITC 5C3 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7132522\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD86 FITC 2331 (FUN-1) 100TST (MEDIA PENGEMBANGAN MIKRO ORGANISME) BATCH 7132528\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD86 FITC 2331 (FUN-1) 100TST (MEDIA PENGEMBANGAN MIKRO ORGANISME) BATCH 7132528\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MS LGG1KPA LTCL FITC MOPC-21 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6301865\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"MS LGG1KPA LTCL FITC MOPC-21 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6301865\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU HLA-DR FITC L243 (G46-6) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6263631\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU HLA-DR FITC L243 (G46-6) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6263631\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LYSING BUFFER 10X CONCENTRATE 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7220684\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"LYSING BUFFER 10X CONCENTRATE 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7220684\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD163 PE GHI/61 100TST (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7160585\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD163 PE GHI/61 100TST (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7160585\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD274 PE MIH1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7096869\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD274 PE MIH1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7096869\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD11C APC B-LY6 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7124669\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD11C APC B-LY6 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7124669\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU REGULATORY TCELL CKTL 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7234824\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU REGULATORY TCELL CKTL 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7234824\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI LAMBDA FITC 1-155-2 50TST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7236555\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANTI LAMBDA FITC 1-155-2 50TST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7236555\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7200567\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7200567\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI HLA DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7159533\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANTI HLA DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7159533\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYTOFIX FIXATION BUFFER 100ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7031802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CYTOFIX FIXATION BUFFER 100ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7031802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAIN BUFFER FBS 500ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7180893\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"STAIN BUFFER FBS 500ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7180893\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD4 FITC RPA-T4 100TST(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6340599\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD4 FITC RPA-T4 100TST(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6340599\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU IL-10 PE JES3-19F1 100TST (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6238570\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU IL-10 PE JES3-19F1 100TST (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6238570\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANOCOBALAMINE VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1705232691\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANOCOBALAMINE VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1705232691\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NYMPHELINE PROV 5KG (BHN BAKU KOSMETIK) COA 0020265\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"NYMPHELINE PROV 5KG (BHN BAKU KOSMETIK) COA 0020265\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1710062,63,78,79,11004 S/D 19\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"MEFENAMIC ACID (BHN BAKU OBAT) COA MA1710062,63,78,79,11004 S/D 19\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B.I.O KEY SELENIUM VM (BHN BAKU OBAT UTK PAKAN TERNAK) COA 150917-755\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"B.I.O KEY SELENIUM VM (BHN BAKU OBAT UTK PAKAN TERNAK) COA 150917-755\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7186680\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7186680\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER DMACA INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7143639\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER DMACA INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7143639\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7235677\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7235677\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 (SAMPLES) 100 ML FL (BHN BAKU KOSMETIK) COA 1332918 ,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 (SAMPLES) 100 ML FL (BHN BAKU KOSMETIK) COA 1332918 ,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 712 100ML FL (BHN BAKU KOSMETIK) COA 1335589, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 712 100ML FL (BHN BAKU KOSMETIK) COA 1335589, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for S AND M PHENOXYETHANOL RCH 100 ML FL (BHN BAKU KOSMETIK) COA 1333316\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"S AND M PHENOXYETHANOL RCH 100 ML FL (BHN BAKU KOSMETIK) COA 1333316\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 CN 10KG KA (BHN BAKU KOSMETIK) COA 1331782,1334383,1335942\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 CN 10KG KA (BHN BAKU KOSMETIK) COA 1331782,1334383,1335942\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 100 CN 10KG KA (BHN BAKU KOSMETIK) COA 1335179\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 100 CN 10KG KA (BHN BAKU KOSMETIK) COA 1335179\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 CN 10KG KA (BHN BAKU KOSMETIK) COA 1331636,1333518, 1335594\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 CN 10KG KA (BHN BAKU KOSMETIK) COA 1331636,1333518, 1335594\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIDIN DO CN 10KG CA (BHN BAKU KOSMETIK) COA 1336925, 1338671\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIDIN DO CN 10KG CA (BHN BAKU KOSMETIK) COA 1336925, 1338671\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GROTANOL 3025 CN 10 KG KA (BHN BAKU KOSMETIK) COA 1333897\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GROTANOL 3025 CN 10 KG KA (BHN BAKU KOSMETIK) COA 1333897\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 900 CN 10 KG KA (BHN BAKU KOSMETIK) COA 1336571\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 900 CN 10 KG KA (BHN BAKU KOSMETIK) COA 1336571\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA 20171024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17023010\", \"uraian\": \"DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA 20171024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA 20171019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"11081200\", \"uraian\": \"CORN STARCH (BHN BAKU MAKANAN) COA 20171019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TECA 80160W (BHN BAKU KOSMETIK)COA 170929040256\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"TECA 80160W (BHN BAKU KOSMETIK)COA 170929040256\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 185622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 185622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOPAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA.17100531,532\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29222900\", \"uraian\": \"DOPAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA.17100531,532\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180GCR001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180GCR001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180H4I001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180H4I001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180G6P003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180G6P003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180G1B001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180G1B001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180FCT001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180FCT001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D0180G7Q031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D0180G7Q031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180FCL002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180FCL002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180G7V031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180G7V031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUMPLEMEN) COA 17277\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUMPLEMEN) COA 17277\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 16490\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 16490\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE PURIMOX COMPACTED (BHN BAKU OBAT) COA M529461, 465\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE PURIMOX COMPACTED (BHN BAKU OBAT) COA M529461, 465\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE PURIMOX POWDER (BHN BAKU OBAT) COA M483534\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE PURIMOX POWDER (BHN BAKU OBAT) COA M483534\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334492,94,95\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334492,94,95\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIVER DESSICATED POWDER (BHN BAKU OBAT) COA 5815 1123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LIVER DESSICATED POWDER (BHN BAKU OBAT) COA 5815 1123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PUROLAN PD-LO (BHN BAKU KOSMETIK) COA 01140917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PUROLAN PD-LO (BHN BAKU KOSMETIK) COA 01140917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLUOROMETHOLONE MICRONISED USP BP JP (BHN BAKU OBAT) COA 1701261241\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"FLUOROMETHOLONE MICRONISED USP BP JP (BHN BAKU OBAT) COA 1701261241\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VASELINE BLANCHE CODEX 236 FUT 175KG (BHN BAKU KOSMETIK) COA 17J26V02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"VASELINE BLANCHE CODEX 236 FUT 175KG (BHN BAKU KOSMETIK) COA 17J26V02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT TEA POWDER (TEA EXTRACT) BHN BAKU MAKANAN, COA 711191, 92\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"INSTANT TEA POWDER (TEA EXTRACT) BHN BAKU MAKANAN, COA 711191, 92\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA.LC 037-7-201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 200 (BHN BAKU OBAT) COA.LC 037-7-201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA.LC 038-7-801, LC 040-7-801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 200 (BHN BAKU OBAT) COA.LC 038-7-801, LC 040-7-801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYPROTERONE ACETATE MICRONIZED (BHN BAKU OBAT) COA NX2124M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"CYPROTERONE ACETATE MICRONIZED (BHN BAKU OBAT) COA NX2124M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIAMCINOLONE ACETONIDE MICRONIZED (BHN BAKU OBAT) COA NX2347M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"TRIAMCINOLONE ACETONIDE MICRONIZED (BHN BAKU OBAT) COA NX2347M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NW2230M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NW2230M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHISOPRINOL (BHN BAKU OBAT) COA.MTP7100404\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"METHISOPRINOL (BHN BAKU OBAT) COA.MTP7100404\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GRAY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600189\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GRAY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600189\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600190\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600190\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 25KG BOX (BHN BAKU KOSMETIK) COA 031705098,99\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL 1789, 25KG BOX (BHN BAKU KOSMETIK) COA 031705098,99\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC,20KG BAL (BHN BAKU KOSMETIK) COA OP81706022,7014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC,20KG BAL (BHN BAKU KOSMETIK) COA OP81706022,7014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01707068,61\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01707068,61\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91711063,64\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91711063,64\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517090186,200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517090186,200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01706010,15\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY C 50 (BHN BAKU KOSMETIK) COA UE01706010,15\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01706015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY C 50 (BHN BAKU KOSMETIK) COA UE01706015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70313065\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70313065\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A(BHN BAKU SUPLEMEN) COA UT17020017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A(BHN BAKU SUPLEMEN) COA UT17020017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70702397\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70702397\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91710093\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX 504010 (BHN BAKU MAKANAN) COA XW91710093\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17050746,47\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17050746,47\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT17050015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT17050015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17020017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17020017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17050745\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17050745\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX,TYPE MM81 (105PCT) (BHN BAKU MAKANAN) COA UT17050745\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX,TYPE MM81 (105PCT) (BHN BAKU MAKANAN) COA UT17050745\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70702397\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70702397\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB00517033,35\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB00517033,35\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS FUMARATE USP/EP (BHN BAKU OBAT) COA.2017/279\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"FERROUS FUMARATE USP/EP (BHN BAKU OBAT) COA.2017/279\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10495/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILYBIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10495/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYMARIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10447/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILYMARIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10447/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IVY DRY HYDR EXTR 10PCT HPLC (BAHAN BAKU SUPLEMEN) COA 09745/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"IVY DRY HYDR EXTR 10PCT HPLC (BAHAN BAKU SUPLEMEN) COA 09745/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BUTCHERBROOM DRY HYDR EX 9-11PCT (BAHAN BAKU SUPLEMEN) COA 10438/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BUTCHERBROOM DRY HYDR EX 9-11PCT (BAHAN BAKU SUPLEMEN) COA 10438/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA TRITERP (BHN BAKU SUPLEMEN) COA 32465/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA TRITERP (BHN BAKU SUPLEMEN) COA 32465/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA/PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 31730/H1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA/PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 31730/H1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 32465/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 32465/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECHINACEA ANG DRY PURIF EX (BHN BAKU SUPLEMEN) COA 32226/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ECHINACEA ANG DRY PURIF EX (BHN BAKU SUPLEMEN) COA 32226/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 32190/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 32190/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VACCINIUM MYRTILLUS DRY EX (BHN BAKU SUPLEMEN) COA 32501/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VACCINIUM MYRTILLUS DRY EX (BHN BAKU SUPLEMEN) COA 32501/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFEPIME FOR INJECTION (BHN BAKU OBAT) COA SI/CFP/00601117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30032000\", \"uraian\": \"CEFEPIME FOR INJECTION (BHN BAKU OBAT) COA SI/CFP/00601117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334502,503,505\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334502,503,505\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIOTOX (R) (BHN BAKU OBAT UTK PAKAN TERNAK) COA 131017-830\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"BIOTOX (R) (BHN BAKU OBAT UTK PAKAN TERNAK) COA 131017-830\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for E.C.O TRACE(R) ZN 25PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC11021702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"E.C.O TRACE(R) ZN 25PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC11021702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for E.C.O TRACE(R) MN 20PCT (BHN BAKU UTK PAKAN TERNAK) COA BC22011702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"E.C.O TRACE(R) MN 20PCT (BHN BAKU UTK PAKAN TERNAK) COA BC22011702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for E.C.O.TRACE(R) FE 20PCT(BHN BAKU OBAT UTK PAKAN TERNAK) COA BC17051602\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"E.C.O.TRACE(R) FE 20PCT(BHN BAKU OBAT UTK PAKAN TERNAK) COA BC17051602\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B.I.O.KEY SELENIUM VM (BHN BAKU OBAT UTK PAKAN TERNAK) COA 241017-875\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"B.I.O.KEY SELENIUM VM (BHN BAKU OBAT UTK PAKAN TERNAK) COA 241017-875\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIQUIPHOS (R) STRONG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 270917-782\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"LIQUIPHOS (R) STRONG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 270917-782\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK), COA.172031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK), COA.172031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 171728\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 171728\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIRJU (BHN BAKU KOSMETIK) COA 171895\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"CLAIRJU (BHN BAKU KOSMETIK) COA 171895\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANDARIN CLEAR (BHN BAKU KOSMETIK) COA 172038\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"MANDARIN CLEAR (BHN BAKU KOSMETIK) COA 172038\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 171548\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 171548\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20170301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20170301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT17020023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT17020023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT17020023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT17020023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT17020014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT17020014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT17050027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT17050027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01701017, UE01611108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01701017, UE01611108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT17050027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT17050027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20170301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20170301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS(BHN BAKU SUPLEMEN) COA UT17050027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS(BHN BAKU SUPLEMEN) COA UT17050027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT17050015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT17050015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17050027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17050027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE1704011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU MAKANAN) COA UE1704011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT17050015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT17050015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01705495\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01705495\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5 PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1704054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5 PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1704054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17060064\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17060064\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB00517035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB00517035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11707006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11707006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT17050063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT17050063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17030089\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17030089\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17070024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17070024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01707066\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01707066\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1704053,54\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1704053,54\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHNATE (BHN BAKU SUPLEMEN) COA TL01706703\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHNATE (BHN BAKU SUPLEMEN) COA TL01706703\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70803256\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70803256\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS ( BHN BAKU SUPLEMEN), COA UT17050030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS ( BHN BAKU SUPLEMEN), COA UT17050030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17030089\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17030089\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ70309009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ70309009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT17070162\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT17070162\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT17050063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT17050063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01612020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01612020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01611108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01611108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB00517035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB00517035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01704011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01704011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT16120008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT16120008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11707006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11707006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN), COA UQ70310071\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN), COA UQ70310071\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ70310071\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ70310071\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17060064\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17060064\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT17060064\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT17060064\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17050063,64\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17050063,64\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT17030020,21\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT17030020,21\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT17090049,50\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT17090049,50\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599902\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599902\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599885\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599885\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599884\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599884\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599913\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599913\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599880\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599880\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599820\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599820\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599881\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599881\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599893\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599893\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599883\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599883\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599892\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599892\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599907\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599907\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599879\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599879\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599882\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599882\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599908\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599908\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599914\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599914\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB00617195\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB00617195\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT SD,15KGBOXALU (BHN BAKU SUPLEMEN) COA WB08170237\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT SD,15KGBOXALU (BHN BAKU SUPLEMEN) COA WB08170237\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT,CWS/S TG (BHN BAKU SUPLEMEN) COA UT17090018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT,CWS/S TG (BHN BAKU SUPLEMEN) COA UT17090018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GENIVIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"GENIVIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17070052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17070052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT17060025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT17060025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COATED ASCORBIC ACID TYPE EC (BHN BAKU SUPLEMEN) COA TL01707080\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"COATED ASCORBIC ACID TYPE EC (BHN BAKU SUPLEMEN) COA TL01707080\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00517653\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00517653\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00617195\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00617195\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT SD, 15KGBOXALU (BHN BAKU SUPLEMEN) COA WB08170237\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT SD, 15KGBOXALU (BHN BAKU SUPLEMEN) COA WB08170237\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17090018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17090018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A AND D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT17080035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A AND D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT17080035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANOCOBALAMINE VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1705061866\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANOCOBALAMINE VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1705061866\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIDOCAINE HCL (BHN BAKU OBAT) COA 186065\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"LIDOCAINE HCL (BHN BAKU OBAT) COA 186065\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY ORANGE (BAHAN BAKU UNTUK PEWARNA TABLET) COA. GA631023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY ORANGE (BAHAN BAKU UNTUK PEWARNA TABLET) COA. GA631023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA631024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA631024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MATCHA GREEN TEA EXTRACT ( BHN BAKU KOSMETIK), COA CSP 17013 EOU\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"MATCHA GREEN TEA EXTRACT ( BHN BAKU KOSMETIK), COA CSP 17013 EOU\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599806\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599806\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600477\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600477\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISONE (BHN BAKU OBAT) COA.K03B20171101, 102,103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISONE (BHN BAKU OBAT) COA.K03B20171101, 102,103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETAMETHASONE VALERATE USP (BHN BAKU OBAT) COA.S-X21-170901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"BETAMETHASONE VALERATE USP (BHN BAKU OBAT) COA.S-X21-170901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID S 20 (BHN BAKU OBAT) COA.572000-2170118/001-028 (28)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232010\", \"uraian\": \"LIPOID S 20 (BHN BAKU OBAT) COA.572000-2170118/001-028 (28)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20171108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20171108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEVOFLOXACIN HEMIHYDRATE (FREE ALKALINE) B. BAKU OBAT, COA C008-1705602\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"LEVOFLOXACIN HEMIHYDRATE (FREE ALKALINE) B. BAKU OBAT, COA C008-1705602\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA 20171024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17023010\", \"uraian\": \"DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA 20171024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID S 67 F (BHN BAKU OBAT) COA.576200-2160029/020-024 (5)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232010\", \"uraian\": \"LIPOID S 67 F (BHN BAKU OBAT) COA.576200-2160029/020-024 (5)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA171002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA171002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGOUSTAN HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA GAM171101-B\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"MAGOUSTAN HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA GAM171101-B\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO170601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO170601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170904\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170904\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LOTUS OILY EXTRACT (BHN BAKU KOSMETIK)COA NEN171107-H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LOTUS OILY EXTRACT (BHN BAKU KOSMETIK)COA NEN171107-H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSE OILY EXTRACT (BHN BAKU KOSMETIK) COA ROS171006-H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ROSE OILY EXTRACT (BHN BAKU KOSMETIK) COA ROS171006-H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LINEN OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA LIU170905-H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LINEN OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA LIU170905-H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HORSECHESTNUT PHYTELENE EG042 (BHN BAKU KOSMETIK) COA EG042-151103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HORSECHESTNUT PHYTELENE EG042 (BHN BAKU KOSMETIK) COA EG042-151103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX VITAMIN OIL TYPE GBP (BHN BAKU MAKANAN) COA XW91711334\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX VITAMIN OIL TYPE GBP (BHN BAKU MAKANAN) COA XW91711334\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN535963\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN535963\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN535962\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN535962\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN535970\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN535970\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN535966\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN535966\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01611108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01611108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GARCINIA CAMBOGIA 60PCT(B. BAKU OBAT) COA FGC1711008 SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"GARCINIA CAMBOGIA 60PCT(B. BAKU OBAT) COA FGC1711008 SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK)COA U171201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK)COA U171201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-033107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-033107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND LICORICE EXTRACT (BHN BAKU KOSMETIK) COA GGB-022887\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND LICORICE EXTRACT (BHN BAKU KOSMETIK) COA GGB-022887\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK)COA OHA-132607\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK)COA OHA-132607\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-052297\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-052297\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 2017G1492\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 2017G1492\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSFAC-010347\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSFAC-010347\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE 1PCT SOLUTION (BHN BAKU KOSMETIK)COA HASC-391517\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND BIO-SODIUM HYALURONATE 1PCT SOLUTION (BHN BAKU KOSMETIK)COA HASC-391517\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP2170926\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP2170926\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-051277, SFP-N-071007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-051277, SFP-N-071007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND GREEN TEA SEED OIL (BHN BAKU KOSMETIK) COA CSSO-042817\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND GREEN TEA SEED OIL (BHN BAKU KOSMETIK) COA CSSO-042817\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-022017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-022017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-032007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-032007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-062587\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-062587\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ROYAL JELLY EXTRACT (BHN BAKU KOSMETIK) COA RJE-010867\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND ROYAL JELLY EXTRACT (BHN BAKU KOSMETIK) COA RJE-010867\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK) COA CPG-642867\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK) COA CPG-642867\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO170601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO170601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO171102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO171102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COESMELENE (BHN BAKU KOSMETIK)COA MAC-CO171102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CHAMOMILLA COESMELENE (BHN BAKU KOSMETIK)COA MAC-CO171102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-170905\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-170905\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG 543(BHN BAKU KOSMETIK) COA EG543-171106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG 543(BHN BAKU KOSMETIK) COA EG543-171106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-171105-GS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-171105-GS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK) COA EG138-160301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK) COA EG138-160301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LOTUS OILY EXTRACT (BHN BAKU KOSMETIK) COANEN171107-H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LOTUS OILY EXTRACT (BHN BAKU KOSMETIK) COANEN171107-H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSE OILY EXTRACT (BHN BAKU KOSMETIK) COA ROS171006-H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ROSE OILY EXTRACT (BHN BAKU KOSMETIK) COA ROS171006-H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA.1GC01CLB ZP48D 25MT\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA.1GC01CLB ZP48D 25MT\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLAISANCE P116808 (BHN BAKU KOSMETIK) COA 0000008112\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"PLAISANCE P116808 (BHN BAKU KOSMETIK) COA 0000008112\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA 1 P001062 (BHN BAKU KOSMETIK) COA.0000010552\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA 1 P001062 (BHN BAKU KOSMETIK) COA.0000010552\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM VALPROATE (BAHAN BAKU OBAT) COA.450871 (550)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29159090\", \"uraian\": \"SODIUM VALPROATE (BAHAN BAKU OBAT) COA.450871 (550)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M595575,84\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M595575,84\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS W-32 (BHN BAKU KOSMETIK) COA DFC\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROMOIS W-32 (BHN BAKU KOSMETIK) COA DFC\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA DKD\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA DKD\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA DLE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) COA DLE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK) COA.LDC 239 17\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SAVONOL 16 (BAHAN BAKU KOSMETIK) COA.LDC 239 17\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPI PX 507 (BHN BAKU MAKANAN) COA XW91711020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"SPI PX 507 (BHN BAKU MAKANAN) COA XW91711020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91711043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX 504010 (BHN BAKU MAKANAN) COA XW91711043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070-C3 (BHN BAKU MAKANAN) COA XW91711127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070-C3 (BHN BAKU MAKANAN) COA XW91711127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91711043, 42, 44\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX 504010 (BHN BAKU MAKANAN) COA XW91711043, 42, 44\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 25KG BAL (BHN BAKU MAKANAN) COA WB00817997\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT GRANULATION, 25KG BAL (BHN BAKU MAKANAN) COA WB00817997\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN) COA UT17070757,758,761\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN) COA UT17070757,758,761\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT17030089\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT17030089\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17050016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17050016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT17050012,16\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT17050012,16\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT17050029,12\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT17050029,12\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT17060036\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT17060036\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT17060036\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT17060036\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 25KG BAL(BHN BAKU SUPLEMEN) COA WB00817997\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT GRANULATION, 25KG BAL(BHN BAKU SUPLEMEN) COA WB00817997\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70702404,10\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70702404,10\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70803257\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70803257\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70702404\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70702404\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT17060036\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT17060036\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT17060036\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT17060036\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE ( BHN BAKU MAKANAN) COA UQ70803257,61\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE ( BHN BAKU MAKANAN) COA UQ70803257,61\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ70610106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ70610106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91711253\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91711253\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT17060036\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT17060036\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU MAKANAN) COA UT16120008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU MAKANAN) COA UT16120008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1704054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1704054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17030089\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17030089\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70702410\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70702410\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01704011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01704011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11707006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11707006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EPERISONE HYDROCHLORIDE SYN-TECH (BAHAN BAKU OBAT) COA.E10-17036\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"EPERISONE HYDROCHLORIDE SYN-TECH (BAHAN BAKU OBAT) COA.E10-17036\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK,COA 01/17GL4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK,COA 01/17GL4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK,COA 01/17-GL4 ,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK,COA 01/17-GL4 ,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 17EO606\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 17EO606\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 17E2501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 17E2501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CORTISONE ACETATE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1700931387\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"CORTISONE ACETATE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1700931387\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN0160117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN0160117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN1400917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN1400917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01709537\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01709537\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01710871,884\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01710871,884\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7254257\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7254257\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7222082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7222082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7254257\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7254257\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7254255\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7254255\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6320612,7121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6320612,7121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DERMATOPHYTE TEST MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7284789\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DERMATOPHYTE TEST MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7284789\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE UNIVERSAL PREENRICHMENT BROTH...(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7102708\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE UNIVERSAL PREENRICHMENT BROTH...(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7102708\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA BROTH BASE FREY 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7153943\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MYCOPLASMA BROTH BASE FREY 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7153943\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE COLUMBIA CNA AGAR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7157948\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE COLUMBIA CNA AGAR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7157948\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7234535\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7234535\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PERMEABILIZING SOLUTION 2 10X 500 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6357992\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PERMEABILIZING SOLUTION 2 10X 500 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6357992\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242704\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242704\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE CRYSTAL E ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7257856\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"TUBE CRYSTAL E ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7257856\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7191543\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7191543\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7234535\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7234535\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171538\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171538\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7250997\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7250997\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7250997\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7250997\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7103675\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7103675\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7095842\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7095842\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7171993\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7171993\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7142625\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7142625\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7205816\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7205816\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7198993\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7198993\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL BACTO AGAR 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7277945\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL BACTO AGAR 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7277945\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BORDET GENGOU AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7114770\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BORDET GENGOU AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7114770\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CELLOBIOSE 25G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7156992\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CELLOBIOSE 25G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7156992\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CHROMAGAR ORIENTATION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242742\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CHROMAGAR ORIENTATION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242742\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7143744\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7143744\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7198543\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7198543\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT EXTRACT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7094426\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MALT EXTRACT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7094426\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MARINE BROTH 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7156792\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MARINE BROTH 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7156792\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MOTILITY TEST MEDIUM BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7271845\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MOTILITY TEST MEDIUM BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7271845\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MR-VP BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7235673\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MR-VP BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7235673\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7153524\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7153524\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7102574\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7102574\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHOSPHATE BUFFER PH 7.2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121877\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PHOSPHATE BUFFER PH 7.2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121877\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7153977\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7153977\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIADIS MSRV 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7306707\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIADIS MSRV 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7306707\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD AGAR MODIFIED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7214816,727177\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SABOURAUD AGAR MODIFIED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7214816,727177\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7206693\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE XLT4 AGAR BASE 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7206693\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/ NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7289696\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ENTERIC/ NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7289696\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 170707116\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 170707116\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7254257\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7254257\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7156929\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7156929\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE L-ARABINOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121810\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE L-ARABINOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121810\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANSOPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA LP0217C028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"LANSOPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA LP0217C028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RAMIPRIL USP (BHN BAKU OBAT) COA RL/17008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"RAMIPRIL USP (BHN BAKU OBAT) COA RL/17008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE USP (BHN BAKU OBAT) COA M110395\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM CRYSTALLINE USP (BHN BAKU OBAT) COA M110395\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01707059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01707059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT17080082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT17080082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01710962\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01710962\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 1717614\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 1717614\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B WHITE (BHN BAKU KOSMETIK) COA 829015350H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"B WHITE (BHN BAKU KOSMETIK) COA 829015350H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830015574H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CAPIXYL (BHN BAKU KOSMETIK) COA 830015574H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK), COA 1727604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK), COA 1727604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELANOSTATINE 5 BG (50PPM) (BHN BAKU KOSMETIK), COA 817045132H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"MELANOSTATINE 5 BG (50PPM) (BHN BAKU KOSMETIK), COA 817045132H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025654H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025654H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5471517\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5471517\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B WHITE (BHN BAKU KOSMETIK) COA 829015350H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"B WHITE (BHN BAKU KOSMETIK) COA 829015350H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769015443H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CHRONOLINE (BHN BAKU KOSMETIK) COA 769015443H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785015713H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785015713H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECOGEL TM (BHN BAKU KOSMETIK) COA 1727302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ECOGEL TM (BHN BAKU KOSMETIK) COA 1727302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1727604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) COA 1727604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5515717\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK) COA 5515717\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015528H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015528H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXO H (BHN BAKU KOSMETIK) COA 715025820H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"EXO H (BHN BAKU KOSMETIK) COA 715025820H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HUMAN FOXP3 STAINING KIT PE 100 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HUMAN FOXP3 STAINING KIT PE 100 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7152580\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7152580\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7235889\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7235889\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7226996\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7226996\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7251512\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7251512\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 PERCP SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7299641\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 PERCP SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7299641\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7242832\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7242832\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAIN BUFFER FBS 500ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7180893\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"STAIN BUFFER FBS 500ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7180893\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD4 FITC RPA-T4 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6340599\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD4 FITC RPA-T4 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6340599\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD25 PE M-A251 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7012613\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD25 PE M-A251 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7012613\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7219674\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7219674\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD4 APC SK3 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7030773\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD4 APC SK3 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7030773\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MS LG KPA COMP BEAD SET 6ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7109904\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"MS LG KPA COMP BEAD SET 6ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7109904\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7152580\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7152580\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7271522,7289680\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7271522,7289680\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7263772,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7263772,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6197586\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6197586\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I AND VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7187918\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I AND VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7187918\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7102829\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7102829\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6307974\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6307974\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7271856\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7271856\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7214775,7256541\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7214775,7256541\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7102829\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7102829\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7263732\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7263732\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE PENASE CONCENTRATE 10X20MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7284808\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"TUBE PENASE CONCENTRATE 10X20MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7284808\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD22 FITC S-HCL-1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7243688\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD22 FITC S-HCL-1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7243688\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7276698\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD19 PE SJ25C1 50 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7276698\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7251512\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7251512\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 PERCP SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7299641\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 PERCP SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7299641\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7200567\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7200567\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LYSING BUFFER 10X CONCENTRATE 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7297866\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"LYSING BUFFER 10X CONCENTRATE 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7297866\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FASTIMMUNE CD69/CD3 PERCP/PE 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7023965\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"FASTIMMUNE CD69/CD3 PERCP/PE 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7023965\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FASTIMMUNE IFN GAMMA/IL 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7278807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"FASTIMMUNE IFN GAMMA/IL 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7278807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7220771\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7220771\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL NOVOBIOCIN SUPPLEMENT 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7201793\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL NOVOBIOCIN SUPPLEMENT 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7201793\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7263786\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7263786\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7263786\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7263786\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-XYLOSE CRYSTALLINE (B. BAKU KOSMETIK) COA B161024130 SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"D-XYLOSE CRYSTALLINE (B. BAKU KOSMETIK) COA B161024130 SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600166\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600166\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600172\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600172\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599332\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599332\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600168\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600168\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600176\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600176\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600164\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600164\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600163\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600163\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600170\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600170\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600167\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600167\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600160\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600160\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599047\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599047\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600175\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600175\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599806\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599806\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600177\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600177\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600169\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600169\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600162\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600162\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-96A-6CS (BHN BAKU KOSMETIK) , COA 711933\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"KF-96A-6CS (BHN BAKU KOSMETIK) , COA 711933\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6017 (BHN BAKU KOSMETIK) COA 711041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"KF-6017 (BHN BAKU KOSMETIK) COA 711041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-710 (BHN BAKU KOSMETIK) COA 710058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"KSG-710 (BHN BAKU KOSMETIK) COA 710058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-210 (BHN BAKU KOSMETIK) COA 710058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"KSG-210 (BHN BAKU KOSMETIK) COA 710058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GARLIC EXTRACT 1PCT ALLICIN (BHN BAKU OBAT) COA BNPGE170910\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"GARLIC EXTRACT 1PCT ALLICIN (BHN BAKU OBAT) COA BNPGE170910\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA 20171127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17023010\", \"uraian\": \"DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA 20171127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA 20171205\""}, {"role": "assistant", "content": "{\"hs_code\" : \"11081200\", \"uraian\": \"CORN STARCH (BHN BAKU MAKANAN) COA 20171205\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20171203\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20171203\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINC PICOLINATE BAHAN BAKU OBAT, COA 17055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333910\", \"uraian\": \"ZINC PICOLINATE BAHAN BAKU OBAT, COA 17055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0217060072\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0217060072\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0317050799,800,801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0317050799,800,801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL,10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0015511\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL,10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0015511\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ70413105\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ70413105\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01708070\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01708070\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC,25KG BOX (BHN BAKU KOSMETIK) COA 0000169583 ,584,993,994\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC,25KG BOX (BHN BAKU KOSMETIK) COA 0000169583 ,584,993,994\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 2OOKG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517100200,228\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL MCX, 2OOKG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517100200,228\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01708070\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01708070\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA.71112\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA.71112\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA.70708\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA.70708\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX C TM AF (BHN BAKU KOSMETIK) COA 71025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SUPEROX C TM AF (BHN BAKU KOSMETIK) COA 71025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 70708\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 70708\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX C TM AF (BHN BAKU KOSMETIK) COA 71025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SUPEROX C TM AF (BHN BAKU KOSMETIK) COA 71025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAZMAN PEPPER TM AF ( BHN BAKU KOSMETIK) COA 71112\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"TAZMAN PEPPER TM AF ( BHN BAKU KOSMETIK) COA 71112\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REFINED TRACED SHEA OLEIN BHN BAKU KOSMETIK COA 0000019916\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"REFINED TRACED SHEA OLEIN BHN BAKU KOSMETIK COA 0000019916\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLOWLAC (R) 90 (BHN BAKU OBAT) COA L1015328\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"FLOWLAC (R) 90 (BHN BAKU OBAT) COA L1015328\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ISOSORBIDE DINITRATE MIXTURE 25PCT (BHN BAKU OBAT) COA 1715496\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"ISOSORBIDE DINITRATE MIXTURE 25PCT (BHN BAKU OBAT) COA 1715496\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRAZINAMIDE USP (BHN BAKU OBAT) COA PZ 107 J 17,PZ 108 J 17...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"PYRAZINAMIDE USP (BHN BAKU OBAT) COA PZ 107 J 17,PZ 108 J 17...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.17100622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29391900\", \"uraian\": \"PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.17100622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B2 UNIVERSAL FINE POWDER, 5KG BAG ALU (BHN BAKU MAKANAN) COA UQ61010232\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"B2 UNIVERSAL FINE POWDER, 5KG BAG ALU (BHN BAKU MAKANAN) COA UQ61010232\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM 0325 DRIED AL HYD GEL USP(BHN BAKU OBAT) COA.101758003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"BARCROFT TM 0325 DRIED AL HYD GEL USP(BHN BAKU OBAT) COA.101758003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 10005022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 10005022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CANNULA 25G PIX'L 0,5 X40 (BHN BAKU OBAT) COA 10005023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"CANNULA 25G PIX'L 0,5 X40 (BHN BAKU OBAT) COA 10005023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SKINB VITLIDO 1MLD16 (BHN BAKU OBAT) COA 15320-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE SKINB VITLIDO 1MLD16 (BHN BAKU OBAT) COA 15320-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REST SKINB VITALLGHLIDO 1MLD16 (BHN BAKU OBAT) COA 15526-2, 15615-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"REST SKINB VITALLGHLIDO 1MLD16 (BHN BAKU OBAT) COA 15526-2, 15615-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE LYFT LIDOCAINE 1 ML (BHN BAKU OBAT) COA 15618-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE LYFT LIDOCAINE 1 ML (BHN BAKU OBAT) COA 15618-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SUBQ 2ML (BHN BAKU OBAT) COA 10130130/310117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE SUBQ 2ML (BHN BAKU OBAT) COA 10130130/310117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE LIDOCAINE 1ML D16 (BHN BAKU OBAT) COA 15316-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE LIDOCAINE 1ML D16 (BHN BAKU OBAT) COA 15316-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE VOLYME 1ML (BHN BAKU OBAT) COA 15202-1, 15370-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE VOLYME 1ML (BHN BAKU OBAT) COA 15202-1, 15370-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE REFYNE 1ML (BHN BAKU OBAT) COA 15022-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE REFYNE 1ML (BHN BAKU OBAT) COA 15022-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE DEFYNE 1ML (BHN BAKU OBAT) COA 15022-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE DEFYNE 1ML (BHN BAKU OBAT) COA 15022-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE KYSSE 1ML (BHN BAKU OBAT) COA 15268-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE KYSSE 1ML (BHN BAKU OBAT) COA 15268-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA Q700600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA Q700600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA P-61\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA P-61\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100 (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180G3O3A,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100 (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180G3O3A,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PUROLAN PD-LO (BHN BAKU KOSMETIK) COA 01120917, 01130917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PUROLAN PD-LO (BHN BAKU KOSMETIK) COA 01120917, 01130917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DES LORATADINE PH.EUR (BHN BAKU OBAT) COA DLRD/1709003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"DES LORATADINE PH.EUR (BHN BAKU OBAT) COA DLRD/1709003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WHITE WILLOW BARK 50/20PCT BHN BAKU KOSMETIK, COA 20161014-610\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"WHITE WILLOW BARK 50/20PCT BHN BAKU KOSMETIK, COA 20161014-610\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0019501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29337900\", \"uraian\": \"ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0019501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK COA B081117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK COA B081117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB181117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB181117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702605740\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702605740\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NOREPINEPHRINE BITARTRATE (BHN BAKU OBAT) COA 400104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29379010\", \"uraian\": \"NOREPINEPHRINE BITARTRATE (BHN BAKU OBAT) COA 400104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7292695\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7292695\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC,25KG BOX (BHN BAKU KOSMETIK) COA 0000169995,996,997,593,594\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC,25KG BOX (BHN BAKU KOSMETIK) COA 0000169995,996,997,593,594\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC,25KG BOX (BHN BAKU KOSMETIK) COA 0000169594,595\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC,25KG BOX (BHN BAKU KOSMETIK) COA 0000169594,595\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517110228,229\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517110228,229\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA TP17123099, TP17123100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA TP17123099, TP17123100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-2191217, S-2201217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334910\", \"uraian\": \"DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-2191217, S-2201217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN SODIUM STERILE (BHN BAKU OBAT) COA 25M50200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN SODIUM STERILE (BHN BAKU OBAT) COA 25M50200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN SODIUM STERILE (BHN BAKU OBAT) COA 25M50200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN SODIUM STERILE (BHN BAKU OBAT) COA 25M50200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA.LC 038-7-801, LC 040-7-801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 200 (BHN BAKU OBAT) COA.LC 038-7-801, LC 040-7-801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-GLUTAMIC ACID ( BHN BAKU OBAT), COA 1000035737/170725\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224290\", \"uraian\": \"L-GLUTAMIC ACID ( BHN BAKU OBAT), COA 1000035737/170725\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYDROCORTISONE ACETATE EP7/USP38 (BHN BAKU OBAT) COA.NEHAC170716\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"HYDROCORTISONE ACETATE EP7/USP38 (BHN BAKU OBAT) COA.NEHAC170716\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISOLONE BP2010/USP38 (BHN BAKU OBAT) COA.NPL171113\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISOLONE BP2010/USP38 (BHN BAKU OBAT) COA.NPL171113\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLONIDINE HCL (BHN BAKU OBAT) COA 180839\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"CLONIDINE HCL (BHN BAKU OBAT) COA 180839\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA.MLAH076121718\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29341000\", \"uraian\": \"MELOXICAM BP (BHN BAKU OBAT) COA.MLAH076121718\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIDOCAINE BASE (BHN BAKU OBAT) COA 186034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"LIDOCAINE BASE (BHN BAKU OBAT) COA 186034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOPROFEN SALE DI LISINA (BHN BAKU OBAT) 183578\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29183000\", \"uraian\": \"KETOPROFEN SALE DI LISINA (BHN BAKU OBAT) 183578\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE (BHN BAKU OBAT) COA X5-171113, 1114\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE (BHN BAKU OBAT) COA X5-171113, 1114\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0021413\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0021413\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AC091KF FUCOGEL 1.5P 25 KG (BHN BAKU KOSMETIK) COA 0021607\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"AC091KF FUCOGEL 1.5P 25 KG (BHN BAKU KOSMETIK) COA 0021607\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOXYCYCLINE MONOHYDRATE(BHN BAKU OBAT) COA DX171204001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29413000\", \"uraian\": \"DOXYCYCLINE MONOHYDRATE(BHN BAKU OBAT) COA DX171204001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PERMETHRIN PHARMA GRADE BHN BAKU OBAT COA PE0022-S77\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29163990\", \"uraian\": \"PERMETHRIN PHARMA GRADE BHN BAKU OBAT COA PE0022-S77\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PERMETHRIN PHARMA GRADE BHN BAKU OBAT COA 174046008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29163990\", \"uraian\": \"PERMETHRIN PHARMA GRADE BHN BAKU OBAT COA 174046008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 INF OIL, 4,5KG PJUG (BHN BAKU SUPLEMEN) COA.TS00009237\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 INF OIL, 4,5KG PJUG (BHN BAKU SUPLEMEN) COA.TS00009237\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT668932\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT668932\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT668933\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT668933\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT667327\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT667327\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT668893\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT668893\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA 667974\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA 667974\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIROXICAM (BHN BAKU OBAT) COA PRX2017009M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"PIROXICAM (BHN BAKU OBAT) COA PRX2017009M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-CARNITINE FUMARATE (BHN BAKU OBAT) COA 10100320171106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29239000\", \"uraian\": \"L-CARNITINE FUMARATE (BHN BAKU OBAT) COA 10100320171106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B339924,26,27,34\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B339924,26,27,34\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OMEPRAZOLE PELLETS 8,5 PCT (BHN BAKU OBAT) COA OP0217C082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30034100\", \"uraian\": \"OMEPRAZOLE PELLETS 8,5 PCT (BHN BAKU OBAT) COA OP0217C082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELOXICAM BP/EP (BHN BAKU OBAT) COA HMXCPL009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29341000\", \"uraian\": \"MELOXICAM BP/EP (BHN BAKU OBAT) COA HMXCPL009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG170908\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG170908\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180G7Q031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180G7Q031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180GA8031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180GA8031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180G81031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180G81031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E15 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011H3LL01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E15 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011H3LL01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180H81003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180H81003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D0180GCK001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D0180GCK001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180GCL001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180GCL001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E5 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D011H37L01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E5 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D011H37L01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM CR (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180G33001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM CR (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180G33001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180GCR001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180GCR001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NONIVAMIDE (SYNTHETIC CAPSAICIN)BHN BAKU KOSMETIK, COA.20171016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"NONIVAMIDE (SYNTHETIC CAPSAICIN)BHN BAKU KOSMETIK, COA.20171016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01709537\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01709537\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG 3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT17090050\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG 3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT17090050\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20170701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20170701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT17080013,14\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT17080013,14\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-PANTHENOL 50L (BHN BAKU KOSMETIK) COA TL01709646\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL-PANTHENOL 50L (BHN BAKU KOSMETIK) COA TL01709646\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01707812\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01707812\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLOPIDOGREL BISULPHATE USP 39 FORM II (BHN BAKU OBAT) COA CLOPI/17060108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"CLOPIDOGREL BISULPHATE USP 39 FORM II (BHN BAKU OBAT) COA CLOPI/17060108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453012184\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453012184\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANSOPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA LP0217C030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"LANSOPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA LP0217C030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121708247\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121708247\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1711020 S/D 31, 89 S/D 94, 97 S/D 99\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"MEFENAMIC ACID (BHN BAKU OBAT) COA MA1711020 S/D 31, 89 S/D 94, 97 S/D 99\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE BP (BHN BAKU OBAT) COA.32581217,32591217...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29351000\", \"uraian\": \"SULPHAMETHOXAZOLE BP (BHN BAKU OBAT) COA.32581217,32591217...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RANITIDINE HCL (BHN BAKU OBAT) COA RH/10 2017 1638, 1639, 1640, 1641\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29321900\", \"uraian\": \"RANITIDINE HCL (BHN BAKU OBAT) COA RH/10 2017 1638, 1639, 1640, 1641\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NICLOSAMIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 20171124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"NICLOSAMIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 20171124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEOMYCIN SULPHATE USP (BHN BAKU OBAT) COA 201711020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NEOMYCIN SULPHATE USP (BHN BAKU OBAT) COA 201711020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYL SULFONYL METHANE USP (BHN BAKU OBAT) COA 20171120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"METHYL SULFONYL METHANE USP (BHN BAKU OBAT) COA 20171120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LINCOMYCIN HCL EP (BHN BAKU OBAT) COA 1711023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"LINCOMYCIN HCL EP (BHN BAKU OBAT) COA 1711023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MICONAZOLE NITRATE (BHN BAKU OBAT) COA 20171002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"MICONAZOLE NITRATE (BHN BAKU OBAT) COA 20171002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INOSITOL (BHN BAKU OBAT) COA 201710137\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"INOSITOL (BHN BAKU OBAT) COA 201710137\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IRBESARTAN (BHN BAKU OBAT) COA C5409-17-044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"IRBESARTAN (BHN BAKU OBAT) COA C5409-17-044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYLOSIN TARTRATE (BHN BAKU OBAT) COA J201710342\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"TYLOSIN TARTRATE (BHN BAKU OBAT) COA J201710342\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OXYTETRACYCLINE DIHYDRATE INJECTABLE GRADE BP/EP(B BAKU OBAT UTK PAKAN TERNAK)COA ZT171109,1150\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29413000\", \"uraian\": \"OXYTETRACYCLINE DIHYDRATE INJECTABLE GRADE BP/EP(B BAKU OBAT UTK PAKAN TERNAK)COA ZT171109,1150\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OXYTETRACYCLINE HYDROCHLORIDE (BHN BAKU OBAT UTK PAKAN TERNAK)COA 17121464, 65, 66\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29413000\", \"uraian\": \"OXYTETRACYCLINE HYDROCHLORIDE (BHN BAKU OBAT UTK PAKAN TERNAK)COA 17121464, 65, 66\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NICLOSAMIDE (BHN BAKU OBAT UTK PAKAN TERNAK COA 29171124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"NICLOSAMIDE (BHN BAKU OBAT UTK PAKAN TERNAK COA 29171124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COLISTIN (BHN BAKU OBAT UTK PAKAN TERNAK) COA KB-CS-1707016,17,18,20\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"COLISTIN (BHN BAKU OBAT UTK PAKAN TERNAK) COA KB-CS-1707016,17,18,20\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYL SULFONYL METHANE USP (BHN BAKU OBAT) COA 20171108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"METHYL SULFONYL METHANE USP (BHN BAKU OBAT) COA 20171108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20171108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20171108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FIBRE DRUM (DRUM KOSONG) PRICE AND AMOUNT ARE FOR CUSTOM ONLY\""}, {"role": "assistant", "content": "{\"hs_code\" : \"48192000\", \"uraian\": \"FIBRE DRUM (DRUM KOSONG) PRICE AND AMOUNT ARE FOR CUSTOM ONLY\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ADRENALINE TARTRATE EPINEPHRINE BITARTRATE (B.BAKU OBAT) COA 060108 ,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29379020\", \"uraian\": \"ADRENALINE TARTRATE EPINEPHRINE BITARTRATE (B.BAKU OBAT) COA 060108 ,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW91711443\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 C (BHN BAKU MAKANAN) COA XW91711443\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 103047-D (BHN BAKU MAKANAN) COA XW91711442\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 103047-D (BHN BAKU MAKANAN) COA XW91711442\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT17050034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT17050034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT17050039,41,60048\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT17050039,41,60048\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91711445\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91711445\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17080048\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17080048\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17080053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17080053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX TRS2 WITHOUT K1 (BHN BAKU MAKANAN) COA XW91712012,13\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX TRS2 WITHOUT K1 (BHN BAKU MAKANAN) COA XW91712012,13\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DWI BI (BHN BAKU MAKANAN) COA XW91711474\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"DWI BI (BHN BAKU MAKANAN) COA XW91711474\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17090164\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17090164\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17090164\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17090164\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17070223\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17070223\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17070223\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17070223\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI17100009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI17100009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI1700009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI1700009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17050034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17050034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17050034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17050034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20170303,305\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20170303,305\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT17070066\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT17070066\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17070066\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17070066\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01706015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY C 50 (BHN BAKU KOSMETIK) COA UE01706015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00501894,95\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"AMPHISOL K (BHN BAKU KOSMETIK) COA VE00501894,95\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT17060749\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT17060749\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) P7S22UA000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL TX (BHN BAKU KOSMETIK) P7S22UA000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HS (BHN BAKU KOSMETIK) COA 0709160036\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL HS (BHN BAKU KOSMETIK) COA 0709160036\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX VH (BHN BAKU KOSMETIK) COA UF17082002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"BEAUPLEX VH (BHN BAKU KOSMETIK) COA UF17082002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) TL01708070\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) TL01708070\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL ( BHN BAKU KOSMETIK) COA TL01703810\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL ( BHN BAKU KOSMETIK) COA TL01703810\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX ,25KG PC (BHN BAKU KOSMETIK) COA MCS16051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL MCX ,25KG PC (BHN BAKU KOSMETIK) COA MCS16051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HS (BHN BAKU KOSMETIK) COA 0709160036\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL HS (BHN BAKU KOSMETIK) COA 0709160036\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OPI1708009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU KOSMETIK) COA OPI1708009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT17060048\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT17060048\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OPI1708009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU KOSMETIK) COA OPI1708009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01708070\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01708070\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001461085\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL SLX (BHN BAKU KOSMETIK) COA 0001461085\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01706015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY C 50 (BHN BAKU KOSMETIK) COA UE01706015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01704011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE01704011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0015511\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0015511\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA MCS1607004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA MCS1607004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY C 50KG BALUS (BHN BAKU KOSMETIK) COA UT17060074\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY C 50KG BALUS (BHN BAKU KOSMETIK) COA UT17060074\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANOLINE ANHYDROUS (BHN BAKU KOSMETIK) COA 4504\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LANOLINE ANHYDROUS (BHN BAKU KOSMETIK) COA 4504\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600959\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600959\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600985\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600985\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600990\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600990\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595902\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595902\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600965\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600965\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600965\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600965\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600965\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600965\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600963\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600963\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY QX ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600961\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY QX ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600961\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600988\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600988\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600977\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600977\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600511\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600511\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600960\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600960\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600962\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600962\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600982\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600982\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600964\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600964\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600979\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600979\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600987\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600987\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600973\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600973\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600972\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600972\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600958\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600958\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600983\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600983\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600975\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600975\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600984\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600984\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600989\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600989\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600978\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600978\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600971\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600971\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600975\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600975\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600976\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600976\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600970\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600970\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600974\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600974\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600981\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600981\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT17060048\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT17060048\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11708009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11708009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX VH (BHN BAKU KOSMETIK) COA UF17082002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"BEAUPLEX VH (BHN BAKU KOSMETIK) COA UF17082002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001461085\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL SLX (BHN BAKU KOSMETIK) COA 0001461085\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC,25KG BOX (BHN BAKU KOSMETIK) COA OP81707025,26\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC,25KG BOX (BHN BAKU KOSMETIK) COA OP81707025,26\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT17090164\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT17090164\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01703810\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01703810\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0317101367,435,537...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0317101367,435,537...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 ,25KG PC (BHN BAKU KOSMETIK) COA MCS1602029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL 340 ,25KG PC (BHN BAKU KOSMETIK) COA MCS1602029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91712053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91712053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708170046,47,48\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708170046,47,48\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708170048,49\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708170048,49\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01703810\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01703810\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT17030080\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT17030080\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0317101542\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0317101542\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REFINED TRACED SHEA OLEIN (BHN BAKU KOSMETIK) COA 0000020039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"REFINED TRACED SHEA OLEIN (BHN BAKU KOSMETIK) COA 0000020039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5525317\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK) COA 5525317\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOXYL TM (BHN BAKU KOSMETIK) COA Q0316501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"RIBOXYL TM (BHN BAKU KOSMETIK) COA Q0316501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015528H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015528H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALDAVINE 5X (BHN BAKU KOSMETIK) COA 5504917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ALDAVINE 5X (BHN BAKU KOSMETIK) COA 5504917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HELIOGEL TM (BHN BAKU KOSMETIK) COA 1728401\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HELIOGEL TM (BHN BAKU KOSMETIK) COA 1728401\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5471517\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5471517\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK), COA 1717614\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"AMISOL TRIO TM (BHN BAKU KOSMETIK), COA 1717614\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK), COA 1634914\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"AMISOL TRIO TM (BHN BAKU KOSMETIK), COA 1634914\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830015716H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CAPIXYL (BHN BAKU KOSMETIK) COA 830015716H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830015775H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CAPIXYL (BHN BAKU KOSMETIK) COA 830015775H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CS 5C 5PCTCLEAR (BHN BAKU KOSMETIK) COA 785015527H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CS 5C 5PCTCLEAR (BHN BAKU KOSMETIK) COA 785015527H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXO H (BHN BAKU KOSMETIK) COA 715025820H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"EXO H (BHN BAKU KOSMETIK) COA 715025820H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HELIOGEL TM (BHN BAKU KOSMETIK) COA 1728401\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HELIOGEL TM (BHN BAKU KOSMETIK) COA 1728401\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANABLUE (BHN BAKU KOSMETIK) COA 5497917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LANABLUE (BHN BAKU KOSMETIK) COA 5497917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1727604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) COA 1727604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL (BHN BAKU KOSMETIK) COA 1727802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LECIGEL (BHN BAKU KOSMETIK) COA 1727802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5525317\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK) COA 5525317\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015372H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015372H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015909H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015909H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015528H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015528H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROGELINE (BHN BAKU KOSMETIK) COA 820055303H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROGELINE (BHN BAKU KOSMETIK) COA 820055303H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025654H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025654H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025824H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025824H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025654H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025654H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830015716H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CAPIXYL (BHN BAKU KOSMETIK) COA 830015716H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769015443H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CHRONOLINE (BHN BAKU KOSMETIK) COA 769015443H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B.I.O KEY SELENIUM VM (BHN BAKU OBAT UTK PAKAN TERNAK) COA 150917-755\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"B.I.O KEY SELENIUM VM (BHN BAKU OBAT UTK PAKAN TERNAK) COA 150917-755\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE 99PCT TG (BHN BAKU SUPLEMEN) COA WB01117423\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE 99PCT TG (BHN BAKU SUPLEMEN) COA WB01117423\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE 99PCT TG (BHN BAKU SUPLEMEN) COA WB01117424\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE 99PCT TG (BHN BAKU SUPLEMEN) COA WB01117424\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT17060025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT17060025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17100025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17100025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17110017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"REDIVIVO (R) LYCOPENE 10PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17110017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 1PCT SD (BHN BAKU SUPLEMEN) COA UT17090016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 1PCT SD (BHN BAKU SUPLEMEN) COA UT17090016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE 99PCT TG (BHN BAKU SUPLEMEN) COA WB01117424\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE 99PCT TG (BHN BAKU SUPLEMEN) COA WB01117424\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA WB01117424\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL HMS (BHN BAKU KOSMETIK) COA WB01117424\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GARCINIA CAMBOGIA 60PCT(B. BAKU OBAT) COA FGC1711008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"GARCINIA CAMBOGIA 60PCT(B. BAKU OBAT) COA FGC1711008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIAMCINOLONE ACETONIDE MICRONIZED (BHN BAKU OBAT) COA NX2475M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"TRIAMCINOLONE ACETONIDE MICRONIZED (BHN BAKU OBAT) COA NX2475M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NX2230M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NX2230M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 172071\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 172071\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 172434\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 172434\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 172020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 172020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAKURA EXTRACT (BHN BAKU KOSMETIK) COA 171058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SAKURA EXTRACT (BHN BAKU KOSMETIK) COA 171058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OUBAKU LIQUID B (BHN BAKU KOSMETIK) COA 172296\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"OUBAKU LIQUID B (BHN BAKU KOSMETIK) COA 172296\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETI) COA 171720\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNEBUSTERS (BHN BAKU KOSMETI) COA 171720\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA.17100775\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29395900\", \"uraian\": \"DIMENHYDRINATE (BHN BAKU OBAT) COA.17100775\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND PF SC GLUCAN (BHN BAKU KOSMETIK)COA CPG-10-12627\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND PF SC GLUCAN (BHN BAKU KOSMETIK)COA CPG-10-12627\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-011177\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-011177\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK) COA U171226\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK) COA U171226\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK)COA MCP-N-042507\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK)COA MCP-N-042507\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CUCUMBER EXTRACT (BHN BAKU KOSMETIK) COA CUPD-042517\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND CUCUMBER EXTRACT (BHN BAKU KOSMETIK) COA CUPD-042517\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-020497\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-020497\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (B.BAKU KOSMETIK) COA HMVBD-052297, 062017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND WITCH HAZEL EXTRACT PF (B.BAKU KOSMETIK) COA HMVBD-052297, 062017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK)COA ARP-1542627\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK)COA ARP-1542627\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-211227\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-211227\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 071817\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 071817\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 87-28-5 SALICYLIC ACID ETHYLENE GLYCOL ESTER/GLYCOL SALICYLATE (B.BAKU KOSMETIK)COA.DE171213\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"87-28-5 SALICYLIC ACID ETHYLENE GLYCOL ESTER/GLYCOL SALICYLATE (B.BAKU KOSMETIK)COA.DE171213\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SEBUSTOP UP 5KG (BHN BAKU KOSMETIK) COA 0022006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SEBUSTOP UP 5KG (BHN BAKU KOSMETIK) COA 0022006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NYMPHELINE PROV 5KG (BHN BAKU KOSMETIK) COA 0020265\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"NYMPHELINE PROV 5KG (BHN BAKU KOSMETIK) COA 0020265\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NYMPHELINE PROV 5KG (BHN BAKU KOSMETIK) COA 0022184\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"NYMPHELINE PROV 5KG (BHN BAKU KOSMETIK) COA 0022184\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH171204-ENBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH171204-ENBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LINEN OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA LIU170905-H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LINEN OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA LIU170905-H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COESMELENE (BHN BAKU KOSMETIK)COA MAC-CO171102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CHAMOMILLA COESMELENE (BHN BAKU KOSMETIK)COA MAC-CO171102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-171105-GS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-171105-GS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-171001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-171001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-171106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-171106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEPERMINT ORGANIC DISTILLATE 1;5 SB (BHN BAKU KOSMETIK) COA MEPD170701-BIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PEPERMINT ORGANIC DISTILLATE 1;5 SB (BHN BAKU KOSMETIK) COA MEPD170701-BIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER BHYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA171002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SUNFLOWER FLOWER BHYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA171002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT(BHN BAKU KOSMETIK) COA HEA171002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT(BHN BAKU KOSMETIK) COA HEA171002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA171002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA171002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 1712EF4811\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"L-ARGININE LO (BHN BAKU KOSMETIK),COA 1712EF4811\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 58686P\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 58686P\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP779485,AY2516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #6/SUNSET YELLOW... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP779485,AY2516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP787026, AY1537\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP787026, AY1537\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP789485,AY2516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #6/SUNSET YELLOW... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP789485,AY2516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP787036,AY1870\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"D AND C YELLOW #10 AL 15PCT-20PCT... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP787036,AY1870\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP787036,AY1870\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP787036,AY1870\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C RED #40/ALLURA RED AC AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP785006,AY0482\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C RED #40/ALLURA RED AC AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP785006,AY0482\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP787026, AY1537\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP787026, AY1537\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C #40/ALLURA RED AC AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP785006,AY0482\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C #40/ALLURA RED AC AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP785006,AY0482\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C BLUE #1/BRILLIANT BLUE...( BHN BAKU OBAT UTK PEWARNA TABLET) COA WP776167,AX5379\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C BLUE #1/BRILLIANT BLUE...( BHN BAKU OBAT UTK PEWARNA TABLET) COA WP776167,AX5379\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM DAB /EP 7.0 (BHN BAKU OBAT) COA 17111591,592,595, 628\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331100\", \"uraian\": \"METAMIZOLE SODIUM DAB /EP 7.0 (BHN BAKU OBAT) COA 17111591,592,595, 628\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRISODIUM CITRATE DIHYDRATE FINE GRANULAR (BHN BAKU MAKANAN), COA UJ746\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"TRISODIUM CITRATE DIHYDRATE FINE GRANULAR (BHN BAKU MAKANAN), COA UJ746\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHOLINE L-BITARTRATE (BAHAN BAKU MAKANAN) COA.3013648\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29231000\", \"uraian\": \"CHOLINE L-BITARTRATE (BAHAN BAKU MAKANAN) COA.3013648\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROVIMIX A 1000,20KGBAL (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT17080779,780\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"ROVIMIX A 1000,20KGBAL (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT17080779,780\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RONOZYME ME(R) HIPHOS GT, 20KG BAGDK (BHN BAKU OBAT UTK PAKAN TERNAK) COA HK921261\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29369000\", \"uraian\": \"RONOZYME ME(R) HIPHOS GT, 20KG BAGDK (BHN BAKU OBAT UTK PAKAN TERNAK) COA HK921261\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROVIMIX D3-500 (BHN BAKU OBAT UTK PAKAN TERNAK) COA UE01701019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROVIMIX D3-500 (BHN BAKU OBAT UTK PAKAN TERNAK) COA UE01701019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITASMOOTH (R) 041 ( BHN BAKU OBAT) COA 121708193\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28365010\", \"uraian\": \"VITASMOOTH (R) 041 ( BHN BAKU OBAT) COA 121708193\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE VOLYME 1 ML (BHN BAKU OBAT) COA 15370-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE VOLYME 1 ML (BHN BAKU OBAT) COA 15370-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE REFYNE 1 ML (BHN BAKU OBAT) COA 15100-1,15521-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE REFYNE 1 ML (BHN BAKU OBAT) COA 15100-1,15521-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE DEFYNE 1 ML (BHN BAKU OBAT) COA 15022-1, 15613-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE DEFYNE 1 ML (BHN BAKU OBAT) COA 15022-1, 15613-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE KYSSE 1 ML (BHN BAKU OBAT) COA 15268-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE KYSSE 1 ML (BHN BAKU OBAT) COA 15268-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CANNULA 23G PIXL 0,6X50 (BHN BAKU OBAT) COA 017.588, 017.572\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"CANNULA 23G PIXL 0,6X50 (BHN BAKU OBAT) COA 017.588, 017.572\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CANNULA 25G PIXL 0,5X40 (BHN BAKU OBAT) COA 017.553\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"CANNULA 25G PIXL 0,5X40 (BHN BAKU OBAT) COA 017.553\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SUBQ 2 ML D16 (BHN BAKU OBAT) COA 15014-2A\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE SUBQ 2 ML D16 (BHN BAKU OBAT) COA 15014-2A\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REST SKINB VITALLGHLIDO 1MLD16 (BHN BAKU OBAT) COA 15615-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"REST SKINB VITALLGHLIDO 1MLD16 (BHN BAKU OBAT) COA 15615-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE LIDOCAINE 1 ML D16 (BHN BAKU OBAT) COA 15316-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE LIDOCAINE 1 ML D16 (BHN BAKU OBAT) COA 15316-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 18014060\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 18014060\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702605740\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702605740\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTABIO ARV-S (BHN BAKU OBAT) COA.1711211K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"ASTABIO ARV-S (BHN BAKU OBAT) COA.1711211K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTABIO AW1 (BHN BAKU OBAT) COA 1710031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"ASTABIO AW1 (BHN BAKU OBAT) COA 1710031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTABIO AW1 (BHN BAKU OBAT) COA 1710031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"ASTABIO AW1 (BHN BAKU OBAT) COA 1710031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CARBAZOCHROME SODIUM SULFONATE (ORAL GRADE) BHN BAKU OBAT,COA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"CARBAZOCHROME SODIUM SULFONATE (ORAL GRADE) BHN BAKU OBAT,COA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KTP-09R (BHN BAKU KOSMETIK) , COA 706001, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"KTP-09R (BHN BAKU KOSMETIK) , COA 706001, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KTP-09Y (BHN BAKU KOSMETIK) COA 711003, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"KTP-09Y (BHN BAKU KOSMETIK) COA 711003, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KTP-09B (BHN BAKU KOSMETIK) COA 706001, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"KTP-09B (BHN BAKU KOSMETIK) COA 706001, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KTP-09W (BHN BAKU KOSMETIK) COA 706003, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"KTP-09W (BHN BAKU KOSMETIK) COA 706003, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIQUORICE LC (BHN BAKU KOSMETIK) COA.109796/P72025-P72028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021920\", \"uraian\": \"LIQUORICE LC (BHN BAKU KOSMETIK) COA.109796/P72025-P72028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIQUORICE LC (BHN BAKU KOSMETIK) COA 109796/P72998-P73000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021920\", \"uraian\": \"LIQUORICE LC (BHN BAKU KOSMETIK) COA 109796/P72998-P73000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA DKD\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA DKD\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA DKD\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA DKD\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA DLE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) COA DLE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS EF-118 (IS) (BHN BAKU KOSMETIK) COA DIG\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROMOIS EF-118 (IS) (BHN BAKU KOSMETIK) COA DIG\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK-GB(BHN BAKU KOSMETIK) COA DLD\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROMOIS WK-GB(BHN BAKU KOSMETIK) COA DLD\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA DJG\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROTESIL LH (BHN BAKU KOSMETIK) COA DJG\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7177772\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7177772\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7208538\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7208538\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7240894\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7240894\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7255892\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7255892\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7234535\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7234535\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7171820\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7171820\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7227521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7227521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7171538\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7171538\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053919\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053919\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7271780\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7271780\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7250997\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7250997\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7018890\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7018890\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7018890\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7018890\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL BUFFERED PEPTONE WATER 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7152551\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL BUFFERED PEPTONE WATER 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7152551\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7103675\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7103675\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7102560\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7102560\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7116560\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7116560\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6132955\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6132955\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7114681\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7114681\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7198804\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7198804\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7198804\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7198804\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7142625\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7142625\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7193991\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7193991\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7226556\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7226556\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7193548\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7193548\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7151674\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7151674\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7151674\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7151674\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171972\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171972\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7157502\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7157502\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6201884\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6201884\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7109946\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7109946\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTONE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 70600807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTONE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 70600807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7208538,7226906\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7208538,7226906\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL TRYPTOSE PJOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7240892,894\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL TRYPTOSE PJOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7240892,894\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7255892\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7255892\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7234535\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7234535\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053881\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053881\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7227521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7227521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171538\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171538\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7053919\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7053919\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7250997\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7250997\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7250997\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7250997\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7109930\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7109930\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121848\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRILLIANT GREEN BILE 2PCT 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121848\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL BUFFERED PEPTONE WATER 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7152551\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL BUFFERED PEPTONE WATER 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7152551\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7215989\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7215989\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7103675\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7103675\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7095842\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7095842\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7102560\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7102560\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171993\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171993\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7178809\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7178809\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7114681\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7114681\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7142628\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7142628\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7102868,7198804\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7102868,7198804\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 50 MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7251521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY BROTH 50 MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7251521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7047892\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7047892\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7142625\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7142625\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7193991\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7193991\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242928\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242928\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7151674\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7151674\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171972\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171972\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7157502\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7157502\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 7193661\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 7193661\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7193724\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7193724\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121863\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121863\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6201884\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6201884\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7109946\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7109946\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH170706816\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH170706816\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7277595\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7277595\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB LIQUID STUART SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 171672599\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CULTURESWAB LIQUID STUART SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 171672599\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE STANDARD METHODS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7262589\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE STANDARD METHODS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7262589\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7227521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7227521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7242852\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7242852\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7250997\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7250997\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7018890\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7018890\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7291775\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7291775\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7235794\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7235794\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7278642\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7278642\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7325792\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7325792\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7047892\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7047892\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7142625\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7142625\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7193991\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7193991\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7306543\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7306543\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2 AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7297672\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE R2 AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7297672\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7271748\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7271748\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7193661\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7193661\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7209759\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7209759\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7325764\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7325764\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7271779\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7271779\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR NOBLE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 7256726\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE AGAR NOBLE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 7256726\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7214708\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7214708\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CELLOBIOSE 25G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7156992\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CELLOBIOSE 25G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7156992\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7256591\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7256591\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7198543\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7198543\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL LAURYL TRYPTOSE BROTH 2KG (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7234887\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL LAURYL TRYPTOSE BROTH 2KG (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7234887\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6278861\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6278861\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MR-VP MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7262698\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MR-VP MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7262698\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHOSPHATE BUFFER PH 7.2 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7121877\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PHOSPHATE BUFFER PH 7.2 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7121877\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6319507\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SIMMONS CITRATE AGAR BBL 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6319507\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7102731\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRIPLE SUGAR IRON AGAR 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7102731\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7262212,13\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7262212,13\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7254256\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7254256\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7326688\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7326688\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7156929\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7156929\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7251523\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7251523\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7278561\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7278561\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE CRYSTAL INOCULUM BROTH (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 7257857\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"TUBE CRYSTAL INOCULUM BROTH (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 7257857\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK MM 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 7254256,7277108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT PACK MM 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 7254256,7277108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7324657\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7324657\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) 7324913\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) 7324913\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7324913\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7324913\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BEEF EXTRACT POWDER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7135945\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BEEF EXTRACT POWDER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7135945\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CASAMINO ACIDS TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7073600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CASAMINO ACIDS TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7073600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7297554\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7297554\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKROORGANISME) COA 7303629\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKROORGANISME) COA 7303629\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID MONOHYDRATE BP2009/E330 8-40 MESH(BHN BAKU SUPLEMEN) COA 1MT1712533\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID MONOHYDRATE BP2009/E330 8-40 MESH(BHN BAKU SUPLEMEN) COA 1MT1712533\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT17060025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT17060025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17070052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17070052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT A PALM 1.0 M AND VIT D3 100'000 (BHN BAKU SUPLEMEN) COA UT17110045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VIT A PALM 1.0 M AND VIT D3 100'000 (BHN BAKU SUPLEMEN) COA UT17110045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT17090051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT17090051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00617195\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00617195\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF, 1KG BOT PE (BHN BAKU SUPLEMEN) COA UE01710068\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO (R) LUTEIN 20PCT SAF, 1KG BOT PE (BHN BAKU SUPLEMEN) COA UE01710068\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT17060025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT17060025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00617195\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00617195\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17100025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17100025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R)LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"REDIVIVO (R)LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER MISCIBLE TYOE 100 (BHN BAKU SUPLEMEN) COA UT17070052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER MISCIBLE TYOE 100 (BHN BAKU SUPLEMEN) COA UT17070052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A AND D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT17080035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A AND D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT17080035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONIZED (BHN BAKU OBAT) COA.F-04.1064-180101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONIZED (BHN BAKU OBAT) COA.F-04.1064-180101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRAMADOL HCL (BHN BAKU OBAT) COA. TH/3/15010/00E\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29225090\", \"uraian\": \"TRAMADOL HCL (BHN BAKU OBAT) COA. TH/3/15010/00E\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND170802, ND 170804\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND170802, ND 170804\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURICILLIN COMPACTED (BHN BAKU OBAT) COA. M842210,12 S/D 17\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411020\", \"uraian\": \"PURICILLIN COMPACTED (BHN BAKU OBAT) COA. M842210,12 S/D 17\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX TM POWDER MONOHYDRAT (BHN BAKU OBAT),COA.B334499,334501, 504\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX TM POWDER MONOHYDRAT (BHN BAKU OBAT),COA.B334499,334501, 504\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX TM POWDER MONOHYDRAT (BHN BAKU OBAT) COA B334500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX TM POWDER MONOHYDRAT (BHN BAKU OBAT) COA B334500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RANITIDINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA RH 021 01 18, RH 022 01 18...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29321900\", \"uraian\": \"RANITIDINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA RH 021 01 18, RH 022 01 18...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEROPENEM WITH SODIUM CARBONATE (BHN BAKU OBAT) COA Q900100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"MEROPENEM WITH SODIUM CARBONATE (BHN BAKU OBAT) COA Q900100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC ,25KG BOX (BHN BAKU KOSMETIK) COA 0000170005 S/D 7, 9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC ,25KG BOX (BHN BAKU KOSMETIK) COA 0000170005 S/D 7, 9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00504773,511322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"AMPHISOL K (BHN BAKU KOSMETIK) COA VE00504773,511322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT17090195\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT17090195\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7235808\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7235808\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7227994\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7227994\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7277945\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7277945\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU TH17/TREG PHENOTYPING KIT 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7326783\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU TH17/TREG PHENOTYPING KIT 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7326783\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FASTIMMUNE IL-6 FITC AS12 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7307604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"FASTIMMUNE IL-6 FITC AS12 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7307604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7153980\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7153980\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7282812\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7282812\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7277766\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7277766\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7198968\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7198968\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7102829\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7102829\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7153980\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7153980\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7277766\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7277766\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7291650\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7291650\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7146880\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7146880\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7282812\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7282812\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7248503\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7248503\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTISERUM A 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6274878\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL H ANTISERUM A 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6274878\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTISERUM C 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7293599\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL H ANTISERUM C 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7293599\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTISERUM D 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6225901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL H ANTISERUM D 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6225901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7251512\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7251512\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7125585\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7125585\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU HLA DR FITC L243 (G46-6) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6263631\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU HLA DR FITC L243 (G46-6) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6263631\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PERM/WASH BUFFER 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7136715\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PERM/WASH BUFFER 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7136715\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7291650 7198804\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7291650 7198804\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7198968\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7198968\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM ASSAY KIT 10 PLATES (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CALCIUM ASSAY KIT 10 PLATES (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7235889\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7235889\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD34 APC BG12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7186970\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD34 APC BG12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7186970\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7226996\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7226996\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7250529\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7250529\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7305643\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7305643\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7220771\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7220771\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 PER CP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7333763\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD45 PER CP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7333763\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7345542\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7345542\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI HLA DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7299623\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANTI HLA DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7299623\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 PERCP 2D1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7194660\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD45 PERCP 2D1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7194660\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD CST BEADS KIT 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 72926\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BD CST BEADS KIT 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 72926\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD10 PE HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7304664\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD10 PE HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7304664\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7289995\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTOSE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7289995\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7146880\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7146880\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7341769\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7341769\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT 10X10MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7228748\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"TUBE EGG YOLK ENRICHMENT 50PCT 10X10MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7228748\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7326679\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7326679\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I &VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7187918\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I &VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7187918\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU FOXP3 BUFFER SET 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7222681\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU FOXP3 BUFFER SET 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7222681\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU OBAT UTK PAKAN TERNAK) COA.201700281\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"AL HYD WET GEL VAC 20 (BHN BAKU OBAT UTK PAKAN TERNAK) COA.201700281\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU MAKANAN) COA UT17110001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU MAKANAN) COA UT17110001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180H5N001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180H5N001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 201801T-CCH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 201801T-CCH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA. ROA003187\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA. ROA003187\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU MAKANAN) COA.TS00009339\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU MAKANAN) COA.TS00009339\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 FOOD OIL ,4,5 KG PJUG (BHN BAKU MAKANAN) COA TS00009339\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 FOOD OIL ,4,5 KG PJUG (BHN BAKU MAKANAN) COA TS00009339\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EPA DHA 44 37 (BHN BAKU OBAT) COA EE4437-180102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"EPA DHA 44 37 (BHN BAKU OBAT) COA EE4437-180102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMLODIPINE BESILATE BP/EP (BHN BAKU OBAT), COA. AMB/139/12/17, AMB/140/12/17...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"AMLODIPINE BESILATE BP/EP (BHN BAKU OBAT), COA. AMB/139/12/17, AMB/140/12/17...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX TM POWDER MONOHYDRAT (BHN BAKU OBAT),COA.B334515,17,19\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX TM POWDER MONOHYDRAT (BHN BAKU OBAT),COA.B334515,17,19\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LABRAFIL M 1944 CS (BHN BAKU SUPLEMEN) COA.166910\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LABRAFIL M 1944 CS (BHN BAKU SUPLEMEN) COA.166910\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TEFOSE (BHN BAKU SUPLEMEN) COA 166939\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TEFOSE (BHN BAKU SUPLEMEN) COA 166939\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU KOSMETIK) COA 01/17GAAK\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT KIWI (BAHAN BAKU KOSMETIK) COA 01/17GAAK\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU KOSMETIK) COA 01/17GAAK,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT KIWI (BAHAN BAKU KOSMETIK) COA 01/17GAAK,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 164862\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 164862\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONIZED (BHN BAKU OBAT) COA.F-04.1064-180101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONIZED (BHN BAKU OBAT) COA.F-04.1064-180101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIO VINACCIOLI RAFFINATO (BHN BAKU OBAT) COA.B1700291\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15152919\", \"uraian\": \"OLIO VINACCIOLI RAFFINATO (BHN BAKU OBAT) COA.B1700291\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P7W01PA000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL TX (BHN BAKU KOSMETIK) COA P7W01PA000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REFINED SUNFLOWER OIL (BHN BAKU KOSMETIK) COA KKLJ 15/17\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"REFINED SUNFLOWER OIL (BHN BAKU KOSMETIK) COA KKLJ 15/17\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE POWDER (B.BAKU KOSMETIK)COA CHP1180112\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND BIO-SODIUM HYALURONATE POWDER (B.BAKU KOSMETIK)COA CHP1180112\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-162827\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-162827\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-893107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-893107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK)COA SFP-N-080917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK)COA SFP-N-080917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-033107, 042217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-033107, 042217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 071817\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 071817\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK) COA U180125\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK) COA U180125\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNOLIA BARK EXTRACT (BHN BAKU KOSMETIK) COA MBE05-171002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"MAGNOLIA BARK EXTRACT (BHN BAKU KOSMETIK) COA MBE05-171002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-1706123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-1706123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ULTALUX FF25 KG BAG (BHN BAKU KOSMETIK) COA D041742562\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ULTALUX FF25 KG BAG (BHN BAKU KOSMETIK) COA D041742562\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC ,25KG BOX (BHN BAKU KOSMETIK) COA 0000170021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC ,25KG BOX (BHN BAKU KOSMETIK) COA 0000170021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91712339\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91712339\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01707028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY C 50 (BHN BAKU KOSMETIK) COA UE01707028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0703160002,5,6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0703160002,5,6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA 1 P001062 (BHN BAKU KOSMETIK) COA 0000010553\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA 1 P001062 (BHN BAKU KOSMETIK) COA 0000010553\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLAISANCE P116808 (BHN BAKU KOSMETIK) COA.0000012945\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"PLAISANCE P116808 (BHN BAKU KOSMETIK) COA.0000012945\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA 0000006375\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA 0000006375\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17080764\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17080764\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01705041,7058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01705041,7058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17090164\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17090164\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01707058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01707058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT17080762\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT17080762\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA UT01710765\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA UT01710765\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91711231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX 504010 (BHN BAKU MAKANAN) COA XW91711231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW91712166\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 C (BHN BAKU MAKANAN) COA XW91712166\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 -C3 (BHN BAKU MAKANAN) COA XW91712167\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 -C3 (BHN BAKU MAKANAN) COA XW91712167\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT GRANULATION ,25KG BAL (BHN BAKU MAKANAN) COA WB00917901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT GRANULATION ,25KG BAL (BHN BAKU MAKANAN) COA WB00917901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT17110004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT17110004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01707063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01707063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01707063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01707063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01707063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01707063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01707063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01707063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1706072\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1706072\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT17060049\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT17060049\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT17060049\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT17060049\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CANTHAXANTHIN 10PCT CWS/S (BHN BAKU MAKANAN) COA UT17040003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"CANTHAXANTHIN 10PCT CWS/S (BHN BAKU MAKANAN) COA UT17040003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17080035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17080035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DWI BI (BHN BAKU MAKANAN) COA XW91712070 ,XW91712071\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"DWI BI (BHN BAKU MAKANAN) COA XW91712070 ,XW91712071\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17080053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17080053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/18010016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/18010016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT SD,15KG BOXALU (BHN BAKU SUPLEMEN) COA WB08170237\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT SD,15KG BOXALU (BHN BAKU SUPLEMEN) COA WB08170237\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOROLAC TROMETAMOL /TROMETHAMINE (BHN BAKU OBAT) COA.17100583\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"KETOROLAC TROMETAMOL /TROMETHAMINE (BHN BAKU OBAT) COA.17100583\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.17100760\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29391900\", \"uraian\": \"PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.17100760\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NYSTATIN (BHN BAKU OBAT) COA.C130654\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NYSTATIN (BHN BAKU OBAT) COA.C130654\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 70 (BHN BAKU OBAT) COA L101883217A545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 70 (BHN BAKU OBAT) COA L101883217A545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHISOPRINOL (BHN BAKU OBAT) COA.MTP7110445\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"METHISOPRINOL (BHN BAKU OBAT) COA.MTP7110445\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 17E3805\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 17E3805\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 17E4005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 17E4005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 17E4402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 17E4402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JAGUAR C 162 CARDBOARD BOX 25 KG (BHN BAKU KOSMETIK) COA MJAC17324A\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"JAGUAR C 162 CARDBOARD BOX 25 KG (BHN BAKU KOSMETIK) COA MJAC17324A\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA180101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA180101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA180101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA180101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170904\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170904\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-180101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-180101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIVE ORGANIC VIRGIN OIL... (BHN BAKU KOSMETIK)COA OLVH180101-ENBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"OLIVE ORGANIC VIRGIN OIL... (BHN BAKU KOSMETIK)COA OLVH180101-ENBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KOLLICOAT IR WHITE 2 25KG(BHN BAKU OBAT UTK PEWARNA TABLET) COA 25165316K0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"KOLLICOAT IR WHITE 2 25KG(BHN BAKU OBAT UTK PEWARNA TABLET) COA 25165316K0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KOLLICOAT IR WHITE 2 25KG (BHN BAKU OBAT UTK PEWARNA TABLET) COA 25165316K0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"KOLLICOAT IR WHITE 2 25KG (BHN BAKU OBAT UTK PEWARNA TABLET) COA 25165316K0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KOLLICOAT IR WHITE 2 25KG (BHN BAKU OBAT UTK PEWARNA TABLET) COA 25165316K0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"KOLLICOAT IR WHITE 2 25KG (BHN BAKU OBAT UTK PEWARNA TABLET) COA 25165316K0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA. 1GC01CLB ZP48D 25MT\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA. 1GC01CLB ZP48D 25MT\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601181\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601181\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600964\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600964\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601177\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601177\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601145\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601145\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600977\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600977\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH6001185\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH6001185\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601183\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601183\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601187\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601187\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601277\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601277\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601174\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601174\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601182\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601182\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE(BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601195\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE(BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601195\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601184\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601184\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600988\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600988\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH6001175\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH6001175\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 2722767\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33021090\", \"uraian\": \"HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 2722767\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 2731857\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33021090\", \"uraian\": \"HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 2731857\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP00518\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP00518\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0401217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0401217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID S 67 F (BHN BAKU OBAT) COA.576200-2170030/001-016 (16),576200-2170030/17\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232010\", \"uraian\": \"LIPOID S 67 F (BHN BAKU OBAT) COA.576200-2170030/001-016 (16),576200-2170030/17\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL PANTHENOL 50L (BHN BAKU KOSMETIK) COA TL01703615,6630\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL PANTHENOL 50L (BHN BAKU KOSMETIK) COA TL01703615,6630\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 100 CN 10KG KA (BHN BAKU KOSMETIK) COA 1336274,1339381,1340596\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 100 CN 10KG KA (BHN BAKU KOSMETIK) COA 1336274,1339381,1340596\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 900 CN 10KG KA (BHN BAKU KOSMETIK) COA 1500210,1501073\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 900 CN 10KG KA (BHN BAKU KOSMETIK) COA 1500210,1501073\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 CN 10KG KA (BHN BAKU KOSMETIK) COA 1338431,1341214,1341215\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 CN 10KG KA (BHN BAKU KOSMETIK) COA 1338431,1341214,1341215\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GROTANOL 3025 CN 10KG KA (BHN BAKU KOSMETIK) COA 1340232\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GROTANOL 3025 CN 10KG KA (BHN BAKU KOSMETIK) COA 1340232\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIDIN DO CN 10KG CA (BHN BAKU KOSMETIK) COA 1340439,1500730\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIDIN DO CN 10KG CA (BHN BAKU KOSMETIK) COA 1340439,1500730\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 CN 10KG KA (BHN BAKU KOSMETIK) COA 1340534,1341087,1341528\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 CN 10KG KA (BHN BAKU KOSMETIK) COA 1340534,1341087,1341528\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 903 (SAMPLE) 100ML FL (BHN BAKU KOSMETIK) COA 1332917, SAMPLE FREE OF CHARGE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 903 (SAMPLE) 100ML FL (BHN BAKU KOSMETIK) COA 1332917, SAMPLE FREE OF CHARGE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIDIN DO 100 ML FL (BHN BAKU KOSMETIK) COA 1325548,1332922,1335611.SAMPLE FREE OF CHARGE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIDIN DO 100 ML FL (BHN BAKU KOSMETIK) COA 1325548,1332922,1335611.SAMPLE FREE OF CHARGE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 940 (SAMPLE) 100ML FL (BHN BAKU KOSMETIK) COA 1333310, SAMPLE FREE OF CHARGE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 940 (SAMPLE) 100ML FL (BHN BAKU KOSMETIK) COA 1333310, SAMPLE FREE OF CHARGE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 SAMPLE(S) 100ML FL (BHN BAKU KOSMETIK) COA 1323757,1335586,1337764\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 SAMPLE(S) 100ML FL (BHN BAKU KOSMETIK) COA 1323757,1335586,1337764\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SWT 7TM H (BHN BAKU KOSMETIK) COA 1729201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SWT 7TM H (BHN BAKU KOSMETIK) COA 1729201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALDAVINE 5X (BHN BAKU KOSMETIK) COA 5504917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ALDAVINE 5X (BHN BAKU KOSMETIK) COA 5504917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B WHITE (BHN BAKU KOSMETIK) COA 829015555H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"B WHITE (BHN BAKU KOSMETIK) COA 829015555H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BODY 3 COMPLEX (BHN BAKU KOSMETIK) COA B3C010317\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"BODY 3 COMPLEX (BHN BAKU KOSMETIK) COA B3C010317\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL (BHN BAKU KOSMETIK), COA 830015906H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CAPIXYL (BHN BAKU KOSMETIK), COA 830015906H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL (BHN BAKU KOSMETIK), COA 8300015775H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CAPIXYL (BHN BAKU KOSMETIK), COA 8300015775H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769015443H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CHRONOLINE (BHN BAKU KOSMETIK) COA 769015443H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HELIOGEL TM (BHN BAKU KOSMETIK) COA 1719801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HELIOGEL TM (BHN BAKU KOSMETIK) COA 1719801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1727802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) COA 1727802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015909H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015909H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROGELINE (BHN BAKU KOSMETIK) COA 820055712H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROGELINE (BHN BAKU KOSMETIK) COA 820055712H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SWT 7TM L (BHN BAKU KOSMETIK) COA 1725601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SWT 7TM L (BHN BAKU KOSMETIK) COA 1725601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025824H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025824H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA.18100057\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA.18100057\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 70 (BHN BAKU OBAT) COA LC 001-7-870\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 70 (BHN BAKU OBAT) COA LC 001-7-870\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB020118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB020118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B261217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B261217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NICOTINAMIDE US/EP (BHN BAKU KOSMETIK) COA 17-18/NMD(P)/U/229 S/D 233\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NICOTINAMIDE US/EP (BHN BAKU KOSMETIK) COA 17-18/NMD(P)/U/229 S/D 233\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 172434\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 172434\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 172528\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 172528\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAKURA EXTRACT (BHN BAKU KOSMETIK) COA 171058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SAKURA EXTRACT (BHN BAKU KOSMETIK) COA 171058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 172071\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 172071\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 080817/004810\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 080817/004810\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7319547...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7319547...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL PANTHENOL 50L (BHN BAKU KOSMETIK) COA TL01706630\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL PANTHENOL 50L (BHN BAKU KOSMETIK) COA TL01706630\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ70413105\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ70413105\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0317111626,629,631 S/D 634\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0317111626,629,631 S/D 634\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU KOSMETIK) UT17060751\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU KOSMETIK) UT17060751\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0317111626\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0317111626\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01708070,71\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01708070,71\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) UT17060049\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) UT17060049\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX VH ( BHN BAKU KOSMETIK) COA UF17082002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"BEAUPLEX VH ( BHN BAKU KOSMETIK) COA UF17082002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0015511\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0015511\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DICLOFENAC POTASSIUM BP (BHN BAKU OBAT) COA DFK/7100058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"DICLOFENAC POTASSIUM BP (BHN BAKU OBAT) COA DFK/7100058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEROPENEM TRIHYDRATE WITH SODIUM CARBONATE STERILE (BHN BAKU OBAT) COA S0820171104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30032000\", \"uraian\": \"MEROPENEM TRIHYDRATE WITH SODIUM CARBONATE STERILE (BHN BAKU OBAT) COA S0820171104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE (BHN BAKU OBAT) COA X5-171212\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE (BHN BAKU OBAT) COA X5-171212\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE WHITE ( BHN BAKU OBAT UTK PEWARNA TABLET) COA. WP793254\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE WHITE ( BHN BAKU OBAT UTK PEWARNA TABLET) COA. WP793254\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602195\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602195\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED(BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602212\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED(BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602212\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602207\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602207\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROVIMIX A 1000, 20KGBAL (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT17080789,796\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"ROVIMIX A 1000, 20KGBAL (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT17080789,796\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROVIMIX E 50 ADSORBATE, 25KG BAG (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT17110269\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"ROVIMIX E 50 ADSORBATE, 25KG BAG (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT17110269\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EPA DHA 44 37 (BHN BAKU OBAT) COA EE4437-180102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"EPA DHA 44 37 (BHN BAKU OBAT) COA EE4437-180102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMBROXOL HYDROCHLORIDE POWDER (BHN BAKU OBAT) COA AHM/18003,18004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"AMBROXOL HYDROCHLORIDE POWDER (BHN BAKU OBAT) COA AHM/18003,18004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLOWLAC (R) 90 (BHN BAKU OBAT) COA L101534717A535\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"FLOWLAC (R) 90 (BHN BAKU OBAT) COA L101534717A535\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM VALPROATE (BAHAN BAKU OBAT) COA.450871 (550)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29159090\", \"uraian\": \"SODIUM VALPROATE (BAHAN BAKU OBAT) COA.450871 (550)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 181217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25070000\", \"uraian\": \"KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 181217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LUBRIPHARM (R) SSF NF/JP SODIUM STEARYL FUMARATE (BHN BAKU OBAT) COA 121707950\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"LUBRIPHARM (R) SSF NF/JP SODIUM STEARYL FUMARATE (BHN BAKU OBAT) COA 121707950\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702605740\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702605740\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA. 1GC01CLB ZP48D 25MT\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA. 1GC01CLB ZP48D 25MT\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEG 400 (POLYETHYLENE GLYCOL) BAHAN BAKU KOSMETIK) COA.AKW0003785\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PEG 400 (POLYETHYLENE GLYCOL) BAHAN BAKU KOSMETIK) COA.AKW0003785\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 183779\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 183779\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) COA 96244\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) COA 96244\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYDROXOCOBALAMIN CHLORIDE HP (BHN BAKU OBAT) COA.541783\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"HYDROXOCOBALAMIN CHLORIDE HP (BHN BAKU OBAT) COA.541783\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HEXETIDINE (BAHAN BAKU OBAT) COA.FG18200013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"HEXETIDINE (BAHAN BAKU OBAT) COA.FG18200013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA. NY0008M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA. NY0008M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIDOCAINE BASE (BHN BAKU OBAT) COA. 186134\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"LIDOCAINE BASE (BHN BAKU OBAT) COA. 186134\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIDOCAINE HCL (BHN BAKU OBAT) COA.186175\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"LIDOCAINE HCL (BHN BAKU OBAT) COA.186175\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA. 20180108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"11081200\", \"uraian\": \"CORN STARCH (BHN BAKU MAKANAN) COA. 20180108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180105\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180105\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA. 20180106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17023010\", \"uraian\": \"DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA. 20180106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANNITOL POWDER USP/EP - MANNO (BHN BAKU OBAT) COA.301711305\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054300\", \"uraian\": \"MANNITOL POWDER USP/EP - MANNO (BHN BAKU OBAT) COA.301711305\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602114\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602114\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602388\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602388\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHOLINE L-BITARTRATE (BAHAN BAKU OBAT) COA.3014156\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29231000\", \"uraian\": \"CHOLINE L-BITARTRATE (BAHAN BAKU OBAT) COA.3014156\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA. WP787390\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA. WP787390\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP PHTHALAVIN NF CLEAR (BAHAN BAKU OBAT UTK PEWARNA TABLET) COA. WP787399\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP PHTHALAVIN NF CLEAR (BAHAN BAKU OBAT UTK PEWARNA TABLET) COA. WP787399\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA. WP787395\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA. WP787395\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP787394\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP787394\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM BICARBONATE IPH (BHN BAKU SUPLEMEN) COA. DOC0101821\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"SODIUM BICARBONATE IPH (BHN BAKU SUPLEMEN) COA. DOC0101821\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT17080014,15,16\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT17080014,15,16\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01709545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01709545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG 3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT17090052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG 3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT17090052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEVOFLOXACIN HEMIHYDRATE USP (BHN BAKU OBAT) COA LF17080046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"LEVOFLOXACIN HEMIHYDRATE USP (BHN BAKU OBAT) COA LF17080046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-96A-6CS (BHN BAKU KOSMETIK) , COA 801941\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"KF-96A-6CS (BHN BAKU KOSMETIK) , COA 801941\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6028 (BHN BAKU KOSMETIK) COA 712179\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"KF-6028 (BHN BAKU KOSMETIK) COA 712179\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518010008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518010008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708170176,177\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708170176,177\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01708071\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01708071\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA MCS1602029,53\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA MCS1602029,53\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11708017,22\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11708017,22\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01704011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE01704011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT17090195,196\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT17090195,196\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01708071\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01708071\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT17090164\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT17090164\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT17090164\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT17090164\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCITRIOL (BHN BAKU OBAT) COA F074-856R003-1, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061900\", \"uraian\": \"CALCITRIOL (BHN BAKU OBAT) COA F074-856R003-1, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN536027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN536027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN536073\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN536073\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCAP 1500 CO PROCESSED (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN535916\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCAP 1500 CO PROCESSED (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN535916\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTAZIDIME BUFFERED (BHN BAKU OBAT) COA Q104000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTAZIDIME BUFFERED (BHN BAKU OBAT) COA Q104000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M529699\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M529699\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX POWDER (BHN BAKU OBAT) COA M483604,605,607,609\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE/ PURIMOX POWDER (BHN BAKU OBAT) COA M483604,605,607,609\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX POWDER GRADE C (BHN BAKU OBAT) COA M631689,631691\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE/ PURIMOX POWDER GRADE C (BHN BAKU OBAT) COA M631689,631691\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE WHITE ( BHN BAKU OBAT UTK PEWARNA TABLET) COA. WP793723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE WHITE ( BHN BAKU OBAT UTK PEWARNA TABLET) COA. WP793723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FDANDC YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP789485\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FDANDC YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP789485\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FDANDC YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP789484\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FDANDC YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP789484\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DANDC YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP787034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"DANDC YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP787034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DANDC YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP787038\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"DANDC YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP787038\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FDANDC BLUE #2/INDIGO CARMINE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP781752\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FDANDC BLUE #2/INDIGO CARMINE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP781752\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FDANDC BLUE #2/INDIGO CARMINE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP781742\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FDANDC BLUE #2/INDIGO CARMINE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP781742\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID PPL 600 (BHN BAKU OBAT) COA.577200-2170209/011-012 (2)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232010\", \"uraian\": \"LIPOID PPL 600 (BHN BAKU OBAT) COA.577200-2170209/011-012 (2)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-0180118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334910\", \"uraian\": \"DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-0180118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 2017L1396\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 2017L1396\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUO-012218\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUO-012218\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK)COA KFB-L-030827\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK)COA KFB-L-030827\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-091617\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-091617\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-022097\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-022097\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-062017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-062017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND GREEN TEA SEED OIL (BHN BAKU KOSMETIK) COA CSSO-010728\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND GREEN TEA SEED OIL (BHN BAKU KOSMETIK) COA CSSO-010728\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND LICORICE EXTRACT (BHN BAKU KOSMETIK) COA GGB-022887\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND LICORICE EXTRACT (BHN BAKU KOSMETIK) COA GGB-022887\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-040818\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-040818\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LISINOPRIL DIHYDRATE (BHN BAKU OBAT) COA C5170-17-057\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"LISINOPRIL DIHYDRATE (BHN BAKU OBAT) COA C5170-17-057\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM LACTATE SOLUTION (BHN BAKU OBAT) COA CE180101D\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181900\", \"uraian\": \"SODIUM LACTATE SOLUTION (BHN BAKU OBAT) COA CE180101D\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYL SULFONYL METHANA (BHN BAKU OBAT) COA 18012501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"METHYL SULFONYL METHANA (BHN BAKU OBAT) COA 18012501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 CN 10 KG KA (BHN BAKU KOSMETIK) COA.1501227,1503258\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 CN 10 KG KA (BHN BAKU KOSMETIK) COA.1501227,1503258\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-GLUTAMIC ACID ( BHN BAKU OBAT), COA 180130\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"L-GLUTAMIC ACID ( BHN BAKU OBAT), COA 180130\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 71025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 71025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA 80102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA 80102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA. 20180120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17023010\", \"uraian\": \"DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA. 20180120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE /. 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT17100019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE /. 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT17100019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT, 15KG BOXALU (BHN BAKU SUPLEMEN) COA WB08170238\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT, 15KG BOXALU (BHN BAKU SUPLEMEN) COA WB08170238\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-PANTHENOL 50L ,1000KG IBC (BHN BAKU KOSMETIK) COA TL01712658\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL-PANTHENOL 50L ,1000KG IBC (BHN BAKU KOSMETIK) COA TL01712658\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ70407015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ70407015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIVE POLYPHENOLIC DRY EXTRACT (BHN BAKU SUPLEMEN) COA 17447\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"OLIVE POLYPHENOLIC DRY EXTRACT (BHN BAKU SUPLEMEN) COA 17447\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LABRAFIL M 1944 CS (BHN BAKU SUPLEMEN) COA.167167\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LABRAFIL M 1944 CS (BHN BAKU SUPLEMEN) COA.167167\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TEFOSE 63 (BHN BAKU SUPLEMEN) COA 167738\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TEFOSE 63 (BHN BAKU SUPLEMEN) COA 167738\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU KOSMETIK) COA 01/17GAAK\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT KIWI (BAHAN BAKU KOSMETIK) COA 01/17GAAK\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU KOSMETIK) COA 01/17GAAK,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT KIWI (BAHAN BAKU KOSMETIK) COA 01/17GAAK,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE AM PELLETS (BHN BAKU SUPLEMEN) COA 17E4403\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE AM PELLETS (BHN BAKU SUPLEMEN) COA 17E4403\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MOXIFLOXACIN HYDROCHLORIDE EP (BHN BAKU OBAT) COA ADMXH-B007092017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334910\", \"uraian\": \"MOXIFLOXACIN HYDROCHLORIDE EP (BHN BAKU OBAT) COA ADMXH-B007092017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MOXIFLOXACIN HYDROCHLORIDE EP (BHN BAKU OBAT) COA ADMXH-B007092017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334910\", \"uraian\": \"MOXIFLOXACIN HYDROCHLORIDE EP (BHN BAKU OBAT) COA ADMXH-B007092017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91712220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91712220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DWI BI (BHN BAKU MAKANAN) COA XW91801221,1222\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"DWI BI (BHN BAKU MAKANAN) COA XW91801221,1222\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91712250\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX 504010 (BHN BAKU MAKANAN) COA XW91712250\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D PANTHENOL (BHN BAKU MAKANAN) COA TL01707063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D PANTHENOL (BHN BAKU MAKANAN) COA TL01707063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70803288,99\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70803288,99\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11708022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP11708022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17070223,224\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17070223,224\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70803289,99\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70803289,99\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL01711802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL01711802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ70810150,151\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ70810150,151\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT17090164\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT17090164\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN), COA UT17010034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN), COA UT17010034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL01711802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL01711802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70802464\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70802464\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70803283,89\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70803283,89\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ70810148,151\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ70810148,151\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ70810151\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ70810151\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G TOCO (BHN BAKU SUPLEMEN) COA UT17090164\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G TOCO (BHN BAKU SUPLEMEN) COA UT17090164\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17080039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17080039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL01708070\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU MAKANAN) COA TL01708070\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01704011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU MAKANAN) COA UE01704011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT17050019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT17050019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN MINERAL PREMIX 170299 (BHN BAKU MAKANAN), COA XW91801201 S/D 204\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN MINERAL PREMIX 170299 (BHN BAKU MAKANAN), COA XW91801201 S/D 204\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN), COA UT17070027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN), COA UT17070027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN ( BHN BAKU MAKANAN) COA UE01704011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN ( BHN BAKU MAKANAN) COA UE01704011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT17070219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT17070219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT17070027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT17070027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILVERION 2400 (BHN BAKU KOSMETIK) COA.17-06535\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILVERION 2400 (BHN BAKU KOSMETIK) COA.17-06535\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT670908\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT670908\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT670909\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT670909\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT666547\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT666547\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT670777\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT670777\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT669988\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT669988\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PUROLAN E 171 (BHN BAKU KOSMETIK) COA 5619815\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PUROLAN E 171 (BHN BAKU KOSMETIK) COA 5619815\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT TEA POWDER (TEA EXTRACT) BHN BAKU MAKANAN, COA 802011, 802021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"9022010\", \"uraian\": \"INSTANT TEA POWDER (TEA EXTRACT) BHN BAKU MAKANAN, COA 802011, 802021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KAHLWAX 2956 (BHN BAKU KOSMETIK) COA F1802008-001, 09-001, 38-001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15211000\", \"uraian\": \"KAHLWAX 2956 (BHN BAKU KOSMETIK) COA F1802008-001, 09-001, 38-001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA.03140118,03160118...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29351000\", \"uraian\": \"SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA.03140118,03160118...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE BP MICRONISED (BHN BAKU OBAT) COA 03200118,03210118...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29351000\", \"uraian\": \"SULPHAMETHOXAZOLE BP MICRONISED (BHN BAKU OBAT) COA 03200118,03210118...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FIBRE DRUM (EMPTY DRUMS) FREE OF COST NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"48192000\", \"uraian\": \"FIBRE DRUM (EMPTY DRUMS) FREE OF COST NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334525,526,532\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334525,526,532\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMBROXOL HYDROCHLORIDE POWDER (BHN BAKU OBAT) COA AHM/18003,18005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"AMBROXOL HYDROCHLORIDE POWDER (BHN BAKU OBAT) COA AHM/18003,18005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7227994\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7227994\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7277961\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7277961\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 71205, 80124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 71205, 80124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP02118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP02118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP02118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP02118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7332596.\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7332596.\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8031555\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8031555\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for QUANTIBRITE CD64 PE/CD45 PERCP MD22/2D1 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7341724\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"QUANTIBRITE CD64 PE/CD45 PERCP MD22/2D1 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7341724\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7352771\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7352771\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 FITC SK7 50 TESTS IVD (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8011762\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 FITC SK7 50 TESTS IVD (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8011762\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 73477530\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 73477530\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPLLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7332596\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MYCOPLASMA SUPLLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7332596\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7340561\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7340561\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7340561\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7340561\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYCLETEST PLUS DNA REAGENT KIT RUO/GMP (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7296955\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CYCLETEST PLUS DNA REAGENT KIT RUO/GMP (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7296955\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8016851\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8016851\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7354931\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7354931\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL TINSDALE ENRICHMENT 6X15ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7354892\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL TINSDALE ENRICHMENT 6X15ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7354892\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7268937\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7268937\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7354931\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7354931\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7319536\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7319536\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7291650\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7291650\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7325717\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7325717\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7314928\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7314928\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG L P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7289995\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG L P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7289995\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7146880\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7146880\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7237643\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS OGAWA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7237643\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD11C PE CE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7179827\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD11C PE CE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7179827\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYCLETEST PLUS DNA REAGENT KIT RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7347625\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CYCLETEST PLUS DNA REAGENT KIT RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7347625\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7235889\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7235889\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7186970,7333561\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7186970,7333561\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7226996\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7226996\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8016851\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8016851\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7250529\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7250529\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7305643\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7305643\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7220771\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7220771\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7333763\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7333763\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7345542\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7345542\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 PERCP 2D1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7317768\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD45 PERCP 2D1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7317768\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD33 PE 67.6 100 TESTS TUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8005840\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD33 PE 67.6 100 TESTS TUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8005840\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD206 FITC 19.2 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7258565\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD206 FITC 19.2 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7258565\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD209 APC DCN46 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7201902\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD209 APC DCN46 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7201902\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7125585\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7125585\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD64 FITC 10.1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7250584\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD64 FITC 10.1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7250584\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD86 FITC 2331 (FUN-1) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7132528\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD86 FITC 2331 (FUN-1) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7132528\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MS LGG1KPA LTCI FITC MOPC-21 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6301865\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"MS LGG1KPA LTCI FITC MOPC-21 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6301865\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU HLA DR FITC L243 (G46-6) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6263631\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU HLA DR FITC L243 (G46-6) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6263631\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD163 PE GHI/61 100 TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7160585\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD163 PE GHI/61 100 TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7160585\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD274 PE MIH1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7096869\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD274 PE MIH1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7096869\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD11C APC B-LY6 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7124669\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD11C APC B-LY6 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7124669\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD CST BEADS KIT 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 72926\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BD CST BEADS KIT 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 72926\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI-MPO FITC 588 50 TESTS RUO/GMP (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7293950\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANTI-MPO FITC 588 50 TESTS RUO/GMP (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7293950\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 APC SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7332754\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 APC SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7332754\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD40 FITC 5C3 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7132522\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD40 FITC 5C3 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7132522\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060854\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060854\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7326679\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7326679\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL NOVOBIOCIN SUPPLEMENT 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7347756\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL NOVOBIOCIN SUPPLEMENT 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7347756\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU HLA-A2 FITC BB7.1 100UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7110642\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU HLA-A2 FITC BB7.1 100UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7110642\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP AI VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7187918\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP AI VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7187918\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8012723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8012723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7319856\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7319856\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC XT PACK 90MM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8003895\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC XT PACK 90MM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8003895\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7251523\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7251523\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7227521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7227521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7251523\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7251523\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7208538\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7208538\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7234535,7270946\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7234535,7270946\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171820\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171820\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7156929\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7156929\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7227521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7227521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171538\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171538\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7250997\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7250997\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7018890\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7018890\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7251541\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7251541\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7103675\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7103675\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7095842\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7095842\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7102560\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7102560\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7116560\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7116560\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7114681,7208901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7114681,7208901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7142628\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7142628\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7198804\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7198804\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7325792\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7325792\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7297545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7297545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7142625\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7142625\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7193991\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7193991\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7289581\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7289581\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7193548,7306543\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7193548,7306543\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7151674\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7151674\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7262700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7262700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7193661\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7193661\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121863\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121863\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242958,7325764\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242958,7325764\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7005857,7157987\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7005857,7157987\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171538\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171538\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7250997\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7250997\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7081890\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7081890\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7109930\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7109930\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7116560\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7116560\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7178809\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7178809\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7198804\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7198804\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7297545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7297545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7206720,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7206720,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7152571,7297693\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7152571,7297693\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7193724\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7193724\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7209759\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7209759\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242803\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242803\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121863\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121863\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242958\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242958\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7332778\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7332778\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POLYSORBATE 80 100G 1 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7263958\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POLYSORBATE 80 100G 1 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7263958\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE CRYSTAL INOCULUM BROTH (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7335882\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"TUBE CRYSTAL INOCULUM BROTH (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7335882\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE CRYSTAL E/ID INOCULUM FLUID(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7335881\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"TUBE CRYSTAL E/ID INOCULUM FLUID(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7335881\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7319856\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7319856\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7296590,7326806\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7296590,7326806\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7303629\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7303629\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7304548\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7304548\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7306827\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7306827\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242852\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242852\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7220797\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7220797\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7317688\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7317688\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 7325773\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 7325773\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7261795\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7261795\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7220787\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7220787\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GASPAK EZ STANDARD INCUBATION CONTAINER(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7261716010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"GASPAK EZ STANDARD INCUBATION CONTAINER(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7261716010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7198543\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7198543\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL LAURYL TRYPTOSE BROTH 2KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7234887\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL LAURYL TRYPTOSE BROTH 2KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7234887\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7177823\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7177823\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7220793\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7220793\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7325649\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7325649\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7250994\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7250994\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7102731\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7102731\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7109953\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7109953\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7206693\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7206693\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST CARBON BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7256543\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE YEAST CARBON BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7256543\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7297698\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7297698\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121569\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121569\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7171993\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7171993\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7317878\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA IC XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7317878\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7317878\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA IC XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7317878\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7317895\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7317895\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7339575\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA IC XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7339575\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7339579\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA IC XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7339579\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7317895\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7317895\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7317895\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7317895\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7317878\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA IC XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7317878\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NICOTINAMIDE US/EP (BHN BAKU KOSMETIK) COA 17-18/NMD(P)/U/235 S/D 240\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NICOTINAMIDE US/EP (BHN BAKU KOSMETIK) COA 17-18/NMD(P)/U/235 S/D 240\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M595695,96\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M595695,96\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA180102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA180102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DULSE PHYTELENE EG 745 (BG) (BHN BAKU KOSMETIK)COA EG745-180101-GS-B\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"DULSE PHYTELENE EG 745 (BG) (BHN BAKU KOSMETIK)COA EG745-180101-GS-B\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH180202-ENBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH180202-ENBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AC019KC PHYTOVITYL C 5KG BHN BAKU KOSMETIK COA 0019724\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"AC019KC PHYTOVITYL C 5KG BHN BAKU KOSMETIK COA 0019724\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-001-V\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-001-V\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN1400917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN1400917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA ROA040183\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA ROA040183\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOGLYCOLIC ACID 99PCT COSMETIC GRADE (BHN BAKU KOSMETIK) COA.0000061945\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOGLYCOLIC ACID 99PCT COSMETIC GRADE (BHN BAKU KOSMETIK) COA.0000061945\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMMONIUM THIOGLYCOLATE 71PCT(60PCT TGA) BHN BAKU KOSMETIK, COA.0000061946\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"AMMONIUM THIOGLYCOLATE 71PCT(60PCT TGA) BHN BAKU KOSMETIK, COA.0000061946\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MONOETHANOLAMINE THIOGLYCOLATE 83PCT (50PCT TGA) BHN BAKU KOSMETIK, COA 0000061947\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221100\", \"uraian\": \"MONOETHANOLAMINE THIOGLYCOLATE 83PCT (50PCT TGA) BHN BAKU KOSMETIK, COA 0000061947\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP02118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP02118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRANOL ULTRA C32 200KG PLASCTIC DRUM (BHN BAKU KOSMETIK) COA BP801011R\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34029099\", \"uraian\": \"MIRANOL ULTRA C32 200KG PLASCTIC DRUM (BHN BAKU KOSMETIK) COA BP801011R\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PG USP (BHN BAKU KOSMETIK) COA B01231UP\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"PG USP (BHN BAKU KOSMETIK) COA B01231UP\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DPG FG (BHN BAKU KOSMETIK) COA B01231DP\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29094900\", \"uraian\": \"DPG FG (BHN BAKU KOSMETIK) COA B01231DP\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PG USP (FREE SAMPLE) BHN BAKU KOSMETIK, COA B01231UP,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"PG USP (FREE SAMPLE) BHN BAKU KOSMETIK, COA B01231UP,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CARBAZOCHROME SODIUM SULFONATE (ORAL GRADE) BHN BAKU OBAT,COA AC71201/80112\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"CARBAZOCHROME SODIUM SULFONATE (ORAL GRADE) BHN BAKU OBAT,COA AC71201/80112\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HUILE DE COPRAH RAFF GV 24/26 (BHN BAKU KOSMETIK)COA BA007207\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15131910\", \"uraian\": \"HUILE DE COPRAH RAFF GV 24/26 (BHN BAKU KOSMETIK)COA BA007207\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.18100077\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29391900\", \"uraian\": \"PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.18100077\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA DKD, KAE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA DKD, KAE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA DKD\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA DKD\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WS (BHN BAKU KOSMETIK) COA KAC\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROMOIS WS (BHN BAKU KOSMETIK) COA KAC\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILASOMA MFA (S) (BHN BAKU KOSMETIK) COA DGC\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SILASOMA MFA (S) (BHN BAKU KOSMETIK) COA DGC\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601910\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601910\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601916\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601916\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601915\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601915\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601908\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601908\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601921\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601921\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601914\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601914\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601929\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601929\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601913\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601913\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601906\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601906\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601905\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601905\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY QX ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601904\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY QX ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601904\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601630\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601630\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601630\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601630\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601911\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601911\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601912\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601912\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601919\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601919\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601907\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601907\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599845\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599845\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601922\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601922\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601903\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601903\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602114\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602114\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602417\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602417\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602211\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602211\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601908\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601908\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602209\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602209\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602208\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602208\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602213\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602213\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602214\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602214\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602210\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602210\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602216\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602216\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GRAY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GRAY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602113\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602113\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599892\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599892\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601921\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601921\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602111\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602111\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602112\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602112\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602186\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602186\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602116\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602116\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOCUSATE SODIUM (BAHAN BAKU OBAT) COA.SD7071636, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"DOCUSATE SODIUM (BAHAN BAKU OBAT) COA.SD7071636, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOL SODIUM TYPE T 25 (BHN BAKU OBAT) COA.171286\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331100\", \"uraian\": \"METAMIZOL SODIUM TYPE T 25 (BHN BAKU OBAT) COA.171286\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PF.ANTI SHINE WASH (BHN BAKU KOSMETIK)COA 10300065\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PF.ANTI SHINE WASH (BHN BAKU KOSMETIK)COA 10300065\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTISHINE WASH 1 (BHN BAKU KOSMETIK) COA 10300107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ANTISHINE WASH 1 (BHN BAKU KOSMETIK) COA 10300107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG171103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG171103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 1801EF4113\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"L-ARGININE LO (BHN BAKU KOSMETIK),COA 1801EF4113\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180203\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029011\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180203\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 017.629\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 017.629\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CANNULA 25G PIX'L 0,5 X40 (BHN BAKU OBAT) COA 017.533,017.615\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"CANNULA 25G PIX'L 0,5 X40 (BHN BAKU OBAT) COA 017.533,017.615\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REST SKINB VITALLGHLIDO 1MLD16 (BHN BAKU OBAT) COA 15615-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"REST SKINB VITALLGHLIDO 1MLD16 (BHN BAKU OBAT) COA 15615-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE LYFT LIDOCAINE 1 ML (BHN BAKU OBAT) COA 15618-1, 15664-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE LYFT LIDOCAINE 1 ML (BHN BAKU OBAT) COA 15618-1, 15664-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE REFYNE 1ML (BHN BAKU OBAT) COA 15521-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE REFYNE 1ML (BHN BAKU OBAT) COA 15521-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE DEFYNE 1ML (BHN BAKU OBAT) COA 15613-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE DEFYNE 1ML (BHN BAKU OBAT) COA 15613-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE KYSSE 1ML (BHN BAKU OBAT) COA 15268-1, 15761-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE KYSSE 1ML (BHN BAKU OBAT) COA 15268-1, 15761-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIFE'S DHA S35-O100, 5KG ALUF (B.BAKU SUPLEMEN) COA VY00249307\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"LIFE'S DHA S35-O100, 5KG ALUF (B.BAKU SUPLEMEN) COA VY00249307\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602724\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602724\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602729\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602729\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602728\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602728\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 051801003137...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 051801003137...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518010031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518010031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY C (R) 50, 20KG BOX NA (BHN BAKU KOSMETIK) COA UT17090152,145\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY C (R) 50, 20KG BOX NA (BHN BAKU KOSMETIK) COA UT17090152,145\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY C (R) 50, 5KG BAG ALU EX US (BHN BAKU KOSMETIK) COA UT17060074,91\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY C (R) 50, 5KG BAG ALU EX US (BHN BAKU KOSMETIK) COA UT17060074,91\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D.BIOTIN (BHN BAKU KOSMETIK) COA UE01704011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D.BIOTIN (BHN BAKU KOSMETIK) COA UE01704011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX (BHN BAKU KOSMETIK) COA UF17082002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"BEAUPLEX (BHN BAKU KOSMETIK) COA UF17082002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO170601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO170601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO171102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO171102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-171106-GS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-171106-GS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK)COA EG209-171001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK)COA EG209-171001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG 543(BHN BAKU KOSMETIK) COA EG543-180101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG 543(BHN BAKU KOSMETIK) COA EG543-180101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA VIV171001-BGBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA VIV171001-BGBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS170802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS170802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIE170702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIE170702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEPPERMINT ORGANIC DISTILLATE 1:5 SB (BHN BAKU KOSMETIK) COA MEPD170701-BIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PEPPERMINT ORGANIC DISTILLATE 1:5 SB (BHN BAKU KOSMETIK) COA MEPD170701-BIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM170702-PGH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM170702-PGH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POMEGRANATE OILY EXTRACT (BHN BAKU KOSMETIK) COA PUG170803-H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"POMEGRANATE OILY EXTRACT (BHN BAKU KOSMETIK) COA PUG170803-H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK) COA EG138-171102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK) COA EG138-171102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB01217203\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB01217203\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW 5C 50CT CLEAR (BHN BAKU KOSMETIK) COA 785015905J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CW 5C 50CT CLEAR (BHN BAKU KOSMETIK) COA 785015905J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ISOCELL TM SLIM (BHN BAKU KOSMETIK) COA 1731305\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ISOCELL TM SLIM (BHN BAKU KOSMETIK) COA 1731305\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK), COA 1724516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PHYTENSO TM (BHN BAKU KOSMETIK), COA 1724516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SWT 7TM H (BHN BAKU KOSMETIK), COA 1732601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SWT 7TM H (BHN BAKU KOSMETIK), COA 1732601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785015905J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785015905J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5526617\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK) COA 5526617\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015909H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015909H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA634466\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA634466\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0021968\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29337900\", \"uraian\": \"ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0021968\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE01706008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"RONOXAN A (BHN BAKU MAKANAN) COA UE01706008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01707058,59\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01707058,59\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17070066\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17070066\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL01711802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL01711802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01708248\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01708248\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01704011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01704011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17070224,225\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17070224,225\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11708023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11708023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL A TOCOPHEROL (BHN BAKU MAKANAN) COA UT17060049\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL A TOCOPHEROL (BHN BAKU MAKANAN) COA UT17060049\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ70309009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ70309009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17070225\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17070225\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN RABLET GRADE (BHN BAKU SUPLEMEN) COA UQ70309009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN RABLET GRADE (BHN BAKU SUPLEMEN) COA UQ70309009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17070224\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17070224\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17070224\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17070224\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17080053,54\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17080053,54\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT17080048,49\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT17080048,49\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17050034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17050034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B2 UNIVERSAL FINE POWDER, 5KG BAG ALU (BHN BAKU MAKANAN) COA UQ70410087,88\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"B2 UNIVERSAL FINE POWDER, 5KG BAG ALU (BHN BAKU MAKANAN) COA UQ70410087,88\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UT1704011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UT1704011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD(BHN BAKU SUPLEMEN) COA UT17110004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD(BHN BAKU SUPLEMEN) COA UT17110004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11708023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11708023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01704011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01704011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ70910158\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ70910158\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT17070027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT17070027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL A TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT17060049\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL A TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT17060049\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01707059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01707059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01710072\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01710072\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UT1707059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UT1707059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL01708248\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU MAKANAN) COA TL01708248\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL01708248\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU MAKANAN) COA TL01708248\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL A TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17100212\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL A TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17100212\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL A TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT17100212\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL A TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT17100212\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL01708248\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU MAKANAN) COA TL01708248\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11708023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP11708023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RONOXAN A (BHN BAKU SUPLEMEN) COA UE01706008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"RONOXAN A (BHN BAKU SUPLEMEN) COA UE01706008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE01706008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"RONOXAN A (BHN BAKU MAKANAN) COA UE01706008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 1703935854\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 1703935854\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-0310218, S-0330218\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334910\", \"uraian\": \"DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-0310218, S-0330218\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND171001, ND171002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND171001, ND171002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 1707384793\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29322090\", \"uraian\": \"SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 1707384793\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB01217203\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB01217203\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA.MLAH0080118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29341000\", \"uraian\": \"MELOXICAM BP (BHN BAKU OBAT) COA.MLAH0080118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINKGO EXTRACT (BHN BAKU OBAT) COA 1269505\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"GINKGO EXTRACT (BHN BAKU OBAT) COA 1269505\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602833\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602833\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602834\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602834\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6017 (BHN BAKU KOSMETIK) , COA 801053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"KF-6017 (BHN BAKU KOSMETIK) , COA 801053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-210 (16KG) BHN BAKU KOSMETIK, COA 802430\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"KSG-210 (16KG) BHN BAKU KOSMETIK, COA 802430\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPASPRAY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT670910\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPASPRAY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT670910\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF,1KG BOT PE (BHN BAKU SUPLEMEN) COA UE01710068\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO (R) LUTEIN 20PCT SAF,1KG BOT PE (BHN BAKU SUPLEMEN) COA UE01710068\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GENIVIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"GENIVIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GENIVIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"GENIVIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB01017173\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB01017173\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A AND D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18020037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A AND D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18020037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COATED ASCORBIC ACID,TYPE EC (BHN BAKU SUPLEMEN) COA TL01801736, 1742\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"COATED ASCORBIC ACID,TYPE EC (BHN BAKU SUPLEMEN) COA TL01801736, 1742\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT18010785\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT18010785\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF, 1KG BOT PE (BHN BAKU SUPLEMEN) COA UE01710068\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO (R) LUTEIN 20PCT SAF, 1KG BOT PE (BHN BAKU SUPLEMEN) COA UE01710068\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702605740\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702605740\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IBUPROFEN 40 GRADE (BHN BAKU OBAT) COA 4050-3220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29163990\", \"uraian\": \"IBUPROFEN 40 GRADE (BHN BAKU OBAT) COA 4050-3220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CINNARIZINE (BHN BAKU OBAT) COA 032122017CIN\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"CINNARIZINE (BHN BAKU OBAT) COA 032122017CIN\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 19-01-18\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25070000\", \"uraian\": \"KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 19-01-18\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA. 20180125\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17023010\", \"uraian\": \"DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA. 20180125\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTRIN-AG (BHN BAKU KOSMETIK)COA BAG-030126, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ASTRIN-AG (BHN BAKU KOSMETIK)COA BAG-030126, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIO SODIUM HYALURONATE 1PCT...(B BAKU KOSMETIK) COA HASC-081946,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"BIO SODIUM HYALURONATE 1PCT...(B BAKU KOSMETIK) COA HASC-081946,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CUCUMBER EXTRACT(BHN BAKU KOSMETIK) COA CUPD-022966, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CUCUMBER EXTRACT(BHN BAKU KOSMETIK) COA CUPD-022966, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FRUCTAN (BHN BAKU KOSMETIK)COA LSN-011717, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"FRUCTAN (BHN BAKU KOSMETIK)COA LSN-011717, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GTB-022097, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GTB-022097, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-022097, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-022097, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HASU LIQUID (BHN BAKU KOSMETIK) COA NFH-021307, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HASU LIQUID (BHN BAKU KOSMETIK) COA NFH-021307, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON EUCALYPTUS OIL (BHN BAKU KOSMETIK)COA SY-010924,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LEMON EUCALYPTUS OIL (BHN BAKU KOSMETIK)COA SY-010924,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIRORICE EXTRACT (BHN BAKU KOSMETIK) COA S-012017, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LIRORICE EXTRACT (BHN BAKU KOSMETIK) COA S-012017, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-21367,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-21367,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-021066,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-021066,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-11711056,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-11711056,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SC GLUCAN PF (BHN BAKU KOSMETIK) COA CPG-162426, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SC GLUCAN PF (BHN BAKU KOSMETIK) COA CPG-162426, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SNAIL SECRETION FILTRATE(BHN BAKU KOSMETIK) COA SAFW-082816, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SNAIL SECRETION FILTRATE(BHN BAKU KOSMETIK) COA SAFW-082816, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SOYPOL SP PF (BHN BAKU KOSMETIK) COA CPS-022126, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SOYPOL SP PF (BHN BAKU KOSMETIK) COA CPS-022126, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MARIGOLD EXTRACT (BHN BAKU KOSMETIK) COA MGA-010347,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"MARIGOLD EXTRACT (BHN BAKU KOSMETIK) COA MGA-010347,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK) COA.LDC 45 18\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SAVONOL 16 (BAHAN BAKU KOSMETIK) COA.LDC 45 18\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUMPLEMEN) COA 16490\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUMPLEMEN) COA 16490\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOSWELIA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 18021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"BOSWELIA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 18021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453119019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453119019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETAMINE HCL (BHN BAKU OBAT), COA 0255017P\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29223900\", \"uraian\": \"KETAMINE HCL (BHN BAKU OBAT), COA 0255017P\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEOSTIGMINE METHYLSULPHATE (BHN BAKU OBAT), COA NMS0217002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"NEOSTIGMINE METHYLSULPHATE (BHN BAKU OBAT), COA NMS0217002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CILOSTAZOL USP (BHN BAKU OBAT) COA 6008CB2RIAX\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29337900\", \"uraian\": \"CILOSTAZOL USP (BHN BAKU OBAT) COA 6008CB2RIAX\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FUROSEMIDE NON STERILE (BHN BAKU OBAT) COA 17172HRII\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"FUROSEMIDE NON STERILE (BHN BAKU OBAT) COA 17172HRII\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA.165210\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA.165210\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA.01/17GAAK\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA.01/17GAAK\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU KOSMETIK) COA.01/17GAAK,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT KIWI (BAHAN BAKU KOSMETIK) COA.01/17GAAK,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELUCIRE 44/14 (BAHAN BAKU OBAT) COA.167226\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELUCIRE 44/14 (BAHAN BAKU OBAT) COA.167226\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LABRAFIL M 1944 CS ( BAHAN BAKU OBAT) COA.167589\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LABRAFIL M 1944 CS ( BAHAN BAKU OBAT) COA.167589\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TEFOSE 63 (BAHAN BAKU OBAT) COA.167900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TEFOSE 63 (BAHAN BAKU OBAT) COA.167900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TEFOSE 63 (BAHAN BAKU OBAT) COA.168039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TEFOSE 63 (BAHAN BAKU OBAT) COA.168039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CETYL PALMITATE PELLETS CAR (BHN BAKU OBAT) COA 166673\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"CETYL PALMITATE PELLETS CAR (BHN BAKU OBAT) COA 166673\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE BM PELLETS (BHN BAKU OBAT) COA 18E0405\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE BM PELLETS (BHN BAKU OBAT) COA 18E0405\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE AM PELLETS (BHN BAKU OBAT) COA 18E0403\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE AM PELLETS (BHN BAKU OBAT) COA 18E0403\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRANSCUTOL P (BHN BAKU OBAT) COA 166850\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TRANSCUTOL P (BHN BAKU OBAT) COA 166850\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE A PELLETS (BHN BAKU OBAT) COA 18E0504\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE A PELLETS (BHN BAKU OBAT) COA 18E0504\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA.201700284\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA.201700284\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 20 PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D184F43021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 20 PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D184F43021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180HBO002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180HBO002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180HBO002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180HBO002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180HBP002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180HBP002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180H58001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180H58001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D0180H4B002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D0180H4B002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180H5K002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180H5K002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180H5N001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180H5N001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E50 PREMIUM LV ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011H24L01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E50 PREMIUM LV ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011H24L01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180125\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180125\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA. 20180202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17023010\", \"uraian\": \"DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA. 20180202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA. 20180205\""}, {"role": "assistant", "content": "{\"hs_code\" : \"11081200\", \"uraian\": \"CORN STARCH (BHN BAKU MAKANAN) COA. 20180205\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIRGIN SWEET ALMOND OIL CONFORM TO THE EUR ( BHN BAKU KOSMETIK) COA 0000020843\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"VIRGIN SWEET ALMOND OIL CONFORM TO THE EUR ( BHN BAKU KOSMETIK) COA 0000020843\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIRGIN OLIVE OIL CONFORM TO THE EUR PH (BHN BAKU KOSMETIK) COA 0000020394\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"VIRGIN OLIVE OIL CONFORM TO THE EUR PH (BHN BAKU KOSMETIK) COA 0000020394\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC ,25KG BOX (BHN BAKU KOSMETIK) COA 0000170011,21,687\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC ,25KG BOX (BHN BAKU KOSMETIK) COA 0000170011,21,687\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GLICLAZIDE (BHN BAKU OBAT) COA 1740001442\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"GLICLAZIDE (BHN BAKU OBAT) COA 1740001442\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NYSTATIN (BHN BAKU OBAT) COA.C114132\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NYSTATIN (BHN BAKU OBAT) COA.C114132\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NOREPINEPHRINE BITARTRATE (BHN BAKU OBAT) COA 420104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29379010\", \"uraian\": \"NOREPINEPHRINE BITARTRATE (BHN BAKU OBAT) COA 420104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 201700284\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 201700284\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IONOL CP (BHN BAKU KOSMETIK) COA 01134317\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"IONOL CP (BHN BAKU KOSMETIK) COA 01134317\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VALERIAN D.H.E >0.8PCT (BAHAN BAKU SUPLEMEN) COA 10465/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VALERIAN D.H.E >0.8PCT (BAHAN BAKU SUPLEMEN) COA 10465/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HAWTHORN DRY EXTRACT >1.8PCT (BAHAN BAKU SUPLEMEN) COA 10431/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HAWTHORN DRY EXTRACT >1.8PCT (BAHAN BAKU SUPLEMEN) COA 10431/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PASSION FLOWER D.H.E > 4PC0T (BAHAN BAKU SUPPLEMEN) COA 09798/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PASSION FLOWER D.H.E > 4PC0T (BAHAN BAKU SUPPLEMEN) COA 09798/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BUTCHERBROOM DRY HYDR.EX 9-11PCT (BAHAN BAKU SUPPLEMEN) COA 10438/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BUTCHERBROOM DRY HYDR.EX 9-11PCT (BAHAN BAKU SUPPLEMEN) COA 10438/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10219/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10219/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10508/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10508/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10509/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10509/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10510/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10510/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 10499/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 10499/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYMARIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 10462/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILYMARIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 10462/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708160080, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708160080, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT17120017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT17120017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT17120016,17\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT17120016,17\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01709545,9562,801643\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01709545,9562,801643\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) COA 7766001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) COA 7766001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK)COA OSLP-022418\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK)COA OSLP-022418\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-00918, HMVBD-062017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-00918, HMVBD-062017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-033107, 042217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-033107, 042217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK) COA U180222\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK) COA U180222\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LINEN OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA LIU180101-H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LINEN OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA LIU180101-H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAVENDER ESSENSIAL OIL (FRANCE/MAILLETTE) (BHN BAKU KOSMETIK)COA LAM180201-IL\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LAVENDER ESSENSIAL OIL (FRANCE/MAILLETTE) (BHN BAKU KOSMETIK)COA LAM180201-IL\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA180203\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA180203\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA180102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA180102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 171058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 171058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEEM LEAF LIQUID B (BHN BAKU KOSMETIK) COA 172789\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"NEEM LEAF LIQUID B (BHN BAKU KOSMETIK) COA 172789\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 172513\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ABSORAGE (BHN BAKU KOSMETIK) COA 172513\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIRJU (BHN BAKU KOSMETIK) COA 172567\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"CLAIRJU (BHN BAKU KOSMETIK) COA 172567\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 172071\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 172071\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETI) COA 172645\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNEBUSTERS (BHN BAKU KOSMETI) COA 172645\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALPINAWHITE (BHN BAKU KOSMETIK) COA 172512\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ALPINAWHITE (BHN BAKU KOSMETIK) COA 172512\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU MAKANAN) COA HPB1711138\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU MAKANAN) COA HPB1711138\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1802032 S/D 34, 36 S/D42\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"MEFENAMIC ACID (BHN BAKU OBAT) COA MA1802032 S/D 34, 36 S/D42\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLONIDINE HCL (BHN BAKU OBAT) COA 180839\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"CLONIDINE HCL (BHN BAKU OBAT) COA 180839\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANTOPRAZOLE SODIUM (STERILE) BHN BAKU OBAT, COA SI/PPZ/00090118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"PANTOPRAZOLE SODIUM (STERILE) BHN BAKU OBAT, COA SI/PPZ/00090118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121808520\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121808520\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PF.ANTI SHINE WASH (BHN BAKU KOSMETIK)COA 10300110\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PF.ANTI SHINE WASH (BHN BAKU KOSMETIK)COA 10300110\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLOMIPHENE CITRATE USP/EP (BHN BAKU OBAT ) COA 201706240002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"CLOMIPHENE CITRATE USP/EP (BHN BAKU OBAT ) COA 201706240002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLOPIDOGREL BISULFATE USP(BHN BAKU OBAT) COA Q300600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"CLOPIDOGREL BISULFATE USP(BHN BAKU OBAT) COA Q300600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101854517A533\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101854517A533\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CELLACTOSE (R) 80 (BHN BAKU OBAT) COA L100464617A535\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"CELLACTOSE (R) 80 (BHN BAKU OBAT) COA L100464617A535\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 70 (BHN BAKU OBAT) COA L101845017A545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 70 (BHN BAKU OBAT) COA L101845017A545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104315117A552\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104315117A552\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLOWLAC (R) 90 (BHN BAKU OBAT) COA L101534717A535\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"FLOWLAC (R) 90 (BHN BAKU OBAT) COA L101534717A535\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602840\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602840\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602839\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602839\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602836\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602836\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for P GINSENG DRY EXTRACT/ IDB (BHN BAKU SUPLEMEN) COA 32190/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"P GINSENG DRY EXTRACT/ IDB (BHN BAKU SUPLEMEN) COA 32190/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VACCINIUM MYRTILLUS DRY EX (BHN BAKU SUPLEMEN) COA 32501/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VACCINIUM MYRTILLUS DRY EX (BHN BAKU SUPLEMEN) COA 32501/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECHINACEA ANG DRY PURIF EX (BHN BAKU SUPLEMEN) COA 32226/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ECHINACEA ANG DRY PURIF EX (BHN BAKU SUPLEMEN) COA 32226/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SERENOA REPENS PURIFIED EXT (BHN BAKU SUPLEMEN) COA 32455/B/1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SERENOA REPENS PURIFIED EXT (BHN BAKU SUPLEMEN) COA 32455/B/1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA TRITERP (BHN BAKU SUPLEMEN) COA 32529/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA TRITERP (BHN BAKU SUPLEMEN) COA 32529/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA /PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 31730/H1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA /PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 31730/H1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 32529/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 32529/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRTOGENOL (R) BHN BAKU SUPLEMEN, COA 80343/M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MIRTOGENOL (R) BHN BAKU SUPLEMEN, COA 80343/M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5497417\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5497417\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5497417\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5497417\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMISOL TRIO (BHN BAKU KOSMETIK) COA 1717614\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"AMISOL TRIO (BHN BAKU KOSMETIK) COA 1717614\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829015555H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"B-WHITE (BHN BAKU KOSMETIK) COA 829015555H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL (BHN BAKU KOSMETIK), COA 830015925H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CAPIXYL (BHN BAKU KOSMETIK), COA 830015925H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK), COA 769015525H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CHRONOLINE (BHN BAKU KOSMETIK), COA 769015525H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXO H (BHN BAKU KOSMETIK) COA 715025820H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"EXO H (BHN BAKU KOSMETIK) COA 715025820H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANABLUE (BHN BAKU KOSMETIK) COA 5533018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LANABLUE (BHN BAKU KOSMETIK) COA 5533018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015372H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015372H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILIGEL TM (BHN BAKU KOSMETIK) COA 1732901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SILIGEL TM (BHN BAKU KOSMETIK) COA 1732901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784025908H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784025908H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830015769H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CAPIXYL (BHN BAKU KOSMETIK) COA 830015769H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769015578H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CHRONOLINE (BHN BAKU KOSMETIK) COA 769015578H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HELIOGEL TM (BHN BAKU KOSMETIK) COA 1732101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HELIOGEL TM (BHN BAKU KOSMETIK) COA 1732101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANABLUE (BHN BAKU KOSMETIK) COA 5533018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LANABLUE (BHN BAKU KOSMETIK) COA 5533018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LUBRIPHARM (R) SSF NF/JP SODIUM STEARYL FUMARATE (BHN BAKU OBAT) COA 121707690\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"LUBRIPHARM (R) SSF NF/JP SODIUM STEARYL FUMARATE (BHN BAKU OBAT) COA 121707690\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218010005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218010005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL PANTHENOL 50L (BHN BAKU KOSMETIK) COA TL01706630\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL PANTHENOL 50L (BHN BAKU KOSMETIK) COA TL01706630\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518010031,32\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518010031,32\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00511322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"AMPHISOL K (BHN BAKU KOSMETIK) COA VE00511322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO)(BHN BAKU KOSMETIK) COA UT17070761\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO)(BHN BAKU KOSMETIK) COA UT17070761\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180033 S/D 36\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180033 S/D 36\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT17090164\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT17090164\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180036,37,38\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180036,37,38\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001461085\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SLX (BHN BAKU KOSMETIK) COA 0001461085\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0518010031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0518010031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX ,200KG PLASTIC DRUM(BHN BAKUMKOSMETIK) COA 0518010031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX ,200KG PLASTIC DRUM(BHN BAKUMKOSMETIK) COA 0518010031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT17110248,254\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT17110248,254\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0317111726,728 S/D 732\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0317111726,728 S/D 732\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HS (BHN BAKU KOSMETIK) COA 0709160052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HS (BHN BAKU KOSMETIK) COA 0709160052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01709083\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01709083\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU OBAT) COA 201700426, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"AL HYD WET GEL VAC 20 (BHN BAKU OBAT) COA 201700426, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (BHN BAKU KOSMETIK) , COA 802192\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (BHN BAKU KOSMETIK) , COA 802192\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-96A-6CS (16KG) BHN BAKU KOSMETIK, COA 802944\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-96A-6CS (16KG) BHN BAKU KOSMETIK, COA 802944\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-0420218\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334910\", \"uraian\": \"DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-0420218\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SURELEASE ETHYLCELLULOSE ( BHN BAKU OBAT UTK PEWARNA TABLET) COA IN536166\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"SURELEASE ETHYLCELLULOSE ( BHN BAKU OBAT UTK PEWARNA TABLET) COA IN536166\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTABIO ARV-S (BHN BAKU OBAT) COA.1711211K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"ASTABIO ARV-S (BHN BAKU OBAT) COA.1711211K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EPA DHA 44 37 (BHN SUPLEMEN KESEHATAN) COA EE4437-180226\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"EPA DHA 44 37 (BHN SUPLEMEN KESEHATAN) COA EE4437-180226\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KAHLWAX 2956 (BHN BAKU KOSMETIK) COA F1807055-001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15211000\", \"uraian\": \"KAHLWAX 2956 (BHN BAKU KOSMETIK) COA F1807055-001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND BIO SODIUM HYALURONATE POWDER (MMW) (B. BAKU KOSMETIK)COA CHP2171025,1180221, 227\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND BIO SODIUM HYALURONATE POWDER (MMW) (B. BAKU KOSMETIK)COA CHP2171025,1180221, 227\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-132607, OHA-022328\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-132607, OHA-022328\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-022418\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-022418\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK)COA NMP-L-893107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK)COA NMP-L-893107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-012218\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-012218\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-092717, 010528\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-092717, 010528\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-021127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-021127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK)COA ARP-1110597\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK)COA ARP-1110597\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-022017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-022017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSFAC-021617\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSFAC-021617\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND GRAPE SEED EXTRACT(BHN BAKU KOSMETIK) COA GSC-K-012518\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND GRAPE SEED EXTRACT(BHN BAKU KOSMETIK) COA GSC-K-012518\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA EXTRACT ( BHN BAKU KOSMETIK), COA GKP 17084 EOU\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA EXTRACT ( BHN BAKU KOSMETIK), COA GKP 17084 EOU\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANACOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPLEMEN KESEHATAN) COA.1705724344\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANACOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPLEMEN KESEHATAN) COA.1705724344\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 17111307\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 17111307\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLOPURINOL BP (BHN BAKU OBAT) COA ALP0010218\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"ALLOPURINOL BP (BHN BAKU OBAT) COA ALP0010218\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BIO1207\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BIO1207\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RANITIDINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA RH193 02 18, 194 02 18...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29321900\", \"uraian\": \"RANITIDINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA RH193 02 18, 194 02 18...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT SD (BHN BAKU SUPLEMEN) COA WB08170239\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT SD (BHN BAKU SUPLEMEN) COA WB08170239\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAROCARE NAT BC 20PCT CWS/S-TG, 10KG BAG (BHN BAKU SUPLEMEN) COA EW19022001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"CAROCARE NAT BC 20PCT CWS/S-TG, 10KG BAG (BHN BAKU SUPLEMEN) COA EW19022001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GENIVIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"GENIVIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX ALU (BHN BAKU SUPLEMEN) COA WB01217437\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE 99PCT TG, 20KG BOX ALU (BHN BAKU SUPLEMEN) COA WB01217437\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT SD, 15KG BOXALU (BHN BAKU SUPLEMEN) COA WB08170238,239\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT SD, 15KG BOXALU (BHN BAKU SUPLEMEN) COA WB08170238,239\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17070052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17070052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17070052,53\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17070052,53\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT SD, 15KGBOXALU (BHN BAKU SUPLEMEN) COA WB08170239\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT SD, 15KGBOXALU (BHN BAKU SUPLEMEN) COA WB08170239\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0020663\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0020663\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIO VINACCIOLI RAFFINATO (BHN BAKU OBAT) COA.B1800050\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15152919\", \"uraian\": \"OLIO VINACCIOLI RAFFINATO (BHN BAKU OBAT) COA.B1800050\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0417070100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HMS (BHN BAKU KOSMETIK) COA 0417070100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180225\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180225\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ70613155\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ70613155\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D PANTHENOL (BHN BAKU KOSMETIK) COA TL01709083\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D PANTHENOL (BHN BAKU KOSMETIK) COA TL01709083\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91802205,206,207\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91802205,206,207\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT17090061\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT17090061\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OPI1710005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU KOSMETIK) COA OPI1710005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01703810\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01703810\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01703810\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01703810\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS KR-30 (BHN BAKU KOSMETIK) COA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS KR-30 (BHN BAKU KOSMETIK) COA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VISTANOL GDHR (BHN BAKU KOSMETIK) COA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"VISTANOL GDHR (BHN BAKU KOSMETIK) COA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 20 PREMIUM (BHN BAKU OBAT UTK PEWARNA TABLET) COA D184HC1021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 20 PREMIUM (BHN BAKU OBAT UTK PEWARNA TABLET) COA D184HC1021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602857\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602857\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602843\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602843\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602842\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602842\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602855\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602855\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602856\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602856\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602858\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602858\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602844\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602844\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602887\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602887\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602857\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602857\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602853\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602853\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602847\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602847\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602860\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602860\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602852\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602852\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602886\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602886\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601630\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601630\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602859\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602859\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602833\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602833\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602846\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602846\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602854\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602854\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 017.629\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 017.629\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CANNULA 25G PIX'L 0,5 X40 (BHN BAKU OBAT) COA 017.615\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"CANNULA 25G PIX'L 0,5 X40 (BHN BAKU OBAT) COA 017.615\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CANNULA 27G PIX'L 0,4X40 (BHN BAKU OBAT) COA 016,661\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"CANNULA 27G PIX'L 0,4X40 (BHN BAKU OBAT) COA 016,661\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SUBQ 2ML D16 (BHN BAKU OBAT) COA 15351-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE SUBQ 2ML D16 (BHN BAKU OBAT) COA 15351-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SKINB VITLIDO 1MLD16 (BHN BAKU OBAT) COA 15616-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE SKINB VITLIDO 1MLD16 (BHN BAKU OBAT) COA 15616-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML (BHN BAKU OBAT) COA 15713-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE LYFT LIDOCAINE 1ML (BHN BAKU OBAT) COA 15713-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE DEFYNE 1ML (BHN BAKU OBAT) COA 15613-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE DEFYNE 1ML (BHN BAKU OBAT) COA 15613-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA.201800078, 51\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA.201800078, 51\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP18013291, 292\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP18013291, 292\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702625877\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702625877\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TETRACYCLINE HYDROCHLORIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 180202-61\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29413000\", \"uraian\": \"TETRACYCLINE HYDROCHLORIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 180202-61\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP 5300 (BHN BAKU OBAT) COA 101769010,1769014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MAGNESIUM HYDROXIDE USP 5300 (BHN BAKU OBAT) COA 101769010,1769014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334541, 45,46, 47\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334541, 45,46, 47\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7324913\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7324913\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7242852\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7242852\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009829\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009829\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7325792\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7325792\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7324913\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7324913\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7193661\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7193661\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7340723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7340723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 7312572\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 7312572\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242852\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242852\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7250997\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7250997\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7018890\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7018890\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7291775\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7291775\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7235794\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7235794\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7198804\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7198804\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7325793\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7325793\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7297545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7297545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7142625,730565\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7142625,730565\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7193991\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7193991\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7324657.\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE STERILE RODAC EMPTY 65X15 MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7324657.\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7306543,7321586\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7306543,7321586\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 715167428\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 715167428\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7283691\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7283691\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7297693,8011939\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7297693,8011939\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7312538\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7312538\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7283675\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7283675\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7325764\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7325764\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7339618\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7339618\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7299963\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7299963\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8022543\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8022543\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8022544\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8022544\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8022544\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8022544\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK 90MM 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8022543\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT PACK 90MM 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8022543\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8022543\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8022543\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WAT 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7332733\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WAT 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7332733\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7317688\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7317688\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7349600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7349600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL BAIRD PARKER AGAR BASE 2KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7325760\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL BAIRD PARKER AGAR BASE 2KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7325760\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7317819\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7317819\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7276846\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7276846\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D-MANNOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7135976\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D-MANNOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7135976\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7276777\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7276777\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7220787\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7220787\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EE BROTH MOSSEL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7143744\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EE BROTH MOSSEL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7143744\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7297698\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7297698\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7198543\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7198543\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7142616\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7142616\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6278861\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6278861\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY BROTH STERILE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6271694\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY BROTH STERILE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6271694\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7363785\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7363785\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MICRO INOCULUM BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6342747\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MICRO INOCULUM BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6342747\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7306938\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MYCOPLASMA BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7306938\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7153524\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7153524\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7220793\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7220793\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PSEUDOMONAS AGAR F 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7177860\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PSEUDOMONAS AGAR F 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7177860\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7153977\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7153977\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7156779\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7156779\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7291693\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7291693\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SALICIN 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8032973\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SALICIN 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8032973\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE STOCK CULTURE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242925\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE STOCK CULTURE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242925\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY BROTH STERILE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 62716947\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY BROTH STERILE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 62716947\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7296858\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7296858\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7129691,802485\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7129691,802485\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7340723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7340723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7339766\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7339766\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE CRYSTAL E/ ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7335881\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"TUBE CRYSTAL E/ ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7335881\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7339624\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7339624\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY BROTH STERIL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6271694\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY BROTH STERIL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6271694\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8010924\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8010924\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8045999953\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8045999953\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8031785\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8031785\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8022543\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8022543\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7299963\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7299963\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8037783\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8037783\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8022544\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8022544\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7339579\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA IC XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7339579\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7338553\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7338553\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BEEF EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7296821\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BEEF EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7296821\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PROTEOSE PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8009830\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PROTEOSE PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8009830\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL CASAMINO ACIDS TECHNICAL 10KG (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7114555\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL CASAMINO ACIDS TECHNICAL 10KG (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7114555\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GRAM IODINE STABILIZED 250ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7340980\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE GRAM IODINE STABILIZED 250ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7340980\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CELLOBIOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8023615\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CELLOBIOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8023615\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB01217203\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB01217203\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20171201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20171201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01801643,1667,1756\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01801643,1667,1756\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG 3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT17090053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG 3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT17090053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-PANTHENOL 50L, 1000 KG IBC (BHN BAKU KOSMETIK) COA TL01801601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL-PANTHENOL 50L, 1000 KG IBC (BHN BAKU KOSMETIK) COA TL01801601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL, 1000KG IBC (BHN BAKU MAKANAN) COA TL01710816,817\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL, 1000KG IBC (BHN BAKU MAKANAN) COA TL01710816,817\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLASTIBASE 55W (BAHAN BAKU OBAT) COA.106788, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27129090\", \"uraian\": \"PLASTIBASE 55W (BAHAN BAKU OBAT) COA.106788, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DAMIANA EXTRACT (BHN BAKU OBAT) COA BNPD180201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"DAMIANA EXTRACT (BHN BAKU OBAT) COA BNPD180201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA ROA056184, ROA057187\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA ROA056184, ROA057187\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEG 400 (POLYETHYLENE GLYCOL) BAHAN BAKU KOSMETIK) COA.AKW0005174,5133,5043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PEG 400 (POLYETHYLENE GLYCOL) BAHAN BAKU KOSMETIK) COA.AKW0005174,5133,5043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA. 1GC01CLB ZP48D 250MT\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA. 1GC01CLB ZP48D 250MT\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIQUORICE LC (BHN BAKU KOSMETIK) COA.110036/P74489-P74492\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021920\", \"uraian\": \"LIQUORICE LC (BHN BAKU KOSMETIK) COA.110036/P74489-P74492\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN536075\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN536075\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN536519\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN536519\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN536097\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN536097\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN536090\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN536090\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTABIO ARV-S (BHN BAKU OBAT) COA.1711211K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"ASTABIO ARV-S (BHN BAKU OBAT) COA.1711211K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYL SULFONYL METHANE USP (BHN BAKU OBAT) COA 18021401\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"METHYL SULFONYL METHANE USP (BHN BAKU OBAT) COA 18021401\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20180216\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20180216\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GLUCOSAMINE HCL (BHN BAKU OBAT) COA JST20180128\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"GLUCOSAMINE HCL (BHN BAKU OBAT) COA JST20180128\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IRBESARTAN (BHN BAKU OBAT) COA C5465-17-036, C5465-17-044,045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"IRBESARTAN (BHN BAKU OBAT) COA C5465-17-036, C5465-17-044,045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 1802026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"ACESULFAME K (BHN BAKU OBAT) COA 1802026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INOSITOL (BHN BAKU OBAT) COA 201712147,48\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"INOSITOL (BHN BAKU OBAT) COA 201712147,48\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INOSITOL (BHN BAKU OBAT) COA 201712128\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"INOSITOL (BHN BAKU OBAT) COA 201712128\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FIBRE DRUM (DRUM KOSONG)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"48192000\", \"uraian\": \"FIBRE DRUM (DRUM KOSONG)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TETRACYCLINE HYDROCHLORIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 180202-61\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29413000\", \"uraian\": \"TETRACYCLINE HYDROCHLORIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 180202-61\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYTOFIX/CYTOPERM W/GOLGI STOP KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7346857\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CYTOFIX/CYTOPERM W/GOLGI STOP KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7346857\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7227994\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7227994\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GRAM SAFRANIN 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7347668\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE GRAM SAFRANIN 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7347668\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7340813\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7340813\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL B. PERTUSSIS ANTISERUM 1MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8045548\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL B. PERTUSSIS ANTISERUM 1MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8045548\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONL (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8010945\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONL (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8010945\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7291650\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7291650\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7347753\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7347753\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7289995\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7289995\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7146880\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7146880\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8031555\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8031555\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 FITC SK7 50 TESTS IVD (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 8011762\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 FITC SK7 50 TESTS IVD (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 8011762\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAIN BUFFER FBS 500ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7342968\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"STAIN BUFFER FBS 500ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7342968\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LYSING BUFFER 10X CONCENTRATE 100ML (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7346596\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"LYSING BUFFER 10X CONCENTRATE 100ML (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7346596\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7235889\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7235889\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8026653\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8026653\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8016851\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8016851\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8044954\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8044954\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8026870\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8026870\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7220771\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7220771\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7333763\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7333763\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7345542\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7345542\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8044550\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8044550\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD34 PERCP CY5.5 8G12 50 TESTS G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8043794\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD34 PERCP CY5.5 8G12 50 TESTS G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8043794\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYTOFIX /CYTOPERM SOLN KIT(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7346888\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CYTOFIX /CYTOPERM SOLN KIT(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7346888\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD183 PE-CY7 1C6/CXCR3 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7188713\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD183 PE-CY7 1C6/CXCR3 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7188713\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD4 APC SK3 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7030773\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD4 APC SK3 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7030773\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD4 PERCP SK3 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6285891\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD4 PERCP SK3 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6285891\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU IL 4 APC MP4-25D2 100UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7286765\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU IL 4 APC MP4-25D2 100UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7286765\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD25 FITC M-A251 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7019546\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD25 FITC M-A251 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7019546\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU FOXP3 ALEXA 647 259D/C7 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7177697\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU FOXP3 ALEXA 647 259D/C7 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7177697\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU IL-17A PE N49-653 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8004580\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU IL-17A PE N49-653 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8004580\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD20 FITC L27 100TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7303974\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD20 FITC L27 100TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7303974\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD64 APC H7 10.1 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7306651\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD64 APC H7 10.1 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7306651\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD36 HORIZON V450 CB38 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7251514\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD36 HORIZON V450 CB38 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7251514\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD7 APC M-T701 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7144949\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD7 APC M-T701 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7144949\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD3 BV421 UCHT1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8036773\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD3 BV421 UCHT1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8036773\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD10 BV421 HI10A 100TST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7040983\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD10 BV421 HI10A 100TST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7040983\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD138 BV421 MI15 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7341707\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD138 BV421 MI15 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7341707\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD19 BV510 SJ25C1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7292805\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD19 BV510 SJ25C1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7292805\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD14 BV421 MPHIP9 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7145789\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD14 BV421 MPHIP9 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7145789\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD43 APCH7 (1G10) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7181820\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD43 APCH7 (1G10) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7181820\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD103 BV421 BER-ACT8 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6266926\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD103 BV421 BER-ACT8 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6266926\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7324962\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE M-GREEN YEAST AND MOLD BROTH 500 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7324962\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8010945\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8010945\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7291650\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7291650\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7354964\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7354964\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7220822\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7220822\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7060799\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7060799\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE PENASE CONCENTRATE 10X20MI (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7340551\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"TUBE PENASE CONCENTRATE 10X20MI (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7340551\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7220790\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7220790\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6309655\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6309655\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD30 PE BERH8 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7272949\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD30 PE BERH8 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7272949\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD4 APC SK3 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7318894\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD4 APC SK3 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7318894\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FASTIMMUNE HU IFN-GMA FITC 25723 11 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7116967\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"FASTIMMUNE HU IFN-GMA FITC 25723 11 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7116967\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FASTIMMUNE HU IL 2 FITC 5344,111 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7307569\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"FASTIMMUNE HU IL 2 FITC 5344,111 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7307569\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD4 V4 FITC L120 50 YESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7108877\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD4 V4 FITC L120 50 YESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7108877\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD10 APC HI10A 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7348976\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD10 APC HI10A 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7348976\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD11B APC D12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8040948\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD11B APC D12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8040948\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD56 APC NCAM16.2 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7346929\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD56 APC NCAM16.2 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7346929\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD10 PE CY7 HI10A 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8024781\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD10 PE CY7 HI10A 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8024781\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI KAPPA FITC/ANTI LAMBDA PE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8023901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANTI KAPPA FITC/ANTI LAMBDA PE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8023901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD20 V500-C RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7296977\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD20 V500-C RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7296977\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD200 APC (MRC OX-104) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8032634\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD200 APC (MRC OX-104) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8032634\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD23 FITC EBVCS-5 RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8038570\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD23 FITC EBVCS-5 RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8038570\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD38 APC-H7 (HB7) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8046672\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD38 APC-H7 (HB7) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8046672\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP A (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6239952\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL N MENINGITIDIS ANTISERUM GRP A (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6239952\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP C (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7335666\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL N MENINGITIDIS ANTISERUM GRP C (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7335666\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP W135 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6267761\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL N MENINGITIDIS ANTISERUM GRP W135 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6267761\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP Y 1MI(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7117785\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL N MENINGITIDIS ANTISERUM GRP Y 1MI(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7117785\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O MENINGITIDIS POLY A (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7272548\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL O MENINGITIDIS POLY A (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7272548\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL BIBRIO CHOLERAE ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6309655\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL BIBRIO CHOLERAE ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6309655\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU FOXP3 BUFFER SET 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7222681,7303573\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU FOXP3 BUFFER SET 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7222681,7303573\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITASMOOTH (R) 041 (BHN BAKU OBAT) COA.121708222\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28365010\", \"uraian\": \"VITASMOOTH (R) 041 (BHN BAKU OBAT) COA.121708222\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 BHN BAKU OBAT, COA 121808483\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 BHN BAKU OBAT, COA 121808483\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121808399, 121808400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121808399, 121808400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 BHN BAKU OBAT, COA 121708249,121808399\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 BHN BAKU OBAT, COA 121708249,121808399\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA.M110433\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA.M110433\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KP-550 (BHN BAKU KOSMETIK) , COA 801087, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KP-550 (BHN BAKU KOSMETIK) , COA 801087, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for X-21-5666 (BHN BAKU KOSMETIK) , COA 707038, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"X-21-5666 (BHN BAKU KOSMETIK) , COA 707038, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY ORANGE (BAHAN BAKU UNTUK PEWARNA TABLET) COA. GA636230\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY ORANGE (BAHAN BAKU UNTUK PEWARNA TABLET) COA. GA636230\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA636231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA636231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 1802EF8411\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"L-ARGININE LO (BHN BAKU KOSMETIK),COA 1802EF8411\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA. 20180225\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17023010\", \"uraian\": \"DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA. 20180225\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID MONOHYDRATE BP2009/E330 8-40 MESH(BHN BAKU SUPLEMEN) COA 2AX1802040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID MONOHYDRATE BP2009/E330 8-40 MESH(BHN BAKU SUPLEMEN) COA 2AX1802040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NATURAL SOURCE MIXED TOCOPHEROLS (BHN BAKU KOSMETIK) COA 180111M001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"NATURAL SOURCE MIXED TOCOPHEROLS (BHN BAKU KOSMETIK) COA 180111M001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID MONOHYDRATE BP2009/E330 8-40 MESH(BHN BAKU SUPLEMEN) COA 1MT1802535\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID MONOHYDRATE BP2009/E330 8-40 MESH(BHN BAKU SUPLEMEN) COA 1MT1802535\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID MONOHYDRATE BP2009/E330 8-40 MESH(BHN BAKU SUPLEMEN) COA 2AX1802012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID MONOHYDRATE BP2009/E330 8-40 MESH(BHN BAKU SUPLEMEN) COA 2AX1802012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALPINIAWHITE (BHN BAKU KOSMETIK) COA 173199\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"ALPINIAWHITE (BHN BAKU KOSMETIK) COA 173199\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 173046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 173046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 172434\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 172434\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 172964\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 172964\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CINDERELLACARE (BHN BAKU KOSMETIK) COA 172128\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"CINDERELLACARE (BHN BAKU KOSMETIK) COA 172128\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IZAYOI (BHN BAKU KOSMETI) COA 172648\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"IZAYOI (BHN BAKU KOSMETI) COA 172648\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP06218\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP06218\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB01217057\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB01217057\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT17110079\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT17110079\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17070024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17070024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70803300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70803300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17050034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17050034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT17090165\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT17090165\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17050034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17050034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01704011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01704011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT17110004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT17110004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17070225\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17070225\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01709533\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01709533\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ71110181, 182\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ71110181, 182\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17070024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17070024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01710073\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01710073\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17090165\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17090165\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17110233\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17110233\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17050034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17050034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17070225\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17070225\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ70910171\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ70910171\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT17090165\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT17090165\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ70910172, UQ71110181\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ70910172, UQ71110181\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL0179533\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL0179533\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT17110079\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT17110079\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17070024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17070024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE ( BHN BAKU SUPLEMEN), COA UT17110233\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE ( BHN BAKU SUPLEMEN), COA UT17110233\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01710073\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01710073\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT17090165\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT17090165\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17050034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17050034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17110233\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17110233\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01707060,10072\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01707060,10072\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17070024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17070024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17110233\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17110233\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT17090165\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT17090165\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70706164\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70706164\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL01708070\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU MAKANAN) COA TL01708070\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN), COA UT17080054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN), COA UT17080054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17090165\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17090165\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CANTHAXANTHIN 10PCT CWS/S (BHN BAKU MAKANAN) COA UT17040004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"CANTHAXANTHIN 10PCT CWS/S (BHN BAKU MAKANAN) COA UT17040004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01709533\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01709533\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01705010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01705010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT17110004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT17110004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11710005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11710005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17080255\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17080255\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17050034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17050034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17080255\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17080255\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1710005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1710005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417064,65\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417064,65\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO),BHN BAKU SUPLEMEN, COA UT17080762,63,64\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO),BHN BAKU SUPLEMEN, COA UT17080762,63,64\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT17080054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT17080054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)BHN BAKU SUPLEMEN, COA UT17090165\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO)BHN BAKU SUPLEMEN, COA UT17090165\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334549,43,37\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334549,43,37\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHISOPRINOL (BHN BAKU OBAT) COA.MTP8020089\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"METHISOPRINOL (BHN BAKU OBAT) COA.MTP8020089\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLOPIDOGREL BISULFATE (BHN BAKU OBAT) COA AALH003210,2207,3317...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"CLOPIDOGREL BISULFATE (BHN BAKU OBAT) COA AALH003210,2207,3317...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA P-63\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA P-63\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC SODIUM ASCORBATE REGULAR, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPN1712158,61\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC SODIUM ASCORBATE REGULAR, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPN1712158,61\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPB1712113\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPB1712113\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH180202-ENBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH180202-ENBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN VIRGIN COLD PRESSED DEODORISED... (BHN BAKU KOSMETIK)COA ARHVD171105-SICBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ARGAN VIRGIN COLD PRESSED DEODORISED... (BHN BAKU KOSMETIK)COA ARHVD171105-SICBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LOTUS OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA NEN180202-H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LOTUS OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA NEN180202-H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSE OILY EXTRACT (BHN BAKU KOSMETIK)COA ROS180101-H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"ROSE OILY EXTRACT (BHN BAKU KOSMETIK)COA ROS180101-H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-180101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-180101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI17100009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI17100009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01709533\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01709533\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB01217057\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB01217057\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01712820,22\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01712820,22\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70803300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70803300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70803301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70803301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70803300, 3301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70803300, 3301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01709533\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01709533\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT17110079\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT17110079\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB01217057\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB01217057\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01710073\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01710073\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01710073\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01710073\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01710073\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01710073\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01710072,73\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01710072,73\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70803301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70803301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070-C3 (BHN BAKU MAKANAN) COA XW91712168\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070-C3 (BHN BAKU MAKANAN) COA XW91712168\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91802065\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91802065\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DWI BI (BHN BAKU MAKANAN) COA XW91802004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"DWI BI (BHN BAKU MAKANAN) COA XW91802004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91801288\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX 504010 (BHN BAKU MAKANAN) COA XW91801288\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91801291\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91801291\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DWI BI (BHN BAKU MAKANAN) COA XW91802004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"DWI BI (BHN BAKU MAKANAN) COA XW91802004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17120040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17120040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17120040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17120040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180H9G011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180H9G011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180HAF033\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180HAF033\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180HAF002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180HAF002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180H5D004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180H5D004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D0180GCR003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D0180GCR003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E15 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D011H8IL03\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E15 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D011H8IL03\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 112917/005062\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 112917/005062\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE BM PELLETS (BHN BAKU OBAT) COA 18E0405\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE BM PELLETS (BHN BAKU OBAT) COA 18E0405\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELLUCIRE 44/14 (BHN BAKU OBAT) COA 168325\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELLUCIRE 44/14 (BHN BAKU OBAT) COA 168325\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA 168325\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELUCIRE 44/14 (BHN BAKU OBAT) COA 168325\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FASTIMMUNE CD8 INTCELAR IFN N-GMA DTEC KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH7313842\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"FASTIMMUNE CD8 INTCELAR IFN N-GMA DTEC KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH7313842\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8051824\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8051824\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8053758\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8053758\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8031750,8051824\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8031750,8051824\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PUROLAN E 171 (BHN BAKU KOSMETIK) COA 5636115\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PUROLAN E 171 (BHN BAKU KOSMETIK) COA 5636115\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01801756,2876,2897\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01801756,2876,2897\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX TM COMPACTED, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B339954,60,63,64,65\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX TM COMPACTED, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B339954,60,63,64,65\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 20180317\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 20180317\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK COA B090218\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK COA B090218\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB060218\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB060218\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG301017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG301017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603386\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603386\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603391\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603391\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603403\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603403\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603317\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603317\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603413\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603413\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601324\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601324\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603412\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603412\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603387\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603387\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB I WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603129\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB I WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603129\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601630\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601630\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603396\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603396\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603406\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603406\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603405\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603405\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603392\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603392\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603407\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603407\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603397\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603397\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603410\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603410\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603399\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603399\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603411\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603411\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603398\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603398\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603468\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603468\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603468\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603468\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603468\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603468\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC CALCIUM ASCORBATE DC, 25KG BAL (BHN BAKU SUPLEMEN) , COA HPT1801019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC CALCIUM ASCORBATE DC, 25KG BAL (BHN BAKU SUPLEMEN) , COA HPT1801019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM GLUCONATE EP (BHN BAKU OBAT) COA CGA-EP1802017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"CALCIUM GLUCONATE EP (BHN BAKU OBAT) COA CGA-EP1802017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMIKACIN SULFATE (BHN BAKU OBAT) COA 7H0313H20\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"AMIKACIN SULFATE (BHN BAKU OBAT) COA 7H0313H20\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-171202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-171202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITICOLINE SODIUM (BHN BAKU OBAT), COA 171101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"CITICOLINE SODIUM (BHN BAKU OBAT), COA 171101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOXYCYCLINE HYDROCHLORIDE (BHN BAKU OBAT) COA DX180204004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29413000\", \"uraian\": \"DOXYCYCLINE HYDROCHLORIDE (BHN BAKU OBAT) COA DX180204004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT BLACK TEA POWDER TH B430 (BHN BAKU MAKANAN) COA 2018022401\""}, {"role": "assistant", "content": "{\"hs_code\" : \"9022010\", \"uraian\": \"INSTANT BLACK TEA POWDER TH B430 (BHN BAKU MAKANAN) COA 2018022401\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 INF OIL, 4,5KG PJUG (BHN BAKU SUPLEMEN) COA.TS00009740\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 INF OIL, 4,5KG PJUG (BHN BAKU SUPLEMEN) COA.TS00009740\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP18023040,41\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP18023040,41\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLOTRIMAZOLE MICRONIZED (BHN BAKU OBAT ) COA 201708010020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"CLOTRIMAZOLE MICRONIZED (BHN BAKU OBAT ) COA 201708010020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOTAXIME SODIUM EP (BHN BAKU OBAT) COA Q900500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOTAXIME SODIUM EP (BHN BAKU OBAT) COA Q900500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT (BHN BAKU OBAT) COA. NX2695\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT (BHN BAKU OBAT) COA. NX2695\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIDOCAINE BASE (BHN BAKU OBAT) COA. 186187\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"LIDOCAINE BASE (BHN BAKU OBAT) COA. 186187\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK)COA ARP-160628, ARP-222028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK)COA ARP-160628, ARP-222028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-1110597\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-1110597\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK) COA CPG-1012627\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK) COA CPG-1012627\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK)COA KFB-L-030827\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK)COA KFB-L-030827\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 2018B1010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 2018B1010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-011918, 022228\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-011918, 022228\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK) COA U180222\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK) COA U180222\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-021127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-021127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-022017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-022017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-893107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-893107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CAMELLIA JAPONICA SEED OIL(BHN BAKU KOSMETIK) COA CJSO-022628\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND CAMELLIA JAPONICA SEED OIL(BHN BAKU KOSMETIK) COA CJSO-022628\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC SODIUM ASCORBATE REGULAR, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPN1802094\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC SODIUM ASCORBATE REGULAR, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPN1802094\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 2752724\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 2752724\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RYBOXYL TM (BHN BAKU KOSMETIK) COA Q0566501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"RYBOXYL TM (BHN BAKU KOSMETIK) COA Q0566501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785016095J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785016095J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785015905J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785015905J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1800201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) COA 1800201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MATIPURE TM OIL FREE (BHN BAKU KOSMETIK), COA 1732002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MATIPURE TM OIL FREE (BHN BAKU KOSMETIK), COA 1732002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK), COA 828016098J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"NEUTRAZEN (BHN BAKU KOSMETIK), COA 828016098J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANACHRYS (DISC) (BHN BAKU KOSMETIK) COA 793024744G\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"LANACHRYS (DISC) (BHN BAKU KOSMETIK) COA 793024744G\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRO LIPO TM NEO (BHN BAKU KOSMETIK) COA 1803101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PRO LIPO TM NEO (BHN BAKU KOSMETIK) COA 1803101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 82901571H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"B-WHITE (BHN BAKU KOSMETIK) COA 82901571H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830015981J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CAPIXYL (BHN BAKU KOSMETIK) COA 830015981J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769015926J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CHRONOLINE (BHN BAKU KOSMETIK) COA 769015926J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5541818\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK) COA 5541818\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784025908H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784025908H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0703160006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0703160006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0703160006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0703160006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HS (BHN BAKU KOSMETIK) COA 0709160067\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HS (BHN BAKU KOSMETIK) COA 0709160067\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY C @50 ,20KG BOX NA (BHN BAKU KOSMETIK) COA UT17090154,155\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY C @50 ,20KG BOX NA (BHN BAKU KOSMETIK) COA UT17090154,155\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01703810\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01703810\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP07118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP07118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180227\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180227\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 171058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 171058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9 USP (BHN BAKU OBAT) COA 101702042\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"BARCROFT TM AL HYD GEL VISCO-9 USP (BHN BAKU OBAT) COA 101702042\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMBROXOL HYDROCHLORIDE POWDER (BHN BAKU OBAT) COA AHM/18003,18035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"AMBROXOL HYDROCHLORIDE POWDER (BHN BAKU OBAT) COA AHM/18003,18035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603762\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603762\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603113\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603113\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603763\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603763\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603856\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603856\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603856\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603856\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603856\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603856\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603869\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603869\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA.LC 049-7-801, 050-7-801, 051-7-801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 200 (BHN BAKU OBAT) COA.LC 049-7-801, 050-7-801, 051-7-801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA.08720318, 08710318,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA.08720318, 08710318,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE BP MICRONISED (BHN BAKU OBAT) COA 08760318, 08770318...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE BP MICRONISED (BHN BAKU OBAT) COA 08760318, 08770318...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 CN 10KG KA (BHN BAKU KOSMETIK) COA 1341529,1500432\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 CN 10KG KA (BHN BAKU KOSMETIK) COA 1341529,1500432\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GROTANOL 3025 CN 10KG KA (BHN BAKU KOSMETIK) COA 1340232,1501870\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GROTANOL 3025 CN 10KG KA (BHN BAKU KOSMETIK) COA 1340232,1501870\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 100 CN 10KG KA (BHN BAKU KOSMETIK) COA 1500429,1504890,1505113\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 100 CN 10KG KA (BHN BAKU KOSMETIK) COA 1500429,1504890,1505113\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 CN 200KG FA (BHN BAKU KOSMETIK) COA 1500517, 1504229\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 CN 200KG FA (BHN BAKU KOSMETIK) COA 1500517, 1504229\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 CN 10KG KA (BHN BAKU KOSMETIK) COA 1503895,1504622,1505152\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 CN 10KG KA (BHN BAKU KOSMETIK) COA 1503895,1504622,1505152\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 300 10KG KA (BHN BAKU KOSMETIK) COA 1335976\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 300 10KG KA (BHN BAKU KOSMETIK) COA 1335976\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 900 CN 10KG KA (BHN BAKU KOSMETIK) COA 1505836\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 900 CN 10KG KA (BHN BAKU KOSMETIK) COA 1505836\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 100 SAMPLE(S) 100 ML FL (B.BAKU KOSMETIK) COA 1333305,SAMPLE FREE OF CHARGE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 100 SAMPLE(S) 100 ML FL (B.BAKU KOSMETIK) COA 1333305,SAMPLE FREE OF CHARGE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 120 100ML FL (BHN BAKU KOSMETIK) COA 1333306, SAMPLE FREE OF CHARGE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 120 100ML FL (BHN BAKU KOSMETIK) COA 1333306, SAMPLE FREE OF CHARGE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 712 100ML FL (BHN BAKU KOSMETIK) COA 1340274,1500578\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 712 100ML FL (BHN BAKU KOSMETIK) COA 1340274,1500578\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXIL PE 9010 SAMPLE(S) 100 ML FL (BHN BAKU KOSMETIK) COA 1340276 , SAMPLE FREE OF CHARGE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXIL PE 9010 SAMPLE(S) 100 ML FL (BHN BAKU KOSMETIK) COA 1340276 , SAMPLE FREE OF CHARGE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 SAMPLE(S) 100 ML FL (BHN BAKU KOSMETIK) COA 1337764 SAMPLE(S) FREE OF CHARGE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 SAMPLE(S) 100 ML FL (BHN BAKU KOSMETIK) COA 1337764 SAMPLE(S) FREE OF CHARGE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIDIN DO 100ML FL (BHN BAKU KOSMETIK) COA 1335611 SAMPLE FREE OF CHARGE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIDIN DO 100ML FL (BHN BAKU KOSMETIK) COA 1335611 SAMPLE FREE OF CHARGE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROVIMIX C-EC, 25KG BOX/ALU (BHN BAKU OBAT UTK PAKAN TERNAK) COA TL01708312\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ROVIMIX C-EC, 25KG BOX/ALU (BHN BAKU OBAT UTK PAKAN TERNAK) COA TL01708312\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAROPHYLL YELLOW 10PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA UE01709532\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"CAROPHYLL YELLOW 10PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA UE01709532\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANTOPROZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT,COA APSS17005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"PANTOPROZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT,COA APSS17005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M529770,772,773\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M529770,772,773\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX POWDER (BHN BAKU OBAT) COA M483637\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE/ PURIMOX POWDER (BHN BAKU OBAT) COA M483637\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M595751,M595754\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M595751,M595754\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M529771\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M529771\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK,COA 01/17GL4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK,COA 01/17GL4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK,COA 01/17-GL4 ,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK,COA 01/17-GL4 ,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRET (LEMON 40 BRIX) (BHN BAKU OBAT) COA 01/17GL4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRET (LEMON 40 BRIX) (BHN BAKU OBAT) COA 01/17GL4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRET (LEMON 40 BRIX) (BHN BAKU OBAT) COA 01/17GL4 SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRET (LEMON 40 BRIX) (BHN BAKU OBAT) COA 01/17GL4 SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121808568\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121808568\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 18092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 18092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU SUPLEMEN) COA UT18030084\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU SUPLEMEN) COA UT18030084\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18010036\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18010036\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S -TG (BHN BAKU SUPLEMEN) COA UT18010002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S -TG (BHN BAKU SUPLEMEN) COA UT18010002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17110003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"OPTISHARP (ZEAXANTHIN) 5PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17110003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GENIVIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"GENIVIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17110053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17110053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18010036\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18010036\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0021988\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0021988\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA.08830318,08840318...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA.08830318,08840318...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RANITIDINE HCL (BHN BAKU OBAT) COA RH/03/2018 0386...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29321900\", \"uraian\": \"RANITIDINE HCL (BHN BAKU OBAT) COA RH/03/2018 0386...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0070118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0070118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 017.629\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 017.629\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CANNULA 23G PIX'L 0,6 X50 (BHN BAKU OBAT) COA 018.422\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"CANNULA 23G PIX'L 0,6 X50 (BHN BAKU OBAT) COA 018.422\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CANNULA 25G PIX'L 0,5X40 (BHN BAKU OBAT) COA 017.657\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"CANNULA 25G PIX'L 0,5X40 (BHN BAKU OBAT) COA 017.657\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CANNULA 25G PIX'L 0,5X40 (BHN BAKU OBAT) COA 018.405\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"CANNULA 25G PIX'L 0,5X40 (BHN BAKU OBAT) COA 018.405\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CANNULA 27G PIX'L 0,4X40 (BHN BAKU OBAT) COA 016.661\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"CANNULA 27G PIX'L 0,4X40 (BHN BAKU OBAT) COA 016.661\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SUBQ 2ML D16 (BHN BAKU OBAT) COA 15351-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE SUBQ 2ML D16 (BHN BAKU OBAT) COA 15351-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SKINB VITLIDO 1MLD16 (BHN BAKU OBAT) COA 15616-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE SKINB VITLIDO 1MLD16 (BHN BAKU OBAT) COA 15616-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE LIDOCAINE 1ML D16 (BHN BAKU OBAT) COA 15801-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE LIDOCAINE 1ML D16 (BHN BAKU OBAT) COA 15801-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE LYFT LLIDOCAINE 1ML (BHN BAKU OBAT) COA 15755-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE LYFT LLIDOCAINE 1ML (BHN BAKU OBAT) COA 15755-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE LYFT LIDOCAINE 1 ML (BHN BAKU OBAT) COA 15799-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE LYFT LIDOCAINE 1 ML (BHN BAKU OBAT) COA 15799-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE DEFYNE 1ML (BHN BAKU OBAT) COA 15808-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE DEFYNE 1ML (BHN BAKU OBAT) COA 15808-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE KYSSE 1ML (BHN BAKU OBAT) COA15761-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE KYSSE 1ML (BHN BAKU OBAT) COA15761-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WITCH HAZEL PHYTLENE EG 138 (BHN BAKU KOSMETIK)COA EG138-171102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"WITCH HAZEL PHYTLENE EG 138 (BHN BAKU KOSMETIK)COA EG138-171102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK)COA EG138- 170601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK)COA EG138- 170601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK)COA EG138 - 171102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK)COA EG138 - 171102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH180303-ENBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH180303-ENBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA.201800106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA.201800106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA636683\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA636683\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180HCV002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180HCV002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180HCU002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180HCU002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIOTOX (R) (BHN BAKU OBAT UTK PAKAN TERNAK) COA 050418-256\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"BIOTOX (R) (BHN BAKU OBAT UTK PAKAN TERNAK) COA 050418-256\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for E.C.O TRACE ZN 25PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC270218\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"E.C.O TRACE ZN 25PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC270218\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for E.C.O TRACE MN 20PCT (BHN BAKU UTK PAKAN TERNAK) COA BC290118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"E.C.O TRACE MN 20PCT (BHN BAKU UTK PAKAN TERNAK) COA BC290118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETAPRO 300 (BHN BAKU OBAT UTK PAKAN TERNAK) COA 220318-219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"BETAPRO 300 (BHN BAKU OBAT UTK PAKAN TERNAK) COA 220318-219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY FX YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA637160\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY FX YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA637160\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP07418\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP07418\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNOLIA BARK EXTRACT (BHN BAKU KOSMETIK) COA MBE05-171202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MAGNOLIA BARK EXTRACT (BHN BAKU KOSMETIK) COA MBE05-171202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-1709020/35678\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-1709020/35678\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 59090P\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 59090P\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRAZINAMIDE USP (BHN BAKU OBAT) COA PZ 212 C 18, PZ 213 C 18...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"PYRAZINAMIDE USP (BHN BAKU OBAT) COA PZ 212 C 18, PZ 213 C 18...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RANITIDINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA RH229 03 18...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29321900\", \"uraian\": \"RANITIDINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA RH229 03 18...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FRAMYCETINE SULFATE (BHN BAKU OBAT) COA F1700008/02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"FRAMYCETINE SULFATE (BHN BAKU OBAT) COA F1700008/02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOPROFEN (BHN BAKU OBAT) COA.187512\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29183000\", \"uraian\": \"KETOPROFEN (BHN BAKU OBAT) COA.187512\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA.201800091\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA.201800091\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE ACETATE ANHYDROUS MICRONISED PH EUR USP (BHN BAKU OBAT) COA 1502103347\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE ACETATE ANHYDROUS MICRONISED PH EUR USP (BHN BAKU OBAT) COA 1502103347\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLUOROMETHOLONE MICRONISED USP BP JP (BHN BAKU OBAT) COA 1701255296\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"FLUOROMETHOLONE MICRONISED USP BP JP (BHN BAKU OBAT) COA 1701255296\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA P-63\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA P-63\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAPROTILINE HCL (BHN BAKU OBAT) COA 1750001555\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29214900\", \"uraian\": \"MAPROTILINE HCL (BHN BAKU OBAT) COA 1750001555\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for P GINSENG DRY EXTRACT10PCT COL (BHN BAKU SUPLEMEN) COA 32446/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"P GINSENG DRY EXTRACT10PCT COL (BHN BAKU SUPLEMEN) COA 32446/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTRACT 2PCT COLOR (BAHAN BAKU SUPPLEMEN) COA 10726/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTRACT 2PCT COLOR (BAHAN BAKU SUPPLEMEN) COA 10726/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10727/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10727/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10399/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10399/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10729/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10729/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LORATADINE EP (MICRONIZED) (BHN BAKU SUPLEMEN) COA LRH8092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"LORATADINE EP (MICRONIZED) (BHN BAKU SUPLEMEN) COA LRH8092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYLPOL 980 BAHAN BAKU KOSMETIK) COA 11517068, 69\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACRYLPOL 980 BAHAN BAKU KOSMETIK) COA 11517068, 69\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180316\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180316\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLAISANCE P116808 (BHN BAKU KOSMETIK) COA 0000013174\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"PLAISANCE P116808 (BHN BAKU KOSMETIK) COA 0000013174\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA.0000013176\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA.0000013176\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA 1 P001062 (BHN BAKU KOSMETIK) COA 0000011542\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA 1 P001062 (BHN BAKU KOSMETIK) COA 0000011542\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY C (R) 50, 20KG BOX NA (BHN BAKU KOSMETIK) COA UT17090155,160,161\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY C (R) 50, 20KG BOX NA (BHN BAKU KOSMETIK) COA UT17090155,160,161\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D. PANTHENOL 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01710098,12104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D. PANTHENOL 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01710098,12104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OPI1710010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU KOSMETIK) COA OPI1710010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL. PANTHENOL 50L (BHN BAKU KOSMETIK) COA TL01706630\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL. PANTHENOL 50L (BHN BAKU KOSMETIK) COA TL01706630\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01703810,7811,14\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01703810,7811,14\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001467727\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SLX (BHN BAKU KOSMETIK) COA 0001467727\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY C (R) 50 ,20KG BOX ALU (BHN BAKU KOSMETIK) COA UE01707028,29\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY C (R) 50 ,20KG BOX ALU (BHN BAKU KOSMETIK) COA UE01707028,29\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01705010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE01705010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0817030011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0817030011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0317111743\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0317111743\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY C (R) 50, 5KG BAG ALU EX US (BHN BAKU KOSMETIK) COA UT17060074\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY C (R) 50, 5KG BAG ALU EX US (BHN BAKU KOSMETIK) COA UT17060074\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY C (R) 50, 5KG ALU EX US (BHN BAKU KOSMETIK) COA UT17060074\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY C (R) 50, 5KG ALU EX US (BHN BAKU KOSMETIK) COA UT17060074\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0317111743 S/D 751\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0317111743 S/D 751\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 3020 EE P OIL (BHN BAKU SUPLEMEN) COA.TS00009887\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 3020 EE P OIL (BHN BAKU SUPLEMEN) COA.TS00009887\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NONIVAMIDE (SYNTHETIC CAPSAICIN)BHN BAKU KOSMETIK, COA.20180305\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"NONIVAMIDE (SYNTHETIC CAPSAICIN)BHN BAKU KOSMETIK, COA.20180305\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TERPINEOL ( BHN BAKU OBAT), COA 232-268-1, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"TERPINEOL ( BHN BAKU OBAT), COA 232-268-1, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AVOCADO OIL REFINED DAC EXTRACT (BHN BAKU KOSMETIK) COA 144955\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AVOCADO OIL REFINED DAC EXTRACT (BHN BAKU KOSMETIK) COA 144955\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JOJOBA OIL VIRGIN LOW ODOUR (BHN BAKU KOSMETIK) COA 142876\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"JOJOBA OIL VIRGIN LOW ODOUR (BHN BAKU KOSMETIK) COA 142876\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604085\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604085\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB01017174\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB01017174\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A+ D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18020037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A+ D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18020037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB01017174\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB01017174\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18030017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18030017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17110018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"REDIVIVO (R) (LYCOPENE) 10PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17110018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17110053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17110053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A AND D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18010036,37\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A AND D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18010036,37\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GENIVIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010017,22\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"GENIVIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010017,22\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COATED ASCORBIC ACID TYPE EC ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01802855\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"COATED ASCORBIC ACID TYPE EC ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01802855\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB01017174\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB01017174\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18030017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18030017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17110018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"REDIVIVO (R) (LYCOPENE) 10PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17110018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17110053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17110053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18020037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18020037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX ALU (BHN BAKU SUPLEMEN) COA WB01217437\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE 99PCT TG, 20KG BOX ALU (BHN BAKU SUPLEMEN) COA WB01217437\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P8O13QA000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL TX (BHN BAKU KOSMETIK) COA P8O13QA000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ70407016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ70407016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FDANDC BLUE #1/BRILLIANT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP794695\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FDANDC BLUE #1/BRILLIANT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP794695\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FDANDC BLUE #1/BRILLIANT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP794694\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FDANDC BLUE #1/BRILLIANT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP794694\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DANDC YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP787037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"DANDC YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP787037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FDANDC RED #40/ALLURA RED AC AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP791916\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FDANDC RED #40/ALLURA RED AC AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP791916\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FDANDC YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP789485\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FDANDC YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP789485\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DANDC YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP787036\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"DANDC YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP787036\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP769011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"ERYTHROSINE AL 38PCT-42PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP769011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C BLUE #1/BRILLIANT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP776213\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C BLUE #1/BRILLIANT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP776213\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AC019KC PHYTOVITYL C 5KG (BHN BAKU KOSMETIK) COA 0021618\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AC019KC PHYTOVITYL C 5KG (BHN BAKU KOSMETIK) COA 0021618\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0703160010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0703160010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18010019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18010019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218010005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218010005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0703160010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0703160010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-PANTHENOL 50L (BHN BAKU KOSMETIK) COA TL01706630\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL-PANTHENOL 50L (BHN BAKU KOSMETIK) COA TL01706630\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0703160010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0703160010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL.A.TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18010019,21\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL.A.TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18010019,21\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA MCS1605181\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA MCS1605181\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTABIO ARV-S (BHN BAKU OBAT) COA.1711211K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"ASTABIO ARV-S (BHN BAKU OBAT) COA.1711211K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702625877\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702625877\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID DC 97PCT, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG1712006,1712007,1801002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID DC 97PCT, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG1712006,1712007,1801002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VISTANOL NPGC (BHN BAKU KOSMETIK) COA KCK\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"VISTANOL NPGC (BHN BAKU KOSMETIK) COA KCK\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VISTANOL GDHR (BHN BAKU KOSMETIK) COA DKI\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"VISTANOL GDHR (BHN BAKU KOSMETIK) COA DKI\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS SILK-1000 (BHN BAKU KOSMETIK) COA KDM\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS SILK-1000 (BHN BAKU KOSMETIK) COA KDM\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS S-CAQ (BHN BAKU KOSMETIK) COA KBB\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS S-CAQ (BHN BAKU KOSMETIK) COA KBB\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA KCF\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA KCF\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MILD TALCUM MOD1 (BHN BAKU KOSMETIK)COA 10300125\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MILD TALCUM MOD1 (BHN BAKU KOSMETIK)COA 10300125\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 17-03-18\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25070000\", \"uraian\": \"KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 17-03-18\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121808631\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121808631\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M.31.0PCT (BHN BAKU OBAT) COA 101729037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MG HYD PASTE USP TYPE M.31.0PCT (BHN BAKU OBAT) COA 101729037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE POWDER (BHN BAKU MAKANAN) COA 0000159087\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE POWDER (BHN BAKU MAKANAN) COA 0000159087\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA ROA086183\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA ROA086183\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA ROA088184\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA ROA088184\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603113\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603113\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603549\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603549\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603646\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603646\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603643\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603643\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603649\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603649\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603637\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603637\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603633\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603633\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603650\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603650\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603636\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603636\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603635\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603635\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603630\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603630\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603638\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603638\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603645\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603645\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603648\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603648\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603634\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603634\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603632\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603632\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603644\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603644\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603631\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603631\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17070024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17070024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI17100009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI17100009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17080255\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17080255\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11710008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11710008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU MAKANAN) COA WB00417070\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU MAKANAN) COA WB00417070\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01801011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01801011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17120259\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17120259\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ71210205\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ71210205\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17120259\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17120259\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL A TOCOPHEROL (BHN BAKU MAKANAN) COA UT17110077\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL A TOCOPHEROL (BHN BAKU MAKANAN) COA UT17110077\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01709595\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01709595\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 254KG BOX/ALU (BHN BAKU MAKANAN) COA TL01709595\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 254KG BOX/ALU (BHN BAKU MAKANAN) COA TL01709595\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL A TOCOPHEROL (BHN BAKU MAKANAN) COA UT17110077\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL A TOCOPHEROL (BHN BAKU MAKANAN) COA UT17110077\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL A TOCOPHEROL (BHN BAKU MAKANAN) COA UT17110077\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL A TOCOPHEROL (BHN BAKU MAKANAN) COA UT17110077\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL A TOCOPHEROL (BHN BAKU MAKANAN) COA UT17110077\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL A TOCOPHEROL (BHN BAKU MAKANAN) COA UT17110077\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01801010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01801010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D PANTOTHENATE (BHN BAKU MAKANAN) COA TL01711797\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D PANTOTHENATE (BHN BAKU MAKANAN) COA TL01711797\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01801010, 1801011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01801010, 1801011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D PANTOTHENATE (BHN BAKU MAKANAN) COA TL01711797\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D PANTOTHENATE (BHN BAKU MAKANAN) COA TL01711797\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D PANTOTHENATE (BHN BAKU MAKANAN) COA TL01711797\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D PANTOTHENATE (BHN BAKU MAKANAN) COA TL01711797\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D PANTOTHENATE, 25KG BOXI (BHN BAKU SUPLEMEN) COA TL01711797\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D PANTOTHENATE, 25KG BOXI (BHN BAKU SUPLEMEN) COA TL01711797\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01801010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01801010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B CAROTENE 10PCT CW/S (BHN BAKU SUPLEMEN) COA UT17110063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B CAROTENE 10PCT CW/S (BHN BAKU SUPLEMEN) COA UT17110063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01801011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01801011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01801011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01801011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17110063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17110063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01701110\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01701110\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17070024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17070024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL GRADE (BHN BAKU SUPLEMEN) COA UQ70309009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL GRADE (BHN BAKU SUPLEMEN) COA UQ70309009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI17100009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI17100009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01701110\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01701110\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01705010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01705010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11710008,10010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11710008,10010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417070\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417070\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00517027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00517027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01709595\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01709595\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D A TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20170305\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D A TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20170305\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD(BHN BAKU SUPLEMEN) COA UT17110004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD(BHN BAKU SUPLEMEN) COA UT17110004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17080068,69\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17080068,69\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17090069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17090069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17090069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17090069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17090069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17090069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17090069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17090069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT17080068\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT17080068\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17080068\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17080068\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17080068\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17080068\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01710074,83\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01710074,83\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17080068\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17080068\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT17080068\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT17080068\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17080068\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17080068\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT17110082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT17110082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT17110081,82\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT17110081,82\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT17110082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT17110082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL A TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT17090061\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL A TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT17090061\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL A TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT17090061\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL A TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT17090061\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01705010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU MAKANAN) COA UE01705010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL A TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT17120259\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL A TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT17120259\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT17110082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT17110082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602850\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602850\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602851\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602851\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603401\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603401\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603153\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603153\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603788\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603788\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603939\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603939\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603944\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603944\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603945\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603945\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603947\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603947\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603928\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603928\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603644\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603644\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603942\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603942\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603927\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603927\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91803133\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91803133\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01708082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01708082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01708082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01708082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01708082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01708082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL A TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT17110077,79\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL A TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT17110077,79\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL01708082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL01708082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17120062\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17120062\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT17120065\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT17120065\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT17120062\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT17120062\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01708070\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01708070\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID FINE POWDER (BHN BAKU SUPLEMEN) COA TL01611698\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID FINE POWDER (BHN BAKU SUPLEMEN) COA TL01611698\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11710008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11710008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17120259\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17120259\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT17110082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT17110082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01705010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU MAKANAN) COA UE01705010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL A TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT17120259\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL A TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT17120259\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70813196\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70813196\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70813196\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70813196\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91802195\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX 504010 (BHN BAKU MAKANAN) COA XW91802195\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX 204005 (BHN BAKU MAKANAN) COA XW91803167\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX 204005 (BHN BAKU MAKANAN) COA XW91803167\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE AM PELLETS (BHN BAKU OBAT) COA 18E0104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE AM PELLETS (BHN BAKU OBAT) COA 18E0104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 17E5106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 17E5106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALUMINIUM HYDROXIDE GEL VAC 20 STERILISED (BHN BAKU OBAT UTK PAKAN TERNAK) COA.201700426\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"ALUMINIUM HYDROXIDE GEL VAC 20 STERILISED (BHN BAKU OBAT UTK PAKAN TERNAK) COA.201700426\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID S 67F (BHN BAKU OBAT) COA.576200-2180021/001-006 (6)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232010\", \"uraian\": \"LIPOID S 67F (BHN BAKU OBAT) COA.576200-2180021/001-006 (6)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INOSITOL (BHN BAKU OBAT) COA 201801020, 201801021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"INOSITOL (BHN BAKU OBAT) COA 201801020, 201801021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 1803039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"ACESULFAME K (BHN BAKU OBAT) COA 1803039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 100 (BHN BAKU OBAT UTK PEWARNA TABLET) COA D184H6K021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 100 (BHN BAKU OBAT UTK PEWARNA TABLET) COA D184H6K021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP04018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP04018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIUSID AQUA ORAL SOLUTION (PAKAN IKAN BERBENTUK CAIR) COA R-1 01-21\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"VIUSID AQUA ORAL SOLUTION (PAKAN IKAN BERBENTUK CAIR) COA R-1 01-21\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIUSID AQUA APLICATIONS CATALOGUE, GOODS WITHOUT COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"49111010\", \"uraian\": \"VIUSID AQUA APLICATIONS CATALOGUE, GOODS WITHOUT COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIUSID AQUA PRODUCTIVITY CATALOQUE, GOODS WITHOUT COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"49111010\", \"uraian\": \"VIUSID AQUA PRODUCTIVITY CATALOQUE, GOODS WITHOUT COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIUSID AQUA INGLES SHRIMP PRODUCTIVITY CATALOQUE, GOODS WITHOUT COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"49111010\", \"uraian\": \"VIUSID AQUA INGLES SHRIMP PRODUCTIVITY CATALOQUE, GOODS WITHOUT COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNOLIA BARK EXTRACT (BHN BAKU KOSMETIK) COA MBE05-180301/39880\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MAGNOLIA BARK EXTRACT (BHN BAKU KOSMETIK) COA MBE05-180301/39880\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604395\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604395\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604269\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604269\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA.18100227, 230\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA.18100227, 230\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 23-03-18\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25070000\", \"uraian\": \"KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 23-03-18\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM AL HYD GEL VISCO 9 , USP (BHN BAKU OBAT) COA.101802002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"BARCROFT TM AL HYD GEL VISCO 9 , USP (BHN BAKU OBAT) COA.101802002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA.101823002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA.101823002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 101823002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 101823002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU OBAT) COA. 201700426\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"AL HYD WET GEL VAC 20 (BHN BAKU OBAT) COA. 201700426\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702605740\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702605740\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S67/18\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S67/18\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 17E5106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 17E5106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEVOFLOXACIN HEMIHYDRATE (FREE ALKALINE) (BHN BAKU OBAT) COA C008-1706607\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"LEVOFLOXACIN HEMIHYDRATE (FREE ALKALINE) (BHN BAKU OBAT) COA C008-1706607\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8010924\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8010924\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7363823\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7363823\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8043642\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8043642\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7109945\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7109945\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8068984\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8068984\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8043642\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8043642\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7333552\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7333552\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 7338553\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 7338553\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7178809\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7178809\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7332733\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7332733\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7363823\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7363823\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6228993,7251553\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6228993,7251553\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7363844\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7363844\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7305888,5891\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7305888,5891\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060815\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060815\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8045524\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8045524\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE L ARABINOSE 25G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8058779\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE L ARABINOSE 25G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8058779\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8079517\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8079517\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7278689\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7278689\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8043642\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8043642\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8043642\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8043642\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8037570\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8037570\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8045524,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8045524,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PERMEABILIZING SOLUTION 2 10X 500 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7353841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PERMEABILIZING SOLUTION 2 10X 500 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7353841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SOLUTION CLEANING CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1747C509\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"SOLUTION CLEANING CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1747C509\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7207624\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7207624\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8037783\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8037783\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASSY FSC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) SAMPLE CUSTOM DECLARATION PURPOSE ONLY\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ASSY FSC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) SAMPLE CUSTOM DECLARATION PURPOSE ONLY\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASSY SSC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) SAMPLE CUSTOM DECLARATION PURPOSE ONLY\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ASSY SSC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) SAMPLE CUSTOM DECLARATION PURPOSE ONLY\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MATCHED SIP/FLOW CELL DRY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) SAMPLE CUSTOM DECLARATION...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"MATCHED SIP/FLOW CELL DRY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) SAMPLE CUSTOM DECLARATION...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8051624\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8051624\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8037572\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8037572\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7317828\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7317828\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7349609\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE XLD AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7349609\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7349600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7349600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7198543\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7198543\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BEEF EXTRACT POWDER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8011683\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BEEF EXTRACT POWDER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8011683\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7291775\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7291775\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 5 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7177779\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 5 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7177779\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRAIN HEART INFUSION AGAR 500 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7220797\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRAIN HEART INFUSION AGAR 500 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7220797\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8081784\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8081784\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DERMATOPHYTE TEST MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8024888\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DERMATOPHYTE TEST MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8024888\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D-MANNOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7135976\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D-MANNOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7135976\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7306629\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7306629\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DULCITOL 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8066833\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DULCITOL 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8066833\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7143744\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EE BROTH MOSSEL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7143744\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7198543\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7198543\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LITMUS MILK BBL 500GI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8058939\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LITMUS MILK BBL 500GI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8058939\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7177823,7363845\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7177823,7363845\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PSEUDOMONAS AGAR F 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7177860\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PSEUDOMONAS AGAR F 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7177860\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7153977\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7153977\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7156779\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7156779\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7291693\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7291693\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE STOCK CULTURE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8012616\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE STOCK CULTURE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8012616\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8012632\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8012632\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER LACTOPHENOL COTTON BLUE STAIN (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7332867\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER LACTOPHENOL COTTON BLUE STAIN (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7332867\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7193914\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7193914\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PROTEOSE PEPTONE NO.3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8059926\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PROTEOSE PEPTONE NO.3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8059926\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR NOBLE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7256726\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE AGAR NOBLE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7256726\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MED 3 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7278568\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MED 3 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7278568\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GASPAK EZ LARGE INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7279340010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"GASPAK EZ LARGE INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7279340010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT MAINTENANCE FLOW CYT 2 MONTH (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8046672\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT MAINTENANCE FLOW CYT 2 MONTH (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8046672\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7268937\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7268937\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8031750\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8031750\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7319536,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7319536,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8046743\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8046743\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8012638\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8012638\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7314928\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7314928\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7356665\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7356665\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 7289995\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 7289995\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLARAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8005940\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL VIBRIO CHOLARAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8005940\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3MI (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7237643\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS OGAWA 3MI (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7237643\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7324962\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7324962\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7268937\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7268937\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8031750,8043649\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8031750,8043649\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7153980\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7153980\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8058733\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8058733\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7153980\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7153980\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7347753,..\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7347753,..\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD10 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7352771,8059702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD10 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7352771,8059702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7235889\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7235889\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 APC SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8064632\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 APC SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8064632\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7333561\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7333561\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD17 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8026653\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD17 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8026653\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8025579.\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANTI MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8025579.\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8044954\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8044954\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8026870\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8026870\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8009536\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8009536\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8046521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8046521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 PERCP SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8051656\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 PERCP SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8051656\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7345542\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7345542\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI HLA DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8015843\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANTI HLA DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8015843\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 PERCP 2D1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7317768,8022712\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD45 PERCP 2D1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7317768,8022712\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FASTIMMUNE COSTIM CD28/CD49D 0.3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7299715\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"FASTIMMUNE COSTIM CD28/CD49D 0.3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7299715\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8031925\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8031925\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8044550,8073612\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8044550,8073612\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD4 FITC RPA-T4 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6340599\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD4 FITC RPA-T4 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6340599\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7125585\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7125585\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU HLA DR FITC L243 (G46-6) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8046823\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU HLA DR FITC L243 (G46-6) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8046823\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LYSING BUFFER 10X CONCENTRATE 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8024769\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"LYSING BUFFER 10X CONCENTRATE 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8024769\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANNEXIN V FITC APOP DTEC KIT I 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7347717\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANNEXIN V FITC APOP DTEC KIT I 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7347717\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD CST BEADS KIT 50TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 72926\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BD CST BEADS KIT 50TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 72926\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 APC H7 SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8024881\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 APC H7 SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8024881\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD34 PE 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7159622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD34 PE 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7159622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121830\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121830\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7237643\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS OGAWA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7237643\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT 10X10MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7228748\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"TUBE EGG YOLK ENRICHMENT 50PCT 10X10MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7228748\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8031760\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ANAEROBE ID (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8031760\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8031760\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8031760\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SUPPLEMENT C 6X5ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8030960\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SUPPLEMENT C 6X5ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8030960\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6309655\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6309655\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMBERLITE IRP88 POLACRILIN( BHN BAKU OBAT UTK PEWARNA TABLET) COA. E709I17004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AMBERLITE IRP88 POLACRILIN( BHN BAKU OBAT UTK PEWARNA TABLET) COA. E709I17004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA ROA088183\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA ROA088183\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E4M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180FB8021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E4M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180FB8021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180HB7002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180HB7002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL A15 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180H9U021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL A15 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180H9U021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL A15 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180H2J02B\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL A15 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180H2J02B\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL A15 PREMIUM LV ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180H9U021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL A15 PREMIUM LV ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180H9U021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E15 PREMIUM LV ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011G93L01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E15 PREMIUM LV ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011G93L01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E15 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D011GBQL02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E15 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D011GBQL02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E5 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D011HA5L01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E5 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D011HA5L01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E5 PREMIUM LV ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011HA2L02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E5 PREMIUM LV ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011HA2L02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E5 PREMIUM LV ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011H6DL01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E5 PREMIUM LV ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011H6DL01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E5 PREMIUM LV ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011G9NL02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E5 PREMIUM LV ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011G9NL02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180H5N001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180H5N001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180HAR001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180HAR001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180HAN002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180HAN002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180HAK002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180HAK002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANOLINE ANHYDROUS (BHN BAKU KOSMETIK) COA 4137, 4503\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LANOLINE ANHYDROUS (BHN BAKU KOSMETIK) COA 4137, 4503\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MATCHA GREEN TEA EXTRACT CSP 6 TC ( BHN BAKU KOSMETIK), COA CSP 18002 EOU\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MATCHA GREEN TEA EXTRACT CSP 6 TC ( BHN BAKU KOSMETIK), COA CSP 18002 EOU\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIOTOX (BHN BAKU OBAT UTK PAKAN TERNAK) COA 050418-256\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"BIOTOX (BHN BAKU OBAT UTK PAKAN TERNAK) COA 050418-256\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for E.C.O TRACE ZN 25PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC270218\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"E.C.O TRACE ZN 25PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC270218\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for E.C.O TRACE MN 20PCT (BHN BAKU UTK PAKAN TERNAK) COA BC290118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"E.C.O TRACE MN 20PCT (BHN BAKU UTK PAKAN TERNAK) COA BC290118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETAPRO 300 (BHN BAKU OBAT UTK PAKAN TERNAK) COA 220318-219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"BETAPRO 300 (BHN BAKU OBAT UTK PAKAN TERNAK) COA 220318-219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for E.C.O TRACE FE 20PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC310118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"E.C.O TRACE FE 20PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC310118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 18040309\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 18040309\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP18043162, 43163\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP18043162, 43163\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANTOPROZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT,COA APSS17005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"PANTOPROZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT,COA APSS17005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS FUMARATE USP/EP (BHN BAKU OBAT) COA.2018/86\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"FERROUS FUMARATE USP/EP (BHN BAKU OBAT) COA.2018/86\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLOPURINOL (BHN BAKU OBAT) COA 17073AY3ARII, 17081AY3ARII\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"ALLOPURINOL (BHN BAKU OBAT) COA 17073AY3ARII, 17081AY3ARII\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIOTOX (BHN BAKU OBAT UTK PAKAN TERNAK) COA 050418-256\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"BIOTOX (BHN BAKU OBAT UTK PAKAN TERNAK) COA 050418-256\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for E.C.O TRACE ZN 25PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC270218\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"E.C.O TRACE ZN 25PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC270218\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETAPRO 300 (BHN BAKU UTK PAKAN TERNAK) COA 220318-219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"BETAPRO 300 (BHN BAKU UTK PAKAN TERNAK) COA 220318-219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIQUIPHOS STRONG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 030418-258\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"LIQUIPHOS STRONG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 030418-258\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIQUIPHOS STRONG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 030418-258\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"LIQUIPHOS STRONG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 030418-258\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M 31.0PCT (BHN BAKU OBAT) COA.101829001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MG HYD PASTE USP TYPE M 31.0PCT (BHN BAKU OBAT) COA.101829001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANDARIN CLEAR (BHN BAKU KOSMETIK) COA 173098\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"MANDARIN CLEAR (BHN BAKU KOSMETIK) COA 173098\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 171058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 171058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALPINIAWHITE (BHN BAKU KOSMETI) COA 180328\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"ALPINIAWHITE (BHN BAKU KOSMETI) COA 180328\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 INF OIL, 4,5KG PJUG (BHN BAKU SUPLEMEN) COA.TS00009947\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 INF OIL, 4,5KG PJUG (BHN BAKU SUPLEMEN) COA.TS00009947\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT C6 FLOW CYTO STARTER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT C6 FLOW CYTO STARTER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7347501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7347501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7340819\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7340819\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRANOL ULTRA C32 200KG PLASCTIC DRUM (BHN BAKU KOSMETIK) COA BP803170R\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34029099\", \"uraian\": \"MIRANOL ULTRA C32 200KG PLASCTIC DRUM (BHN BAKU KOSMETIK) COA BP803170R\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) COA PH01160217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) COA PH01160217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PI18030002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29341000\", \"uraian\": \"PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PI18030002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PI18030002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29341000\", \"uraian\": \"PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PI18030002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ULVA LACTUCA ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA ULL180301-GS-BGBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ULVA LACTUCA ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA ULL180301-GS-BGBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO180301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO180301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO180302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO180302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH180304-ENBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH180304-ENBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT673784\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPAGLOS WHITE/OFF-WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT673784\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT673988\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT673988\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT673948\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT673948\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT672502\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT672502\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK)COA BAG-022017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK)COA BAG-022017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK) COA U180413, U180425\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK) COA U180413, U180425\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND LICORICE EXTRACT (BHN BAKU KOSMETIK) COA GGB-022887\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND LICORICE EXTRACT (BHN BAKU KOSMETIK) COA GGB-022887\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK)COA OHA-071648\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK)COA OHA-071648\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SNAIL SECREATION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-020638\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SNAIL SECREATION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-020638\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-331238\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-331238\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-010218\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-010218\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK)COA KFB-L-030827\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK)COA KFB-L-030827\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND PC SC-GLUCAN (BHN BAKU KOSMETIK) COA CPG-232738\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND PC SC-GLUCAN (BHN BAKU KOSMETIK) COA CPG-232738\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) COA 7766002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) COA 7766002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG180202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG180202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIOTOX (BHN BAKU OBAT UTK PAKAN TERNAK) COA 050418-256\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"BIOTOX (BHN BAKU OBAT UTK PAKAN TERNAK) COA 050418-256\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01801004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01801004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA PLVH180304-ENBIOO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA PLVH180304-ENBIOO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-180202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-180202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-171106-GS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-171106-GS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH180405-ENBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH180405-ENBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DPG FG (BHN BAKU KOSMETIK) COA B02451DG\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29094900\", \"uraian\": \"DPG FG (BHN BAKU KOSMETIK) COA B02451DG\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PG USP (BHN BAKU KOSMETIK) COA B02451UG\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"PG USP (BHN BAKU KOSMETIK) COA B02451UG\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518030083\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518030083\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ70613160\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ70613160\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218010005,30047\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218010005,30047\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00511323,514833\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"AMPHISOL K (BHN BAKU KOSMETIK) COA VE00511323,514833\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11803004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11803004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0317121889,890\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0317121889,890\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518030083\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518030083\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS, 25KG PC (BHN BAKU KOSMETIK) COA MCS1604083\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HMS, 25KG PC (BHN BAKU KOSMETIK) COA MCS1604083\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01801004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01801004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GLICLAZIDE (BHN BAKU OBAT) COA 1840000648\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"GLICLAZIDE (BHN BAKU OBAT) COA 1840000648\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS, 15KG BOXALU (BHN BAKU MAKANAN) COA UT18010003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS, 15KG BOXALU (BHN BAKU MAKANAN) COA UT18010003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17100019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17100019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRAVASTATIN SODIUM (BHN BAKU OBAT) COA PV201711018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"PRAVASTATIN SODIUM (BHN BAKU OBAT) COA PV201711018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX TM COMPACTED, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B339967,74.75\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX TM COMPACTED, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B339967,74.75\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIVE POLYPHENOLIC DRY EXTRACT (BHN BAKU SUMPLEMEN) COA 18080\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"OLIVE POLYPHENOLIC DRY EXTRACT (BHN BAKU SUMPLEMEN) COA 18080\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 18092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 18092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5497417\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5497417\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829015717H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"B-WHITE (BHN BAKU KOSMETIK) COA 829015717H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXO-T (BHN BAKU KOSMETIK) COA 715016075J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EXO-T (BHN BAKU KOSMETIK) COA 715016075J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANACITYN PF (BHN BAKU KOSMETIK) COA 794025577H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LANACITYN PF (BHN BAKU KOSMETIK) COA 794025577H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT-11 (BHN BAKU KOSMETIK), COA 784026174J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"TYROSTAT-11 (BHN BAKU KOSMETIK), COA 784026174J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK), COA 5497417\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ABYSSINE 657 (BHN BAKU KOSMETIK), COA 5497417\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829015717H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"B-WHITE (BHN BAKU KOSMETIK) COA 829015717H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830016021J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL (BHN BAKU KOSMETIK) COA 830016021J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXO-P (BHN BAKU KOSMETIK) COA 715036001H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"EXO-P (BHN BAKU KOSMETIK) COA 715036001H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELANOSTATINE-5BG (50PPM) (BHN BAKU KOSMETIK) COA 817046077J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MELANOSTATINE-5BG (50PPM) (BHN BAKU KOSMETIK) COA 817046077J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROGELINE (BHN BAKU KOSMETIK) COA 820055823 H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROGELINE (BHN BAKU KOSMETIK) COA 820055823 H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604611\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604611\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604599\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604599\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604486\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604486\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROVIMIX (R) C-EC, 25KG BOXALU (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT01708315,16,26\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ROVIMIX (R) C-EC, 25KG BOXALU (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT01708315,16,26\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROVIMIX AD3 1000/200, 20KG BAG (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT17121210\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"ROVIMIX AD3 1000/200, 20KG BAG (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT17121210\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAROPHYLL RED 10PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA UE01711008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"CAROPHYLL RED 10PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA UE01711008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROVIMIX NIACIN (BHN BAKU OBAT UTK PAKAN TERNAK) COA 25755\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROVIMIX NIACIN (BHN BAKU OBAT UTK PAKAN TERNAK) COA 25755\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RONOZYME (R) HIPHOS GT, 25KG BAGDK (BHN BAKU OBAT UTK PAKAN TERNAK) COA HK921271\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29369000\", \"uraian\": \"RONOZYME (R) HIPHOS GT, 25KG BAGDK (BHN BAKU OBAT UTK PAKAN TERNAK) COA HK921271\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RONOZYME MULTIGRAIN (GT) 20KG PBAG (BHN BAKU OBAT UTK PAKAN TERNAK) COA VF900207,209\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29369000\", \"uraian\": \"RONOZYME MULTIGRAIN (GT) 20KG PBAG (BHN BAKU OBAT UTK PAKAN TERNAK) COA VF900207,209\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT(BHN BAKU SUPLEMEN) COA WB00917087\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT(BHN BAKU SUPLEMEN) COA WB00917087\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70903302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70903302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT18010779\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT18010779\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17120037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17120037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17120037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17120037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17120037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17120037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17120037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17120037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80302092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80302092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80302092,2103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80302092,2103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70813198\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70813198\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70903302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70903302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70813196\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70813196\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7MIU/G (TOCO)(BHN BAKU SUPLEMEN) COA UT18010779\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7MIU/G (TOCO)(BHN BAKU SUPLEMEN) COA UT18010779\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17110772,774,18010779\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17110772,774,18010779\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17110771,772\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17110771,772\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ71206183\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ71206183\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ71206183,84\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ71206183,84\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70813210\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70813210\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70813196,98\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70813196,98\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17120037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17120037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT17110166\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT17110166\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17120037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17120037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT17110166,UT18010167\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT17110166,UT18010167\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ71103349\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ71103349\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17120036\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17120036\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70813198\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70813198\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT18010167\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT18010167\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT18010167\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT18010167\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE ((BHN BAKU SUPLEMEN) COA UQ70903302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE ((BHN BAKU SUPLEMEN) COA UQ70903302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17110166\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17110166\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UT70803301,3302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UT70803301,3302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17110166\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17110166\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)(BHN BAKU MAKANAN) COA UT17110166\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO)(BHN BAKU MAKANAN) COA UT17110166\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT17110166\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT17110166\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91803395\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91803395\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 - C3 (BHN BAKU MAKANAN) COA XW91803423\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 - C3 (BHN BAKU MAKANAN) COA XW91803423\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 - C3 (BHN BAKU MAKANAN) COA XW91803423\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 - C3 (BHN BAKU MAKANAN) COA XW91803423\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 103093-A (BHN BAKU MAKANAN) COA XW91803409\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 103093-A (BHN BAKU MAKANAN) COA XW91803409\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 204005 (BHN BAKU MAKANAN) COA XW91803390\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 204005 (BHN BAKU MAKANAN) COA XW91803390\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX ,TYPE MM81 (105PCT) BHN BAKU MAKANAN, COA XW91803396\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX ,TYPE MM81 (105PCT) BHN BAKU MAKANAN, COA XW91803396\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 103093-A (BHN BAKU MAKANAN) COA XW91803410\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 103093-A (BHN BAKU MAKANAN) COA XW91803410\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CANTHAXANTHIN 10PCT CWS/S (BHN BAKU MAKANAN) COA UT17040005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"CANTHAXANTHIN 10PCT CWS/S (BHN BAKU MAKANAN) COA UT17040005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU MAKANAN) COA UT17110004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU MAKANAN) COA UT17110004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ71206200,6201,6003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ71206200,6201,6003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121808584\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121808584\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/18040192\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/18040192\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE 25KG BOX(BHN BAKU MAKANAN) COA TL01802927,3143,3159\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE 25KG BOX(BHN BAKU MAKANAN) COA TL01802927,3143,3159\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A PALMITATE TYPE 250CWS/F(BHN BAKU MAKANAN) COA UT18020001,20002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A PALMITATE TYPE 250CWS/F(BHN BAKU MAKANAN) COA UT18020001,20002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JAGUAR C 162 CARDBOARD BOX 25 KG (BHN BAKU KOSMETIK) COA MJAC18067A\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"JAGUAR C 162 CARDBOARD BOX 25 KG (BHN BAKU KOSMETIK) COA MJAC18067A\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX TM COMPACTED, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B339990, 91,92\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX TM COMPACTED, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B339990, 91,92\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA.M113071\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA.M113071\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M110465\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M110465\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M110380,M110417\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M110380,M110417\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604524\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604524\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604395\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604395\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604497\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604497\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604555\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604555\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604510\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604510\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604502\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604502\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604498\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604498\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604486\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604486\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604515\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604515\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GRAY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604495\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GRAY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604495\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604496\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604496\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604514\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604514\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604485\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604485\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604775\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604775\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604690\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604690\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604760\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604760\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 018.472\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 018.472\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SKINB VITLIDO 1MLD16 (BHN BAKU OBAT) COA 15864-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE SKINB VITLIDO 1MLD16 (BHN BAKU OBAT) COA 15864-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SKINB VITALLGHLIDO 1MLD16 (BHN BAKU OBAT) COA 15706-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE SKINB VITALLGHLIDO 1MLD16 (BHN BAKU OBAT) COA 15706-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML (BHN BAKU OBAT) COA 15912-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE LYFT LIDOCAINE 1ML (BHN BAKU OBAT) COA 15912-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE REFYNE 1ML (BHN BAKU OBAT) COA 15521-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE REFYNE 1ML (BHN BAKU OBAT) COA 15521-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE DEFYNE 1ML (BHN BAKU OBAT) COA 15856-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE DEFYNE 1ML (BHN BAKU OBAT) COA 15856-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE KYSSE 1ML (BHN BAKU OBAT) COA 15884-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE KYSSE 1ML (BHN BAKU OBAT) COA 15884-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18040076\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18040076\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01708082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01708082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KAOLIN SUPREME (BHN BAKU KOSMETIK) COA 060817\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25070000\", \"uraian\": \"KAOLIN SUPREME (BHN BAKU KOSMETIK) COA 060817\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLOPURINOL (BHN BAKU OBAT) COA E-2018061049 S/D 1053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"ALLOPURINOL (BHN BAKU OBAT) COA E-2018061049 S/D 1053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ONDASENTRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA 17OS001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"ONDASENTRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA 17OS001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M 31.0PCT (BHN BAKU OBAT) COA.101829003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MG HYD PASTE USP TYPE M 31.0PCT (BHN BAKU OBAT) COA.101829003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-PANTHENOL 50L, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01801602,1603\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL-PANTHENOL 50L, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01801602,1603\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT17090053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT17090053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT18030084\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT18030084\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01802897,2927\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01802897,2927\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT17120020,UT18020001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT17120020,UT18020001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT17110006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT17110006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 20180418\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 20180418\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180038,39,40\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180038,39,40\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA MCS1605181\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA MCS1605181\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11803004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11803004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX (TM) VH, 5KG BAG ALU (BHN BAKU KOSMETIK) COA UF18004050\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"BEAUPLEX (TM) VH, 5KG BAG ALU (BHN BAKU KOSMETIK) COA UF18004050\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL. PANTHENOL 50L (BHN BAKU KOSMETIK) COA TL01706630,7638,8644\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL. PANTHENOL 50L (BHN BAKU KOSMETIK) COA TL01706630,7638,8644\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01707814\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01707814\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ESCIN FREE ACID (BHN BAKU SUPLEMEN) COA 32591/M3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"ESCIN FREE ACID (BHN BAKU SUPLEMEN) COA 32591/M3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121808584,654\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121808584,654\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 121808654\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 121808654\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECHINACEA PURP.D.AQ E.0,8PCT (BAHAN BAKU SUPLEMEN) COA 10226/M2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"ECHINACEA PURP.D.AQ E.0,8PCT (BAHAN BAKU SUPLEMEN) COA 10226/M2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYMARIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10462/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILYMARIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10462/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIETHYL CARBAMAZINE CITRATE BP (BHN BAKU OBAT) COA SAM/DCC/0318034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29395900\", \"uraian\": \"DIETHYL CARBAMAZINE CITRATE BP (BHN BAKU OBAT) COA SAM/DCC/0318034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS FUMARATE USP/EP (BHN BAKU OBAT) COA.2018/106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"FERROUS FUMARATE USP/EP (BHN BAKU OBAT) COA.2018/106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CURCUMA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 32576/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CURCUMA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 32576/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 32619/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 32619/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECHINACEA ANG DRY PURIF EX (BHN BAKU SUPLEMEN) COA 32226/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"ECHINACEA ANG DRY PURIF EX (BHN BAKU SUPLEMEN) COA 32226/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECHINACEA ANG. DRY PURIF. EX (BHN BAKU SUPLEMEN) COA 32527/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"ECHINACEA ANG. DRY PURIF. EX (BHN BAKU SUPLEMEN) COA 32527/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VACCINIUM MYRTILLUS DRY EX (BHN BAKU SUPLEMEN) COA 32501/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"VACCINIUM MYRTILLUS DRY EX (BHN BAKU SUPLEMEN) COA 32501/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHASEOLUS VULGARIS DRY EXTRACT (BHN BAKU SUPLEMEN) COA 32690/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"PHASEOLUS VULGARIS DRY EXTRACT (BHN BAKU SUPLEMEN) COA 32690/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NOSCAPINE BASE BP (BHN BAKU OBAT) COA P200618\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29391900\", \"uraian\": \"NOSCAPINE BASE BP (BHN BAKU OBAT) COA P200618\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GUAIFENESIN USP (BHN BAKU OBAT) COA GGE-1803084 S/D 89, 93 S/D 106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29094900\", \"uraian\": \"GUAIFENESIN USP (BHN BAKU OBAT) COA GGE-1803084 S/D 89, 93 S/D 106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TETRACYCLINE HYDRACHLORIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 180326-61\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29413000\", \"uraian\": \"TETRACYCLINE HYDRACHLORIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 180326-61\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LOTUS NELUMBIUM NEL.FLOWER (BHN BAKU KOSMETIK) COA AM070124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"LOTUS NELUMBIUM NEL.FLOWER (BHN BAKU KOSMETIK) COA AM070124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18020037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18020037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIPERAZINE CITRATE BP/USP (BHN BAKU OBAT) COA PC-095/18 S/D 099/18\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29395900\", \"uraian\": \"PIPERAZINE CITRATE BP/USP (BHN BAKU OBAT) COA PC-095/18 S/D 099/18\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537077\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537077\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604598\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604598\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604586\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604586\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603799\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603799\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604391\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604391\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604617\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604617\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603939\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603939\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604590\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604590\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604587\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604587\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604599\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604599\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601993\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601993\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604502\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604502\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604611\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604611\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604589\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604589\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604591\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604591\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604597\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604597\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604780\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604780\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK)COA 010918\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK)COA 010918\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FDANDC BLUE #1/INDIGO CARMINE AL... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP795446\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FDANDC BLUE #1/INDIGO CARMINE AL... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP795446\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FDANDC YELLOW #5/TARTRAZINE AL... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP787028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FDANDC YELLOW #5/TARTRAZINE AL... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP787028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FDANDC RED #40/ALLURA RED AC AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP791919\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FDANDC RED #40/ALLURA RED AC AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP791919\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FDANDC YELLOW #5/TARTRAZINE AL... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP796058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FDANDC YELLOW #5/TARTRAZINE AL... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP796058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINKGO EXTRACT (BHN BAKU OBAT) COA 1271580\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"GINKGO EXTRACT (BHN BAKU OBAT) COA 1271580\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS FUMARATE USP/EP (BHN BAKU OBAT) COA.2018/107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"FERROUS FUMARATE USP/EP (BHN BAKU OBAT) COA.2018/107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IONOL CP (BHN BAKU KOSMETIK) COA 01422917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"IONOL CP (BHN BAKU KOSMETIK) COA 01422917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6028 (BHN BAKU KOSMETIK) , COA 804183\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6028 (BHN BAKU KOSMETIK) , COA 804183\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6028 (16KG) BHN BAKU KOSMETIK, COA 804183\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6028 (16KG) BHN BAKU KOSMETIK, COA 804183\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-96A-6CS (16KG) BHN BAKU KOSMETIK, COA 804954\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-96A-6CS (16KG) BHN BAKU KOSMETIK, COA 804954\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA 0000013177\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA 0000013177\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA 1 P001062 (BHN BAKU KOSMETIK) COA.0000013169\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA 1 P001062 (BHN BAKU KOSMETIK) COA.0000013169\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLAISANCE P116808 (BHN BAKU KOSMETIK) COA 0000013175\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"PLAISANCE P116808 (BHN BAKU KOSMETIK) COA 0000013175\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 01/17GAAK\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 01/17GAAK\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 01/17GAAK ,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 01/17GAAK ,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LABRAFIL M 1944 CS (BAHAN BAKU SUPLEMEN) COA 168850\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LABRAFIL M 1944 CS (BAHAN BAKU SUPLEMEN) COA 168850\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TEFOSE 63 (BAHAN BAKU SUPLEMEN) COA 169160\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TEFOSE 63 (BAHAN BAKU SUPLEMEN) COA 169160\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 165210\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 165210\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LABRASOL (BHN BAKU SUPLEMEN) COA 167978\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LABRASOL (BHN BAKU SUPLEMEN) COA 167978\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND171003, ND171105, ND171106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND171003, ND171105, ND171106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RANITIDINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA RH287 04 18, RH 288 04 18...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29321900\", \"uraian\": \"RANITIDINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA RH287 04 18, RH 288 04 18...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RANITIDINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA RH 290 04 18, RH 291 04 18...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29321900\", \"uraian\": \"RANITIDINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA RH 290 04 18, RH 291 04 18...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP18043349, X18043350\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP18043349, X18043350\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM GLUCONATE EP (BHN BAKU OBAT) COA CGA-EP1804045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"CALCIUM GLUCONATE EP (BHN BAKU OBAT) COA CGA-EP1804045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17120063, 80049,80050\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17120063, 80049,80050\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17120063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17120063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL A TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18030043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL A TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18030043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01801004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01801004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT18010167\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT18010167\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01801004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01801004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01801005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01801005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18030043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18030043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT18010167\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT18010167\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91804410, 11,12\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91804410, 11,12\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS ,25KG PC (BHN BAKU KOSMETIK) COA MCS1607099\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHS ,25KG PC (BHN BAKU KOSMETIK) COA MCS1607099\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DESONIDE MICRONIZED (BHN BAKU OBAT) COA NX2299M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"DESONIDE MICRONIZED (BHN BAKU OBAT) COA NX2299M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROSPIRENONE MICRONIZED (BHN BAKU OBAT) COA NY0462M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"DROSPIRENONE MICRONIZED (BHN BAKU OBAT) COA NY0462M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIAMCINOLONE ACETONIDE (BHN BAKU OBAT) COA NY0780M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"TRIAMCINOLONE ACETONIDE (BHN BAKU OBAT) COA NY0780M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NY0865M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NY0865M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ULTALUX FF25 KG BAG (BHN BAKU KOSMETIK) COA D0417X1872\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ULTALUX FF25 KG BAG (BHN BAKU KOSMETIK) COA D0417X1872\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PUROLAN E 171 (BHN BAKU KOSMETIK) COA 5635115\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PUROLAN E 171 (BHN BAKU KOSMETIK) COA 5635115\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYTOFIX/CYTOPERM W/GOLGI STOP KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7346857\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CYTOFIX/CYTOPERM W/GOLGI STOP KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7346857\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYLPOL 980 BAHAN BAKU KOSMETIK) COA 11518003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACRYLPOL 980 BAHAN BAKU KOSMETIK) COA 11518003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 1804EF1113\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"L-ARGININE LO (BHN BAKU KOSMETIK),COA 1804EF1113\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA638391\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA638391\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CATCOL C 135 (L) GRADE (BAHAN BAKU KOSMETIK) COA 395/18\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CATCOL C 135 (L) GRADE (BAHAN BAKU KOSMETIK) COA 395/18\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROPYPHENAZONE (ST) (BHN BAKU OBAT UTK PEWARNA TABLET) COA 1711300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331100\", \"uraian\": \"PROPYPHENAZONE (ST) (BHN BAKU OBAT UTK PEWARNA TABLET) COA 1711300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIVE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA OLE180202-RQ\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OLIVE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA OLE180202-RQ\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8087522\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8087522\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7324962\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE M-GREEN YEAST AND MOLD BROTH500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7324962\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7289995\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7289995\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7314928\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7314928\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7338913\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7338913\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8068917,8068939\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8068917,8068939\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7153980\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7153980\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LETHERN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 8046743\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LETHERN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 8046743\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7338913\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7338913\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 8011977...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 8011977...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8109595\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8109595\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7332587\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7332587\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAIL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7356665\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAIL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7356665\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7338913\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7338913\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8059702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8059702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD14 APC MPHIP9 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7235889\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD14 APC MPHIP9 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7235889\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8078616\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8078616\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FASTIMMUNE HUMAN IL2 PE 5344 .111 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8060777\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"FASTIMMUNE HUMAN IL2 PE 5344 .111 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8060777\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8026653\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8026653\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8109595\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD5 APC L17F12 100 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8109595\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8044954\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8044954\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8026870\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8026870\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8009536\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8009536\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8046521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8046521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD8 PERCP CY5.5 SK1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7304693,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD8 PERCP CY5.5 SK1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7304693,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IFN GAMMA APC RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8081704\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"IFN GAMMA APC RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8081704\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7345542,8033517\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7345542,8033517\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI HLA DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8015843\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANTI HLA DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8015843\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FASTIMMUNE COSTIM CD28/CD49 0.3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7299715\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"FASTIMMUNE COSTIM CD28/CD49 0.3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7299715\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8031925\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8031925\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8044550,8073612\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8044550,8073612\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 FITC SK7 50 TESTS IVD (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8057718\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 FITC SK7 50 TESTS IVD (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8057718\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PERM/WASH BUFFER 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7180888-B\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PERM/WASH BUFFER 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7180888-B\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD4 FITC RPA-T4 100TST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8037703\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD4 FITC RPA-T4 100TST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8037703\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7125585\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7125585\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LYSING BUFFER 10X CONCENTRATE 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8045509\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"LYSING BUFFER 10X CONCENTRATE 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8045509\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU REGULATORY T CELL CKTL 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7286518\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU REGULATORY T CELL CKTL 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7286518\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD CST BEADS KIT 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 80759\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BD CST BEADS KIT 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 80759\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD28 PE CD28.2 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7297748\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD28 PE CD28.2 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7297748\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KI-67 ALEXA 647 B56 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7348582\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KI-67 ALEXA 647 B56 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7348582\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CS&T RUO BEADS 50 TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8074640\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CS&T RUO BEADS 50 TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8074640\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH7353854,8032932\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH7353854,8032932\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE UREA AGAR BASE BBL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7332918\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE UREA AGAR BASE BBL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7332918\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8053841,8092819\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8053841,8092819\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ANAEROBE ID AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8068562\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ANAEROBE ID AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8068562\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8087522\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8087522\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP A (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6239952\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL N MENINGITIDIS ANTISERUM GRP A (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6239952\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP C (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7335666\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL N MENINGITIDIS ANTISERUM GRP C (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7335666\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP W135 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6267761\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL N MENINGITIDIS ANTISERUM GRP W135 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6267761\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT 10X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7228748\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"TUBE EGG YOLK ENRICHMENT 50PCT 10X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7228748\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD4 APC SK3 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7318894\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD4 APC SK3 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7318894\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD10 PE HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8059814\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD10 PE HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8059814\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD10 APC HI10A 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7348976\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD10 APC HI10A 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7348976\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD11B APC D12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8040948\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD11B APC D12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8040948\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI LAMBDA FITC 1-155-2 50TST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8107891\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANTI LAMBDA FITC 1-155-2 50TST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8107891\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD20 FITC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8059699\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD20 FITC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8059699\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PI/RNASE STINING BUFFER SOLUTION 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8019561\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PI/RNASE STINING BUFFER SOLUTION 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8019561\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU IL-17A PE N49-653 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8004580\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU IL-17A PE N49-653 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8004580\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD64 APC-H7 10.1 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7306651\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD64 APC-H7 10.1 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7306651\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD19 BV510 SJ25C1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7292805\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD19 BV510 SJ25C1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7292805\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD14 BV421 MPHIP9 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8004920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD14 BV421 MPHIP9 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8004920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD38 APC-H7 (HB7) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8046672\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD38 APC-H7 (HB7) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8046672\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI KAPPA PE TB28-2 50 TESTS RUO/G,P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8029550\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANTI KAPPA PE TB28-2 50 TESTS RUO/G,P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8029550\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD3 FITC UCHT1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8029550\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD3 FITC UCHT1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8029550\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI-BCL-2 FITC 100 50 TST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8044528\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANTI-BCL-2 FITC 100 50 TST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8044528\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD23 PE EBVCS-5 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8059872\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD23 PE EBVCS-5 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8059872\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYTOFIX/CYTOPERM W/GOLGIPLUG KIT 250TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7076742\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CYTOFIX/CYTOPERM W/GOLGIPLUG KIT 250TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7076742\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD25 PE M-A251 100TST (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8086986\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD25 PE M-A251 100TST (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8086986\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FENOFIBRATE MICRONIZED (BHN BAKU OBAT) COA W-F03-20180301-02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"FENOFIBRATE MICRONIZED (BHN BAKU OBAT) COA W-F03-20180301-02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BISOPROLOL FUMARATE USP(BAHAN BAKU OBAT)COA LT-OBFM/005/17-18\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"BISOPROLOL FUMARATE USP(BAHAN BAKU OBAT)COA LT-OBFM/005/17-18\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMLODIPINE BESILATE BP/EP (BHN BAKU OBAT), COA. AMB/050/04/18, AMB/051/04/18...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"AMLODIPINE BESILATE BP/EP (BHN BAKU OBAT), COA. AMB/050/04/18, AMB/051/04/18...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU OBAT), COA UJ817\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU OBAT), COA UJ817\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA.18100312, 313\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29395900\", \"uraian\": \"DIMENHYDRINATE (BHN BAKU OBAT) COA.18100312, 313\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEROPENEM TRIHYDRATE WITH SODIUM CAROBATE STERILE (B.BAKU OBAT) COA.S0820180402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30032000\", \"uraian\": \"MEROPENEM TRIHYDRATE WITH SODIUM CAROBATE STERILE (B.BAKU OBAT) COA.S0820180402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CANDESARTAN CILEXETIL (BHN BAKU OBAT) COA 5668-18-006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"CANDESARTAN CILEXETIL (BHN BAKU OBAT) COA 5668-18-006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OXYTETRACYCLINE DIHYDRATE INJ GRADE BP/EP (BHN BAKU OBAT UTK PAKAN TERNAK ) COA ZT180327\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29413000\", \"uraian\": \"OXYTETRACYCLINE DIHYDRATE INJ GRADE BP/EP (BHN BAKU OBAT UTK PAKAN TERNAK ) COA ZT180327\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITICOLINE SODIUM (BHN BAKU OBAT) COA 3A26180315\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"CITICOLINE SODIUM (BHN BAKU OBAT) COA 3A26180315\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IRBESARTAN (BHN BAKU OBAT) COA C5465-17-036, C5465-17-044,050,051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"IRBESARTAN (BHN BAKU OBAT) COA C5465-17-036, C5465-17-044,050,051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GLUCOSAMINE HCL (BHN BAKU OBAT) COA JST20180420\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"GLUCOSAMINE HCL (BHN BAKU OBAT) COA JST20180420\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20180419\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20180419\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FIBRE DRUM (DRUM KOSONG)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"48192000\", \"uraian\": \"FIBRE DRUM (DRUM KOSONG)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7312572\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7312572\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 7171538,7306827\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 7171538,7306827\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242852\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242852\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7363777\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7363777\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7018890\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7018890\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7235794\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7235794\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7178809\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7178809\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7284524\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7284524\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7321587\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7321587\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8054962\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8054962\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7297545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7297545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7349833\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7349833\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7338657\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE STERILE RODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7338657\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7321586\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7321586\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7151674\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7151674\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8068984\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8068984\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7283691\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7283691\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8011939,8032502\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8011939,8032502\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7312538\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7312538\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7278689\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7278689\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8066783\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8066783\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8032527\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8032527\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7341765\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7341765\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7349609\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7349609\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8052641,806854\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8052641,806854\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8003644\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8003644\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7317830,7325915\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7317830,7325915\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7338553\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7338553\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7255556\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7255556\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7363740\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7363740\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL BUFFERED PEPTONE WATER 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8053800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL BUFFERED PEPTONE WATER 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8053800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7332733\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7332733\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8012723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8012723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7095842\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7095842\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7262745\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7262745\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7251553\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7251553\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8012609\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8012609\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7363844\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7363844\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7305891\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7305891\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7060815\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MIO MEDIUM 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7060815\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8065670\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8065670\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8072638\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8072638\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SOLUTION BACTERIOSTAT CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0957C118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"SOLUTION BACTERIOSTAT CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0957C118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8003644\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8003644\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8072638\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8072638\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6278861\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6278861\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7321587\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7321587\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7341765\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7341765\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8072638\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8072638\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8065670\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8065670\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7193724\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7193724\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7349609\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7349609\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL LAURYL TRYPTOSE BROTH 2KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7234887,8012733\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL LAURYL TRYPTOSE BROTH 2KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7234887,8012733\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8003644\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8003644\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8030866\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8030866\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8003673\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8003673\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8018795\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8018795\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8037783\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8037783\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7291775\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7291775\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8068984\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8068984\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SIM MEDIUM BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7291684\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SIM MEDIUM BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7291684\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ACTINOMYCETES ISOLATION AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7317688\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ACTINOMYCETES ISOLATION AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7317688\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY II AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7250648\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY II AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7250648\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAT NOBLE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8003633\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE AGAT NOBLE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8003633\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 72327270\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 72327270\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7325649\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7325649\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7220787\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7220787\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8012740\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8012740\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8046922\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8046922\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NITRATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7198978\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE NITRATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7198978\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST NITROGEN BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8011965\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE YEAST NITROGEN BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8011965\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7220793\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7220793\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BORDET GENGOU AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7114770\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BORDET GENGOU AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7114770\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7363845\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7363845\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7306691\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7306691\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER LACTOPHENOL COTTON BLUE STAIN (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7332867\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER LACTOPHENOL COTTON BLUE STAIN (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7332867\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7332884\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTOSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7332884\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7135939\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7135939\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE STARCH AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7255527\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE STARCH AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7255527\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7220823\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7220823\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 7250994\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 7250994\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TINSDALE BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6026724\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TINSDALE BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6026724\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7335617\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7335617\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7363785\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7363785\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PSEUDOMONAS ISOLATION AG 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7235847\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PSEUDOMONAS ISOLATION AG 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7235847\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 2KG (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8032581\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE BROTH 2KG (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8032581\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8012609\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8012609\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7363823,8032527\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7363823,8032527\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7291775\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7291775\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PROTEOSE PEPTONE NO 3 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8059926\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PROTEOSE PEPTONE NO 3 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8059926\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PEPSIN 1 TO 10000 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7242856\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PEPSIN 1 TO 10000 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7242856\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8032542\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8032542\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8032542\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8032542\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANTOPRAZOLE SODIUM (BHN BAKU OBAT) COA PS1561017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"PANTOPRAZOLE SODIUM (BHN BAKU OBAT) COA PS1561017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.18100077, 18100237\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29391900\", \"uraian\": \"PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.18100077, 18100237\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI SHINE WASH (BHN BAKU KOSMETIK) COA 10300067\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ANTI SHINE WASH (BHN BAKU KOSMETIK) COA 10300067\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI SHINE WASH (BHN BAKU KOSMETIK) COA 10300067\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ANTI SHINE WASH (BHN BAKU KOSMETIK) COA 10300067\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605253\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605253\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605460\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605460\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPREME TM WP AGAIN (BHN BAKU KOSMETIK) COA 1730901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUPREME TM WP AGAIN (BHN BAKU KOSMETIK) COA 1730901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALDAVINE 5X (BHN BAKU KOSMETIK) COA 5515217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALDAVINE 5X (BHN BAKU KOSMETIK) COA 5515217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMISOL TM 4135 (BHN BAKU KOSMETIK) COA 1724701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AMISOL TM 4135 (BHN BAKU KOSMETIK) COA 1724701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829015924J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"B-WHITE (BHN BAKU KOSMETIK) COA 829015924J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BODY 3 COMPLEX (BHN BAKU KOSMETIK), COA B3C010317\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"BODY 3 COMPLEX (BHN BAKU KOSMETIK), COA B3C010317\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANACHRYS 2B PF (PRESERVATIVE) BHN BAKU KOSMETIK, COA 5520717\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LANACHRYS 2B PF (PRESERVATIVE) BHN BAKU KOSMETIK, COA 5520717\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELANOSTATINE-5BG (50PPM) (BHN BAKU KOSMETIK) COA 817046077J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MELANOSTATINE-5BG (50PPM) (BHN BAKU KOSMETIK) COA 817046077J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015528H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015528H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) COA 1724516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PHYTENSO TM (BHN BAKU KOSMETIK) COA 1724516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784026174J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784026174J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABBYSINE 657 (BHN BAKU KOSMETIK) COA 5541718\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ABBYSINE 657 (BHN BAKU KOSMETIK) COA 5541718\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1804005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) COA 1804005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E15 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011HAGL01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E15 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011HAGL01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E5M PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011HAML01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E5M PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011HAML01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E15 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011HAAL02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E15 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011HAAL02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE USP (BHN BAKU KOSMETIK) COA 17-18/NMD(P)/U/292 S/D 295, 18-19/NMD(P)/U/005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE USP (BHN BAKU KOSMETIK) COA 17-18/NMD(P)/U/292 S/D 295, 18-19/NMD(P)/U/005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1810133, 1810142, 1810171\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"PARACETAMOL (BHN BAKU OBAT) COA 1810133, 1810142, 1810171\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT LYOPHILIZED (BHN BAKU OBAT)COA NY0659\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT LYOPHILIZED (BHN BAKU OBAT)COA NY0659\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M.31.0PCT (BHN BAKU OBAT) COA 101829002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MG HYD PASTE USP TYPE M.31.0PCT (BHN BAKU OBAT) COA 101829002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLOPIDOGREL BISULFATE (BHN BAKU OBAT) COA AALH002720,3475,3863,3871...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"CLOPIDOGREL BISULFATE (BHN BAKU OBAT) COA AALH002720,3475,3863,3871...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 2771527\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 2771527\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NOREPINEPHRINE BITARTRATE (BHN BAKU OBAT) COA 430104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29379010\", \"uraian\": \"NOREPINEPHRINE BITARTRATE (BHN BAKU OBAT) COA 430104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1810127, 130, 139\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"PARACETAMOL (BHN BAKU OBAT) COA 1810127, 130, 139\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M529878,912,915\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M529878,912,915\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX POWDER (BHN BAKU OBAT) COA M483670\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE/ PURIMOX POWDER (BHN BAKU OBAT) COA M483670\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M595800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M595800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604673\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604673\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604674\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604674\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604555\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604555\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604670\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604670\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604675\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604675\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604672\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604672\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604720\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604720\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604705\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604705\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604690\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604690\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604706\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604706\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JAGUAR C 162 CARDBOARD BOX 25 KG (BHN BAKU KOSMETIK) COA MJAC18067A\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"JAGUAR C 162 CARDBOARD BOX 25 KG (BHN BAKU KOSMETIK) COA MJAC18067A\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COATED ASCORBIC ACID TYPE EC,25KG BOX (BHN BAKU SUPLEMEN) COA TL01803242\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"COATED ASCORBIC ACID TYPE EC,25KG BOX (BHN BAKU SUPLEMEN) COA TL01803242\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB01017174\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB01017174\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18020037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18020037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S TG(BHN BAKU SUPLEMEN) COA UT17110018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"REDIVIVO (R) LYCOPENE 10PCT CWS/S TG(BHN BAKU SUPLEMEN) COA UT17110018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17110053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17110053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ70407016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ70407016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0020663\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0020663\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18030043,49\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18030043,49\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518040093\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518040093\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX, TYPE MM81 (105PCT) BHN BAKU MAKANAN, COA XW91804331\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX, TYPE MM81 (105PCT) BHN BAKU MAKANAN, COA XW91804331\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80110031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80110031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80110031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80110031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT17120259,UT18020026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT17120259,UT18020026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB00418077\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB00418077\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70813198\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70813198\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17080284\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17080284\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01801011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01801011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17120036\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17120036\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00917087\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00917087\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00917018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00917018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91804027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX 504010 (BHN BAKU MAKANAN) COA XW91804027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91804192\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91804192\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DWI BI (BHN BAKU MAKANAN) COA XW91804371\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"DWI BI (BHN BAKU MAKANAN) COA XW91804371\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DWI BI (BHN BAKU MAKANAN) COA XW91804124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"DWI BI (BHN BAKU MAKANAN) COA XW91804124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DWI BI (BHN BAKU MAKANAN) COA XW91804124, 4371\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"DWI BI (BHN BAKU MAKANAN) COA XW91804124, 4371\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70903302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70903302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ71103353,3358\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ71103353,3358\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17090070\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17090070\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80102047\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80102047\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ80102044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ80102044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE ( BHN BAKU MAKANAN), COA UQ80102044,47\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE ( BHN BAKU MAKANAN), COA UQ80102044,47\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT17110079\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT17110079\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11801020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP11801020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11801020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP11801020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID ,25KG BOX ALU (BHN BAKU SUPLEMEN) COA TL01709678\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID ,25KG BOX ALU (BHN BAKU SUPLEMEN) COA TL01709678\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00917087\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00917087\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT17080253\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT17080253\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for -CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01801011,12\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01801011,12\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT17110004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT17110004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70813198\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70813198\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01701110\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01701110\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN), COA UE01705017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN), COA UE01705017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01801011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01801011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP1180120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP1180120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01801011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01801011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01801011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01801011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX VITAMIN OIL TYPE GBP (BHN BAKU MAKANAN) COA XW91804208\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX VITAMIN OIL TYPE GBP (BHN BAKU MAKANAN) COA XW91804208\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01710079, UE01801011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01710079, UE01801011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91804109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91804109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU MAKANAN) COA TL01711797\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU MAKANAN) COA TL01711797\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL01711797\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL01711797\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL01711797\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL01711797\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1710134\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1710134\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN), COA UQ80102044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN), COA UQ80102044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU MAKANAN) COA UT17110004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU MAKANAN) COA UT17110004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01710099\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01710099\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT17110004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT17110004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01710099\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL ,20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01710099\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL01708082,1710099\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU MAKANAN) COA TL01708082,1710099\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT18020017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT18020017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT18010003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT18010003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20170305\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20170305\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20170305\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20170305\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01711799\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01711799\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT17120065\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT17120065\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17120065\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17120065\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT17120037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT17120037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT18010781,782\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT18010781,782\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOCUSATE SODIUM (BHN BAKU OBAT), COA SD7103055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"DOCUSATE SODIUM (BHN BAKU OBAT), COA SD7103055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NONIVAMIDE (SYNTHETIC CAPSAICIN)BHN BAKU KOSMETIK, COA.20180427\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"NONIVAMIDE (SYNTHETIC CAPSAICIN)BHN BAKU KOSMETIK, COA.20180427\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE MIU/G (BHN BAKU MAKANAN) COA UT17100019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE MIU/G (BHN BAKU MAKANAN) COA UT17100019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18040076\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18040076\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-PANTHENOL 50L, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01802610\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL-PANTHENOL 50L, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01802610\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01803803\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01803803\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NYSTATIN POWDER ROW (BHN BAKU OBAT) COA C114166\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NYSTATIN POWDER ROW (BHN BAKU OBAT) COA C114166\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NYSTATIN MICRONIZED ROW (BHN BAKU OBAT) COA C130738\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NYSTATIN MICRONIZED ROW (BHN BAKU OBAT) COA C130738\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101851318A533\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101851318A533\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLOWLAC (R) 100 (BHN BAKU OBAT) COA L101500618A537\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"FLOWLAC (R) 100 (BHN BAKU OBAT) COA L101500618A537\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104315117A552\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104315117A552\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-0660318\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334910\", \"uraian\": \"DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-0660318\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101851418A533\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101851418A533\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA KCJ\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROTESIL LH (BHN BAKU KOSMETIK) COA KCJ\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA KDJ\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) COA KDJ\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VISTANOL GDHR (BHN BAKU KOSMETIK) COA DKI\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"VISTANOL GDHR (BHN BAKU KOSMETIK) COA DKI\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCAP 1500 CO-PROCESSED (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN536494\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCAP 1500 CO-PROCESSED (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN536494\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605232\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605232\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605230\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605230\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605233\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605233\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604943\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604943\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA.09820318, 09830318,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA.09820318, 09830318,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE BP MICRONISED (BHN BAKU OBAT) COA 14470518, 11480518\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE BP MICRONISED (BHN BAKU OBAT) COA 14470518, 11480518\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANTOPROZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT,COA APSS18001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"PANTOPROZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT,COA APSS18001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP04018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP04018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METRONIDAZOLE BP MICRONISED (BHN BAKU OBAT) COA MTZ/8040655\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"METRONIDAZOLE BP MICRONISED (BHN BAKU OBAT) COA MTZ/8040655\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN1400917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN1400917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) COA PH02160218\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) COA PH02160218\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID MONOHYDRATE BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX1805008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID MONOHYDRATE BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX1805008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK)COA SPG-390258\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK)COA SPG-390258\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-022017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-022017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK) COA NMSP-D-032127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK) COA NMSP-D-032127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK)COA KFB-L-010858, KFB-L-030827\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK)COA KFB-L-010858, KFB-L-030827\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CUCUMBER EXTRACT (BHN BAKU KOSMETIK) COA CUPD-022648\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND CUCUMBER EXTRACT (BHN BAKU KOSMETIK) COA CUPD-022648\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-010528\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-010528\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-022228\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-022228\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT 488NM JDSU TO OBIS RETRO COMPLETE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT 488NM JDSU TO OBIS RETRO COMPLETE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5' PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1710138, 139\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5' PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1710138, 139\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1710142, 143\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1710142, 143\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB100418\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB100418\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B180418\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B180418\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG260418\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG260418\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMONILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO171102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMONILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO171102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-180403\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-180403\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-180401-GS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-180401-GS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK)COA EG209-180101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK)COA EG209-180101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB00318212\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB00318212\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 101769017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 101769017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA.18100312, 359\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29395900\", \"uraian\": \"DIMENHYDRINATE (BHN BAKU OBAT) COA.18100312, 359\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 18100313, 360\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29395900\", \"uraian\": \"DIMENHYDRINATE (BHN BAKU OBAT) COA 18100313, 360\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REFINED MACADAMIA OIL (BCE1010) BHN BAKU KOSMETIK, COA 899509\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"REFINED MACADAMIA OIL (BCE1010) BHN BAKU KOSMETIK, COA 899509\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01707814,18\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01707814,18\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000173222,172347\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000173222,172347\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I4P003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I4P003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I4P003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I4P003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D080I4K001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D080I4K001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CILOSTAZOL USP (BHN BAKU OBAT) COA 17007CB2ARI\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29337900\", \"uraian\": \"CILOSTAZOL USP (BHN BAKU OBAT) COA 17007CB2ARI\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REFINED SUNFLOWER OIL (BHN BAKU KOSMETIK) COA KKLJ 06/18\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"REFINED SUNFLOWER OIL (BHN BAKU KOSMETIK) COA KKLJ 06/18\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIQUORICE LC (BHN BAKU KOSMETIK) COA.110349/P76692\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021920\", \"uraian\": \"LIQUORICE LC (BHN BAKU KOSMETIK) COA.110349/P76692\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB ( BHN BAKU KOSMETIK), COA 180150\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"FLAVOSTERONE SB ( BHN BAKU KOSMETIK), COA 180150\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 180260\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNEBUSTERS (BHN BAKU KOSMETIK) COA 180260\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 170083\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 170083\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 172648\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"IZAYOI (BHN BAKU KOSMETIK) COA 172648\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIV171001-BGBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIV171001-BGBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA MIE180301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA MIE180301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH180506-ENBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH180506-ENBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSA DAMASCENA ORGANIC DISTILLA 1:20 (SB) (BHN BAKU KOSMETIK)COA ROSD180403-BIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROSA DAMASCENA ORGANIC DISTILLA 1:20 (SB) (BHN BAKU KOSMETIK)COA ROSD180403-BIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA180102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA180102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA180203\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA180203\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LINEN OILY EXTRACT GT10 (BHN BAKU KOSMETIK) COA LIU180403-H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LINEN OILY EXTRACT GT10 (BHN BAKU KOSMETIK) COA LIU180403-H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA RBA0961800, RBA0951800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA RBA0961800, RBA0951800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BILBERRY (V.MYRTILLUS) ET EX 36PCT (BHN BAKU SUPLEMEN) COA 32454/M3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"BILBERRY (V.MYRTILLUS) ET EX 36PCT (BHN BAKU SUPLEMEN) COA 32454/M3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605729\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605729\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605660\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605660\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605659\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605659\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIROXICAM (BHN BAKU OBAT) COA PRX2018003M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"PIROXICAM (BHN BAKU OBAT) COA PRX2018003M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REFINED TRACED SHEA OLEIN (BHN BAKU KOSMETIK) COA 0000021463\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"REFINED TRACED SHEA OLEIN (BHN BAKU KOSMETIK) COA 0000021463\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 112917/005062\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 112917/005062\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELUCIRE 44/14 (BHN BAKU SUPLEMEN) COA 169220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELUCIRE 44/14 (BHN BAKU SUPLEMEN) COA 169220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 01/17GAAK\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 01/17GAAK\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 01/17GAAK, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 01/17GAAK, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 18092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 18092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANACOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPLEMEN KESEHATAN) COA. 1806151027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANACOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPLEMEN KESEHATAN) COA. 1806151027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA. DOC01131821\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"SODIUM CARBONATE IPH (BHN BAKU OBAT) COA. DOC01131821\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 018.436\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 018.436\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SKINB VITLIDO 1MLD16 (BHN BAKU OBAT) COA 15926-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE SKINB VITLIDO 1MLD16 (BHN BAKU OBAT) COA 15926-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SKINB VITALLGHLIDO 1MLD16 (BHN BAKU OBAT) COA 15981-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE SKINB VITALLGHLIDO 1MLD16 (BHN BAKU OBAT) COA 15981-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SKINB VITALLGHLIDO 1MLD16 (BHN BAKU OBAT) COA 16112-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE SKINB VITALLGHLIDO 1MLD16 (BHN BAKU OBAT) COA 16112-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML (BHN BAKU OBAT) COA 15912-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE LYFT LIDOCAINE 1ML (BHN BAKU OBAT) COA 15912-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE REFYNE 1ML (BHN BAKU OBAT) COA 15842-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE REFYNE 1ML (BHN BAKU OBAT) COA 15842-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE DEFYNE 1ML (BHN BAKU OBAT) COA 15856-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE DEFYNE 1ML (BHN BAKU OBAT) COA 15856-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURE GREEN B&W PIT (BHN BAKU KOSMETIK)COA 10300031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PURE GREEN B&W PIT (BHN BAKU KOSMETIK)COA 10300031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-96A-6CS (BHN BAKU KOSMETIK) , COA 805958\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-96A-6CS (BHN BAKU KOSMETIK) , COA 805958\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0023236\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0023236\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CUIVRIDONE 5KG (BHN BAKU KOSMETIK) COA 0021095\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CUIVRIDONE 5KG (BHN BAKU KOSMETIK) COA 0021095\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANSOPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA LP0218C016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"LANSOPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA LP0218C016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NORIT SX SUPER E 153 (BHN BAKU KOSMETIK) COA 4332393\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"NORIT SX SUPER E 153 (BHN BAKU KOSMETIK) COA 4332393\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 80222\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 80222\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GLIMEPIRIDE MICRONISED 25KG (BHN BAKU OBAT) COA U790\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"GLIMEPIRIDE MICRONISED 25KG (BHN BAKU OBAT) COA U790\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA.M113071\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA.M113071\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121808671,672\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121808671,672\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 121808672\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 121808672\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702646305\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702646305\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AC019KC PHYTOVITYL C 5KG (BHN BAKU KOSMETIK) COA 0022844\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AC019KC PHYTOVITYL C 5KG (BHN BAKU KOSMETIK) COA 0022844\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET)COA IN536519\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET)COA IN536519\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN536447\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN536447\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453119183\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453119183\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ESOMEPRAZOLE SODIUM STERILE (BHN BAKU OBAT), COA SI/EPZ/00010318\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"ESOMEPRAZOLE SODIUM STERILE (BHN BAKU OBAT), COA SI/EPZ/00010318\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARTESUNATE STERILE (BHN BAKU OBAT), COA SI/ARS/00160418\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"ARTESUNATE STERILE (BHN BAKU OBAT), COA SI/ARS/00160418\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OMEPRAZOLE SODIUM STERILE (BHN BAKU OBAT) COA SI/OPZ/00070418\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"OMEPRAZOLE SODIUM STERILE (BHN BAKU OBAT) COA SI/OPZ/00070418\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA RBA1201800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA RBA1201800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MATCHA GREEN TEA EXTRACT CSP 6 TC ( BHN BAKU KOSMETIK), COA CSP 18005 EOU\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MATCHA GREEN TEA EXTRACT CSP 6 TC ( BHN BAKU KOSMETIK), COA CSP 18005 EOU\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605081\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605081\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605085\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605085\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605084\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605084\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605083\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605083\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605075\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605075\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605076\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605076\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605074\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605074\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605079\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605079\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605079\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605079\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANOLINE ANHYDROUS (BHN BAKU KOSMETIK) COA 4550\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LANOLINE ANHYDROUS (BHN BAKU KOSMETIK) COA 4550\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE AM PELLETS (BHN BAKU OBAT),COA 18E0702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE AM PELLETS (BHN BAKU OBAT),COA 18E0702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 18E1105\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 18E1105\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 18E1702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 18E1702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT),COA 169220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELUCIRE 44/14 (BHN BAKU OBAT),COA 169220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK) COA.LDC 129 18T\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SAVONOL 16 (BAHAN BAKU KOSMETIK) COA.LDC 129 18T\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 240418\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25070000\", \"uraian\": \"KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 240418\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIFE'S ARA (TM) 12 N-6 ARA POWDER (BHN BAKU MAKANAN) COA WB00118310,12\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"LIFE'S ARA (TM) 12 N-6 ARA POWDER (BHN BAKU MAKANAN) COA WB00118310,12\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA ROA142184\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA ROA142184\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DANDC YELLOW #10 AL 15PCT-20PCT. (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP787038,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"DANDC YELLOW #10 AL 15PCT-20PCT. (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP787038,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP7881301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"ERYTHROSINE AL 38PCT-42PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP7881301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DANDC YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP796877\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"DANDC YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP796877\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FDANDC RED #40/ALLURA RED AC AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP785006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FDANDC RED #40/ALLURA RED AC AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP785006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE WHITE ( BHN BAKU OBAT UTK PEWARNA TABLET) COA WP798737\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE WHITE ( BHN BAKU OBAT UTK PEWARNA TABLET) COA WP798737\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605247\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605247\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604708\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604708\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605916\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605916\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CATCOL C 135 (L) GRADE (BAHAN BAKU KOSMETIK) COA 432/18\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CATCOL C 135 (L) GRADE (BAHAN BAKU KOSMETIK) COA 432/18\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA ROA143184\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA ROA143184\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SEP-ART GSL .195 NPG (SEP-ART GSL) BHN BAKU OBAT UTK PAKAN IKAN, COA 7118223352\""}, {"role": "assistant", "content": "{\"hs_code\" : \"5119120\", \"uraian\": \"SEP-ART GSL .195 NPG (SEP-ART GSL) BHN BAKU OBAT UTK PAKAN IKAN, COA 7118223352\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SEP-ART GSL..210 NPG (SEP-ART GSL) BHN BAKU OBAT UTK PAKAN IKAN, COA 7118223353\""}, {"role": "assistant", "content": "{\"hs_code\" : \"5119120\", \"uraian\": \"SEP-ART GSL..210 NPG (SEP-ART GSL) BHN BAKU OBAT UTK PAKAN IKAN, COA 7118223353\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01803159,1804443,1804593\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01803159,1804443,1804593\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU MAKANAN) COA.TS00009862\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU MAKANAN) COA.TS00009862\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 FOOD OIL,4,5KG PJUG (BHN BAKU MAKANAN) COA TS00009862\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 FOOD OIL,4,5KG PJUG (BHN BAKU MAKANAN) COA TS00009862\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SERASENSE SF CM5 (BAHAN BAKU KOSMETIK) COA PA80605049,6004,6006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29319049\", \"uraian\": \"SERASENSE SF CM5 (BAHAN BAKU KOSMETIK) COA PA80605049,6004,6006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20180303\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20180303\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20180303\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20180303\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG180511\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG180511\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA CONCOMBRE (BHN BAKU KOSMETIK) COA 2780005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA CONCOMBRE (BHN BAKU KOSMETIK) COA 2780005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID MONOHYDRATE BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 2AX1805053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID MONOHYDRATE BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 2AX1805053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNTHEANINE U001 (BHN BAKU SUPLEMEN KESEHATAN), COA 710271\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"SUNTHEANINE U001 (BHN BAKU SUPLEMEN KESEHATAN), COA 710271\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DPG FG (BHN BAKU KOSMETIK) COA B00651DP\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29094900\", \"uraian\": \"DPG FG (BHN BAKU KOSMETIK) COA B00651DP\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PG USP (BHN BAKU KOSMETIK) COA B00651UP\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"PG USP (BHN BAKU KOSMETIK) COA B00651UP\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606393\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606393\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX POWDER (BHN BAKU OBAT) COA M483706,727,746,733,747,748\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE/ PURIMOX POWDER (BHN BAKU OBAT) COA M483706,727,746,733,747,748\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS180201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS180201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH180507-ENBIO, OLVH180508-ENBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH180507-ENBIO, OLVH180508-ENBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK)COA EG138-180401\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK)COA EG138-180401\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LOTUS OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA NEN180303-H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LOTUS OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA NEN180303-H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSE OILY EXTRACT (BHN BAKU KOSMETIK) COA ROS1800503-H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROSE OILY EXTRACT (BHN BAKU KOSMETIK) COA ROS1800503-H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AVOCADO ORGANIC OIL XNE019 (BHN BAKU KOSMETIK) COA PEGH180201-OLIBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AVOCADO ORGANIC OIL XNE019 (BHN BAKU KOSMETIK) COA PEGH180201-OLIBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS180201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS180201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) COA PEGH180201-OLIBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) COA PEGH180201-OLIBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM170702-PGH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM170702-PGH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE USP (BHN BAKU KOSMETIK) COA 18-19/NMD(P)/U/028, 030 S/D 32, 41\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE USP (BHN BAKU KOSMETIK) COA 18-19/NMD(P)/U/028, 030 S/D 32, 41\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK)COA MUP-012218\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK)COA MUP-012218\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-893107, NMP-L-032628\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-893107, NMP-L-032628\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-021127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-021127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA MCP-N-010318\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA MCP-N-010318\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND GREEN TEA SEED OIL (BHN BAKU KOSMETIK) COA CSSO-010728\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND GREEN TEA SEED OIL (BHN BAKU KOSMETIK) COA CSSO-010728\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-010858\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-010858\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK)COA NMSP-D-032127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK)COA NMSP-D-032127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK) COA CPG-39-0258\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK) COA CPG-39-0258\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-030948, SFP-N-041458\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-030948, SFP-N-041458\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE(BHN BAKU KOSMETIK) COA 2018D1321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SODIUM HYDROGEN SULFITE(BHN BAKU KOSMETIK) COA 2018D1321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND BIO BLACK PEARL POWDER (BHN BAKU KOSMETIK) COA PDEG-021527\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND BIO BLACK PEARL POWDER (BHN BAKU KOSMETIK) COA PDEG-021527\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND LICORICE EXTRACT (BHN BAKU KOSMETIK) COA GGB-032607\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND LICORICE EXTRACT (BHN BAKU KOSMETIK) COA GGB-032607\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-010448\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-010448\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-053058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-053058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND BIO-SIP (BHN BAKU KOSMETIK) COA STOD-011168\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND BIO-SIP (BHN BAKU KOSMETIK) COA STOD-011168\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 18051819\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 18051819\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 201805T-CCH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 201805T-CCH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLOWLAC (R) 100 (BHN BAKU OBAT) COA. L101500918A537\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"FLOWLAC (R) 100 (BHN BAKU OBAT) COA. L101500918A537\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103861018A545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103861018A545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104311018A552\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104311018A552\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA 0000013178\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA 0000013178\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLAISANCE P116808 (BHN BAKU KOSMETIK) COA.0000016118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"PLAISANCE P116808 (BHN BAKU KOSMETIK) COA.0000016118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000013170\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000013170\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANACOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPLEMEN KESEHATAN) COA. 1806271436\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANACOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPLEMEN KESEHATAN) COA. 1806271436\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BILBERRY (V.MYRTILLUS) ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 32454/M3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"BILBERRY (V.MYRTILLUS) ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 32454/M3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BILBERRY (V.MYRTILLUS) ET EX.36PCT (BHN BAKU SUPLEMEN) COA 32701/M3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"BILBERRY (V.MYRTILLUS) ET EX.36PCT (BHN BAKU SUPLEMEN) COA 32701/M3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BILBERRY (V. MYRTILLUS) ET. EX.36PCT (BHN BAKU SUPLEMEN) COA 32701/M3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"BILBERRY (V. MYRTILLUS) ET. EX.36PCT (BHN BAKU SUPLEMEN) COA 32701/M3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRTOGENOL (R) (BHN BAKU SUPLEMEN) COA 80365/M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MIRTOGENOL (R) (BHN BAKU SUPLEMEN) COA 80365/M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605910\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605910\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605913\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605913\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605914\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605914\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605916\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605916\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605915\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605915\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605911\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605911\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRAZINAMIDE USP (BHN BAKU OBAT) COA PZ 039 E 18, PZ 040 E 18...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"PYRAZINAMIDE USP (BHN BAKU OBAT) COA PZ 039 E 18, PZ 040 E 18...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01801005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01801005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D. PANTHENOL 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01801005,2019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D. PANTHENOL 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01801005,2019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001474299\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SLX (BHN BAKU KOSMETIK) COA 0001474299\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL.A TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18030049\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL.A TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18030049\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT18010782\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT18010782\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00515943,516074,523423.523426\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"AMPHISOL K (BHN BAKU KOSMETIK) COA VE00515943,516074,523423.523426\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX,25 KG PC (BHN BAKU KOSMETIK) COA MCS1605181\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX,25 KG PC (BHN BAKU KOSMETIK) COA MCS1605181\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91805232\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91805232\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318040605, 607, 608\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318040605, 607, 608\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES1702026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"ALLANTOIN (BHN BAKU KOSMETIK) COA ES1702026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318040608,609,610,611\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318040608,609,610,611\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-PANTHENOL 50L (BHN BAKU KOSMETIK) COA TL01709650, 712660\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL-PANTHENOL 50L (BHN BAKU KOSMETIK) COA TL01709650, 712660\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT18020168\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT18020168\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT18020168\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT18020168\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318040611,612,613\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318040611,612,613\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX, 25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0918030007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX, 25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0918030007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT18020168\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT18020168\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT18020168\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT18020168\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB00418077\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB00418077\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1711161\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1711161\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB00418077\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB00418077\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80310073\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80310073\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ80202059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ80202059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80202059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80202059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80202059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80202059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UW80202077,2095,2104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UW80202077,2095,2104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT17110096\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT17110096\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01801008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL ,20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01801008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20170401\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20170401\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT17110004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT17110004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT17120037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT17120037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT17120037,39\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT17120037,39\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ71213303\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ71213303\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17120065\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17120065\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL01802619\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL01802619\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01802619\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01802619\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18020042,30043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18020042,30043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX ( BHN BAKU SUPLEMEN), COA TL01802619GB\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE, 25KG BOX ( BHN BAKU SUPLEMEN), COA TL01802619GB\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00817037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00817037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18020026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18020026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 103047-D(BHN BAKU MAKANAN) COA XW91805212\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 103047-D(BHN BAKU MAKANAN) COA XW91805212\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT18010010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT18010010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX (BHN BAKU SUPLEMEN) COA XW91805211\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX (BHN BAKU SUPLEMEN) COA XW91805211\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 204005 (BHN BAKU MAKANAN) COA XW91805210\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 204005 (BHN BAKU MAKANAN) COA XW91805210\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ80202059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ80202059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17090071\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17090071\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ70309009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ70309009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT18020168\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT18020168\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN), COA UQ70309009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN), COA UQ70309009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ80206051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ80206051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL01712104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL01712104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ80102049,2059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ80102049,2059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ80206047,50\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ80206047,50\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17080285\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17080285\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17120065\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17120065\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT18010010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT18010010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN MINERAL PREMIX INSTANT DRINK (BHN BAKU MAKANAN) COA XW91805249\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN MINERAL PREMIX INSTANT DRINK (BHN BAKU MAKANAN) COA XW91805249\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18040002,3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18040002,3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1803005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1803005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID,25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01801631,40\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID,25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01801631,40\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN), COA UT18020168\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN), COA UT18020168\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ71103359\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ71103359\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ80310073\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ80310073\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ80102049\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ80102049\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01709690\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01709690\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01801012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01801012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18020026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18020026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17120036\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17120036\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ70309009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ70309009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1803005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1803005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01705017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01705017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 100 CN 10KG KA (BHN BAKU KOSMETIK) COA 1506726, 1508191\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 100 CN 10KG KA (BHN BAKU KOSMETIK) COA 1506726, 1508191\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 CN 200KG FA (BHN BAKU KOSMETIK) COA 1508857\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 CN 200KG FA (BHN BAKU KOSMETIK) COA 1508857\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 900 CN 10KG KA (BHN BAKU KOSMETIK) COA 15010129\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 900 CN 10KG KA (BHN BAKU KOSMETIK) COA 15010129\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GROTANOL 3025 CN 10KG KA (BHN BAKU KOSMETIK) COA 1501870,1509426\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GROTANOL 3025 CN 10KG KA (BHN BAKU KOSMETIK) COA 1501870,1509426\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 CN 10KG KA (BHN BAKU KOSMETIK) COA 1507293,1510115\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 CN 10KG KA (BHN BAKU KOSMETIK) COA 1507293,1510115\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 120 CN 10KG KA (BHN BAKU KOSMETIK) COA 1505458\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 120 CN 10KG KA (BHN BAKU KOSMETIK) COA 1505458\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIDIN DO CN 10KG CA (BHN BAKU KOSMETIK) COA 1501867,1503339\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIDIN DO CN 10KG CA (BHN BAKU KOSMETIK) COA 1501867,1503339\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 CN 200KG FA (BHN BAKU KOSMETIK) COA 1507542,1510104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 CN 200KG FA (BHN BAKU KOSMETIK) COA 1507542,1510104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI SHINE WASH (BHN BAKU KOSMETIK) COA 10300112\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ANTI SHINE WASH (BHN BAKU KOSMETIK) COA 10300112\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA KCJ\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROTESIL LH (BHN BAKU KOSMETIK) COA KCJ\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA KDG\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA KDG\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS S-CAQ (BHN BAKU KOSMETIK) COA KDC\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS S-CAQ (BHN BAKU KOSMETIK) COA KDC\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA KFM\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) COA KFM\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS W-32 (BHN BAKU KOSMETIK) COA KAE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS W-32 (BHN BAKU KOSMETIK) COA KAE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VISTANOL GDHR ( BHN BAKU KOSMETIK) COA DKI\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"VISTANOL GDHR ( BHN BAKU KOSMETIK) COA DKI\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID S 20 (BHN BAKU OBAT) COA.572000-2180119/033-039 (7), 572000-2180119/136-143 (8)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232010\", \"uraian\": \"LIPOID S 20 (BHN BAKU OBAT) COA.572000-2180119/033-039 (7), 572000-2180119/136-143 (8)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HORSE-CHESNUT DRY EXTR STAND (BAHAN BAKU SUPLEMEN) COA 10653/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HORSE-CHESNUT DRY EXTR STAND (BAHAN BAKU SUPLEMEN) COA 10653/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SERASENSE GB 10 (BAHAN BAKU KOSMETIK) COA SF9902E\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100020\", \"uraian\": \"SERASENSE GB 10 (BAHAN BAKU KOSMETIK) COA SF9902E\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BRB 1740, DRUM 180 KG ( BHN BAKU KOSMETIK) COA B049325\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100020\", \"uraian\": \"BRB 1740, DRUM 180 KG ( BHN BAKU KOSMETIK) COA B049325\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS FUMARATE ( BHN BAKU OBAT), COA 2018/131\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"FERROUS FUMARATE ( BHN BAKU OBAT), COA 2018/131\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LINCOMYCIN HCL EP (BHN BAKU OBAT) COA 1805022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"LINCOMYCIN HCL EP (BHN BAKU OBAT) COA 1805022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9 USP (BHN BAKU OBAT) COA.101802002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"BARCROFT TM AL HYD GEL VISCO-9 USP (BHN BAKU OBAT) COA.101802002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 101823005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 101823005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIOTOX (BHN BAKU OBAT UTK PAKAN TERNAK) COA 050418-256, 040518-334\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"BIOTOX (BHN BAKU OBAT UTK PAKAN TERNAK) COA 050418-256, 040518-334\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIQUIPHOS STRONG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 030418-258\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"LIQUIPHOS STRONG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 030418-258\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIQUIPHOS STRONG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 030418-258\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"LIQUIPHOS STRONG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 030418-258\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP18053166,167\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP18053166,167\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP18053001,53002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP18053001,53002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP18053318,53319\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP18053318,53319\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VALERIAN D.H.E.0.8PCT VAL .AC (BAHAN BAKU SUPLEMEN) COA 10782/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"VALERIAN D.H.E.0.8PCT VAL .AC (BAHAN BAKU SUPLEMEN) COA 10782/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10740/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10740/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA. 20180526\""}, {"role": "assistant", "content": "{\"hs_code\" : \"11081200\", \"uraian\": \"CORN STARCH (BHN BAKU MAKANAN) COA. 20180526\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FDANDC RED #40/ALLURA RED AC AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP79087\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FDANDC RED #40/ALLURA RED AC AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP79087\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FDANDC YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP789489\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FDANDC YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP789489\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DANDC YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP787039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"DANDC YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP787039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FDANDC BLUE #1/BRILLIANT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP794694\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FDANDC BLUE #1/BRILLIANT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP794694\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FDANDC BLUE #1/BRILLIANT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP79465\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FDANDC BLUE #1/BRILLIANT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP79465\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FDANDC YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP789491\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FDANDC YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP789491\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C B YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP796058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C B YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP796058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FDANDC BLUE #2/INDIGO CARMINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP796431\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FDANDC BLUE #2/INDIGO CARMINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP796431\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1850622, 1850612\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"PARACETAMOL (BHN BAKU OBAT) COA 1850622, 1850612\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYCLETEST PLUS DNA REAGENT KIT RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8106849\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CYCLETEST PLUS DNA REAGENT KIT RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8106849\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT C6 FLOW CYTO STARTER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT C6 FLOW CYTO STARTER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TERGITOL 4 XLT4 SUPPLEMENT 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH SLBV8046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TERGITOL 4 XLT4 SUPPLEMENT 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH SLBV8046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8057556\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8057556\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8057556\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8057556\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8066910\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8066910\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7347501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7347501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GRAM IODINE STABILIZED 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8085868\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE GRAM IODINE STABILIZED 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8085868\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE L-ARABINOSE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8114629\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE L-ARABINOSE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8114629\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL CASAMINO ACIDS TECHNICAL 10KG(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7241559,8059990\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL CASAMINO ACIDS TECHNICAL 10KG(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7241559,8059990\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8103884\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8103884\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8103888\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8103888\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7214802,730584\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7214802,730584\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGARA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7178809\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TCBS AGARA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7178809\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8031785\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MANITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8031785\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7362716,8038940\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7362716,8038940\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7208901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7208901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8024866\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8024866\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7255556\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7255556\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7325835\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7325835\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL BUFFERED PEPTONE WATER 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8053800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL BUFFERED PEPTONE WATER 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8053800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8011876\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8011876\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7151674,8045613\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7151674,8045613\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8068984\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8068984\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8012723,8058565\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8012723,8058565\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7312572\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7312572\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7095842\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7095842\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7262745\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7262745\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7297545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7297545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242852\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242852\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7251553\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7251553\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC XT PACK 90MM 100E(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8072638,810388\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC XT PACK 90MM 100E(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8072638,810388\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC XT PACK RODAC 100EA (M. UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8085912,810388\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC XT PACK RODAC 100EA (M. UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8085912,810388\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7306827\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7306827\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7305896,734885\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7305896,734885\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7278689\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7278689\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7018890\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7018890\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060815\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060815\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8092912\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8092912\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8073950\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8073950\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7103675\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7103675\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8053866,8066907\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8053866,8066907\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL LAURYL TRYPTOSE BROTH 2KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8012733\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL LAURYL TRYPTOSE BROTH 2KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8012733\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079866,80926\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079866,80926\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8058979\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8058979\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POLYSORBATE 80 100G 1 EA (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7356700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POLYSORBATE 80 100G 1 EA (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7356700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8003647\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8003647\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE CRYSTAL E/ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8081587\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"TUBE CRYSTAL E/ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8081587\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE CRYSTAL INOCULUM BROTH (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7363698\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"TUBE CRYSTAL INOCULUM BROTH (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7363698\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POLYSORBATE 80 100G 1 EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7356700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POLYSORBATE 80 100G 1 EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7356700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7304649\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7304649\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8037783\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8037783\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT MAINTENANCE FLOW CYT 2MONTH (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT MAINTENANCE FLOW CYT 2MONTH (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8086753\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8086753\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8086753\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8086753\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT MAINTENANCE C6 FLOW CYT 1-YR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT MAINTENANCE C6 FLOW CYT 1-YR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PROTEOSE PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8009830\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PROTEOSE PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8009830\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079540\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079540\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079535\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079535\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ENDO AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8031775\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ENDO AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8031775\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MOTILITY TEST MEDIUM BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 7325815\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MOTILITY TEST MEDIUM BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 7325815\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7317688\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7317688\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6278861\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6278861\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE L-ARABINOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8121960\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE L-ARABINOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8121960\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIADIS MSRV 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8121572\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIADIS MSRV 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8121572\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8012740\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8012740\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8046922\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRIPLE SUGAR IRON AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8046922\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8115632\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8115632\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7220793\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7220793\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7153977\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7153977\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE STOCK CULTURE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8012616\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE STOCK CULTURE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8012616\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7363845\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7363845\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8046735\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8046735\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7321912\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7321912\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8103707\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8103707\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7335617\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7335617\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7363785\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7363785\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8081784\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8081784\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DNASE TEST AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8109825\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DNASE TEST AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8109825\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE CITRATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7114749\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DESOXYCHOLATE CITRATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7114749\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8114795\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8114795\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8031768\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8031768\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7291775\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7291775\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7349833\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7349833\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 8068984\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 8068984\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8032527\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8032527\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8032527\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8032527\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7075670\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7075670\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7156779\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7156779\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE UNIVERSAL PREENRICHMENT BROTH 500 (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8003533\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE UNIVERSAL PREENRICHMENT BROTH 500 (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8003533\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 4 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6342760\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 4 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6342760\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7212562\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7212562\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8032527\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8032527\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RVS SOY BROTH 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7332690\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RVS SOY BROTH 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7332690\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC XT PACK 90MM 100EA (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8109781\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA IC XT PACK 90MM 100EA (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8109781\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8092912\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8092912\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL TINSDALE ENRICHMENT 6X15ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8116913\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL TINSDALE ENRICHMENT 6X15ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8116913\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8101679\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8101679\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7254884\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7254884\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7356665\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7356665\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7338913\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7338913\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8068947,8101875\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8068947,8101875\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7153980\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7153980\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8075737,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8075737,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEADS SPHEROTECH 6-PEAK 2X4ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BEADS SPHEROTECH 6-PEAK 2X4ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD4 PERCP SK3 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7348718\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD4 PERCP SK3 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7348718\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD34 PE-CY7 8G12 Y7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8116646\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD34 PE-CY7 8G12 Y7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8116646\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD38 APC HB7 100 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8074869\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD38 APC HB7 100 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8074869\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8005840\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8005840\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 APC-H7 SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8118706\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 APC-H7 SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8118706\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD34 PERCP CY5.5 8G12 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8115842\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD34 PERCP CY5.5 8G12 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8115842\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI-MPO FITC 5BB 50 TESTS RUO/ (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8078589\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANTI-MPO FITC 5BB 50 TESTS RUO/ (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8078589\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD7 APC (M-T701) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8124755\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD7 APC (M-T701) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8124755\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD79A PE HM47 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8099949\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD79A PE HM47 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8099949\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7356665\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7356665\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8032932\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8032932\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT 10X10MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7228748\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"TUBE EGG YOLK ENRICHMENT 50PCT 10X10MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7228748\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7220790\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7220790\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SHIGELLA ANTIS POLY A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6351747\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SHIGELLA ANTIS POLY A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6351747\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FOLIC ACID ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7277529\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE FOLIC ACID ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7277529\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8068562\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8068562\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7332595\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7332595\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTISERUM FACTOR 12 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7342874\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL O ANTISERUM FACTOR 12 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7342874\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8005940\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8005940\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTISERUM POLY A 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8026563\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL H ANTISERUM POLY A 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8026563\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTISERUM GRP A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7160930\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL O ANTISERUM GRP A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7160930\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 800591\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 800591\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL E COLI O ANTISERUM O157 SEROL TEST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7321876\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL E COLI O ANTISERUM O157 SEROL TEST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7321876\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL NOVOBIOCIN SUPPLEMENT 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8095662\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL NOVOBIOCIN SUPPLEMENT 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8095662\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7256877\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7256877\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 APC SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8064632\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 APC SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8064632\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8078616\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8078616\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8046791\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8046791\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8134604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8134604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8075807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8075807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8046521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8046521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD10 PE-CY7 HI10A 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8142706\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD10 PE-CY7 HI10A 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8142706\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD19 PE-CY7 SJ25C1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8109758\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD19 PE-CY7 SJ25C1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8109758\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANNEXIN V FITC APOP DTEC KIT I 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8029889\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANNEXIN V FITC APOP DTEC KIT I 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8029889\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD64 APC-H7 10.1 50TST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8039787\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD64 APC-H7 10.1 50TST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8039787\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD36 HORIZON V450 CB38 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7251514\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD36 HORIZON V450 CB38 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7251514\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD7 APC M-T701 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8018957\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD7 APC M-T701 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8018957\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD3 BV421 UCHT1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8036773\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD3 BV421 UCHT1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8036773\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD CST BEADS KIT 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 80759\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BD CST BEADS KIT 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 80759\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 APC-H7 SK7 100TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8118706\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 APC-H7 SK7 100TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8118706\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD7 APC (M-T701) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8124755\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD7 APC (M-T701) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8124755\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD43 APC-H7 (1G10) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8115549\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD43 APC-H7 (1G10) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8115549\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD38 APC-H7 (HB7) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8135875\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD38 APC-H7 (HB7) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8135875\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD25 PE 2A3 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8064502\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD25 PE 2A3 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8064502\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HUMAN FOXP3 STAINING KIT PE 100 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HUMAN FOXP3 STAINING KIT PE 100 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MS CD4 PE H129.19 200UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8033706\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"MS CD4 PE H129.19 200UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8033706\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GOLGI PLUG PROTEIN TRSNP INHB 1ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7146718\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"GOLGI PLUG PROTEIN TRSNP INHB 1ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7146718\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD14 APC M5E2 25 TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7195873\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD14 APC M5E2 25 TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7195873\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEADS SPHEROTECH S PEAK VALIDATION 4ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BEADS SPHEROTECH S PEAK VALIDATION 4ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8124811\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8124811\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7354884\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7354884\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MS CD8A FITC 53-6.7 25UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7122801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"MS CD8A FITC 53-6.7 25UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7122801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GEMCITABINE HYDROCHLORIDE (BHN BAKU OBAT) COA 180521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"GEMCITABINE HYDROCHLORIDE (BHN BAKU OBAT) COA 180521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OXILIPLATIN (BHN BAKU OBAT) COA L20180408\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28439000\", \"uraian\": \"OXILIPLATIN (BHN BAKU OBAT) COA L20180408\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOPAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA.18100236\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29222900\", \"uraian\": \"DOPAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA.18100236\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NATTOKINASE (BHN BAKU OBAT)COA H185SAF001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29146200\", \"uraian\": \"NATTOKINASE (BHN BAKU OBAT)COA H185SAF001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA.18100393, 395\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA.18100393, 395\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINKGO BILOBA DRY EXTRACT HF (BHN BAKU SUPLEMEN) COA 17451\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINKGO BILOBA DRY EXTRACT HF (BHN BAKU SUPLEMEN) COA 17451\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA ROA165187\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA ROA165187\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-004-V\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-004-V\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EPA DHA 44 37 (BHN SUPLEMEN KESEHATAN) COA EE4437-180612\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"EPA DHA 44 37 (BHN SUPLEMEN KESEHATAN) COA EE4437-180612\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE (BHN BAKU KOSMETIK) COA 180797\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE (BHN BAKU KOSMETIK) COA 180797\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 180854\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 180854\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TEFOSE 63 (BHN BAKU SUPLEMEN) COA 169232\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TEFOSE 63 (BHN BAKU SUPLEMEN) COA 169232\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPRITOL 888 ATO (BHN BAKU SUPLEMEN) COA 169630\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"COMPRITOL 888 ATO (BHN BAKU SUPLEMEN) COA 169630\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELUCIRE 44/14 (BAHAN BAKU SUPLEMEN) COA 169573\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELUCIRE 44/14 (BAHAN BAKU SUPLEMEN) COA 169573\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLURESSENCE LEMON 5001 BA (BAHAN BAKU SUPLEMEN) COA 5140428\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"PLURESSENCE LEMON 5001 BA (BAHAN BAKU SUPLEMEN) COA 5140428\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELOIL SC (BHN BAKU SUPLEMEN) COA 169611\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELOIL SC (BHN BAKU SUPLEMEN) COA 169611\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE BM PELLETS (BHN BAKU SUPLEMEN) COA 18E0405\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE BM PELLETS (BHN BAKU SUPLEMEN) COA 18E0405\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NOREPINEPHRINE BITARTRATE (BHN BAKU OBAT) COA 440104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29379010\", \"uraian\": \"NOREPINEPHRINE BITARTRATE (BHN BAKU OBAT) COA 440104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL. ALPHA TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT17050110\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL. ALPHA TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT17050110\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518050123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518050123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HS (BHN BAKU KOSMETIK) COA 1017090017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HS (BHN BAKU KOSMETIK) COA 1017090017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518050123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518050123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HS, 10KG BAG (BHN BAKU KOSMETIK) COA 1017090018, 19\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HS, 10KG BAG (BHN BAKU KOSMETIK) COA 1017090018, 19\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN MINERAL PREMIX 170299 (BHN BAKU MAKANAN) COA XW91805294, 95\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN MINERAL PREMIX 170299 (BHN BAKU MAKANAN) COA XW91805294, 95\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN MINERAL PREMIX 170299 (BHN BAKU MAKANAN) COA XW91805292,93\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN MINERAL PREMIX 170299 (BHN BAKU MAKANAN) COA XW91805292,93\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB00318911\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB00318911\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB00318911\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB00318911\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-0890618\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334910\", \"uraian\": \"DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-0890618\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIFE'S DHA S35-O100, 5KG ALUF (B.BAKU SUPLEMEN) COA VY00249313\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"LIFE'S DHA S35-O100, 5KG ALUF (B.BAKU SUPLEMEN) COA VY00249313\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 20PCT SAF, 1KG ALUF (BHN BAKU SUPLEMEN) COA UE01803014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 20PCT SAF, 1KG ALUF (BHN BAKU SUPLEMEN) COA UE01803014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 61026P\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 61026P\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1810187, 212, 214\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"PARACETAMOL (BHN BAKU OBAT) COA 1810187, 212, 214\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM (BHN BAKU OBAT) COA 1803381,82,88, 89\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331100\", \"uraian\": \"METAMIZOLE SODIUM (BHN BAKU OBAT) COA 1803381,82,88, 89\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACETYLSALICYLIC ACID (BHN BAKU OBAT) COA 18051548, 51452\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29182200\", \"uraian\": \"ACETYLSALICYLIC ACID (BHN BAKU OBAT) COA 18051548, 51452\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEBIVOLOL HYDROCHLORIDE(BHN BAKU OBAT) COA NH0100518\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"NEBIVOLOL HYDROCHLORIDE(BHN BAKU OBAT) COA NH0100518\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA 102180404\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA 102180404\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA. 8MT180357\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30032000\", \"uraian\": \"STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA. 8MT180357\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606129\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606129\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606126\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606126\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606128\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606128\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605929\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605929\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606137\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606137\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606130\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606130\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606140\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606140\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606141\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606141\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604287\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604287\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605755\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605755\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY VIOLET (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606157\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY VIOLET (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606157\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606157\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606157\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606125\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606125\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606131\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606131\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606132\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606132\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605914\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605914\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1806041 S/D 44, 46, 216,219 S/D 222\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"MEFENAMIC ACID (BHN BAKU OBAT) COA MA1806041 S/D 44, 46, 216,219 S/D 222\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAROPHYLL YELLOW 10PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA UE01709534\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"CAROPHYLL YELLOW 10PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA UE01709534\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAROPHYLL RED 10PCT, 5KG BAG ALU (BHN BAKU OBAT UTK PAKAN TERNAK) COA UE01802573\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"CAROPHYLL RED 10PCT, 5KG BAG ALU (BHN BAKU OBAT UTK PAKAN TERNAK) COA UE01802573\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROVIMIX AD3 1000/200, 20KG BAG (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT18040317\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"ROVIMIX AD3 1000/200, 20KG BAG (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT18040317\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROVIMIX D3-500 (BHN BAKU OBAT UTK PAKAN TERNAK) COA UE01711038\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROVIMIX D3-500 (BHN BAKU OBAT UTK PAKAN TERNAK) COA UE01711038\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RONOZYME (R) HIPHOS GT, 25KG BAGDK (BHN BAKU OBAT UTK PAKAN TERNAK) COA HK921274\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29369000\", \"uraian\": \"RONOZYME (R) HIPHOS GT, 25KG BAGDK (BHN BAKU OBAT UTK PAKAN TERNAK) COA HK921274\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC CALCIUM ASCORBATE, 25KG BAL (BHN BAKU SUPLEMEN) COA HPT1805006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC CALCIUM ASCORBATE, 25KG BAL (BHN BAKU SUPLEMEN) COA HPT1805006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 20180604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 20180604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) COA PH01230118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) COA PH01230118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA. 1GC01CLB ZP48D 250MT\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA. 1GC01CLB ZP48D 250MT\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NYSTATIN (BHN BAKU OBAT) COA.C130790\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NYSTATIN (BHN BAKU OBAT) COA.C130790\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BIO5907\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BIO5907\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMBROXOL HYDROCHLORIDE POWDER (BHN BAKU OBAT) COA AHM/18082 S/D 18084\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"AMBROXOL HYDROCHLORIDE POWDER (BHN BAKU OBAT) COA AHM/18082 S/D 18084\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOCUSATE SODIUM (BHN BAKU OBAT), COA SD6060320, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"DOCUSATE SODIUM (BHN BAKU OBAT), COA SD6060320, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOCUSATE SODIUM (BHN BAKU OBAT) COA SD7071636, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"DOCUSATE SODIUM (BHN BAKU OBAT) COA SD7071636, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I11005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I11005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 20 PREMIUM... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D184HC1021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 20 PREMIUM... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D184HC1021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180519\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180519\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP05518\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP05518\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 27/50 SODIUM BICARBONATE (B.BAKU OBAT) COA MTP15918, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 27/50 SODIUM BICARBONATE (B.BAKU OBAT) COA MTP15918, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO171102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO171102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO171102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO171102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO171102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO171102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIV171001-BGBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIV171001-BGBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POMEGRANATE OF AQORES HYDROGLYCERINED EXTRACT (BHN BAKU KOSMETIK) COA PUGA180501-GL\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"POMEGRANATE OF AQORES HYDROGLYCERINED EXTRACT (BHN BAKU KOSMETIK) COA PUGA180501-GL\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO180601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO180601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0418020041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HMS ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0418020041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P8Q09QA000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL TX (BHN BAKU KOSMETIK) COA P8Q09QA000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SALBUTAMOL SULPHATE BP (BHN BAKU OBAT) COA SLL/SS/0618032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29225090\", \"uraian\": \"SALBUTAMOL SULPHATE BP (BHN BAKU OBAT) COA SLL/SS/0618032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 1801761339\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29322090\", \"uraian\": \"SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 1801761339\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CORTISONE ACETATE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1700941534\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"CORTISONE ACETATE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1700941534\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHLOROLINE (BHN BAKU KOSMETIK) COA 769016299J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHLOROLINE (BHN BAKU KOSMETIK) COA 769016299J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRO LIPO TM NEO (BHN BAKU KOSMETIK) COA 1809602\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PRO LIPO TM NEO (BHN BAKU KOSMETIK) COA 1809602\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016098J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016098J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830016073J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL (BHN BAKU KOSMETIK) COA 830016073J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK), COA 5497417\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ABYSSINE 657 (BHN BAKU KOSMETIK), COA 5497417\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE 657 BHN BAKU KOSMETIK, COA 5541718\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ABYSSINE 657 BHN BAKU KOSMETIK, COA 5541718\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829015924J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"B-WHITE (BHN BAKU KOSMETIK) COA 829015924J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785016095J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785016095J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELANOSTATINE 5BG (50PPM) (BHN BAKU KOSMETIK) COA 817046077J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MELANOSTATINE 5BG (50PPM) (BHN BAKU KOSMETIK) COA 817046077J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELANOSTATINE 5BG (50PPM) (BHN BAKU KOSMETIK) COA 817046330J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MELANOSTATINE 5BG (50PPM) (BHN BAKU KOSMETIK) COA 817046330J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016246J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016246J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROGELINE (BHN BAKU KOSMETIK) COA 820055712H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROGELINE (BHN BAKU KOSMETIK) COA 820055712H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016246J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016246J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TSPL-30-ID (BHN BAKU KOSMETIK) , COA 703009, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"TSPL-30-ID (BHN BAKU KOSMETIK) , COA 703009, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6048 (BHN BAKU KOSMETIK) , COA 803019, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6048 (BHN BAKU KOSMETIK) , COA 803019, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-96A-20CS (BHN BAKU KOSMETIK) COA 803801, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-96A-20CS (BHN BAKU KOSMETIK) COA 803801, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP16718\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP16718\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 018.436, 018.453\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 018.436, 018.453\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SKINB VITLIDO 1MLD16 (BHN BAKU OBAT) COA 15926-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE SKINB VITLIDO 1MLD16 (BHN BAKU OBAT) COA 15926-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SKINB VITALLGHLIDO 1MLD16 (BHN BAKU OBAT) COA 16112-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE SKINB VITALLGHLIDO 1MLD16 (BHN BAKU OBAT) COA 16112-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML (BHN BAKU OBAT) COA 15912-2, 15925-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE LYFT LIDOCAINE 1ML (BHN BAKU OBAT) COA 15912-2, 15925-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE REFYNE 1ML (BHN BAKU OBAT) COA 15842-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE REFYNE 1ML (BHN BAKU OBAT) COA 15842-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE DEFYNE 1ML (BHN BAKU OBAT) COA 15856-1, 16013-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE DEFYNE 1ML (BHN BAKU OBAT) COA 15856-1, 16013-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK)COA PSFAC-012568\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK)COA PSFAC-012568\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK) COA CPG-421968\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK) COA CPG-421968\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-021168\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-021168\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA RBA1731800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA RBA1731800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605790\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605790\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606222\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606222\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606154\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606154\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606214\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606214\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606215\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606215\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606216\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606216\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606227\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606227\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606236\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606236\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606210\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606210\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606213\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606213\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606233\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606233\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606209\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606209\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606234\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606234\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606235\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606235\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605871\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605871\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606228\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606228\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605929\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605929\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606223\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606223\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606226\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606226\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606225\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606225\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606210\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606210\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606208\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606208\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606218\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606218\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA Q900400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA Q900400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOPERASONE SODIUM STERILE (BHN BAKU OBAT) COA R900400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOPERASONE SODIUM STERILE (BHN BAKU OBAT) COA R900400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.18100462\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29391900\", \"uraian\": \"PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.18100462\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.18100462\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29391900\", \"uraian\": \"PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.18100462\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE PURIMOX COMPACTED GRADE A(BHN BAKU OBAT) COA M530079,94\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE PURIMOX COMPACTED GRADE A(BHN BAKU OBAT) COA M530079,94\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE PURIMOX POWDER (BHN BAKU OBAT) COA M483755\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE PURIMOX POWDER (BHN BAKU OBAT) COA M483755\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT )COA.ASG/06/050618, ...060618\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT )COA.ASG/06/050618, ...060618\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX TM COMPACTED, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B340002,4,5,7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX TM COMPACTED, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B340002,4,5,7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA. 20180612\""}, {"role": "assistant", "content": "{\"hs_code\" : \"11081200\", \"uraian\": \"CORN STARCH (BHN BAKU MAKANAN) COA. 20180612\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM SALICYLATE (BHN BAKU KOSMETIK)COA 201702009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SODIUM SALICYLATE (BHN BAKU KOSMETIK)COA 201702009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOPROFEN SALE DI LISINA (BHN BAKU OBAT) COA 187667\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29183000\", \"uraian\": \"KETOPROFEN SALE DI LISINA (BHN BAKU OBAT) COA 187667\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD195 APC 2D7/CCR5 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7286766\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD195 APC 2D7/CCR5 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7286766\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD184 PE 12G5 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8086757\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD184 PE 12G5 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8086757\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD11C BV421 B-LY6 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7125636\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD11C BV421 B-LY6 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7125636\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180603\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180603\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OXYTETRACYCLINE DIHYDRATE (BHN BAKU OBAT UTK PAKAN TERNAK) COA ZT1800428,536\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29413000\", \"uraian\": \"OXYTETRACYCLINE DIHYDRATE (BHN BAKU OBAT UTK PAKAN TERNAK) COA ZT1800428,536\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IRBESARTAN (BHN BAKU OBAT) COA C5465-17-051 S/D 53\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"IRBESARTAN (BHN BAKU OBAT) COA C5465-17-051 S/D 53\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MICONAZOLE NITRATE (BHN BAKU OBAT) COA H20180601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"MICONAZOLE NITRATE (BHN BAKU OBAT) COA H20180601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LINCOMYCIN HCL EP (BHN BAKU OBAT) COA 1805023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"LINCOMYCIN HCL EP (BHN BAKU OBAT) COA 1805023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYL SULFONYL METHANE USP (BHN BAKU OBAT) COA 20180602\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"METHYL SULFONYL METHANE USP (BHN BAKU OBAT) COA 20180602\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYL SULFONYL METHANE USP (BHN BAKU OBAT) COA 20180608\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"METHYL SULFONYL METHANE USP (BHN BAKU OBAT) COA 20180608\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TETRACYCLINE HYDROCHLORIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 180604-61, 62\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29413000\", \"uraian\": \"TETRACYCLINE HYDROCHLORIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 180604-61, 62\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CROSPOVIDONE XL-10 (BHN BAKU OBAT) COA PP180507XL-10\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"CROSPOVIDONE XL-10 (BHN BAKU OBAT) COA PP180507XL-10\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT676237\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT676237\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT676238\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT676238\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPASPRAY BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT676239\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPASPRAY BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT676239\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPASPRAY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT676240\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPASPRAY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT676240\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT674313\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPAGLOS WHITE/OFF-WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT674313\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPAGLOS YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT676241\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPAGLOS YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT676241\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPATINT RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT675418\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPATINT RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT675418\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT18010783\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT18010783\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91805438,5439\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91805438,5439\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000173224,172349,173095\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000173224,172349,173095\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20 KG BOX (BHN BAKU KOSMETIK) COA 0318040613,614,615\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789, 20 KG BOX (BHN BAKU KOSMETIK) COA 0318040613,614,615\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA MCS1605181\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA MCS1605181\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01803026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01803026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL1803026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL1803026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01803026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01803026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0281017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0281017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0023236\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0023236\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LOTUS NELUMBIUM NEL.FLOWER (BHN BAKU KOSMETIK) COA AM070124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"LOTUS NELUMBIUM NEL.FLOWER (BHN BAKU KOSMETIK) COA AM070124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RALTEGRAVIR POTASSIUM (BHN BAKU OBAT) COA RLTE/A302/8D/37\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"RALTEGRAVIR POTASSIUM (BHN BAKU OBAT) COA RLTE/A302/8D/37\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 201806T-CCH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 201806T-CCH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702646305\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702646305\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1711150,1801005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1711150,1801005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIO VINACCIOLI RAFFINATO (BHN BAKU KOSMETIK) COA.B1800069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15152919\", \"uraian\": \"OLIO VINACCIOLI RAFFINATO (BHN BAKU KOSMETIK) COA.B1800069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MILD TALCUM MOD1 (BHN BAKU KOSMETIK) COA 10300129\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MILD TALCUM MOD1 (BHN BAKU KOSMETIK) COA 10300129\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO180602\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO180602\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WHITE WILLOW BARK 50PCT BHN BAKU KOSMETIK, COA 20161014-610\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"WHITE WILLOW BARK 50PCT BHN BAKU KOSMETIK, COA 20161014-610\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLOTRIMAZOLE MICRONIZED (BHN BAKU OBAT ) COA 201712140177\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"CLOTRIMAZOLE MICRONIZED (BHN BAKU OBAT ) COA 201712140177\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MOXIFLOXACIN HYDROCHLORIDE(BHN BAKU OBAT) COA MP0060517\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334990\", \"uraian\": \"MOXIFLOXACIN HYDROCHLORIDE(BHN BAKU OBAT) COA MP0060517\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MOXIFLOXACIN HYDROCHLORIDE (BHN BAKU OBAT) COA MP0060618\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334990\", \"uraian\": \"MOXIFLOXACIN HYDROCHLORIDE (BHN BAKU OBAT) COA MP0060618\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 201800193\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 201800193\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 1PCT SD (BHN BAKU SUPLEMEN) COA UT18050006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 1PCT SD (BHN BAKU SUPLEMEN) COA UT18050006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COATED ASCORBIC ACID, TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01804552\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"COATED ASCORBIC ACID, TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01804552\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18030018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18030018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17110018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"REDIVIVO (R) (LYCOPENE) 10PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17110018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A AND D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18020037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A AND D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18020037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A AND D3 WATER MISCIBLE 100 (BHN BAKU SUPLEMEN) COA UT17110053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A AND D3 WATER MISCIBLE 100 (BHN BAKU SUPLEMEN) COA UT17110053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00218192\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00218192\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF... (BHN BAKU SUPLEMEN) COA UE01803014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO (R) LUTEIN 20PCT SAF... (BHN BAKU SUPLEMEN) COA UE01803014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607096\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607096\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607095\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607095\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIQUORICE LC (BHN BAKU KOSMETIK) COA.110657/P78475-P78478\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021920\", \"uraian\": \"LIQUORICE LC (BHN BAKU KOSMETIK) COA.110657/P78475-P78478\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) , COA 806966\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) , COA 806966\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 18061806\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 18061806\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00318213\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00318213\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for P.GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 32446/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"P.GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 32446/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRTOGENOL (R) (BHN BAKU SUPLEMEN) COA 80376/M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MIRTOGENOL (R) (BHN BAKU SUPLEMEN) COA 80376/M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP18063563, XP18063564\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP18063563, XP18063564\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP18063346, XP18063347\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP18063346, XP18063347\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND170703\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND170703\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA.18100482\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29395900\", \"uraian\": \"DIMENHYDRINATE (BHN BAKU OBAT) COA.18100482\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518060151\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518060151\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 270518\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25070000\", \"uraian\": \"KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 270518\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAX11013 (BHN BAKU MAKANAN) COA XW91806255\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"MAX11013 (BHN BAKU MAKANAN) COA XW91806255\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT LIQUID PARAFFIN BP (SAVONOL 16) BAHAN BAKU KOSMETIK, COA.LDC 18218T\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101990\", \"uraian\": \"LIGHT LIQUID PARAFFIN BP (SAVONOL 16) BAHAN BAKU KOSMETIK, COA.LDC 18218T\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP17618\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP17618\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA MTP18218\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA MTP18218\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518060151\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518060151\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518060151\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518060151\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518060151\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518060151\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518060151\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518060151\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IONOL CP (BHN BAKU KOSMETIK) COA 01117118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"IONOL CP (BHN BAKU KOSMETIK) COA 01117118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA WP780946\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #6/SUNSET YELLOW ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA WP780946\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP787039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP787039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C RED #40 ALLURA RED AC AL...(BHN BAKU OBAT UTK PEWARNA TABLET) COA WP794082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C RED #40 ALLURA RED AC AL...(BHN BAKU OBAT UTK PEWARNA TABLET) COA WP794082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607210\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607210\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607160\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607160\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607159\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607159\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SOLUTION DECONTAMINATION CONCENTRATE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 18D2556778\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"SOLUTION DECONTAMINATION CONCENTRATE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 18D2556778\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT C6 FLOW CYTO STARTER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT C6 FLOW CYTO STARTER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8108705\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8108705\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7341765\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7341765\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8128688\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8128688\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PEPSIN 1 TO 10000 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242856\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PEPSIN 1 TO 10000 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242856\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8023610\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8023610\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7262700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7262700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8053834\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8053834\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242852\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242852\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8129687\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8129687\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8015615\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8015615\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE 500G...(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8031768,8066789\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE 500G...(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8031768,8066789\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7291775\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7291775\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7349833\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7349833\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7157987\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7157987\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7262700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7262700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8053804\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8053804\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8068984\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8068984\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8058565\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8058565\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7095842\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7095842\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8053834\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8053834\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242852\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242852\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8012609\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8012609\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8129687\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8129687\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079535\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079535\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7278689\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7278689\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7018890\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7018890\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060815\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060815\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8094796\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8094796\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CASITONE 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8164638\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CASITONE 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8164638\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8066869\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8066869\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8023900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8023900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8029645\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8029645\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8064638\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8064638\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8074670,811375\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8074670,811375\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8059906\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8059906\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8054962\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8054962\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8032581\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8032581\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8066869\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8066869\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8129687\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8129687\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8079535\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8079535\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8079887,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8079887,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8087945\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8087945\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POLYPEPTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8155588\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POLYPEPTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8155588\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8086753\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8086753\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA LC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8128683\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA LC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8128683\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8079887\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8079887\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8094796\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8094796\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8101836\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8101836\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8031738\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8031738\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8128684\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8128684\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7157987\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7157987\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8079881\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8079881\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7332690\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7332690\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7297698\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7297698\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA LC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8128683\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA LC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8128683\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE COOKED MEAT MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6123884\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE COOKED MEAT MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6123884\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7103675\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7103675\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7095842\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7095842\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8066789\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8066789\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 7278689\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 7278689\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8053834\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8053834\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8012999\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8012999\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE STANDARD METHODS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8057835\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE STANDARD METHODS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8057835\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7102731\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7102731\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M TGE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8037685\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE M TGE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8037685\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D-MANNOSE 25G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7135976\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D-MANNOSE 25G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7135976\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7338913\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7338913\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8128800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8128800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL TINSDALE ENRICHMENT 6X15ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8131963\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL TINSDALE ENRICHMENT 6X15ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8131963\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8092819\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8092819\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP Y 1ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6162764\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL N MENINGITIDIS ANTISERUM GRP Y 1ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6162764\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7354884\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7354884\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7356665\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7356665\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7153980\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7153980\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8124811\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8124811\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7338913\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7338913\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8101875,8120718,..\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8101875,8120718,..\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8121789\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8121789\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8145547\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8145547\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8094872\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8094872\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8109595\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8109595\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8094883\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8094883\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD10 FITC HI10A 5 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8134604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD10 FITC HI10A 5 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8134604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8057807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8057807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8046521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8046521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8033517\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8033517\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI HLA-DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8015843,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANTI HLA-DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8015843,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8122889\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8122889\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8081908\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8081908\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI-MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8078589\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANTI-MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8078589\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD4 V4 FITC L120 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7108877\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD4 V4 FITC L120 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7108877\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD56 APC NCAM16.2 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8072654\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD56 APC NCAM16.2 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8072654\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD10 PE-CY7 HI10A 100TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8142706\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD10 PE-CY7 HI10A 100TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8142706\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD10 BV421 HI10A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8109662\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD10 BV421 HI10A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8109662\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD138 BV421 MI15 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7341707\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD138 BV421 MI15 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7341707\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD20 V500-C RUO (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8150884\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD20 V500-C RUO (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8150884\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD200 APC (MRC OX-104) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8092811\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD200 APC (MRC OX-104) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8092811\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FASTIMMUNE CD56/CD69/CD45 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8072998\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"FASTIMMUNE CD56/CD69/CD45 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8072998\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8046743, 8134776\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8046743, 8134776\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8032932\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8032932\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6309655\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS POLY 3ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6309655\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8092819\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8092819\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 7220822\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 7220822\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL PENICILLINASE 10000000 KU/ML 1 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6306981\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL PENICILLINASE 10000000 KU/ML 1 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6306981\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL ISOVITALEX ENRICHMENT 10ML 5 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7275653,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL ISOVITALEX ENRICHMENT 10ML 5 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7275653,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8054920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8054920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MTOR (PS2448) PE O21-404 507ST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8116629\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"MTOR (PS2448) PE O21-404 507ST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8116629\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AKT (PS473) PE M89-61 250TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7208554..\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"AKT (PS473) PE M89-61 250TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7208554..\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TRYPTICASE SOY AGAR 5PCT SB 20 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8137910\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TRYPTICASE SOY AGAR 5PCT SB 20 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8137910\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEVAMISOLE (BHN BAKU OBAT UTK PAKAN TERNAK) COA H180309-1,308-1, 308-2, 307-1,301-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"LEVAMISOLE (BHN BAKU OBAT UTK PAKAN TERNAK) COA H180309-1,308-1, 308-2, 307-1,301-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702646305\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702646305\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101852218\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101852218\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYLPOL 980 BAHAN BAKU KOSMETIK) COA 11518015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39069099\", \"uraian\": \"ACRYLPOL 980 BAHAN BAKU KOSMETIK) COA 11518015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU SUPLEMEN) COA 165210\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU SUPLEMEN) COA 165210\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 01/17GAAK\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 01/17GAAK\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 01/17GAAK, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 01/17GAAK, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 165210\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 165210\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016246J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016246J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784026310J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784026310J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEVOFLOXACIN HEMIHYDRATE USP (BHN BAKU OBAT) COA LF17080046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"LEVOFLOXACIN HEMIHYDRATE USP (BHN BAKU OBAT) COA LF17080046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PI18030004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349920\", \"uraian\": \"PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PI18030004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 201800256,195\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 201800256,195\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA MS/70120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA MS/70120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA MS/2460\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA MS/2460\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA. 20180612\""}, {"role": "assistant", "content": "{\"hs_code\" : \"11081200\", \"uraian\": \"CORN STARCH (BHN BAKU MAKANAN) COA. 20180612\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECODIAR POWDER (HERACLEOTICUM) (BHN BAKU OBAT UTK PAKAN TERNAK) COA. P0118072018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"ECODIAR POWDER (HERACLEOTICUM) (BHN BAKU OBAT UTK PAKAN TERNAK) COA. P0118072018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINKGO EXTRACT (BHN BAKU OBAT) COA 81661611\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"GINKGO EXTRACT (BHN BAKU OBAT) COA 81661611\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00218192\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00218192\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB01017666\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB01017666\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18030018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18030018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17110018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"REDIVIVO (R) (LYCOPENE) 10PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17110018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17110053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17110053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COATED ASCORBIC ACID TYPE EC,25KG BOX (BHN BAKU SUPLEMEN) COA TL01805648\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"COATED ASCORBIC ACID TYPE EC,25KG BOX (BHN BAKU SUPLEMEN) COA TL01805648\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) LYCOPENE 10PCT FS, 5KG ALU (BHN BAKU SUPLEMEN) COA UE01805001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"REDIVIVO (R) LYCOPENE 10PCT FS, 5KG ALU (BHN BAKU SUPLEMEN) COA UE01805001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000173096, 175262\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000173096, 175262\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340KG, 25KG PC (BHN BAKU KOSMETIK) COA 0218060107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340KG, 25KG PC (BHN BAKU KOSMETIK) COA 0218060107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218060107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218060107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218060107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218060107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT18020788,789\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT18020788,789\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT17120040,41\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT17120040,41\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ80106025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ80106025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80402166\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80402166\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ80310073\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ80310073\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18050008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18050008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325CWS/A (BHN BAKU MAKANAN) COA UT18040004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325CWS/A (BHN BAKU MAKANAN) COA UT18040004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11803008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP11803008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT17110096,UT18050003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT17110096,UT18050003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01802031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01802031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB00418077\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB00418077\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80310073\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80310073\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01801750,1758\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01801750,1758\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01801758\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01801758\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18040126\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18040126\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01801758\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01801758\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91805291\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX 504010 (BHN BAKU MAKANAN) COA XW91805291\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 204005 (BHN BAKU MAKANAN) COA XW91806254\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 204005 (BHN BAKU MAKANAN) COA XW91806254\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 204005 (BHN BAKU MAKANAN) COA XW91806254\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 204005 (BHN BAKU MAKANAN) COA XW91806254\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT18010010,15,17\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT18010010,15,17\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01801750\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01801750\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE ( BHN BAKU MAKANAN), COA UQ71103361\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE ( BHN BAKU MAKANAN), COA UQ71103361\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT18010072\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT18010072\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B2 UNIVERSAL FINE POWDER 5KG BAG ALU (BHN BAKU MAKANAN) COA UQ80110011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"B2 UNIVERSAL FINE POWDER 5KG BAG ALU (BHN BAKU MAKANAN) COA UQ80110011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01801014,16\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01801014,16\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO)BHN BAKU SUPLEMEN, COA UT18010783\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO)BHN BAKU SUPLEMEN, COA UT18010783\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17110063,64\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17110063,64\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17120036\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17120036\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ71103361\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ71103361\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT18010072\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT18010072\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01802002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01802002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01705019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01705019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU SUPLEMEN), COA TL01801750\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU SUPLEMEN), COA TL01801750\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI17100009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI17100009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU (TOCO) (BHN BAKU SUPLEMEN) COA UT18020169\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU (TOCO) (BHN BAKU SUPLEMEN) COA UT18020169\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01801016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01801016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00817039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00817039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT17080253\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT17080253\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT17080253\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT17080253\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT18010003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT18010003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT18010783\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT18010783\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT17120041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT17120041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ80106025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ80106025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01801008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL ,20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01801008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN), COA WB00917090\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN), COA WB00917090\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00517027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00517027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00517027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00517027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17120036\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17120036\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01802002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01802002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL ACETATE(BHN BAKU SUPLEMEN) COA XH20170401\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL ACETATE(BHN BAKU SUPLEMEN) COA XH20170401\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18050003,15\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18050003,15\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18050003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18050003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S0 (BHN BAKU MAKANAN) COA UT18050003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S0 (BHN BAKU MAKANAN) COA UT18050003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01802620,21,34,35\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01802620,21,34,35\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01802620\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01802620\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU MAKANAN) COA TL01802620\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU MAKANAN) COA TL01802620\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11803008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP11803008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL ,20KG PAIL PE(BHN BAKU SUPLEMEN) COA TL01801008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL ,20KG PAIL PE(BHN BAKU SUPLEMEN) COA TL01801008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BI06306\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BI06306\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101851918A533\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101851918A533\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLOWLAC (R) 100 (BHN BAKU OBAT) COA L101501718A537\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"FLOWLAC (R) 100 (BHN BAKU OBAT) COA L101501718A537\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK,COA 01/18GL4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK,COA 01/18GL4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSUVASTATIN CALCIUM (BHN BAKU OBAT) COA RVM1230518\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"ROSUVASTATIN CALCIUM (BHN BAKU OBAT) COA RVM1230518\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ESOMEPRAZOLE MUPS 22.5PCT (BHN BAKU OBAT) COA EO1818C001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"ESOMEPRAZOLE MUPS 22.5PCT (BHN BAKU OBAT) COA EO1818C001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMITOSE R (BHN BAKU KOSMETIK) COA KFG\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AMITOSE R (BHN BAKU KOSMETIK) COA KFG\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILASOMA MFA (S) (BHN BAKU KOSMETIK) COA KEF\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILASOMA MFA (S) (BHN BAKU KOSMETIK) COA KEF\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VEGETAMIDE 18MEA-NJ (BHN BAKU KOSMETIK) COA KCA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"VEGETAMIDE 18MEA-NJ (BHN BAKU KOSMETIK) COA KCA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA KEK\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROTESIL LH (BHN BAKU KOSMETIK) COA KEK\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA KDG\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA KDG\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA KFM\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) COA KFM\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS EFLS (BHN BAKU KOSMETIK) COA KGN\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS EFLS (BHN BAKU KOSMETIK) COA KGN\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DPG FG (BHN BAKU KOSMETIK) COA B01791DG\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29094900\", \"uraian\": \"DPG FG (BHN BAKU KOSMETIK) COA B01791DG\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PG USP (BHN BAKU KOSMETIK) COA B01791UP\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"PG USP (BHN BAKU KOSMETIK) COA B01791UP\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18050011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18050011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORLISTAT 50PCT WW PELLETS (BHN BAKU OBAT) COA OR/SF/0430718\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"ORLISTAT 50PCT WW PELLETS (BHN BAKU OBAT) COA OR/SF/0430718\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHASEOLUS VULGARIS DRY EXTRACT (BHN BAKU SUPLEMEN) COA 32599/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"PHASEOLUS VULGARIS DRY EXTRACT (BHN BAKU SUPLEMEN) COA 32599/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NYSTATIN POWDER (BHN BAKU OBAT) COA.C114209\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NYSTATIN POWDER (BHN BAKU OBAT) COA.C114209\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NYSTATIN MICRONIZED (BHN BAKU OBAT) COA C130837\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NYSTATIN MICRONIZED (BHN BAKU OBAT) COA C130837\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN1400917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN1400917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IZAYOI (BHN BAKU KOSMETIK), COA 180786\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"IZAYOI (BHN BAKU KOSMETIK), COA 180786\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 180807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 180807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 180854\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 180854\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN/ PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10837/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILYBIN/ PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10837/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYMARIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10462/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILYMARIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10462/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND MULBERRY EXTRACT (BHN BAKU KOSMETIK)COA MUB-010448\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND MULBERRY EXTRACT (BHN BAKU KOSMETIK)COA MUB-010448\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-082148\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-082148\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SNAIL SECREATION FILTRATE (BHN BAKU KOSMETIK)COA SAFW-020638\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SNAIL SECREATION FILTRATE (BHN BAKU KOSMETIK)COA SAFW-020638\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-021168\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-021168\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-041458, SFP-N-051868\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-041458, SFP-N-051868\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTRIAXONE SODIUM STERILE (BHN BAKU OBAT) COA 3051806020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTRIAXONE SODIUM STERILE (BHN BAKU OBAT) COA 3051806020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOTAXIME SODIUM STERILE (BHN BAKU OBAT) COA 3041806048\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOTAXIME SODIUM STERILE (BHN BAKU OBAT) COA 3041806048\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX BROWN HAIR (BHN BAKU KOSMETIK)COA JURF180701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX BROWN HAIR (BHN BAKU KOSMETIK)COA JURF180701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX FAIR HAIR (BHN BAKU KOSMETIK)COA MAC180701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX FAIR HAIR (BHN BAKU KOSMETIK)COA MAC180701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX HAIR LUSTRE - KARKADE (BHN BAKU KOSMETIK)COA HSK180101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX HAIR LUSTRE - KARKADE (BHN BAKU KOSMETIK)COA HSK180101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HORSECHESTNUT PHYTELENE EG 042 (BHN BAKU KOSMETIK)COA EG042-180601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HORSECHESTNUT PHYTELENE EG 042 (BHN BAKU KOSMETIK)COA EG042-180601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA180704\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA180704\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA180704\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA180704\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIE170702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIE170702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSA DAMASCENA ORGANIC DISTILLATE 1:20 (BHN BAKU KOSMETIK) COA ROSD180704-BIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROSA DAMASCENA ORGANIC DISTILLATE 1:20 (BHN BAKU KOSMETIK) COA ROSD180704-BIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-180702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-180702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INCA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK) COA II180608-AI-D-BIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"INCA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK) COA II180608-AI-D-BIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAFFLOWER REFINED OIL (BHN BAKU KOSMETIK) COA CARHR180701-DW\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SAFFLOWER REFINED OIL (BHN BAKU KOSMETIK) COA CARHR180701-DW\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO180703\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO180703\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-180605\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-180605\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA EG543-180605\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA EG543-180605\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-180602-GS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-180602-GS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-180602-GS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-180602-GS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180040 S/D 45\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180040 S/D 45\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL ,20KG PAIL PE(BHN BAKU KOSMETIK) COA TL01710818\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL ,20KG PAIL PE(BHN BAKU KOSMETIK) COA TL01710818\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0718030056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0718030056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01705019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE01705019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50,5KG BAG ALU EX US (BHN BAKU KOSMETIK) COA UT17070104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50,5KG BAG ALU EX US (BHN BAKU KOSMETIK) COA UT17070104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01705019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE01705019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18050096\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18050096\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01705019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE01705019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50, 20KG BOX NA (BHN BAKU KOSMETIK) COA UT17090162,17120220,18010226\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50, 20KG BOX NA (BHN BAKU KOSMETIK) COA UT17090162,17120220,18010226\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318040620,623,624\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318040620,623,624\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01803635\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01803635\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01803635\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01803635\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01803635\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01803635\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU MAKANAN) COA TL01803635\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU MAKANAN) COA TL01803635\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17110064\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17110064\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI17100009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI17100009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ71213302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ71213302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607481\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607481\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607489\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607489\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180703\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180703\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA.121808875\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054300\", \"uraian\": \"MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA.121808875\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOCUSATE SODIUM (BHN BAKU OBAT), COA SD8022810\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"DOCUSATE SODIUM (BHN BAKU OBAT), COA SD8022810\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOCUSATE SODIUM (BHN BAKU OBAT), COA SD8022810\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"DOCUSATE SODIUM (BHN BAKU OBAT), COA SD8022810\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEFENAMIC ACID COMPACTED (BHN BAKU OBAT) COA MFAC-1805050-A\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"MEFENAMIC ACID COMPACTED (BHN BAKU OBAT) COA MFAC-1805050-A\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITICOLINE SODIUM (BHN BAKU OBAT) COA 180412\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"CITICOLINE SODIUM (BHN BAKU OBAT) COA 180412\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEROPENEM TRIHYDRATE WITH SODIUM CARBONATE STERILE (BHN BAKU OBAT)COA S0820180414\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30032000\", \"uraian\": \"MEROPENEM TRIHYDRATE WITH SODIUM CARBONATE STERILE (BHN BAKU OBAT)COA S0820180414\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P8Q28PA000, 29PA000,30PA000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL TX (BHN BAKU KOSMETIK) COA P8Q28PA000, 29PA000,30PA000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL 75L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01805326\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL 75L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01805326\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MILD TALCUM MOD1 (BHN BAKU KOSMETIK) COA 10300133\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MILD TALCUM MOD1 (BHN BAKU KOSMETIK) COA 10300133\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTISHINE WASH (BHN BAKU KOSMETIK) COA 10300002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ANTISHINE WASH (BHN BAKU KOSMETIK) COA 10300002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121808870\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121808870\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 121808672, 8676, 8862, 8869\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 121808672, 8676, 8862, 8869\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOBUTAMINE HCL (BHN BAKU OBAT), COA 18100465\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29222900\", \"uraian\": \"DOBUTAMINE HCL (BHN BAKU OBAT), COA 18100465\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA.18100482, 525\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29395900\", \"uraian\": \"DIMENHYDRINATE (BHN BAKU OBAT) COA.18100482, 525\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANSOPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA LPC18035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"LANSOPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA LPC18035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA R700500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA R700500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECODIAR POWDER (HERACLEOTICUM)B. BAKU UTK OBAT UTK PAKAN TERNAK, COA OIL O611\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"ECODIAR POWDER (HERACLEOTICUM)B. BAKU UTK OBAT UTK PAKAN TERNAK, COA OIL O611\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E4M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180FB8021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E4M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180FB8021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011HC2L02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011HC2L02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E4M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180H5P032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E4M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180H5P032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180HCP002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180HCP002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180HBQ001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180HBQ001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180HBK003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180HBK003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100 PREMIUM LVCR ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180H71022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100 PREMIUM LVCR ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180H71022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100 PREMIUM LVCR ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I1J021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100 PREMIUM LVCR ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I1J021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100 PREMIUM LVCR ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180F3M022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100 PREMIUM LVCR ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180F3M022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100 PREMIUM LVCR ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180H88021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100 PREMIUM LVCR ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180H88021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEOMYCIN SULPHATE USP (BHN BAKU OBAT) COA 201806030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NEOMYCIN SULPHATE USP (BHN BAKU OBAT) COA 201806030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-180604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-180604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMWITOR (R) GMIS (BAHAN BAKU KOSMETIK) COA 807023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"IMWITOR (R) GMIS (BAHAN BAKU KOSMETIK) COA 807023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARS 14 PREMIUM (BHN BAKU OBAT UTK PEWARNA TABLET) COA D184I39021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARS 14 PREMIUM (BHN BAKU OBAT UTK PEWARNA TABLET) COA D184I39021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PERMETHRIN (PHARMA GRADE) BHN BAKU OBAT COA 184046001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29163990\", \"uraian\": \"PERMETHRIN (PHARMA GRADE) BHN BAKU OBAT COA 184046001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM (BHN BAKU OBAT) COA 1803392\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331900\", \"uraian\": \"METAMIZOLE SODIUM (BHN BAKU OBAT) COA 1803392\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THEOPHYLLINE ANHYDROUS (B. BAKU OBAT) COA 18039 S/D 41, 18115 S/D 118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29395900\", \"uraian\": \"THEOPHYLLINE ANHYDROUS (B. BAKU OBAT) COA 18039 S/D 41, 18115 S/D 118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLONIDINE HCL (BHN BAKU OBAT) COA 180839\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"CLONIDINE HCL (BHN BAKU OBAT) COA 180839\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHOLINE L-BITARTRATE (BAHAN BAKU OBAT) COA.3015183\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29231000\", \"uraian\": \"CHOLINE L-BITARTRATE (BAHAN BAKU OBAT) COA.3015183\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERYTHROSINE AL 38PCT- 42PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP798863:1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"ERYTHROSINE AL 38PCT- 42PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP798863:1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FDANDC BLUE #2/INDIGO CARMINE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP795448\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FDANDC BLUE #2/INDIGO CARMINE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP795448\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FDANDC BLUE #2/INDIGO CARMINE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP795444\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FDANDC BLUE #2/INDIGO CARMINE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP795444\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DANDC YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP788730\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"DANDC YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP788730\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-1711133\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-1711133\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNOLIA BARK EXTRACT (BHN BAKU KOSMETIK) COA MBE05-180601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MAGNOLIA BARK EXTRACT (BHN BAKU KOSMETIK) COA MBE05-180601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNOLIA BARK EXTRACT (BHN BAKU KOSMETIK) COA MBE05-180301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MAGNOLIA BARK EXTRACT (BHN BAKU KOSMETIK) COA MBE05-180301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 87-28-5 SALICYLIC ACID ETHYLENE GLYCOL ESTER/GLYCOL SALICYLATE (B.BAKU KOSMETIK)COA.DE180722\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"87-28-5 SALICYLIC ACID ETHYLENE GLYCOL ESTER/GLYCOL SALICYLATE (B.BAKU KOSMETIK)COA.DE180722\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5541718\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5541718\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829015924J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"B-WHITE (BHN BAKU KOSMETIK) COA 829015924J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829015924J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"B-WHITE (BHN BAKU KOSMETIK) COA 829015924J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830016094J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL (BHN BAKU KOSMETIK) COA 830016094J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL (BHN BAKU KOSMETIK), COA 830016074J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL (BHN BAKU KOSMETIK), COA 830016074J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785016298J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785016298J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXO-T (BHN BAKU KOSMETIK) COA 715016096J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EXO-T (BHN BAKU KOSMETIK) COA 715016096J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1803403\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) COA 1803403\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MINIPORYL (BHN BAKU KOSMETIK) COA 832016173J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MINIPORYL (BHN BAKU KOSMETIK) COA 832016173J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRO-LIPO TN NEO (BHN BAKU KOSMETIK) COA 1809401\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PRO-LIPO TN NEO (BHN BAKU KOSMETIK) COA 1809401\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SWT-7TM L (BHN BAKU KOSMETIK) COA 1807903\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SWT-7TM L (BHN BAKU KOSMETIK) COA 1807903\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015909H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015909H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANABLUE (BHN BAKU KOSMETIK) COA 5533018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LANABLUE (BHN BAKU KOSMETIK) COA 5533018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANACHRYS 2B PF (PRESERVATIVE)BHN BAKU KOSMETIK, COA 5523017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LANACHRYS 2B PF (PRESERVATIVE)BHN BAKU KOSMETIK, COA 5523017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1803403\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) COA 1803403\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015528H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015528H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 270518\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25070000\", \"uraian\": \"KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 270518\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID MONOHYDRATE BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 1AX1806043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID MONOHYDRATE BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 1AX1806043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CORN STARCH (BHN BAKU OBAT) COA 20180720\""}, {"role": "assistant", "content": "{\"hs_code\" : \"11081200\", \"uraian\": \"CORN STARCH (BHN BAKU OBAT) COA 20180720\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX MY200318-SD (BHN BAKU MAKANAN) COA E180000577, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX MY200318-SD (BHN BAKU MAKANAN) COA E180000577, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SUBQ 2 ML D16 (BHN BAKU OBAT) COA 15351-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE SUBQ 2 ML D16 (BHN BAKU OBAT) COA 15351-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SKINB VITLIDO 1MLD16 (BHN BAKU OBAT) COA 16037-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE SKINB VITLIDO 1MLD16 (BHN BAKU OBAT) COA 16037-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SKINB VITALLGHLIDO 1MLD16 (BHN BAKU OBAT) COA 16112-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE SKINB VITALLGHLIDO 1MLD16 (BHN BAKU OBAT) COA 16112-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SKINB VITALLGHLIDO 1MLD16 (BHN BAKU OBAT) COA 16191-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE SKINB VITALLGHLIDO 1MLD16 (BHN BAKU OBAT) COA 16191-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE VOLYME 1ML (BHN BAKU OBAT) COA 16046-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE VOLYME 1ML (BHN BAKU OBAT) COA 16046-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE DEFYNE 1ML (BHN BAKU OBAT) COA 16013-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE DEFYNE 1ML (BHN BAKU OBAT) COA 16013-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE KYSSE 1ML (BHN BAKU OBAT) COA 15887-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE KYSSE 1ML (BHN BAKU OBAT) COA 15887-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE KYSSE 1 ML (BHN BAKU OBAT) COA 15900-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE KYSSE 1 ML (BHN BAKU OBAT) COA 15900-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM CARBONATE (BHN BAKU OBAT) COA 22.12.2017/25/120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25090000\", \"uraian\": \"CALCIUM CARBONATE (BHN BAKU OBAT) COA 22.12.2017/25/120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA642118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA642118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA641951\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA641951\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 18051103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 18051103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE 04K (BHN BAKU KOSMETIK) COA 18051103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE 04K (BHN BAKU KOSMETIK) COA 18051103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ80407002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ80407002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT18010008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT18010008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18060038\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18060038\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT18010008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT18010008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 20180712\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 20180712\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S281/8\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S281/8\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 18042501, 18041301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 18042501, 18041301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000013171\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000013171\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA.0000013179\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA.0000013179\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607175\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607175\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607179\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607179\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607194\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607194\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607169\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607169\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606993\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606993\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606459\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606459\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607174\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607174\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607180\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607180\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607565\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607565\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607179\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607179\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607172\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607172\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607173\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607173\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607732\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607732\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607182\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607182\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605718\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605718\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607181\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607181\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VALERIAN D.H.E.0.8PCT VAL .AC (BAHAN BAKU SUPLEMEN) COA 10784/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"VALERIAN D.H.E.0.8PCT VAL .AC (BAHAN BAKU SUPLEMEN) COA 10784/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334570\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334570\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1851079, 1810699\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"PARACETAMOL (BHN BAKU OBAT) COA 1851079, 1810699\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1810639, 1810856,1851099\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"PARACETAMOL (BHN BAKU OBAT) COA 1810639, 1810856,1851099\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA.M113093\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA.M113093\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMIKACIN SULFATE (BHN BAKU OBAT) COA 8F0011H20, ...12H20,...13H20\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"AMIKACIN SULFATE (BHN BAKU OBAT) COA 8F0011H20, ...12H20,...13H20\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK)COA MUP-0121168\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK)COA MUP-0121168\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-051868, 060678\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-051868, 060678\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK)COA 062818\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK)COA 062818\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CUCUMBER EXTRACT (BHN BAKU KOSMETIK) COA CUPD-022648\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND CUCUMBER EXTRACT (BHN BAKU KOSMETIK) COA CUPD-022648\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-010858\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-010858\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-062378\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-062378\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK)COA CPG-472678\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK)COA CPG-472678\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-020538\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-020538\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOGLYCOLIC ACID 99PCT COSMETIC GRADE (BHN BAKU KOSMETIK) COA.0000063992\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOGLYCOLIC ACID 99PCT COSMETIC GRADE (BHN BAKU KOSMETIK) COA.0000063992\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMMONIUM THIOGLYCOLATE 71PCT(60PCT TGA) BHN BAKU KOSMETIK, COA.0000063993\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"AMMONIUM THIOGLYCOLATE 71PCT(60PCT TGA) BHN BAKU KOSMETIK, COA.0000063993\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MONOETHANOLAMINE THIOGLYCOLATE 83PCT (50PCT TGA) BHN BAKU KOSMETIK, COA 0000063994\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221100\", \"uraian\": \"MONOETHANOLAMINE THIOGLYCOLATE 83PCT (50PCT TGA) BHN BAKU KOSMETIK, COA 0000063994\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMMONIUM THIOGLYCOLATE 71PCT (60PCT TGA) B.BAKU KOSMETIK,COA 0000064010, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"AMMONIUM THIOGLYCOLATE 71PCT (60PCT TGA) B.BAKU KOSMETIK,COA 0000064010, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIAMMONIUM DITHIODIGLYCOLATE 48PCT... (B. BAKU KOSMETIK), COA 0000064012,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"DIAMMONIUM DITHIODIGLYCOLATE 48PCT... (B. BAKU KOSMETIK), COA 0000064012,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MONOETHANOLAMINE THIOGLYCOLATE 83PCT ...(B. BAKU KOSMETIK), COA 0000064013,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221100\", \"uraian\": \"MONOETHANOLAMINE THIOGLYCOLATE 83PCT ...(B. BAKU KOSMETIK), COA 0000064013,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POTASSIUM THIOGLYCOLATE 43PCT (30PCT TGA)B. BAKU KOSMETIK, COA 0000064037,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"POTASSIUM THIOGLYCOLATE 43PCT (30PCT TGA)B. BAKU KOSMETIK, COA 0000064037,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOGLYCOLIC ACID 99PCT PURE, B BAKU KOSMETIK, COA 0000064039, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOGLYCOLIC ACID 99PCT PURE, B BAKU KOSMETIK, COA 0000064039, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOGLYCOLIC ACID 80PCT, COSMETIC GRADE (BHN BAKU KOSMETIK) COA 64040,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOGLYCOLIC ACID 80PCT, COSMETIC GRADE (BHN BAKU KOSMETIK) COA 64040,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KAHLWAX 2956 (BHN BAKU KOSMETIK) COA F1827017-001, F1827018-002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15211000\", \"uraian\": \"KAHLWAX 2956 (BHN BAKU KOSMETIK) COA F1827017-001, F1827018-002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607792\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607792\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GRAY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607799\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GRAY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607799\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607791\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607791\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607810\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607810\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000175263,64\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000175263,64\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ70813199\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ70813199\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01803026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01803026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218060107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218060107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91807108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91807108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218060107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218060107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518060153\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518060153\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS ,25KG PC (BHN BAKU KOSMETIK) COA 0718030056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHS ,25KG PC (BHN BAKU KOSMETIK) COA 0718030056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES1702026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"ALLANTOIN (BHN BAKU KOSMETIK) COA ES1702026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50, 5KG BAG ALU EX US (BHN BAKU KOSMETIK) COA UT17070104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50, 5KG BAG ALU EX US (BHN BAKU KOSMETIK) COA UT17070104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01803026,38,39\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01803026,38,39\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FENOFIBRATE MICRONIZED (BHN BAKU OBAT) COA W-F03-20180511-01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"FENOFIBRATE MICRONIZED (BHN BAKU OBAT) COA W-F03-20180511-01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607581\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607581\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607576\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607576\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607593\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607593\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607594\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607594\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607575\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607575\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607583\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607583\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607578\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607578\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607577\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607577\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607580\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607580\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607182\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607182\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606459\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606459\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607588\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607588\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607579\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607579\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607585\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607585\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607570\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607570\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607586\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607586\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607751\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607751\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA RBA1731800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA RBA1731800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-1360818\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334910\", \"uraian\": \"DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-1360818\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC 005-8-801, LC 011-8-801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 200 (BHN BAKU OBAT) COA. LC 005-8-801, LC 011-8-801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101852418\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101852418\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101852418\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101852418\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOTAXIME SODIUM EP (BHN BAKU OBAT) COA Q900500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOTAXIME SODIUM EP (BHN BAKU OBAT) COA Q900500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEOMYCIN SULPHATE USP (BHN BAKU OBAT) COA 201808002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NEOMYCIN SULPHATE USP (BHN BAKU OBAT) COA 201808002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTIVEGETOL GUARANA P107 HYDRO (BHN BAKU KOSMETIK) COA 168482\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"OPTIVEGETOL GUARANA P107 HYDRO (BHN BAKU KOSMETIK) COA 168482\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELOT 64 (BHN BAKU SUPLEMEN) COA 170277\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELOT 64 (BHN BAKU SUPLEMEN) COA 170277\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TEFOSE 63 (BHN BAKU SUPLEMEN) COA 169919\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TEFOSE 63 (BHN BAKU SUPLEMEN) COA 169919\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 101869003,5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 101869003,5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM GLUCONATE EP (BHN BAKU OBAT) COA CGA-EP1807080\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"CALCIUM GLUCONATE EP (BHN BAKU OBAT) COA CGA-EP1807080\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8068881\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8068881\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8101679\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8101679\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7356665\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7356665\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8005940,81596\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS INABA 3ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8005940,81596\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8068881\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8068881\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8130543,8143530\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8130543,8143530\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE HEYA W/ANV AND MYCOBACTIN J 10EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8131957\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"TUBE HEYA W/ANV AND MYCOBACTIN J 10EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8131957\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL ANTIMICROBIC K 6X10ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8142921\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL ANTIMICROBIC K 6X10ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8142921\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7153980\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7153980\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8143530\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8143530\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7362985,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7362985,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8134776\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8134776\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FASTIMMUNE CD56/CD69/CD45 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8191869\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"FASTIMMUNE CD56/CD69/CD45 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8191869\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL SNSEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8123664\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL SNSEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8123664\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT 10X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8151581\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"TUBE EGG YOLK ENRICHMENT 50PCT 10X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8151581\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL E COLI ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7321876\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL E COLI ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7321876\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8123664\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8123664\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7332595\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7332595\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL E COLI H ANTISERUM H7 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6323840\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL E COLI H ANTISERUM H7 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6323840\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8121789\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8121789\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8094872\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8094872\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FASTIMMUNEHU IFN-GMA FITC 25723.11 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8163563\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"FASTIMMUNEHU IFN-GMA FITC 25723.11 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8163563\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8109595\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8109595\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8094883\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8094883\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8075807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8075807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8046521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8046521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8156919\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8156919\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI-HLA-DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8192942\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANTI-HLA-DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8192942\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8122889\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8122889\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8135805\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8135805\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD34 PE 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8103659\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD34 PE 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8103659\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYTOFIX/CYTOPERM W/GOLGIPLUG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8144860\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CYTOFIX/CYTOPERM W/GOLGIPLUG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8144860\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU IL-17A PE N49-653 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8004580\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU IL-17A PE N49-653 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8004580\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD183 PE-CY7 1C6/CXCR3 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8106559\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD183 PE-CY7 1C6/CXCR3 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8106559\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYTOLIX/CYTOPERM SOIN KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8080967\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CYTOLIX/CYTOPERM SOIN KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8080967\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD19 PE-CY7 SJ25C1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8180953\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD19 PE-CY7 SJ25C1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8180953\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8152901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8152901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD4 APC SK3 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7318894\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD4 APC SK3 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7318894\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD8 PERCP-CY5.5 SK1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8114784\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD8 PERCP-CY5.5 SK1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8114784\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANNEXIN V FITC APOP DTEC KIT I 100TST (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8072965\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANNEXIN V FITC APOP DTEC KIT I 100TST (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8072965\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 PERCP 2D1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8075987\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD45 PERCP 2D1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8075987\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PERM/WASH BUFFER 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8088837\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PERM/WASH BUFFER 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8088837\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LYSING BUFFER 10X CONCENTRATE 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8149712\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"LYSING BUFFER 10X CONCENTRATE 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8149712\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MS CD3 MOLCPX PE-CY7 17A2 50UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7235504\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"MS CD3 MOLCPX PE-CY7 17A2 50UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7235504\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD196 (CCR6) APC 11A9 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7180922\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD196 (CCR6) APC 11A9 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7180922\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD4 PERCP -CY5.5 SK3 RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8116650\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD4 PERCP -CY5.5 SK3 RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8116650\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD55 PE IA10 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7335810\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD55 PE IA10 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7335810\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD59 FITC P282 (H19) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7177716\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD59 FITC P282 (H19) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7177716\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD5 FITC L17F12 100 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8010928\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD5 FITC L17F12 100 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8010928\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG180713\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG180713\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX COMPACTED, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B340009 S/D 12\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX COMPACTED, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B340009 S/D 12\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I5C002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I5C002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I5J002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I5J002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SERASENSE SF CM5 (BAHAN BAKU KOSMETIK) COA PA80801034,2042,2044,2046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29319049\", \"uraian\": \"SERASENSE SF CM5 (BAHAN BAKU KOSMETIK) COA PA80801034,2042,2044,2046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID SPECIAL , 25KG BAL (BHN BAKU SUPLEMEN) COA HPD1803111\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID SPECIAL , 25KG BAL (BHN BAKU SUPLEMEN) COA HPD1803111\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ESOMEPRAZOLE SODIUM STERILE (BHN BAKU OBAT), COA SI/EPZ/00010318\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"ESOMEPRAZOLE SODIUM STERILE (BHN BAKU OBAT), COA SI/EPZ/00010318\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA. 1GC01CLB ZP48D 250MT\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA. 1GC01CLB ZP48D 250MT\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 1807EF6113\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"L-ARGININE LO (BHN BAKU KOSMETIK),COA 1807EF6113\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101852618\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101852618\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01804593, 7004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01804593, 7004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 70 (BHN BAKU OBAT) COA LC 051-7-870\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 70 (BHN BAKU OBAT) COA LC 051-7-870\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8178744\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8178744\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8178744\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8178744\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 81787445\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 81787445\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RHAMNOSE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8193542\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RHAMNOSE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8193542\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8052992\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8052992\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8029645\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8029645\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8015615,8103503\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8015615,8103503\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL CASAMINO ACIDS TECHNICAL 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8101901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL CASAMINO ACIDS TECHNICAL 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8101901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8164638\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8164638\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8074670\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8074670\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8024866\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8024866\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8059906\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8059906\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7102560,7249871\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7102560,7249871\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL BUFFERED PEPTONE WATER 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8085791\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL BUFFERED PEPTONE WATER 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8085791\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7341765\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7341765\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8054962,8079524\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8054962,8079524\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242852\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242852\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8066869\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 9 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8066869\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079535\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079535\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079887,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079887,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8094584,593\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8094584,593\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8116634,37\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8116634,37\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7157987\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7157987\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7291775\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7291775\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7349871\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7349871\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7262745\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7262745\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8079540\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8079540\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7324991\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7324991\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8066794\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8066794\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8064953\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8064953\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8066907\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8066907\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8176945\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8176945\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7095842\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7095842\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079881\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079881\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8134769\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8134769\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8053834\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8053834\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 7349833\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 7349833\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA LC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8158919\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA LC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8158919\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8129691\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8129691\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE STANDARD METHODS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8057835\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE STANDARD METHODS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8057835\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8116718\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8116718\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8130513\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8130513\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7304669\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7304669\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8037783\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8037783\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8078889\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8078889\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8178744\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8178744\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8129691\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8129691\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8129691\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8129691\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE S-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8023610\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE S-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8023610\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8079802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8079802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8079802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8079802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD MALTOSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6167751\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SABOURAUD MALTOSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6167751\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 801167190\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 801167190\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7254544\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7254544\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 81417944\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 81417944\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 4 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6342760\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 4 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6342760\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 71539772\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 71539772\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8046735\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8046735\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 8101873\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 8101873\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MULLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7009699\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MULLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7009699\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POLYPEPTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8155588\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POLYPEPTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8155588\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8113905\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MALT EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8113905\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7341765\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7341765\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEMOGLOBIN FREEZE DRIED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8053834\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEMOGLOBIN FREEZE DRIED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8053834\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8053838\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8053838\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8164501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8164501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ULTALUX FF25 KG BAG (BHN BAKU KOSMETIK) COA D041831361\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ULTALUX FF25 KG BAG (BHN BAKU KOSMETIK) COA D041831361\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 1,3 BUTYLENE GLYCOL, COSMETIC QUALITY(BHN BAKU KOSMETIK) COA. P0618608CC\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"1,3 BUTYLENE GLYCOL, COSMETIC QUALITY(BHN BAKU KOSMETIK) COA. P0618608CC\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/50 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP20518\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/50 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP20518\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537827\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537827\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537847\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537847\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537789\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537789\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537834\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537834\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607950\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607950\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18050010, 50008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18050010, 50008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01802012,20\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01802012,20\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ80306074, 75\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ80306074, 75\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18010001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18010001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18010001,60006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18010001,60006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ80306074\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ80306074\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL01802012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL01802012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18060006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18060006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01802020,3039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01802020,3039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00917090\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00917090\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00917090,91\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00917090,91\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ1213304\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ1213304\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80610102, 104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80610102, 104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01803151\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01803151\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 25KG BOX ALU (BHN BAKU MAKANAN) COA TL01802834\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 25KG BOX ALU (BHN BAKU MAKANAN) COA TL01802834\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01802834\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01802834\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT18040145\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT18040145\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ71213304\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ71213304\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01705019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01705019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ80402171\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ80402171\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE1705019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU MAKANAN) COA UE1705019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1803009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1803009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1803009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1803009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17080285\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17080285\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17080285\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17080285\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17080285\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17080285\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ71103362,UQ80203027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ71103362,UQ80203027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT18010072\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT18010072\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO)BHN BAKU MAKANAN, COA UT18010783, 784\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO)BHN BAKU MAKANAN, COA UT18010783, 784\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B2 UNIVERSAL FINE POWDER, 5KG BAG ALU (BHN BAKU MAKANAN) COA UQ80110011,14\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"B2 UNIVERSAL FINE POWDER, 5KG BAG ALU (BHN BAKU MAKANAN) COA UQ80110011,14\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01803636\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01803636\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00817039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00817039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80402171\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80402171\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE 25KG BOX (BHN BAKU SUPLEMEN) COA TL01803151\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE 25KG BOX (BHN BAKU SUPLEMEN) COA TL01803151\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17110064\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17110064\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN), COA UQ71213304\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN), COA UQ71213304\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ80203026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ80203026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU (TOCO) (BHN BAKU SUPLEMEN) COA UT18020169\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU (TOCO) (BHN BAKU SUPLEMEN) COA UT18020169\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT18010072\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT18010072\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI17100009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI17100009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01802002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01802002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18060006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18060006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT17110004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT17110004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MILKUAT ZN FE (25PCT CARRIER) (BHN BAKU MAKANAN) COA XW91807106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"MILKUAT ZN FE (25PCT CARRIER) (BHN BAKU MAKANAN) COA XW91807106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT18010010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT18010010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01801016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01801016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17110064\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17110064\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN), COA UE01801016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN), COA UE01801016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ80610104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ80610104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ80203027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ80203027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01802012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01802012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80610104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80610104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80402171\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80402171\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80402171\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80402171\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18050007,8\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18050007,8\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18040005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18040005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ71213304\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ71213304\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ80203026,27\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ80203026,27\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453194746\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453194746\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE /PURIMOX COMPACTED GRADE A(BHN BAKU OBAT) COA M530195,196,221 S/D 223\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE /PURIMOX COMPACTED GRADE A(BHN BAKU OBAT) COA M530195,196,221 S/D 223\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE /PURIMOX POWDER(BHN BAKU OBAT) COA M483783,785\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE /PURIMOX POWDER(BHN BAKU OBAT) COA M483783,785\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INOSITOL (BHN BAKU OBAT) COA 201804135\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"INOSITOL (BHN BAKU OBAT) COA 201804135\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 1807037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"ACESULFAME K (BHN BAKU OBAT) COA 1807037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TETRACYCLINE HYDROCHLORIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 180624-62\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29413000\", \"uraian\": \"TETRACYCLINE HYDROCHLORIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 180624-62\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYL SULFONYL METHANE USP (BHN BAKU OBAT) COA 18073001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"METHYL SULFONYL METHANE USP (BHN BAKU OBAT) COA 18073001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180713\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180713\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DAMIANA EXTRACT (BHN BAKU OBAT) COA BNPD180721\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"DAMIANA EXTRACT (BHN BAKU OBAT) COA BNPD180721\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI SHINE WASH (BHN BAKU KOSMETIK) COA 10300068\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ANTI SHINE WASH (BHN BAKU KOSMETIK) COA 10300068\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONO CHARDY (BHN BAKU KOSMETIK) COA 172847\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"CHRONO CHARDY (BHN BAKU KOSMETIK) COA 172847\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 180991\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 180991\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 181146\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 181146\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANDARIN INCLEAR (BHN BAKU KOSMETIK) COA 181137\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"MANDARIN INCLEAR (BHN BAKU KOSMETIK) COA 181137\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTTO COLLAGE B (N) BHN BAKU KOSMETI, COA 180264\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"PHYTTO COLLAGE B (N) BHN BAKU KOSMETI, COA 180264\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 80503\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 80503\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 80608\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 80608\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX C TM AF (BHN BAKU KOSMETIK) COA 80610\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SUPEROX C TM AF (BHN BAKU KOSMETIK) COA 80610\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1803403\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) COA 1803403\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SWT-7 TM L (BHN BAKU KOSMETIK) COA 1807901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SWT-7 TM L (BHN BAKU KOSMETIK) COA 1807901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SWT-7 TM L (BHN BAKU KOSMETIK), COA 1815001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SWT-7 TM L (BHN BAKU KOSMETIK), COA 1815001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK), COA 5541718\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ABYSSINE 657 (BHN BAKU KOSMETIK), COA 5541718\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 1724514\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 1724514\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785016298J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785016298J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1804005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) COA 1804005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015909H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015909H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016427J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016427J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTELENE COMPLEX EGX 773(BHN BAKU KOSMETIK)COA PX773-180803-GS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTELENE COMPLEX EGX 773(BHN BAKU KOSMETIK)COA PX773-180803-GS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANGOUSTAN HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA GAM171101-B\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MANGOUSTAN HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA GAM171101-B\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS180201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS180201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POMEGRANATE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA PUG180501-BGBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"POMEGRANATE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA PUG180501-BGBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA180705\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA180705\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM170702-PGH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM170702-PGH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO180301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO180301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND LICORICE EXTRACT (BHN BAKU KOSMETIK)COA GGB-010478\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND LICORICE EXTRACT (BHN BAKU KOSMETIK)COA GGB-010478\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUB-010448\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUB-010448\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND PF SC GLUCAN (BHN BAKU KOSMETIK)COA CPG-472678, CPG-500688\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND PF SC GLUCAN (BHN BAKU KOSMETIK)COA CPG-472678, CPG-500688\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 2018D1321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 2018D1321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-150578\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-150578\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-011388\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-011388\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ70813211\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ70813211\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18060170\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18060170\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000175792,174770\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000175792,174770\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY C(R) 50, 20KG BOX NA (BHN BAKU KOSMETIK) COA UT18010226,227\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY C(R) 50, 20KG BOX NA (BHN BAKU KOSMETIK) COA UT18010226,227\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF18004052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF18004052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50, 5KG BAG ALU (BHN BAKU KOSMETIK) COA UE01801009,1011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50, 5KG BAG ALU (BHN BAKU KOSMETIK) COA UE01801009,1011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC 011-8-801, 012-8-801, 004-8-801, 011-8-801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 200 (BHN BAKU OBAT) COA. LC 011-8-801, 012-8-801, 004-8-801, 011-8-801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP800632\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP800632\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP796425\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP796425\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP796410\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP796410\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CORN STARCH (BHN BAKU OBAT) COA 20180725\""}, {"role": "assistant", "content": "{\"hs_code\" : \"11081200\", \"uraian\": \"CORN STARCH (BHN BAKU OBAT) COA 20180725\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE USP (BHN BAKU KOSMETIK) COA 18-19/NMD(P)/U/068 S/D 072\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE USP (BHN BAKU KOSMETIK) COA 18-19/NMD(P)/U/068 S/D 072\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18070054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18070054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00218194\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00218194\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18070054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18070054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 20PCT SAF,1KG ALUF (BHN BAKU SUPLEMEN) COA UE01806039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 20PCT SAF,1KG ALUF (BHN BAKU SUPLEMEN) COA UE01806039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00218443\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00218443\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COATED ASCORBIC ACID TYPE EC ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01806790\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"COATED ASCORBIC ACID TYPE EC ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01806790\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18060032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18060032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT18060032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT18060032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01807089\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01807089\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIAMCINOLONE ACETONIDE MICRONIZED (BHN BAKU OBAT) COA NY1271M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"TRIAMCINOLONE ACETONIDE MICRONIZED (BHN BAKU OBAT) COA NY1271M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NY0865M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NY0865M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MOXIFLOXACIN HYDROCHLORIDE(BHN BAKU OBAT) COA MP0100718\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334990\", \"uraian\": \"MOXIFLOXACIN HYDROCHLORIDE(BHN BAKU OBAT) COA MP0100718\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M.31.0PCT (BHN BAKU OBAT) COA 101829018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MG HYD PASTE USP TYPE M.31.0PCT (BHN BAKU OBAT) COA 101829018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) COA PH01230318\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) COA PH01230318\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00817039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00817039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID ,25KG BOX /ALU (BHN BAKU SUPLEMEN) COA TL01802834\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID ,25KG BOX /ALU (BHN BAKU SUPLEMEN) COA TL01802834\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91807109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91807109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91807332\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX 504010 (BHN BAKU MAKANAN) COA XW91807332\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01801016, 18,19\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01801016, 18,19\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW91807146\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 C (BHN BAKU MAKANAN) COA XW91807146\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 C3 (BHN BAKU MAKANAN) COA XW91807147\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 C3 (BHN BAKU MAKANAN) COA XW91807147\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01803261\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01803261\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01803261\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01803261\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 204005 (BHN BAKU MAKANAN) COA XW91807248\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 204005 (BHN BAKU MAKANAN) COA XW91807248\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1801005,2024,2030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1801005,2024,2030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01803636\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01803636\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT17110004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT17110004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1803009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1803009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01803261\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01803261\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18060006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18060006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01802834\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01802834\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01803636\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01803636\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01705019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01705019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00817039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00817039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01803261\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01803261\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW91808057\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 C (BHN BAKU MAKANAN) COA XW91808057\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT18050023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT18050023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT18050023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT18050023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100CWS (BHN BAKU SUPLEMEN) COA UT18050023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100CWS (BHN BAKU SUPLEMEN) COA UT18050023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT18060196\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT18060196\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 - C3 (BHN BAKU MAKANAN) COA XW91808032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 - C3 (BHN BAKU MAKANAN) COA XW91808032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 - C3 (BHN BAKU MAKANAN) COA XW91808032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 - C3 (BHN BAKU MAKANAN) COA XW91808032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCAP 1500 CO-PROCESSED (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537452\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCAP 1500 CO-PROCESSED (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537452\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18060039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18060039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REFINED TRACED SHEA OLEIN (BHN BAKU KOSMETIK) COA 0000021935\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"REFINED TRACED SHEA OLEIN (BHN BAKU KOSMETIK) COA 0000021935\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JAGUAR HP 105, 25KG CARDBOARD CARTON (BHN BAKU KOSMETIK) COA H1806198D\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"JAGUAR HP 105, 25KG CARDBOARD CARTON (BHN BAKU KOSMETIK) COA H1806198D\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CARE PROTECTOR C6 PELICAN (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CARE PROTECTOR C6 PELICAN (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607955\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607955\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607950\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607950\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607732\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607732\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607963\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607963\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607965\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607965\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607954\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607954\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607957\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607957\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607951\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607951\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607952\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607952\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607958\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607958\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607964\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607964\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JAGUAR C 162 CARDBOARD BOX 25 KG (BHN BAKU KOSMETIK) COA MJAC18150A\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"JAGUAR C 162 CARDBOARD BOX 25 KG (BHN BAKU KOSMETIK) COA MJAC18150A\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 18092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 18092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1808048,51 S/D 57,59 S/D 61\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"MEFENAMIC ACID (BHN BAKU OBAT) COA MA1808048,51 S/D 57,59 S/D 61\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VISTANOL GDHR (BHN BAKU KOSMETIK) COA KHJ\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"VISTANOL GDHR (BHN BAKU KOSMETIK) COA KHJ\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA KDG\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA KDG\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA KEK\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROTESIL LH (BHN BAKU KOSMETIK) COA KEK\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS EU-118 (IS) (BHN BAKU KOSMETIK) COA KGN\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS EU-118 (IS) (BHN BAKU KOSMETIK) COA KGN\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01612023, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01612023, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA. DOC2251821\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"SODIUM CARBONATE IPH (BHN BAKU OBAT) COA. DOC2251821\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTRACT 2PCT COLOR (BAHAN BAKU SUPPLEMEN) COA 10730/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTRACT 2PCT COLOR (BAHAN BAKU SUPPLEMEN) COA 10730/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10731/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10731/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10732/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10732/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10733/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10733/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 181401\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 181401\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND180801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND180801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT BLACK TEA POWDER TH B430 (BHN BAKU MAKANAN) COA 2018022401\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"INSTANT BLACK TEA POWDER TH B430 (BHN BAKU MAKANAN) COA 2018022401\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIOTOX (BHN BAKU OBAT UTK PAKAN TERNAK) COA 050818-628\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"BIOTOX (BHN BAKU OBAT UTK PAKAN TERNAK) COA 050818-628\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for E.C.O TRACE ZN 25PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC310118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"E.C.O TRACE ZN 25PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC310118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for E.C.O TRACE MN 20PCT (BHN BAKU UTK PAKAN TERNAK) COA BC290118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"E.C.O TRACE MN 20PCT (BHN BAKU UTK PAKAN TERNAK) COA BC290118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for E.C.O TRACE FE 20PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC310118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"E.C.O TRACE FE 20PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC310118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA R700500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA R700500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELUCIRE 48/16 PELLETS (BHN BAKU SUPLEMEN) COA 161003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELUCIRE 48/16 PELLETS (BHN BAKU SUPLEMEN) COA 161003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARIA III 6B/2R ACDU BASIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 4828202012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ARIA III 6B/2R ACDU BASIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 4828202012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180803\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180803\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608130\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608130\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608131\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608131\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608131\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608131\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608133\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608133\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608136\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608136\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607732\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607732\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608125\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608125\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606853\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606853\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608126\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608126\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608128\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608128\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE PURPLE(BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608129\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE PURPLE(BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608129\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608135\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608135\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608135\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608135\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLOWLAC (R) 100 (BHN BAKU OBAT) COA. L101502918\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"FLOWLAC (R) 100 (BHN BAKU OBAT) COA. L101502918\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104312818\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104312818\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ESCIN FREE ACID (BHN BAKU SUPLEMEN) COA 32591/M4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"ESCIN FREE ACID (BHN BAKU SUPLEMEN) COA 32591/M4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT GRANULATION ,25KG BOX (BHN BAKU SUPLEMEN) COA WB00818950\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT GRANULATION ,25KG BOX (BHN BAKU SUPLEMEN) COA WB00818950\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURICILLIN COMPACTED (BHN BAKU OBAT) COA. M842378 S/D 80,99,2400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411020\", \"uraian\": \"PURICILLIN COMPACTED (BHN BAKU OBAT) COA. M842378 S/D 80,99,2400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURICILLIN POWDER (BHN BAKU OBAT) COA M780733\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411020\", \"uraian\": \"PURICILLIN POWDER (BHN BAKU OBAT) COA M780733\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EPA DHA 44 37 (BHN SUPLEMEN KESEHATAN) COA EE4437-180803\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"EPA DHA 44 37 (BHN SUPLEMEN KESEHATAN) COA EE4437-180803\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM (BHN BAKU OBAT) COA 1805674,753 ,754,904\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331900\", \"uraian\": \"METAMIZOLE SODIUM (BHN BAKU OBAT) COA 1805674,753 ,754,904\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180805\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180805\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB210718\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB210718\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B130718\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B130718\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG160818\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG160818\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA.LDC 223 18T\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101990\", \"uraian\": \"SAVONOL 16 (BAHAN BAKU KOSMETIK), COA.LDC 223 18T\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121808884,8932\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121808884,8932\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA R900500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA R900500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS FUMARATE ( BHN BAKU OBAT), COA 2018/209\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"FERROUS FUMARATE ( BHN BAKU OBAT), COA 2018/209\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-GLUTAMIC ACID ( BHN BAKU SUPLEMEN), COA 1000040931/180730\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"L-GLUTAMIC ACID ( BHN BAKU SUPLEMEN), COA 1000040931/180730\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708160078 S/D 80, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708160078 S/D 80, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CONFECTIONERY INK CI-250002 RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA TKL45591\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"CONFECTIONERY INK CI-250002 RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA TKL45591\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CONFECTIONERY INK CI-205002 BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA TKL45590\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"CONFECTIONERY INK CI-205002 BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA TKL45590\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789,20KG BOX (BHN BAKU KOSMETIK) COA 0318040631 S/D 34\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789,20KG BOX (BHN BAKU KOSMETIK) COA 0318040631 S/D 34\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0218060099\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0218060099\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC,25KG BOX (BHN BAKU KOSMETIK) COA 0000175793,74770\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC,25KG BOX (BHN BAKU KOSMETIK) COA 0000175793,74770\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00550066,67\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"AMPHISOL K (BHN BAKU KOSMETIK) COA VE00550066,67\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789,20KG BOX (BHN BAKU KOSMETIK) COA 0318040634,40635, 50787\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789,20KG BOX (BHN BAKU KOSMETIK) COA 0318040634,40635, 50787\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES1804058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"ALLANTOIN (BHN BAKU KOSMETIK) COA ES1804058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL1801802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL1801802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91808150\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91808150\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT18020169\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT18020169\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608588\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608588\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETAHISTINE MESILATE EP (BHN BAKU OBAT) COA EDBHM0818004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"BETAHISTINE MESILATE EP (BHN BAKU OBAT) COA EDBHM0818004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CIPROFLOXACIN HCL (BHN BAKU OBAT) COA HB00N1808029 S/D 36\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"CIPROFLOXACIN HCL (BHN BAKU OBAT) COA HB00N1808029 S/D 36\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1851660,666,1811049,\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"PARACETAMOL (BHN BAKU OBAT) COA 1851660,666,1811049,\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453198471\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453198471\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CORN STARCH (BHN BAKU OBAT) COA 20180815\""}, {"role": "assistant", "content": "{\"hs_code\" : \"11081200\", \"uraian\": \"CORN STARCH (BHN BAKU OBAT) COA 20180815\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT678338\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT678338\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT678343\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT678343\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPASPRAY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT678347\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPASPRAY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT678347\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 250/355 SUGLETS 250/355 (45/60 MESH) BHN BAKU OBAT UTK PEWARNA TABLET, COA ST510217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"250/355 SUGLETS 250/355 (45/60 MESH) BHN BAKU OBAT UTK PEWARNA TABLET, COA ST510217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA.24700818,24710818,24720818...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA.24700818,24710818,24720818...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FIBRE DRUM (DRUM KOSONG) FREE OF COST NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"48192000\", \"uraian\": \"FIBRE DRUM (DRUM KOSONG) FREE OF COST NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NORIT SX SUPER E 153 (BHN BAKU KOSMETIK) COA 4332393\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38021000\", \"uraian\": \"NORIT SX SUPER E 153 (BHN BAKU KOSMETIK) COA 4332393\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK)COA SFP-N-072378\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK)COA SFP-N-072378\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-010248\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-010248\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND LICORICE EXTRACT (BHN BAKU KOSMETIK) COA GGB-010478\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND LICORICE EXTRACT (BHN BAKU KOSMETIK) COA GGB-010478\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-082148\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-082148\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-062378\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-062378\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK)COA PSFAC-012568, 021088\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK)COA PSFAC-012568, 021088\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-170388\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-170388\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE(BHN BAKU KOSMETIK) COA 080718\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SODIUM HYDROGEN SULFITE(BHN BAKU KOSMETIK) COA 080718\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-112478\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-112478\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 100 CN 10KG KA (BHN BAKU KOSMETIK) COA 1513045, 1514878\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 100 CN 10KG KA (BHN BAKU KOSMETIK) COA 1513045, 1514878\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 900 10KG KA (BHN BAKU KOSMETIK) COA 1514236\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 900 10KG KA (BHN BAKU KOSMETIK) COA 1514236\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GROTANOL 3025 CN 10KG KA (BHN BAKU KOSMETIK) COA 1509426\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GROTANOL 3025 CN 10KG KA (BHN BAKU KOSMETIK) COA 1509426\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 10KG KA (BHN BAKU KOSMETIK) COA 1514016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 10KG KA (BHN BAKU KOSMETIK) COA 1514016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIDIN DO CN 10KG CA (BHN BAKU KOSMETIK) COA 1507933,1514728\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIDIN DO CN 10KG CA (BHN BAKU KOSMETIK) COA 1507933,1514728\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 CN 10KG KA (BHN BAKU KOSMETIK) COA 1510110,1513317\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 CN 10KG KA (BHN BAKU KOSMETIK) COA 1510110,1513317\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 CN 10KG KA (BHN BAKU KOSMETIK) COA 1510110,1513317,1514952\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 CN 10KG KA (BHN BAKU KOSMETIK) COA 1510110,1513317,1514952\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 CN 200KG FA (BHN BAKU KOSMETIK) COA 1511296,1515235\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 CN 200KG FA (BHN BAKU KOSMETIK) COA 1511296,1515235\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT A PALM 1.0M + VIT D3 100.000 (BHN BAKU KOSMETIK) COA UT18060054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VIT A PALM 1.0M + VIT D3 100.000 (BHN BAKU KOSMETIK) COA UT18060054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE ,25KG BOX (BHN BAKU MAKANAN) COA TL01804593\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE ,25KG BOX (BHN BAKU MAKANAN) COA TL01804593\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01804593\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01804593\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT A PALM 1.0M +VIT D3 100.000 (BHN BAKU MAKANAN) COA UT18060054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VIT A PALM 1.0M +VIT D3 100.000 (BHN BAKU MAKANAN) COA UT18060054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01804593001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01804593001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01807004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01807004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PACLITAXEL SEMISYNTHETIC (USP,TEST-2) (BHN BAKU OBAT) COA 898NSH005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"PACLITAXEL SEMISYNTHETIC (USP,TEST-2) (BHN BAKU OBAT) COA 898NSH005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HANDHELD RAMAN SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HANDHELD RAMAN SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH180809-ENBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH180809-ENBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LINEN OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA LIU180504-H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LINEN OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA LIU180504-H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS180201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS180201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JOB'S TEARS HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA COL180801-B-RQ\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"JOB'S TEARS HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA COL180801-B-RQ\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANACOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPLEMEN KESEHATAN) COA. 1806431963, 11836\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANACOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPLEMEN KESEHATAN) COA. 1806431963, 11836\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE /PURIMOX COMPACTED GRADE A(BHN BAKU OBAT) COA M483832\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE /PURIMOX COMPACTED GRADE A(BHN BAKU OBAT) COA M483832\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE /PURIMOX COMPACTED GRADE A(BHN BAKU OBAT) COA M530240\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE /PURIMOX COMPACTED GRADE A(BHN BAKU OBAT) COA M530240\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE /PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M595986\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE /PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M595986\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND180901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND180901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01806756\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01806756\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT18030004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT18030004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18060013,16\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18060013,16\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE ,20KG BOX(BHN BAKU MAKANAN) COA QZ11180412\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE ,20KG BOX(BHN BAKU MAKANAN) COA QZ11180412\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE ,20KG BOX (BHN BAKU MAKANAN) COA QZ11180412\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE ,20KG BOX (BHN BAKU MAKANAN) COA QZ11180412\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18070213\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18070213\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE ,20KG BOX (BHN BAKU MAKANAN) COA QZ11180412\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE ,20KG BOX (BHN BAKU MAKANAN) COA QZ11180412\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18070207\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18070207\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18060019,21\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18060019,21\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA. 20180820\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17023010\", \"uraian\": \"DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA. 20180820\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00517027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00517027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00517027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00517027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00517027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00517027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18060024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18060024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91808014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX 504010 (BHN BAKU MAKANAN) COA XW91808014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91808174, XW91808175\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91808174, XW91808175\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18060024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18060024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18060012,13,19\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18060012,13,19\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01803646\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01803646\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ80209005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ80209005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ80209005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ80209005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418095\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418095\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00517027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00517027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT18050023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT18050023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00517027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00517027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT18030171\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT18030171\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01802002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01802002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID,25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01803255,3258\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID,25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01803255,3258\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1804015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1804015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1804015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1804015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1803012, 4015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1803012, 4015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1803012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1803012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ80406081,506120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ80406081,506120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00817040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00817040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT18050023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT18050023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00817040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00817040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ80306079,81\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ80306079,81\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18060024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18060024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY SGR TRANSLUCENT (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA643700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY SGR TRANSLUCENT (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA643700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC,25KG BOX (BHN BAKU KOSMETIK) COA 0000175798,174770,175739\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC,25KG BOX (BHN BAKU KOSMETIK) COA 0000175798,174770,175739\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 041802004,070137\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HMS (BHN BAKU KOSMETIK) COA 041802004,070137\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18060170\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18060170\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY C (R) 50,5KG BAG ALU EX US (BHN BAKU KOSMETIK) COA UT17070104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY C (R) 50,5KG BAG ALU EX US (BHN BAKU KOSMETIK) COA UT17070104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB00718222\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB00718222\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX TM POWDER,CEFADROXIL MONOHYDRATE (BHN BAKU OBAT) COA.B334583,584\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX TM POWDER,CEFADROXIL MONOHYDRATE (BHN BAKU OBAT) COA.B334583,584\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SKINB VITLIDO 1MLD16 , COA 16200-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE SKINB VITLIDO 1MLD16 , COA 16200-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SKINB VITALLGHLIDO 1MLD16 , COA 16191-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE SKINB VITALLGHLIDO 1MLD16 , COA 16191-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SKINB LYFT LIDOCAINE 1ML , COA 16177-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE SKINB LYFT LIDOCAINE 1ML , COA 16177-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE VOLYME 1ML , COA 16046-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE VOLYME 1ML , COA 16046-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE REFYNE 1ML , COA 15842-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE REFYNE 1ML , COA 15842-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE DEFYNE 1ML , COA 16013-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE DEFYNE 1ML , COA 16013-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE KYSSE 1 ML , COA 16207-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE KYSSE 1 ML , COA 16207-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PASSION FLOWER D.H.E >4PCT (BAHAN BAKU SUPLEMEN) COA 10713/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"PASSION FLOWER D.H.E >4PCT (BAHAN BAKU SUPLEMEN) COA 10713/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1802720674\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1802720674\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-180604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-180604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANTOPROZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT,COA APSS180016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"PANTOPROZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT,COA APSS180016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD FACS MELODY BR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6615880031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BD FACS MELODY BR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6615880031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPRESSOR AIR EXT 230V/50HZ 0-120PSL 4L (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"COMPRESSOR AIR EXT 230V/50HZ 0-120PSL 4L (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D18015D003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D18015D003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I6G002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I6G002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL A15 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180HBF022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL A15 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180HBF022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACYCLOVIR MICRONIZED (BHN BAKU OBAT) COA 18100535\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"ACYCLOVIR MICRONIZED (BHN BAKU OBAT) COA 18100535\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HUILE DE COPRAH RAFF GV 24/26 (BHN BAKU KOSMETIK)COA BA007906\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15131910\", \"uraian\": \"HUILE DE COPRAH RAFF GV 24/26 (BHN BAKU KOSMETIK)COA BA007906\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CILOSTAZOL USP (BHN BAKU OBAT) COA 17007CB2ARI\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29337900\", \"uraian\": \"CILOSTAZOL USP (BHN BAKU OBAT) COA 17007CB2ARI\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NONIVAMIDE (SYNTHETIC CAPSAICIN)BHN BAKU KOSMETIK, COA.20180726\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29241990\", \"uraian\": \"NONIVAMIDE (SYNTHETIC CAPSAICIN)BHN BAKU KOSMETIK, COA.20180726\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DPG FG (BHN BAKU KOSMETIK) COA B01921DG\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29094900\", \"uraian\": \"DPG FG (BHN BAKU KOSMETIK) COA B01921DG\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PG USP (BHN BAKU KOSMETIK) COA B01921UP\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"PG USP (BHN BAKU KOSMETIK) COA B01921UP\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANOLINE ANHYDROUS (BHN BAKU KOSMETIK) COA 4506,4551,4819\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LANOLINE ANHYDROUS (BHN BAKU KOSMETIK) COA 4506,4551,4819\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180817\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180817\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFADROXILE MONOHYDRATE (PURIDROX POWDER) BHN BAKU OBAT,COA.B334574, S/D 77\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFADROXILE MONOHYDRATE (PURIDROX POWDER) BHN BAKU OBAT,COA.B334574, S/D 77\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT) COA B334570,73,74\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT) COA B334570,73,74\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURILEX TM COMPACTED, CEFALEXIN MONOHYDRATE (BHN BAKU OBAT) COA B460291\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURILEX TM COMPACTED, CEFALEXIN MONOHYDRATE (BHN BAKU OBAT) COA B460291\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIAMCINOLONE ACETONIDE MICRONIZED (BHN BAKU OBAT) COA NY1413M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"TRIAMCINOLONE ACETONIDE MICRONIZED (BHN BAKU OBAT) COA NY1413M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK)COA HMVBD-062378\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK)COA HMVBD-062378\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA HMVBD-070698\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA HMVBD-070698\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK)COA KFB-L-010858\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK)COA KFB-L-010858\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-122488\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-122488\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) BHN BAKU KOSMETIK) COA CHP1180802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) BHN BAKU KOSMETIK) COA CHP1180802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIOTOX (R) (BHN BAKU OBAT UTK PAKAN TERNAK) COA 300818-652\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"BIOTOX (R) (BHN BAKU OBAT UTK PAKAN TERNAK) COA 300818-652\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETAPRO 300 (BHN BAKU OBAT UTK PAKAN TERNAK) COA 200818-632\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"BETAPRO 300 (BHN BAKU OBAT UTK PAKAN TERNAK) COA 200818-632\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for E.C.O TRACE ZN 25PCT (BHN BAKU UTK PAKAN TERNAK) COA BC270218\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"E.C.O TRACE ZN 25PCT (BHN BAKU UTK PAKAN TERNAK) COA BC270218\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for E.C.O.TRACE MN 20PCT(BHN BAKU OBAT UTK PAKAN TERNAK) COA BC290118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"E.C.O.TRACE MN 20PCT(BHN BAKU OBAT UTK PAKAN TERNAK) COA BC290118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for E.C.O TRACE FE 20PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC050718\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"E.C.O TRACE FE 20PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC050718\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIOKEY SELENIUM (BHN BAKU OBAT UTK PAKAN TERNAK) COA 210218-148\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"BIOKEY SELENIUM (BHN BAKU OBAT UTK PAKAN TERNAK) COA 210218-148\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIQUIPHOS STRONG (BHN BAKU UTK PAKAN TERNAK) COA 270818-667\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"LIQUIPHOS STRONG (BHN BAKU UTK PAKAN TERNAK) COA 270818-667\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIQUIPHOS STRONG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 270818-667\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"LIQUIPHOS STRONG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 270818-667\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-1690918\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334910\", \"uraian\": \"DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-1690918\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAPROTILINE HCL (BHN BAKU OBAT) COA 1850001426\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29214900\", \"uraian\": \"MAPROTILINE HCL (BHN BAKU OBAT) COA 1850001426\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOSWELLIA SERRATA PHOSPHOLIPID (BHN BAKU SUMPLEMEN) COA 18432\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"BOSWELLIA SERRATA PHOSPHOLIPID (BHN BAKU SUMPLEMEN) COA 18432\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOSWELLIA SERRATA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 18342\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"BOSWELLIA SERRATA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 18342\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7297545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7297545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8130513\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8130513\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8155535\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8155535\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8178744\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8178744\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8239573\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8239573\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RHAMNOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8211705\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RHAMNOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8211705\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8094593,....\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8094593,....\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 8150739\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 8150739\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8122582,8157606\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8122582,8157606\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 8059873\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 8059873\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7349834,8101800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7349834,8101800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SACCHAROSE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8046747\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SACCHAROSE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8046747\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7341765\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7341765\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL LAURYL TRYPTOSE BROTH 2KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8155560\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL LAURYL TRYPTOSE BROTH 2KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8155560\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8155557\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8155557\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8129687\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8129687\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8129687\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8129687\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7018890\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7018890\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060815\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060815\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7363777\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7363777\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8234703\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8234703\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7291775,8073792\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7291775,8073792\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8023610\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8023610\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7349871\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7349871\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8171517\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8171517\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079540\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079540\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7324991\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7324991\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8066794\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8066794\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8064953\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8064953\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8066907\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8066907\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183849\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE XLD AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183849\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8127705\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8127705\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079881\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079881\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8085825\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8085825\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8134769\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8134769\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8053834,8134709\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8053834,8134709\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8032534\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8032534\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA LC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8194978\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA LC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8194978\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8066907\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8066907\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8127705\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8127705\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8079881\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8079881\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8085825\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8085825\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8134769\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8134769\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8053834\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8053834\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE OF BASAL MEDIUM 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8103707\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE OF BASAL MEDIUM 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8103707\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR TECHNICAL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8127781\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE AGAR TECHNICAL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8127781\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8129691\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8129691\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT EXTRACT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8101775\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MALT EXTRACT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8101775\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MICRO ASSAY CULTURE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6327982\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MICRO ASSAY CULTURE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6327982\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8046735\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8046735\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8101873\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8101873\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M ENDO BROTH MF 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8053859\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE M ENDO BROTH MF 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8053859\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ISP MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242953\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ISP MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242953\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ISP MEDIUM 4 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8115820\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ISP MEDIUM 4 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8115820\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7075670\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7075670\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8081784\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8081784\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ISP MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7363779\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ISP MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7363779\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST NITOGEN BASE W/O AA 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183886\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE YEAST NITOGEN BASE W/O AA 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183886\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MIDDLEBROOK 7H9 BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8045590\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MIDDLEBROOK 7H9 BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8045590\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8103503\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8103503\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8164642\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8164642\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8011687,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8011687,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141534\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141534\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141534\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141534\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GRAM CRYSTAL VIOLET 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8172940\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE GRAM CRYSTAL VIOLET 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8172940\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7335917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7335917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8031739\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8031739\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8037783\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8037783\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8101787\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8101787\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8234703\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8234703\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8239573\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8239573\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7363718\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7363718\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHOSPHATE BUFFER PH 7.2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8141591\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PHOSPHATE BUFFER PH 7.2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8141591\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AGAR MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7254544\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY AGAR MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7254544\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8080511\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8080511\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MR-VP MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7262698\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MR-VP MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7262698\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8046757\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8046757\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LOOPS INOCULATING 10/TUBE 10 MICROLITER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8802416\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"LOOPS INOCULATING 10/TUBE 10 MICROLITER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8802416\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MULLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8134700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MULLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8134700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NITRATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8129685\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE NITRATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8129685\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 5 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8197524\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 5 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8197524\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8115632\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8115632\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MICRO ASSAY CULTURE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8206622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MICRO ASSAY CULTURE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8206622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183877\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183877\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8207815\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8207815\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRAIN HEART INFUSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8037753\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRAIN HEART INFUSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8037753\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7153977\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7153977\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8134767\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8134767\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8004586\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8004586\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 8 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8240940\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 8 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8240940\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8101873\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8101873\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7009699\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7009699\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8193979\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8193979\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SOLUTION BACTERIOSTAT CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 18H0256415\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"SOLUTION BACTERIOSTAT CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 18H0256415\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SOLUTION BACTERIOSTAT CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 18H0256415\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"SOLUTION BACTERIOSTAT CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 18H0256415\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8151583\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8151583\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7341765\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7341765\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CASITONE 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8164638,8164642\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CASITONE 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8164638,8164642\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8194646\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8194646\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIADIS MSRV 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8121572\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIADIS MSRV 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8121572\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8141794\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8141794\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POLYPEPTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8155588\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POLYPEPTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8155588\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BEEF EXTRACT POWDER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 80011683\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BEEF EXTRACT POWDER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 80011683\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LOOPS INOCULATING 10/TUBE 1 MICROLITER (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8802314\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"LOOPS INOCULATING 10/TUBE 1 MICROLITER (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8802314\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MED 3 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) 7278568\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MED 3 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) 7278568\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PEPSIN 1 TO 10000 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7242856\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PEPSIN 1 TO 10000 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7242856\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB AGAR LENNOX 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8170911\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LB AGAR LENNOX 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8170911\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT MAINTENANCE FLOW CYT 2 MONTH (MEDIA UTK PENGEMBANGAN MIKROORGANISME)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT MAINTENANCE FLOW CYT 2 MONTH (MEDIA UTK PENGEMBANGAN MIKROORGANISME)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ESOMEPRAZOLE SODIUM STERILE (BHN BAKU OBAT), COA SI/BEPZ/0010818\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"ESOMEPRAZOLE SODIUM STERILE (BHN BAKU OBAT), COA SI/BEPZ/0010818\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANTOPRAZOLE SODIUM (BHN BAKU OBAT) COA PSFP18031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"PANTOPRAZOLE SODIUM (BHN BAKU OBAT) COA PSFP18031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50CN 10KG KA (BHN BAKU KOSMETIK) COA 1516344\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SENSIVA SC 50CN 10KG KA (BHN BAKU KOSMETIK) COA 1516344\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOCETAXEL TRIHYDRATE (BHN BAKU OBAT) COA 201808002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"DOCETAXEL TRIHYDRATE (BHN BAKU OBAT) COA 201808002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8135632...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8135632...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD22 PE HIB22 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8226903\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD22 PE HIB22 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8226903\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8101679,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8101679,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7314928\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7314928\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7153980\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7153980\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8101883,8110566\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8101883,8110566\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8024571\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8024571\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8134776\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8134776\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8092819\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8092819\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8220620\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8220620\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI-EP CAM APC EBA-1 100TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8213706\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANTI-EP CAM APC EBA-1 100TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8213706\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT 10X10M (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8151581\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"TUBE EGG YOLK ENRICHMENT 50PCT 10X10M (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8151581\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7220790\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7220790\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8054920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8054920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FOLIC ACID ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8114908\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE FOLIC ACID ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8114908\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL NOVOBIOCIN SUPPLEMENT 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8151586,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL NOVOBIOCIN SUPPLEMENT 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8151586,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL POLYMYCIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8158997\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL POLYMYCIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8158997\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8142921\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8142921\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 81838300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 81838300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOBACILL MRS BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8192943\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LACTOBACILL MRS BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8192943\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOBACILI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8211699\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LACTOBACILI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8211699\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8121789\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8121789\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD24 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8094872\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD24 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8094872\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8075807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8075807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8116667\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8116667\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IFN GAMMA APC RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8121877\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"IFN GAMMA APC RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8121877\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD4 PERCP CY5.5 SK3 RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 816650\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD4 PERCP CY5.5 SK3 RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 816650\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8156919\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8156919\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI HLA DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8192942\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANTI HLA DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8192942\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FASTIMMUNE COSTIN CD28/CD49D 0.3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 82118169\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"FASTIMMUNE COSTIN CD28/CD49D 0.3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 82118169\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8122889\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8122889\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8218565\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8218565\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI-KAPPA FITC/ANTI-LAMBDA PE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8162536\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANTI-KAPPA FITC/ANTI-LAMBDA PE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8162536\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYTOFIX /CYTOPERM SOIN KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 81767383\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CYTOFIX /CYTOPERM SOIN KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 81767383\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANNEXIN V FITC APOP DTEC KIT I 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8074726\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANNEXIN V FITC APOP DTEC KIT I 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8074726\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD23FITC EBVCS-5 RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8190541\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD23FITC EBVCS-5 RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8190541\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FASTIMMUNE TNF-AIP 6401.1111 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8073770\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"FASTIMMUNE TNF-AIP 6401.1111 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8073770\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD62P PE AK-4 100TST (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 4197881\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD62P PE AK-4 100TST (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 4197881\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD154 FITC TRAP1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 80238737\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD154 FITC TRAP1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 80238737\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 81039172\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 81039172\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD90 PE 5E10 100UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8086725\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD90 PE 5E10 100UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8086725\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD45 FITC HI30 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8120939\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD45 FITC HI30 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8120939\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LINEAGE COCKTAIL 1 (LIN 1) FITC 50 TESTS(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8178601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"LINEAGE COCKTAIL 1 (LIN 1) FITC 50 TESTS(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8178601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD34 FITC 581 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7354566\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD34 FITC 581 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7354566\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD105 APC 266 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7222945\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD105 APC 266 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7222945\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD56 FITC B159 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7348691\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD56 FITC B159 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7348691\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VALERIAN D.H.E> 0.8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 10786/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"VALERIAN D.H.E> 0.8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 10786/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALPINAWHITE (BHN BAKU KOSMETIK) COA 181207\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"ALPINAWHITE (BHN BAKU KOSMETIK) COA 181207\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TSPL-30-ID (BHN BAKU KOSMETIK) , COA 805010, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"TSPL-30-ID (BHN BAKU KOSMETIK) , COA 805010, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (BHN BAKU KOSMETIK) , COA 809198, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (BHN BAKU KOSMETIK) , COA 809198, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP-101 (BHN BAKU KOSMETIK) COA 808268, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSP-101 (BHN BAKU KOSMETIK) COA 808268, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TSPL-30-D5 (BHN BAKU KOSMETIK) COA 705052, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"TSPL-30-D5 (BHN BAKU KOSMETIK) COA 705052, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KP-578 (BHN BAKU KOSMETIK) COA 804075, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"KP-578 (BHN BAKU KOSMETIK) COA 804075, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NANORAM 2 TOP COVER ASSEMBLY 2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"NANORAM 2 TOP COVER ASSEMBLY 2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NANORAM 2 CORE MODULE BOARD (MEDIA UTK PENGEMBANGAN MIKROORGANISME)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"NANORAM 2 CORE MODULE BOARD (MEDIA UTK PENGEMBANGAN MIKROORGANISME)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPARES FPOR RAMAN SPECTROMETER (MEDIA UTK PENGEMBANGAN MIKROORGANISME)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SPARES FPOR RAMAN SPECTROMETER (MEDIA UTK PENGEMBANGAN MIKROORGANISME)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NANORAM 2 CORE MODULE BOARD (MEDIA UTK PENGEMBANGAN MIKROORGANISME)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"NANORAM 2 CORE MODULE BOARD (MEDIA UTK PENGEMBANGAN MIKROORGANISME)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NANORAM 2 CORE MODULE BOARD (MEDIA UTK PENGEMBANGAN MIKROORGANISME)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"NANORAM 2 CORE MODULE BOARD (MEDIA UTK PENGEMBANGAN MIKROORGANISME)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NR2 SPECTROMETER PCB (MEDIA UTK PENGEMBANGAN MIKROORGANISME)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"NR2 SPECTROMETER PCB (MEDIA UTK PENGEMBANGAN MIKROORGANISME)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM CARBONATE (BHN BAKU KOSMETIK) COA 2201725120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25090000\", \"uraian\": \"CALCIUM CARBONATE (BHN BAKU KOSMETIK) COA 2201725120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SELENITE CYSTINE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8141548\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SELENITE CYSTINE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8141548\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8172970\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8172970\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8135947\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8135947\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011HCLL01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011HCLL01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E50 PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011H3KL02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E50 PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011H3KL02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-005-V\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-005-V\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01705019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE01705019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT18020789\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT18020789\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX (TM) VH,5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF18004052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"BEAUPLEX (TM) VH,5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF18004052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF18004052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF18004052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01801607,4614\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01801607,4614\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01804614\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01804614\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000175739,176817\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000175739,176817\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ71213305\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ71213305\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ71213305,3312\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ71213305,3312\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ71213312\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ71213312\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ71213312\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ71213312\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ80610105\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ80610105\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU MAKANAN) COA UT17110004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU MAKANAN) COA UT17110004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01803039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01803039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01803039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01803039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT18010072\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT18010072\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO)(BHN BAKU MAKANAN) COA UT18040796\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO)(BHN BAKU MAKANAN) COA UT18040796\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ80203028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ80203028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01804434,4448\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01804434,4448\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17110064\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17110064\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01801019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01801019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418095,96\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418095,96\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418096\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418096\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00718099\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00718099\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM ASCORBATE ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00718099\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"CALCIUM ASCORBATE ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00718099\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80502240,2275\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80502240,2275\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80610105\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80610105\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN), COA UQ80602275\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN), COA UQ80602275\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80602275,2276\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80602275,2276\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ71213305\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ71213305\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80602276\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80602276\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ71213312\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ71213312\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80610105\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80610105\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18040126\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18040126\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN), COA UT180401126\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN), COA UT180401126\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18040126\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18040126\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00817040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00817040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DWI BI (BHN BAKU MAKANAN) COA XW91808115\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"DWI BI (BHN BAKU MAKANAN) COA XW91808115\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01801019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01801019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'- PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UE01802030,40\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'- PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UE01802030,40\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 CN 10KG KA (BHN BAKU KOSMETIK) COA.1508811\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SENSIVA SC 50 CN 10KG KA (BHN BAKU KOSMETIK) COA.1508811\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EPIRUBICIN HYDROCHLORIDE BP/PHARMM EUR (BHN BAKU OBAT) COA FX0494\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"EPIRUBICIN HYDROCHLORIDE BP/PHARMM EUR (BHN BAKU OBAT) COA FX0494\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA. 20180822\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17023010\", \"uraian\": \"DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA. 20180822\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM SALICYLATE (BHN BAKU KOSMETIK)COA 201806003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29182100\", \"uraian\": \"SODIUM SALICYLATE (BHN BAKU KOSMETIK)COA 201806003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318050787 S/D 90\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318050787 S/D 90\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0218060099\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0218060099\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01803041, 3043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01803041, 3043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01803043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01803043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518080199\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518080199\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01803041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01803041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01803043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01803043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA MCS1605181,0518080198\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA MCS1605181,0518080198\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY C(R) 50, 20KG BOX NA (BHN BAKU KOSMETIK) COA UT18010229,231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY C(R) 50, 20KG BOX NA (BHN BAKU KOSMETIK) COA UT18010229,231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518060154,199\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518060154,199\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518080199\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518080199\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK), COA 0518080199\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK), COA 0518080199\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE,25KG BOX (BHN BAKU MAKANAN) COA TL01808307\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE,25KG BOX (BHN BAKU MAKANAN) COA TL01808307\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00218194\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00218194\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18030018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18030018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17110004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"OPTISHARP (ZEAXANTHIN) 5PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17110004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18070054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18070054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A AND D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18070039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A AND D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18070039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ80507005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ80507005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA 20180827\""}, {"role": "assistant", "content": "{\"hs_code\" : \"11081200\", \"uraian\": \"CORN STARCH (BHN BAKU MAKANAN) COA 20180827\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FRENCH MARITIME PINE BARK EXTRACT PYCNOGENOL (R) (B.BAKU OBAT) COA U/6300,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"FRENCH MARITIME PINE BARK EXTRACT PYCNOGENOL (R) (B.BAKU OBAT) COA U/6300,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FRENCH MARITIME PINE BARK EXTRACT PYCNOGENOL (R) B. BAKU OBAT, COA U/6160,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"FRENCH MARITIME PINE BARK EXTRACT PYCNOGENOL (R) B. BAKU OBAT, COA U/6160,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FRENCH MARITIME PINE BARK EXTRACT PYCNOGENOL (R) B. BAKU OBAT, COA U/6280, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"FRENCH MARITIME PINE BARK EXTRACT PYCNOGENOL (R) B. BAKU OBAT, COA U/6280, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI SHINE WASH 45414.1 (BHN BAKU KOSMETIK) COA 10300068\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ANTI SHINE WASH 45414.1 (BHN BAKU KOSMETIK) COA 10300068\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURE GREEN B&W PIT (BHN BAKU KOSMETIK) COA 10300034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PURE GREEN B&W PIT (BHN BAKU KOSMETIK) COA 10300034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTISHINE WASH 1 (BHN BAKU KOSMETIK) COA 10300116\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ANTISHINE WASH 1 (BHN BAKU KOSMETIK) COA 10300116\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALDAVINE 5X (BHN BAKU KOSMETIK) COA 5521817\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38247900\", \"uraian\": \"ALDAVINE 5X (BHN BAKU KOSMETIK) COA 5521817\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 1717614\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38247900\", \"uraian\": \"AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 1717614\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830016100J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38247900\", \"uraian\": \"CAPIXYL (BHN BAKU KOSMETIK) COA 830016100J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK), COA 1810103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38247900\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK), COA 1810103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5570218\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38247900\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK) COA 5570218\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5579618\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38247900\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK) COA 5579618\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784026462J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38247900\", \"uraian\": \"TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784026462J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829016392J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38247900\", \"uraian\": \"B-WHITE (BHN BAKU KOSMETIK) COA 829016392J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785016298J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38247900\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785016298J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KOLLAREN BG (100PPM) (BHN BAKU KOSMETIK) COA 821056301J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38247900\", \"uraian\": \"KOLLAREN BG (100PPM) (BHN BAKU KOSMETIK) COA 821056301J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016427J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38247900\", \"uraian\": \"NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016427J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOHAIR TM (BHN BAKU KOSMETIK) COA 1747542\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38247900\", \"uraian\": \"SUNFLOHAIR TM (BHN BAKU KOSMETIK) COA 1747542\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KAHLWAX 2956 (BHN BAKU KOSMETIK) COA F1830021-001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15211000\", \"uraian\": \"KAHLWAX 2956 (BHN BAKU KOSMETIK) COA F1830021-001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180823\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180823\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180825\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180825\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOTREXATE (BHN BAKU OBAT)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"METHOTREXATE (BHN BAKU OBAT)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LOTUS NELUMBIUM NEL.FLOWER HS(BAHAN BAKU KOSMETIK) COA AM070938\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"LOTUS NELUMBIUM NEL.FLOWER HS(BAHAN BAKU KOSMETIK) COA AM070938\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91808285\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX 504010 (BHN BAKU MAKANAN) COA XW91808285\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91808287\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91808287\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.PCT WS (BHN BAKU MAKANAN) COA UT18060005,6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.PCT WS (BHN BAKU MAKANAN) COA UT18060005,6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.PCT WS (BHN BAKU MAKANAN) COA UT18060006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.PCT WS (BHN BAKU MAKANAN) COA UT18060006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11804015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11804015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11804015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11804015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11804015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11804015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE,25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ80506121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE,25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ80506121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ80506121,22,26\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ80506121,22,26\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1802022,26,32\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1802022,26,32\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1802032,33\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1802032,33\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POVIDONE K25 (BHN BAKU OBAT) COA PK25-180824F11\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"POVIDONE K25 (BHN BAKU OBAT) COA PK25-180824F11\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN/ PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10839/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SILYBIN/ PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10839/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VALERIAN D.H.E>0.8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 10885/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"VALERIAN D.H.E>0.8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 10885/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHENYTOIN SODIUM (BHN BAKU OBAT) COA 18100497\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332100\", \"uraian\": \"PHENYTOIN SODIUM (BHN BAKU OBAT) COA 18100497\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.18100536,18100605\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29391900\", \"uraian\": \"PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.18100536,18100605\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMBROXOL HYDROCHLORIDE POWDER (BHN BAKU OBAT) COA AHM/18127 S/D AHM/18129\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"AMBROXOL HYDROCHLORIDE POWDER (BHN BAKU OBAT) COA AHM/18127 S/D AHM/18129\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101852818\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101852818\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO180601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO180601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO170601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO170601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK)COA EG209-180702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK)COA EG209-180702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK)COA EG209-180702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK)COA EG209-180702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM180901-PGH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM180901-PGH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POLYQUTA 400KC (BHN BAKU KOSMETIK) COA 180913107,180915116\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39129090\", \"uraian\": \"POLYQUTA 400KC (BHN BAKU KOSMETIK) COA 180913107,180915116\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 80218\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38247900\", \"uraian\": \"AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 80218\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 80503\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38247900\", \"uraian\": \"LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 80503\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 80610\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38247900\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 80610\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 32716/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 32716/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TEFOSE 63 (BHN BAKU SUPLEMEN) COA 171252\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TEFOSE 63 (BHN BAKU SUPLEMEN) COA 171252\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LABRAFIL M 1944 CS (BHN BAKU SUPLEMEN) COA 171005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LABRAFIL M 1944 CS (BHN BAKU SUPLEMEN) COA 171005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LABRAFIL M 1944 CS (BAHAN BAKU SUPLEMEN) COA 171005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LABRAFIL M 1944 CS (BAHAN BAKU SUPLEMEN) COA 171005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPRITOL 888 ATO (BAHAN BAKU SUPLEMEN) COA 169798\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"COMPRITOL 888 ATO (BAHAN BAKU SUPLEMEN) COA 169798\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TEFOSE 63 BF (BHN BAKU SUPLEMEN) COA 171041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TEFOSE 63 BF (BHN BAKU SUPLEMEN) COA 171041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRAZINAMIDE EP/USP (BHN BAKU OBAT) COA WPOZ 089 I18, 090 I 18...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"PYRAZINAMIDE EP/USP (BHN BAKU OBAT) COA WPOZ 089 I18, 090 I 18...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA.MLAH089918\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29341000\", \"uraian\": \"MELOXICAM BP (BHN BAKU OBAT) COA.MLAH089918\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA.18100604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA.18100604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEG 400 (POLYETHYLENE GLYCOL) BAHAN BAKU KOSMETIK) COA.AKW0006129,6075\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39072010\", \"uraian\": \"PEG 400 (POLYETHYLENE GLYCOL) BAHAN BAKU KOSMETIK) COA.AKW0006129,6075\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK-GB (BHN BAKU KOSMETIK) COA KGI\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK-GB (BHN BAKU KOSMETIK) COA KGI\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS EU-118(IS) (BHN BAKU KOSMETIK) COA KGN\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS EU-118(IS) (BHN BAKU KOSMETIK) COA KGN\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILASOMA MFA(S) (BHN BAKU KOSMETIK) COA KEF\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILASOMA MFA(S) (BHN BAKU KOSMETIK) COA KEF\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-180906\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-180906\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-180907\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-180907\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIVE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OLIVE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK)COA EG138-180401\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK)COA EG138-180401\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMLODIPINE BESILATE BP/EP (BHN BAKU OBAT), COA. AMB/122/09/18 S/D AMB/125/09/18, 128 S/D 134\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"AMLODIPINE BESILATE BP/EP (BHN BAKU OBAT), COA. AMB/122/09/18 S/D AMB/125/09/18, 128 S/D 134\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTABIO ARV-S (BHN BAKU OBAT) COA.1711211K, 1806061K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"ASTABIO ARV-S (BHN BAKU OBAT) COA.1711211K, 1806061K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTABIO AW1 (BHN BAKU OBAT) COA 1809051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"ASTABIO AW1 (BHN BAKU OBAT) COA 1809051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CONFECTIONERY INK CI-250005 RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA TSUK 1447548-1.1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"CONFECTIONERY INK CI-250005 RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA TSUK 1447548-1.1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (BHN BAKU KOSMETIK) , COA 809200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (BHN BAKU KOSMETIK) , COA 809200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-96A-6CS (BHN BAKU KOSMETIK) COA 809981\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-96A-6CS (BHN BAKU KOSMETIK) COA 809981\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 (BHN BAKU KOSMETIK) COA. 1515313, 1516944\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"EUXYL PE 9010 (BHN BAKU KOSMETIK) COA. 1515313, 1516944\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218080130\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218080130\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218080130\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218080130\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY C (R) 50, 20KG BOX NA (BHN BAKU KOSMETIK) COA UT18010231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY C (R) 50, 20KG BOX NA (BHN BAKU KOSMETIK) COA UT18010231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0318050790 S/D 792, 50793,61027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 (BHN BAKU KOSMETIK) COA 0318050790 S/D 792, 50793,61027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001476503\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SLX (BHN BAKU KOSMETIK) COA 0001476503\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00550067,773, 1276\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"AMPHISOL K (BHN BAKU KOSMETIK) COA VE00550067,773, 1276\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT18020169\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT18020169\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18060170,70197\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18060170,70197\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180045,46 61\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180045,46 61\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01705019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE01705019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18080219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18080219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0718030047\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0718030047\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50,5KG BAG ALU EX US (BHN BAKU KOSMETIK) COA UT17070104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50,5KG BAG ALU EX US (BHN BAKU KOSMETIK) COA UT17070104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11803004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11803004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0818040071\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0818040071\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ70913226\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ70913226\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW91809269\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 C (BHN BAKU MAKANAN) COA XW91809269\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01803646\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01803646\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ80203028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ80203028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMIATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT18030171\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMIATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT18030171\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT18010072\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT18010072\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01802002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01802002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18020026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18020026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN), COA UT18020026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN), COA UT18020026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18020026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18020026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT18050009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT18050009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18060006,8\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18060006,8\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01803039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01803039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0218060107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0218060107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218080130\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218080130\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN), COA UT18060030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN), COA UT18060030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT18070024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT18070024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT18070024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT18070024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT18070024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT18070024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18050009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18050009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1803040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1803040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CIPROFLOXACIN HCL (BHN BAKU OBAT) COA HB00N1809021 S/D 27, 1809003H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"CIPROFLOXACIN HCL (BHN BAKU OBAT) COA HB00N1809021 S/D 27, 1809003H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101852918\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101852918\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND180902\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND180902\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANTOPRAZOLE SODIUM (BHN BAKU OBAT) COA PSFP18033\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"PANTOPRAZOLE SODIUM (BHN BAKU OBAT) COA PSFP18033\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO OPTISHARP 5/1 24 FS (B.BAKU SUPLEMEN) COA UE01803001, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO OPTISHARP 5/1 24 FS (B.BAKU SUPLEMEN) COA UE01803001, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO OPTISHARP 5/1 24PCT FS (B. BAKU SUPLEMEN) COA UE01803002, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO OPTISHARP 5/1 24PCT FS (B. BAKU SUPLEMEN) COA UE01803002, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO OPTISHARP 5/1 24PCT FS (B. BAKU SUPLEMEN) COA UE01803003, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO OPTISHARP 5/1 24PCT FS (B. BAKU SUPLEMEN) COA UE01803003, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608679\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608679\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608997\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608997\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607209\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607209\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605730\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605730\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608964\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608964\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608965\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608965\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608972\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608972\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608962\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608962\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608997\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608997\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608959\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608959\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608959\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608959\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608980\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608980\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608947\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608947\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608958\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608958\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608960\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608960\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608948\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608948\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608961\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608961\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608992\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608992\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608972\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608972\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608995\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608995\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608865\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608865\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608993\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608993\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608993\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608993\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608358\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608358\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608846\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608846\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608679\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608679\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608863\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608863\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608863\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608863\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608679\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608679\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608754\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608754\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608856\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608856\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608851\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608851\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608852\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608852\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608864\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608864\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608892\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608892\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GRAY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608855\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GRAY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608855\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608847\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608847\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608848\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608848\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK)COA SFP-N-080398\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK)COA SFP-N-080398\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK)COA 090718\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK)COA 090718\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-170388\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-170388\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-011388\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-011388\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-070698\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-070698\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK)COA HMVBD-082198\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK)COA HMVBD-082198\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK) COA HMVBD-082198\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK) COA HMVBD-082198\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CORN STARCH (BHN BAKU OBAT) COA 20180906\""}, {"role": "assistant", "content": "{\"hs_code\" : \"11081200\", \"uraian\": \"CORN STARCH (BHN BAKU OBAT) COA 20180906\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURICILLIN COMPACTED (BHN BAKU OBAT) COA M842377,842419,842422,23,26,16\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411020\", \"uraian\": \"PURICILLIN COMPACTED (BHN BAKU OBAT) COA M842377,842419,842422,23,26,16\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX TM POWDER CEFADROXILE MONOHYDRATE (BHN BAKU OBAT) COA M334582,586,587\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX TM POWDER CEFADROXILE MONOHYDRATE (BHN BAKU OBAT) COA M334582,586,587\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM VALPROATE (BAHAN BAKU OBAT) COA.452035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29159090\", \"uraian\": \"SODIUM VALPROATE (BAHAN BAKU OBAT) COA.452035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM INJECTABLE GRADE(BHN BAKU OBAT) COA 17091363\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331900\", \"uraian\": \"METAMIZOLE SODIUM INJECTABLE GRADE(BHN BAKU OBAT) COA 17091363\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM MONOHYDRATE (BHN BAKU OBAT) COA 1805646,5676,18091384,386\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331900\", \"uraian\": \"METAMIZOLE SODIUM MONOHYDRATE (BHN BAKU OBAT) COA 1805646,5676,18091384,386\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRAZINAMIDE EP/USP (BHN BAKU OBAT) COA WPOZ 1081 18, 1091 18...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"PYRAZINAMIDE EP/USP (BHN BAKU OBAT) COA WPOZ 1081 18, 1091 18...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OXYTETRACYCLINE DIHYDRATE INJ GRADE BP/EP (B BAKU OBAT UTK PAKAN TERNAK) COA ZT180809,721\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29413000\", \"uraian\": \"OXYTETRACYCLINE DIHYDRATE INJ GRADE BP/EP (B BAKU OBAT UTK PAKAN TERNAK) COA ZT180809,721\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOXORUBICIN HYDROCHLORIDE EP (BHN BAKU OBAT) COA 061803055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"DOXORUBICIN HYDROCHLORIDE EP (BHN BAKU OBAT) COA 061803055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CARBOPLATIN EP9 (BAHAN BAKU OBAT) COA 275180010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"CARBOPLATIN EP9 (BAHAN BAKU OBAT) COA 275180010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CARBOPLATIN EP9 (BHN BAKU OBAT) COA 275180010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"CARBOPLATIN EP9 (BHN BAKU OBAT) COA 275180010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CARBOPLATIN EP9 (BHN BAKU OBAT) COA 275180010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"CARBOPLATIN EP9 (BHN BAKU OBAT) COA 275180010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CARBOPLATIN EP9 (BHN BAKU OBAT) COA 275180010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"CARBOPLATIN EP9 (BHN BAKU OBAT) COA 275180010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 1,3 BUTYLENE GLYCOL, COSMETIC QUALITY(BHN BAKU KOSMETIK) COA P0618706BC, P0618730AC\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"1,3 BUTYLENE GLYCOL, COSMETIC QUALITY(BHN BAKU KOSMETIK) COA P0618706BC, P0618730AC\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 189134\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 189134\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TEFOSE 63 (BHN BAKU KOSMETIK),COA 170796\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TEFOSE 63 (BHN BAKU KOSMETIK),COA 170796\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5497417\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5497417\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMISOL TM 4135 (BHN BAKU KOSMETIK) COA 1731001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AMISOL TM 4135 (BHN BAKU KOSMETIK) COA 1731001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829016600J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"B-WHITE (BHN BAKU KOSMETIK) COA 829016600J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BODY 3 COMPLEX (BHN BAKU KOSMETIK) COA B3C010318\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"BODY 3 COMPLEX (BHN BAKU KOSMETIK) COA B3C010318\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK), COA 1814002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK), COA 1814002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 1735914\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 1735914\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SWT-7 TM L (BHN BAKU KOSMETIK) COA 1821001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SWT-7 TM L (BHN BAKU KOSMETIK) COA 1821001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829016600J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"B-WHITE (BHN BAKU KOSMETIK) COA 829016600J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785016298J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785016298J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1814003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) COA 1814003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016427J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016427J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830016100J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL (BHN BAKU KOSMETIK) COA 830016100J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GUAIFENESIN USP (BHN BAKU OBAT) COA GGE-1809328 S/D 9330\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29094900\", \"uraian\": \"GUAIFENESIN USP (BHN BAKU OBAT) COA GGE-1809328 S/D 9330\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANTOPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT,COA APSS18003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"PANTOPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT,COA APSS18003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN538108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN538108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCAP 1500 CO-PROCESSED (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537454\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCAP 1500 CO-PROCESSED (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537454\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 040418/005357\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 040418/005357\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYPROHEPTADINE HCL BP/PH.EUR (BHN BAKU OBAT) COA CYP/08181011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"CYPROHEPTADINE HCL BP/PH.EUR (BHN BAKU OBAT) COA CYP/08181011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU MAKANAN) COA.TS00011052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU MAKANAN) COA.TS00011052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT C6 FLOW CYTO STARTER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT C6 FLOW CYTO STARTER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8198931\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8198931\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8135947\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8135947\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CUSTOM CS&T RUO BEADS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7222727,SAMPLE NO COMM VAL\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CUSTOM CS&T RUO BEADS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7222727,SAMPLE NO COMM VAL\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FACS ACCUDROP BEADS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8226993,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"FACS ACCUDROP BEADS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8226993,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACCUDROP FLUORESCENT BEAD ...(M. UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7311735,SAMPLE NO COMM\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ACCUDROP FLUORESCENT BEAD ...(M. UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7311735,SAMPLE NO COMM\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18080219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18080219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT018080009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT018080009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT A PALM 1.0M+VIT D3 100'000 (BHN BAKU MAKANAN) COA UT18070055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VIT A PALM 1.0M+VIT D3 100'000 (BHN BAKU MAKANAN) COA UT18070055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01803043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01803043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01803043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01803043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01803043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01803043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000176817\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000176817\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01803043,4049,6058198\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01803043,4049,6058198\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA UT1806058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA UT1806058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HS, 10KG BAG (BHN BAKU KOSMETIK) COA 1017090022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HS, 10KG BAG (BHN BAKU KOSMETIK) COA 1017090022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8253602\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8253602\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D-XYLOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8241700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D-XYLOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8241700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8250526\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8250526\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8214910\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8214910\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8248690\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8248690\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PEPTONE DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8101800,8241622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PEPTONE DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8101800,8241622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFER PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8155504\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BUFFER PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8155504\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8206906\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8206906\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8215542\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8215542\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255613\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255613\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8066907,8109821\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8066907,8109821\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8214910\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8214910\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL CASAMINO ACIDS TECHNICAL 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8101901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL CASAMINO ACIDS TECHNICAL 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8101901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8214910\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA IC-XT 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8214910\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8079881\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8079881\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8194606\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8194606\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8115797\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8115797\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8253602\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 2 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8253602\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141815,8211649\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141815,8211649\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8234703\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8234703\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8064953\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8064953\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8178628\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8178628\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL UNIVERSAL VIRAL TRANSPORT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 181067300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL UNIVERSAL VIRAL TRANSPORT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 181067300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8208727,8214910\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8208727,8214910\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121602,7338553\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121602,7338553\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8241622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8241622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8128688\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8128688\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206549\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206549\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CASAMINO ACIDS 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8197978\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CASAMINO ACIDS 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8197978\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8239573\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8239573\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHOSPHATE BUFFER PH 7,2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8141591\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PHOSPHATE BUFFER PH 7,2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8141591\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8080511\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8080511\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7332727\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7332727\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8046757\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8046757\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTONE GLUCOSE EXT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8193807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTONE GLUCOSE EXT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8193807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8134700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8134700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8141811\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8141811\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183877\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183877\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8037753\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8037753\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GASPAK EZ STANDARD INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 727933901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"GASPAK EZ STANDARD INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 727933901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009699\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009699\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MARINE BROTH 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8162748\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MARINE BROTH 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8162748\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MIDDLEBROOK 7H9 BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8045590\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MIDDLEBROOK 7H9 BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8045590\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8032739\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8032739\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MIDDLEBROOK 7H10 AGAR 500 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8046736\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MIDDLEBROOK 7H10 AGAR 500 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8046736\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8199596\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8199596\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8219820\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8219820\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8219820\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8219820\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8123681\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8123681\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8101787\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8101787\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8183888\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8183888\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8101787\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8101787\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LETHEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8211630\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LETHEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8211630\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8158503..\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8158503..\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8110566,20929,76606\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8110566,20929,76606\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8214977\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8214977\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8201702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8201702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD10 RTC HI110A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8220620\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD10 RTC HI110A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8220620\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8116667\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8116667\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IFN GAMMA APC RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8190547\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"IFN GAMMA APC RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8190547\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI-EPCAM APC EBA-1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8213706\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANTI-EPCAM APC EBA-1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8213706\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYTOFIX/CYTOPERM SOLN KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8150698\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CYTOFIX/CYTOPERM SOLN KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8150698\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MS LGG1KPA ITCI PE MOPC-21 100TST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8024788\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"MS LGG1KPA ITCI PE MOPC-21 100TST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8024788\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8124811\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8124811\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8151919\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8151919\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8190858\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8190858\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8241974\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8241974\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL H INFLUENZAE ANTISERUM TYPE B (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8088628\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL H INFLUENZAE ANTISERUM TYPE B (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8088628\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU VIMENTIN PE RV202 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7083575\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU VIMENTIN PE RV202 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7083575\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 FITC SK7 50 TESTS IVD(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8181542\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 FITC SK7 50 TESTS IVD(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8181542\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7332690\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7332690\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M-31PCT (BHN BAKU OBAT) COA 101829025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MG HYD PASTE USP TYPE M-31PCT (BHN BAKU OBAT) COA 101829025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML , COA 16222-1, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE LYFT LIDOCAINE 1ML , COA 16222-1, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE DEFYNE 1ML , COA 16013-1, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE DEFYNE 1ML , COA 16013-1, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SKINB VITLIDO 1MLD16 , COA 16200-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE SKINB VITLIDO 1MLD16 , COA 16200-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SKINB VITALLGHLIDO 1MLD16 , COA 16191-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE SKINB VITALLGHLIDO 1MLD16 , COA 16191-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE LIDOCAINE 1ML D16 , COA 16199-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE LIDOCAINE 1ML D16 , COA 16199-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML , COA 16222-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE LYFT LIDOCAINE 1ML , COA 16222-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE REFYNE 1ML , COA 16326-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE REFYNE 1ML , COA 16326-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE DEFYNE 1ML , COA 16013-1, 16283-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE DEFYNE 1ML , COA 16013-1, 16283-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE KYSSE 1 ML , COA 16207-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE KYSSE 1 ML , COA 16207-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180909\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180909\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA R700500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA R700500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTAZIDIME BUFFERED (BHN BAKU OBAT) COA R100100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTAZIDIME BUFFERED (BHN BAKU OBAT) COA R100100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METRONIDAZOLE BP (BHN BAKU OBAT) COA MTZ/8091566\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"METRONIDAZOLE BP (BHN BAKU OBAT) COA MTZ/8091566\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0029124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0029124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AC091KF FUCOGEL 1.5P 25 KG (BHN BAKU KOSMETIK) COA 0029184\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AC091KF FUCOGEL 1.5P 25 KG (BHN BAKU KOSMETIK) COA 0029184\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA 0000013180\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA 0000013180\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA.0000013172\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA.0000013172\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA 0000013180\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA 0000013180\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRANOL ULTRA C32 200KG PLASCTIC DRUM (BHN BAKU KOSMETIK) COA BP808500R\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34029099\", \"uraian\": \"MIRANOL ULTRA C32 200KG PLASCTIC DRUM (BHN BAKU KOSMETIK) COA BP808500R\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DURALAC (R) H (BHN BAKU OBAT) COA LC 015-18-805\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"DURALAC (R) H (BHN BAKU OBAT) COA LC 015-18-805\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for P.GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 32113/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"P.GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 32113/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METRONIDAZOLE BP (BHN BAKU OBAT) COA MTZ/8091537\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"METRONIDAZOLE BP (BHN BAKU OBAT) COA MTZ/8091537\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609458\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609458\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609431\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609431\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609457\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609457\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-1709025/35678\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-1709025/35678\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AC019KC PHYTOVITYL C 5KG (BHN BAKU KOSMETIK) COA 0028393\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AC019KC PHYTOVITYL C 5KG (BHN BAKU KOSMETIK) COA 0028393\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BILBERRY (V.MYRTILLUS) ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 32752/M2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"BILBERRY (V.MYRTILLUS) ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 32752/M2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CORTISONE ACETATE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1800951018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"CORTISONE ACETATE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1800951018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET), COA WP804215\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET), COA WP804215\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND171001, ND180904\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND171001, ND180904\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANSOPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA LP0218C026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"LANSOPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA LP0218C026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ONDASENTRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA 18OS001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"ONDASENTRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA 18OS001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE,25KG BOX (BHN BAKU MAKANAN) COA TL01807089, 8307\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE,25KG BOX (BHN BAKU MAKANAN) COA TL01807089, 8307\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 181243\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"MANDARINCLEAR (BHN BAKU KOSMETIK) COA 181243\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 180264\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 180264\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 186131\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 186131\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALPINIAWHITE (BHN BAKU KOSMETIK) COA 181474\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ALPINIAWHITE (BHN BAKU KOSMETIK) COA 181474\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 180807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 180807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETI) COA 181104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHYTO COLLAGE B(N) (BHN BAKU KOSMETI) COA 181104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20180701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20180701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/50 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP26418\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/50 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP26418\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT679972\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT679972\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX TAN (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT679528\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX TAN (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT679528\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT678523\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT678523\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609469\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609469\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIROXICAM (BHN BAKU OBAT) COA PRX2018011M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"PIROXICAM (BHN BAKU OBAT) COA PRX2018011M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 18092006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 18092006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIAMCINOLONE ACETONIDE MICRONIZED (BHN BAKU OBAT) COA NY1698M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"TRIAMCINOLONE ACETONIDE MICRONIZED (BHN BAKU OBAT) COA NY1698M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NY0865M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NY0865M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT (BHN BAKU KOSMETIK)COA HMVBD-082198\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND WITCH HAZEL EXTRACT (BHN BAKU KOSMETIK)COA HMVBD-082198\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-010248\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-010248\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-010248\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-010248\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSFAC-021088\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSFAC-021088\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 2018G1505\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 2018G1505\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518080200,0518090229\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518080200,0518090229\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518090229\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518090229\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA 0518080198,0518090230\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA 0518080198,0518090230\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01805619,TL01806623\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01805619,TL01806623\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0318061028 S/D 31\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0318061028 S/D 31\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)(BHN BAKU KOSMETIK) COA UT18020170\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO)(BHN BAKU KOSMETIK) COA UT18020170\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18070197\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18070197\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS,25KG PC (BHN BAKU KOSMETIK) COA 0718030047\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHS,25KG PC (BHN BAKU KOSMETIK) COA 0718030047\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY C (R) ,5KG BAG/ALU (BHN BAKU KOSMETIK) COA UE01802016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY C (R) ,5KG BAG/ALU (BHN BAKU KOSMETIK) COA UE01802016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218080130,143\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218080130,143\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518090229\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518090229\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1802033, 1803038\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1802033, 1803038\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT GRANULATION ,25KG BOX(BHN BAKU SUPLEMEN) COA WB00618917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT GRANULATION ,25KG BOX(BHN BAKU SUPLEMEN) COA WB00618917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACIDS 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB00618917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACIDS 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB00618917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18040126\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18040126\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT18070024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT18070024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11804015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11804015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18040126\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18040126\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX ALU (BHN BAKU SUPLEMEN) COA TL01804362\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX ALU (BHN BAKU SUPLEMEN) COA TL01804362\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01807008, 7099\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01807008, 7099\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18060030, 60039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18060030, 60039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE ,25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ80506126,6127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE ,25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ80506126,6127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE,25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ80506127,28,42,43\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE,25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ80506127,28,42,43\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070-C3 (BHN BAKU MAKANAN) COA XW91809349\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070-C3 (BHN BAKU MAKANAN) COA XW91809349\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1803039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1803039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1803039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1803039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1803039,44\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1803039,44\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1803044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1803044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18060007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18060007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT18010072\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT18010072\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ80606143\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ80606143\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01804362,4400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01804362,4400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT18040136\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT18040136\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18060180\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18060180\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18060024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18060024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01803040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL ,20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01803040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418096\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418096\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418096 S/D 98\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418096 S/D 98\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418098,99\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418098,99\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3 PCT (BHN BAKU SUPLEMEN) COA WB00418099\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3 PCT (BHN BAKU SUPLEMEN) COA WB00418099\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM ASCORBATE ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00718099\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"CALCIUM ASCORBATE ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00718099\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE, 5KG BOX ALU(BHN BAKU MAKANAN) COA UQ80606133\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE, 5KG BOX ALU(BHN BAKU MAKANAN) COA UQ80606133\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM ASCORBATE, 25KG BOX ALU (BHN BAKU SUPLEMEN) COA WB00718099\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"CALCIUM ASCORBATE, 25KG BOX ALU (BHN BAKU SUPLEMEN) COA WB00718099\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1802033\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1802033\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN), COA UQ8060228\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN), COA UQ8060228\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80602279,87\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80602279,87\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00718099\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00718099\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00517030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00517030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00517030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00517030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18060007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18060007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00517030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00517030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT18060039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT18060039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01801020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01801020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01801020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01801020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6048 (BHN BAKU KOSMETIK) , COA 80902, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6048 (BHN BAKU KOSMETIK) , COA 80902, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP-100 (BHN BAKU KOSMETIK) COA 809627, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSP-100 (BHN BAKU KOSMETIK) COA 809627, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN )COA RBA2611800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN )COA RBA2611800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GUAIFENESIN USP (BHN BAKU OBAT) COA GCE-1809335 S/D 354\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29094900\", \"uraian\": \"GUAIFENESIN USP (BHN BAKU OBAT) COA GCE-1809335 S/D 354\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-2031018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334910\", \"uraian\": \"DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-2031018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180923\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180923\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609050\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609050\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609429\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609429\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609572\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609572\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609430\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609430\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609469\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609469\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609431\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609431\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609431\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609431\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609187\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609187\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609438\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609438\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609439\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609439\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609441\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609441\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609440\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609440\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609460\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609460\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609460\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609460\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609460\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609460\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609433\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609433\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609434\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609434\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609437\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609437\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID SPECIAL , 25KG BAL (BHN BAKU SUPLEMEN) COA HPD1803135\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID SPECIAL , 25KG BAL (BHN BAKU SUPLEMEN) COA HPD1803135\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIACEREIN EP (BHN BAKU OBAT) COA DCN/40510918\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"DIACEREIN EP (BHN BAKU OBAT) COA DCN/40510918\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURICILLIN COMPACTED (BHN BAKU OBAT) COA. M842426,27 29,30,34\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411020\", \"uraian\": \"PURICILLIN COMPACTED (BHN BAKU OBAT) COA. M842426,27 29,30,34\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID PPL-600 (BHN BAKU OBAT) COA.572000-2180222/007-008 (2)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232010\", \"uraian\": \"LIPOID PPL-600 (BHN BAKU OBAT) COA.572000-2180222/007-008 (2)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT EMULS (BHN BAKU MAKANAN) COA UE01806010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT EMULS (BHN BAKU MAKANAN) COA UE01806010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF, 1KG ALUF (BHN BAKU SUPLEMEN) COA UE01806039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO (R) LUTEIN 20PCT SAF, 1KG ALUF (BHN BAKU SUPLEMEN) COA UE01806039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00218194\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00218194\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF, 1KG ALUF (BHN BAKU SUPLEMEN) COA UE01806039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO (R) LUTEIN 20PCT SAF, 1KG ALUF (BHN BAKU SUPLEMEN) COA UE01806039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17110018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"REDIVIVO (R) (LYCOPENE) 10PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17110018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18070054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18070054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A AND D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18090040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A AND D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18090040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB01017666\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB01017666\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00218194\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00218194\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB01017666\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB01017666\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18030018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18030018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17110018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"REDIVIVO (R) (LYCOPENE) 10PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17110018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT18040040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT18040040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18070054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18070054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT180090040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT180090040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) LYCOPENE 10PCT FS ,5KG ALU (BHN BAKU SUPLEMEN) COA UE01805005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"REDIVIVO (R) LYCOPENE 10PCT FS ,5KG ALU (BHN BAKU SUPLEMEN) COA UE01805005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00218194\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00218194\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17110004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"OPTISHARP (ZEAXANTHIN) 5PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17110004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18030018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18030018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-96A-6CS (BHN BAKU KOSMETIK) , COA 810987\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-96A-6CS (BHN BAKU KOSMETIK) , COA 810987\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT LYOPHILIZED (BHN BAKU OBAT)COA NY2401\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT LYOPHILIZED (BHN BAKU OBAT)COA NY2401\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101853418\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101853418\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LUBRIPHARM (R) SSF NF/EP/JP (BHN BAKU OBAT) COA 121808941\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"LUBRIPHARM (R) SSF NF/EP/JP (BHN BAKU OBAT) COA 121808941\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY C (R) 50, 5KG BOX/ALU (BHN BAKU KOSMETIK) COA UE01802023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY C (R) 50, 5KG BOX/ALU (BHN BAKU KOSMETIK) COA UE01802023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18060145\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18060145\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180061,62,63\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180061,62,63\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OPI1803004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU KOSMETIK) COA OPI1803004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC, 20KG BAL (BHN BAKU KOSMETIK) COA OP81801005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC, 20KG BAL (BHN BAKU KOSMETIK) COA OP81801005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PHANTENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL01806063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PHANTENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL01806063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01803040,6063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01803040,6063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418026,8028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418026,8028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ80810152\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ80810152\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80810152\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80810152\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80810152\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80810152\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT18070021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT18070021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 1809EF6010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"L-ARGININE LO (BHN BAKU KOSMETIK),COA 1809EF6010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E15 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011HCCL01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E15 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011HCCL01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011HC2L02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011HC2L02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I65001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I65001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I65001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I65001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I1M003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I1M003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100 PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I6D003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100 PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I6D003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I41002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I41002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT, GRANULATION 25KG BOX (BHN BAKU SUPLEMEN) COA WB00818950,51\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT, GRANULATION 25KG BOX (BHN BAKU SUPLEMEN) COA WB00818950,51\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIO VINACCIOLI RAFFINATO (BHN BAKU KOSMETIK) COA.B1800252\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15152919\", \"uraian\": \"OLIO VINACCIOLI RAFFINATO (BHN BAKU KOSMETIK) COA.B1800252\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 80317, 80320\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 80317, 80320\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 62855P\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 62855P\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA645321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA645321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1808038,40 S/D 42,44 S/D 46, 48 S/D 50\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"MEFENAMIC ACID (BHN BAKU OBAT) COA MA1808038,40 S/D 42,44 S/D 46, 48 S/D 50\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 29671018,29681018,29691018...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 29671018,29681018,29691018...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIFAMPICIN POWDER (BHN BAKU OBAT) COA 2272, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"RIFAMPICIN POWDER (BHN BAKU OBAT) COA 2272, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TSPL-30-ID (BHN BAKU KOSMETIK) , COA 805010, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"TSPL-30-ID (BHN BAKU KOSMETIK) , COA 805010, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 02/17GAAK\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 02/17GAAK\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 02/17GAAK, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 02/17GAAK, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELOIL SC (BHN BAKU SUPLEMEN) COA 169611\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELOIL SC (BHN BAKU SUPLEMEN) COA 169611\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA KJE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) COA KJE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VISTANOL GDHR (BHN BAKU KOSMETIK) COA KHJ\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"VISTANOL GDHR (BHN BAKU KOSMETIK) COA KHJ\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA KGM\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROTESIL LH (BHN BAKU KOSMETIK) COA KGM\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN )COA RBA2781800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN )COA RBA2781800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM GLUCONATE EP (BHN BAKU OBAT) COA CGA-EP1807080\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"CALCIUM GLUCONATE EP (BHN BAKU OBAT) COA CGA-EP1807080\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA TRITERPP./C (BHN BAKU SUPLEMEN) COA 32716/M3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA TRITERPP./C (BHN BAKU SUPLEMEN) COA 32716/M3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECHINACEA ANG. DRY PURIF. EX (BHN BAKU SUPLEMEN) COA 32527/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"ECHINACEA ANG. DRY PURIF. EX (BHN BAKU SUPLEMEN) COA 32527/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BILBERRY (V. MYRTILLUS) ET. EX.36PCT (BHN BAKU SUPLEMEN) COA 32752/M3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"BILBERRY (V. MYRTILLUS) ET. EX.36PCT (BHN BAKU SUPLEMEN) COA 32752/M3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10918/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10918/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0280618\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0280618\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 1807502477,77,1607046576\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29322090\", \"uraian\": \"SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 1807502477,77,1607046576\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA.M113123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA.M113123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILVERION 2400 (BHN BAKU KOSMETIK) COA.17-09093\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILVERION 2400 (BHN BAKU KOSMETIK) COA.17-09093\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLOZAPINE (BHN BAKU OBAT) COA 740106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"CLOZAPINE (BHN BAKU OBAT) COA 740106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NOREPINEPHRINE BITARTRATE (BHN BAKU OBAT) COA 450104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29379010\", \"uraian\": \"NOREPINEPHRINE BITARTRATE (BHN BAKU OBAT) COA 450104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA.18100640\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29395900\", \"uraian\": \"DIMENHYDRINATE (BHN BAKU OBAT) COA.18100640\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOPAMINE HYDROCHLORIDE (BHN BAKU OBAT), COA 18100236\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29222900\", \"uraian\": \"DOPAMINE HYDROCHLORIDE (BHN BAKU OBAT), COA 18100236\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NYSTATIN (BHN BAKU OBAT) COA.C114236\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NYSTATIN (BHN BAKU OBAT) COA.C114236\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NYSTATIN MICRONIZED (BHN BAKU OBAT) COA C130870\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NYSTATIN MICRONIZED (BHN BAKU OBAT) COA C130870\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IBUPROFEN 40 GRADE (BHN BAKU OBAT) COA 4050-3373\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29163990\", \"uraian\": \"IBUPROFEN 40 GRADE (BHN BAKU OBAT) COA 4050-3373\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN1380618\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN1380618\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX TM POWDER CEFADROXILE MONOHYDRATE (BHN BAKU OBAT) COA M340031,32,33\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX TM POWDER CEFADROXILE MONOHYDRATE (BHN BAKU OBAT) COA M340031,32,33\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101853018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101853018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103862518\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103862518\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POLYQUTA 400KC (BHN BAKU KOSMETIK) COA 181024142\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39129090\", \"uraian\": \"POLYQUTA 400KC (BHN BAKU KOSMETIK) COA 181024142\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AC019KC PHYTOVITYL C 5KG (BHN BAKU KOSMETIK) COA 0028393\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AC019KC PHYTOVITYL C 5KG (BHN BAKU KOSMETIK) COA 0028393\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ80507006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ80507006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50, 20KG BOX /ALU (BHN BAKU KOSMETIK) COA UE01809037,9045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50, 20KG BOX /ALU (BHN BAKU KOSMETIK) COA UE01809037,9045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO180703\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO180703\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-180803-GS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-180803-GS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIV171001-BGBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIV171001-BGBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAFFLOWER REFINED OIL (BHN BAKU KOSMETIK) COA CARHR181003-DW\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SAFFLOWER REFINED OIL (BHN BAKU KOSMETIK) COA CARHR181003-DW\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS180201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS180201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LOTUS OILY EXTRACT GT10 (BHN BAKU KOSMETIK) COA NEN180606-H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LOTUS OILY EXTRACT GT10 (BHN BAKU KOSMETIK) COA NEN180606-H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP796060\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP796060\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP797454\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP797454\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP796063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP796063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP798864\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"ERYTHROSINE AL 38PCT-42PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP798864\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP800665\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP800665\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP804017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP804017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIQUORICE LC (BHN BAKU KOSMETIK) COA.111279/P82508-P82510\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021920\", \"uraian\": \"LIQUORICE LC (BHN BAKU KOSMETIK) COA.111279/P82508-P82510\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91810118,119\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91810118,119\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318061033\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318061033\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18080229\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18080229\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001476503\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SLX (BHN BAKU KOSMETIK) COA 0001476503\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01801802,TL01804807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01801802,TL01804807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT18020170\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT18020170\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01804807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01804807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11803004,OP11805017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11803004,OP11805017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000175446, 0000176817\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000175446, 0000176817\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000176817,0000177122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000176817,0000177122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI17100009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI17100009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI1700009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI1700009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI1700009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI1700009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18080227\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18080227\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18080227\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18080227\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18080227\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18080227\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A- TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18080227\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A- TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18080227\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A- TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18080227\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A- TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18080227\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18080227,229\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18080227,229\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UT01805032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UT01805032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 204005 (BHN BAKU MAKANAN) COA XW91809229\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 204005 (BHN BAKU MAKANAN) COA XW91809229\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18040126,128\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18040126,128\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18060145\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18060145\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18060145\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18060145\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18060145\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18060145\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18080229\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18080229\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT680653\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT680653\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT678420\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPAGLOS WHITE/OFF-WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT678420\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPATINT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT680654\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPATINT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT680654\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPATINT YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT680655\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPATINT YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT680655\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALPINAWHITE (BHN BAKU KOSMETIK) COA 181914\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"ALPINAWHITE (BHN BAKU KOSMETIK) COA 181914\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIFAMPICIN POWDER (BHN BAKU OBAT) COA 2272, E736, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"RIFAMPICIN POWDER (BHN BAKU OBAT) COA 2272, E736, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPIRAMYCIN (BHN BAKU OBAT) COA 180917043M, 40M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"SPIRAMYCIN (BHN BAKU OBAT) COA 180917043M, 40M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIRACETAM (BHN BAKU OBAT) COA 20181003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29337900\", \"uraian\": \"PIRACETAM (BHN BAKU OBAT) COA 20181003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOROLAC TROMETHAMOL/TROMETHAMINE (BHN BAKU OBAT) COA. 18100672\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"KETOROLAC TROMETHAMOL/TROMETHAMINE (BHN BAKU OBAT) COA. 18100672\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU MAKANAN) COA HPB1802140\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU MAKANAN) COA HPB1802140\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK COA B270918\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK COA B270918\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 201800311,293\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 201800311,293\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10918/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10918/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYMARIN/ PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 10935/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILYMARIN/ PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 10935/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609899\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609899\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY KB WHITE(BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609888\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY KB WHITE(BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609888\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609888\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609888\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609875\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609875\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609874\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609874\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609574\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609574\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609882\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609882\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608134\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608134\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609887\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609887\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609982\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609982\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609884\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609884\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609904\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609904\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609876\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609876\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609873\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609873\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609889\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609889\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609905\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609905\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0026163\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0026163\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP797597\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP797597\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #5/TARTRAZINE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP796063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #5/TARTRAZINE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP796063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MATIPURE TM OIL FREE (BHN BAKU KOSMETIK) COA 1822301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MATIPURE TM OIL FREE (BHN BAKU KOSMETIK) COA 1822301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 1735914\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 1735914\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 1724514\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 1724514\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B- WHITE (BHN BAKU KOSMETIK) COA 829016600J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"B- WHITE (BHN BAKU KOSMETIK) COA 829016600J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL (BHN BAKU KOSMETIK), COA 830016094J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL (BHN BAKU KOSMETIK), COA 830016094J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830016105J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL (BHN BAKU KOSMETIK) COA 830016105J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1814003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) COA 1814003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1817802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) COA 1817802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784026462J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784026462J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK)COA MUP-021168\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK)COA MUP-021168\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK)COA MCP-N-052768\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK)COA MCP-N-052768\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA 0518090230\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA 0518090230\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518090229\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518090229\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518090229,253\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518090229,253\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518090253\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518090253\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P8U15QA000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL TX (BHN BAKU KOSMETIK) COA P8U15QA000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRANSCUTOL HP (BHN BAKU SUPLEMEN) COA 171859\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TRANSCUTOL HP (BHN BAKU SUPLEMEN) COA 171859\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPRITOL 888 ATO (BHN BAKU SUPLEMEN) COA 170488\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"COMPRITOL 888 ATO (BHN BAKU SUPLEMEN) COA 170488\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT),COA 18E2006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE NA PELLETS (BHN BAKU OBAT),COA 18E2006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 18E2203\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 18E2203\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EMULCIRE 61 WL 2659 (BHN BAKU OBAT) COA 170106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"EMULCIRE 61 WL 2659 (BHN BAKU OBAT) COA 170106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IONOL CP (BHN BAKU KOSMETIK) COA 01140518\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"IONOL CP (BHN BAKU KOSMETIK) COA 01140518\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011HCLL01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011HCLL01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I86001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I86001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 10 PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D184I5A021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 10 PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D184I5A021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180142001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180142001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND PF SC GLUCAN (BHN BAKU KOSMETIK)COA CPG-500688\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND PF SC GLUCAN (BHN BAKU KOSMETIK)COA CPG-500688\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PERMETHRIN PHARMA GRADE BHN BAKU OBAT COA PE0022-S77\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29163990\", \"uraian\": \"PERMETHRIN PHARMA GRADE BHN BAKU OBAT COA PE0022-S77\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TEXBIND TG BH (BHN BAKU MAKANAN),COA 2018103001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051090\", \"uraian\": \"TEXBIND TG BH (BHN BAKU MAKANAN),COA 2018103001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP79604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP79604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERYTRHROSINE AL 38PCT-42PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP7988631\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"ERYTRHROSINE AL 38PCT-42PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP7988631\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP797606\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP797606\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C BLUE #1/BRILLIANT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP795612\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C BLUE #1/BRILLIANT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP795612\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 180807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 180807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 181522\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"IZAYOI (BHN BAKU KOSMETIK) COA 181522\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANDARIN CLEAR (BHN BAKU KOSMETIK) COA 181472\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"MANDARIN CLEAR (BHN BAKU KOSMETIK) COA 181472\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 181755\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 181755\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 201800311\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 201800311\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 18290070\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 18290070\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 18290097\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 18290097\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 18290100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 18290100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GLICLAZIDE (BHN BAKU OBAT) COA 1840002430\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"GLICLAZIDE (BHN BAKU OBAT) COA 1840002430\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID S20 (BHN BAKU OBAT) COA.572000-2180121/075-089 (15)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232010\", \"uraian\": \"LIPOID S20 (BHN BAKU OBAT) COA.572000-2180121/075-089 (15)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101853718\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101853718\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE USP (BHN BAKU KOSMETIK) COA 18-19/NMD(P)/U/122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE USP (BHN BAKU KOSMETIK) COA 18-19/NMD(P)/U/122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA. 8MT180873\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30032000\", \"uraian\": \"STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA. 8MT180873\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHASEOLUS VULGARIS DRY EXTRACT (BHN BAKU SUPLEMEN) COA 32599/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"PHASEOLUS VULGARIS DRY EXTRACT (BHN BAKU SUPLEMEN) COA 32599/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10918/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10918/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VALSARTAN BP/USP (BAHAN BAKU OBAT) COA.2-PXO-0690919\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"VALSARTAN BP/USP (BAHAN BAKU OBAT) COA.2-PXO-0690919\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01808079\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01808079\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL (BHN BAKU KOSMETIK) COA TL01808079\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL (BHN BAKU KOSMETIK) COA TL01808079\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01808079\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01808079\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91810353\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91810353\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91811002,003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91811002,003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA 0518090260\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA 0518090260\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY C (R) 50, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UE01802023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY C (R) 50, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UE01802023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0718030056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0718030056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318101510 S/D 13\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318101510 S/D 13\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318101513 S/D 15\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318101513 S/D 15\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0218060099,0218090158\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0218060099,0218090158\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BISOPROLOL FUMARATE USP (BHN BAKU OBAT) COA SLL/BF/0918004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"BISOPROLOL FUMARATE USP (BHN BAKU OBAT) COA SLL/BF/0918004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRAZINAMIDE EP/USP (BHN BAKU OBAT) COA WPOZ 131 J 18, WHOPZ 1312 J 18...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"PYRAZINAMIDE EP/USP (BHN BAKU OBAT) COA WPOZ 131 J 18, WHOPZ 1312 J 18...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA KJI\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA KJI\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS S-CAQ (BHN BAKU KOSMETIK) COA KHD\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS S-CAQ (BHN BAKU KOSMETIK) COA KHD\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILASOMA MFA(S) (BHN BAKU KOSMETIK) COA KKG\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILASOMA MFA(S) (BHN BAKU KOSMETIK) COA KKG\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 181401\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 181401\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SOLBROL P (BHN BAKU KOSMETIK) COA PR18780518\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29182910\", \"uraian\": \"SOLBROL P (BHN BAKU KOSMETIK) COA PR18780518\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE /M 1.0 MIU (BHN BAKU MAKANAN) COA UT18040020,21\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE /M 1.0 MIU (BHN BAKU MAKANAN) COA UT18040020,21\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00218443\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00218443\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18060028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18060028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110018,19\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110018,19\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT18010012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT18010012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P8U15QA000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL TX (BHN BAKU KOSMETIK) COA P8U15QA000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VALERIAN D.H.E > 0,8PCT VAL.AC (BHN BAKU SUPLEMEN) COA 10945/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"VALERIAN D.H.E > 0,8PCT VAL.AC (BHN BAKU SUPLEMEN) COA 10945/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FENTACARE 2231 EF (BHN BAKU KOSMETIK )COA ZH18J0604,1905,0106,711,712\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34021990\", \"uraian\": \"FENTACARE 2231 EF (BHN BAKU KOSMETIK )COA ZH18J0604,1905,0106,711,712\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/50 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP30118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/50 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP30118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (B BAKU OBAT) COA MTP28918,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA HD 0/13 SODIUM BICARBONATE (B BAKU OBAT) COA MTP28918,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU OBAT) COA MTP28918, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU OBAT) COA MTP28918, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT18070024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT18070024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80313068\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80313068\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18040129\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18040129\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01806063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01806063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL01806063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL01806063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL01806063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL01806063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11805017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11805017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA WB00418028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA WB00418028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518033\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518033\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT18040172\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT18040172\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT18010072\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT18010072\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18040128,129\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18040128,129\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT18050798\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT18050798\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.PCT WS (BHN BAKU MAKANAN) COA UT18060014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.PCT WS (BHN BAKU MAKANAN) COA UT18060014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE01807002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"RONOXAN A (BHN BAKU MAKANAN) COA UE01807002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01807003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU MAKANAN) COA UE01807003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01807003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01807003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX, TYPE MM81 (105PCT) BHN BAKU MAKANAN,COA XW91810159\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX, TYPE MM81 (105PCT) BHN BAKU MAKANAN,COA XW91810159\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE01807002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"RONOXAN A (BHN BAKU MAKANAN) COA UE01807002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01807003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU MAKANAN) COA UE01807003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01807003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01807003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518033\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518033\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18050006,60024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18050006,60024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18050003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18050003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18050003,60039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18050003,60039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN), COA UT18080022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN), COA UT18080022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18080022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18080022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18060015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18060015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18060015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18060015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18060008,60014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18060008,60014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01805032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01805032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01804459\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01804459\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN), COA UT18040136\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN), COA UT18040136\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ80403076\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ80403076\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01805032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01805032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01804459\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01804459\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11805017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11805017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ80403076\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ80403076\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA EB00418028,29\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA EB00418028,29\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518033\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518033\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610334\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610334\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610371\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610371\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607478\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607478\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610328\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610328\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610333\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610333\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610332\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610332\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610536\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610536\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610329\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610329\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8127705\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8127705\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8241622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8241622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8165971\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8165971\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTONE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079881\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LACTONE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079881\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8041622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8041622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8193816\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8193816\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8171598\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8171598\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC /NONFERMENTER(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8110699,740\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ENTERIC /NONFERMENTER(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8110699,740\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8130513\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8130513\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8222649\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8222649\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8092580\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8092580\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8222649\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8222649\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK 90MM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8219820\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT PACK 90MM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8219820\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT C6 FLOW CUTOMETRY FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1811556540\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT C6 FLOW CUTOMETRY FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1811556540\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7349871\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7349871\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8206836\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8206836\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK 90MM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219820,8239772..\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT PACK 90MM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219820,8239772..\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8073877\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8073877\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8242965\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8242965\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8241622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8241622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT MAINTENANCE C6 FLOW CYT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT MAINTENANCE C6 FLOW CYT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE CRYSTAL E/ ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8235668\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"TUBE CRYSTAL E/ ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8235668\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SOLUTION DECONTAMINATION CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1811536538\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"SOLUTION DECONTAMINATION CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1811536538\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7338553\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7338553\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8059873\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8059873\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABORAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183667\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SABORAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183667\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8155504\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8155504\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 82822931\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 82822931\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255613\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255613\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8164642\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8164642\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8073950\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8073950\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183888\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183888\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8115797,8141537\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8115797,8141537\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8064953\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8064953\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8134769\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8134769\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POUCH GASPAK EZ CO2 SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7339794\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"POUCH GASPAK EZ CO2 SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7339794\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8212919\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8212919\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8114740\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8114740\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT C6 FLOW CYTOMETRY FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1811556540\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT C6 FLOW CYTOMETRY FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1811556540\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PEPTONE WATER 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7332727\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PEPTONE WATER 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7332727\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 82122903,8229637\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 82122903,8229637\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAI; TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8261624.828357\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAI; TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8261624.828357\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8219737\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8219737\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8228637\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8228637\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8058982\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8058982\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PROTEOSE PEPTONE NO 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 82327928009830\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PROTEOSE PEPTONE NO 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 82327928009830\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141966\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141966\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8215542\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8215542\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MONNITOL SALT AGAR BBL,500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8206562\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MONNITOL SALT AGAR BBL,500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8206562\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8227609\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8227609\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141903\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141903\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8193816\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8193816\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8233861\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8233861\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8127705\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8127705\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8242960\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8242960\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8242965,8239768\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8242965,8239768\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8011671\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8011671\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8206558\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8206558\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8080511\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8080511\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE L-ARABINOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8211671\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE L-ARABINOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8211671\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7332727\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7332727\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8046757\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE YEAST EXT GLUCOSE CHLOR 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8046757\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE UNIVERSAL PREENRICHMENT BROTH500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8171952\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE UNIVERSAL PREENRICHMENT BROTH500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8171952\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8141811\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8141811\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CZAPEK DOX BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8215544\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CZAPEK DOX BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8215544\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANEL VIEWER EUROPE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 457987\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PANEL VIEWER EUROPE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 457987\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8134767\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8134767\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8037719\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8037719\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7250994\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7250994\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TINSDALE BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8178912\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TINSDALE BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8178912\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8193979\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8193979\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8206699833\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8206699833\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7363785\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7363785\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M FC BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8103692\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE M FC BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8103692\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PSEUDOMONAS ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7235847\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PSEUDOMONAS ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7235847\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA.MLAH1001018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29341000\", \"uraian\": \"MELOXICAM BP (BHN BAKU OBAT) COA.MLAH1001018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELOXICAM USP (BHN BAKU OBAT) COA MLAH0981018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29341000\", \"uraian\": \"MELOXICAM USP (BHN BAKU OBAT) COA MLAH0981018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8135947\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8135947\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8134797\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8134797\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANNITOL POWDER USP/EP - MANNO (BHN BAKU OBAT) COA.301810303\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054300\", \"uraian\": \"MANNITOL POWDER USP/EP - MANNO (BHN BAKU OBAT) COA.301810303\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8162741\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8162741\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8159661\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8159661\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8176609\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8176609\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7314928\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7314928\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8124811\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8124811\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEMOGLOBIN SOL 2PCT 100ML 10 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8218557\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEMOGLOBIN SOL 2PCT 100ML 10 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8218557\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7220790\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7220790\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FOLIC ACID ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8114908\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE FOLIC ACID ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8114908\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8190858\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8190858\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8151919\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8151919\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8155510\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8155510\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8151919\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8151919\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD N34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8220609\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD N34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8220609\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD7 FITC M-T701 50 TESTS RUO/G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8197824\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD7 FITC M-T701 50 TESTS RUO/G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8197824\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD10 FITC HI 10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8220620\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD10 FITC HI 10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8220620\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8220589\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8220589\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD CST BEADS KIT 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 80759\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BD CST BEADS KIT 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 80759\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 PERCP SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8220687\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 PERCP SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8220687\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 PERCP 2D1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8270855\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD45 PERCP 2D1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8270855\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD34 PE 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8285754\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD34 PE 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8285754\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD38 APC HB7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8204729\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD38 APC HB7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8204729\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8204557\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8204557\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IFN GAMMA APC RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8190547\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"IFN GAMMA APC RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8190547\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8232501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8232501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8214977\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8214977\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8201702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8201702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8256655\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8256655\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI HLA-DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 81987610\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANTI HLA-DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 81987610\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8254780\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8254780\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8268724\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8268724\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI-MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8250847\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANTI-MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8250847\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD79A PE HM47 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8179861\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD79A PE HM47 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8179861\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACCUDROP FLUORESCENT BEADS 25 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8059791\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ACCUDROP FLUORESCENT BEADS 25 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8059791\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LINEAGE COCKTAIL 1 (LIN 1) FITC 50 TESTS (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8178601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"LINEAGE COCKTAIL 1 (LIN 1) FITC 50 TESTS (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8178601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 FITC 2D1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8214831\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD45 FITC 2D1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8214831\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD4 FITC RPA-T4 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8037703\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD4 FITC RPA-T4 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8037703\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAIN BUFFER FBS 500ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8166639\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"STAIN BUFFER FBS 500ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8166639\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LYSING BUFFER 10X CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8220866\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"LYSING BUFFER 10X CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8220866\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD25 FITC M-A251 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8143577\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD25 FITC M-A251 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8143577\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MS LG KPA COMP BEAD SET 6ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8087701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"MS LG KPA COMP BEAD SET 6ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8087701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIA-PROBE CELL VIABILITY SOLUTION (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8169990\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIA-PROBE CELL VIABILITY SOLUTION (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8169990\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MS LG G1KPA ITCI PE MOPC0-21 100TS(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8024788\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"MS LG G1KPA ITCI PE MOPC0-21 100TS(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8024788\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8081908\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8081908\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD45 HORIZON V500 H130 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8170906\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD45 HORIZON V500 H130 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8170906\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD26 FITC M-A-261 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8088577\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD26 FITC M-A-261 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8088577\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8141691\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8141691\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELTURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7362985\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EGG YOLK TELTURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7362985\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8155510\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8155510\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8159608\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8159608\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8176609,8213631\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8176609,8213631\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU REGULATORY T CELL CKTL 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8281833\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU REGULATORY T CELL CKTL 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8281833\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD34 PE 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8285754\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD34 PE 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8285754\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MS LG KPA COMP BEAD SET 6ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8197547\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"MS LG KPA COMP BEAD SET 6ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8197547\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD4 PE CY7 SK3 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 71809421671\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD4 PE CY7 SK3 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 71809421671\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL TINSDALE ENRICHMENT 6X15ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8269970\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL TINSDALE ENRICHMENT 6X15ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8269970\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 APC SK7 100TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8249595\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 APC SK7 100TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8249595\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 APC SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8249595\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 APC SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8249595\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FACS ACCUDROP BEADS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8226993\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"FACS ACCUDROP BEADS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8226993\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SKINB VITLIDO 1MLD16 , COA 16200-2, 16419-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE SKINB VITLIDO 1MLD16 , COA 16200-2, 16419-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SKINB VITALLGHLIDO 1MLD16 , COA 16373-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE SKINB VITALLGHLIDO 1MLD16 , COA 16373-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML , COA 16378-1.16445-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE LYFT LIDOCAINE 1ML , COA 16378-1.16445-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE VOLYME 1ML , COA 16046-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE VOLYME 1ML , COA 16046-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE KYSSE 1 ML , COA 16207-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE KYSSE 1 ML , COA 16207-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML (BHN BAKU OBAT) COA 16378-1 SAMPLE NO COMMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE LYFT LIDOCAINE 1ML (BHN BAKU OBAT) COA 16378-1 SAMPLE NO COMMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIRGIN OLIVE OIL CONFORM TO THE EUR ( BHN BAKU KOSMETIK) COA 0000022783\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"VIRGIN OLIVE OIL CONFORM TO THE EUR ( BHN BAKU KOSMETIK) COA 0000022783\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIRGIN SWEET ALMOND OIL CONFORM TO THE EUR PH (BHN BAKU KOSMETIK) COA 0000023467\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"VIRGIN SWEET ALMOND OIL CONFORM TO THE EUR PH (BHN BAKU KOSMETIK) COA 0000023467\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT18090087\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT18090087\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18090249\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18090249\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18090272,273\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18090272,273\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01804593001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01804593001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418043,44\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418043,44\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB0418044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB0418044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ80606145,6146\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ80606145,6146\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ80910167\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ80910167\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80910167\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80910167\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ80710124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ80710124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ80710124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ80710124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80810157\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80810157\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01805032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01805032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340,25KG PC (BHN BAKU KOSMETIK) COA 0218100179\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340,25KG PC (BHN BAKU KOSMETIK) COA 0218100179\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218100179\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218100179\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF18127017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF18127017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY C (R) 50,20KG BOX ALU (BHN BAKU KOSMETIK) COA UE01809037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY C (R) 50,20KG BOX ALU (BHN BAKU KOSMETIK) COA UE01809037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX (TM) VH,5KG BAG ALU (BHN BAKU KOSMETIK) COA UF18127017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"BEAUPLEX (TM) VH,5KG BAG ALU (BHN BAKU KOSMETIK) COA UF18127017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01806623\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01806623\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 81008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38247900\", \"uraian\": \"LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 81008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 81008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38247900\", \"uraian\": \"LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 81008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 80809\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38247900\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 80809\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OILESS CITY TM (BHN BAKU KOSMETIK) COA 71104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38247900\", \"uraian\": \"OILESS CITY TM (BHN BAKU KOSMETIK) COA 71104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MATCHA GREEN TEA EXTRACT CSP 6 TC ( BHN BAKU KOSMETIK), COA CSP 18014 EOU\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MATCHA GREEN TEA EXTRACT CSP 6 TC ( BHN BAKU KOSMETIK), COA CSP 18014 EOU\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ISOCELL TM SLIM (DISC) (BHN BAKU KOSMETIK) COA 1823202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ISOCELL TM SLIM (DISC) (BHN BAKU KOSMETIK) COA 1823202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ISOCELL TM SLIM (DISC) (BHN BAKU KOSMETIK) COA 1823202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ISOCELL TM SLIM (DISC) (BHN BAKU KOSMETIK) COA 1823202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5541718\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5541718\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 1735914\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 1735914\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE (BHN BAKU KOSMETIK), COA 829016600J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"B-WHITE (BHN BAKU KOSMETIK), COA 829016600J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830016105J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL (BHN BAKU KOSMETIK) COA 830016105J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXO-T (BHN BAKU KOSMETIK) COA 715016602J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EXO-T (BHN BAKU KOSMETIK) COA 715016602J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016605J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016605J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784026310J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784026310J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1802823436\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1802823436\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN538434\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN538434\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN538389\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN538389\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN538468\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN538468\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN538522\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN538522\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCAP 1500 CO-PROCESSED (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537461\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCAP 1500 CO-PROCESSED (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537461\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 14 PREMIUM (BHN BAKU OBAT UTK PEWARNA TABLET) COA D184139021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 14 PREMIUM (BHN BAKU OBAT UTK PEWARNA TABLET) COA D184139021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RANITIDINE HYDROCHLORIDE USP(INJECTABLE USE) (BHN BAKU OBAT) COA RH 1128 11 18\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29321900\", \"uraian\": \"RANITIDINE HYDROCHLORIDE USP(INJECTABLE USE) (BHN BAKU OBAT) COA RH 1128 11 18\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1830671, 1852295,1852302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"PARACETAMOL (BHN BAKU OBAT) COA 1830671, 1852295,1852302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 100 CN 10KG KA (BHN BAKU KOSMETIK) COA 1514878, 1516802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 100 CN 10KG KA (BHN BAKU KOSMETIK) COA 1514878, 1516802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 CN 10KG KA (BHN BAKU KOSMETIK) COA 1515976,1517645\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 CN 10KG KA (BHN BAKU KOSMETIK) COA 1515976,1517645\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GROTANOL 3025 CN 10KG KA (BHN BAKU KOSMETIK) COA 1509426\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GROTANOL 3025 CN 10KG KA (BHN BAKU KOSMETIK) COA 1509426\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 10KG KA (BHN BAKU KOSMETIK) COA 1518695\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 10KG KA (BHN BAKU KOSMETIK) COA 1518695\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIDIN DO CN 10KG CA (BHN BAKU KOSMETIK) COA 1518078\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIDIN DO CN 10KG CA (BHN BAKU KOSMETIK) COA 1518078\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 CN 10KG KA (BHN BAKU KOSMETIK) COA 1516151\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 CN 10KG KA (BHN BAKU KOSMETIK) COA 1516151\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 900 CN 10KG KA (BHN BAKU KOSMETIK) COA 1516505\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 900 CN 10KG KA (BHN BAKU KOSMETIK) COA 1516505\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS FUMARATE USP/EP (BHN BAKU OBAT) COA.2018/291\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"FERROUS FUMARATE USP/EP (BHN BAKU OBAT) COA.2018/291\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA.01/18GAAK\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA.01/18GAAK\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU KOSMETIK) COA.01/17GAAK,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT KIWI (BAHAN BAKU KOSMETIK) COA.01/17GAAK,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BAHAN BAKU KOSMETIK) COA.168645\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"VEGETOL GRAPEFRUIT GR403 HYDRO (BAHAN BAKU KOSMETIK) COA.168645\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BAHAN BAKU OBAT) COA.168645\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"VEGETOL GRAPEFRUIT GR403 HYDRO (BAHAN BAKU OBAT) COA.168645\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU KOSMETIK) COA.01/18GAAK\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT KIWI (BAHAN BAKU KOSMETIK) COA.01/18GAAK\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU OBAT) COA.01/18GAAK, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT KIWI (BAHAN BAKU OBAT) COA.01/18GAAK, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPRITOL 888 CG ATO (BHN BAKU OBAT) COA 68552\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"COMPRITOL 888 CG ATO (BHN BAKU OBAT) COA 68552\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HEXETIDINE (BHN BAKU OBAT) COA FG18201998\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"HEXETIDINE (BHN BAKU OBAT) COA FG18201998\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSE OILY EXTRACT (BHN BAKU KOSMETIK)COA ROS180805-H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROSE OILY EXTRACT (BHN BAKU KOSMETIK)COA ROS180805-H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LINEN OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA LIU180705-H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LINEN OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA LIU180705-H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-181105-GS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-181105-GS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-181105-GS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-181105-GS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS181002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS181002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIGELINE (BHN BAKU KOSMETIK) COA KA180502-B\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KIGELINE (BHN BAKU KOSMETIK) COA KA180502-B\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM180901-PGH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM180901-PGH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYMARIN (BHN BAKU SUPLEMEN) COA 32703/M5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILYMARIN (BHN BAKU SUPLEMEN) COA 32703/M5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRANOL ULTRA C32 200KG PLASCTIC DRUM (BHN BAKU KOSMETIK) COA BP808500R\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34029099\", \"uraian\": \"MIRANOL ULTRA C32 200KG PLASCTIC DRUM (BHN BAKU KOSMETIK) COA BP808500R\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD DNA QC PATICLES 25 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8127923\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BD DNA QC PATICLES 25 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8127923\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18080016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18080016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18080016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18080016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18070015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18070015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00218194\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00218194\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB01017666\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB01017666\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18100002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18100002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18100055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18100055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00218443\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00218443\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 2829534\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 2829534\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND 181104, ND181107, ND181108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND 181104, ND181107, ND181108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISONE USP41 (BHN BAKU OBAT) COA NPD 180518, NPD 181009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISONE USP41 (BHN BAKU OBAT) COA NPD 180518, NPD 181009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLOPIDOGREL BISULFATE (BHN BAKU OBAT) COA AALH003866,3258,3190...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"CLOPIDOGREL BISULFATE (BHN BAKU OBAT) COA AALH003866,3258,3190...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK)COA CHP1181114,1180813\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK)COA CHP1181114,1180813\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-01232B\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-01232B\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK)COA BAG-011388\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK)COA BAG-011388\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA MCP-N-060598\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA MCP-N-060598\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-021638, GSC-K-031458\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-021638, GSC-K-031458\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK)COA GTB-020538\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK)COA GTB-020538\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-122488\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-122488\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SNAIL SECREATION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-0206388\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SNAIL SECREATION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-0206388\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND NANOMOIST D (BHN BAKU KOSMETIK) COA NMSP-D-011018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND NANOMOIST D (BHN BAKU KOSMETIK) COA NMSP-D-011018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-021168\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-021168\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-96A-6CS (BHN BAKU KOSMETIK) , COA 811994\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-96A-6CS (BHN BAKU KOSMETIK) , COA 811994\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6028 (16KG) BHN BAKU KOSMETIK, COA 811197\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6028 (16KG) BHN BAKU KOSMETIK, COA 811197\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-96A-6CS (16KG) BHN BAKU KOSMETIK, COA 811995\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-96A-6CS (16KG) BHN BAKU KOSMETIK, COA 811995\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA R700500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA R700500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOTAXIME SODIUM STERILE USP (BHN BAKU OBAT) COA R202100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOTAXIME SODIUM STERILE USP (BHN BAKU OBAT) COA R202100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOTAXIME SODIUM EP (BHN BAKU OBAT) COA R201300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOTAXIME SODIUM EP (BHN BAKU OBAT) COA R201300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMETHAZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA HPHCPM050\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29343000\", \"uraian\": \"PROMETHAZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA HPHCPM050\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOGLYCOLIC ACID 99PCT COSMETIC GRADE (BHN BAKU KOSMETIK) COA.0000065168\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOGLYCOLIC ACID 99PCT COSMETIC GRADE (BHN BAKU KOSMETIK) COA.0000065168\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMMONIUM THIOGLYCOLATE 71PCT(60PCT TGA) BHN BAKU KOSMETIK, COA.0000065169\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"AMMONIUM THIOGLYCOLATE 71PCT(60PCT TGA) BHN BAKU KOSMETIK, COA.0000065169\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MONOETHANOLAMINE THIOGLYCOLATE 83PCT (50PCT TGA) BHN BAKU KOSMETIK, COA 0000065170\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221100\", \"uraian\": \"MONOETHANOLAMINE THIOGLYCOLATE 83PCT (50PCT TGA) BHN BAKU KOSMETIK, COA 0000065170\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA.18100743, 18100744\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29395900\", \"uraian\": \"DIMENHYDRINATE (BHN BAKU OBAT) COA.18100743, 18100744\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANACOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPLEMEN KESEHATAN) COA. 1805982916\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANACOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPLEMEN KESEHATAN) COA. 1805982916\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610787\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610787\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610783\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610783\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610788\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610788\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610785\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610785\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610699\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610699\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610797\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610797\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610786\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610786\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CORTISONE ACETATE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1800951018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"CORTISONE ACETATE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1800951018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTRACT 2PCT COLOR (BAHAN BAKU SUPPLEMEN) COA 10910/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTRACT 2PCT COLOR (BAHAN BAKU SUPPLEMEN) COA 10910/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10911/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10911/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10912/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10912/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10921/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10921/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYMARIN /PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 10935/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILYMARIN /PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 10935/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX TM POWDER CEFADROXILE MONOHYDRATE (BHN BAKU OBAT) COA M334596,599,602\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX TM POWDER CEFADROXILE MONOHYDRATE (BHN BAKU OBAT) COA M334596,599,602\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIOTOX (R) (BHN BAKU OBAT UTK PAKAN TERNAK) COA 081118-854\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"BIOTOX (R) (BHN BAKU OBAT UTK PAKAN TERNAK) COA 081118-854\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for E.C.O TRACE ZN 25PCT (BHN BAKU UTK PAKAN TERNAK) COA BC250818\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"E.C.O TRACE ZN 25PCT (BHN BAKU UTK PAKAN TERNAK) COA BC250818\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for E.C.O.TRACE MN 20PCT(BHN BAKU OBAT UTK PAKAN TERNAK) COA BC190918\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"E.C.O.TRACE MN 20PCT(BHN BAKU OBAT UTK PAKAN TERNAK) COA BC190918\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for E.C.O TRACE FE 20PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC140918\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"E.C.O TRACE FE 20PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC140918\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIQUIPHOS STRONG (BHN BAKU UTK PAKAN TERNAK) COA 181018-815\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"LIQUIPHOS STRONG (BHN BAKU UTK PAKAN TERNAK) COA 181018-815\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NABUMETONE USP (BAHAN BAKU OBAT) COA.H-1170718\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29145000\", \"uraian\": \"NABUMETONE USP (BAHAN BAKU OBAT) COA.H-1170718\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU SUPLEMEN) COA.TS00011207\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU SUPLEMEN) COA.TS00011207\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU MAKANAN) COA.TS00011207\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU MAKANAN) COA.TS00011207\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) COA 7766004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) COA 7766004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM (BHN BAKU OBAT) COA 18091447 S/D 449, 1455\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331900\", \"uraian\": \"METAMIZOLE SODIUM (BHN BAKU OBAT) COA 18091447 S/D 449, 1455\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINKGO BILOBA DRY EXTRACT HF (BHN BAKU SUPLEMEN) COA 18432\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"GINKGO BILOBA DRY EXTRACT HF (BHN BAKU SUPLEMEN) COA 18432\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRAPE SEED DRY EXTRACT (BHN BAKU SUPLEMEN) COA 18400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"GRAPE SEED DRY EXTRACT (BHN BAKU SUPLEMEN) COA 18400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNOLIA BARK EXTRACT (BHN BAKU KOSMETIK) COA MBE05-180801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MAGNOLIA BARK EXTRACT (BHN BAKU KOSMETIK) COA MBE05-180801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA MS/70120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA MS/70120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA MS/2460\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA MS/2460\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTABIO ARV-S (BHN BAKU OBAT) COA.1806061K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"ASTABIO ARV-S (BHN BAKU OBAT) COA.1806061K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SUBQ 2 ML D16 , COA 15351-1,15608-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE SUBQ 2 ML D16 , COA 15351-1,15608-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SKINB VITLIDO 1MLD16 , COA 16419-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE SKINB VITLIDO 1MLD16 , COA 16419-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SKINB VITALLGHLIDO 1MLD16 , COA 16503-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE SKINB VITALLGHLIDO 1MLD16 , COA 16503-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE LIDOCAINE 1 ML D16 ,COA 1616199-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE LIDOCAINE 1 ML D16 ,COA 1616199-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML , COA 16445-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE LYFT LIDOCAINE 1ML , COA 16445-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE VOLYME 1ML , COA 16046-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE VOLYME 1ML , COA 16046-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE REFYNE 1ML, COA 16326-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE REFYNE 1ML, COA 16326-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE DEFYNE 1 ML ,COA 16283-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE DEFYNE 1 ML ,COA 16283-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE KYSSE 1 ML , COA 16207-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE KYSSE 1 ML , COA 16207-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE LYFT LIDOCAINE 1 ML , COA 16445-1,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE LYFT LIDOCAINE 1 ML , COA 16445-1,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 181402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ABSORAGE (BHN BAKU KOSMETIK) COA 181402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 181104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 181104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALPHINIAWHITE (BHN BAKU KOSMETIK) COA 181981\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ALPHINIAWHITE (BHN BAKU KOSMETIK) COA 181981\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA ROA319187\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA ROA319187\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN )COA ROA3041800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN )COA ROA3041800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLUOROMETHOLONE MICRONISED USP BP JP (BHN BAKU OBAT) COA 1801354152\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"FLUOROMETHOLONE MICRONISED USP BP JP (BHN BAKU OBAT) COA 1801354152\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAVONOL 10 (BAHAN BAKU KOSMETIK), COA.LDC37318T\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101990\", \"uraian\": \"SAVONOL 10 (BAHAN BAKU KOSMETIK), COA.LDC37318T\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD FACSMELODY BRV COLOR PLATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BD FACSMELODY BRV COLOR PLATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 DHA H POWDER, 0,1KG POS (BHN BAKU MAKANAN) COA XI00005285, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 DHA H POWDER, 0,1KG POS (BHN BAKU MAKANAN) COA XI00005285, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 18042501,18051103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 18042501,18051103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S281/18,S648/18, S708/18\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S281/18,S648/18, S708/18\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1852283,2317,2318\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"PARACETAMOL (BHN BAKU OBAT) COA 1852283,2317,2318\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NOREPINEPHRINE BITARTRATE (BHN BAKU OBAT) COA 460104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29379010\", \"uraian\": \"NOREPINEPHRINE BITARTRATE (BHN BAKU OBAT) COA 460104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TEFOSE 63 (BHN BAKU SUPLEMEN) COA 172219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TEFOSE 63 (BHN BAKU SUPLEMEN) COA 172219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPRITOL 888 ATO (BHN BAKU KOSMETIK) COA 45013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"COMPRITOL 888 ATO (BHN BAKU KOSMETIK) COA 45013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE A PELLETS (BHN BAKU SUPLEMEN) COA 18E2201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE A PELLETS (BHN BAKU SUPLEMEN) COA 18E2201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEVOFLOXACIN HEMIHYDRATE (BHN BAKU OBAT) COA C008-1808610\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"LEVOFLOXACIN HEMIHYDRATE (BHN BAKU OBAT) COA C008-1808610\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETAMETHASONE VALERATE USP (BHN BAKU OBAT) COA M-X21-181001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"BETAMETHASONE VALERATE USP (BHN BAKU OBAT) COA M-X21-181001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453294475\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453294475\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA.M113134,M113121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA.M113134,M113121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518090271\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518090271\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0218090158\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0218090158\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518090260\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518090260\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0418090195\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HMS, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0418090195\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.18100608,18100793\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29391900\", \"uraian\": \"PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.18100608,18100793\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-1801114\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-1801114\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYPROHEPTADINE HCL BP/PH.EUR (BHN BAKU OBAT) COA CYP/11181012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"CYPROHEPTADINE HCL BP/PH.EUR (BHN BAKU OBAT) COA CYP/11181012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18070015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18070015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18100055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18100055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A+D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18090041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A+D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18090041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JOJOBA OIL VIRGIN LOW ODOUR (BHN BAKU KOSMETIK) COA 146272\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15159011\", \"uraian\": \"JOJOBA OIL VIRGIN LOW ODOUR (BHN BAKU KOSMETIK) COA 146272\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JOJOBA OIL VIRGIN LOW ODOUR (BHN BAKU KOSMETIK) COA 146881\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15159011\", \"uraian\": \"JOJOBA OIL VIRGIN LOW ODOUR (BHN BAKU KOSMETIK) COA 146881\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01808069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01808069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01808069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01808069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01808069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01808069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01808069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01808069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518090271\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518090271\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318101522,23, 55 S/D 57\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318101522,23, 55 S/D 57\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 18111205\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 18111205\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8248918\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8248918\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8135947\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8135947\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8129694\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8129694\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8289953\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8289953\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8234703\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8234703\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8241622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8241622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8242970,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8242970,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255627\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255627\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC--XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8278796\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA IC--XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8278796\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POLYPEPTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7289534\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POLYPEPTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7289534\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MAIL EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8177885\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MAIL EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8177885\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MR-VP MEDIUM 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7262698\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MR-VP MEDIUM 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7262698\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8248690\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8248690\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-PA-C AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206646\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE M-PA-C AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206646\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8274532\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8274532\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 181652915\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 181652915\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8260559\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8260559\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183667\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183667\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8197998,8227609\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8197998,8227609\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7079881\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7079881\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8155504\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8155504\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7341765\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7341765\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8141537\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8141537\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8171517\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8171517\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255534\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255534\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8227776\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8227776\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7338553\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7338553\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8162538,8241622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8162538,8241622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7349871\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7349871\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206836\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206836\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8162545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8162545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MR-VP MEDIUM 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7262698\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MR-VP MEDIUM 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7262698\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8297983\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8297983\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 83175255\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 83175255\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8248690,8281627\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8248690,8281627\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7250994\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7250994\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8242653\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8242653\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8274719\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8274719\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8046747\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8046747\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8114795\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8114795\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8129691\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8129691\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8306679\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8306679\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183873\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183873\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8011687,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8011687,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8194606\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8194606\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8253602\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8253602\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255627\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SKIM MILK 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255627\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8234703\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8234703\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8101787\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8101787\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183873\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183873\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8306679\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8306679\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233944\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233944\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183888\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183888\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8155504\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8155504\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TREHALOSE 10G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8248746\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TREHALOSE 10G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8248746\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8150647\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8150647\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206336\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206336\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8241614\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8241614\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233944\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233944\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233583\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233583\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8241935\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8241935\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079881,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079881,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206558\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206558\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8309568\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8309568\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8271781\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8271781\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK 90MM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8284533\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT PACK 90MM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8284533\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8248911\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8248911\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8165971\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8165971\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8284529\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8284529\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PROTEOSE PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8197669\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PROTEOSE PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8197669\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POLYPEPTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 82835918\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POLYPEPTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 82835918\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EOSIN METHYLENE BLUE AG HHT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8045543\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EOSIN METHYLENE BLUE AG HHT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8045543\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MR-VP BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7235673\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MR-VP BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7235673\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8233701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8233701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 819750298\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO AGAR 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 819750298\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE L-ARABINOSE 25G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8211671\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE L-ARABINOSE 25G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8211671\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DULCITOL 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8178635\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DULCITOL 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8178635\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TREHALOSE 10G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8248746\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TREHALOSE 10G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8248746\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7332727\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7332727\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8141811\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8141811\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8227623\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8227623\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7153977\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7153977\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8256662\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8256662\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8241939\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8241939\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8274532\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8274532\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8274532\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8274532\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8165971\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8165971\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8241622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8241622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8215542\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8215542\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8127705\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8127705\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8284529\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8284529\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8255627\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8255627\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8057815\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8057815\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 802380183\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 802380183\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8284532\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8284532\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALONATE BROTH 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7297545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MALONATE BROTH 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7297545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE 25KG BOX (BHN BAKU MAKANAN) COA TL01811086,1811106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE 25KG BOX (BHN BAKU MAKANAN) COA TL01811086,1811106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01811106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01811106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT18080174,75\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT18080174,75\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA647244\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA647244\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOPROFEN SALE DI LISINA (BHN BAKU OBAT) COA 188610\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29183000\", \"uraian\": \"KETOPROFEN SALE DI LISINA (BHN BAKU OBAT) COA 188610\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIFE'S GLA (TM) '10'N-6 OIL (BHN BAKU SUPLEMEN) COA 7011016CN, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"LIFE'S GLA (TM) '10'N-6 OIL (BHN BAKU SUPLEMEN) COA 7011016CN, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GABAPENTIN ( BHN BAKU OBAT) COA CGBU180282\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"GABAPENTIN ( BHN BAKU OBAT) COA CGBU180282\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAPROTILINE HCL (BHN BAKU OBAT) COA 1850003486\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29214900\", \"uraian\": \"MAPROTILINE HCL (BHN BAKU OBAT) COA 1850003486\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURICILLIN COMPACTED (BHN BAKU OBAT) COA. M842446 S/D 2449, 2364,2443\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411020\", \"uraian\": \"PURICILLIN COMPACTED (BHN BAKU OBAT) COA. M842446 S/D 2449, 2364,2443\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL ZX, 0,500KG PAIL (BHN BAKU KOSMETIK) COA 18052527, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL ZX, 0,500KG PAIL (BHN BAKU KOSMETIK) COA 18052527, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8331948\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8331948\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD34 APC BG12 1001 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8316581\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD34 APC BG12 1001 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8316581\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD79A PE HM47 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8274645\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD79A PE HM47 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8274645\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI-MPO FITC 5B8 50 TESTS RUO GMP (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8250847\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANTI-MPO FITC 5B8 50 TESTS RUO GMP (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8250847\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8318567\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8318567\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI-HLA-DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8198761\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANTI-HLA-DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8198761\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD33 PE P67 6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8254780\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD33 PE P67 6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8254780\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACCUDROP FLUORESCENT BEADS 25 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 8172971\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ACCUDROP FLUORESCENT BEADS 25 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 8172971\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8296712\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8296712\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 8159608\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 8159608\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8162741\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8162741\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7314928\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7314928\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141691\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141691\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8239832\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8239832\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU NEURAL LINEAGE ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8311570\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU NEURAL LINEAGE ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8311570\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU MESENCHYMAL SG ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8296712\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU MESENCHYMAL SG ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8296712\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8159661\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8159661\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8247729\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8247729\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7314928\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7314928\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8159608\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8159608\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8247729\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8247729\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8155510\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8155510\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8296712\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8296712\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NESTIN PE 25/NESTIN 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8213902\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"NESTIN PE 25/NESTIN 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8213902\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GFAP ALEXA 647 1B4 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8192940\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"GFAP ALEXA 647 1B4 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8192940\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD8 FITC HIT8A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7331888\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD8 FITC HIT8A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7331888\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8268724\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8268724\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 FITC SK7 50 TESTS IVD (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8181542\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 FITC SK7 50 TESTS IVD (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8181542\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE SDA WLP AND CMP IC-XT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8278808\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE SDA WLP AND CMP IC-XT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8278808\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE SDA WLP AND CMP IC-XT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8278808\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE SDA WLP AND CMP IC-XT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8278808\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8151581\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"TUBE EGG YOLK ENRICHMENT 50PCT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8151581\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL E COIL H ANTISERUM H7 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 73356084\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL E COIL H ANTISERUM H7 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 73356084\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7220790\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7220790\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL E COLI ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7321876\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL E COLI ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7321876\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FOLIC ACID ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8114908\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE FOLIC ACID ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8114908\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255628\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255628\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8268723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8268723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 PER CP 2D1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8075987\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD45 PER CP 2D1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8075987\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 APC-H7 SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8180964\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 APC-H7 SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8180964\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 7-AAD STAINING SOLUTION 2ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8008681-A\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"7-AAD STAINING SOLUTION 2ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8008681-A\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA. DOC3161821\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"SODIUM CARBONATE IPH (BHN BAKU OBAT) COA. DOC3161821\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEROPENEM TRIHYDRATE WITH SODIUM CARBONATE STERILE (BHN BAKU OBAT) COA S0820180715\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30032000\", \"uraian\": \"MEROPENEM TRIHYDRATE WITH SODIUM CARBONATE STERILE (BHN BAKU OBAT) COA S0820180715\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E15 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011I6BL02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E15 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011I6BL02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011HCLL01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011HCLL01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180173001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180173001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 040418/005357\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 040418/005357\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/11/171118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/11/171118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA.LDC38418T\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101990\", \"uraian\": \"SAVONOL 16 (BAHAN BAKU KOSMETIK), COA.LDC38418T\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E5 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011I2JL01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E5 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011I2JL01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E15 PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011I77L01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E15 PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011I77L01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL A15 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I5V021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL A15 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I5V021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL A15 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I1R021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL A15 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I1R021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL A15 PREMIUM LV ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I61021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL A15 PREMIUM LV ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I61021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SERASENSE GB 10 (BAHAN BAKU KOSMETIK) COA SF9902E\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100020\", \"uraian\": \"SERASENSE GB 10 (BAHAN BAKU KOSMETIK) COA SF9902E\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA. 20181210\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17023010\", \"uraian\": \"DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA. 20181210\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE USP (BHN BAKU KOSMETIK) COA 18-19/NMD(P)/U/146 S/D 151\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE USP (BHN BAKU KOSMETIK) COA 18-19/NMD(P)/U/146 S/D 151\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 20181206\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 20181206\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101854718\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101854718\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPSULAC (R) 60 BHN BAKU OBAT, COA L100411718A533\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"CAPSULAC (R) 60 BHN BAKU OBAT, COA L100411718A533\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SERASENSE SF CM5 (BAHAN BAKU KOSMETIK) COA PA81207025,27,38,44\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29319049\", \"uraian\": \"SERASENSE SF CM5 (BAHAN BAKU KOSMETIK) COA PA81207025,27,38,44\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA ROA347182\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA ROA347182\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX TM POWDER CEFADROXILE MONOHYDRATE (BHN BAKU OBAT) COA M334601,603.600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX TM POWDER CEFADROXILE MONOHYDRATE (BHN BAKU OBAT) COA M334601,603.600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FENOFIBRATE (BHN BAKU OBAT) COA F03-20180603\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"FENOFIBRATE (BHN BAKU OBAT) COA F03-20180603\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIROXICAM (BHN BAKU OBAT) COA PRX2018013M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"PIROXICAM (BHN BAKU OBAT) COA PRX2018013M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METRONIDAZOLE BP (BHN BAKU OBAT) COA MBO-18120680\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"METRONIDAZOLE BP (BHN BAKU OBAT) COA MBO-18120680\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NICLOSAMIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 180923\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"NICLOSAMIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 180923\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POVIDONE K-30 EX JHNH (BHN BAKU OBAT) COA PK30-180819F41\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"POVIDONE K-30 EX JHNH (BHN BAKU OBAT) COA PK30-180819F41\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INOSITOL (BHN BAKU OBAT) COA 201811005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"INOSITOL (BHN BAKU OBAT) COA 201811005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 18101204\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"ACESULFAME K (BHN BAKU OBAT) COA 18101204\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUCRALOSE (BHN BAKU OBAT) COA 18101204\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29321400\", \"uraian\": \"SUCRALOSE (BHN BAKU OBAT) COA 18101204\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610808\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610808\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611445\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611445\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611428\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611428\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611431\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611431\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611437\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611437\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611042\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611042\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611442\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611442\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611430\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611430\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611434\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611434\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611460\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611460\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611459\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611459\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH6114330\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH6114330\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611437\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611437\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611436\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611436\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611427\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611427\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH6113611\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH6113611\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611423\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611423\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611429\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611429\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610784\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610784\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIDOCAINE BASE (BHN BAKU OBAT) COA. 187936\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"LIDOCAINE BASE (BHN BAKU OBAT) COA. 187936\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIDOCAINE HCL (BHN BAKU OBAT) COA 188842\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"LIDOCAINE HCL (BHN BAKU OBAT) COA 188842\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY C (R) 50, 5KG BAG ALU (BHN BAKU KOSMETIK) COA CS18060016,17,18\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY C (R) 50, 5KG BAG ALU (BHN BAKU KOSMETIK) COA CS18060016,17,18\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11805018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP11805018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418098\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418098\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18060045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18060045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418098,99\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418098,99\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418099, 418100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418099, 418100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518033\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518033\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80910167\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80910167\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91811082,083\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91811082,083\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DWI BI (BHN BAKU MAKANAN) COA XW91811245\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"DWI BI (BHN BAKU MAKANAN) COA XW91811245\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18090044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18090044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01806063,7064\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01806063,7064\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01807064\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01807064\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT18050023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT18050023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT18090044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT18090044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18060045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18060045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418098\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418098\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN), COA UT18060045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN), COA UT18060045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18060045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18060045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18080016,17\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18080016,17\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18080017,22\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18080017,22\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01807064\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01807064\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610544\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610544\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610794\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610794\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611290\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611290\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610795\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610795\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610799\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610799\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610776\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610776\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610777\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610777\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610798\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610798\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610343\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610343\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610796\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610796\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610790\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610790\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610778\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610778\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610780\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610780\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610781\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610781\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610789\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610789\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610779\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610779\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610784\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610784\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYCLOSERINE USP ( BHN BAKU OBAT) COA CCLU180007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"CYCLOSERINE USP ( BHN BAKU OBAT) COA CCLU180007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 27/50 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA MTP34818\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 27/50 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA MTP34818\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXCIPIENT 0/13 SODIUM BICAR... (B.BAKU MAKANAN) COA MTP31118, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXCIPIENT 0/13 SODIUM BICAR... (B.BAKU MAKANAN) COA MTP31118, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN )COA MTP33218\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN )COA MTP33218\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA. RBA3181800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA. RBA3181800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO180601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO180601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-181009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-181009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTELENE COMPLEX EGX 232 (BHN BAKU KOSMETIK)COA EG543-181009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTELENE COMPLEX EGX 232 (BHN BAKU KOSMETIK)COA EG543-181009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTELENE COMPLEX EGX 232 (BHN BAKU KOSMETIK)COA PX232-181102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTELENE COMPLEX EGX 232 (BHN BAKU KOSMETIK)COA PX232-181102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 201800377\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 201800377\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A,20KG BA (BHN BAKU MAKANAN) COA WB01118394,95\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A,20KG BA (BHN BAKU MAKANAN) COA WB01118394,95\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JAGUAR C 162 CARDBOARD BOX 25 KG (BHN BAKU KOSMETIK) COA MJAC18319\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"JAGUAR C 162 CARDBOARD BOX 25 KG (BHN BAKU KOSMETIK) COA MJAC18319\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NONIVAMIDE (SYNTHETIC CAPSAICIN)BHN BAKU KOSMETIK, COA.20180926\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29241990\", \"uraian\": \"NONIVAMIDE (SYNTHETIC CAPSAICIN)BHN BAKU KOSMETIK, COA.20180926\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB00718222\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB00718222\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIQUORICE LC (BHN BAKU KOSMETIK) COA.111957/P86599-P86601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021920\", \"uraian\": \"LIQUORICE LC (BHN BAKU KOSMETIK) COA.111957/P86599-P86601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 18062902, 18052301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 18062902, 18052301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG181207\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG181207\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 64881P\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 64881P\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK)COA CHP1181210\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK)COA CHP1181210\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-150578, 211198,221898\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-150578, 211198,221898\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK)COA NMP-L-170388\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK)COA NMP-L-170388\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-010248\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-010248\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-031458\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-031458\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK)COA CLHW-022208\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK)COA CLHW-022208\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSFAC-021088\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSFAC-021088\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-022208\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-022208\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01806623,6627\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01806623,6627\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) XW91811241\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) XW91811241\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000178369\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000178369\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01808081\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01808081\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18070207\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18070207\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18080237\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18080237\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT018050038\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT018050038\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT18030171,172\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT18030171,172\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001476503\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SLX (BHN BAKU KOSMETIK) COA 0001476503\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000178369\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000178369\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0021803\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0021803\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ80213064\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ80213064\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00555844, VE00561967\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"AMPHISOL K (BHN BAKU KOSMETIK) COA VE00555844, VE00561967\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT18050800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT18050800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU OBAT UTK PAKAN TERNAK) COA 201800243,235\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"AL HYD WET GEL VAC 20 (BHN BAKU OBAT UTK PAKAN TERNAK) COA 201800243,235\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND181104, ND181108, ND181109...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND181104, ND181108, ND181109...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISOLONE BP2010/USP40 (BHN BAKU OBAT) COA NPL181109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISOLONE BP2010/USP40 (BHN BAKU OBAT) COA NPL181109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NOREPINEPHRINE BITARTRATE (BHN BAKU OBAT) COA 460104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29379010\", \"uraian\": \"NOREPINEPHRINE BITARTRATE (BHN BAKU OBAT) COA 460104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA KJI\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA KJI\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 182281\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 182281\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 181755\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 181755\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SWERTANIN- P (BHN BAKU KOSMETIK) COA 181625\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SWERTANIN- P (BHN BAKU KOSMETIK) COA 181625\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NATURAL SOURCE MIXED TOCOPHEROLS (BHN BAKU KOSMETIK) COA 181012M001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"NATURAL SOURCE MIXED TOCOPHEROLS (BHN BAKU KOSMETIK) COA 181012M001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OMEPRAZOLE PELLETS 8,5 PCT (BHN BAKU OBAT) COA OP0218C051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"OMEPRAZOLE PELLETS 8,5 PCT (BHN BAKU OBAT) COA OP0218C051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OMEPRAZOLE PELLETS 8,5 PCT (BHN BAKU OBAT) COA OP0218C052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"OMEPRAZOLE PELLETS 8,5 PCT (BHN BAKU OBAT) COA OP0218C052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYLPOL 980 (20KG) BAHAN BAKU KOSMETIK, COA 11518073 S/D 76\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39069099\", \"uraian\": \"ACRYLPOL 980 (20KG) BAHAN BAKU KOSMETIK, COA 11518073 S/D 76\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECOSLIM TM (BHN BAKU KOSMETIK) COA 1811601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ECOSLIM TM (BHN BAKU KOSMETIK) COA 1811601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829016600J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"B-WHITE (BHN BAKU KOSMETIK) COA 829016600J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830016739J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL (BHN BAKU KOSMETIK) COA 830016739J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL (BHN BAKU KOSMETIK), COA 830016847J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL (BHN BAKU KOSMETIK), COA 830016847J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785016391J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785016391J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785016677J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785016677J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HELIOGEL TM (BHN BAKU KOSMETIK) COA 18207013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HELIOGEL TM (BHN BAKU KOSMETIK) COA 18207013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MINIPORYL (BHN BAKU KOSMETIK) COA 832016464J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MINIPORYL (BHN BAKU KOSMETIK) COA 832016464J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016605J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016605J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016716J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016716J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILIGEL TM (BHN BAKU KOSMETIK) COA 1820409\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILIGEL TM (BHN BAKU KOSMETIK) COA 1820409\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784026310J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784026310J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT-11 (BHN BAKU KOSMETIK), COA 784026462J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"TYROSTAT-11 (BHN BAKU KOSMETIK), COA 784026462J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785016677J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785016677J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AC019KC PHYTOVITYL C 5KG (BHN BAKU KOSMETIK) COA 0029885\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AC019KC PHYTOVITYL C 5KG (BHN BAKU KOSMETIK) COA 0029885\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRAYPHOS DKP FG (BHN BAKU KOSMETIK) COA 1833031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PRAYPHOS DKP FG (BHN BAKU KOSMETIK) COA 1833031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHOSPHATE MONOPOTASSIQUE (BHN BAKU KOSMETIK) COA 1833031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PHOSPHATE MONOPOTASSIQUE (BHN BAKU KOSMETIK) COA 1833031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURE GREEN B&W PIT (BHN BAKU KOSMETIK) COA 10300044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PURE GREEN B&W PIT (BHN BAKU KOSMETIK) COA 10300044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEEP IMPACT FACE (BHN BAKU KOSMETIK) COA 10300037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"DEEP IMPACT FACE (BHN BAKU KOSMETIK) COA 10300037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) , COA 812200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6028 (16KG) (BHN BAKU KOSMETIK) , COA 812200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-96A-6CS (16KG) BHN BAKU KOSMETIK, COA 812001,812002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-96A-6CS (16KG) BHN BAKU KOSMETIK, COA 812001,812002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COATED ASCORBIC ACID, TYPE EC ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01810913\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"COATED ASCORBIC ACID, TYPE EC ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01810913\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT18040034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT18040034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18090041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18090041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18090031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18090031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GENIVIDA (TM) TG, 1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT17080005,6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"GENIVIDA (TM) TG, 1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT17080005,6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ80407003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ80407003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA.MLAH1081118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29341000\", \"uraian\": \"MELOXICAM BP (BHN BAKU OBAT) COA.MLAH1081118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANSOPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA LP0218C035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"LANSOPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA LP0218C035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANACOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPLEMEN KESEHATAN) COA. 1806833337\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANACOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPLEMEN KESEHATAN) COA. 1806833337\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1802823436\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1802823436\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00718222\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00718222\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NECTAR DE MATCHA FEMA P114 6 BHN BAKU KOSMETIK COA 0000023629\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"NECTAR DE MATCHA FEMA P114 6 BHN BAKU KOSMETIK COA 0000023629\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7314928\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7314928\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP-A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8155510\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP-A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8155510\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8159661\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8159661\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8247729\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8247729\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8247729\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8247729\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8235876\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8235876\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 8141516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 8141516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8162741\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8162741\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 8219521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 8219521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8155510\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8155510\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY 3ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7314928\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL H ANTIS POLY 3ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7314928\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG L &P 80 500G (M. UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141691,823951\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG L &P 80 500G (M. UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141691,823951\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8309581\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8309581\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8239511\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8239511\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8162741\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8162741\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8211630\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8211630\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8162741\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8162741\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7314928\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7314928\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8155510\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8155510\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GOLGIPLUG PROTEIN TRNSP INHB 1ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8114699\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"GOLGIPLUG PROTEIN TRNSP INHB 1ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8114699\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P8V29QA000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL TX (BHN BAKU KOSMETIK) COA P8V29QA000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218100200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218100200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01809086\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01809086\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01809086\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01809086\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM ( BHN BAKU KOSMETIK) COA 0518100300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM ( BHN BAKU KOSMETIK) COA 0518100300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIK DRUM (BHN BAKU KOSMETIK) COA 0518100300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200KG PLASTIK DRUM (BHN BAKU KOSMETIK) COA 0518100300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518100300,324\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518100300,324\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01806627\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01806627\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318101565,567\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318101565,567\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318101567,1568,1585,1586\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318101567,1568,1585,1586\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318101586,101605,11832,33\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318101586,101605,11832,33\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0218090158,203\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0218090158,203\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180063,65,67 S/D 73\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180063,65,67 S/D 73\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.PCT WS (BHN BAKU SUPLEMEN) COA UT18080022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.PCT WS (BHN BAKU SUPLEMEN) COA UT18080022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT18070048\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT18070048\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18080029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18080029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB00618931\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB00618931\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT18070021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT18070021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01805040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01805040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT18070024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT18070024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT18050023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT18050023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1806002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1806002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN), COA WB00418105\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN), COA WB00418105\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20170401\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20170401\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418105\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418105\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18060018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18060018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91811269\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91811269\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW91811293\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 C (BHN BAKU MAKANAN) COA XW91811293\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 - C3 (BHN BAKU MAKANAN) COA XW91811294\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 - C3 (BHN BAKU MAKANAN) COA XW91811294\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91811257\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91811257\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT18080822\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT18080822\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18070207\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18070207\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU MAKANAN) COA UT18070024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU MAKANAN) COA UT18070024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 1PCT CWS/M (BHN BAKU MAKANAN) COA UT18050021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 1PCT CWS/M (BHN BAKU MAKANAN) COA UT18050021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01805040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01805040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT18070024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT18070024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT18050023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT18050023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL ( BHN BAKU MAKANAN) COA UT18070048\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL ( BHN BAKU MAKANAN) COA UT18070048\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILDENAFIL CITRATE USP (BHN BAKU OBAT) COA SLC 314 12 18\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"SILDENAFIL CITRATE USP (BHN BAKU OBAT) COA SLC 314 12 18\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1802844514\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1802844514\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC 011-8-801, 012-8-801, 004-8-801, 011-8-801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 200 (BHN BAKU OBAT) COA. LC 011-8-801, 012-8-801, 004-8-801, 011-8-801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #5/TARTRASINE AL 36PCT-39PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP804545,..\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #5/TARTRASINE AL 36PCT-39PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP804545,..\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP798863.1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"ERYTHROSINE AL 38PCT-42PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP798863.1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C BLUE #1/BRILLIANT BLUE ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP795612\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C BLUE #1/BRILLIANT BLUE ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP795612\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP796877\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP796877\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP797602\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP797602\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C BLUE #2/INDIGO CARMINE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP803613\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C BLUE #2/INDIGO CARMINE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP803613\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOCUSATE SODIUM (BHN BAKU OBAT), COA SD8042416\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"DOCUSATE SODIUM (BHN BAKU OBAT), COA SD8042416\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101854818\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101854818\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETORICOXIB (BHN BAKU OBAT) COA.ERB/1812004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"ETORICOXIB (BHN BAKU OBAT) COA.ERB/1812004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM CHLORIDE HEXAHYDRATE CRYST (BHN BAKU KOSMETIK), COA A1239632\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28273100\", \"uraian\": \"MAGNESIUM CHLORIDE HEXAHYDRATE CRYST (BHN BAKU KOSMETIK), COA A1239632\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-181206-GS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-181206-GS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH181110-ENBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH181110-ENBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID PPL-600 (BHN BAKU OBAT) COA.577200-2180223/001-002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232010\", \"uraian\": \"LIPOID PPL-600 (BHN BAKU OBAT) COA.577200-2180223/001-002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLAISANCE P116808 (BHN BAKU KOSMETIK) COA 0000017026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"PLAISANCE P116808 (BHN BAKU KOSMETIK) COA 0000017026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA.0000013173\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA.0000013173\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU OBAT UTK PAKAN TERNAK) COA 201800243,235\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"AL HYD WET GEL VAC 20 (BHN BAKU OBAT UTK PAKAN TERNAK) COA 201800243,235\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NECTAR DE MATCHA FEMA P114 6 BHN BAKU KOSMETIK COA 0000023629\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"NECTAR DE MATCHA FEMA P114 6 BHN BAKU KOSMETIK COA 0000023629\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA MTP33218\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA MTP33218\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8274532\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8274532\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL UNIVERSAL VIRAL TRANSPORT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 181214500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL UNIVERSAL VIRAL TRANSPORT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 181214500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8193816\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8193816\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRUCELLA AGAR BBL AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8011671\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRUCELLA AGAR BBL AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8011671\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RHAMNOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8332926.\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RHAMNOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8332926.\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01A317M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01A317M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7324991\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7324991\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8129691\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8129691\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 8312962\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 8312962\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8179827\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8179827\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8215542\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8215542\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8046747\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8046747\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8289953\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8289953\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8162545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8162545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6066834\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6066834\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7349871\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7349871\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8141537\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8141537\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8256652\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8256652\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8227776\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8227776\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8282931\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8282931\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255613\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255613\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8306679\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8306679\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8215542\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8215542\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233944\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233944\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8227510\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8227510\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183888\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183888\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206562\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206562\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8227609\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8227609\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BEEF EXTRACT POWDER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233778\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BEEF EXTRACT POWDER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233778\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BEEF EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7296821\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BEEF EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7296821\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8177885\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MALT EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8177885\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8222649\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8222649\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8306679\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8306679\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01A292M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01A292M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8318951\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8318951\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8218523,8232685,8240967\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8218523,8232685,8240967\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255977\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255977\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D-MANNOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7135976\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D-MANNOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7135976\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RHAMNOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8332926\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RHAMNOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8332926\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8156600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8156600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 81715177\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EC MEDIUM 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 81715177\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141537\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141537\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8170726\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8170726\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PROTEOSE PEPTONE NO 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8232795\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PROTEOSE PEPTONE NO 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8232795\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POLYSORBATE 80 100 1 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8262934\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POLYSORBATE 80 100 1 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8262934\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8260559\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8260559\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8228997\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8228997\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8302980\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8302980\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8141903\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8141903\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8150647\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8150647\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 BHN BAKU OBAT, COA 121809280\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 BHN BAKU OBAT, COA 121809280\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 121809210\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054300\", \"uraian\": \"MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 121809210\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF,1KG ALUF (BHN BAKU SUPLEMEN) COA UE01806039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO (R) LUTEIN 20PCT SAF,1KG ALUF (BHN BAKU SUPLEMEN) COA UE01806039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18090041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18090041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU SUPLEMEN) COA UT18090021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU SUPLEMEN) COA UT18090021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU SUPLEMEN) COA UT18090021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU SUPLEMEN) COA UT18090021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00218196\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00218196\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 (TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT18040034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 (TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT18040034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18090031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18090031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB01017666\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB01017666\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18090041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18090041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTISHARP NAT ZEA 5PCT CWS/S-TG, 10KG BAG (BHN BAKU SUPLEMEN) COA EW18095010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"OPTISHARP NAT ZEA 5PCT CWS/S-TG, 10KG BAG (BHN BAKU SUPLEMEN) COA EW18095010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLOWLAC (R) 100 (BHN BAKU OBAT) COA. L101504318\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"FLOWLAC (R) 100 (BHN BAKU OBAT) COA. L101504318\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103863418\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103863418\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L1043114618\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L1043114618\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO180601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO180601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-181009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-181009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) COA EG543-181008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) COA EG543-181008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPASPRAY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT682899\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPASPRAY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT682899\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT682900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT682900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT LYOPHIZED (BHN BAKU OBAT) COA NY2877\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT LYOPHIZED (BHN BAKU OBAT) COA NY2877\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-2651218,S-2771218\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334910\", \"uraian\": \"DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-2651218,S-2771218\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LUBRIPHARM (R) SSF NF/EP/JP SODIUM STEARYL FUMARATE(BHN BAKU OBAT) COA 121809641\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"LUBRIPHARM (R) SSF NF/EP/JP SODIUM STEARYL FUMARATE(BHN BAKU OBAT) COA 121809641\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LUBRIPHARM (R) SSF/NF/EP/JP SODIUM STEARYL FUMARATE (BHN BAKU OBAT) COA L121809287\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"LUBRIPHARM (R) SSF/NF/EP/JP SODIUM STEARYL FUMARATE (BHN BAKU OBAT) COA L121809287\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC 037-18-801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 200 (BHN BAKU OBAT) COA. LC 037-18-801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY EZ CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY EZ CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CARBAZOCHROME SODIUM SULFONATE (ORAL GRADE) BHN BAKU OBAT,COA AC81005/81121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"CARBAZOCHROME SODIUM SULFONATE (ORAL GRADE) BHN BAKU OBAT,COA AC81005/81121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GUAIFENESIN USP (BHN BAKU OBAT) COA GGE-1812442,GGE-1812461\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29094900\", \"uraian\": \"GUAIFENESIN USP (BHN BAKU OBAT) COA GGE-1812442,GGE-1812461\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA648782\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA648782\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9 USP (BHN BAKU OBAT) COA.1018802027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"BARCROFT TM AL HYD GEL VISCO-9 USP (BHN BAKU OBAT) COA.1018802027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHNN BAKU OBAT) COA 101823008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHNN BAKU OBAT) COA 101823008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA.LDC41018T\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101990\", \"uraian\": \"SAVONOL 16 (BAHAN BAKU KOSMETIK), COA.LDC41018T\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANOLINE ANHYDROUS (BHN BAKU KOSMETIK) COA 4552,4553,4554\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LANOLINE ANHYDROUS (BHN BAKU KOSMETIK) COA 4552,4553,4554\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA KLH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) COA KLH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA KLJ\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA KLJ\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA KHN\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROTESIL LH (BHN BAKU KOSMETIK) COA KHN\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPIRAMYCIN (BHN BAKU OBAT) COA SP181405\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"SPIRAMYCIN (BHN BAKU OBAT) COA SP181405\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EPERISONE HYDROCHLORIDE SYN-TECH (BHN BAKU OBAT) COA.E10-18043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"EPERISONE HYDROCHLORIDE SYN-TECH (BHN BAKU OBAT) COA.E10-18043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSUVASTATIN CALCIUM (BHN BAKU OBAT) COA RVM2811218\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"ROSUVASTATIN CALCIUM (BHN BAKU OBAT) COA RVM2811218\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01806627\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01806627\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318121895, 896\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318121895, 896\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES1806072\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"ALLANTOIN (BHN BAKU KOSMETIK) COA ES1806072\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL ,10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0021803\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL ,10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0021803\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18080237\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18080237\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC ,20KG BAL (BHN BAKU KOSMETIK) COA OP81802001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC ,20KG BAL (BHN BAKU KOSMETIK) COA OP81802001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000178370\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000178370\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318121896,897\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318121896,897\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001503757\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SLX (BHN BAKU KOSMETIK) COA 0001503757\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT18050045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT18050045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11805017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11805017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT18040172\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT18040172\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEVOFLOXACIN HEMIHYDRATE USP (BHN BAKU OBAT) COA LF18120113\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"LEVOFLOXACIN HEMIHYDRATE USP (BHN BAKU OBAT) COA LF18120113\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEOSTIGMINE METHYLSULPHATE (BHN BAKU OBAT), COA DNMS0218003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"NEOSTIGMINE METHYLSULPHATE (BHN BAKU OBAT), COA DNMS0218003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for E.C.O TRACE ZN 25PCT (BHN BAKU UTK PAKAN TERNAK) COA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"E.C.O TRACE ZN 25PCT (BHN BAKU UTK PAKAN TERNAK) COA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for E.C.O.TRACE MN 20PCT(BHN BAKU OBAT UTK PAKAN TERNAK) COA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"E.C.O.TRACE MN 20PCT(BHN BAKU OBAT UTK PAKAN TERNAK) COA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for E.C.O TRACE FE 20PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"E.C.O TRACE FE 20PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM (BHN BAKU OBAT) COA 18111716,724,731,734\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331900\", \"uraian\": \"METAMIZOLE SODIUM (BHN BAKU OBAT) COA 18111716,724,731,734\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA. 20181230\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17023010\", \"uraian\": \"DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA. 20181230\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 189135\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 189135\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEUCOCYANIDINS PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 18333\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LEUCOCYANIDINS PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 18333\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C BLUE #1/BRILLIANT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP803378\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C BLUE #1/BRILLIANT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP803378\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP797599\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP797599\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL 36PCT-39PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP804548\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #5/TARTRAZINE AL 36PCT-39PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP804548\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP805755\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP805755\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612084\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612084\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610808\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610808\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612075\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612075\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612086\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612086\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612073\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612073\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612072\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612072\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612083\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612083\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH512078\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH512078\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612079\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612079\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612081\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612081\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612071\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612071\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612071\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612071\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612071\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612071\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612070\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612070\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612070\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612070\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612077\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612077\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612080\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612080\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612080\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612080\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612080\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612080\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612080\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612080\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612080\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612080\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612089\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612089\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612076\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612076\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612088\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612088\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612087\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612087\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612074\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612074\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612085\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612085\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 121809477\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28365010\", \"uraian\": \"VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 121809477\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND181204\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND181204\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISONE USP40 (BHN BAKU OBAT) COA NPD181009, NPD181209\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISONE USP40 (BHN BAKU OBAT) COA NPD181009, NPD181209\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TEFOSE 63 BF (BHN BAKU OBAT) COA 172486\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TEFOSE 63 BF (BHN BAKU OBAT) COA 172486\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRANSCUTOL P (BAHAN BAKU OBAT) COA 172226\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TRANSCUTOL P (BAHAN BAKU OBAT) COA 172226\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU KOSMETIK) COA.01/18GAAK\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT KIWI (BAHAN BAKU KOSMETIK) COA.01/18GAAK\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU KOSMETIK) COA.01/18GAAK, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT KIWI (BAHAN BAKU KOSMETIK) COA.01/18GAAK, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BAHAN BAKU OBAT) COA 168645\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"VEGETOL GRAPEFRUIT GR403 HYDRO (BAHAN BAKU OBAT) COA 168645\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SKINB VITALLGHLIDO 1MLD16 , COA 16503-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE SKINB VITALLGHLIDO 1MLD16 , COA 16503-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE LIDOCAINE 1 ML D16 ,COA 16199-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE LIDOCAINE 1 ML D16 ,COA 16199-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML , COA 16445-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE LYFT LIDOCAINE 1ML , COA 16445-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE REFYNE 1ML , COA 16326-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE REFYNE 1ML , COA 16326-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE DEFYNE 1ML, COA 16283-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE DEFYNE 1ML, COA 16283-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE DEFYNE 1 ML ,COA 16572-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE DEFYNE 1 ML ,COA 16572-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE KYSSE 1 ML , COA 16207-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"RESTYLANE KYSSE 1 ML , COA 16207-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 180807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 180807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 182567\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 182567\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANDARIN CLEAR (BHN BAKU KOSMETIK) COA 182564\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"MANDARIN CLEAR (BHN BAKU KOSMETIK) COA 182564\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 181522\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"IZAYOI (BHN BAKU KOSMETIK) COA 181522\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612422\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612422\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612126\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612126\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN2451118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN2451118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612838\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612838\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE(BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE(BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612569\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612569\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612570\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612570\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612605\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612605\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612564\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612564\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612563\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612563\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612479\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612479\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612390\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612390\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612565\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612565\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612566\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612566\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612577\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612577\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GENTAMYCIN SULPHATE (BHN BAKU OBAT) COA 181121011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"GENTAMYCIN SULPHATE (BHN BAKU OBAT) COA 181121011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETAMETHASONE DIPROPIONATE (BHN BAKU OBAT) COA X39-181002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"BETAMETHASONE DIPROPIONATE (BHN BAKU OBAT) COA X39-181002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LINCOMYCIN HCL EP (BHN BAKU OBAT) COA 1812010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"LINCOMYCIN HCL EP (BHN BAKU OBAT) COA 1812010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CONFECTIONERY INK CI205002 BLUE(B.BAKU OBAT UTK PEWARNA TABLET)COA TKL47272,SAMPLE NO COMM VALU\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"CONFECTIONERY INK CI205002 BLUE(B.BAKU OBAT UTK PEWARNA TABLET)COA TKL47272,SAMPLE NO COMM VALU\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRANOL ULTRA C32 200KG PLASCTIC DRUM (BHN BAKU KOSMETIK) COA BP808500R\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34029099\", \"uraian\": \"MIRANOL ULTRA C32 200KG PLASCTIC DRUM (BHN BAKU KOSMETIK) COA BP808500R\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-PANTHENOL 50L, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01811652\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL-PANTHENOL 50L, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01811652\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01809812\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01809812\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-PANTHENOL 50L, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01811652\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL-PANTHENOL 50L, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01811652\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL ,1000KG IBC (BHN BAKU KOSMETIK) COA TL01809812\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL ,1000KG IBC (BHN BAKU KOSMETIK) COA TL01809812\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01811259,274\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01811259,274\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FRAMYCETINE SULFATE (BHN BAKU OBAT) COA F1700008/01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"FRAMYCETINE SULFATE (BHN BAKU OBAT) COA F1700008/01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P8V25QA000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL TX (BHN BAKU KOSMETIK) COA P8V25QA000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01807002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE01807002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ80313067\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ80313067\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT18080818\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT18080818\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11805017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11805017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)(BHN BAKU KOSMETIK) COA UT18040172\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO)(BHN BAKU KOSMETIK) COA UT18040172\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18090273\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18090273\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC, 20KG BAL (BHN BAKU KOSMETIK) COA OP81710024,OP81802001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC, 20KG BAL (BHN BAKU KOSMETIK) COA OP81710024,OP81802001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000179090\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000179090\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS ,25KG PC (BHN BAKU KOSMETIK) COA 0718030056,0718050071\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHS ,25KG PC (BHN BAKU KOSMETIK) COA 0718030056,0718050071\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50, 5KG BAG ALU (BHN BAKU KOSMETIK) COA CS18060018,19\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50, 5KG BAG ALU (BHN BAKU KOSMETIK) COA CS18060018,19\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY C (R) 50, 5KG BAG ALU (BHN BAKU KOSMETIK) COA CS18060019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY C (R) 50, 5KG BAG ALU (BHN BAKU KOSMETIK) COA CS18060019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-PANTHENOL 50L ,20KG PAIL PE (BHN BAKU KOSMETIK), COA TL01806627,7634\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL-PANTHENOL 50L ,20KG PAIL PE (BHN BAKU KOSMETIK), COA TL01806627,7634\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 BHN BAKU OBAT, COA 121809229\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 BHN BAKU OBAT, COA 121809229\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 121809281\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 121809281\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 121809229,9250\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 121809229,9250\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTISHINE WASH 1 (BHN BAKU KOSMETIK) COA 10300119\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ANTISHINE WASH 1 (BHN BAKU KOSMETIK) COA 10300119\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEEP IMPACT FACE (BHN BAKU KOSMETIK) COA 10300077\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"DEEP IMPACT FACE (BHN BAKU KOSMETIK) COA 10300077\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK,COA 01/18GL4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK,COA 01/18GL4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK, COA 01/18LG4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK, COA 01/18LG4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 168645\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 168645\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 121809477\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28365010\", \"uraian\": \"VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 121809477\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP 5300 (BHN BAKU OBAT) COA 101869007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MAGNESIUM HYDROXIDE USP 5300 (BHN BAKU OBAT) COA 101869007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000017018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000017018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA.0000017019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA.0000017019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK)COA HMVBD-101228\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK)COA HMVBD-101228\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA MCP-N-060598\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA MCP-N-060598\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LINEN OILY EXTRACT (BHN BAKU KOSMETIK)COA LIU181106-H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LINEN OILY EXTRACT (BHN BAKU KOSMETIK)COA LIU181106-H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS181002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS181002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRAPE SEED ORGANIC OIL (BHN BAKU KOSMETIK)COA RPH181202-ENBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GRAPE SEED ORGANIC OIL (BHN BAKU KOSMETIK)COA RPH181202-ENBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK)COA CFM180901-PGH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK)COA CFM180901-PGH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LICORICE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA GLG171001-BGBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LICORICE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA GLG171001-BGBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) COA OLVH190101-ENBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) COA OLVH190101-ENBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LOTUS OILY EXTRACT GT10 (BHN BAKU KOSMETIK) COA NEN180907-H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LOTUS OILY EXTRACT GT10 (BHN BAKU KOSMETIK) COA NEN180907-H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA VIV180701-BGBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA VIV180701-BGBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO180903\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO180903\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO18190101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO18190101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTELENE COMPLEX EGX773 (BHN BAKU KOSMETIK) COA PX773-190101-GS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTELENE COMPLEX EGX773 (BHN BAKU KOSMETIK) COA PX773-190101-GS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CORTISONE ACETATE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1800951018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"CORTISONE ACETATE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1800951018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRANOL C2M CONC NP 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP901004R\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34029099\", \"uraian\": \"MIRANOL C2M CONC NP 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP901004R\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA R703600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA R703600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA R703600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA R703600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK)COA GTB-033088\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK)COA GTB-033088\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SNAIL SECREATION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-041098\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SNAIL SECREATION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-041098\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-022208\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-022208\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) COA MSEEC-050918\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) COA MSEEC-050918\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-041128\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-041128\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SNAIL SECREATION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-041098\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SNAIL SECREATION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-041098\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-101228\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-101228\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRANOL C2M CONC NP 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA HG28235\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34029099\", \"uraian\": \"MIRANOL C2M CONC NP 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA HG28235\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIQUORICE LC (BHN BAKU KOSMETIK) COA.112431/P89456-P89459\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021920\", \"uraian\": \"LIQUORICE LC (BHN BAKU KOSMETIK) COA.112431/P89456-P89459\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIUSID AQUA ORAL SOLUTION (PAKAN IKAN BERBENTUK CAIR) COA R-8/10-21\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"VIUSID AQUA ORAL SOLUTION (PAKAN IKAN BERBENTUK CAIR) COA R-8/10-21\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ONDASENTRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA 18OS002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"ONDASENTRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA 18OS002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THEOPHYLLINE ANHYDROUS (B. BAKU OBAT) COA 18292 S/D 301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29395900\", \"uraian\": \"THEOPHYLLINE ANHYDROUS (B. BAKU OBAT) COA 18292 S/D 301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET), COA WP807999\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET), COA WP807999\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE USP (NICOTINAMIDE) (BHN BAKU KOSMETIK) COA 015012019/A, 016012019/A...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE USP (NICOTINAMIDE) (BHN BAKU KOSMETIK) COA 015012019/A, 016012019/A...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 281018, 141118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25070000\", \"uraian\": \"KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 281018, 141118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NYSTATIN (BHN BAKU OBAT) COA.C114229, 30\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NYSTATIN (BHN BAKU OBAT) COA.C114229, 30\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NYSTATIN MICRONIZED (BHN BAKU OBAT) COA C130995\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NYSTATIN MICRONIZED (BHN BAKU OBAT) COA C130995\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00718225\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00718225\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00718225\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00718225\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 CN 200KG FA (BHN BAKU KOSMETIK) COA 1521722,1522260\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 CN 200KG FA (BHN BAKU KOSMETIK) COA 1521722,1522260\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 120 CN 10KG KA (BHN BAKU KOSMETIK) COA 1521517\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 120 CN 10KG KA (BHN BAKU KOSMETIK) COA 1521517\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 900 CN 10KG KA (BHN BAKU KOSMETIK) COA 1522345\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 900 CN 10KG KA (BHN BAKU KOSMETIK) COA 1522345\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 CN 10KG KA (BHN BAKU KOSMETIK) COA 1516344,1518342,1521364\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 CN 10KG KA (BHN BAKU KOSMETIK) COA 1516344,1518342,1521364\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIDIN DO CN 10KG CA (BHN BAKU KOSMETIK) COA 1518078\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIDIN DO CN 10KG CA (BHN BAKU KOSMETIK) COA 1518078\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 100 10 KG KA (BHN BAKU KOSMETIK) COA 1521530\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 100 10 KG KA (BHN BAKU KOSMETIK) COA 1521530\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 340 CN 10KG KA (BHN BAKU KOSMETIK) COA 1519442, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 340 CN 10KG KA (BHN BAKU KOSMETIK) COA 1519442, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 700 SAMPLE(S) 100 ML FL (BHN BAKU KOSMETIK) COA 1515358 ,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 700 SAMPLE(S) 100 ML FL (BHN BAKU KOSMETIK) COA 1515358 ,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 702 SAMPLE(S) 100ML FL (BHN BAKU KOSMETIK) COA 1522849, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 702 SAMPLE(S) 100ML FL (BHN BAKU KOSMETIK) COA 1522849, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 703 100ML FL (BHN BAKU KOSMETIK) COA 1515816,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 703 100ML FL (BHN BAKU KOSMETIK) COA 1515816,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 712 SAMPLE 100 ML FL (BHN BAKU KOSMETIK) COA 1518619 SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 712 SAMPLE 100 ML FL (BHN BAKU KOSMETIK) COA 1518619 SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 702 SAMPLES 100 ML FL (BHN BAKU KOSMETIK) COA 1317499,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 702 SAMPLES 100 ML FL (BHN BAKU KOSMETIK) COA 1317499,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 830 100 ML FL (BHN BAKU KOSMETIK) COA 1520202 SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 830 100 ML FL (BHN BAKU KOSMETIK) COA 1520202 SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL 940 (SAMPLE) 100 ML FL (BHN BAKU KOSMETIK) COA 1333310, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL 940 (SAMPLE) 100 ML FL (BHN BAKU KOSMETIK) COA 1333310, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 940 (SAMPLE) 100ML FL (BHN BAKU KOSMETIK) COA 1333310, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 940 (SAMPLE) 100ML FL (BHN BAKU KOSMETIK) COA 1333310, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 SAMPLE(S) 100ML FL (BHN BAKU KOSMETIK) COA 1509374,... SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 SAMPLE(S) 100ML FL (BHN BAKU KOSMETIK) COA 1509374,... SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA PA 40 (SAMPLE) 100 ML FL (BHN BAKU KOSMETIK) COA 1501346 SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA PA 40 (SAMPLE) 100 ML FL (BHN BAKU KOSMETIK) COA 1501346 SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 10 100 ML FL (BHN BAKU KOSMETIK) COA 1340277,1512096,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 10 100 ML FL (BHN BAKU KOSMETIK) COA 1340277,1512096,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00718222\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00718222\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECOSLIM TM (BHN BAKU KOSMETIK) COA 1813603\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ECOSLIM TM (BHN BAKU KOSMETIK) COA 1813603\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830016739J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL (BHN BAKU KOSMETIK) COA 830016739J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785016677J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785016677J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785016832J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785016832J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK), COA 1820301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK), COA 1820301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MATIPURE TM OIL FREE (BHN BAKU KOSMETIK) COA 1831101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MATIPURE TM OIL FREE (BHN BAKU KOSMETIK) COA 1831101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5584418\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK) COA 5584418\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELANOSTATINE 5BG (50PPM) (BHN BAKU KOSMETIK) COA 817046674J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MELANOSTATINE 5BG (50PPM) (BHN BAKU KOSMETIK) COA 817046674J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MINIPORYL (BHN BAKU KOSMETIK) COA 832016604J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MINIPORYL (BHN BAKU KOSMETIK) COA 832016604J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROGELINE (BHN BAKU KOSMETIK) COA 820056838J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROGELINE (BHN BAKU KOSMETIK) COA 820056838J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784026310J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784026310J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEFENSCALP (BHN BAKU KOSMETIK) COA 785076470J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"DEFENSCALP (BHN BAKU KOSMETIK) COA 785076470J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B WHITE (BHN BAKU KOSMETIK) COA 829016718J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"B WHITE (BHN BAKU KOSMETIK) COA 829016718J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK), COA 55417187\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ABYSSINE 657 (BHN BAKU KOSMETIK), COA 55417187\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829016884J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"B-WHITE (BHN BAKU KOSMETIK) COA 829016884J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 828016718J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"B-WHITE (BHN BAKU KOSMETIK) COA 828016718J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELANOSTATINE-5BG (50PPM) BHN BAKU KOSMETIK, COA 817046522J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MELANOSTATINE-5BG (50PPM) BHN BAKU KOSMETIK, COA 817046522J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016716J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016716J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016911J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016911J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SWT 7TM L (BHN BAKU KOSMETIK) COA 1828801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SWT 7TM L (BHN BAKU KOSMETIK) COA 1828801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784026462J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784026462J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CATCOL C 135 (L) GRADE (BAHAN BAKU KOSMETIK) COA 082/19\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CATCOL C 135 (L) GRADE (BAHAN BAKU KOSMETIK) COA 082/19\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA MTP01219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA MTP01219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) , COA 901005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) , COA 901005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6028 (16KG) BHN BAKU KOSMETIK, COA 812200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6028 (16KG) BHN BAKU KOSMETIK, COA 812200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK COA B030119\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK COA B030119\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG151218\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG151218\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0031409\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0031409\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011I34L01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011I34L01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I8G001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I8G001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB301218\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB301218\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG180119\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG180119\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA.M113154\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA.M113154\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113157\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113157\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8297692\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8297692\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8297692\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8297692\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8297692\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8297692\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8297692\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8297692\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLURESSENCE LEMON 5001BA (BHN BAKU SUPLEMEN) COA 284616\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"PLURESSENCE LEMON 5001BA (BHN BAKU SUPLEMEN) COA 284616\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/50 SODIUM BICARBONATE (BHN BAKU SUPLEMEN )COA MTP02419\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/50 SODIUM BICARBONATE (BHN BAKU SUPLEMEN )COA MTP02419\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 182069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 182069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453294475,4453391519\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453294475,4453391519\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612340\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612340\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612350\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612350\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612320\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612320\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612325\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612325\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612330\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612330\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612126\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612126\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612333\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612333\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612319\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612319\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612342\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612342\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612341\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612341\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612324\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612324\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612323\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612323\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612331\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612331\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612348\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612348\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612349\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612349\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612332\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612332\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612520\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612520\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612522\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612522\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612523\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612523\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612342\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612342\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611868\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611868\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612524\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612524\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND GREEN ( BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND GREEN ( BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 80605, 80726\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 80605, 80726\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO180302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO180302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO190102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO190102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO180302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO180302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO180903\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO180903\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VISTANOL GDHR (BHN BAKU KOSMETIK) COA WAK\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"VISTANOL GDHR (BHN BAKU KOSMETIK) COA WAK\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS S-CAQ (BHN BAKU KOSMETIK) COA KLE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS S-CAQ (BHN BAKU KOSMETIK) COA KLE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA KLJ\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA KLJ\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FEF CETRIMIDE PH EUR EP (BHN BAKU OBAT) COA JXOB984\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"FEF CETRIMIDE PH EUR EP (BHN BAKU OBAT) COA JXOB984\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU MAKANAN) COA.TS00011052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU MAKANAN) COA.TS00011052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 1,3 BUTYLENE GLYCOL, COSMETIC QUALITY(BHN BAKU KOSMETIK) COA P0618D13EC\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"1,3 BUTYLENE GLYCOL, COSMETIC QUALITY(BHN BAKU KOSMETIK) COA P0618D13EC\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II TAN (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT684063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II TAN (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT684063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT683189\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT683189\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT684061\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT684061\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CONFECTIONERY INK BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT684001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"CONFECTIONERY INK BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT684001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CONFECTIONERY INK BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT684262\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"CONFECTIONERY INK BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT684262\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURILEX TM COMPACTED, CEFALEXIN MONOHYDRATE (PURIDROX POWDER) BHN BAKU OBAT,COA.B427609\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURILEX TM COMPACTED, CEFALEXIN MONOHYDRATE (PURIDROX POWDER) BHN BAKU OBAT,COA.B427609\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURILEX TM COMPACTED, CEFALEXIN MONOHYDRATE (BHN BAKU OBAT) COA B427595,7645\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURILEX TM COMPACTED, CEFALEXIN MONOHYDRATE (BHN BAKU OBAT) COA B427595,7645\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 103093 A (BHN BAKU MAKANAN) COA XW91901193,1194\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 103093 A (BHN BAKU MAKANAN) COA XW91901193,1194\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACYCLOVIR MICRONIZED (BHN BAKU OBAT) COA 19100067\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"ACYCLOVIR MICRONIZED (BHN BAKU OBAT) COA 19100067\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RANITIDINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA RH 077 01 19, 078 01 19\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29321900\", \"uraian\": \"RANITIDINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA RH 077 01 19, 078 01 19\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RANITIDINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA RH 080 01 19, RH 081 01 19\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29321900\", \"uraian\": \"RANITIDINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA RH 080 01 19, RH 081 01 19\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA R901000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA R901000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT LYOPHIZED (BHN BAKU OBAT) COA NY3411\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT LYOPHIZED (BHN BAKU OBAT) COA NY3411\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 071818/005600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 071818/005600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 H(BHN BAKU OBAT) COA. L105715118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 H(BHN BAKU OBAT) COA. L105715118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CINNARIZINE (BHN BAKU OBAT) COA 003012019CIN\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"CINNARIZINE (BHN BAKU OBAT) COA 003012019CIN\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 18290153\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 18290153\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00718225\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00718225\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ISOFLAVONES 150 BDF (BHN BAKU KOSMETIK) COA 7275779\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ISOFLAVONES 150 BDF (BHN BAKU KOSMETIK) COA 7275779\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPROLIUM HCL (BHN BAKU OBAT UTK PAKAN TERNAK) COA 20190112, 113\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"AMPROLIUM HCL (BHN BAKU OBAT UTK PAKAN TERNAK) COA 20190112, 113\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INOSITOL (BHN BAKU OBAT) COA 201812062\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"INOSITOL (BHN BAKU OBAT) COA 201812062\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 1901026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"ACESULFAME K (BHN BAKU OBAT) COA 1901026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POVIDONE K-30 (BHN BAKU OBAT) COA PK30-180819F41\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"POVIDONE K-30 (BHN BAKU OBAT) COA PK30-180819F41\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1901227 S/D 1231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"MEFENAMIC ACID (BHN BAKU OBAT) COA MA1901227 S/D 1231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT18080824,825\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT18080824,825\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-PANTHENOL 50 L,1000KG IBC (BHN BAKU KOSMETIK) COA TL01812658\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL-PANTHENOL 50 L,1000KG IBC (BHN BAKU KOSMETIK) COA TL01812658\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-PANTHENOL 50L, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01812658\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL-PANTHENOL 50L, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01812658\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01811814\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01811814\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P8W27QA000, P8W28QA000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL TX (BHN BAKU KOSMETIK) COA P8W27QA000, P8W28QA000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20180701,0706\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20180701,0706\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 MIU/G (BHN BAKU MAKANAN) COA UT18090021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 MIU/G (BHN BAKU MAKANAN) COA UT18090021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT18040035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT18040035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8260559\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8260559\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8260559\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8260559\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8260559\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8260559\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8227600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8227600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8337538\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8337538\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8297702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8297702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206906\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206906\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 8241935\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 8241935\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8361674\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8361674\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 8241622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 8241622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7250997\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7250997\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141903\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141903\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8291771\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8291771\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8282931\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8282931\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8271802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8271802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8241972\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8241972\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LITMUS MILK BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8058939\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LITMUS MILK BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8058939\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8283686\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8283686\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8283698\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8283698\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8281627\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8281627\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8312890\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8312890\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8115632\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8115632\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7153977\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7153977\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7135939\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7135939\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M.ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8313588\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE M.ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8313588\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MARINE BROTH 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8282904\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MARINE BROTH 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8282904\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8032739\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8032739\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TETRATHIONATE BR BASE HAJNA 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8155901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TETRATHIONATE BR BASE HAJNA 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8155901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8274532\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8274532\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK 90MM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8284533\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT PACK 90MM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8284533\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8179827\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8179827\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8256652\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 19 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8256652\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8291800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8291800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219994\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219994\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8194606\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8194606\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8331841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8331841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8129691\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8129691\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8291589\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8291589\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206836\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206836\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8162545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8162545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8240967\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8240967\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8228997\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8228997\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8302980\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8302980\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8241614\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8241614\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255630\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255630\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8183841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8183841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CASITONE 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8289953\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CASITONE 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8289953\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233944\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DEXTROSE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233944\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7349871\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7349871\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233583\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233583\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8219987\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8219987\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255977\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255977\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8241935\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8241935\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8079881\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8079881\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206558\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206558\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8170732\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8170732\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8291715\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8291715\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8129682\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8129682\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8193816\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8193816\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8227776\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8227776\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8291939\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8291939\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8317859\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8317859\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8297842\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8297842\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255627\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255627\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STRACH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8241699\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SOLUBLE STRACH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8241699\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183873\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183873\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8282931\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8282931\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8271802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8271802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8271696\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8271696\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8234653\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8234653\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8194606\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8194606\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8129691\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8129691\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8291589\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8291589\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8206836\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8206836\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8256652\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8256652\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8162545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8162545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255630\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255630\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8281593\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8281593\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8270639\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8270639\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8302980,712\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8302980,712\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8228997\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8228997\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8293816, 965\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8293816, 965\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8289953\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8289953\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8310579\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8310579\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 82339448\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 82339448\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8066834\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8066834\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7349871\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7349871\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8233583\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8233583\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8219987\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8219987\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 8241935\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 8241935\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8255977\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8255977\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8255932\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8255932\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8079881\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8079881\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8079540\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8079540\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8206558\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8206558\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LYSINE DECATBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7324991\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LYSINE DECATBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7324991\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8170732\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8170732\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8299808\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8299808\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8291715\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8291715\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT AGAR 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7312565\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MALT AGAR 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7312565\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8129682\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8129682\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7338553\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7338553\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8227776,8271874\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8227776,8271874\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8291939\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8291939\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8291800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8291800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8317859\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8317859\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 8206906\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 8206906\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 8297842\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 8297842\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8227610\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8227610\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8255627, 8346795\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8255627, 8346795\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8241699\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8241699\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8183873\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8183873\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8282931\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8282931\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8331841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8331841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) COA 8141903\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) COA 8141903\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8271696\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8271696\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8271802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8271802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8234653\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8234653\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8291589\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8291589\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKIROORGANISME) BATCH 8228997\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKIROORGANISME) BATCH 8228997\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8337538\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8337538\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8281593\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8281593\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8026869\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8026869\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8255630\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8255630\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8305685\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8305685\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8299812\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8299812\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8219987\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8219987\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8346795\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8346795\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8183873\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8183873\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8291589\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8291589\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8141903\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8141903\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ENDO AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH 8031775\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ENDO AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH 8031775\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7254544\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7254544\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8281627\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8281627\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE UNIVERSAL PREENRICHMENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8171952\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE UNIVERSAL PREENRICHMENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8171952\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME( BATCH 8260573\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME( BATCH 8260573\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NITRATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8129685\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE NITRATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8129685\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 5 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8197524\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 5 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8197524\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7297554\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7297554\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8134767\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8134767\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE APT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8134772\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE APT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8134772\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7135939\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7135939\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST MOLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8291647\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE YEAST MOLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8291647\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SS AGAR 500G ( MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7250994\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SS AGAR 500G ( MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7250994\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7250994\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7250994\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8171598\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8171598\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-PA-C AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8206646\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE M-PA-C AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8206646\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8274532\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8274532\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FCAP V3.0 DVD ASSY WITH DONGLE (MEDIA UTK PENGEMBANGAN MIKROORGANISME)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"FCAP V3.0 DVD ASSY WITH DONGLE (MEDIA UTK PENGEMBANGAN MIKROORGANISME)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8227600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8227600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH B02B009M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH B02B009M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8227600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8227600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CATRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8306679\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CATRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8306679\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8306679\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8306679\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8299812\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8299812\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SOLUTION BACTERIOSTAT CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 18K3056904\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"SOLUTION BACTERIOSTAT CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 18K3056904\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8331841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8331841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8183841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8183841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8228997\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8228997\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTRUMENT PHOENIXSPEC (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1806\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"INSTRUMENT PHOENIXSPEC (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1806\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH B02B009M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH B02B009M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8289613\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8289613\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500 (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8227600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE AGAR BACTERIOLOGICAL 500 (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8227600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8306679\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8306679\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7297545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7297545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612773\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612773\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612949\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612949\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612524\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612524\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612952\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612952\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY SGR TRANSLUCENT (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA649861\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY SGR TRANSLUCENT (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA649861\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY SGR CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA649889\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY SGR CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA649889\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA649856\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA649856\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA649860\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA649860\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY SGR TRANSLUCENT (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA649861\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY SGR TRANSLUCENT (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA649861\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID MONOHYDRATE BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 2AX1812043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID MONOHYDRATE BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 2AX1812043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POVIDONE K-25 (BHN BAKU OBAT) COA PK25-190103F42\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"POVIDONE K-25 (BHN BAKU OBAT) COA PK25-190103F42\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEOMYCIN SULPHATE USP (BHN BAKU OBAT) COA 201901039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NEOMYCIN SULPHATE USP (BHN BAKU OBAT) COA 201901039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX TM POWDER CEFADROXILE MONOHYDRATE (BHN BAKU OBAT) COA M334610,11,12\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX TM POWDER CEFADROXILE MONOHYDRATE (BHN BAKU OBAT) COA M334610,11,12\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100 PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I79002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100 PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I79002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100 PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I5D002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100 PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I5D002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I19001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I19001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I5Q002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I5Q002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100 PREMIUM CR ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I5C002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100 PREMIUM CR ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I5C002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8316601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8316601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX (TM) VH, 5KG BAG ALU (BHN BAKU KOSMETIK) COA UF18316007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"BEAUPLEX (TM) VH, 5KG BAG ALU (BHN BAKU KOSMETIK) COA UF18316007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91812173,2174\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91812173,2174\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318121901,902\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318121901,902\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708170127,131,192\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708170127,131,192\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01809090\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01809090\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01807634\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01807634\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01804807,7810\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01804807,7810\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318121898,899\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318121898,899\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91812089,90,91\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91812089,90,91\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01809090\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01809090\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50, 5KG BAG ALU (BHN BAKU KOSMETIK) COA CS18060020 S/D 23\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50, 5KG BAG ALU (BHN BAKU KOSMETIK) COA CS18060020 S/D 23\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0218100203,20242\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0218100203,20242\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK), COA 0318121899, 900,901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK), COA 0318121899, 900,901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT18080823\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT18080823\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAROPHYLL PINK 10PCT CWS (BHN BAKU OBAT UTK PAKAN TERNAK) COA UE01805620\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"CAROPHYLL PINK 10PCT CWS (BHN BAKU OBAT UTK PAKAN TERNAK) COA UE01805620\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA. 20181230\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17023010\", \"uraian\": \"DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA. 20181230\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FASTIMMUNE CD56/CD69/CD45 50 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8311523\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"FASTIMMUNE CD56/CD69/CD45 50 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8311523\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FASTIMMUNE HUMAN IL-2 PE... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8149610\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"FASTIMMUNE HUMAN IL-2 PE... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8149610\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD79A PE HM47 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8274645\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD79A PE HM47 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8274645\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI-MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8348900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANTI-MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8348900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8268723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8268723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 FITC SK7 50 TESTS IVD (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8335832\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 FITC SK7 50 TESTS IVD (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8335832\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CS&T RUO BEADS 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8260522\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CS&T RUO BEADS 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8260522\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU LEPTIN RCPTR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 72222961\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU LEPTIN RCPTR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 72222961\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8312963\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8312963\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8222563\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8222563\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 82535459\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 82535459\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE COLUMBIA AGAR 5PCT SB 20 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8341506\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE COLUMBIA AGAR 5PCT SB 20 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8341506\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8247729\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8247729\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8162741\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8162741\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD200 APC (MRC OX-104) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8312558\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD200 APC (MRC OX-104) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8312558\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD5 FITC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8270690\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD5 FITC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8270690\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8331948\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8331948\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8295519\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8295519\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9016637\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9016637\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8204557\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8204557\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8307942\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8307942\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8267852\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8267852\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8220589, 91\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8220589, 91\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8268723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8268723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8348845\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8348845\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8222879\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8222879\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8309579\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8309579\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8162741,825558\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8162741,825558\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8162741,8255580\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8162741,8255580\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8233839\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8233839\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8054920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8054920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8054920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8054920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8232579\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8232579\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8207980\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8207980\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8232579\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8232579\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8247729,8267844\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8247729,8267844\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8309579\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8309579\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8141516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8141516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255580\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255580\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8227874,8242626.\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT EM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8227874,8242626.\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7314928\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7314928\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8155510\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8155510\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8239511\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8239511\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8159661\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS INABA 3ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8159661\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8235876\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8235876\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8331948\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8331948\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8295519\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8295519\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD4 APC SK3 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8332733\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD4 APC SK3 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8332733\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8204557,8278991\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8204557,8278991\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8307942\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8307942\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8267852\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8267852\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 82206205\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 82206205\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8353691\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8353691\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 PERCP 2D1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8150765\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD45 PERCP 2D1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8150765\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8222879\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8222879\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8309579\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8309579\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA 19011411\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA 19011411\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC 043-18-801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 200 (BHN BAKU OBAT) COA. LC 043-18-801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 1901EF3710\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"L-ARGININE LO (BHN BAKU KOSMETIK),COA 1901EF3710\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID 325, 20KG BOAIPO (BAHAN BAKU SUPLEMEN) COA HPD1901070,76,82,90,97,99,107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID 325, 20KG BOAIPO (BAHAN BAKU SUPLEMEN) COA HPD1901070,76,82,90,97,99,107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID DC97PCT, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG1811003,4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID DC97PCT, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG1811003,4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE /PURIMOX COMPACTED GRADE A(BHN BAKU OBAT) COA M530635 S/D 658, 634\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE /PURIMOX COMPACTED GRADE A(BHN BAKU OBAT) COA M530635 S/D 658, 634\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 H(BHN BAKU OBAT) COA. L101855218\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 H(BHN BAKU OBAT) COA. L101855218\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOCUSATE SODIUM BP (BHN BAKU OBAT) COA DSW9002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"DOCUSATE SODIUM BP (BHN BAKU OBAT) COA DSW9002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 1907660483\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29322090\", \"uraian\": \"SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 1907660483\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEUCOCYANIDINS PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 18333\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LEUCOCYANIDINS PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 18333\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA.LDC44218T\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101990\", \"uraian\": \"SAVONOL 16 (BAHAN BAKU KOSMETIK), COA.LDC44218T\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTEIN TRANSPORT INHIBITOR SOLN 0.7ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8033974-B\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PROTEIN TRANSPORT INHIBITOR SOLN 0.7ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8033974-B\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK)COA MUP-030728\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK)COA MUP-030728\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-030728\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-030728\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK)COA BAG-011388\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK)COA BAG-011388\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) COA MSEEC-050918\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) COA MSEEC-050918\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-020719\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-020719\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SB VITALLGHLIDO LIDOCAINE 1ML , COA 16419-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE SB VITALLGHLIDO LIDOCAINE 1ML , COA 16419-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SB VITAL LIGHT LIDOCAINE 1 ML ,COA 16503-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE SB VITAL LIGHT LIDOCAINE 1 ML ,COA 16503-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE LIDOCAINE 1ML , COA 16374-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE LIDOCAINE 1ML , COA 16374-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML , COA 16545-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE LYFT LIDOCAINE 1ML , COA 16545-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE REFYNE 1ML, COA 16326-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE REFYNE 1ML, COA 16326-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE DEFYNE 1 ML ,COA 16572-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE DEFYNE 1 ML ,COA 16572-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE KYSSE 1 ML , COA 16207-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE KYSSE 1 ML , COA 16207-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 141118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25070000\", \"uraian\": \"KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 141118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5588618\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK) COA 5588618\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCITRIOL (BHN BAKU OBAT) COA F074-856R053-1, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"CALCITRIOL (BHN BAKU OBAT) COA F074-856R053-1, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I5R002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I5R002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100 PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I6F021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100 PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I6F021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB01017666\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB01017666\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18100055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18100055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF,1KG ALUF (BHN BAKU SUPLEMEN) COA UE01811060\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO (R) LUTEIN 20PCT SAF,1KG ALUF (BHN BAKU SUPLEMEN) COA UE01811060\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18090031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18090031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT18040036\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT18040036\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GENIVIDA (TM) TG ,1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT17080006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"GENIVIDA (TM) TG ,1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT17080006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18100055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18100055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COATED ASCORBIC ACID TYPE EC,25KG BOX (BHN BAKU SUPLEMEN) COA TL01812503\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"COATED ASCORBIC ACID TYPE EC,25KG BOX (BHN BAKU SUPLEMEN) COA TL01812503\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT18110039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT18110039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18100055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18100055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A +D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18100042\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A +D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18100042\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT18040036\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT18040036\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GENIVIDA (TM) TG,1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT17080006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"GENIVIDA (TM) TG,1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT17080006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DPG FG (BHN BAKU KOSMETIK) COA C02201DG\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29094900\", \"uraian\": \"DPG FG (BHN BAKU KOSMETIK) COA C02201DG\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PG USP (BHN BAKU KOSMETIK) COA C02201UG\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"PG USP (BHN BAKU KOSMETIK) COA C02201UG\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01806052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01806052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18080219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18080219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1807003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1807003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1808118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1808118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20170401\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20170401\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX ALU (BHN BAKU MAKANAN) COA TL01807116\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX ALU (BHN BAKU MAKANAN) COA TL01807116\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ80503144\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ80503144\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ81209022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ81209022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ81209022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ81209022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01810781\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01810781\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID ,25KG BOX /ALU (BHN BAKU MAKANAN) COA TL01807116\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID ,25KG BOX /ALU (BHN BAKU MAKANAN) COA TL01807116\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID,25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01807110,7116\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID,25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01807110,7116\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT18090057\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT18090057\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT18090314,315\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT18090314,315\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT18090083\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT18090083\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT18080827\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT18080827\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT18080827\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT18080827\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT18080024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT18080024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT18090057\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT18090057\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1808009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1808009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT18090057\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT18090057\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1808009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1808009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01807116\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01807116\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT18090057\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT18090057\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01808076\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01808076\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI17100012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI17100012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100CWS (BHN BAKU SUPLEMEN) COA UT17120037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100CWS (BHN BAKU SUPLEMEN) COA UT17120037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18090045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18090045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18090057\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18090057\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070C (BHN BAKU MAKANAN) COA XW91812154\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070C (BHN BAKU MAKANAN) COA XW91812154\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE01809013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"RONOXAN A (BHN BAKU MAKANAN) COA UE01809013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UE01810305,306\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UE01810305,306\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB01118970\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB01118970\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18080017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18080017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18070244\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18070244\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT18070024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT18070024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01806052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01806052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18080219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18080219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT18070024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT18070024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1807003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1807003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ81209022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ81209022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18080017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18080017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT18090083\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT18090083\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN), COA UT18070244\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN), COA UT18070244\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1808118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1808118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01807116\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01807116\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01810781\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01810781\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ80703172\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ80703172\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT18040136\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT18040136\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18080219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18080219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ81110224\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ81110224\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT18090083\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT18090083\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18080016,17\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18080016,17\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01805043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01805043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D PANTOTHENATE ,25KG BOX (BHN BAKU MAKANAN) COA TL01804678\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D PANTOTHENATE ,25KG BOX (BHN BAKU MAKANAN) COA TL01804678\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1807003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1807003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ80503136\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ80503136\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT18040136\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT18040136\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COAUT18100299\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COAUT18100299\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT18090083,84\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT18090083,84\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ80703172\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ80703172\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01805040,5041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01805040,5041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU MAKANAN) COA TL01804678\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU MAKANAN) COA TL01804678\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1807003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1807003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ80413101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ80413101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 204005 (BHN BAKU MAKANAN) COA XW91811312\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 204005 (BHN BAKU MAKANAN) COA XW91811312\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ80513135\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ80513135\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT18090045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT18090045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB-00418105,106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB-00418105,106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01805043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01805043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1807003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1807003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ81209022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ81209022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT18080824\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT18080824\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1808118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1808118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070C (BHN BAKU MAKANAN) COA XW91812153\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070C (BHN BAKU MAKANAN) COA XW91812153\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA649414\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA649414\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612765\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612765\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612757\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612757\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612756\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612756\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612755\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612755\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612754\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612754\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612771\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612771\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612772\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612772\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612779\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612779\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612766\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612766\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612766\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612766\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612758\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612758\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612769\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612769\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612773\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612773\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612753\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612753\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613449\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613449\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612768\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612768\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612614\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612614\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612523\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612523\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612778\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612778\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0441018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0441018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 182920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 182920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 182751\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 182751\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 180807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 180807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769016576J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHRONOLINE (BHN BAKU KOSMETIK) COA 769016576J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1817804\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) COA 1817804\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MINIPORYL (BHN BAKU KOSMETIK) COA 832016604J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MINIPORYL (BHN BAKU KOSMETIK) COA 832016604J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK), COA 785016832J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK), COA 785016832J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016911J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016911J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829016718J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"B-WHITE (BHN BAKU KOSMETIK) COA 829016718J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 1821114\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 1821114\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LABRAFIL M 1944 CS (BHN BAKU SUPLEMEN) COA 173317\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LABRAFIL M 1944 CS (BHN BAKU SUPLEMEN) COA 173317\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DESONIDE MICRONIZED (BHN BAKU OBAT) COA NX2299M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"DESONIDE MICRONIZED (BHN BAKU OBAT) COA NX2299M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MOMETASONE FUROATE MICRONIZED (BHN BAKU OBAT) COA NX2467M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"MOMETASONE FUROATE MICRONIZED (BHN BAKU OBAT) COA NX2467M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIAMCINOLONE ACETONIDE MICRONIZED (BHN BAKU OBAT) COA NZ0111M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"TRIAMCINOLONE ACETONIDE MICRONIZED (BHN BAKU OBAT) COA NZ0111M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NY2130M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NY2130M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NYSTATIN POWDER ROW (BHN BAKU OBAT) COA.C114267\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NYSTATIN POWDER ROW (BHN BAKU OBAT) COA.C114267\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NYSTATIN MICRONIZED ROW (BHN BAKU OBAT) COA C131009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NYSTATIN MICRONIZED ROW (BHN BAKU OBAT) COA C131009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED(BHN BAKU OBAT UTK PAKAN TERNAK) COA. ROA0519\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED(BHN BAKU OBAT UTK PAKAN TERNAK) COA. ROA0519\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN2451118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN2451118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A,20KG BA (BHN BAKU MAKANAN) COA WB01118400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A,20KG BA (BHN BAKU MAKANAN) COA WB01118400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518120391,0519010009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518120391,0519010009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519010003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519010003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518120391\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518120391\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01812478\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01812478\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01812478\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01812478\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18090031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18090031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COATED ASCORBIC ACID, TYPE EC,25KG BOX (BHN BAKU SUPLEMEN) COA TL01812569\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"COATED ASCORBIC ACID, TYPE EC,25KG BOX (BHN BAKU SUPLEMEN) COA TL01812569\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB01017666\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB01017666\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT18040036\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT18040036\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18100055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18100055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18100042\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18100042\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT18090021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT18090021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT19010008,UT19020012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT19010008,UT19020012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ80407002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ80407002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA. 1GC01CLB ZP48D 250MT\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA. 1GC01CLB ZP48D 250MT\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190207\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190207\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS S-CAQ (BHN BAKU KOSMETIK) COA KLE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS S-CAQ (BHN BAKU KOSMETIK) COA KLE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA KLH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) COA KLH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 BHN BAKU OBAT, COA 121809620\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 BHN BAKU OBAT, COA 121809620\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 121809620, 121809621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 121809620, 121809621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 121809621,9623\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 121809621,9623\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613476\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613476\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613472\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613472\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613475\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613475\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00818229\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00818229\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK)COA GSC-K-041128\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK)COA GSC-K-041128\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-033088\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-033088\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SNAIL SECREATION FILTRATE (BHN BAKU KOSMETIK)COA SAFW-041098\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SNAIL SECREATION FILTRATE (BHN BAKU KOSMETIK)COA SAFW-041098\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-101228\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-101228\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSFAC-021088\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSFAC-021088\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK)COA MCP-N-060598\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK)COA MCP-N-060598\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND YUZU EXTRACT (BHN BAKU KOSMETIK) COA CJUBD-012919\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND YUZU EXTRACT (BHN BAKU KOSMETIK) COA CJUBD-012919\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-033088\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-033088\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FENTACARE 2231 EF (BHN BAKU KOSMETIK )COA ZH19B1704,2003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34029019\", \"uraian\": \"FENTACARE 2231 EF (BHN BAKU KOSMETIK )COA ZH19B1704,2003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00818229\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00818229\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MC-GLUCAN (BHN BAKU KOSMETIK) COA MCGL190129\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"MC-GLUCAN (BHN BAKU KOSMETIK) COA MCGL190129\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CILOSTAZOL USP (BHN BAKU OBAT) COA 18004CB2ARI\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29337900\", \"uraian\": \"CILOSTAZOL USP (BHN BAKU OBAT) COA 18004CB2ARI\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BJ01209\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BJ01209\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRAZINAMIDE EP/USP (BHN BAKU OBAT) COA WPOZ 195 A19,WHOPZ 194 A19...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"PYRAZINAMIDE EP/USP (BHN BAKU OBAT) COA WPOZ 195 A19,WHOPZ 194 A19...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCITRIOL (BHN BAKU OBAT) COA F074-856R053-1, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"CALCITRIOL (BHN BAKU OBAT) COA F074-856R053-1, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 H(BHN BAKU OBAT) COA. L101850319\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 H(BHN BAKU OBAT) COA. L101850319\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO190101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO190101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-190202-GS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-190202-GS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS181002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS181002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK)COA CFM180901-PGH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK)COA CFM180901-PGH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ICHA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK) COA II181118-AI-D-BIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ICHA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK) COA II181118-AI-D-BIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613250\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613250\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613252\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613252\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613243\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613243\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613230\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613230\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613243\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613243\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613235\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613235\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613241\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613241\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613249\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613249\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612205\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612205\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613242\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613242\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613258\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613258\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE(BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613160\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE(BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613160\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613229\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613229\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OMEPRAZOLE PELLETS 8,5 PCT (BHN BAKU OBAT) COA OP0219C008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"OMEPRAZOLE PELLETS 8,5 PCT (BHN BAKU OBAT) COA OP0219C008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-2741218\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334910\", \"uraian\": \"DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-2741218\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM (BHN BAKU OBAT) COA 1901006,7,8,2044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331900\", \"uraian\": \"METAMIZOLE SODIUM (BHN BAKU OBAT) COA 1901006,7,8,2044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND181206,190202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND181206,190202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISONE USP40 (BHN BAKU OBAT) COA NPD190109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISONE USP40 (BHN BAKU OBAT) COA NPD190109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GABAPETIN (BHN BAKU OBAT) COA CGBU190109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"GABAPETIN (BHN BAKU OBAT) COA CGBU190109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) , COA 902012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) , COA 902012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP-100 (10KG) BHN BAKU KOSMETIK, COA 902669\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSP-100 (10KG) BHN BAKU KOSMETIK, COA 902669\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SB VITALLGHLIDO LIDOCAINE 1ML , COA 16486-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE SB VITALLGHLIDO LIDOCAINE 1ML , COA 16486-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SB VITAL LIGHT LIDOCAINE 1 ML ,COA 16503-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE SB VITAL LIGHT LIDOCAINE 1 ML ,COA 16503-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SB VITAL LIGHT LIDOCAINE 1ML , COA 16683-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE SB VITAL LIGHT LIDOCAINE 1ML , COA 16683-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE LIDOCAINE 1ML , COA 16374-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE LIDOCAINE 1ML , COA 16374-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML, COA 16619-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE LYFT LIDOCAINE 1ML, COA 16619-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE VOLYME 1 ML ,COA 16278-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE VOLYME 1 ML ,COA 16278-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE REFYNE 1 ML , COA 16326-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE REFYNE 1 ML , COA 16326-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE DEFYNE 1 ML , COA 16572-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE DEFYNE 1 ML , COA 16572-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE KYSSE 1 ML , COA 16207-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE KYSSE 1 ML , COA 16207-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE A(BHN BAKU OBAT) COA. M530697,530717,M530768...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE A(BHN BAKU OBAT) COA. M530697,530717,M530768...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA. 20190215\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17023010\", \"uraian\": \"DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA. 20190215\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA R703600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA R703600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOTAXIME SODIUM EP (BHN BAKU OBAT) COA R202700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOTAXIME SODIUM EP (BHN BAKU OBAT) COA R202700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE 400D S (BHN BAKU KOSMETIK) COA 1708A4-10\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE 400D S (BHN BAKU KOSMETIK) COA 1708A4-10\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID PPL-600 (BHN BAKU OBAT) COA.577200-2180223/011-012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232010\", \"uraian\": \"LIPOID PPL-600 (BHN BAKU OBAT) COA.577200-2180223/011-012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISONE (BHN BAKU OBAT) COA K03B20180712M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISONE (BHN BAKU OBAT) COA K03B20180712M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613655\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613655\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613651\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613651\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIO VINACCIOLI RAFFINATO (BHN BAKU KOSMETIK) COA.B1900045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15152919\", \"uraian\": \"OLIO VINACCIOLI RAFFINATO (BHN BAKU KOSMETIK) COA.B1900045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG190201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG190201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613447\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613447\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613510\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613510\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613511\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613511\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613519\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613519\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613517\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613517\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613503\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613503\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613478\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613478\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613487\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613487\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613488\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613488\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613252\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613252\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613490\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613490\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613499\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613499\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613499\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613499\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613499\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613499\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613499\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613499\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613499\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613499\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613489\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613489\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612682\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612682\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613160\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613160\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613477\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613477\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613518\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613518\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613504\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613504\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613512\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613512\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID MONOHYDRATE BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX1902017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID MONOHYDRATE BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX1902017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID DS 97PCT, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG1811004 S/D 6 ,2002,2016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID DS 97PCT, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG1811004 S/D 6 ,2002,2016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10918/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILYBIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10918/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10919/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILYBIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10919/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10921/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10921/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10922/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10922/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10930/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10930/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0003700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0003700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXT 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0003800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXT 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0003800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYMARIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 19B0002700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILYMARIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 19B0002700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA TRITERP/C (BHN BAKU SUPLEMEN) COA 19S0003400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA TRITERP/C (BHN BAKU SUPLEMEN) COA 19S0003400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHASEOLUS VULGARIS DRY EXTRACT (BHN BAKU SUPLEMEN) COA 071019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHASEOLUS VULGARIS DRY EXTRACT (BHN BAKU SUPLEMEN) COA 071019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHASEOLUS VULGARIS DRY EXTRACT (BHN BAKU SUPLEMEN) COA 071019,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHASEOLUS VULGARIS DRY EXTRACT (BHN BAKU SUPLEMEN) COA 071019,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VACCINIUM MYRTILLUS DRY EX (BHN BAKU SUPLEMEN) COA 064984\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VACCINIUM MYRTILLUS DRY EX (BHN BAKU SUPLEMEN) COA 064984\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VACCINIUM MYRTILLUS DRY EX (BHN BAKU SUPLEMEN) COA 069402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VACCINIUM MYRTILLUS DRY EX (BHN BAKU SUPLEMEN) COA 069402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA /PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 073983\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA /PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 073983\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for P. GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 074506\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"P. GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 074506\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BILBERRY (V.MYRTILLUS) ET.EX 36PCT (BHN BAKU SUPLEMEN), COA 074664\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BILBERRY (V.MYRTILLUS) ET.EX 36PCT (BHN BAKU SUPLEMEN), COA 074664\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SERENOA REPENS PURIFIEDEXT (BHN BAKU SUPLEMEN) COA 075070\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SERENOA REPENS PURIFIEDEXT (BHN BAKU SUPLEMEN) COA 075070\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA /PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 073983\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA /PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 073983\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECHINACEA ANG DRY PURIF.EX (BHN BAKU SUPLEMEN) COA 070823\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ECHINACEA ANG DRY PURIF.EX (BHN BAKU SUPLEMEN) COA 070823\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for P. GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 074506\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"P. GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 074506\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for P.GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 074506\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"P.GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 074506\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHASEOLUS VULGARIS DRY EXTRACT (BHN BAKU SUPLEMEN) COA 071019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHASEOLUS VULGARIS DRY EXTRACT (BHN BAKU SUPLEMEN) COA 071019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHASEOLUS VULGARIS DRY EXTRACT (BHN BAKU SUPLEMEN) COA 071019,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHASEOLUS VULGARIS DRY EXTRACT (BHN BAKU SUPLEMEN) COA 071019,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA 173371\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELUCIRE 44/14 (BHN BAKU OBAT) COA 173371\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRANSCUTOL P (BAHAN BAKU OBAT) COA 173156\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TRANSCUTOL P (BAHAN BAKU OBAT) COA 173156\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM VALPROATE (BAHAN BAKU OBAT) COA.452718 (641)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29159090\", \"uraian\": \"SODIUM VALPROATE (BAHAN BAKU OBAT) COA.452718 (641)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIQUORICE LC (BHN BAKU KOSMETIK) COA.112431/P89471-P89474\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021920\", \"uraian\": \"LIQUORICE LC (BHN BAKU KOSMETIK) COA.112431/P89471-P89474\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIQUORICE LC (BHN BAKU KOSMETIK) COA 113189/P94725-P94728\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021920\", \"uraian\": \"LIQUORICE LC (BHN BAKU KOSMETIK) COA 113189/P94725-P94728\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REFINED SUNFLOWER OIL (BHN BAKU KOSMETIK) COA KKU 04/19\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"REFINED SUNFLOWER OIL (BHN BAKU KOSMETIK) COA KKU 04/19\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA C02201UG\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA C02201UG\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8183841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8183841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8241935\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8241935\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8206906\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8206906\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8241935\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8241935\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8227600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8227600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 9002638\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 9002638\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8337538\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8337538\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSM BROTH 10KG (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 8337538\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO TSM BROTH 10KG (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 8337538\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255630\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255630\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9010685\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9010685\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8225932\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8225932\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8170732\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8170732\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8227610\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8227610\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8291939\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8291939\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9002615\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9002615\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183873\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183873\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8297692\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8297692\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9002997\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9002997\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8282931\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8282931\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8271802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8271802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8325637\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8325637\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255932\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255932\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9002615\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9002615\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9002997\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9002997\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8234653\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8234653\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9002997\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9002997\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255932\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255932\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9002997\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9002997\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8234653\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8234653\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MOTILITY TEST MEDIUM BBL (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9015933\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MOTILITY TEST MEDIUM BBL (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9015933\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141903\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141903\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8256652\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8256652\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9002997\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9002997\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK 90MM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8332998\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT PACK 90MM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8332998\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9010977\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9010977\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9017883\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9017883\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8170732\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8170732\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8057815\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8057815\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYP AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7363783\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MYP AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7363783\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RVS SOY BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8260535\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RVS SOY BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8260535\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 181737816\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 181737816\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT UNIVERSAL VIRAL TRANSPORT STD (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 181391500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT UNIVERSAL VIRAL TRANSPORT STD (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 181391500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ CAMPY (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8290657\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"SACHET GASPAK EZ CAMPY (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8290657\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEDIMACHINE II (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"MEDIMACHINE II (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8241935\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8241935\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8310579\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8310579\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8271696\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8271696\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8227600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8227600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8331841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8331841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8162545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8162545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8270639,8282854\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8270639,8282854\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8337538\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8337538\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8281593\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8281593\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8026869\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8026869\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255630\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255630\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 90106851\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 90106851\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079881\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079881\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255932\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255932\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8170732\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8170732\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8227610\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8227610\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8291715\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8291715\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8297965\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8297965\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8291939\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8291939\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8317859\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8317859\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297842\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297842\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8291800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8291800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9002615\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9002615\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILTER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8079540\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LB BROTH MILTER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8079540\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183873\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183873\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8256652\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8256652\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297692\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297692\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8282931\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8282931\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8271802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8271802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8344948\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8344948\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8183841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8183841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8291707\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE M-GREEN YEAST AND MOLD BROTH500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8291707\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8219521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8219521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8219521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8219521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LETHERN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8233839\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LETHERN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8233839\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE EGG YOLK ENRICHMENT50PCT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 83354877\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"TUBE EGG YOLK ENRICHMENT50PCT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 83354877\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE PENASE CONCENTRATE 10X20ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 8360781\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"TUBE PENASE CONCENTRATE 10X20ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 8360781\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8156756\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8156756\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 8312963\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 8312963\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255563\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255563\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8334893\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL POLYMYXIN B ANTIMICROBIC P(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8334893\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8270846\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8270846\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8332781\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8332781\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D/E NEUTRALIZING AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9031762\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D/E NEUTRALIZING AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9031762\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL PERICILLINASE 10000000 KU/ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 83389029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL PERICILLINASE 10000000 KU/ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 83389029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SHIGELLA ANTIS POLY A1 LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 81036295\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SHIGELLA ANTIS POLY A1 LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 81036295\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTISERUM FACTOR 9 GROUP D (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8341611\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL O ANTISERUM FACTOR 9 GROUP D (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8341611\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTISERUM GRP C1 FTR 6/7 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8306817\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL O ANTISERUM GRP C1 FTR 6/7 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8306817\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8338844\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8338844\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8207980\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8207980\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8232579\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8232579\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8267844\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8267844\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8291707\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8291707\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255580\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255580\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255510\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255510\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7314928\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7314928\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8239511\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8239511\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8295519\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD14 APC MPHIP9 100 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8295519\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 APC SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9016646\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 APC SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9016646\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9016637\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9016637\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD79A PE HM47 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8274645\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD79A PE HM47 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8274645\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI-MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8348900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANTI-MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8348900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD7 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8307942\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD7 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8307942\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8341873\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8341873\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD10 APC HI10A 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9009891\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD10 APC HI10A 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9009891\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD11B APC D12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9010912\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD11B APC D12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9010912\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8268723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8268723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD25 PE 2A3 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8292598\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD25 PE 2A3 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8292598\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD56 APC NCAM 16.2 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8072654\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD56 APC NCAM 16.2 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8072654\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD10 PE-CY 7 HI10A 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9017648\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD10 PE-CY 7 HI10A 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9017648\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD19 PE-CY7 SJ25C1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9017531\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD19 PE-CY7 SJ25C1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9017531\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD34 PERCP CY5.5 8G12 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9010980\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD34 PERCP CY5.5 8G12 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9010980\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD5 FITC L1/F12 100 TESTS RUO/GMP (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8270690\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD5 FITC L1/F12 100 TESTS RUO/GMP (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8270690\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8348845\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8348845\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 PERCP 2D1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8150765\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD45 PERCP 2D1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8150765\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD20 FITC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8320767\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD20 FITC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8320767\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD34 PE-CY7 BG12 Y7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8344849\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD34 PE-CY7 BG12 Y7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8344849\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI KAPPA FITC/ANTI LAMBDA PE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8325669\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANTI KAPPA FITC/ANTI LAMBDA PE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8325669\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 APC H7 SK7 100 TEST RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9042932\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 APC H7 SK7 100 TEST RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9042932\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD20 V500-C RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 90077401\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD20 V500-C RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 90077401\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD7 APC (M-T701) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8354761\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD7 APC (M-T701) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8354761\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD200 APC (MRX OX-104) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9012744\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD200 APC (MRX OX-104) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9012744\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD43 APC-H7 (1G10) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9014684\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD43 APC-H7 (1G10) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9014684\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD23 FITC EBVCS 5 RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9046764\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD23 FITC EBVCS 5 RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9046764\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD38 APC-H7 (HB7) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9022820\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD38 APC-H7 (HB7) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9022820\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD3 HORIZON V450 UCHT1 120TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9002639\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD3 HORIZON V450 UCHT1 120TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9002639\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD45 HORIZON V500 HI30 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8257900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD45 HORIZON V500 HI30 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8257900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD64 APC-H7 10.1 50TST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8297936\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD64 APC-H7 10.1 50TST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8297936\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD36 HORIZON V450 CB38 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8337814\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD36 HORIZON V450 CB38 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8337814\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD7 APC M-T701 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8087803\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD7 APC M-T701 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8087803\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD3 B421 UCHT1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8316512\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD3 B421 UCHT1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8316512\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD10 BV421 HI10A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8330923\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD10 BV421 HI10A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8330923\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD138 BV421 MI15 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8276889\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD138 BV421 MI15 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8276889\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD19 BV510 SJ25C1 100TST (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD19 BV510 SJ25C1 100TST (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD14 BV421 MPHIP9 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8236752\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD14 BV421 MPHIP9 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8236752\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD103 BV421 BER ACT8 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8250690\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD103 BV421 BER ACT8 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8250690\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8232579\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8232579\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8347637\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8347637\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255580\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255580\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8239511\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8239511\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8219521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8219521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRANOL C2M CONC NP 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP808517R\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34029099\", \"uraian\": \"MIRANOL C2M CONC NP 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP808517R\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 INF OIL ,4,5KG PJUG (BHN BAKU SUPLEMEN) COA TS00012079\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 INF OIL ,4,5KG PJUG (BHN BAKU SUPLEMEN) COA TS00012079\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GENIVIDA (TM) TG ,1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT17080006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"GENIVIDA (TM) TG ,1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT17080006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00518468\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00518468\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT18010016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT18010016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01901719\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01901719\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT19020838,839\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT19020838,839\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE,25KG BOX (BHN BAKU SUPLEMEN) COA TL01812478\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE,25KG BOX (BHN BAKU SUPLEMEN) COA TL01812478\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX (TM) VH,5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF18316006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"BEAUPLEX (TM) VH,5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF18316006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0319010176,177\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0319010176,177\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01808076,10101,10102,11116\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01808076,10101,10102,11116\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01807810\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01807810\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0319010177,178\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0319010177,178\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708170192,80091,80092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708170192,80091,80092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000179586\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000179586\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001520830\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SLX (BHN BAKU KOSMETIK) COA 0001520830\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01811116\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01811116\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18100317,318\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18100317,318\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0319010178\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0319010178\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT18040172\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT18040172\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS, 20KG PC (BHN BAKU KOSMETIK) COA 0718050071,70106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHS, 20KG PC (BHN BAKU KOSMETIK) COA 0718050071,70106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-PANTHENOL 50L ,20KG PAIL PE, BHN BAKU KOSMETIK, COA TL01807634\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL-PANTHENOL 50L ,20KG PAIL PE, BHN BAKU KOSMETIK, COA TL01807634\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0319010178 S/D 181\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0319010178 S/D 181\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0218120242\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0218120242\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPHISOL K( BHN BAKU KOSMETIK) COA VE00562749,750\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"AMPHISOL K( BHN BAKU KOSMETIK) COA VE00562749,750\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518120396\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518120396\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518120396,10009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518120396,10009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0418110236\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HMS, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0418110236\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD ,20KG BOX (BHN BAKU KOSMETIK) COA 0818120259\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD ,20KG BOX (BHN BAKU KOSMETIK) COA 0818120259\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA. 8MT181248\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30032000\", \"uraian\": \"STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA. 8MT181248\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT LYOPHIZED (BHN BAKU OBAT) COA NY3411\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT LYOPHIZED (BHN BAKU OBAT) COA NY3411\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILDENAFIL CITRATE USP (BHN BAKU OBAT) COA SLC 030 12 18\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"SILDENAFIL CITRATE USP (BHN BAKU OBAT) COA SLC 030 12 18\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNOLIA BARK EXTRACT (BHN BAKU KOSMETIK) COA MBE05-181001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MAGNOLIA BARK EXTRACT (BHN BAKU KOSMETIK) COA MBE05-181001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROPYPHENAZONE (ST) (BHN BAKU OBAT) COA 1804031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331100\", \"uraian\": \"PROPYPHENAZONE (ST) (BHN BAKU OBAT) COA 1804031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539172\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539172\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539170\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539170\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCAP 1500 CO-PROCESSED (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537870\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCAP 1500 CO-PROCESSED (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537870\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE AM PELLETS (BHN BAKU SUPLEMEN) COA 18E4910\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE AM PELLETS (BHN BAKU SUPLEMEN) COA 18E4910\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-022208\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-022208\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA MCP-N-060598\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA MCP-N-060598\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND JEJU TANGERINE EXTRACT (BHN BAKU KOSMETIK)COA GTUP-T-012988\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND JEJU TANGERINE EXTRACT (BHN BAKU KOSMETIK)COA GTUP-T-012988\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND LICORICE EXTRACT (BHN BAKU KOSMETIK) COA GGB-022778\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND LICORICE EXTRACT (BHN BAKU KOSMETIK) COA GGB-022778\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND BIO SODIUM HYALURONATE 1PCT SOLUTION (BHN BAKU KOSMETIK) COA HASC-132129\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND BIO SODIUM HYALURONATE 1PCT SOLUTION (BHN BAKU KOSMETIK) COA HASC-132129\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK)COA ARP-160839\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK)COA ARP-160839\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND BIO SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA NMP-L-020719\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND BIO SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA NMP-L-020719\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-062119\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-062119\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613685\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613685\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613687\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613687\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613690\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613690\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613689\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613689\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613684\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613684\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613691\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613691\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613688\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613688\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 66273P\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 66273P\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEEP IMPACT DEO (BHN BAKU KOSMETIK) COA 10300081\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"DEEP IMPACT DEO (BHN BAKU KOSMETIK) COA 10300081\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 102418/005767\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 102418/005767\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MATCHA GREEN TEA EXTRACT CSP 6 TC ( BHN BAKU KOSMETIK), COA CSP 18024 EOU\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MATCHA GREEN TEA EXTRACT CSP 6 TC ( BHN BAKU KOSMETIK), COA CSP 18024 EOU\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 FOOD OIL ,4,5KG PJUG (BHN BAKU SUPLEMEN) COA TS00011948\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 FOOD OIL ,4,5KG PJUG (BHN BAKU SUPLEMEN) COA TS00011948\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 121809477\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28365010\", \"uraian\": \"VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 121809477\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SOLUTION BACTERIOSTAT CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 18K3056904\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"SOLUTION BACTERIOSTAT CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 18K3056904\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK 90MM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9017879\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT PACK 90MM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9017879\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9017886\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9017886\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 181772115\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 181772115\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9030984\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9030984\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7312565\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7312565\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206906\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206906\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 8317859\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 8317859\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 83105797\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 83105797\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9017880\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9017880\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9017878\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA IC XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9017878\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8331811\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8331811\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8024751\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8024751\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MOTILITY TEST MEDIUM BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9015933\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MOTILITY TEST MEDIUM BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9015933\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHENOL RED LACTOSE BR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8311620\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PHENOL RED LACTOSE BR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8311620\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RHAMNOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8141537\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RHAMNOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8141537\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8297983\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8297983\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8115632\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8115632\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8271706\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8271706\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE WL DIFFERENT MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8134719\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE WL DIFFERENT MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8134719\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GASPAK EZ STANDARD INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7303752\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"GASPAK EZ STANDARD INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7303752\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01A348M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01A348M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST MOLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8291647\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE YEAST MOLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8291647\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M TGE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8282888\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE M TGE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8282888\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8193979\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8193979\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7325835,8305704\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7325835,8305704\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MAC CONKEY BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9039632\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MAC CONKEY BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9039632\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MAC CONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9039632\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MAC CONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9039632\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9002997\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9002997\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9031930\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9031930\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9002997\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9002997\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PROTEOSE PEPTONE NO 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8232801,8232827\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PROTEOSE PEPTONE NO 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8232801,8232827\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TC LACTALBUMIN HYDROLYSATE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7331640\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TC LACTALBUMIN HYDROLYSATE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7331640\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BEEF EXTRACT POWDER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233778\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BEEF EXTRACT POWDER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233778\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DILCO MI AGAR 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9031733\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DILCO MI AGAR 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9031733\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AZITHROMYCIN DIHYDRATE USP41 (BHN BAKU OBAT) COA 103-181009-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"AZITHROMYCIN DIHYDRATE USP41 (BHN BAKU OBAT) COA 103-181009-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01811274,2472,2478\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01811274,2472,2478\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) , COA 902012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) , COA 902012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-96A-6CS (16KG) BHN BAKU KOSMETIK, COA 902012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-96A-6CS (16KG) BHN BAKU KOSMETIK, COA 902012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KP-562P (16KG) BHN BAKU KOSMETIK, COA 802008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KP-562P (16KG) BHN BAKU KOSMETIK, COA 802008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) BHN BAKU KOSMETIK, COA 901209\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (16KG) BHN BAKU KOSMETIK, COA 901209\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KP-578 (16KG) BHN BAKU KOSMETIK , COA 804077\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KP-578 (16KG) BHN BAKU KOSMETIK , COA 804077\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-210 (16KG) BHN BAKU KOSMETIK , COA 903865\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSG-210 (16KG) BHN BAKU KOSMETIK , COA 903865\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-710 (16KG) BHN BAKU KOSMETIK, COA 902223\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSG-710 (16KG) BHN BAKU KOSMETIK, COA 902223\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6017 (17KG) BHN BAKU KOSMETIK, COA 902118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6017 (17KG) BHN BAKU KOSMETIK, COA 902118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TEFOSE 63 ( BHN BAKU SUPLEMEN) ,COA 172486\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TEFOSE 63 ( BHN BAKU SUPLEMEN) ,COA 172486\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK, COA 01/19LG4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK, COA 01/19LG4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NOMEGESTROL ACETATE (BHN BAKU OBAT) COA NY3417\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372300\", \"uraian\": \"NOMEGESTROL ACETATE (BHN BAKU OBAT) COA NY3417\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXCHLORPHENIRAMINE MALEATE BP/EP (BHN BAKU OBAT) COA SLL/DC/0319004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333910\", \"uraian\": \"DEXCHLORPHENIRAMINE MALEATE BP/EP (BHN BAKU OBAT) COA SLL/DC/0319004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID S 20 (BHN BAKU OBAT) COA. 572000-2180123/021-035 (15)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232010\", \"uraian\": \"LIPOID S 20 (BHN BAKU OBAT) COA. 572000-2180123/021-035 (15)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METRONIDAZOLE BP (BHN BAKU OBAT) COA MBO-19030127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"METRONIDAZOLE BP (BHN BAKU OBAT) COA MBO-19030127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISONE USP40 (BHN BAKU OBAT) COA NPD181213\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISONE USP40 (BHN BAKU OBAT) COA NPD181213\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LINCOMYCIN HCL EP (BHN BAKU OBAT) COA 1809011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"LINCOMYCIN HCL EP (BHN BAKU OBAT) COA 1809011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SCHISANDRA EXTRACT SCHISANDRIN 5PCT (BHN BAKU OBAT) COA SCE03-19022201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SCHISANDRA EXTRACT SCHISANDRIN 5PCT (BHN BAKU OBAT) COA SCE03-19022201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 H (BHN BAKU OBAT) COA. L105715118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 H (BHN BAKU OBAT) COA. L105715118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.19100165,166\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29391900\", \"uraian\": \"PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.19100165,166\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPAGLOS WHITE/OFF WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT683215\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPAGLOS WHITE/OFF WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT683215\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CONFECTIONERY INK BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT685772\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"CONFECTIONERY INK BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT685772\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC,25KG BOX (BHN BAKU KOSMETIK) COA 0000179587 S/D 589\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC,25KG BOX (BHN BAKU KOSMETIK) COA 0000179587 S/D 589\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0218120253\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0218120253\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ80313082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ80313082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX, 25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0918090030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX, 25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0918090030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0818120259\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0818120259\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA 19022012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA 19022012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA. 20190224\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17023010\", \"uraian\": \"DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA. 20190224\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP809446\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP809446\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP809447\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP809447\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 CN 200KG FA (BHN BAKU KOSMETIK) COA 1521841,1525235,1525327\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 CN 200KG FA (BHN BAKU KOSMETIK) COA 1521841,1525235,1525327\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GROTANOL 3025 CN 10KG KA (BHN BAKU KOSMETIK) COA 1523813\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GROTANOL 3025 CN 10KG KA (BHN BAKU KOSMETIK) COA 1523813\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 CN 10KG KA (BHN BAKU KOSMETIK) COA 1521364,1626526\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 CN 10KG KA (BHN BAKU KOSMETIK) COA 1521364,1626526\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 CN 200KG FA (BHN BAKU KOSMETIK) COA 1524098,1526714\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 CN 200KG FA (BHN BAKU KOSMETIK) COA 1524098,1526714\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 903 10KG KA (BHN BAKU KOSMETIK) COA 1522518\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 903 10KG KA (BHN BAKU KOSMETIK) COA 1522518\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000017021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000017021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLAISANCE P116808 (BHN BAKU KOSMETIK) COA.0000017030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"PLAISANCE P116808 (BHN BAKU KOSMETIK) COA.0000017030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURILEX TM COMPACTED, CEFALEXIN MONOHYDRATE (PURIDROX POWDER) BHN BAKU OBAT,COA.B427660\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURILEX TM COMPACTED, CEFALEXIN MONOHYDRATE (PURIDROX POWDER) BHN BAKU OBAT,COA.B427660\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1910188,1910190\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"PARACETAMOL (BHN BAKU OBAT) COA 1910188,1910190\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE A(BHN BAKU OBAT) COA. M530776,775,781,774\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE A(BHN BAKU OBAT) COA. M530776,775,781,774\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFADROXILE MONOHYDRATE PURIDROX POWDER (BHN BAKU OBAT) COA M334613,15,17\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFADROXILE MONOHYDRATE PURIDROX POWDER (BHN BAKU OBAT) COA M334613,15,17\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT) COA M334618,619,620\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT) COA M334618,619,620\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU MAKANAN) COA HPB1807026,63,66,67,1901079\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU MAKANAN) COA HPB1807026,63,66,67,1901079\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTISHINE WASH 1 (BHN BAKU KOSMETIK) COA 10300122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ANTISHINE WASH 1 (BHN BAKU KOSMETIK) COA 10300122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEG 400 (POLYETHYLENE GLYCOL) BAHAN BAKU KOSMETIK) COA.AKW0006970\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39072010\", \"uraian\": \"PEG 400 (POLYETHYLENE GLYCOL) BAHAN BAKU KOSMETIK) COA.AKW0006970\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708170127, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708170127, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAPROTILINE HCL (BHN BAKU OBAT) COA 1850003424,3495\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29214900\", \"uraian\": \"MAPROTILINE HCL (BHN BAKU OBAT) COA 1850003424,3495\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIFE'S DHA S35-O100, 5KG ALUF (B.BAKU SUPLEMEN) COA VY00297607\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"LIFE'S DHA S35-O100, 5KG ALUF (B.BAKU SUPLEMEN) COA VY00297607\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NICLOSAMIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 190220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"NICLOSAMIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 190220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CROSPOVIDONE XL-10 (BHN BAKU OBAT) COA PP190115XL-10\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"CROSPOVIDONE XL-10 (BHN BAKU OBAT) COA PP190115XL-10\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUCRALOSE (BHN BAKU OBAT) COA 19022201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29321400\", \"uraian\": \"SUCRALOSE (BHN BAKU OBAT) COA 19022201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-GLUCOSAMINE SULPHATE POTASSIUM (BHN BAKU OBAT) COA XH2019030201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"D-GLUCOSAMINE SULPHATE POTASSIUM (BHN BAKU OBAT) COA XH2019030201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20190217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20190217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20190222\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20190222\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FIBRE DRUM (DRUM KOSONG)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"48192000\", \"uraian\": \"FIBRE DRUM (DRUM KOSONG)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-190202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-190202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK)COA EG543-190202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK)COA EG543-190202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK)COA GTB-012229\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK)COA GTB-012229\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK) COA U190312\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK) COA U190312\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SNAIL SECREATION FILTRATE (BHN BAKU KOSMETIK)COA SAFW-041098\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SNAIL SECREATION FILTRATE (BHN BAKU KOSMETIK)COA SAFW-041098\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-022208\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-022208\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-101228\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-101228\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSFAC-021088\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSFAC-021088\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK)COA MSEEC-050918\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK)COA MSEEC-050918\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA MCP-N-060598\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA MCP-N-060598\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND YUZU EXTRACT (BHN BAKU KOSMETIK) COA CJUBD-021929,CJUBD-031139\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND YUZU EXTRACT (BHN BAKU KOSMETIK) COA CJUBD-021929,CJUBD-031139\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND GLA-40 (BHN BAKU KOSMETIK) COA GLCP-032239\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND GLA-40 (BHN BAKU KOSMETIK) COA GLCP-032239\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-030728\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-030728\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DWI BI (BHN BAKU MAKANAN) COA XW91901333\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"DWI BI (BHN BAKU MAKANAN) COA XW91901333\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0,1PCT WS (BHN BAKU MAKANAN) COA UT18080017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0,1PCT WS (BHN BAKU MAKANAN) COA UT18080017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80513137\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80513137\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18080017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18080017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ80513137\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ80513137\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ81102495\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ81102495\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01811113\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01811113\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91901332\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX 504010 (BHN BAKU MAKANAN) COA XW91901332\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91902062\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91902062\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91902170\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX 504010 (BHN BAKU MAKANAN) COA XW91902170\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91902062\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91902062\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01811329,330\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01811329,330\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B120.1PCT WS (BHN BAKU MAKANAN) COA UT18080017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B120.1PCT WS (BHN BAKU MAKANAN) COA UT18080017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT18090057\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT18090057\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ81102495,UQ81102499\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ81102495,UQ81102499\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01811113\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01811113\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ81102495\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ81102495\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01802108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01802108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B--CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT18070024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B--CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT18070024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01807116,8275\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01807116,8275\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01810308,11329\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01810308,11329\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UE01811330,11332\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UE01811330,11332\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18080017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18080017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18090057,100076\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18090057,100076\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18100076\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18100076\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA TL018100076\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA TL018100076\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01808102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01808102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01808102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01808102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01808102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU MAKANAN) COA UE01808102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01808102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU MAKANAN) COA UE01808102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE01811020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"RONOXAN A (BHN BAKU MAKANAN) COA UE01811020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE01811020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"RONOXAN A (BHN BAKU MAKANAN) COA UE01811020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE01811020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"RONOXAN A (BHN BAKU MAKANAN) COA UE01811020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ80703211\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ80703211\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID ,25KG BOX /ALU (BHN BAKU MAKANAN) COA TL01808275,84\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID ,25KG BOX /ALU (BHN BAKU MAKANAN) COA TL01808275,84\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18100299\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18100299\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB01118971\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB01118971\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01808284\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01808284\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01810923\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01810923\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1808118,8119\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1808118,8119\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01806052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01806052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18100299\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18100299\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT18070024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT18070024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT18050026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT18050026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN), COA OPI1808009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN), COA OPI1808009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18070244\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18070244\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT18050026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT18050026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ81209022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ81209022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18090057\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18090057\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT18050026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT18050026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT18050026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT18050026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01809095\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL ,20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01809095\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418106,8107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418106,8107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU MAKANAN) COA UT18050026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU MAKANAN) COA UT18050026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518032,34\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518032,34\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT18050026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT18050026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI17100012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI17100012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18090045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18090045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G(BHN BAKU MAKANAN) COA UT18100084\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G(BHN BAKU MAKANAN) COA UT18100084\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT18070024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT18070024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UE01805042\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UE01805042\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18100299\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18100299\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT18090333\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT18090333\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1808009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1808009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT18090059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT18090059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01803014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01803014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91901218,1219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91901218,1219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01809092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01809092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA 0518110309,327\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA 0518110309,327\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01808637\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01808637\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91902333,34,35\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91902333,34,35\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD ,20KG BOX (BHN BAKU KOSMETIK) COA 0818120259\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD ,20KG BOX (BHN BAKU KOSMETIK) COA 0818120259\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18100318\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18100318\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0021803\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0021803\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50PCT ,5KG BAG ALU (BHN BAKU KOSMETIK) COA CS18060023,24\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50PCT ,5KG BAG ALU (BHN BAKU KOSMETIK) COA CS18060023,24\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT18050173\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT18050173\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0718070106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0718070106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0703190002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0703190002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613938\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613938\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613940\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613940\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613935\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613935\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613944\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613944\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613925\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613925\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613937\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613937\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613924\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613924\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614160\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614160\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613931\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613931\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613927\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613927\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613936\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613936\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613933\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613933\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613929\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613929\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613928\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613928\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613195\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613195\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613930\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613930\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613926\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613926\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613932\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613932\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHAMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA DOC0431974\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHAMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA DOC0431974\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHARMAKAOLIN B 860 (BHN BAKU KOSMETIK) COA 08.08.18\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25070000\", \"uraian\": \"PHARMAKAOLIN B 860 (BHN BAKU KOSMETIK) COA 08.08.18\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SMALL QUATITY SURCHARGE HIRSCHAU, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25070000\", \"uraian\": \"SMALL QUATITY SURCHARGE HIRSCHAU, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 100 CN 10KG KA (BHN BAKU KOSMETIK) COA 1522602,1524252\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 100 CN 10KG KA (BHN BAKU KOSMETIK) COA 1522602,1524252\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GROTANOL 3025 CN 10KG KA (BHN BAKU KOSMETIK) COA 1520131\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GROTANOL 3025 CN 10KG KA (BHN BAKU KOSMETIK) COA 1520131\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 CN 10KG KA (BHN BAKU KOSMETIK) COA 1519499,1521364\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 CN 10KG KA (BHN BAKU KOSMETIK) COA 1519499,1521364\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIDINE DO CN 10KG CA (BHN BAKU KOSMETIK) COA 1518078,1520056,1524582\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIDINE DO CN 10KG CA (BHN BAKU KOSMETIK) COA 1518078,1520056,1524582\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 900 CN 10KG KA (BHN BAKU KOSMETIK) COA 1522345\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 900 CN 10KG KA (BHN BAKU KOSMETIK) COA 1522345\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 CN 200KG FA (BHN BAKU KOSMETIK) COA 1521722,1523259,1524098\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 CN 200KG FA (BHN BAKU KOSMETIK) COA 1521722,1523259,1524098\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CORTISONE ACETATE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1800951018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"CORTISONE ACETATE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1800951018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 H (BHN BAKU OBAT) COA. L105715019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 H (BHN BAKU OBAT) COA. L105715019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLOPURINOL (BHN BAKU OBAT) COA 19004AY3ARII\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"ALLOPURINOL (BHN BAKU OBAT) COA 19004AY3ARII\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA. RBA0701900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA. RBA0701900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA MTP06819\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA MTP06819\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-190303\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-190303\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK)COA EG543-190303\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK)COA EG543-190303\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA 19031410,19022610, 19030412\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA 19031410,19022610, 19030412\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA. 20190227\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17023010\", \"uraian\": \"DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA. 20190227\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA R901000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA R901000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA R703600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA R703600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTIZOXIME SODIUM (BHN BAKU OBAT) COA S600100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTIZOXIME SODIUM (BHN BAKU OBAT) COA S600100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSUVASTATIN CALCIUM (BHN BAKU OBAT) COA RVM0360219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"ROSUVASTATIN CALCIUM (BHN BAKU OBAT) COA RVM0360219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101850719\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101850719\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104310719\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104310719\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA KLJ, WCK\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA KLJ, WCK\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS S-CAQ (BHN BAKU KOSMETIK) COA KLE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS S-CAQ (BHN BAKU KOSMETIK) COA KLE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT19010001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT19010001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU MAKANAN) COA UT18090031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU MAKANAN) COA UT18090031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19020011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19020011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB01017666\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB01017666\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00518469\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00518469\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18090031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18090031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT18040036\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT18040036\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT18110039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT18110039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18100055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18100055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF, 1KG ALUF (BHN BAKU SUPLEMEN) COA UE01811060\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO (R) LUTEIN 20PCT SAF, 1KG ALUF (BHN BAKU SUPLEMEN) COA UE01811060\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN538787\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN538787\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRISODIUM CITRATE DIHYDRATE FINE GRANULAR (BHN BAKU OBAT), COA UJ846\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"TRISODIUM CITRATE DIHYDRATE FINE GRANULAR (BHN BAKU OBAT), COA UJ846\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU OBAT) COA UJ907\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU OBAT) COA UJ907\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP805753\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP805753\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C #40/ALLURA RED AC AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP801384\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C #40/ALLURA RED AC AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP801384\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C BLUE #2/BLUE CARMINE AL ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP803628\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C BLUE #2/BLUE CARMINE AL ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP803628\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP804546\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP804546\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP805751\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP805751\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP798864\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"ERYTHROSINE AL 38PCT-42PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP798864\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C BLUE #1/BRILLIANT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP805964\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C BLUE #1/BRILLIANT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP805964\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LINEN OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA LIU181106-H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LINEN OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA LIU181106-H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK)COA EG138-181202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK)COA EG138-181202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIV181202-BGBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIV181202-BGBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS190201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS190201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK) COA EG138-181202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK) COA EG138-181202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK) COA EG138-181202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK) COA EG138-181202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM180901-PGH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM180901-PGH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA VIV180202-BGBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA VIV180202-BGBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LICORICE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA GLG171001-BGBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LICORICE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA GLG171001-BGBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) COA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) COA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO180601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO180601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU OBAT) COA PAG-CO190101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU OBAT) COA PAG-CO190101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU OBAT) COA CEA-CO190302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU OBAT) COA CEA-CO190302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011I34L01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011I34L01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E4M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180H8M012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E4M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180H8M012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I6Q001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I6Q001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91903006,3007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91903006,3007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18100318\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18100318\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18100299\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18100299\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC,25KG BOX (BHN BAKU KOSMETIK) COA 0000179835\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC,25KG BOX (BHN BAKU KOSMETIK) COA 0000179835\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180092,93,118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180092,93,118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX, 25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0918090030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX, 25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0918090030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0918090030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX (BHN BAKU KOSMETIK) COA 0918090030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519010013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519010013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519010013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519010013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519010013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519010013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519010013,17\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519010013,17\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY C (R) 50, 20KG BOX ALU (BHN BAKU KOSMETIK) COA CS18060005,6,10\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY C (R) 50, 20KG BOX ALU (BHN BAKU KOSMETIK) COA CS18060005,6,10\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP19033039,40\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP19033039,40\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A,20KG BA (BHN BAKU MAKANAN) COA WB00219406,07\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A,20KG BA (BHN BAKU MAKANAN) COA WB00219406,07\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OMEPRAZOLE PELLETS 8,5 PCT (BHN BAKU OBAT) COA OP0219C019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"OMEPRAZOLE PELLETS 8,5 PCT (BHN BAKU OBAT) COA OP0219C019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROMETHORPHAN HBR USP (BAHAN BAKU OBAT) COA.EUS10340\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334910\", \"uraian\": \"DEXTROMETHORPHAN HBR USP (BAHAN BAKU OBAT) COA.EUS10340\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190305\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190305\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MILD TALCUM MOD1 (BHN BAKU KOSMETIK) COA 10300160\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MILD TALCUM MOD1 (BHN BAKU KOSMETIK) COA 10300160\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 180807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 180807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 182567\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 182567\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIOCELLACT CHAMOMILLA BD(BHN BAKU KOSMETIK) COA 182744\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BIOCELLACT CHAMOMILLA BD(BHN BAKU KOSMETIK) COA 182744\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CARBAZOCHROME SODIUM SULFONATE (ORAL GRADE) BHN BAKU OBAT,COA AC81005/81121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"CARBAZOCHROME SODIUM SULFONATE (ORAL GRADE) BHN BAKU OBAT,COA AC81005/81121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA. DOC0631921\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"SODIUM CARBONATE IPH (BHN BAKU OBAT) COA. DOC0631921\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LABRAFIL M 1944 CS (BHN BAKU OBAT) COA 173973\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LABRAFIL M 1944 CS (BHN BAKU OBAT) COA 173973\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TEFOSE 63 BF (BAHAN BAKU OBAT) COA 173890\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TEFOSE 63 BF (BAHAN BAKU OBAT) COA 173890\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELUCIRE 48/16 PELLETS (BAHAN BAKU OBAT) COA 161003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELUCIRE 48/16 PELLETS (BAHAN BAKU OBAT) COA 161003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SORBITOL SOLUTION 70PCT CRYSTALLINE (BAHAN BAKU KOSMETIK) COA.9531819\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054400\", \"uraian\": \"SORBITOL SOLUTION 70PCT CRYSTALLINE (BAHAN BAKU KOSMETIK) COA.9531819\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 H (BHN BAKU OBAT) COA. L101850719\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 H (BHN BAKU OBAT) COA. L101850719\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA.LDC15519T\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101990\", \"uraian\": \"SAVONOL 16 (BAHAN BAKU KOSMETIK), COA.LDC15519T\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1802823436\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1802823436\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1902860518\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1902860518\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DPG FG (BHN BAKU KOSMETIK) COA C02361DP\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29094900\", \"uraian\": \"DPG FG (BHN BAKU KOSMETIK) COA C02361DP\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PG USP (BHN BAKU KOSMETIK) COA C02201UG\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"PG USP (BHN BAKU KOSMETIK) COA C02201UG\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK COA B270119\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK COA B270119\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB030219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB030219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNOLIA BARK EXTRACT (BHN BAKU KOSMETIK) COA MBE05-181001/47675\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MAGNOLIA BARK EXTRACT (BHN BAKU KOSMETIK) COA MBE05-181001/47675\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EDIBLE BOVINE GELATINE (BAHAN BAKU OBAT ), COA 5001902640\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35030049\", \"uraian\": \"EDIBLE BOVINE GELATINE (BAHAN BAKU OBAT ), COA 5001902640\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EDIBLE BOVINE GELATINE (BHN BAKU OBAT) COA 5001902640\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35030049\", \"uraian\": \"EDIBLE BOVINE GELATINE (BHN BAKU OBAT) COA 5001902640\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A ACETATE 1.5 MIU/.G (BHN BAKU SUPLEMEN) COA UT18120089\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A ACETATE 1.5 MIU/.G (BHN BAKU SUPLEMEN) COA UT18120089\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT19030843\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT19030843\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED(BHN BAKU OBAT UTK PAKAN TERNAK) COA. MTP01019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED(BHN BAKU OBAT UTK PAKAN TERNAK) COA. MTP01019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED(BHN BAKU OBAT UTK PAKAN TERNAK) COA. MTP01019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED(BHN BAKU OBAT UTK PAKAN TERNAK) COA. MTP01019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01903219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01903219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GENIVIDA (TM) TG ,1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT17080005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"GENIVIDA (TM) TG ,1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT17080005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GENIVIDA (TM) TG, 1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT17080005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"GENIVIDA (TM) TG, 1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT17080005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18090031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18090031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COATED ASCORBIC ACID ,TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01902093\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"COATED ASCORBIC ACID ,TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01902093\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00218197\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00218197\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE /M 1.0 M.I.U/G (BHN BAKU SUPLEMEN) COA UT19030022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE /M 1.0 M.I.U/G (BHN BAKU SUPLEMEN) COA UT19030022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT19030022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT19030022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ80407003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ80407003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA651933\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA651933\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY SGR RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA651859\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY SGR RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA651859\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA651934\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA651934\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRAYPHOS DKP FG (BHN BAKU KOSMETIK) COA 1900731\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PRAYPHOS DKP FG (BHN BAKU KOSMETIK) COA 1900731\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA 19031410\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA 19031410\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190317\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190317\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6016 (BHN BAKU KOSMETIK) , COA 901061, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6016 (BHN BAKU KOSMETIK) , COA 901061, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for E.C.O TRACE FE 20PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC290319\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"E.C.O TRACE FE 20PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC290319\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA 90118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38247900\", \"uraian\": \"TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA 90118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OILESS CITY TM (BHN BAKU KOSMETIK) COA 71104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38247900\", \"uraian\": \"OILESS CITY TM (BHN BAKU KOSMETIK) COA 71104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 27/50 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA MTP06219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 27/50 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA MTP06219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/50 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP03519\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/50 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP03519\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA MTP04219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA MTP04219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614373\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614373\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614359\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614359\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613091\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613091\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614369\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614369\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614368\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614368\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613932\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613932\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614358\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614358\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614371\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614371\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614370\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614370\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614366\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614366\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614362\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614362\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614364\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614364\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614356\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614356\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614363\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614363\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614360\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614360\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614361\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614361\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614212\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614212\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614372\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614372\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614355\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614355\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614357\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614357\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614367\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614367\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614367\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614367\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614469\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614469\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for E.C.O TRACE ZN 25PCT (BHN BAKU UTK PAKAN TERNAK) COA BC040319\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"E.C.O TRACE ZN 25PCT (BHN BAKU UTK PAKAN TERNAK) COA BC040319\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for E.C.O.TRACE MN 20PCT(BHN BAKU OBAT UTK PAKAN TERNAK) COA BC060319\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"E.C.O.TRACE MN 20PCT(BHN BAKU OBAT UTK PAKAN TERNAK) COA BC060319\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for E.C.O TRACE FE 20PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC070319\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"E.C.O TRACE FE 20PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC070319\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIQUIPHOS STRONG (BHN BAKU UTK PAKAN TERNAK) COA 040319-187\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"LIQUIPHOS STRONG (BHN BAKU UTK PAKAN TERNAK) COA 040319-187\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIQUIPHOS STRONG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 040319-187\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"LIQUIPHOS STRONG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 040319-187\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BILBERRY (V.MYRTILLUS) ET EX36PCT (BHN BAKU SUPLEMEN) COA 32860/M2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"BILBERRY (V.MYRTILLUS) ET EX36PCT (BHN BAKU SUPLEMEN) COA 32860/M2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRAZINAMIDE EP/USP (BHN BAKU OBAT) COA WPOZ 213 B19,WHOPZ 214 B19...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"PYRAZINAMIDE EP/USP (BHN BAKU OBAT) COA WPOZ 213 B19,WHOPZ 214 B19...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEVETIRACETAM (USP) (BHN BAKU OBAT) COA CLEU19004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29337900\", \"uraian\": \"LEVETIRACETAM (USP) (BHN BAKU OBAT) COA CLEU19004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIACEREIN EP (BHN BAKU OBAT) COA DCE/40141118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"DIACEREIN EP (BHN BAKU OBAT) COA DCE/40141118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NOREPINEPHRINE BITARTRATE ,BHN BAKU OBAT, COA 480104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29379010\", \"uraian\": \"NOREPINEPHRINE BITARTRATE ,BHN BAKU OBAT, COA 480104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614638\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614638\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614722\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614722\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190317\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190317\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NONIVAMIDE (SYNTHETIC CAPSAICIN)BHN BAKU KOSMETIK, COA.20190213\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29241990\", \"uraian\": \"NONIVAMIDE (SYNTHETIC CAPSAICIN)BHN BAKU KOSMETIK, COA.20190213\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU SUPLEMEN) COA XH20190102,201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95 (BHN BAKU SUPLEMEN) COA XH20190102,201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIROXICAM (BHN BAKU OBAT) COA PRX2019008M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"PIROXICAM (BHN BAKU OBAT) COA PRX2019008M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIBENCOZIDE (COBAMAMIDE) (BHN BAKU OBAT) COA COBA-20011901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"DIBENCOZIDE (COBAMAMIDE) (BHN BAKU OBAT) COA COBA-20011901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50, 20KG BOX ALU (BHN BAKU KOSMETIK) COA UE01901003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50, 20KG BOX ALU (BHN BAKU KOSMETIK) COA UE01901003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519010017,19\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519010017,19\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519010019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519010019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA 0518110327\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA 0518110327\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01807810, 9813\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01807810, 9813\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA 0518110327\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA 0518110327\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT19010004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT19010004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01809092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01809092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0003800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0003800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0004400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0004400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0004500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0004500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0004600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0004600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXT 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B00189000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXT 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B00189000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPB1901079\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPB1901079\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC SODIUM ASCORBATE REGULAR, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPN1903140,3142\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC SODIUM ASCORBATE REGULAR, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPN1903140,3142\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA 1GC01CLB ZP48D 250MT\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA 1GC01CLB ZP48D 250MT\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 121809477\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28365010\", \"uraian\": \"VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 121809477\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PERMETHRIN PHARMA GRADE BHN BAKU OBAT COA PE0022-S77\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29163990\", \"uraian\": \"PERMETHRIN PHARMA GRADE BHN BAKU OBAT COA PE0022-S77\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATZNATRON 98/100 CAUSTIC SODA (NATRIUM HYDROXIDE)(BHN BAKU KOSMETIK) COA 937654\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28151100\", \"uraian\": \"ATZNATRON 98/100 CAUSTIC SODA (NATRIUM HYDROXIDE)(BHN BAKU KOSMETIK) COA 937654\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) , COA 903019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) , COA 903019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE USP (BHN BAKU KOSMETIK) COA 18-19/NMD(P)/U/238 S/D 242,248\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE USP (BHN BAKU KOSMETIK) COA 18-19/NMD(P)/U/238 S/D 242,248\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19030022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19030022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT19030022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT19030022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01812478,903214,903219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01812478,903214,903219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC CALCIUM ASCORBATE, 25KG BAL (BHN BAKU SUPLEMEN) COA HPT1903002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC CALCIUM ASCORBATE, 25KG BAL (BHN BAKU SUPLEMEN) COA HPT1903002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II TAN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH686840\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II TAN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH686840\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614637\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614637\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614360\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614360\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614641\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614641\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614642\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614642\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614640\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614640\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614636\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614636\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613227\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613227\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614634\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614634\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614632\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614632\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613973\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613973\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614633\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614633\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614638\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614638\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614639\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614639\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614363\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614363\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB130319\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB130319\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LINCOMYCIN HCL EP (BHN BAKU OBAT) COA 1812001,2014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"LINCOMYCIN HCL EP (BHN BAKU OBAT) COA 1812001,2014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX RED BHN BAKU OBAT UTK PEWARNA TABLET COA DT686814\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX RED BHN BAKU OBAT UTK PEWARNA TABLET COA DT686814\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX RED BHN BAKU OBAT UTK PEWARNA TABLET COA DT686815\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX RED BHN BAKU OBAT UTK PEWARNA TABLET COA DT686815\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX MAROON BHN BAKU OBAT UTK PEWARNA TABLET COA DT686816\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX MAROON BHN BAKU OBAT UTK PEWARNA TABLET COA DT686816\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX TAN BHN BAKU OBAT UTK PEWARNA TABLET COA DT686817\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX TAN BHN BAKU OBAT UTK PEWARNA TABLET COA DT686817\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CONFECTIONERY INK BLUE BHN BAKU OBAT UTK PEWARNA TABLET COA DT686821\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"CONFECTIONERY INK BLUE BHN BAKU OBAT UTK PEWARNA TABLET COA DT686821\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E15 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011I9EL02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E15 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011I9EL02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011IAKL02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011IAKL02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I6G002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I6G002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I18003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I18003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180HBK003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180HBK003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100 PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I68003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100 PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I68003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180HC5002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180HC5002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I8H001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I8H001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 BHN BAKU OBAT, COA 121809624\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 BHN BAKU OBAT, COA 121809624\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND190204, 203\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND190204, 203\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM (BHN BAKU OBAT) COA 1902119,127,144\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331900\", \"uraian\": \"METAMIZOLE SODIUM (BHN BAKU OBAT) COA 1902119,127,144\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACETYL SALICYLIC ACID (BHN BAKU OBAT) COA 19419\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29182200\", \"uraian\": \"ACETYL SALICYLIC ACID (BHN BAKU OBAT) COA 19419\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IBUPROFEN IBU003EP 25KG (BHN BAKU OBAT) COA 19037232\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29163990\", \"uraian\": \"IBUPROFEN IBU003EP 25KG (BHN BAKU OBAT) COA 19037232\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA.19100239,244\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA.19100239,244\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROSE ANHYDROUS (BHN BAKU OBAT UTK PAKAN TERNAK) COA XWA190322-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17023010\", \"uraian\": \"DEXTROSE ANHYDROUS (BHN BAKU OBAT UTK PAKAN TERNAK) COA XWA190322-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190329\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190329\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0319030311\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0319030311\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0319030311 S/D 314\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0319030311 S/D 314\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000179838,39,80204\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000179838,39,80204\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0319030314,315\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0319030314,315\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT180501731\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT180501731\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ80313082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ80313082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519010032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519010032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01806052,54, 55\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01806052,54, 55\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ81202577\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ81202577\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UF01806055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UF01806055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18090045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18090045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID,25KG BOX ALU (BHN BAKU MAKANAN) COA TL01808288\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID,25KG BOX ALU (BHN BAKU MAKANAN) COA TL01808288\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01808104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU MAKANAN) COA UE01808104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ81103293\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ81103293\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX ALU (BHN BAKU MAKANAN) COA TL01808288\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX ALU (BHN BAKU MAKANAN) COA TL01808288\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID ,25KG BOX ALU (BHN BAKU MAKANAN) COA TL01808288\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID ,25KG BOX ALU (BHN BAKU MAKANAN) COA TL01808288\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01808103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01808103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE,25KG BOX (BHN BAKU SUPLEMEN) COA TL01811158\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE,25KG BOX (BHN BAKU SUPLEMEN) COA TL01811158\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01808103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU MAKANAN) COA UE01808103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01808103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01808103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ80513137\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ80513137\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19010006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19010006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ80513137\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ80513137\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT18040136\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT18040136\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5' PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1810142\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5' PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1810142\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB180819,141,142\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB180819,141,142\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1810142\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1810142\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT18040136\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT18040136\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ80909018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ80909018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01808288\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01808288\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01808103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01808103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20170401\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20170401\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT(BHN BAKU SUPLEMEN) COA WB00418110\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT(BHN BAKU SUPLEMEN) COA WB00418110\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ81210261\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ81210261\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01806055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01806055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ81202578\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ81202578\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ80909018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ80909018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518047\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518047\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ81202578\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ81202578\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20170401\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20170401\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518047\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518047\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ81202577,2578\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ81202577,2578\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA TOCOPHEROL (BHN BAKU MAKANAN) COA UT19010004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA TOCOPHEROL (BHN BAKU MAKANAN) COA UT19010004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18100077\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18100077\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE,25KG BOX (BHN BAKU SUPLEMEN) COA TL01901626\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE,25KG BOX (BHN BAKU SUPLEMEN) COA TL01901626\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18100077\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18100077\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18100077\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18100077\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE,25KG BOX (BHN BAKU MAKANAN) COA TL01901626\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE,25KG BOX (BHN BAKU MAKANAN) COA TL01901626\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU MAKANAN)COA UT18100299\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU MAKANAN)COA UT18100299\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT18100077\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT18100077\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 B1.0 MIU/G (BHN BAKU MAKANAN) COA UT18100085\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 B1.0 MIU/G (BHN BAKU MAKANAN) COA UT18100085\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1808009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1808009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01811335\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01811335\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT18100085\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT18100085\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT1810056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT1810056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19010004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19010004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 103047-D (BHN BAKU MAKANAN) COA XW91903090\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 103047-D (BHN BAKU MAKANAN) COA XW91903090\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU MAKANAN) COA TL01901626\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU MAKANAN) COA TL01901626\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18100299\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18100299\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18110024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18110024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT18100085\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT18100085\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01811335\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01811335\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM ASCORBATE,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00818016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"CALCIUM ASCORBATE,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00818016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01901626\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01901626\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18100299\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18100299\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18100077\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18100077\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1808009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1808009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18110024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18110024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT18100085\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT18100085\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01805044,45\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01805044,45\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 C3 (BHN BAKU MAKANAN) COA XW91903197\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 C3 (BHN BAKU MAKANAN) COA XW91903197\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT18100085\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT18100085\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1808009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1808009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91903089\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX 504010 (BHN BAKU MAKANAN) COA XW91903089\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT18080044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT18080044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 1PCT CWS/M (BHN BAKU MAKANAN) COA UT18050022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 1PCT CWS/M (BHN BAKU MAKANAN) COA UT18050022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL,20KG PAIL PE (BHN BAKU MAKANAN), COA TL01811113\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL,20KG PAIL PE (BHN BAKU MAKANAN), COA TL01811113\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80513137\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80513137\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829016718J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"B-WHITE (BHN BAKU KOSMETIK) COA 829016718J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXO T (BHN BAKU KOSMETIK) COA 715016736J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EXO T (BHN BAKU KOSMETIK) COA 715016736J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HELIOGEL TM (BHN BAKU KOSMETIK) COA 1830001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HELIOGEL TM (BHN BAKU KOSMETIK) COA 1830001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5589518\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK) COA 5589518\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROGELINE (BHN BAKU KOSMETIK), COA 820056838J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROGELINE (BHN BAKU KOSMETIK), COA 820056838J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECOSLIM TM (BHN BAKU KOSMETIK) COA 1831402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ECOSLIM TM (BHN BAKU KOSMETIK) COA 1831402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829016884J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"B-WHITE (BHN BAKU KOSMETIK) COA 829016884J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830016852J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL (BHN BAKU KOSMETIK) COA 830016852J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1835201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) COA 1835201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1835201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) COA 1835201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELANOSTATINE 5BG (50PPM) (BHN BAKU KOSMETIK) COA 817046674J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MELANOSTATINE 5BG (50PPM) (BHN BAKU KOSMETIK) COA 817046674J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784027203K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784027203K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IONOL CP (BHN BAKU KOSMETIK) COA 01162218\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"IONOL CP (BHN BAKU KOSMETIK) COA 01162218\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614931\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614931\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ULTALUX FF25 KG BAG (BHN BAKU KOSMETIK) COA D0418Y0131\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ULTALUX FF25 KG BAG (BHN BAKU KOSMETIK) COA D0418Y0131\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SB VITALLGHLIDO LIDOCAINE 1ML , COA 16486-1, 16547-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE SB VITALLGHLIDO LIDOCAINE 1ML , COA 16486-1, 16547-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SB VITAL LIGHT LIDOCAINE 1 ML ,COA 16683-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE SB VITAL LIGHT LIDOCAINE 1 ML ,COA 16683-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML, COA 16619-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE LYFT LIDOCAINE 1ML, COA 16619-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE VOLYME 1 ML ,COA 16278-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE VOLYME 1 ML ,COA 16278-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE REFYNE 1 ML , COA 16524-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE REFYNE 1 ML , COA 16524-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE DEFYNE 1 ML , COA 16684-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE DEFYNE 1 ML , COA 16684-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE KYSSE 1 ML , COA 16685-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE KYSSE 1 ML , COA 16685-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT),COA 18E4503\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE NA PELLETS (BHN BAKU OBAT),COA 18E4503\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 19E0803\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 19E0803\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA 173371\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELUCIRE 44/14 (BHN BAKU OBAT) COA 173371\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) , COA 903119\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6017 (17KG) (BHN BAKU KOSMETIK) , COA 903119\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) BHN BAKU KOSMETIK, COA 902211\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (16KG) BHN BAKU KOSMETIK, COA 902211\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6017 (17KG) BHN BAKU KOSMETIK, COA 903119\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6017 (17KG) BHN BAKU KOSMETIK, COA 903119\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) BHN BAKU KOSMETIK , COA 902211\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (16KG) BHN BAKU KOSMETIK , COA 902211\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIMENHYDRINATE BHN BAKU OBAT COA.19100230., 19100232\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29395900\", \"uraian\": \"DIMENHYDRINATE BHN BAKU OBAT COA.19100230., 19100232\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EPERISONE HYDROCHLORIDE SYN-TECH (BHN BAKU OBAT) COA.E10-19006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"EPERISONE HYDROCHLORIDE SYN-TECH (BHN BAKU OBAT) COA.E10-19006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 1,3 BUTYLENE GLYCOL, COSMETIC QUALITY(BHN BAKU KOSMETIK) COA P0619109DC\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"1,3 BUTYLENE GLYCOL, COSMETIC QUALITY(BHN BAKU KOSMETIK) COA P0619109DC\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRANOL ULTRA C-32 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP901032R,BP904201R\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34029099\", \"uraian\": \"MIRANOL ULTRA C-32 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP901032R,BP904201R\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER DMACA INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01B042M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER DMACA INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01B042M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9008852\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9008852\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TERGITOL 4 XLT4 SUPPLEMENT 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 5LBX5682\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TERGITOL 4 XLT4 SUPPLEMENT 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 5LBX5682\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01B019M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01B019M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8165900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8165900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH B01B033M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH B01B033M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8331811\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8331811\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8269714\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8269714\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7312565\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7312565\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK 90MM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9052547\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT PACK 90MM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9052547\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8338681\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8338681\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BIGGY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 8079955\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BIGGY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 8079955\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL SULFATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8309819\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LAURYL SULFATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8309819\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHOSPHATE BUFFER PH 7.2 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 8317793\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PHOSPHATE BUFFER PH 7.2 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 8317793\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE SOY AGAR MOD 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7254544\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTOSE SOY AGAR MOD 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7254544\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8271706\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8271706\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B03B009M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B03B009M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8337871\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8337871\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHENYLALANINE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7255671\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PHENYLALANINE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7255671\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M ENDO BROTH MF 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8053859\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE M ENDO BROTH MF 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8053859\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M TGE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8282888\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE M TGE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8282888\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8171598\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8171598\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BILE ESCULIN AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8171850\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BILE ESCULIN AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8171850\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9070997\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9070997\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8337538\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8337538\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8344948\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8344948\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1820710\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1820710\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 182125214\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 182125214\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH182175616\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH182175616\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B04B05BM\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B04B05BM\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9002638\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9002638\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8337978\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8337978\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8026869\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8026869\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219987\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219987\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8170732\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8170732\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8227610\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8227610\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8297965\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8297965\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE REPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206906\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE REPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206906\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8291939\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8291939\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8317859\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8317859\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8310579\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8310579\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9002615\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9002615\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8312966\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8312966\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8344948\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8344948\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8337538\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8337538\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXTRACT 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 83449484\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE YEAST EXTRACT 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 83449484\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9045711\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9045711\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9070997\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9070997\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8291589\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8291589\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 90709971\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 90709971\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8129691\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8129691\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8291589\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8291589\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206836\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206836\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8337978\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8337978\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8305685\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8305685\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233944\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233944\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8297883\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8297883\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8299812\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8299812\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219987\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219987\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8312962\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8312962\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8299808\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8299808\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 81296829\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 81296829\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8241699\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8241699\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTONE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8141903\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTONE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8141903\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141903\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141903\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9070997\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9070997\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219987\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219987\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8141903\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8141903\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BEEF EXTRACT POWDER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8233778\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BEEF EXTRACT POWDER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8233778\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DUICITOL 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8337666\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DUICITOL 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8337666\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9070997\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9070997\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9002522\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9002522\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8227600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8227600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9002638\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9002638\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8129691\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8129691\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8291589\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8291589\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8162545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8162545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8337978\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE STERILE RODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8337978\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8233599\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8233599\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9030676\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9030676\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8228997\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8228997\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH8337538,9028867\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH8337538,9028867\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8026869\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8026869\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8255630\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8255630\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8183841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8183841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8289953\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8289953\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9010685\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9010685\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 8233944\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 8233944\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7349871\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7349871\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8299812\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8299812\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8219987\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8219987\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8312962\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8312962\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8241935\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8241935\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8170732\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8170732\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8129682\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8129682\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297965\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297965\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8291939\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8291939\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8317859\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8317859\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297842\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297842\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8310579\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8310579\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8291800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8291800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9002615,9014523\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9002615,9014523\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9002631\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9002631\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 8141903\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 8141903\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 8355570\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 8355570\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8256652\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8256652\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8312966\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8312966\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9002997\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9002997\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8282931\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8282931\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8271802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8271802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8344948\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8344948\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) COA 82899533\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) COA 82899533\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 73125656\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 73125656\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8256826\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8256826\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8255932\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8255932\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9030984\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9030984\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKIROORGANISME) BATCH 9039632\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKIROORGANISME) BATCH 9039632\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9038584\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9038584\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 82559329\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 82559329\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8227610\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8227610\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8206906\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8206906\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9045804\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9045804\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9030688\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9030688\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 82899535\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 82899535\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9037556\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA IC-XT 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9037556\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8353659\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8353659\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD ACCURI C6 PLUS SYSTEM (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9085649\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BD ACCURI C6 PLUS SYSTEM (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9085649\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DELL OPTIPLEX WORKSTATION BUNDLE (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH 8165558\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DELL OPTIPLEX WORKSTATION BUNDLE (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH 8165558\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8347637\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8347637\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8348971\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8348971\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255580\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255580\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 88219521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 88219521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRUP GRP A-I &VI LYO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8334767\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL O ANTIS POLY GRUP GRP A-I &VI LYO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8334767\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG L& P80 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 823951152547\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG L& P80 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 823951152547\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8348971\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8348971\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 8291707\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 8291707\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8334767\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8334767\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 8299576\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 8299576\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD34 PE 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8348875\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD34 PE 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8348875\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9050681\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9050681\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8277815\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8277815\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8277815\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8277815\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9016637\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9016637\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9070562\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9070562\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8268723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8268723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9052934\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9052934\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI HLA DR FITC L243 /(G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO )BATCH 8332704,9036873\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANTI HLA DR FITC L243 /(G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO )BATCH 8332704,9036873\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9008965\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANTI MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9008965\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD19 PE-CY7 SJ25C1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9017531538\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD19 PE-CY7 SJ25C1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9017531538\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 APC H7 SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9042932,9077593\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 APC H7 SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9042932,9077593\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD34 PERCP CY5.5 8G12 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9010980\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD34 PERCP CY5.5 8G12 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9010980\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD7 APC (M-T701) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9046766\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD7 APC (M-T701) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9046766\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD79A PE HM47 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9065915\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD79A PE HM47 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9065915\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 APC SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9016646\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 APC SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9016646\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD34 PR-CY7.8G12 Y7 100 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9084561\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD34 PR-CY7.8G12 Y7 100 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9084561\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD10 PE HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9065915\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD10 PE HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9065915\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 PERCP 2D1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8353503\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD45 PERCP 2D1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8353503\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 FITC SK7 50 TESTS IVD(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9037512\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 FITC SK7 50 TESTS IVD(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9037512\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD14 PE MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9011874\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD14 PE MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9011874\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 822879\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 822879\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD3 HORIZON V450 UCHT1 120TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9002639\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD3 HORIZON V450 UCHT1 120TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9002639\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD45 HORIZON V500 HI30 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9002640\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD45 HORIZON V500 HI30 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9002640\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9065956\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9065956\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD3 BV421 UCHT1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8316512\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD3 BV421 UCHT1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8316512\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD19 BV510 SJ25C1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8187645\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD19 BV510 SJ25C1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8187645\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANNEXIN V FITC APOP DTEC KIT I 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9057536\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANNEXIN V FITC APOP DTEC KIT I 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9057536\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLT SDA W LP AND CMP IC-XT PK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9045812\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLT SDA W LP AND CMP IC-XT PK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9045812\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLT SDA W LP AND CMP IC-XT PK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9045812\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLT SDA W LP AND CMP IC-XT PK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9045812\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9017553\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9017553\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8348971\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8348971\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233839\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233839\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8312963\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8312963\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL NOVOBIOCIN SUPPLEMENT 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9032736\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL NOVOBIOCIN SUPPLEMENT 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9032736\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9059607\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9059607\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD105 FITC 266 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7354806\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD105 FITC 266 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7354806\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CS&T RUO BEADS 50 TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8320799\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CS&T RUO BEADS 50 TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8320799\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ULTALUX FF25 KG BAG (BHN BAKU KOSMETIK) COA D0418Y0131\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ULTALUX FF25 KG BAG (BHN BAKU KOSMETIK) COA D0418Y0131\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIVE POLYPHENOLIC DRY EXTRACT (BHN BAKU SUPLEMEN) COA 19058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"OLIVE POLYPHENOLIC DRY EXTRACT (BHN BAKU SUPLEMEN) COA 19058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 19034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 19034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 19076\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 19076\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 19034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 19034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMLODIPINE BESILATE BO/EP (BHN BAKU OBAT) COA AMB/050/03/19 S/D AMB/059/03/19\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"AMLODIPINE BESILATE BO/EP (BHN BAKU OBAT) COA AMB/050/03/19 S/D AMB/059/03/19\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLOTRIMAZOLE MICRONIZED (BHN BAKU OBAT ) COA 201607040399,201703240111...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"CLOTRIMAZOLE MICRONIZED (BHN BAKU OBAT ) COA 201607040399,201703240111...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID S 20 (BHN BAKU OBAT) COA. 572000-2190125/025-048 (24)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232010\", \"uraian\": \"LIPOID S 20 (BHN BAKU OBAT) COA. 572000-2190125/025-048 (24)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 182879\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 182879\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18090031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18090031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S -TG (BHN BAKU SUPLEMEN) COA UT18110040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S -TG (BHN BAKU SUPLEMEN) COA UT18110040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19020011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19020011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18100055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18100055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT A PALM 1.0 M + VIT D3 100'000 (BHN BAKU SUPLEMEN) COA UT19030061\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VIT A PALM 1.0 M + VIT D3 100'000 (BHN BAKU SUPLEMEN) COA UT19030061\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01903219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01903219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX ALU (BHN BAKU SUPLEMEN) COA WB00219485\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE 99PCT TG, 20KG BOX ALU (BHN BAKU SUPLEMEN) COA WB00219485\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01903219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01903219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 H (BHN BAKU OBAT) COA. L101851019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 H (BHN BAKU OBAT) COA. L101851019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SORBITOL SOLUTION 70PCT CRYSTALLINE (BAHAN BAKU KOSMETIK) COA.0021920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054400\", \"uraian\": \"SORBITOL SOLUTION 70PCT CRYSTALLINE (BAHAN BAKU KOSMETIK) COA.0021920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19010008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19010008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL (BHN BAKU MAKANAN) COA UT19010008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL (BHN BAKU MAKANAN) COA UT19010008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX, TYPE MM81 (105PCT) BHN BAKU MAKANAN, COA XW91903285\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX, TYPE MM81 (105PCT) BHN BAKU MAKANAN, COA XW91903285\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT18100086\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT18100086\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18100299\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18100299\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00569207,212,213\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"AMPHISOL K (BHN BAKU KOSMETIK) COA VE00569207,212,213\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT19020838\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT19020838\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0703190002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0703190002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 1904EF7110\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"L-ARGININE LO (BHN BAKU KOSMETIK),COA 1904EF7110\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01903219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01903219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COATED ASCORBIC ACID ,TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01903312\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"COATED ASCORBIC ACID ,TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01903312\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF,1KG ALUF (BHN BAKU SUPLEMEN) COA UE01811060\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO (R) LUTEIN 20PCT SAF,1KG ALUF (BHN BAKU SUPLEMEN) COA UE01811060\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG 3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19020004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG 3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19020004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00219485\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00219485\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ90107002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ90107002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTAXANTHIN OIL 10PCT (BHN BAKU OBAT) COA.103231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"ASTAXANTHIN OIL 10PCT (BHN BAKU OBAT) COA.103231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT) COA B334622, B334623, B334624\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT) COA B334622, B334623, B334624\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID MONOHYDRATE BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 1AX1904014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID MONOHYDRATE BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 1AX1904014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTISHINE WASH 1 (BHN BAKU KOSMETIK) COA 10300123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ANTISHINE WASH 1 (BHN BAKU KOSMETIK) COA 10300123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI SHINE WASH (BHN BAKU KOSMETIK) COA 10300074\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ANTI SHINE WASH (BHN BAKU KOSMETIK) COA 10300074\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB100419\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB100419\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET), COA WP811276\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET), COA WP811276\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20180903\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20180903\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT A PALM 1.0 M+VIT D3 100'000 (BHN BAKU MAKANAN) COA UT19030061\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VIT A PALM 1.0 M+VIT D3 100'000 (BHN BAKU MAKANAN) COA UT19030061\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT19040853,854\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT19040853,854\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615095\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615095\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614856\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614856\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615084\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615084\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615080\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615080\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY EZ CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615075\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY EZ CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615075\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613312\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613312\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615119\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615119\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615119\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615119\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615256\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615256\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615256\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615256\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615256\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615256\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615254\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615254\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615254\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615254\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615081\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615081\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613973\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613973\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615076\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615076\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW(BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615087\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW(BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615087\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615074\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615074\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615077\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615077\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GRAY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615086\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GRAY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615086\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615085\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615085\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615084\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615084\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615306\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615306\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614856\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614856\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615254\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615254\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615267\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615267\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615266\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615266\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613312\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613312\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615085\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615085\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614771\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614771\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615263\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615263\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615262\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615262\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614304\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614304\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615265\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615265\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615382\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615382\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BJ01209\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BJ01209\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIMENHYDRINATE BHN BAKU OBAT COA.19100230., 19100232\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29395900\", \"uraian\": \"DIMENHYDRINATE BHN BAKU OBAT COA.19100230., 19100232\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROSE ANHYDROUS (BHN BAKU OBAT UTK PAKAN TERNAK) COA XWA190322-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17023010\", \"uraian\": \"DEXTROSE ANHYDROUS (BHN BAKU OBAT UTK PAKAN TERNAK) COA XWA190322-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLOZAPINE (BHN BAKU OBAT) COA 780910\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"CLOZAPINE (BHN BAKU OBAT) COA 780910\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539289\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539289\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539317\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539317\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539331\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539331\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539311\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539311\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK)COA MUP-012239\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK)COA MUP-012239\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND BIO-SIP (BHN BAKU KOSMETIK)COA STOD-021549\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND BIO-SIP (BHN BAKU KOSMETIK)COA STOD-021549\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-012229\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-012229\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK) COA NMSP-D-011018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK) COA NMSP-D-011018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-012639\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-012639\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SNAIL SECREATION FILTRATE (BHN BAKU KOSMETIK)COA SAFW-0502187\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SNAIL SECREATION FILTRATE (BHN BAKU KOSMETIK)COA SAFW-0502187\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-022208\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-022208\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-091808,HMVBD-101228\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-091808,HMVBD-101228\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA MCP-N-020249\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA MCP-N-020249\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND YUZU EXTRACT (BHN BAKU KOSMETIK) COA CJUBD-031139\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND YUZU EXTRACT (BHN BAKU KOSMETIK) COA CJUBD-031139\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-922718\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-922718\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-012239\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-012239\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-062119\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-062119\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA. 20190417\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17023010\", \"uraian\": \"DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA. 20190417\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANTOPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT,COA APSS18004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"PANTOPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT,COA APSS18004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA.M113200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA.M113200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200H (BHN BAKU KOSMETIK)COA L105711219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200H (BHN BAKU KOSMETIK)COA L105711219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPSULAC (R) 60 (BHN BAKU OBAT) COA. L100414818\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"CAPSULAC (R) 60 (BHN BAKU OBAT) COA. L100414818\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CELLACTOSE (R) 80 (BHN BAKU OBAT) COA L100460119\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"CELLACTOSE (R) 80 (BHN BAKU OBAT) COA L100460119\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103860919\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103860919\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104311019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104311019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105711219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200H (BHN BAKU OBAT) COA L105711219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND YUZU EXTRACT (BHN BAKU KOSMETIK)COA CJUBD-031139\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND YUZU EXTRACT (BHN BAKU KOSMETIK)COA CJUBD-031139\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-006-V\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-006-V\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001520830\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SLX (BHN BAKU KOSMETIK) COA 0001520830\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50,5KG BAG ALU (BHN BAKU KOSMETIK) COA CSI8060025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"STAY-C (R) 50,5KG BAG ALU (BHN BAKU KOSMETIK) COA CSI8060025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219030047\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219030047\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01811116,TL01812130\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01811116,TL01812130\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519020058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519020058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91904018 S/D 22\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91904018 S/D 22\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX (TM) VH,5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF18316007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"BEAUPLEX (TM) VH,5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF18316007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18100332\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18100332\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000180204\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000180204\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180118,119,120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180118,119,120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT19010008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT19010008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50, 5KG BAG ALU (BHN BAKU KOSMETIK) COA CS18060025,26\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50, 5KG BAG ALU (BHN BAKU KOSMETIK) COA CS18060025,26\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001520830\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SLX (BHN BAKU KOSMETIK) COA 0001520830\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX ,25KG PC (BHN BAKU KOSMETIK) COA 0518110346\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX ,25KG PC (BHN BAKU KOSMETIK) COA 0518110346\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20170401\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20170401\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT18090175\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT18090175\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT18090175\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT18090175\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01803014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01803014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT18090175\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT18090175\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11901013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP11901013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 1PCT CWS/M (BHN BAKU MAKANAN) COA UT18050023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 1PCT CWS/M (BHN BAKU MAKANAN) COA UT18050023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18070244\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18070244\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ONDASENTRON HCL USP (BHN BAKU OBAT) COA 18OS002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"ONDASENTRON HCL USP (BHN BAKU OBAT) COA 18OS002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA.MLAH0160219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29341000\", \"uraian\": \"MELOXICAM BP (BHN BAKU OBAT) COA.MLAH0160219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIAMCINOLONE ACETONIDE MICRONIZED (BHN BAKU OBAT) COA NZ0772M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"TRIAMCINOLONE ACETONIDE MICRONIZED (BHN BAKU OBAT) COA NZ0772M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NZ0785M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NZ0785M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOROLAC TROMETHAMOL/TROMETHAMINE (BHN BAKU OBAT) COA. 19100233\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"KETOROLAC TROMETHAMOL/TROMETHAMINE (BHN BAKU OBAT) COA. 19100233\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK)COA 7766006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"YUZU LEMON EXTRACT (BHN BAKU KOSMETIK)COA 7766006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYLPOL 980 (20KG) BAHAN BAKU KOSMETIK, COA 11518096,8111,9009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39069099\", \"uraian\": \"ACRYLPOL 980 (20KG) BAHAN BAKU KOSMETIK, COA 11518096,8111,9009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB130319\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB130319\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG080419\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG080419\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M 31.0PCT (BHN BAKU OBAT) COA 101929004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MG HYD PASTE USP TYPE M 31.0PCT (BHN BAKU OBAT) COA 101929004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOGLYCOLIC ACID 99PCT COSMETIC GRADE (BHN BAKU KOSMETIK) COA.0000066826\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOGLYCOLIC ACID 99PCT COSMETIC GRADE (BHN BAKU KOSMETIK) COA.0000066826\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMMONIUM THIOGLYCOLATE 71PCT(60PCT TGA) BHN BAKU KOSMETIK, COA.0000066827\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"AMMONIUM THIOGLYCOLATE 71PCT(60PCT TGA) BHN BAKU KOSMETIK, COA.0000066827\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MONOETHANOLAMINE THIOGLYCOLATE 83PCT (50PCT TGA) BHN BAKU KOSMETIK, COA 0000066828\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221100\", \"uraian\": \"MONOETHANOLAMINE THIOGLYCOLATE 83PCT (50PCT TGA) BHN BAKU KOSMETIK, COA 0000066828\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMMONIUM THIOGLYCOLATE 71PCT (60PCT TGA) B.BAKU KOSMETIK,COA 0000066829, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"AMMONIUM THIOGLYCOLATE 71PCT (60PCT TGA) B.BAKU KOSMETIK,COA 0000066829, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIAMMONIUM DITHIODIGLYCOLATE 48PCT... (B. BAKU KOSMETIK), COA 0000066830,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"DIAMMONIUM DITHIODIGLYCOLATE 48PCT... (B. BAKU KOSMETIK), COA 0000066830,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MONOETHANOLAMINE THIOGLYCOLATE 83PCT ...(B. BAKU KOSMETIK), COA 0000066831,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221100\", \"uraian\": \"MONOETHANOLAMINE THIOGLYCOLATE 83PCT ...(B. BAKU KOSMETIK), COA 0000066831,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POTASSIUM THIOGLYCOLATE 43PCT (30PCT TGA)B. BAKU KOSMETIK, COA 0000066832,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"POTASSIUM THIOGLYCOLATE 43PCT (30PCT TGA)B. BAKU KOSMETIK, COA 0000066832,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOGLYCOLIC ACID 99PCT PURE, B BAKU KOSMETIK, COA 0000066833, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOGLYCOLIC ACID 99PCT PURE, B BAKU KOSMETIK, COA 0000066833, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOGLYCOLIC ACID 80PCT, COSMETIC GRADE (BHN BAKU KOSMETIK) COA 0000066834,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOGLYCOLIC ACID 80PCT, COSMETIC GRADE (BHN BAKU KOSMETIK) COA 0000066834,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SUBQ 2ML D16 , COA 16563-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE SUBQ 2ML D16 , COA 16563-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SKINB VITLIDO 1 MLD16 ,COA 16547-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE SKINB VITLIDO 1 MLD16 ,COA 16547-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REST SKINB VITALLGHLIDO 1MLD16, COA 16683-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"REST SKINB VITALLGHLIDO 1MLD16, COA 16683-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE LYFT LIDOCAINE 1 ML ,COA 16934-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE LYFT LIDOCAINE 1 ML ,COA 16934-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE VOLYME 1 ML , COA 16679-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE VOLYME 1 ML , COA 16679-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE KYSSE 1 ML , COA 16724-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE KYSSE 1 ML , COA 16724-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INCA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK)COA II190202-AI-D-BIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"INCA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK)COA II190202-AI-D-BIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO190302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO190302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-190303\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-190303\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-190202-GS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-190202-GS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-180803-D-BIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-180803-D-BIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IPRATROPIUM BROMIDE (BHN BAKU OBAT) COA 1850002618\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"IPRATROPIUM BROMIDE (BHN BAKU OBAT) COA 1850002618\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE A(BHN BAKU OBAT) COA. M530871,866.907 S/D 909\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE A(BHN BAKU OBAT) COA. M530871,866.907 S/D 909\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP19033157,158\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP19033157,158\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYMARIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 19B0002800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILYMARIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 19B0002800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN/ PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 19B0033500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILYBIN/ PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 19B0033500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA I P001062 (BHN BAKU OBAT) COA.0000025081\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA I P001062 (BHN BAKU OBAT) COA.0000025081\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JAGUAR C 162 CARDBOARD BOX 25KG (BHN BAKU KOSMETIK) COA MJAC19091B\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"JAGUAR C 162 CARDBOARD BOX 25KG (BHN BAKU KOSMETIK) COA MJAC19091B\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETAHISTINE MESILATE EP (BHN BAKU OBAT) COA EDBHM19002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"BETAHISTINE MESILATE EP (BHN BAKU OBAT) COA EDBHM19002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID S 67 F (BHN BAKU OBAT) COA. 576200-2180031/007-013 (7)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232010\", \"uraian\": \"LIPOID S 67 F (BHN BAKU OBAT) COA. 576200-2180031/007-013 (7)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AC019KC PHYTOVITYL C 5KG (BHN BAKU KOSMETIK) COA 0031052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AC019KC PHYTOVITYL C 5KG (BHN BAKU KOSMETIK) COA 0031052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AC019KC PHYTOVITYL C 5KG (BHN BAKU KOSMETIK) COA 0031052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AC019KC PHYTOVITYL C 5KG (BHN BAKU KOSMETIK) COA 0031052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS FUMARATE USP/EP (BHN BAKU OBAT) COA.2019/106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"FERROUS FUMARATE USP/EP (BHN BAKU OBAT) COA.2019/106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A PALMITATE 1.7 MIU/G (TOCO)(BHN BAKU SUPLEMEN) COA UT19030845\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A PALMITATE 1.7 MIU/G (TOCO)(BHN BAKU SUPLEMEN) COA UT19030845\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00918203\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00918203\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HALAL PANCREATIN (BHN BAKU OBAT) COA. 110419PAN\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HALAL PANCREATIN (BHN BAKU OBAT) COA. 110419PAN\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KANAMYCIN SULFATE (BHN BAKU OBAT UTK PAKAN TERNAK ) COA 190302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"KANAMYCIN SULFATE (BHN BAKU OBAT UTK PAKAN TERNAK ) COA 190302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 1904032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"ACESULFAME K (BHN BAKU OBAT) COA 1904032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INOSITOL (BHN BAKU OBAT) COA 201902020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"INOSITOL (BHN BAKU OBAT) COA 201902020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITICOLINE SODIUM (BHN BAKU OBAT) COA CDP-C 20190409\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"CITICOLINE SODIUM (BHN BAKU OBAT) COA CDP-C 20190409\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20190321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20190321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S936/18\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S936/18\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRO-LIPO TM NEO (BHN BAKU KOSMETIK) COA 1905401\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PRO-LIPO TM NEO (BHN BAKU KOSMETIK) COA 1905401\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5555018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5555018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5566918\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5566918\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALDAVINE 5X (BHN BAKU KOSMETIK) COA 799036886J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALDAVINE 5X (BHN BAKU KOSMETIK) COA 799036886J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE (BHN BAKU KOSMETIK), COA 829017170K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"B-WHITE (BHN BAKU KOSMETIK), COA 829017170K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829016884J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"B-WHITE (BHN BAKU KOSMETIK) COA 829016884J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769016660J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHRONOLINE (BHN BAKU KOSMETIK) COA 769016660J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECOGEL TM (BHN BAKU KOSMETIK) COA 1831205\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ECOGEL TM (BHN BAKU KOSMETIK) COA 1831205\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXO-T (BHN BAKU KOSMETIK) COA 715017060K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EXO-T (BHN BAKU KOSMETIK) COA 715017060K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANACHRYS 2B PF (PRESERVATIVE) (BHN BAKU KOSMETIK) COA 5567018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LANACHRYS 2B PF (PRESERVATIVE) (BHN BAKU KOSMETIK) COA 5567018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016911J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016911J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILIGEL TM (BHN BAKU KOSMETIK) COA 1824711\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILIGEL TM (BHN BAKU KOSMETIK) COA 1824711\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784027203K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784027203K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ81210261,262\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ81210261,262\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ81210262\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ81210262\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ81210263\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ81210263\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01901001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01901001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518047\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518047\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518047\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518047\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18100299\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18100299\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11811028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP11811028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT18100056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT18100056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT18100056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT18100056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT18070024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT18070024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11811028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11811028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1810142\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1810142\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18110025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18110025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18070244\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18070244\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01807309\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE01807309\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01807309\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE01807309\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0319030317,9030459,9030460\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0319030317,9030459,9030460\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519020058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519020058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519020058,63,82\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519020058,63,82\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP809470\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP809470\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP809456\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP809456\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP807299\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #6/SUNSET YELLOW ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP807299\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP798865\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"ERYTHROSINE AL 38PCT-42PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP798865\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C BLUE #2/INDIGO CARMINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP804676\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C BLUE #2/INDIGO CARMINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP804676\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP809459\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP809459\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C BLUE #1/BRILLIANT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP805968\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C BLUE #1/BRILLIANT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP805968\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 10 CN 10KG KA (BHN BAKU KOSMETIK) COA.1528995\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 10 CN 10KG KA (BHN BAKU KOSMETIK) COA.1528995\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 720 CO8 10KG KA (BHN BAKU KOSMETIK) COA 1518553\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 720 CO8 10KG KA (BHN BAKU KOSMETIK) COA 1518553\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 720 C08 10KG KA (BHN BAKU KOSMETIK) COA 1518553\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 720 C08 10KG KA (BHN BAKU KOSMETIK) COA 1518553\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NONIVAMIDE (SYNTHETIC CAPSAICIN)BHN BAKU KOSMETIK, COA.20190412\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29241990\", \"uraian\": \"NONIVAMIDE (SYNTHETIC CAPSAICIN)BHN BAKU KOSMETIK, COA.20190412\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 DHA INF 10 FOOD OIL (BHN BAKU MAKANAN) COA TS00011475\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 DHA INF 10 FOOD OIL (BHN BAKU MAKANAN) COA TS00011475\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID CDC 97PCT, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG1812012 S/D 14\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID CDC 97PCT, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG1812012 S/D 14\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT19030090\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT19030090\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01903219,TL01903391,TL01903452\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01903219,TL01903391,TL01903452\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-PANTHENOL 50 L (BHN BAKU MAKANAN) COA TL01902606\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL-PANTHENOL 50 L (BHN BAKU MAKANAN) COA TL01902606\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL (BHN BAKU MAKANAN) COA TL01902803\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL (BHN BAKU MAKANAN) COA TL01902803\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) , COA 904024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) , COA 904024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) SAMPLE NO COMMERCIAL VALUE,COA PH14130419\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) SAMPLE NO COMMERCIAL VALUE,COA PH14130419\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D/E NEUTRALIZING AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9091635\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D/E NEUTRALIZING AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9091635\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8277815\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8277815\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8277815\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8277815\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD10 PE CY7 SJ25C1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9017531\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD10 PE CY7 SJ25C1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9017531\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8319508\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8319508\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9030532\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9030532\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9077594\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9077594\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9070562\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD117 PE 104D2 50 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9070562\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9081573\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9081573\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9039821\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9039821\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9058622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9058622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8268723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8268723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9052934\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9052934\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI HLA DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9036873\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANTI HLA DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9036873\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8314885 ,9092796\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8314885 ,9092796\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8358700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8358700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD CST BEADS KIT 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 81798\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BD CST BEADS KIT 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 81798\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9008965\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANTI MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9008965\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD19 PE CY7 SJ25C1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9017531\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD19 PE CY7 SJ25C1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9017531\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 APC-H7 SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9077593\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 APC-H7 SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9077593\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD79A PE HM47 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9065915\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD79A PE HM47 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9065915\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD10 APC HI10A 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9100635\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD10 APC HI10A 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9100635\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD11B APC D12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9080961\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD11B APC D12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9080961\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD20 FITC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9065589\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD20 FITC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9065589\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD20 V500 C RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9050717\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD20 V500 C RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9050717\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD38 APC H7 (HB7) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9051517\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD38 APC H7 (HB7) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9051517\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD34 PE-CY7 BG12 Y7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9084561\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD34 PE-CY7 BG12 Y7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9084561\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD10 PE HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9065915\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD10 PE HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9065915\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD14 PE MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9098752\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD14 PE MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9098752\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 PERCP 2D1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8353503\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD45 PERCP 2D1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8353503\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 FITC SK7 50 TESTS IVD (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 9037512\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 FITC SK7 50 TESTS IVD (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 9037512\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FASTIMMUNE CD55/CD69/CD45 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9087932\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"FASTIMMUNE CD55/CD69/CD45 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9087932\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI LAMBDA FITC 1-155-2 50TST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9042848\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANTI LAMBDA FITC 1-155-2 50TST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9042848\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU NESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9065956\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU NESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9065956\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD64 APC H7 10.1 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9039654\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD64 APC H7 10.1 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9039654\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD36 HORIZON V450 CD38 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8337814\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD36 HORIZON V450 CD38 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8337814\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD7 APC M-T701 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8319695\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD7 APC M-T701 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8319695\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD3 BV421 UCHT1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8316512\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD3 BV421 UCHT1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8316512\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD19 BV510 SJ25C1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8187645\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD19 BV510 SJ25C1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8187645\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD14 BV421 MPHIP9 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8236752\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD14 BV421 MPHIP9 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8236752\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD103 BV421 BER ACT8 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8250690\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD103 BV421 BER ACT8 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8250690\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD31 FITC WM59 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8212882\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD31 FITC WM59 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8212882\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL CP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 83498971\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL CP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 83498971\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8312963\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8312963\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8054920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8054920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8222563\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8222563\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8207980\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8207980\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8235876\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8235876\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8348971\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8348971\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8291707\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE M-GREEN YEAST AND MOLD BROTH 500G MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8291707\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8334767\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8334767\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8299576\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8299576\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8159661\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8159661\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8277815\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8277815\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SHIGELLA ANTIS POLY A LYOPHLIZED (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9101807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SHIGELLA ANTIS POLY A LYOPHLIZED (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9101807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 91155632\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 91155632\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9052934\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9052934\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FENTACARE 2231 EF (BHN BAKU KOSMETIK )COA ZH19B2003,0301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34029019\", \"uraian\": \"FENTACARE 2231 EF (BHN BAKU KOSMETIK )COA ZH19B2003,0301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9059721\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9059721\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B03B064M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B03B064M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM SALICYLATE BP2005 (BHN BAKU KOSMETIK)COA 201811011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29182100\", \"uraian\": \"SODIUM SALICYLATE BP2005 (BHN BAKU KOSMETIK)COA 201811011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9038584\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9038584\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8233599\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8233599\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8297702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8297702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7349871\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7349871\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8299812\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8299812\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8269714\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8269714\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8256826\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8256826\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 8255932\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 8255932\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8170732,8206594\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8170732,8206594\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9039632\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9039632\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8297965\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8297965\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206906\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206906\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8311766\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8311766\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8317859\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8317859\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8337581\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8337581\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8310579\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8310579\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9014523\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9014523\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9002631\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9002631\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8312966\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8312966\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8282931\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8282931\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8271696\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8271696\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 182182215\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 182182215\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9038584\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9038584\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8297702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8297702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255630\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255630\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9010685\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9010685\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8269714\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8269714\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206594\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206594\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8337581\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8337581\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9091855\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9091855\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8331811\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8331811\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9002573\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9002573\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9021613\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9021613\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8281627\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8281627\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7312565\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7312565\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9025695\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9025695\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ENDO AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8031775\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ENDO AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8031775\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8305630\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8305630\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHOSPHATE BUFFER PH 7.2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8317793\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PHOSPHATE BUFFER PH 7.2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8317793\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8383686\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8383686\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MICRO INOCULUM BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8311696\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MICRO INOCULUM BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8311696\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7254544,9028828\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY AGAR MOD... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7254544,9028828\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MR VP MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8297944\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MR VP MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8297944\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RHAMNOSE 25G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9028840\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RHAMNOSE 25G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9028840\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9102959\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9102959\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE UNIVERSAL PREENICHMENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8337869\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE UNIVERSAL PREENICHMENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8337869\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 5 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8197524\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 5 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8197524\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8271706\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8271706\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8227623\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8227623\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8233602\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8233602\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PSEUDOMONAS AGAR F 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8282885\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PSEUDOMONAS AGAR F 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8282885\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8134767\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8134767\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01B081M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01B081M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 8 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8281787\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 8 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8281787\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8337871\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8337871\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST MOLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8291647\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE YEAST MOLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8291647\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8316761\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8316761\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHENYLLALANINE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 7255671\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PHENYLLALANINE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 7255671\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141903\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141903\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9028852\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9028852\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8171598\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8171598\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TETRATHIONATE BR BASE HAJNA 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9084922\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TETRATHIONATE BR BASE HAJNA 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9084922\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8260535\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8260535\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9045711\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9045711\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9058798\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MALTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9058798\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9084697\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9084697\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH B02B103M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH B02B103M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9085520\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9085520\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9080924\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA IC XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9080924\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8291589\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8291589\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9030661\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE STERILE RODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9030661\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8312962\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8312962\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9030984\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9030984\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8227610\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8227610\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9039632\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9039632\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8310744\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8310744\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8311766\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8311766\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8337676\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8337676\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 90216435\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 90216435\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 8256652\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 8256652\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8312979\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8312979\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8354563\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8354563\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8129691\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8129691\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7312565\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7312565\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8312979\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8312979\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9030661\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9030661\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9021617\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9021617\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PM KIT FACSARIA II/III (MEDIA UTK PENGEMBANGAN MIKROORGANISME)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PM KIT FACSARIA II/III (MEDIA UTK PENGEMBANGAN MIKROORGANISME)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8325637\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8325637\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8325627\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8325627\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8325627\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8325627\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE L-ARABINOSE 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8211672\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE L-ARABINOSE 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8211672\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9052547\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9052547\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OILESS CITY TM (BHN BAKU KOSMETIK) COA 90415\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38247900\", \"uraian\": \"OILESS CITY TM (BHN BAKU KOSMETIK) COA 90415\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM AL HYD GEL LV13.USP (BHN BAKU OBAT) COA 101813157\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"BARCROFT TM AL HYD GEL LV13.USP (BHN BAKU OBAT) COA 101813157\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 10199001,9002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 10199001,9002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for URSODEOXYCHOLIC ACID (BHN BAKU OBAT) COA C043C190203,301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181900\", \"uraian\": \"URSODEOXYCHOLIC ACID (BHN BAKU OBAT) COA C043C190203,301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA 190410201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA 190410201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EPA DHA 44 37 (BHN SUPLEMEN KESEHATAN) COA EE4437-190504\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"EPA DHA 44 37 (BHN SUPLEMEN KESEHATAN) COA EE4437-190504\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PERMETHRIN (PHARMA GRADE) BHN BAKU OBAT COA 194046001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29163990\", \"uraian\": \"PERMETHRIN (PHARMA GRADE) BHN BAKU OBAT COA 194046001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANOLINE ANHYDROUS (BHN BAKU KOSMETIK) COA 4930, 4931\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LANOLINE ANHYDROUS (BHN BAKU KOSMETIK) COA 4930, 4931\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM REGULAR GRADE (BHN BAKU OBAT) COA 18091403 S/D 06, 1902146,147,149\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331900\", \"uraian\": \"METAMIZOLE SODIUM REGULAR GRADE (BHN BAKU OBAT) COA 18091403 S/D 06, 1902146,147,149\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM INJECTABLE GRADE (BHN BAKU OBAT) COA 18121897\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331900\", \"uraian\": \"METAMIZOLE SODIUM INJECTABLE GRADE (BHN BAKU OBAT) COA 18121897\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 201904T-CCH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 201904T-CCH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURE GREEN B AND W PIT (BHN BAKU KOSMETIK) COA 10300050\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PURE GREEN B AND W PIT (BHN BAKU KOSMETIK) COA 10300050\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEEP IMPACT FACE (BHN BAKU KOSMETIK) COA 10300044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"DEEP IMPACT FACE (BHN BAKU KOSMETIK) COA 10300044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00569213,VE00570182\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"AMPHISOL K (BHN BAKU KOSMETIK) COA VE00569213,VE00570182\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01808015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU MAKANAN) COA UE01808015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01808015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01808015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01811327\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01811327\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01811327\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01811327\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ90106006,7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ90106006,7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT19010008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT19010008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19010006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19010006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT18100087\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT18100087\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT1810056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT1810056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ81103291\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ81103291\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18110025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18110025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT18100087\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT18100087\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18110025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18110025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT1800087\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT1800087\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE ( BHN BAKU MAKANAN) COA UQ81103293\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE ( BHN BAKU MAKANAN) COA UQ81103293\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE,25KG BOX (BHN BAKU MAKANAN) COA TL01901630\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE,25KG BOX (BHN BAKU MAKANAN) COA TL01901630\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT18040136\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT18040136\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX VITAMIN OIL TYPE GBP (BHN BAKU MAKANAN) COA XW91904188\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX VITAMIN OIL TYPE GBP (BHN BAKU MAKANAN) COA XW91904188\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18090046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18090046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM ASCORBATE ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00918029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"CALCIUM ASCORBATE ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00918029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18110339\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18110339\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19010006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19010006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18110025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18110025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN), COA XH20170401\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN), COA XH20170401\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18040130\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18040130\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ80813210,3214\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ80813210,3214\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB01218981\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB01218981\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT GRANULATION ,25KG BOX (BHN BAKU SUPLEMEN) COA WB01218981\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT GRANULATION ,25KG BOX (BHN BAKU SUPLEMEN) COA WB01218981\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT GRANULATION 25KG BOX (BHN BAKU SUPLEMEN) COA WB01218981\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT GRANULATION 25KG BOX (BHN BAKU SUPLEMEN) COA WB01218981\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT GRANULATION 25KG BOX (BHN BAKU SUPLEMEN) COA WB01218981\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT GRANULATION 25KG BOX (BHN BAKU SUPLEMEN) COA WB01218981\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN), COA UT18110025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN), COA UT18110025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 14 PREMIUM (BHN BAKU OBAT UTK PEWARNA TABLET), COA D184J24021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 14 PREMIUM (BHN BAKU OBAT UTK PEWARNA TABLET), COA D184J24021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 90212, 90214, ..\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 90212, 90214, ..\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-0650319\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334910\", \"uraian\": \"DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-0650319\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP19043208, 43209\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP19043208, 43209\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND181206, ND190205, ND190207\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND181206, ND190205, ND190207\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for E.C.O TRACE ZN 25PCT (BHN BAKU UTK PAKAN TERNAK) COA BC270319\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"E.C.O TRACE ZN 25PCT (BHN BAKU UTK PAKAN TERNAK) COA BC270319\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for E.C.O.TRACE MN 20PCT(BHN BAKU OBAT UTK PAKAN TERNAK) COA BC280319\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"E.C.O.TRACE MN 20PCT(BHN BAKU OBAT UTK PAKAN TERNAK) COA BC280319\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for E.C.O TRACE FE 20PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC020519\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"E.C.O TRACE FE 20PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC020519\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIOKEY SELENIUM VM (BHN BAKU UTK PAKAN TERNAK) COA 210218-148\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"BIOKEY SELENIUM VM (BHN BAKU UTK PAKAN TERNAK) COA 210218-148\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIOTOX (BHN BAKU UTK PAKAN TERNAK) COA 220319-238\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"BIOTOX (BHN BAKU UTK PAKAN TERNAK) COA 220319-238\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 201900061\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 201900061\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA. RBA1071900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA. RBA1071900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA WBB\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROTESIL LH (BHN BAKU KOSMETIK) COA WBB\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA WCK\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA WCK\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA WDK\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) COA WDK\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK-GB (BHN BAKU KOSMETIK) COA WCN\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK-GB (BHN BAKU KOSMETIK) COA WCN\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELOT 64 (BHN BAKU OBAT) COA 174492\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELOT 64 (BHN BAKU OBAT) COA 174492\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELOT 64 (BAHAN BAKU OBAT) COA 174492\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELOT 64 (BAHAN BAKU OBAT) COA 174492\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRANSCUTOL P (BAHAN BAKU OBAT) COA 173667\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TRANSCUTOL P (BAHAN BAKU OBAT) COA 173667\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616144\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616144\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT616144\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT616144\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615690\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615690\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453391519,4453425151\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453391519,4453425151\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 101823008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 101823008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NABUMETONE USP (BAHAN BAKU OBAT) COA.H-1911018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29145000\", \"uraian\": \"NABUMETONE USP (BAHAN BAKU OBAT) COA.H-1911018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PERMETHRIN PHARMA GRADE BHN BAKU OBAT COA 195046005,195046006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29163990\", \"uraian\": \"PERMETHRIN PHARMA GRADE BHN BAKU OBAT COA 195046005,195046006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRISODIUM CITRATE DIHYDRATE FINE GRANULAR (BHN BAKU OBAT), COA UJ914\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"TRISODIUM CITRATE DIHYDRATE FINE GRANULAR (BHN BAKU OBAT), COA UJ914\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU OBAT UTK PAKAN TERNAK) COA 201800394\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"AL HYD WET GEL VAC 20 (BHN BAKU OBAT UTK PAKAN TERNAK) COA 201800394\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK)COA KFB-L-031428\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK)COA KFB-L-031428\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-022208\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-022208\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK)COA 2018G1505\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK)COA 2018G1505\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND YUZU EXTRACT (BHN BAKU KOSMETIK) COA CJUBD-043049, CJUBD-051359\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND YUZU EXTRACT (BHN BAKU KOSMETIK) COA CJUBD-043049, CJUBD-051359\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND YUZU EXTRACT (BHN BAKU KOSMETIK) COA CJUBD-051359\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND YUZU EXTRACT (BHN BAKU KOSMETIK) COA CJUBD-051359\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SERICIN 4.5 CL (BHN BAKU KOSMETIK)COA SCPKIE1301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SERICIN 4.5 CL (BHN BAKU KOSMETIK)COA SCPKIE1301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA C00591UG\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA C00591UG\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DPG FG (BHN BAKU OBAT UTK PAKAN TERNAK) COA C00591DG\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29094900\", \"uraian\": \"DPG FG (BHN BAKU OBAT UTK PAKAN TERNAK) COA C00591DG\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 102418/005767\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 102418/005767\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 CN 200KG FA (BHN BAKU KOSMETIK) COA 1529634\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 CN 200KG FA (BHN BAKU KOSMETIK) COA 1529634\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 200 KG DR (BHN BAKU KOSMETIK) COA 1526841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 200 KG DR (BHN BAKU KOSMETIK) COA 1526841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 CN 200KG FA (BHN BAKU KOSMETIK) COA 1529634,1529821\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 CN 200KG FA (BHN BAKU KOSMETIK) COA 1529634,1529821\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYDROXOCOBALAMIN CHLORIDE HP (BHN BAKU SUPLEMEN KESEHATAN) COA. KR00002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"HYDROXOCOBALAMIN CHLORIDE HP (BHN BAKU SUPLEMEN KESEHATAN) COA. KR00002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 1907711249\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29322090\", \"uraian\": \"SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 1907711249\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VALERIAN D.H.E 0.8PCT VAL.AC (BHN BAKU SUPLEMEN) COA 10949/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VALERIAN D.H.E 0.8PCT VAL.AC (BHN BAKU SUPLEMEN) COA 10949/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0018900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0018900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0019400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0019400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0019500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0019500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0019600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0019600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0003200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0003200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA TRITERP/C (BHN BAKU SUPLEMEN) COA 19S0003400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA TRITERP/C (BHN BAKU SUPLEMEN) COA 19S0003400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA /PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 32811/H1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA /PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 32811/H1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECHINACEA ANG DRY PURIF EX (BHN BAKU SUPLEMEN) COA 32527/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ECHINACEA ANG DRY PURIF EX (BHN BAKU SUPLEMEN) COA 32527/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VACCINIUM MYRTILLUS DRY EX (BHN BAKU SUPLEMEN) COA 19S0143400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VACCINIUM MYRTILLUS DRY EX (BHN BAKU SUPLEMEN) COA 19S0143400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BILBERRY (V.MYRTILLUS) ET. EX 36PCT (BHN BAKU SUPLEMEN), COA 32908/M2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BILBERRY (V.MYRTILLUS) ET. EX 36PCT (BHN BAKU SUPLEMEN), COA 32908/M2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for P.GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN), COA 19S0132200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"P.GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN), COA 19S0132200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VACCINIUM MYRTILLUS DRY EX (BHN BAKU SUPLEMEN) COA 19S0143400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VACCINIUM MYRTILLUS DRY EX (BHN BAKU SUPLEMEN) COA 19S0143400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for P. GINSENG DRY EXTRACT /IDB (BHN BAKU SUPLEMEN) COA 32347/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"P. GINSENG DRY EXTRACT /IDB (BHN BAKU SUPLEMEN) COA 32347/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA TRITERP/C (BHN BAKU SUPLEMEN) COA 19S0003400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA TRITERP/C (BHN BAKU SUPLEMEN) COA 19S0003400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECHINACEA ANG DRY PURIF.EX (BHN BAKU SUPLEMEN) COA 32527/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ECHINACEA ANG DRY PURIF.EX (BHN BAKU SUPLEMEN) COA 32527/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NYSTATIN MICRONIZED ROW (BHN BAKU OBAT) COA C131060\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NYSTATIN MICRONIZED ROW (BHN BAKU OBAT) COA C131060\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA. RBA0981900, RBA1021900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA. RBA0981900, RBA1021900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SALBUTAMOL SULFATE BP (BHN BAKU OBAT) COA 029D017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29225090\", \"uraian\": \"SALBUTAMOL SULFATE BP (BHN BAKU OBAT) COA 029D017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOPAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA.19100301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29222900\", \"uraian\": \"DOPAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA.19100301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRAYPHOS DKP FG (BHN BAKU KOSMETIK) COA 1911831\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PRAYPHOS DKP FG (BHN BAKU KOSMETIK) COA 1911831\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRAYPHOS MKP FG (BHN BAKU KOSMETIK) COA 19-017-01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PRAYPHOS MKP FG (BHN BAKU KOSMETIK) COA 19-017-01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METFORMIN HCL BP (BHN BAKU OBAT) COA MEF-19030442\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29252900\", \"uraian\": \"METFORMIN HCL BP (BHN BAKU OBAT) COA MEF-19030442\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM HYDROXIDE FLOGEL USP (BAHAN BAKU OBAT) COA 201800446\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"MAGNESIUM HYDROXIDE FLOGEL USP (BAHAN BAKU OBAT) COA 201800446\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFADROXIL MONOHYDRATE, PURIDROX COMPACTED (BHN BAKU OBAT) COA B340075,76,77\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFADROXIL MONOHYDRATE, PURIDROX COMPACTED (BHN BAKU OBAT) COA B340075,76,77\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE A(BHN BAKU OBAT) COA. M530892,893,894,895,896\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE A(BHN BAKU OBAT) COA. M530892,893,894,895,896\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE A(BHN BAKU OBAT) COA. M530898,899,900,902,903\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE A(BHN BAKU OBAT) COA. M530898,899,900,902,903\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPICILLIN TRIHYDRATE, PURICILLIN COMPACTED(BHN BAKU OBAT) COA. M842459,60,61,85,86,91\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411020\", \"uraian\": \"AMPICILLIN TRIHYDRATE, PURICILLIN COMPACTED(BHN BAKU OBAT) COA. M842459,60,61,85,86,91\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CATCOL C 135 (L) GRADE (BAHAN BAKU KOSMETIK) COA 308/19\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CATCOL C 135 (L) GRADE (BAHAN BAKU KOSMETIK) COA 308/19\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETAMINE HCL (BHN BAKU OBAT), COA 0241319P\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29223900\", \"uraian\": \"KETAMINE HCL (BHN BAKU OBAT), COA 0241319P\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615659\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615659\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615665\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615665\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615639\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615639\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615651\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615651\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615658\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615658\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615647\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615647\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615657\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615657\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615672\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615672\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615652\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615652\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615548\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615548\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615690\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615690\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615663\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615663\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615664\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615664\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GRAY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615643\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GRAY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615643\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615646\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615646\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615645\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615645\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616144\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616144\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616144\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616144\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615661\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615661\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615660\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615660\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615638\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615638\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACVRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615650\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACVRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615650\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA. 20190511\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17023010\", \"uraian\": \"DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA. 20190511\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190511\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190511\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190511\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190511\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA. 20190514\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17023010\", \"uraian\": \"DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA. 20190514\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX1904031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX1904031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 1905EF1210\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"L-ARGININE LO (BHN BAKU KOSMETIK),COA 1905EF1210\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 BHN BAKU OBAT, COA 121909748,121909751\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 BHN BAKU OBAT, COA 121909748,121909751\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 BHN BAKU OBAT, COA 121909748,121909746\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 BHN BAKU OBAT, COA 121909748,121909746\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 BHN BAKU OBAT, COA 121909751\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 BHN BAKU OBAT, COA 121909751\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 18-02-19,04-04-19\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25070000\", \"uraian\": \"KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 18-02-19,04-04-19\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539511\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539511\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539488\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539488\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539532\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539532\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539514\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539514\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACYCLOVIR MICRONIZED (BHN BAKU OBAT) COA 19100277\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"ACYCLOVIR MICRONIZED (BHN BAKU OBAT) COA 19100277\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB00219416,WB00219417,WB00219418\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB00219416,WB00219417,WB00219418\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NOREPINEPHRINE BITARTRATE ,BHN BAKU OBAT, COA 460104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29379010\", \"uraian\": \"NOREPINEPHRINE BITARTRATE ,BHN BAKU OBAT, COA 460104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NOREPINEPHRINE BITARTRATE ,BHN BAKU OBAT, COA 460104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29379010\", \"uraian\": \"NOREPINEPHRINE BITARTRATE ,BHN BAKU OBAT, COA 460104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616060\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616060\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616153\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616153\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616088\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616088\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HG29146,HG29061\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34029099\", \"uraian\": \"MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HG29146,HG29061\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/50 SODIUM BICARBONATE (BHN BAKU OBAT ) COA MTP11319,MTP14819\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/50 SODIUM BICARBONATE (BHN BAKU OBAT ) COA MTP11319,MTP14819\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU SUPLEMEN) COA XH20190301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95 (BHN BAKU SUPLEMEN) COA XH20190301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU SUPLEMEN) COA XH20190301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95 (BHN BAKU SUPLEMEN) COA XH20190301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU SUPLEMEN) COA XH20190301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95 (BHN BAKU SUPLEMEN) COA XH20190301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00918204\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00918204\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB01017666\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB01017666\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RANITIDINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA RH3920519,RH3930519,RH3940519,RH3950519\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29321900\", \"uraian\": \"RANITIDINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA RH3920519,RH3930519,RH3940519,RH3950519\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FEED GRADE DICALCIUM PHOSPHATE POWDER (BHN BAKU UNTUK PAKAN TERNAK) COA TB1905005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28352510\", \"uraian\": \"FEED GRADE DICALCIUM PHOSPHATE POWDER (BHN BAKU UNTUK PAKAN TERNAK) COA TB1905005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (NICOTINAMIDE) (BHN BAKU KOSMETIK) COA 153052019/A,154052019/A....\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (NICOTINAMIDE) (BHN BAKU KOSMETIK) COA 153052019/A,154052019/A....\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SERASENSE SF CM5 (BAHAN BAKU KOSMETIK) COA PA90514038,40,42,44\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29319049\", \"uraian\": \"SERASENSE SF CM5 (BAHAN BAKU KOSMETIK) COA PA90514038,40,42,44\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAPROTILINE HCL (BHN BAKU OBAT) COA 1950001384\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29214900\", \"uraian\": \"MAPROTILINE HCL (BHN BAKU OBAT) COA 1950001384\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE AM PELLETS (BHN BAKU OBAT) COA 18E4910\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE AM PELLETS (BHN BAKU OBAT) COA 18E4910\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA 173818\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELUCIRE 44/14 (BHN BAKU OBAT) COA 173818\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TEFOSE 63 (BHN BAKU OBAT) COA 174047\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TEFOSE 63 (BHN BAKU OBAT) COA 174047\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TEFOSE 63 (BHN BAKU OBAT) COA 174616\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TEFOSE 63 (BHN BAKU OBAT) COA 174616\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) , COA 904692\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSP-100 (10KG) (BHN BAKU KOSMETIK) , COA 904692\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) , COA 905210\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6028 (16KG) (BHN BAKU KOSMETIK) , COA 905210\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6016 (16KG) (BHN BAKU KOSMETIK) , COA 905062\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6016 (16KG) (BHN BAKU KOSMETIK) , COA 905062\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SB VITAL LIDOCAINE 1ML , COA 16547-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE SB VITAL LIDOCAINE 1ML , COA 16547-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE LIDOCAINE HA FILLER IML N2 S2 ,COA 16547-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE LIDOCAINE HA FILLER IML N2 S2 ,COA 16547-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE LYFT LIDOCAINE IML, COA 16934-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE LYFT LIDOCAINE IML, COA 16934-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE REFYNE 1 ML ,COA 16769-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE REFYNE 1 ML ,COA 16769-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE DEFYNE 1ML , COA 16716-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE DEFYNE 1ML , COA 16716-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE KYSSE 1ML , COA 16547-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE KYSSE 1ML , COA 16547-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA TL01903292\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA TL01903292\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU SUPLEMEN) COA UT19030022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU SUPLEMEN) COA UT19030022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19040043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19040043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00918203\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00918203\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA TL01903292\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA TL01903292\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01903292\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01903292\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COATED ASCORBIC ACID, TYPE EC, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01903316,63,65\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"COATED ASCORBIC ACID, TYPE EC, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01903316,63,65\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20%S (BHN BAKU SUPLEMEN) COA UT18090032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20%S (BHN BAKU SUPLEMEN) COA UT18090032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5% CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5% CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19020012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19020012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19020012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19020012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10% EMULS (BHN BAKU SUPLEMEN) COA UE01901006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10% EMULS (BHN BAKU SUPLEMEN) COA UE01901006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20%S (BHN BAKU SUPLEMEN) COA UT18090032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20%S (BHN BAKU SUPLEMEN) COA UT18090032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COATED ASCORBIC ACID, TYPE EC, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01903365\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"COATED ASCORBIC ACID, TYPE EC, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01903365\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5% CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19020008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5% CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19020008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO(R) (LYCOPENE) 10% CWS/S-TG(BHN BAKU SUPLEMEN) COA UT18110014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"REDIVIVO(R) (LYCOPENE) 10% CWS/S-TG(BHN BAKU SUPLEMEN) COA UT18110014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19020012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19020012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COATED ASCORBIC ACID, TYPE EC, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01903316,63,65\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"COATED ASCORBIC ACID, TYPE EC, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01903316,63,65\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5% CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5% CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO(R) (LYCOPENE) 10% CWS/S-TG(BHN BAKU SUPLEMEN) COA UT18110014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"REDIVIVO(R) (LYCOPENE) 10% CWS/S-TG(BHN BAKU SUPLEMEN) COA UT18110014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19020012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19020012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPCODE RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT688076\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPCODE RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT688076\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT688077\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT688077\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT688078\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT688078\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPAGLOS CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT685555\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPAGLOS CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT685555\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT688079\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT688079\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPAGLOS WHITE/OFF WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT687493\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPAGLOS WHITE/OFF WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT687493\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID PPL-600 (BHN BAKU OBAT) COA. 577200-2190225\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232010\", \"uraian\": \"LIPOID PPL-600 (BHN BAKU OBAT) COA. 577200-2190225\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011I9PL01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011I9PL01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E50 PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011H8JL02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E50 PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011H8JL02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E50 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D11HAGL02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E50 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D11HAGL02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I86001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I86001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E15 PREMIUM LV ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011I9EL02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E15 PREMIUM LV ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011I9EL02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 20 PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D184F43021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 20 PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D184F43021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I9H001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I9H001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 20 PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D184F43021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 20 PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D184F43021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180ICV001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180ICV001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA653759\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA653759\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA653760\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA653760\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID MONOHYDRATE GRANULAR (BHN BAKU OBAT), COA UJ914,UJ916\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID MONOHYDRATE GRANULAR (BHN BAKU OBAT), COA UJ914,UJ916\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYDROXOCOBALAMIN CHLORIDE HP (BHN BAKU SUPLEMEN KESEHATAN) COA. KR00002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"HYDROXOCOBALAMIN CHLORIDE HP (BHN BAKU SUPLEMEN KESEHATAN) COA. KR00002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS S-CAQ (BHN BAKU KOSMETIK) COA WBB\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS S-CAQ (BHN BAKU KOSMETIK) COA WBB\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILASOMA MFA(S) (BHN BAKU KOSMETIK) COA WEH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILASOMA MFA(S) (BHN BAKU KOSMETIK) COA WEH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTEHIL LH (BHN BAKU KOSMETIK) COA WBB\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROTEHIL LH (BHN BAKU KOSMETIK) COA WBB\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA WEL\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA WEL\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WR (BHN BAKU KOSMETIK) COA WCK\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WR (BHN BAKU KOSMETIK) COA WCK\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA.M113193\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA.M113193\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN2451118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN2451118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615542\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615542\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615977\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615977\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615658\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615658\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRYAMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616057\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRYAMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616057\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPDRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPDRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615646\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615646\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616061\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616061\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616088\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616088\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616083\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616083\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616060\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616060\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB BLUE(BHN BAKU OBAT UTK PEWARNA TABLET)COA SH616076\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB BLUE(BHN BAKU OBAT UTK PEWARNA TABLET)COA SH616076\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616077\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616077\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616078\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616078\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616224\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616224\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616224\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616224\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190515\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190515\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (BHN BAKU MAKANAN) COA UT19040855,856,857\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (BHN BAKU MAKANAN) COA UT19040855,856,857\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK COA B010419\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK COA B010419\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB200419\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB200419\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG190519\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG190519\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0033003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0033003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-PANTHENOL 50 L,1000KG IBC (BHN BAKU KOSMETIK) COA TL01904622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL-PANTHENOL 50 L,1000KG IBC (BHN BAKU KOSMETIK) COA TL01904622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01902804\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01902804\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-PANTHENOL 50 L,1000KG IBC (BHN BAKU KOSMETIK) COA TL01904621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL-PANTHENOL 50 L,1000KG IBC (BHN BAKU KOSMETIK) COA TL01904621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX ( BAHAN BAKU MAKANAN) COA TL01903452,4597,4618\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25KG BOX ( BAHAN BAKU MAKANAN) COA TL01903452,4597,4618\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POMEGRANATE OF ACORES HYDROGLYCERINED EXTRACT(BHN BAKU KOSMETIK)COA PUGA190401-GL\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"POMEGRANATE OF ACORES HYDROGLYCERINED EXTRACT(BHN BAKU KOSMETIK)COA PUGA190401-GL\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSE OILY EXTRACT (BHN BAKU KOSMETIK)COA ROS190402-H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROSE OILY EXTRACT (BHN BAKU KOSMETIK)COA ROS190402-H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLOWER ACID (BHN BAKU KOSMETIK)COA HS190502\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"FLOWER ACID (BHN BAKU KOSMETIK)COA HS190502\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINGSENG PHYTELENE (BHN BAKU KOSMETIK)COA EG209-180803\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINGSENG PHYTELENE (BHN BAKU KOSMETIK)COA EG209-180803\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS181002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS181002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS181002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS181002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM180901-PGH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM180901-PGH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA VIV181202-BGBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA VIV181202-BGBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LICORICE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA GLG190401-BGBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LICORICE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA GLG190401-BGBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO190403\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO190403\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LINEN OILY EXTRACT (BHN BAKU KOSMETIK) COA LIU190201-H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LINEN OILY EXTRACT (BHN BAKU KOSMETIK) COA LIU190201-H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LINEN OILY EXTRACT (BHN BAKU KOSMETIK) COA LIU190201-H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LINEN OILY EXTRACT (BHN BAKU KOSMETIK) COA LIU190201-H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IONOL CP (BHN BAKU KOSMETIK) COA 01162218\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"IONOL CP (BHN BAKU KOSMETIK) COA 01162218\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LUBRIPHARM (R) SSF NF/EP/JP SODIUM STEARYL FUMARATE (BHN BAKU OBAT) COA 121909896\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"LUBRIPHARM (R) SSF NF/EP/JP SODIUM STEARYL FUMARATE (BHN BAKU OBAT) COA 121909896\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LUBRIPHARM (R) SSF NF/EP/JP SODIUM STEARYL FUMARATE (BHN BAKU OBAT) COA 121909896\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"LUBRIPHARM (R) SSF NF/EP/JP SODIUM STEARYL FUMARATE (BHN BAKU OBAT) COA 121909896\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA. 20190529\""}, {"role": "assistant", "content": "{\"hs_code\" : \"11081200\", \"uraian\": \"CORN STARCH (BHN BAKU MAKANAN) COA. 20190529\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200H (BHN BAKU KOSMETIK)COA L105711219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200H (BHN BAKU KOSMETIK)COA L105711219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200H (BHN BAKU KOSMETIK)COA L105711219,L105711419\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200H (BHN BAKU KOSMETIK)COA L105711219,L105711419\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENTRY POLYOX WSR 303 LEO NF (BHN BAKU OBAT UTK PEWARNA TABLET), COA D682J17RR3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39072010\", \"uraian\": \"SENTRY POLYOX WSR 303 LEO NF (BHN BAKU OBAT UTK PEWARNA TABLET), COA D682J17RR3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENTRY POLYOX WSR 1105 LEO NF (BHN BAKU OBAT UTK PEWARNA TABLET), COA D682H6MRDA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39072010\", \"uraian\": \"SENTRY POLYOX WSR 1105 LEO NF (BHN BAKU OBAT UTK PEWARNA TABLET), COA D682H6MRDA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENTRY POLYOX WSR N750 LEO NF (BHN BAKU OBAT UTK PEWARNA TABLET), COA D682I97RJ1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39072010\", \"uraian\": \"SENTRY POLYOX WSR N750 LEO NF (BHN BAKU OBAT UTK PEWARNA TABLET), COA D682I97RJ1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA.190508101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA.190508101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 021319/005928\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 021319/005928\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIQUORICE LC (BHN BAKU KOSMETIK) COA.113189\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021920\", \"uraian\": \"LIQUORICE LC (BHN BAKU KOSMETIK) COA.113189\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT ) COA MTP13119,MTP13219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT ) COA MTP13119,MTP13219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CETYL PALMITATE PELLETS CAR (BHN BAKU OBAT) COA 174492\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"CETYL PALMITATE PELLETS CAR (BHN BAKU OBAT) COA 174492\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA I P001062 (BHN BAKU OBAT) COA.0000027003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA I P001062 (BHN BAKU OBAT) COA.0000027003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLACHE-II (BHN BAKU KOSMETIK) COA 190200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLACHE-II (BHN BAKU KOSMETIK) COA 190200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERON SB (BHN BAKU KOSMETIK) COA 190662\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERON SB (BHN BAKU KOSMETIK) COA 190662\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIRJU (BHN BAKU KOSMETIK) COA 190242\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"CLAIRJU (BHN BAKU KOSMETIK) COA 190242\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IZYAOI (BHN BAKU KOSMETIK) COA 190106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"IZYAOI (BHN BAKU KOSMETIK) COA 190106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 190441\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNEBUSTERS (BHN BAKU KOSMETIK) COA 190441\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CINDERELLACARE (BHN BAKU KOSMETIK) COA 190257\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"CINDERELLACARE (BHN BAKU KOSMETIK) COA 190257\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9085521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9085521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 90MM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9098554\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 90MM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9098554\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9100996\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE YEAST EXT GLUCOSE CHLOR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9100996\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MED 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9112920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MED 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9112920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8141966\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8141966\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9114508\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9114508\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9114508\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9114508\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9114508\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9114508\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9114508\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9114508\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8141966\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8141966\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIDUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8129691\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIDUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8129691\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7312565\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7312565\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9021617\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9021617\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8241935\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8241935\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8311766\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8311766\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8317859\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8317859\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8310579\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8310579\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8260535\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8260535\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9045711\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9045711\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9030748\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9030748\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B02B102M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B02B102M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIDUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8129691\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIDUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8129691\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIDUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8206836\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIDUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8206836\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9030661\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE STERILE RODAC EMPTY 65X15MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9030661\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9021617\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9021617\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9010685\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9010685\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8233944\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8233944\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8271693\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8271693\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8299812\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8299812\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8256826\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8256826\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8354530\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8354530\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7312565\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7312565\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8311766\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8311766\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8271781\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8271781\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8310579\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8310579\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIDUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8256652\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIDUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8256652\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8312979\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8312979\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8331811\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8331811\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8317859\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8317859\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8354563\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8354563\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9100996\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9100996\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9028852\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9028852\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9115511\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9115511\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9002631,9021643,903\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9002631,9021643,903\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EOSIN MTHYLENE BLUE AG HHT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8254557\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EOSIN MTHYLENE BLUE AG HHT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8254557\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MOTILITY TEST MEDIUM BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 09015933\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MOTILITY TEST MEDIUM BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 09015933\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8317797\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8317797\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9003524\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9003524\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9028828\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9028828\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DULCITOL 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8337666\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DULCITOL 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8337666\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7332727\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7332727\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIADIS MSRV 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8312875\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIADIS MSRV 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8312875\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9102959\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9102959\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9015774\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9015774\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8354541\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8354541\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8310633\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8310633\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8332807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8332807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8317895\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8317895\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025631\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025631\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025631\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025631\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST MOLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8291647\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE YEAST MOLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8291647\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHENYLALANINE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7255671\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PHENYLALANINE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7255671\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9127956\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9127956\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ISP MEDIUM 4 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8354590\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ISP MEDIUM 4 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8354590\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GASPAK EZ LARGE INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8354590\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"GASPAK EZ LARGE INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8354590\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST NITROGEN BASE W/O AA 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8282924\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE YEAST NITROGEN BASE W/O AA 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8282924\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 90MM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9101597\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 90MM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9101597\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN)) COA SH9010015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN)) COA SH9010015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0,1PCT WS (BHN BAKU MAKANAN) COA UT18110025,UT18110026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0,1PCT WS (BHN BAKU MAKANAN) COA UT18110025,UT18110026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN)) COA UT18120056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN)) COA UT18120056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10% CWS (BHN BAKU MAKANAN) COA UT18100056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10% CWS (BHN BAKU MAKANAN) COA UT18100056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN)) COA UT19010006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN)) COA UT19010006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN)) COA SI19010015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN)) COA SI19010015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPLEMEN)) COA XH20170305\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPLEMEN)) COA XH20170305\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11901014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP11901014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18110339\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18110339\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19020014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19020014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50% CWS/S (BHN BAKU MAKANAN) COA UE01903013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50% CWS/S (BHN BAKU MAKANAN) COA UE01903013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11901014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP11901014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN)) COA UT19010006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN)) COA UT19010006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50% CWS/S (BHN BAKU SUPLEMEN) COA UT19010004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50% CWS/S (BHN BAKU SUPLEMEN) COA UT19010004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11901014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP11901014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/TG (TOCO) (BHN BAKU SUPLEMEN)) COA UT19030176\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/TG (TOCO) (BHN BAKU SUPLEMEN)) COA UT19030176\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN)) COA SI19010015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN)) COA SI19010015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN)) COA UQ81103293\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPLEMEN)) COA UQ81103293\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3% (BHN BAKU MAKANAN) COA WB00418116\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3% (BHN BAKU MAKANAN) COA WB00418116\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3% (BHN BAKU MAKANAN) COA WB00418116\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3% (BHN BAKU MAKANAN) COA WB00418116\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90% GRANULATION, 25 KG BOX (BHN BAKU SUPLEMEN) COA WB01218985\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90% GRANULATION, 25 KG BOX (BHN BAKU SUPLEMEN) COA WB01218985\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VTP # MS 012 (BHN BAKU MAKANAN) COA XW91905264\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VTP # MS 012 (BHN BAKU MAKANAN) COA XW91905264\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91905264\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX 504010 (BHN BAKU MAKANAN) COA XW91905264\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK)) COA 0000181894\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK)) COA 0000181894\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ80713196\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ80713196\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0219030054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0219030054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0519040110,0519040111\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0519040110,0519040111\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01807006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE01807006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01807006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE01807006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX (TM) VH, 5 KG BAG/ALU (BHN BAKU KOSMETIK) COA UF19021040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"BEAUPLEX (TM) VH, 5 KG BAG/ALU (BHN BAKU KOSMETIK) COA UF19021040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0519040111\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0519040111\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01807006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE01807006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01807006,UE01807311\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE01807006,UE01807311\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL 75 L, 20 KG PAIL PE (BHN BAKU KOSMETIK) COA TL01901304,TL01901305\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL 75 L, 20 KG PAIL PE (BHN BAKU KOSMETIK) COA TL01901304,TL01901305\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91905095,XW91905096\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91905095,XW91905096\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18120366\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18120366\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18110339\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18110339\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50, 5 KG BAG ALU (BHN BAKU KOSMETIK) COA CS18060026,CS18060029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50, 5 KG BAG ALU (BHN BAKU KOSMETIK) COA CS18060026,CS18060029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20 KG PAIL PE (BHN BAKU KOSMETIK) COA TL01901304,TL01901305\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20 KG PAIL PE (BHN BAKU KOSMETIK) COA TL01901304,TL01901305\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL, 20 KG PAIL PE (BHN BAKU KOSMETIK) COA TL01901304,TL01901305\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL, 20 KG PAIL PE (BHN BAKU KOSMETIK) COA TL01901304,TL01901305\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0718110176\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHS (BHN BAKU KOSMETIK) COA 0718110176\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0518110346\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0518110346\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30% FS (BHN BAKU MAKANAN) COA UE01810072\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30% FS (BHN BAKU MAKANAN) COA UE01810072\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30% FS (BHN BAKU MAKANAN) COA UE01810072\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30% FS (BHN BAKU MAKANAN) COA UE01810072\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30% FS (BHN BAKU MAKANAN) COA UE01810072,UE01810073\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30% FS (BHN BAKU MAKANAN) COA UE01810072,UE01810073\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01903666\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01903666\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50% CWS/S (BHN BAKU SUPLEMEN) COA UE01903010,UE01903013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN E 50% CWS/S (BHN BAKU SUPLEMEN) COA UE01903010,UE01903013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 (BHN BAKU SUPLEMEN) COA UT18110025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 (BHN BAKU SUPLEMEN) COA UT18110025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01903666\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01903666\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50% CWS/S (BHN BAKU SUPLEMEN) COA UT19010004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50% CWS/S (BHN BAKU SUPLEMEN) COA UT19010004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01803014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01803014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01903666\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01903666\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50% CWS/S (BHN BAKU SUPLEMEN) COA UE01903013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN E 50% CWS/S (BHN BAKU SUPLEMEN) COA UE01903013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01903666\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01903666\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE, 25 KG BOX (BHN BAKU SUPLEMEN) COA WB01218983,WB01218984\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE, 25 KG BOX (BHN BAKU SUPLEMEN) COA WB01218983,WB01218984\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90% GRANULARION, 25 KG BOX (BHN BAKU SUPLEMEN) COA WB01218984\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90% GRANULARION, 25 KG BOX (BHN BAKU SUPLEMEN) COA WB01218984\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90% GRANULARION, 25 KG BOX (BHN BAKU SUPLEMEN) COA WB01218984\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90% GRANULARION, 25 KG BOX (BHN BAKU SUPLEMEN) COA WB01218984\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90% GRANULARION, 25 KG BOX (BHN BAKU SUPLEMEN) COA WB01218984\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90% GRANULARION, 25 KG BOX (BHN BAKU SUPLEMEN) COA WB01218984\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VTP # MS 012 (BHN BAKU MAKANAN) COA XW91905263,XW91905265\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VTP # MS 012 (BHN BAKU MAKANAN) COA XW91905263,XW91905265\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01803014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01803014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19010006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19010006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9099515\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9099515\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B03B064M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B03B064M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8219521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8219521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9039992\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9039992\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9084930\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9084930\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOBACILLI MRS BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9112888\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LACTOBACILLI MRS BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9112888\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL ISOVITALEX ENRICHMENT 10ML 5 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9035837\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL ISOVITALEX ENRICHMENT 10ML 5 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9035837\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9068517\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9068517\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9017553\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9017553\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9059647\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9059647\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8277815\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8277815\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9059647\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9059647\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8334767\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8334767\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9049874\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9049874\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8243742\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8243742\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9059647\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9059647\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9094722\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9094722\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD4 PERCP-CY5.5 SK3 RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9052935\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD4 PERCP-CY5.5 SK3 RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9052935\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD14 APC MPHIP9 100 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9115632\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD14 APC MPHIP9 100 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9115632\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD34 APC 8G12 100 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9077594\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD34 APC 8G12 100 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9077594\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD117 PE 104D2 50 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9070562\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD117 PE 104D2 50 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9070562\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9068517\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9068517\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9081573\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9081573\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9039821\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9039821\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9058622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9058622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 PERCP-CY5.5 2D1 50 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8268723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD45 PERCP-CY5.5 2D1 50 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8268723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI-MPO FITC 5B8 50 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9008965\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANTI-MPO FITC 5B8 50 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9008965\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD19 PE-CY7 SJ25CI 100 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9086520\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD19 PE-CY7 SJ25CI 100 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9086520\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 APC-H7 100 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9077593\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 APC-H7 100 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9077593\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD79A PE HM47 50 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9065915\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD79A PE HM47 50 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9065915\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD56 APC NCAM16.2 100 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8072654\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD56 APC NCAM16.2 100 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8072654\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD10 PE-CY7 HI10A 100 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9051928\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD10 PE-CY7 HI10A 100 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9051928\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD20 FITC L27 100 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9065589\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD20 FITC L27 100 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9065589\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI-KAPPA FITC/ ANTI-LAMBDA PE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9063848\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANTI-KAPPA FITC/ ANTI-LAMBDA PE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9063848\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD20 V500-C RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9114811\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD20 V500-C RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9114811\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD43 APC-H7 (1G10) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9078810\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD43 APC-H7 (1G10) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9078810\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD23 FITC EBVCS-5 RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9074873\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD23 FITC EBVCS-5 RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9074873\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD25 PE 2A3 50 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9119763\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD25 PE 2A3 50 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9119763\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD34 PE-CY7 8G12 Y7 100 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9084561\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD34 PE-CY7 8G12 Y7 100 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9084561\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANNEXIN V FITC APOP DTEC KIT I 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9072590\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANNEXIN V FITC APOP DTEC KIT I 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9072590\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD64 APC-H7 10.1 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 09039654\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD64 APC-H7 10.1 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 09039654\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD36 HORIZON V450 CB38 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH8337814\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD36 HORIZON V450 CB38 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH8337814\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD7 APC M-T701 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8319695\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD7 APC M-T701 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8319695\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD3 BV421 UCHT1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8316512\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD3 BV421 UCHT1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8316512\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD10 BV421 HI10A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8330923\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD10 BV421 HI10A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8330923\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD138 BV421 MI15 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8276889\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD138 BV421 MI15 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8276889\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD19 BV510 SJ25C1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9014616\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD19 BV510 SJ25C1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9014616\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD103 BV421 BER-ACT8 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9049542\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD103 BV421 BER-ACT8 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9049542\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD38 APC-H7 (HB7) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9051517\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD38 APC-H7 (HB7) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9051517\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD7 APC (M-T701) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9098826\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD7 APC (M-T701) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9098826\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-190310\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-190310\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SIMVASTATIN (BHN BAKU OBAT) COA DK40-1905092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29322090\", \"uraian\": \"SIMVASTATIN (BHN BAKU OBAT) COA DK40-1905092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GLUCOSAMINE HYDROCHLRIDE (BHN BAKU OBAT) COA WA201904003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"GLUCOSAMINE HYDROCHLRIDE (BHN BAKU OBAT) COA WA201904003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHISOPRINOL (BHN BAKU OBAT) COA.MTP9040119\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"METHISOPRINOL (BHN BAKU OBAT) COA.MTP9040119\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANTOPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT,COA AVHS19001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"PANTOPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT,COA AVHS19001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VANCOMYCIN HYDROCHLORIDE (STERILE POWDER) BHN BAKU OBAT,COA APSS18006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"VANCOMYCIN HYDROCHLORIDE (STERILE POWDER) BHN BAKU OBAT,COA APSS18006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTIZOXIME SODIUM (BHN BAKU OBAT) COA S600300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTIZOXIME SODIUM (BHN BAKU OBAT) COA S600300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DESONIDE MICRONIZED (BHN BAKU OBAT) COA NX2905M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"DESONIDE MICRONIZED (BHN BAKU OBAT) COA NX2905M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LCD21619T\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101990\", \"uraian\": \"SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LCD21619T\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK)COA CHP1190601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK)COA CHP1190601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND APRICOT XTRACT (BHN BAKU KOSMETIK)COA PAS-012059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND APRICOT XTRACT (BHN BAKU KOSMETIK)COA PAS-012059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 050819\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 050819\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-012239\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-012239\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-121829\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-121829\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-013159\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-013159\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-021128\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-021128\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COAGTB-012229\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COAGTB-012229\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK) COA NMSP-D-011018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK) COA NMSP-D-011018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1190604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1190604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-032249\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-032249\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 050819\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 050819\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK)COA CHP1181213\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK)COA CHP1181213\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTAXANTHIN OIL 10PCT (BHN BAKU OBAT) COA 1903231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"ASTAXANTHIN OIL 10PCT (BHN BAKU OBAT) COA 1903231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 121909758\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054300\", \"uraian\": \"MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 121909758\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 BHN BAKU OBAT, COA 121909749,121909750\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 BHN BAKU OBAT, COA 121909749,121909750\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT688754\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT688754\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX TAN (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT688755\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX TAN (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT688755\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPASPRAY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT688757\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPASPRAY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT688757\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CONFECTIONERY INK BLUE (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT688756\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"CONFECTIONERY INK BLUE (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT688756\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT688078\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT688078\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 1AX1905010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 1AX1905010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5% CLEAR (BHN BAKU KOSMETIK) COA 785017426K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5% CLEAR (BHN BAKU KOSMETIK) COA 785017426K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXO-T (BHN BAKU KOSMETIK) COA 715017283K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EXO-T (BHN BAKU KOSMETIK) COA 715017283K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6048 (16KG) (BHN BAKU KOSMETIK) , COA 906022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6048 (16KG) (BHN BAKU KOSMETIK) , COA 906022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6016 (16KG) (BHN BAKU KOSMETIK) , COA 905063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6016 (16KG) (BHN BAKU KOSMETIK) , COA 905063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) , COA 905129\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6017 (17KG) (BHN BAKU KOSMETIK) , COA 905129\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) , COA 904214\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (16KG) (BHN BAKU KOSMETIK) , COA 904214\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617112\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617112\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616587\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616587\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616588\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616588\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617111\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617111\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616714\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616714\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616924\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616924\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616923\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616923\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616583\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616583\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616580\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616580\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE TM VELLUTO (BHN BAKU KOSMETIK) COA 028/16\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE TM VELLUTO (BHN BAKU KOSMETIK) COA 028/16\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE DOLCE (BHN BAKU KOSMETIK) COA S792/18\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE DOLCE (BHN BAKU KOSMETIK) COA S792/18\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILDENAFIL CITRATE USP (BHN BAKU OBAT) COA SLC 088 06 19\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"SILDENAFIL CITRATE USP (BHN BAKU OBAT) COA SLC 088 06 19\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 1904031595\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 1904031595\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTISHINE WASH 1 (BHN BAKU KOSMETIK) COA 10300124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ANTISHINE WASH 1 (BHN BAKU KOSMETIK) COA 10300124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI SHINE WASH (BHN BAKU KOSMETIK) COA 10300074\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ANTI SHINE WASH (BHN BAKU KOSMETIK) COA 10300074\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S240/19, S412/19\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S240/19, S412/19\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 102418/005767\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 102418/005767\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEG 400 (POLYETHYLENE GLYCOL) BAHAN BAKU KOSMETIK) COA.AKW0007327,7412\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39072010\", \"uraian\": \"PEG 400 (POLYETHYLENE GLYCOL) BAHAN BAKU KOSMETIK) COA.AKW0007327,7412\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIMENHYDRINATE BHN BAKU OBAT COA. 19100402,409,410\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29395900\", \"uraian\": \"DIMENHYDRINATE BHN BAKU OBAT COA. 19100402,409,410\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA R901000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA R901000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA S701500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA S701500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFADROXIL MONOHYDRATE, PURIDROX POWDER (BHN BAKU OBAT) COA B334632,4634,4635\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFADROXIL MONOHYDRATE, PURIDROX POWDER (BHN BAKU OBAT) COA B334632,4634,4635\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMBROXOL HYDROCHLORIDE POWDER (BHN BAKU OBAT) COA AHM/19030,19029,19028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"AMBROXOL HYDROCHLORIDE POWDER (BHN BAKU OBAT) COA AHM/19030,19029,19028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISOLONE BP2010/USP40 (BHN BAKU OBAT) COA NPL 190511\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISOLONE BP2010/USP40 (BHN BAKU OBAT) COA NPL 190511\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISONE USP40 (BHN BAKU OBAT) COA NPD 190404\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISONE USP40 (BHN BAKU OBAT) COA NPD 190404\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN )COA RBA1231900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN )COA RBA1231900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EPA DHA 44 37 (BHN SUPLEMEN KESEHATAN) COA EE4437-190529\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"EPA DHA 44 37 (BHN SUPLEMEN KESEHATAN) COA EE4437-190529\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IRBESARTAN (BHN BAKU OBAT) COA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"IRBESARTAN (BHN BAKU OBAT) COA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROPOLIS BEE EXTRACT (BHN BAKU OBAT) COA 190502\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29389000\", \"uraian\": \"PROPOLIS BEE EXTRACT (BHN BAKU OBAT) COA 190502\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011IAKL02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011IAKL02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I6U001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I6U001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J1G001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J1G001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E15 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011I9EL02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E15 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011I9EL02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15 PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011I9EL02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15 PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011I9EL02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FRAMYCETINE SULFATE (BHN BAKU OBAT) COA F1700008/01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"FRAMYCETINE SULFATE (BHN BAKU OBAT) COA F1700008/01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA. ROA149197,ROA150194,ROA152193,ROA,15219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA. ROA149197,ROA150194,ROA152193,ROA,15219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB00319233\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB00319233\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00918688\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00918688\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190525\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190525\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617475\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617475\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617423\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617423\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617422\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617422\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614932\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614932\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617507\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617507\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617519\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617519\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617368\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617368\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617505\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617505\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616603\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616603\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617515\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617515\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYLPOL 980 (20KG) BAHAN BAKU KOSMETIK, COA 11519015,016,022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39069099\", \"uraian\": \"ACRYLPOL 980 (20KG) BAHAN BAKU KOSMETIK, COA 11519015,016,022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SORBITOL SOLUTION USP (BAHAN BAKU KOSMETIK) COA 1141920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054400\", \"uraian\": \"SORBITOL SOLUTION USP (BAHAN BAKU KOSMETIK) COA 1141920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU SUPLEMEN) COA UT19030001,UT19030002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU SUPLEMEN) COA UT19030001,UT19030002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA. M531075,76,77,81,60\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA. M531075,76,77,81,60\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB00319233\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB00319233\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00918204\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00918204\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01904618\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01904618\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01904618\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01904618\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTANTRIOL (BHN BAKU SUPLEMEN) COA UQ90107002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PHYTANTRIOL (BHN BAKU SUPLEMEN) COA UQ90107002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPIRAMYCIN (BHN BAKU OBAT) COA SP181405\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"SPIRAMYCIN (BHN BAKU OBAT) COA SP181405\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK)COA 052419\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK)COA 052419\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-013159\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-013159\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK) COA NMSP-D-011018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK) COA NMSP-D-011018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-022059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-022059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK) COA CPG-021019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK) COA CPG-021019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND AMINO ACID COMPLEX (B) (BHN BAKU KOSMETIK) COA AMIBD-011519\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND AMINO ACID COMPLEX (B) (BHN BAKU KOSMETIK) COA AMIBD-011519\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND YUZU EXTRACT (BHN BAKU KOSMETIK) COA CJUBD-051359,CJUBD-063059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND YUZU EXTRACT (BHN BAKU KOSMETIK) COA CJUBD-051359,CJUBD-063059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK)COA 2018G1505\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK)COA 2018G1505\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617420\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617420\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615306\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615306\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616224\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616224\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617437\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617437\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617367\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617367\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617369\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617369\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617504\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617504\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617503\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617503\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616224\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616224\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617475\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617475\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY VIOLET (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617518\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY VIOLET (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617518\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616603\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616603\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INOSITOL (BHN BAKU OBAT) COA 201903031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"INOSITOL (BHN BAKU OBAT) COA 201903031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 1905056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"ACESULFAME K (BHN BAKU OBAT) COA 1905056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20190512\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20190512\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALBENDAZOLE (BHN BAKU OBAT UTK PAKAN TERNAK) COA CDP-C 20190409\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ALBENDAZOLE (BHN BAKU OBAT UTK PAKAN TERNAK) COA CDP-C 20190409\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1906005-09\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"MEFENAMIC ACID (BHN BAKU OBAT) COA MA1906005-09\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POVIDONE K-30 EX JHNJ (BHN BAKU OBAT) COA PK30-190412F42\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"POVIDONE K-30 EX JHNJ (BHN BAKU OBAT) COA PK30-190412F42\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POVIDONE K-25 (BHN BAKU OBAT) COA PK25-190111F12\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"POVIDONE K-25 (BHN BAKU OBAT) COA PK25-190111F12\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FIBRE DRUM\""}, {"role": "assistant", "content": "{\"hs_code\" : \"48192000\", \"uraian\": \"FIBRE DRUM\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHARMACEUTICAL BOVINE GELATINE (BAHAN BAKU OBAT ), COA 5001811285\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35030049\", \"uraian\": \"PHARMACEUTICAL BOVINE GELATINE (BAHAN BAKU OBAT ), COA 5001811285\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 FOOD OIL ,4,5KG PJUG (BHN BAKU SUPLEMEN) COA TS00012411\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 FOOD OIL ,4,5KG PJUG (BHN BAKU SUPLEMEN) COA TS00012411\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MATCHA GREEN TEA EXTRACT CSP 6 TC ( BHN BAKU KOSMETIK), COA CSP 19011 EOU\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MATCHA GREEN TEA EXTRACT CSP 6 TC ( BHN BAKU KOSMETIK), COA CSP 19011 EOU\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GEMCITABINE HYDROCHLORIDE (BHN BAKU OBAT) COA 190527\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"GEMCITABINE HYDROCHLORIDE (BHN BAKU OBAT) COA 190527\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA. DOC0631921\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"SODIUM CARBONATE IPH (BHN BAKU OBAT) COA. DOC0631921\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPICILLIN TRIHYDRATE, PURICILLIN COMPACTED(BHN BAKU OBAT) COA. M842521,27,28,53,54\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411020\", \"uraian\": \"AMPICILLIN TRIHYDRATE, PURICILLIN COMPACTED(BHN BAKU OBAT) COA. M842521,27,28,53,54\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRISODIUM CITRATE 5.5-HYDRATE CRYST.,ERG.B,USP VIII ( BHN BAKU KOSMETIK), COA 3067308\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"TRISODIUM CITRATE 5.5-HYDRATE CRYST.,ERG.B,USP VIII ( BHN BAKU KOSMETIK), COA 3067308\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91905312\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX 504010 (BHN BAKU MAKANAN) COA XW91905312\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DWI-BI (BHN BAKU MAKANAN) COA XW91905316\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"DWI-BI (BHN BAKU MAKANAN) COA XW91905316\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT19030846,50\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT19030846,50\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90502140\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90502140\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90502140\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90502140\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90502140\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90502140\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30% FS (BHN BAKU MAKANAN) COA UE1810074\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30% FS (BHN BAKU MAKANAN) COA UE1810074\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30% FS (BHN BAKU MAKANAN) COA UE1810074\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30% FS (BHN BAKU MAKANAN) COA UE1810074\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30% FS (BHN BAKU MAKANAN) COA UE1810074\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30% FS (BHN BAKU MAKANAN) COA UE1810074\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT19040017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT19040017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT19040017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT19040017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10% CWS (BHN BAKU MAKANAN) COA UT18100062\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10% CWS (BHN BAKU MAKANAN) COA UT18100062\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18110382,83\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18110382,83\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3% (BHN BAKU SUPLEMEN) COA WB00418117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3% (BHN BAKU SUPLEMEN) COA WB00418117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1810151\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1810151\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBIC CRYSTALLINE, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01902124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBIC CRYSTALLINE, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01902124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25 KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01808405\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25 KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01808405\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30% FS (BHN BAKU MAKANAN) COA UE01810073\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30% FS (BHN BAKU MAKANAN) COA UE01810073\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3% (BHN BAKU SUPLEMEN) COA WB00518036\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3% (BHN BAKU SUPLEMEN) COA WB00518036\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3% (BHN BAKU SUPLEMEN) COA WB00518036\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3% (BHN BAKU SUPLEMEN) COA WB00518036\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3% (BHN BAKU SUPLEMEN) COA WB00518036\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3% (BHN BAKU SUPLEMEN) COA WB00518036\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91905321,22\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91905321,22\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3% (BHN BAKU SUPLEMEN) COA WB00518036\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3% (BHN BAKU SUPLEMEN) COA WB00518036\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3% (BHN BAKU SUPLEMEN) COA WB00518036\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3% (BHN BAKU SUPLEMEN) COA WB00518036\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18110340\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18110340\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10% CWS (BHN BAKU MAKANAN) COA UT18100063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10% CWS (BHN BAKU MAKANAN) COA UT18100063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11902006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11902006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3% (BHN BAKU SUPLEMEN) COA WB00418117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3% (BHN BAKU SUPLEMEN) COA WB00418117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3% (BHN BAKU SUPLEMEN) COA WB00418117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3% (BHN BAKU SUPLEMEN) COA WB00418117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3% (BHN BAKU SUPLEMEN) COA WB00418117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3% (BHN BAKU SUPLEMEN) COA WB00418117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT19040017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT19040017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20 KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01901001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20 KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01901001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ81103293\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ81103293\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01807311\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01807311\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3% (BHN BAKU SUPLEMEN) COA WB00418034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3% (BHN BAKU SUPLEMEN) COA WB00418034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3% (BHN BAKU SUPLEMEN) COA WB00418034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3% (BHN BAKU SUPLEMEN) COA WB00418034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3% (BHN BAKU SUPLEMEN) COA WB00418034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3% (BHN BAKU SUPLEMEN) COA WB00418034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 204005 (BHN BAKU MAKANAN) COA XW91905283\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 204005 (BHN BAKU MAKANAN) COA XW91905283\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25 KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01808405\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25 KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01808405\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25 KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01808405\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25 KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01808405\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11901014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11901014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25 KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01808405\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25 KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01808405\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBIC CRYSTALLINE, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01902124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBIC CRYSTALLINE, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01902124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25 KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01808414\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25 KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01808414\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25 KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01808414\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25 KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01808414\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBIC CRYSTALLINE, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01902124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBIC CRYSTALLINE, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01902124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25 KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01808414\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25 KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01808414\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25 KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01808414\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25 KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01808414\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE(BHN BAKU SUPLEMEN) COA UQ80813226\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE(BHN BAKU SUPLEMEN) COA UQ80813226\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20 KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01901001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20 KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01901001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20 KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01901001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20 KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01901001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE(BHN BAKU SUPLEMEN) COA UQ80813226\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE(BHN BAKU SUPLEMEN) COA UQ80813226\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3% (BHN BAKU SUPLEMEN) COA WB00418116,117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3% (BHN BAKU SUPLEMEN) COA WB00418116,117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3% (BHN BAKU SUPLEMEN) COA WB00418116\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3% (BHN BAKU SUPLEMEN) COA WB00418116\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3% (BHN BAKU SUPLEMEN) COA WB00518047\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3% (BHN BAKU SUPLEMEN) COA WB00518047\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE, 25 KG BOX/ALU (BHN BAKU SUPLEMEN) COA UQ90206035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE, 25 KG BOX/ALU (BHN BAKU SUPLEMEN) COA UQ90206035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90210040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90210040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90210040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90210040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90210040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90210040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90210038,40\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90210038,40\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1% WS (BHN BAKU SUPLEMEN) COA UT18120037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1% WS (BHN BAKU SUPLEMEN) COA UT18120037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1% WS (BHN BAKU SUPLEMEN) COA UT18120037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1% WS (BHN BAKU SUPLEMEN) COA UT18120037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01807311\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01807311\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01807311\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01807311\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3% (BHN BAKU SUPLEMEN) COA WB00418117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3% (BHN BAKU SUPLEMEN) COA WB00418117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP19063028,3029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP19063028,3029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP2010/USP40 (BHN BAKU OBAT) COA.NED190201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP2010/USP40 (BHN BAKU OBAT) COA.NED190201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT)COA L101851919\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200H (BHN BAKU OBAT)COA L101851919\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT)COA L101851919\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200H (BHN BAKU OBAT)COA L101851919\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BODY_3 COMPLEX (BHN BAKU KOSMETIK) COA B3C021218\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"BODY_3 COMPLEX (BHN BAKU KOSMETIK) COA B3C021218\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830017169K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL (BHN BAKU KOSMETIK) COA 830017169K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769017053K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHRONOLINE (BHN BAKU KOSMETIK) COA 769017053K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXO-T (BHN BAKU KOSMETIK) COA 715017060K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EXO-T (BHN BAKU KOSMETIK) COA 715017060K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXO-T (BHN BAKU KOSMETIK) COA 715017283K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EXO-T (BHN BAKU KOSMETIK) COA 715017283K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL (TM) (BHN BAKU KOSMETIK), COA 1835105\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL (TM) (BHN BAKU KOSMETIK), COA 1835105\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL (TM) (BHN BAKU KOSMETIK), COA 1901606\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL (TM) (BHN BAKU KOSMETIK), COA 1901606\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK), COA 828017058K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"NEUTRAZEN (BHN BAKU KOSMETIK), COA 828017058K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK), COA 5555018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ABYSSINE 657 (BHN BAKU KOSMETIK), COA 5555018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALDAVINE 5X (BHN BAKU KOSMETIK), COA 799037025K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALDAVINE 5X (BHN BAKU KOSMETIK), COA 799037025K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5% CLEAR (BHN BAKU KOSMETIK), COA 799037025K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5% CLEAR (BHN BAKU KOSMETIK), COA 799037025K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECOGEL (BHN BAKU KOSMETIK), COA 1834405\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ECOGEL (BHN BAKU KOSMETIK), COA 1834405\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXO-H (BHN BAKU KOSMETIK) COA 715026914J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EXO-H (BHN BAKU KOSMETIK) COA 715026914J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXO-T (BHN BAKU KOSMETIK) COA 715017283K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EXO-T (BHN BAKU KOSMETIK) COA 715017283K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL (TM) (BHN BAKU KOSMETIK), COA 1835103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL (TM) (BHN BAKU KOSMETIK), COA 1835103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELANOSTATINE-5 BG (50PPM) (BHN BAKU KOSMETIK), COA 817046741J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MELANOSTATINE-5 BG (50PPM) (BHN BAKU KOSMETIK), COA 817046741J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK), COA 1735916\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTENSO TM (BHN BAKU KOSMETIK), COA 1735916\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT-11 (BHN BAKU KOSMETIK), COA 784027203K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"TYROSTAT-11 (BHN BAKU KOSMETIK), COA 784027203K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT-09 (BHN BAKU KOSMETIK), COA 784016659J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"TYROSTAT-09 (BHN BAKU KOSMETIK), COA 784016659J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TEFOSE 63 (BHN BAKU OBAT) COA 174916\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TEFOSE 63 (BHN BAKU OBAT) COA 174916\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TEFOSE 63 (BAHAN BAKU OBAT) COA 175325\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TEFOSE 63 (BAHAN BAKU OBAT) COA 175325\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRECITOL ATO 5 (BAHAN BAKU OBAT) COA 173667\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"PRECITOL ATO 5 (BAHAN BAKU OBAT) COA 173667\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE A PELLETS (BAHAN BAKU OBAT) COA 18E2201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE A PELLETS (BAHAN BAKU OBAT) COA 18E2201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA.20190603\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17023010\", \"uraian\": \"DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA.20190603\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GLICLAZIDE (BHN BAKU OBAT) COA 1840001065-1840002667\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"GLICLAZIDE (BHN BAKU OBAT) COA 1840001065-1840002667\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BISOPROLOL FUMARATE USP (BHN BAKU OBAT) COA SLL/BF/0619002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"BISOPROLOL FUMARATE USP (BHN BAKU OBAT) COA SLL/BF/0619002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 2905182\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 2905182\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA. M531037,38,53,94,125\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA. M531037,38,53,94,125\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA. M596442,443,441\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA. M596442,443,441\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROVIMIX AD3 1000/200, 20KG BAG (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT19040355\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"ROVIMIX AD3 1000/200, 20KG BAG (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT19040355\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TEFOSE 63 (BHN BAKU OBAT) COA 174775\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TEFOSE 63 (BHN BAKU OBAT) COA 174775\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TEFOSE 63 (BHN BAKU OBAT) COA 175052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TEFOSE 63 (BHN BAKU OBAT) COA 175052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYMARIN (BHN BAKU SUPLEMEN) COA 19S0045602\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILYMARIN (BHN BAKU SUPLEMEN) COA 19S0045602\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYMARIN (BHN BAKU SUPLEMEN) COA 19S0045602\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILYMARIN (BHN BAKU SUPLEMEN) COA 19S0045602\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for P.GINGSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 32347/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"P.GINGSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 32347/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRTOGEL (BHN BAKU SUPLEMEN) COA 19S0167200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MIRTOGEL (BHN BAKU SUPLEMEN) COA 19S0167200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA TRITERPENES(BHN BAKU SUPLEMEN) COA 19S0002700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA TRITERPENES(BHN BAKU SUPLEMEN) COA 19S0002700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECHINACEA ANG. DRY PURIF.EX (BHN BAKU SUPLEMEN) COA 32767/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ECHINACEA ANG. DRY PURIF.EX (BHN BAKU SUPLEMEN) COA 32767/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for P.GINGSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 32347/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"P.GINGSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 32347/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SERENOA REPENS PURIFIED EXT.(BHN BAKU SUPLEMEN) COA 32905/B/1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SERENOA REPENS PURIFIED EXT.(BHN BAKU SUPLEMEN) COA 32905/B/1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA TRITERP./C (BHN BAKU SUPLEMEN) COA 19S0003400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA TRITERP./C (BHN BAKU SUPLEMEN) COA 19S0003400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BILBERRY (V.MYRTILLUSE)ET.EX.36% (BHN BAKU SUPLEMEN) COA 32920/M2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BILBERRY (V.MYRTILLUSE)ET.EX.36% (BHN BAKU SUPLEMEN) COA 32920/M2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC, 25 KG BOX (BHN BAKU KOSMETIK) COA 0000182299\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC, 25 KG BOX (BHN BAKU KOSMETIK) COA 0000182299\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC, 25 KG BOX (BHN BAKU KOSMETIK) COA 000182299\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC, 25 KG BOX (BHN BAKU KOSMETIK) COA 000182299\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC, 25 KG BOX (BHN BAKU KOSMETIK) COA 000182299\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC, 25 KG BOX (BHN BAKU KOSMETIK) COA 000182299\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11902006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11902006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30% FS (BHN BAKU MAKANAN) COA UE01810074,75\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30% FS (BHN BAKU MAKANAN) COA UE01810074,75\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18110339,40\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18110339,40\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50% CWS/S (BHN BAKU SUPLEMEN) COA UE01903020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50% CWS/S (BHN BAKU SUPLEMEN) COA UE01903020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01803014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01803014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01903676,77\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01903676,77\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01803014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01803014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10% CWS (BHN BAKU MAKANAN) COA UT18100063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10% CWS (BHN BAKU MAKANAN) COA UT18100063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11902006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11902006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18110340\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18110340\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91905335\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX 504010 (BHN BAKU MAKANAN) COA XW91905335\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT18120056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT18120056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 1,3-BUTYLENE GLYCOL, COSMETIC QUALITY(BHN BAKU KOSMETIK) COA P0619325CC\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"1,3-BUTYLENE GLYCOL, COSMETIC QUALITY(BHN BAKU KOSMETIK) COA P0619325CC\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY SGR CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET)COA GA654906\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY SGR CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET)COA GA654906\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY SGR RED (BHN BAKU OBAT UTK PEWARNA TABLET)COA GA654897\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY SGR RED (BHN BAKU OBAT UTK PEWARNA TABLET)COA GA654897\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY SGR RED (BHN BAKU OBAT UTK PEWARNA TABLET)COA GA654897\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY SGR RED (BHN BAKU OBAT UTK PEWARNA TABLET)COA GA654897\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT)COA L105711419\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200H (BHN BAKU OBAT)COA L105711419\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPSULAC (R) 60 (BHN BAKU OBAT)COA L100412119\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"CAPSULAC (R) 60 (BHN BAKU OBAT)COA L100412119\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK 90MM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9127927\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT PACK 90MM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9127927\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BISOPROLOL FUMARATE USP(BAHAN BAKU OBAT)COA LT-OBFM/001/19-12\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"BISOPROLOL FUMARATE USP(BAHAN BAKU OBAT)COA LT-OBFM/001/19-12\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ONDASENTRON HCL USP (BHN BAKU OBAT) COA 18OS002,18OS003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"ONDASENTRON HCL USP (BHN BAKU OBAT) COA 18OS002,18OS003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I72001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I72001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D111IBTL01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D111IBTL01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM CR...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I9L001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM CR...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I9L001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 10 PREMIUM...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D184GC1021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 10 PREMIUM...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D184GC1021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYMARIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 19B0002800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILYMARIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 19B0002800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN/ PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 19B0062700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILYBIN/ PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 19B0062700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLACHE-II (BHN BAKU KOSMETIK) COA 190200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLACHE-II (BHN BAKU KOSMETIK) COA 190200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 190809\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ABSORAGE (BHN BAKU KOSMETIK) COA 190809\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CINDERELLACARE (BHN BAKU KOSMETIK) COA 190257\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"CINDERELLACARE (BHN BAKU KOSMETIK) COA 190257\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IZYAOI (BHN BAKU KOSMETIK) COA 190106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"IZYAOI (BHN BAKU KOSMETIK) COA 190106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 182567\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 182567\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRINCESSCARE (BHN BAKU KOSMETIK) COA 182936\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PRINCESSCARE (BHN BAKU KOSMETIK) COA 182936\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIRJU (BHN BAKU KOSMETIK) COA 190242\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"CLAIRJU (BHN BAKU KOSMETIK) COA 190242\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG190607\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG190607\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OXFENDAZOLE (BHN BAKU OBAT UTK PAKAN TERNAK) COA LASA/L11/007/04/19\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"OXFENDAZOLE (BHN BAKU OBAT UTK PAKAN TERNAK) COA LASA/L11/007/04/19\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PACLITAXEL SEMISYNTHETIC (USP,TEST-2) (BHN BAKU OBAT) COA 899ESH012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"PACLITAXEL SEMISYNTHETIC (USP,TEST-2) (BHN BAKU OBAT) COA 899ESH012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROPYPHENAZONE (ST) (BHN BAKU OBAT) COA 1804031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331100\", \"uraian\": \"PROPYPHENAZONE (ST) (BHN BAKU OBAT) COA 1804031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1910188,1910190\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"PARACETAMOL (BHN BAKU OBAT) COA 1910188,1910190\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 2AX1906002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 2AX1906002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200 KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519050145\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200 KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519050145\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20 KG PAIL PE (BHN BAKU KOSMETIK) COA TL01902021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20 KG PAIL PE (BHN BAKU KOSMETIK) COA TL01902021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 25 KG PC (BHN BAKU KOSMETIK) COA 0219030052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 25 KG PC (BHN BAKU KOSMETIK) COA 0219030052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50, 5 KG BAG ALU (BHN BAKU KOSMETIK) COA CS18060029,30\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50, 5 KG BAG ALU (BHN BAKU KOSMETIK) COA CS18060029,30\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18120370\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18120370\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20 KG BOX (BHN BAKU KOSMETIK) COA 0319040609,10\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789, 20 KG BOX (BHN BAKU KOSMETIK) COA 0319040609,10\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 25 KG PC (BHN BAKU KOSMETIK) COA 0219030052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 25 KG PC (BHN BAKU KOSMETIK) COA 0219030052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180120,21\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180120,21\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200 KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519050145\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200 KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519050145\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OMEPRAZOLE PELLETS 8,5 PCT (BHN BAKU OBAT) COA OP0219C047\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"OMEPRAZOLE PELLETS 8,5 PCT (BHN BAKU OBAT) COA OP0219C047\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROSE ANHYDROUS (BHN BAKU OBAT UTK PAKAN TERNAK) COA XWA190422-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17023010\", \"uraian\": \"DEXTROSE ANHYDROUS (BHN BAKU OBAT UTK PAKAN TERNAK) COA XWA190422-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEVOFLOXACIN HEMIHYDRATE (BHN BAKU OBAT) COA C008-1906601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"LEVOFLOXACIN HEMIHYDRATE (BHN BAKU OBAT) COA C008-1906601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNOLIA BARK EXTRACT (BHN BAKU KOSMETIK) COA MBE05-181105\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MAGNOLIA BARK EXTRACT (BHN BAKU KOSMETIK) COA MBE05-181105\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROPYPHENAZONE (ST) (BHN BAKU OBAT UTK PEWARNA TABLET) COA 1810254-58\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331100\", \"uraian\": \"PROPYPHENAZONE (ST) (BHN BAKU OBAT UTK PEWARNA TABLET) COA 1810254-58\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO190403\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO190403\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-001-W, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-001-W, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-001-W, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-001-W, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KOPCINOL (BHN BAKU KOSMETIK) COA K043.1/19/05/032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KOPCINOL (BHN BAKU KOSMETIK) COA K043.1/19/05/032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JAGUAR C 162 CARDBOARD BOX 25 KG (BHN BAKU KOSMETIK) COA MJAC19044B\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"JAGUAR C 162 CARDBOARD BOX 25 KG (BHN BAKU KOSMETIK) COA MJAC19044B\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA. 20190611\""}, {"role": "assistant", "content": "{\"hs_code\" : \"11081200\", \"uraian\": \"CORN STARCH (BHN BAKU MAKANAN) COA. 20190611\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILVERION 2400 (BHN BAKU KOSMETIK) COA.17-12214\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILVERION 2400 (BHN BAKU KOSMETIK) COA.17-12214\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLOTRIMAZOLE MICRONIZED (BHN BAKU OBAT ) COA 201904060015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"CLOTRIMAZOLE MICRONIZED (BHN BAKU OBAT ) COA 201904060015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA. M531131 S/D 34,36,37\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA. M531131 S/D 34,36,37\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRAMIPEXOLE DIHYDROCHLORIDE MONOHYDRATE (BHN BAKU OBAT) COA PP0050818\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29342000\", \"uraian\": \"PRAMIPEXOLE DIHYDROCHLORIDE MONOHYDRATE (BHN BAKU OBAT) COA PP0050818\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRAMIPEXOLE DIHYDROCHLORIDE MONOHYDRATE (BHN BAKU OBAT) COA PP0061218\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29342000\", \"uraian\": \"PRAMIPEXOLE DIHYDROCHLORIDE MONOHYDRATE (BHN BAKU OBAT) COA PP0061218\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRAMIPEXOLE DIHYDROCHLORIDE MONOHYDRATE (BHN BAKU OBAT) COA PP0010319\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29342000\", \"uraian\": \"PRAMIPEXOLE DIHYDROCHLORIDE MONOHYDRATE (BHN BAKU OBAT) COA PP0010319\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET), COA WP814247\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET), COA WP814247\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID 325 MESH, 2OKG ... (BAHAN BAKU SUPLEMEN) COA HPD1901121,28,906036,38...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID 325 MESH, 2OKG ... (BAHAN BAKU SUPLEMEN) COA HPD1901121,28,906036,38...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC CALCIUM ASCORBATE DC, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPT1906009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC CALCIUM ASCORBATE DC, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPT1906009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID DC 97PCT, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG1902002,2003,2006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID DC 97PCT, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG1902002,2003,2006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 19B0032000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 19B0032000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 19B0047800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 19B0047800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPPLEMEN) COA 19B0047900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPPLEMEN) COA 19B0047900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPPLEMEN) COA 19B0048000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPPLEMEN) COA 19B0048000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0048100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0048100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HAWTHORN DRY EXTRACT 1.8PCT (BHN BAKU SUPLEMEN) COA 10908/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HAWTHORN DRY EXTRACT 1.8PCT (BHN BAKU SUPLEMEN) COA 10908/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PASSION FLOWER D.H.E 4PCT (BHN BAKU SUPLEMEN) COA 10926/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PASSION FLOWER D.H.E 4PCT (BHN BAKU SUPLEMEN) COA 10926/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VALERIAN D.H.E 0,8PCT VAL.AC (BHN BAKU SUPLEMEN) COA 19B0006900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VALERIAN D.H.E 0,8PCT VAL.AC (BHN BAKU SUPLEMEN) COA 19B0006900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VALERIAN D.H.E 0.8PCT VAL.AC (BHN BAKU SUPLEMEN) COA 19B0013500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VALERIAN D.H.E 0.8PCT VAL.AC (BHN BAKU SUPLEMEN) COA 19B0013500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BUTCHERBROOM DRY HYDR EX 9-11PCT (BHN BAKU SUPLEMEN) COA 10678/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BUTCHERBROOM DRY HYDR EX 9-11PCT (BHN BAKU SUPLEMEN) COA 10678/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 13590619,14320619...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 13590619,14320619...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 15010619,15030619,15050619...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 15010619,15030619,15050619...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 14320619\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 14320619\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CATECHINS (TEA EXTRACT) (BHN BAKU SUPLEMEN KESEHATAN), COA 809071\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"CATECHINS (TEA EXTRACT) (BHN BAKU SUPLEMEN KESEHATAN), COA 809071\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP19063145, 146\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP19063145, 146\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID S 20 (BHN BAKU OBAT) COA. 572000-2190127/001-024 (24)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232010\", \"uraian\": \"LIPOID S 20 (BHN BAKU OBAT) COA. 572000-2190127/001-024 (24)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LICOMYCIN HCL EP (BHN BAKU OBAT) COA 1905010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"LICOMYCIN HCL EP (BHN BAKU OBAT) COA 1905010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TETRACYCLINE HYDROCHLORIDE (BHN BAKU OBAT) COA 190606-61, 190605-02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29413000\", \"uraian\": \"TETRACYCLINE HYDROCHLORIDE (BHN BAKU OBAT) COA 190606-61, 190605-02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20190617\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20190617\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEVOFLOXACIN HEMIHYDRATE (FREE ALKALINE) (BHN BAKU OBAT) COA C008-1906601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"LEVOFLOXACIN HEMIHYDRATE (FREE ALKALINE) (BHN BAKU OBAT) COA C008-1906601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) , COA 906133\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6017 (17KG) (BHN BAKU KOSMETIK) , COA 906133\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) , COA 906212\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6028 (16KG) (BHN BAKU KOSMETIK) , COA 906212\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18100055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18100055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOCETAXEL TRIHYDRATE (BHN BAKU OBAT) COA 201811004, 201904003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"DOCETAXEL TRIHYDRATE (BHN BAKU OBAT) COA 201811004, 201904003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELANOSTATINE 5BG (BHN BAKU KOSMETIK) COA 817047308K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MELANOSTATINE 5BG (BHN BAKU KOSMETIK) COA 817047308K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MINIPORYL (BHN BAKU KOSMETIK) COA 832017233K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MINIPORYL (BHN BAKU KOSMETIK) COA 832017233K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519030092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519030092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ80813230\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ80813230\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519030092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519030092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0319050684, 685, 686\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0319050684, 685, 686\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519030092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519030092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01807311\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE01807311\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01807311\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE01807311\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91906266\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91906266\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19010089, UT19050090\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19010089, UT19050090\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NECTAR DE MATCHA FEMA P114 6 (BHN BAKU OBAT) COA.0000027992\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"NECTAR DE MATCHA FEMA P114 6 (BHN BAKU OBAT) COA.0000027992\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP804552\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #5/TARTRAZINE AL ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP804552\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C RED #40/ALLURA RED AC AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP806874\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C RED #40/ALLURA RED AC AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP806874\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP811054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP811054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP788130:1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"ERYTHROSINE AL 38PCT-42PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP788130:1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190615\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190615\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB00319233\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB00319233\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT689944\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT689944\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT690389\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPAGLOS WHITE/OFF-WHITE (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT690389\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CONFECTIONERY INK BLUE (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT689987\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"CONFECTIONERY INK BLUE (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT689987\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENTRY POLYOX WSR 303 LEO NF (BHN BAKU OBAT UTK PEWARNA TABLET), COA D6821BRRR3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"SENTRY POLYOX WSR 303 LEO NF (BHN BAKU OBAT UTK PEWARNA TABLET), COA D6821BRRR3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MILD TALCUM MOD1 (BHN BAKU KOSMETIK) COA 10300170\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MILD TALCUM MOD1 (BHN BAKU KOSMETIK) COA 10300170\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTISHINE WASH 1 (BHN BAKU KOSMETIK) COA 10300125\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ANTISHINE WASH 1 (BHN BAKU KOSMETIK) COA 10300125\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTISHINE WASH (BHN BAKU KOSMETIK) COA 10300075\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ANTISHINE WASH (BHN BAKU KOSMETIK) COA 10300075\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURE GREEN B AND W PIT (BHN BAKU KOSMETIK) COA 10300051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PURE GREEN B AND W PIT (BHN BAKU KOSMETIK) COA 10300051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED GRADE P) BHN BAKU OBAT,COA. M596492\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED GRADE P) BHN BAKU OBAT,COA. M596492\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OMEPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W)BHN BAKU OBAT) COA AOSS19004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"OMEPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W)BHN BAKU OBAT) COA AOSS19004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT19040858, 59,60\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT19040858, 59,60\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RANITIDINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA RH388 05 19\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29321900\", \"uraian\": \"RANITIDINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA RH388 05 19\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISONE USP40 (BHN BAKU OBAT) COA NPD 190708\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISONE USP40 (BHN BAKU OBAT) COA NPD 190708\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROSE ANHYDROUS (BHN BAKU OBAT UTK PAKAN TERNAK) COA XWA190422-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17023010\", \"uraian\": \"DEXTROSE ANHYDROUS (BHN BAKU OBAT UTK PAKAN TERNAK) COA XWA190422-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA ROA175197\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA ROA175197\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 15860619,15870619...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 15860619,15870619...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT GRAPE CSB (BHN BAKU KOSMETIK) COA 01/17GUVA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT GRAPE CSB (BHN BAKU KOSMETIK) COA 01/17GUVA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT GRAPE (BAHAN BAKU KOSMETIK) COA 01/17GUVA, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT GRAPE (BAHAN BAKU KOSMETIK) COA 01/17GUVA, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELUCIRE 43/01 PELLETS (BAHAN BAKU OBAT) COA 17E4602\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELUCIRE 43/01 PELLETS (BAHAN BAKU OBAT) COA 17E4602\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9105960\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9105960\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 65X15 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9042780\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE STERILE RODAC EMPTY 65X15 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9042780\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9023839\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9023839\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9049688\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9049688\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141966\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141966\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 9010685\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 9010685\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8297883\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8297883\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 8271693\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 8271693\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8269714\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8269714\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255977\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255977\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9021613\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9021613\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8256826\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8256826\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9092586\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9092586\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9030984\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9030984\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8206594\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8206594\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9079880\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9079880\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9038791\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9038791\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8129682\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8129682\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8227621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8227621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9029985\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9029985\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9084525\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9084525\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2A AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8317859\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE R2A AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8317859\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9079916\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9079916\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8310579\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8310579\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9107565\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9107565\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9014512\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9014512\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8382931\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8382931\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8281627\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8281627\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8260535\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8260535\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9121588\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9121588\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8206836\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8206836\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 65X15 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9098631\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE STERILE RODAC EMPTY 65X15 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9098631\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BLOOD AGAR BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9023839\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BLOOD AGAR BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9023839\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9049688\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9049688\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 83055685\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 83055685\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8271693\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8271693\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8269714\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8269714\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8312962\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8312962\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255977\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255977\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8256826\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8256826\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9092586\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9092586\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8206594\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8206594\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9038791\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9038791\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9029985\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9029985\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8317859\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8317859\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9079916\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9079916\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9014523\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9014523\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142519\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142519\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8282931\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8282931\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9028852\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9028852\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142666\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142666\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DICHLORAN ROSE BENGAL CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8354556\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DICHLORAN ROSE BENGAL CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8354556\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9050755\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9050755\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8211649\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8211649\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025977\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025977\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9084661\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9084661\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9100996\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9100996\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MR-VP BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9148534\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MR-VP BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9148534\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9003524\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9003524\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9028828\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9028828\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY II AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255703\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY II AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255703\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE OXGALL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8297826\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE OXGALL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8297826\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL BACTO AGAR 10KG (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9163843\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PAIL BACTO AGAR 10KG (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9163843\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TREHALOSE 10G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9066673\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TREHALOSE 10G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9066673\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS MSRV 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8312875\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS MSRV 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8312875\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8084697\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8084697\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HINLON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8312890\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MUELLER HINLON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8312890\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NITRATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8129685\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE NITRATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8129685\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025865\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025865\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8310633\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BAIRD HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8310633\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9112968\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9112968\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9107528\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9107528\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8317917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8317917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG B03B144M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG B03B144M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8337715\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8337715\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084966\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084966\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHENYLALANINE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7255671\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PHENYLALANINE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7255671\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297871\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MYCOPLASMA BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297871\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TETRATHIONATE BR BASE HAJNA 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084922\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TETRATHIONATE BR BASE HAJNA 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084922\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8024751\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8024751\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9094798\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9094798\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8304929\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8304929\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MARINE AGAR 2216 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9070997\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MARINE AGAR 2216 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9070997\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CHRO MAGAR CANDIDA 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9101733\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CHRO MAGAR CANDIDA 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9101733\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ISP MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9128891\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ISP MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9128891\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9071655,855\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9071655,855\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9023839\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9023839\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297702,706,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297702,706,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297883\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297883\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 8269714\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 8269714\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9030984\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LEVINE EMB AGAR BBL 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9030984\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8170732,8206594\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8170732,8206594\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9014523\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9014523\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8282931\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8282931\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9091855\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9091855\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9049688\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9049688\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9079880\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9079880\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) COA 9107565\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) COA 9107565\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8281627\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8281627\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9094798,9121588\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9094798,9121588\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8331811\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8331811\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9091914\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9091914\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKIROORGANISME) BATCH 8255977\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKIROORGANISME) BATCH 8255977\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 91215884\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 91215884\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9121588\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9121588\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8130513\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8130513\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9086804\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9086804\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9129972\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9129972\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9144945\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9144945\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LCD22119T\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101990\", \"uraian\": \"SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LCD22119T\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02B086M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02B086M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TERGITOL 4 XLT4 SUPPLEMENT 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH SLCB3712\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TERGITOL 4 XLT4 SUPPLEMENT 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH SLCB3712\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0050319\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0050319\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANSOPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA LP0219C027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"LANSOPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA LP0219C027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8207980\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8207980\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9037956\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9037956\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9116925\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9116925\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8334767\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8334767\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG L& P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9049874\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG L& P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9049874\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9079720\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9079720\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 8219521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 8219521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233839\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233839\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 8285857\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 8285857\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8248932\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8248932\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9025804\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9025804\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9116925\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9116925\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9116925\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9116925\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9155608\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANTI MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9155608\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD19 PE-CY7 SJ25C1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9086520\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD19 PE-CY7 SJ25C1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9086520\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 APC H7 SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9121572\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 APC H7 SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9121572\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD79A PE HM47 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9065915\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD79A PE HM47 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9065915\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD38 APC H7 (HB7) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9114884\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD38 APC H7 (HB7) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9114884\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9116925\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9116925\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9165530\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9165530\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 PERCP SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9126824\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD3 PERCP SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9126824\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD8 FITC SK1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9099512\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD8 FITC SK1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9099512\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9099563\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9099563\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9115632\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9115632\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9077594\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9077594\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9070562\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9070562\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161530\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161530\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161778\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161778\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9162907\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9162907\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9058622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9058622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD CST BEADS KIT 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 903996\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BD CST BEADS KIT 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 903996\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD79A PE HM47 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9165797\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD79A PE HM47 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9165797\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU FOXP3 PE 259D/C7 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8138503\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU FOXP3 PE 259D/C7 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8138503\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD36 FITC CB38 (NL07) 100TST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8225528\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD36 FITC CB38 (NL07) 100TST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8225528\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8334767\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8334767\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8338844\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT EM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8338844\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8156756\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8156756\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9039992\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9039992\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CELL VIABILITY KIT 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9029826\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CELL VIABILITY KIT 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9029826\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 05062019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25081000\", \"uraian\": \"BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 05062019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANOLINE ANHYDROUS (BHN BAKU KOSMETIK) COA 4932\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LANOLINE ANHYDROUS (BHN BAKU KOSMETIK) COA 4932\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANOLIN ANHYDROUS (BHN BAKU KOSMETIK) COA 4932,4933,4934\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LANOLIN ANHYDROUS (BHN BAKU KOSMETIK) COA 4932,4933,4934\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY FX YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA656328\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY FX YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA656328\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D0180J3E002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D0180J3E002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 04119/005976\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 04119/005976\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 021319/005928\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 021319/005928\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KM-9729 (BHN BAKU KOSMETIK) , COA 906198,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KM-9729 (BHN BAKU KOSMETIK) , COA 906198,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DERMOFEEL G 10L (BHN BAKU KOSMETIK) COA LT19500476\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"DERMOFEEL G 10L (BHN BAKU KOSMETIK) COA LT19500476\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT (BHN BAKU OBAT) COA NZ1198\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT (BHN BAKU OBAT) COA NZ1198\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPICILLIN TRIHYDRATE, PURICILLIN COMPACTED(BHN BAKU OBAT) COA. M842567 S/D 572\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411020\", \"uraian\": \"AMPICILLIN TRIHYDRATE, PURICILLIN COMPACTED(BHN BAKU OBAT) COA. M842567 S/D 572\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1903081943\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1903081943\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DESONIDE MICRONIZED (BHN BAKU OBAT) COA NX2905M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"DESONIDE MICRONIZED (BHN BAKU OBAT) COA NX2905M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EPA DHA 44 37 (BHN SUPLEMEN KESEHATAN) COA EE4437-190701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"EPA DHA 44 37 (BHN SUPLEMEN KESEHATAN) COA EE4437-190701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MONENDOX 200 BMP (BHN BAKU OBAT UTK PAKAN TERNAK) COA 1006191\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"MONENDOX 200 BMP (BHN BAKU OBAT UTK PAKAN TERNAK) COA 1006191\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT... (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP814308\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"D AND C YELLOW #10 AL 15PCT-20PCT... (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP814308\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT... (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP8143064\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"D AND C YELLOW #10 AL 15PCT-20PCT... (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP8143064\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT... (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP814308\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"D AND C YELLOW #10 AL 15PCT-20PCT... (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP814308\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D AND C YELLOW #10 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP814306\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"D AND C YELLOW #10 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP814306\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTIZOXIME SODIUM (BHN BAKU OBAT) COA S600300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTIZOXIME SODIUM (BHN BAKU OBAT) COA S600300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SORBITOL SOLUTION USP 70PCT CRYSTALLISING (BAHAN BAKU KOSMETIK) COA 2331920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054400\", \"uraian\": \"SORBITOL SOLUTION USP 70PCT CRYSTALLISING (BAHAN BAKU KOSMETIK) COA 2331920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT19050868\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT19050868\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT690957\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT690957\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND190206\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND190206\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT)COA L105712119\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200H (BHN BAKU OBAT)COA L105712119\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618492\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618492\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP2010/USP40 (BHN BAKU OBAT) COA.NED190202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP2010/USP40 (BHN BAKU OBAT) COA.NED190202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPICILLIN TRIHYDRATE (PURICILLIN POWDER) (BHN BAKU OBAT),COA. M780826\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411020\", \"uraian\": \"AMPICILLIN TRIHYDRATE (PURICILLIN POWDER) (BHN BAKU OBAT),COA. M780826\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIRACETAM (INJECTABLE GRADE) BHN BAKU OBAT COA. PIR01119\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29337900\", \"uraian\": \"PIRACETAM (INJECTABLE GRADE) BHN BAKU OBAT COA. PIR01119\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RUGENER DREIKRONEN HEILKREIDE 25K (BHN BAKU KOSMETIK) COA 81678637\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"RUGENER DREIKRONEN HEILKREIDE 25K (BHN BAKU KOSMETIK) COA 81678637\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINKGO EXTRACT (BHN BAKU KOSMETIK) COA 81678637\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"GINKGO EXTRACT (BHN BAKU KOSMETIK) COA 81678637\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VEEGUM K 20K BAG (BHN BAKU KOSMETIK) COA 81681676\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"VEEGUM K 20K BAG (BHN BAKU KOSMETIK) COA 81681676\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00119214\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00119214\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00319233\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00319233\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00918689\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00918689\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00319233\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00319233\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EDIBLE BOVINE GELATINE (BAHAN BAKU OBAT ), COA 5001904890,894\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35030049\", \"uraian\": \"EDIBLE BOVINE GELATINE (BAHAN BAKU OBAT ), COA 5001904890,894\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EPIRUBICIN HYDROCHLORIDE BP/PHARMM EUR (BHN BAKU OBAT) COA FY0241\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"EPIRUBICIN HYDROCHLORIDE BP/PHARMM EUR (BHN BAKU OBAT) COA FY0241\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP19063196,197\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP19063196,197\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ90103017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ90103017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19010089,19050090\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19010089,19050090\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91906225\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91906225\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91906213\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX 504010 (BHN BAKU MAKANAN) COA XW91906213\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19010089\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19010089\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW91906389\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW91906389\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19040017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19040017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 103093-A (BHN BAKU MAKANAN) COA XW91906344,6345\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 103093-A (BHN BAKU MAKANAN) COA XW91906344,6345\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01810075\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01810075\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01810075\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01810075\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.PCT WS (BHN BAKU SUPLEMEN) COA UT18120037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.PCT WS (BHN BAKU SUPLEMEN) COA UT18120037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT(BHN BAKU SUPLEMEN) COA WB00418117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT(BHN BAKU SUPLEMEN) COA WB00418117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5' PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1812181\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5' PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1812181\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5' PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1812181\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5' PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1812181\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19010006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19010006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM ASCORBATE,25KG BOX ALU (BHN BAKU SUPLEMEN) COA WB00119006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"CALCIUM ASCORBATE,25KG BOX ALU (BHN BAKU SUPLEMEN) COA WB00119006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT19030176\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT19030176\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18110383\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18110383\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19010006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19010006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00918689\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00918689\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00119214\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00119214\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRANOL ULTRA C-32 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP90420IR,BP906329R\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34029099\", \"uraian\": \"MIRANOL ULTRA C-32 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP90420IR,BP906329R\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SUBQ 2ML D16 , COA 16563-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE SUBQ 2ML D16 , COA 16563-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SKINB VITALLGHLIDO 1MLD16, COA 17063-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE SKINB VITALLGHLIDO 1MLD16, COA 17063-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE REFYNE 1 ML ,COA 16769-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE REFYNE 1 ML ,COA 16769-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617906\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617906\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618812\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618812\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617919\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617919\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617838\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617838\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617839\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617839\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617909\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617909\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617925\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617925\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618809\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618809\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617908\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617908\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618667\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618667\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617922\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617922\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617918\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617918\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618810\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618810\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618810\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618810\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617924\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617924\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECHINACEA PURPUREA DRY AQUEOUS EXTRACT 0,8PCT (BAHAN BAKU SUPLEMEN) COA 10226/M2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ECHINACEA PURPUREA DRY AQUEOUS EXTRACT 0,8PCT (BAHAN BAKU SUPLEMEN) COA 10226/M2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FENTACARE 2231 EF (BHN BAKU KOSMETIK )COA ZH19E1303,ZHI9G0403...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34029019\", \"uraian\": \"FENTACARE 2231 EF (BHN BAKU KOSMETIK )COA ZH19E1303,ZHI9G0403...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NOREPINEPHRINE BITARTRATE ,BHN BAKU OBAT, COA 510104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29379010\", \"uraian\": \"NOREPINEPHRINE BITARTRATE ,BHN BAKU OBAT, COA 510104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX TM POWDER, CEFADROXILE MONOHYDRATE (BHN BAKU OBAT) COA B334640, 41,42\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX TM POWDER, CEFADROXILE MONOHYDRATE (BHN BAKU OBAT) COA B334640, 41,42\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-RIBOSE (BHN BAKU OBAT) COA ZN190719\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29400000\", \"uraian\": \"D-RIBOSE (BHN BAKU OBAT) COA ZN190719\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/07/050719-2, ASG/07/060719-1...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/07/050719-2, ASG/07/060719-1...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CINNARIZINE (BHN BAKU OBAT) COA CIN1907012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"CINNARIZINE (BHN BAKU OBAT) COA CIN1907012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA C01781UP\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA C01781UP\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMETHAZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA HPHCPN019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29343000\", \"uraian\": \"PROMETHAZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA HPHCPN019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OXOMEMAZINE BASE (BHN BAKU OBAT) COA HXBCPN002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29343000\", \"uraian\": \"OXOMEMAZINE BASE (BHN BAKU OBAT) COA HXBCPN002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785017553K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785017553K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELANOSTATINE -5BG (50PPM) (BHN BAKU KOSMETIK) COA 817047448K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MELANOSTATINE -5BG (50PPM) (BHN BAKU KOSMETIK) COA 817047448K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRO LIPO TM NEO (BHN BAKU KOSMETIK) COA 1908602\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PRO LIPO TM NEO (BHN BAKU KOSMETIK) COA 1908602\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ISOCELL TM SLIM (DISC) (BHN BAKU KOSMETIK) COA 1912801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ISOCELL TM SLIM (DISC) (BHN BAKU KOSMETIK) COA 1912801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELANOSTATINE 5BG (50PPM) (BHN BAKU KOSMETIK) COA 817047448K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MELANOSTATINE 5BG (50PPM) (BHN BAKU KOSMETIK) COA 817047448K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT -09 (BHN BAKU KOSMETIK), COA 784017474K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"TYROSTAT -09 (BHN BAKU KOSMETIK), COA 784017474K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK), COA 5555018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ABYSSINE 657 (BHN BAKU KOSMETIK), COA 5555018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK), COA 1901606\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK), COA 1901606\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELANOSTATINE-5 BG (50PPM) (BHN BAKU KOSMETIK), COA 817047448K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MELANOSTATINE-5 BG (50PPM) (BHN BAKU KOSMETIK), COA 817047448K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MINIPORYL (BHN BAKU KOSMETIK), COA 832017233K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MINIPORYL (BHN BAKU KOSMETIK), COA 832017233K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK), COA 828017058K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"NEUTRAZEN (BHN BAKU KOSMETIK), COA 828017058K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA. 8MT190654\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30032000\", \"uraian\": \"STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA. 8MT190654\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIFE'S DHA S35-O100, 5KG ALUF (B.BAKU SUPLEMEN) COA VY00304717\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"LIFE'S DHA S35-O100, 5KG ALUF (B.BAKU SUPLEMEN) COA VY00304717\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-100519,S-1270619\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334910\", \"uraian\": \"DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-100519,S-1270619\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NABUMETONE (BHN BAKU OBAT) COA H-2001118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29145000\", \"uraian\": \"NABUMETONE (BHN BAKU OBAT) COA H-2001118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT)COA L101852119\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200H (BHN BAKU OBAT)COA L101852119\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA ROA187194\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA ROA187194\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180IB8003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM HYDROXYPROPYL... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180IB8003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I2O003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I2O003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15 PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D0180I8H003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15 PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D0180I8H003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CATCOL C 135 (L) GRADE (BAHAN BAKU KOSMETIK) COA 528/19\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CATCOL C 135 (L) GRADE (BAHAN BAKU KOSMETIK) COA 528/19\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT ) COA MTP18719\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT ) COA MTP18719\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHISOPRINOL (BHN BAKU OBAT) COA.MTP9050161\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"METHISOPRINOL (BHN BAKU OBAT) COA.MTP9050161\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 1907802230\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29322090\", \"uraian\": \"SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 1907802230\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ90110003,UQ90510127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ90110003,UQ90510127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90510127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90510127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200 KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519030092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200 KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519030092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91907036\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91907036\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91907038 S/D 41\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91907038 S/D 41\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REFINED COCONUT OIL -GV 24/26 (BHN BAKU KOSMETIK)COA 19F0901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15131910\", \"uraian\": \"REFINED COCONUT OIL -GV 24/26 (BHN BAKU KOSMETIK)COA 19F0901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT(BHN BAKU KOSMETIK)COA HEA180705\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT(BHN BAKU KOSMETIK)COA HEA180705\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INCA INCHI ORGANIC LIPACTIVE (BHN BAKU KOSMETIK)COA II190202-AI-D-BIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"INCA INCHI ORGANIC LIPACTIVE (BHN BAKU KOSMETIK)COA II190202-AI-D-BIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LOTUS OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA NEN190503-H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LOTUS OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA NEN190503-H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ONDANSETRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA 18OS003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"ONDANSETRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA 18OS003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG 3(TM) '10' N-3 INF POWDER S/SD(BHN BAKU MAKANAN) COA UT18040042\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG 3(TM) '10' N-3 INF POWDER S/SD(BHN BAKU MAKANAN) COA UT18040042\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GENIVIDA (TM) TG ,1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT17080005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"GENIVIDA (TM) TG ,1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT17080005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18090032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18090032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19020012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19020012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FRUITFLOW II SD, 1KG BAL (BHN BAKU SUPLEMEN) COA 19095\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"FRUITFLOW II SD, 1KG BAL (BHN BAKU SUPLEMEN) COA 19095\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18100055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18100055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20%S (BHN BAKU SUPLEMEN) COA UT18090032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20%S (BHN BAKU SUPLEMEN) COA UT18090032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COATED ASCORBIC ACID TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01905715\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"COATED ASCORBIC ACID TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01905715\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18090032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18090032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19020012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19020012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF, 1KG ALUF (BHN BAKU SUPLEMEN) COA UE01811060\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO (R) LUTEIN 20PCT SAF, 1KG ALUF (BHN BAKU SUPLEMEN) COA UE01811060\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAROCARE NAT BC 20PCT CWS/S-TG,10KG BAG (BHN BAKU SUPLEMEN) COA EW19042007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"CAROCARE NAT BC 20PCT CWS/S-TG,10KG BAG (BHN BAKU SUPLEMEN) COA EW19042007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COATED ASCORBIC ACID, TYPE EC, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01903316,63,65\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"COATED ASCORBIC ACID, TYPE EC, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01903316,63,65\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18090032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18090032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF, 1KG ALUF (BHN BAKU SUPLEMEN) COA UE01901004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO (R) LUTEIN 20PCT SAF, 1KG ALUF (BHN BAKU SUPLEMEN) COA UE01901004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00419407\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00419407\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ90107003,7004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ90107003,7004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1910804, 1910813, 1951408,1930434\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"PARACETAMOL (BHN BAKU OBAT) COA 1910804, 1910813, 1951408,1930434\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLUOROMETHOLONE MICRONISED USP BP JP (BHN BAKU OBAT) COA 1901370183\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"FLUOROMETHOLONE MICRONISED USP BP JP (BHN BAKU OBAT) COA 1901370183\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NYSTATIN MICRONIZED ROW (BHN BAKU OBAT) COA C131120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NYSTATIN MICRONIZED ROW (BHN BAKU OBAT) COA C131120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NYSTATIN POWDER (BHN BAKU OBAT) COA C114333\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NYSTATIN POWDER (BHN BAKU OBAT) COA C114333\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NYSTATIN MICRONIZED (BHN BAKU OBAT) COA C131171\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NYSTATIN MICRONIZED (BHN BAKU OBAT) COA C131171\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRTOGENOL (R) (BHN BAKU SUPLEMEN) COA 80377/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MIRTOGENOL (R) (BHN BAKU SUPLEMEN) COA 80377/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE BM PELLETS (BHN BAKU OBAT) COA 19E1304\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE BM PELLETS (BHN BAKU OBAT) COA 19E1304\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LABRAFIL M 1944 CS (BAHAN BAKU OBAT) COA 175446\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LABRAFIL M 1944 CS (BAHAN BAKU OBAT) COA 175446\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LABRAFIL M 1944 CS (BAHAN BAKU OBAT) COA 175543\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LABRAFIL M 1944 CS (BAHAN BAKU OBAT) COA 175543\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELUCIRE 44/14 (BAHAN BAKU OBAT) COA 175733\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELUCIRE 44/14 (BAHAN BAKU OBAT) COA 175733\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRECIROL ATO 5 (BHN BAKU OBAT) COA 175002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"PRECIROL ATO 5 (BHN BAKU OBAT) COA 175002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYOSCINE BUTYL BROMIDE EP/BP (BHN BAKU OBAT) COA.2520519\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"HYOSCINE BUTYL BROMIDE EP/BP (BHN BAKU OBAT) COA.2520519\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C BLUE 32/INDIGO CARMINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP804675\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C BLUE 32/INDIGO CARMINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP804675\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW 36/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP809104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW 36/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP809104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D AND C YELLOW 310 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP814308\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"D AND C YELLOW 310 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP814308\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C BLUE #1/BRILLIANT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP805966\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C BLUE #1/BRILLIANT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP805966\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP - PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP811063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP - PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP811063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP807298\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP807298\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP804552\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP804552\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP802028-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"ERYTHROSINE AL 38PCT-42PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP802028-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/50 SODIUM BICARBONATE (BHN BAKU OBAT ) COA MTP19919\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/50 SODIUM BICARBONATE (BHN BAKU OBAT ) COA MTP19919\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU OBAT) COA MTP03819\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU OBAT) COA MTP03819\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU OBAT) COA MTP09219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU OBAT) COA MTP09219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT BLACK TEA POWDER TH B430 (BHN BAKU MAKANAN) COA 2019062403\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"INSTANT BLACK TEA POWDER TH B430 (BHN BAKU MAKANAN) COA 2019062403\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GUAIFENESIN USP (BHN BAKU OBAT) COA GGE-1907159 TO GGE 1907168,GGE-1906155 TO GGE 1906158\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29094900\", \"uraian\": \"GUAIFENESIN USP (BHN BAKU OBAT) COA GGE-1907159 TO GGE 1907168,GGE-1906155 TO GGE 1906158\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000182784\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000182784\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01902023,3025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01902023,3025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01902805\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01902805\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0219030052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0219030052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0718110176\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0718110176\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519030092,50145\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519030092,50145\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX ,25KG PC (BHN BAKU KOSMETIK) COA 0519010008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX ,25KG PC (BHN BAKU KOSMETIK) COA 0519010008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001529534\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SLX (BHN BAKU KOSMETIK) COA 0001529534\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ80813230\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ80813230\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD,20KG BOX (BHN BAKU KOSMETIK) COA 0819030067,68\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD,20KG BOX (BHN BAKU KOSMETIK) COA 0819030067,68\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MINERAL PREMIX FOR POWDER DRINK (BHN BAKU KOSMETIK) COA XW91907022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"MINERAL PREMIX FOR POWDER DRINK (BHN BAKU KOSMETIK) COA XW91907022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20190202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20190202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20190202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20190202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19030004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19030004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19030004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19030004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN), COA UT19030004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN), COA UT19030004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19030014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19030014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20190202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20190202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISONE USP42 (BHN BAKU OBAT) COA.NPD190404, NPD190708\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISONE USP42 (BHN BAKU OBAT) COA.NPD190404, NPD190708\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.NED190707, NED190710\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.NED190707, NED190710\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROSE ANHYDROUS (BHN BAKU OBAT UTK PAKAN TERNAK) COA XWL1904153A\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17023010\", \"uraian\": \"DEXTROSE ANHYDROUS (BHN BAKU OBAT UTK PAKAN TERNAK) COA XWL1904153A\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 18290109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 18290109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 191100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 191100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 182567,182975\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 182567,182975\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 191100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 191100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 190672\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNEBUSTERS (BHN BAKU KOSMETIK) COA 190672\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WS (BHN BAKU KOSMETIK) COA WGJ\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WS (BHN BAKU KOSMETIK) COA WGJ\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTEHIL LH (BHN BAKU KOSMETIK) COA WCC\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROTEHIL LH (BHN BAKU KOSMETIK) COA WCC\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA WEL\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA WEL\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA WGA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) COA WGA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AC019KC PHYTOVITYL C 5KG (BHN BAKU KOSMETIK) COA 0031052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AC019KC PHYTOVITYL C 5KG (BHN BAKU KOSMETIK) COA 0031052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AC019KC PHYTOVITYL C 5KG (BHN BAKU KOSMETIK) COA 0034925\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AC019KC PHYTOVITYL C 5KG (BHN BAKU KOSMETIK) COA 0034925\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK)COA ARP-321249\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK)COA ARP-321249\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK)COA MUP-012239\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK)COA MUP-012239\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-291069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-291069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-021128\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-021128\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012239\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012239\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SNAIL SECREATION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-050218\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SNAIL SECREATION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-050218\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-091808\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-091808\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK)COA PSFAC-031028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK)COA PSFAC-031028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT)COA L101852319\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT)COA L101852319\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 BHN BAKU OBAT, COA 121909883\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 BHN BAKU OBAT, COA 121909883\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GABAPETIN (USP) (BHN BAKU OBAT) COA CGBU190319\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"GABAPETIN (USP) (BHN BAKU OBAT) COA CGBU190319\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 1904031595\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 1904031595\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM (BHN BAKU OBAT UTK PAKAN TERNAK) COA 1905466\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331900\", \"uraian\": \"METAMIZOLE SODIUM (BHN BAKU OBAT UTK PAKAN TERNAK) COA 1905466\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CARBOPLATIN EP (BHN BAKU OBAT) COA 570180010,147190010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28439000\", \"uraian\": \"CARBOPLATIN EP (BHN BAKU OBAT) COA 570180010,147190010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SMIZYME PHYTASE 5000U/G GRANULAR (BHN BAKU OBAT UTK PAKAN TERNAK) COA 0224051907\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35079000\", \"uraian\": \"SMIZYME PHYTASE 5000U/G GRANULAR (BHN BAKU OBAT UTK PAKAN TERNAK) COA 0224051907\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA 1GC01CLB ZP48D 250MT\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA 1GC01CLB ZP48D 250MT\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRAYPHOS MKP FG (BHN BAKU KOSMETIK) COA 119-087-01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PRAYPHOS MKP FG (BHN BAKU KOSMETIK) COA 119-087-01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLUCONAZOLE USP (BHN BAKU OBAT) COA AFLNC 0719048 (M)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339910\", \"uraian\": \"FLUCONAZOLE USP (BHN BAKU OBAT) COA AFLNC 0719048 (M)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA. 9057852\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA. 9057852\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9057852\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9057852\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9057852\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9057852\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (ME UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9084933\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (ME UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9084933\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9028867\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9028867\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTPSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9057852\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTPSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9057852\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9028867\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9028867\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8344948\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8344948\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT19020012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT19020012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE,25KG BOX (BHN BAKU MAKANAN) COA TL01904618\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE,25KG BOX (BHN BAKU MAKANAN) COA TL01904618\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT19050023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT19050023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT19050023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT19050023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90410083\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90410083\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA ROA204194\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA ROA204194\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM TYPE T 25 KG (BHN BAKU OBAT) COA C0029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331100\", \"uraian\": \"METAMIZOLE SODIUM TYPE T 25 KG (BHN BAKU OBAT) COA C0029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANOXOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPLEMEN ) COA. 1907251390\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANOXOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPLEMEN ) COA. 1907251390\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-LYSINE HYDROCHLORIDE(FEED GRADE) 98.5PCT (B.BAKU OBAT UTK TERNAK) COA DX19-07-169HJ-IB...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224100\", \"uraian\": \"L-LYSINE HYDROCHLORIDE(FEED GRADE) 98.5PCT (B.BAKU OBAT UTK TERNAK) COA DX19-07-169HJ-IB...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619814\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619814\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619125\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619125\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619743\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619743\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619190\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619190\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619643\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619643\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619184\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619184\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619189\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619189\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619171\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619171\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619755\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619755\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619731\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619731\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J4A002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J4A002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180HAV001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180HAV001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011J36L02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011J36L02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM CR...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J32001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM CR...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J32001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E15 PREMIUM LV ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011I9EL02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E15 PREMIUM LV ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011I9EL02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM LVCR...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180IAK021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM LVCR...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180IAK021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OXALIPLATIN (BHN BAKU OBAT) COA L20190610\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28439000\", \"uraian\": \"OXALIPLATIN (BHN BAKU OBAT) COA L20190610\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA. 20190716\""}, {"role": "assistant", "content": "{\"hs_code\" : \"11081200\", \"uraian\": \"CORN STARCH (BHN BAKU MAKANAN) COA. 20190716\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SORBITOL SOLUTION 70PCT CRYSTALLISING (BAHAN BAKU KOSMETIK) COA 2851920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054400\", \"uraian\": \"SORBITOL SOLUTION 70PCT CRYSTALLISING (BAHAN BAKU KOSMETIK) COA 2851920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSUVASTATIN CALCIUM (BHN BAKU OBAT) COA RVM2160719\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"ROSUVASTATIN CALCIUM (BHN BAKU OBAT) COA RVM2160719\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618606\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618606\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618626\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618626\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619445\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619445\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619436\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619436\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619266\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619266\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618685\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618685\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618684\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618684\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619320\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619320\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618564\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618564\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617919\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617919\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619373\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619373\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618636\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618636\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618636\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618636\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618640\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618640\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618541\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618541\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618561\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618561\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619431\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619431\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618627\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618627\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619436\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619436\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618646\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618646\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619447\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619447\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GRAY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH6193692\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GRAY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH6193692\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618624\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618624\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619435\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619435\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619249\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619249\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618635\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618635\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MILD TALCUM MOD1 (BHN BAKU KOSMETIK) COA 10300173\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MILD TALCUM MOD1 (BHN BAKU KOSMETIK) COA 10300173\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURE GREEN B&W PIT (BHN BAKU KOSMETIK) COA 10300052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PURE GREEN B&W PIT (BHN BAKU KOSMETIK) COA 10300052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE 25KG/BOX (BHN BAKU MAKANAN ) COA. TL01907734,39\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE 25KG/BOX (BHN BAKU MAKANAN ) COA. TL01907734,39\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19070056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19070056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19070056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19070056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19070056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19070056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19070045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19070045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19070045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19070045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE 25KG BOX (BHN BAKU MAKANAN) COA TL01907739,41\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE 25KG BOX (BHN BAKU MAKANAN) COA TL01907739,41\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCAP 1500 CO-PROCESSED (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537877\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCAP 1500 CO-PROCESSED (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537877\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 040419 ,091218,070719\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25070000\", \"uraian\": \"KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 040419 ,091218,070719\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK)COA 2019F1287\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK)COA 2019F1287\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND BLACK SESAME EXTRACT (BHN BAKU KOSMETIK) COA BSEA-011628\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND BLACK SESAME EXTRACT (BHN BAKU KOSMETIK) COA BSEA-011628\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND YUZU EXTRACT (BHN BAKU KOSMETIK) COA CJUBD-063059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND YUZU EXTRACT (BHN BAKU KOSMETIK) COA CJUBD-063059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-013159\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-013159\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-021879\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-021879\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND GREEN TEA SEED OIL (BHN BAKU KOSMETIK) COA CSSO-043079\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND GREEN TEA SEED OIL (BHN BAKU KOSMETIK) COA CSSO-043079\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK)COA MCP-N-033059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK)COA MCP-N-033059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK)COA 2019F1287\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK)COA 2019F1287\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LOTUS NELUMBIUM NEL.FLOWER HS(BAHAN BAKU KOSMETIK) COA AM073203\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"LOTUS NELUMBIUM NEL.FLOWER HS(BAHAN BAKU KOSMETIK) COA AM073203\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA 190808071, 190815011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA 190808071, 190815011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OMEPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W)BHN BAKU OBAT, COA AOSS19004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"OMEPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W)BHN BAKU OBAT, COA AOSS19004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANTOPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT, COA APSS19001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"PANTOPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT, COA APSS19001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 INF OIL ,4,5KG PJUG (BHN BAKU SUPLEMEN) COA TS00012231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 INF OIL ,4,5KG PJUG (BHN BAKU SUPLEMEN) COA TS00012231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 18830719, 18840719...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 18830719, 18840719...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 18830719, 18840719...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 18830719, 18840719...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE BP MICRONISED (BHN BAKU OBAT) COA 18940719\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE BP MICRONISED (BHN BAKU OBAT) COA 18940719\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIMETHOPRIM BP MICRONISED (BHN BAKU OBAT) COA TMP19070579\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"TRIMETHOPRIM BP MICRONISED (BHN BAKU OBAT) COA TMP19070579\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01808015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE01808015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000182785\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000182785\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01808015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE01808015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01808015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE01808015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01902805\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01902805\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01903233\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01903233\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19030014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19030014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU KOSMETIK) COA WB00119006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU KOSMETIK) COA WB00119006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18100325\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18100325\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01902023,3025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01902023,3025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19030004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19030004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11903009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11903009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE,25KG BOX (BHN BAKU SUPLEMEN) COA TL01903233\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE,25KG BOX (BHN BAKU SUPLEMEN) COA TL01903233\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18120037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18120037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19030021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19030021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01901004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01901004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1901002,1003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1901002,1003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE ,25KG BOX ALU (BHN BAKU MAKANAN) COA UQ90406087\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE ,25KG BOX ALU (BHN BAKU MAKANAN) COA UQ90406087\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE ,25KG BOX ALU (BHN BAKU MAKANAN) COA UQ90406079\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE ,25KG BOX ALU (BHN BAKU MAKANAN) COA UQ90406079\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01903233\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01903233\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01810075\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01810075\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01810075\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01810075\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19030046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19030046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19030004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19030004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18120037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18120037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19030021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19030021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01903233\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01903233\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19030046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19030046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01903025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01903025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1901010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1901010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000028231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000028231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA.0000029305\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA.0000029305\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLAISANCE P116808 (BHN BAKU KOSMETIK) COA 0000029330\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"PLAISANCE P116808 (BHN BAKU KOSMETIK) COA 0000029330\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 90412,90509,90520,90702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 90412,90509,90520,90702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 120319,140319,150319...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 120319,140319,150319...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 120 CN 10KG KA (BHN BAKU KOSMETIK) COA 1532588\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 120 CN 10KG KA (BHN BAKU KOSMETIK) COA 1532588\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 940 (SAMPLE) 100ML FL (BHN BAKU KOSMETIK) COA 1339633, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 940 (SAMPLE) 100ML FL (BHN BAKU KOSMETIK) COA 1339633, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 940 (SAMPLE) 100 ML FL (BHN BAKU KOSMETIK) COA 1339633, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 940 (SAMPLE) 100 ML FL (BHN BAKU KOSMETIK) COA 1339633, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 100 SAMPLE(S) 100ML FL (BHN BAKU KOSMETIK) COA 1525399, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 100 SAMPLE(S) 100ML FL (BHN BAKU KOSMETIK) COA 1525399, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 903 (SAMPLE) 100ML FL (BHN BAKU KOSMETIK) COA 1530568,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 903 (SAMPLE) 100ML FL (BHN BAKU KOSMETIK) COA 1530568,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA PA 20 SAMPLE(S) 100 ML FL (BHN BAKU KOSMETIK) COA 1520205,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA PA 20 SAMPLE(S) 100 ML FL (BHN BAKU KOSMETIK) COA 1520205,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA ROA205196\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA ROA205196\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP2010/USP41 (BHN BAKU OBAT) COA.NED190404, NED190711\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP2010/USP41 (BHN BAKU OBAT) COA.NED190404, NED190711\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT BLACK TEA POWDER TH B430 (BHN BAKU MAKANAN) COA 2019071701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"INSTANT BLACK TEA POWDER TH B430 (BHN BAKU MAKANAN) COA 2019071701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY ORANGE (BAHAN BAKU OBAT UNTUK PEWARNA TABLET) COA. GA657946\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY ORANGE (BAHAN BAKU OBAT UNTUK PEWARNA TABLET) COA. GA657946\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA657948\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA657948\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELOXICAM BP/EP (BHN BAKU OBAT) COA HMXCPM023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29341000\", \"uraian\": \"MELOXICAM BP/EP (BHN BAKU OBAT) COA HMXCPM023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9149751\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9149751\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9072674\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9072674\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B02B086M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B02B086M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH B048192M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH B048192M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9119914\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9119914\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8206836\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8206836\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8312962\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8312962\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255977\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255977\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9107576\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9107576\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8206836\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8206836\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 85X15 MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9098631\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE STERILE RODAC EMPTY 85X15 MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9098631\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9085991\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9085991\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9079880\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9079880\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142519\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142519\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9028852\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9028852\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9178487\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9178487\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 8 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8281787\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 8 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8281787\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8331811\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8331811\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9170916\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9170916\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9142666\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9142666\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9114508\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9114508\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255977\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255977\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9170723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9170723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8304929\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8304929\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9128845\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRUCELLA AGAR BBL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9128845\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MOTILITY TEST MEDIUM BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9015933\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MOTILITY TEST MEDIUM BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9015933\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9129926\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9129926\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9049923\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9049923\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7317688\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7317688\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9070997\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9070997\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9028828\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9028828\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CELLOBIOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9028837\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CELLOBIOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9028837\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DULCITOL 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8337666\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DULCITOL 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8337666\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9084697\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9084697\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9107597\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9107597\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 4 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8297988\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 4 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8297988\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8312890\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8312890\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9021602\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRIPLE SUGAR IRON AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9021602\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 5 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8197524\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 5 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8197524\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9025865\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9025865\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8310633\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8310633\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8134767\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8134767\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8317917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8317917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GAZPAK EZ STANDARD INCUBATION CONTAINER(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH7308545010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"GAZPAK EZ STANDARD INCUBATION CONTAINER(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH7308545010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGANGAN MIKRO ORGANISME)BATCH B01B163M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGANGAN MIKRO ORGANISME)BATCH B01B163M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9127972\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9127972\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9121742\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9121742\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BILE ESCULIN AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8271850\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BILE ESCULIN AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8271850\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TETRATHIONATE BR BASE HAJNA 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9084922\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TETRATHIONATE BR BASE HAJNA 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9084922\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE CRYSTAL E/ID INOCULUM FLUID(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9135718\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"TUBE CRYSTAL E/ID INOCULUM FLUID(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9135718\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9141938\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9141938\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9144942,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9144942,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE STARCH AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 7114789\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DEXTROSE STARCH AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 7114789\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYP AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9133875\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MYP AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9133875\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRAIN HEART INFUSION BR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8256839\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BRAIN HEART INFUSION BR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8256839\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9172790\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9172790\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9178487\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9178487\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9143927\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9143927\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8331811\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8331811\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE VOUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9128557\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PLATE VOUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9128557\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9143927,50548\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9143927,50548\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8331811\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8331811\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8141966\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8141966\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161608\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161608\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8269714\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8269714\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9092586\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9092586\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 90507553\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 90507553\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8310579\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8310579\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9041523\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9041523\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9142666\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9142666\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8355570,9025917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8355570,9025917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9043891\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9043891\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9150548,575\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9150548,575\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8291589\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8291589\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9105960\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9105960\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9023839\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9023839\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9049688\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9049688\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 8141966\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 8141966\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFIT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8183841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE BISMUTH SULFIT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8183841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8305685\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8305685\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9127592\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9127592\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8271693\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8271693\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161608\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161608\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8269714\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8269714\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9021613\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9021613\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9092586\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9092586\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9079951\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9079951\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9039632,9112849\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9039632,9112849\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9168641\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9168641\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8227621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8227621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9029985\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9029985\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084525\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084525\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8317859\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8317859\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 9079916\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 9079916\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 8310579,9161603\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 8310579,9161603\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9014523\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9014523\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9021643\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9021643\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9043891\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9043891\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8354563\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8354563\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9010685\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9010685\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8325512\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8325512\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9155608\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"ANTI MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9155608\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD41A PE HIP8 100 TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9010710\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"HU CD41A PE HIP8 100 TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9010710\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PI/RNASE STAINING BUFFER SOLUTION 100ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9183478\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"PI/RNASE STAINING BUFFER SOLUTION 100ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9183478\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9115632\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9115632\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9077594, 9140698\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9077594, 9140698\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9070562\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9070562\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9068517,9161530\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9068517,9161530\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9161778\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9161778\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD10 FITC HI 10A 50TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9162907\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD10 FITC HI 10A 50TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9162907\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9058622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9058622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP W135 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9165674\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL N MENINGITIDIS ANTISERUM GRP W135 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9165674\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9025804\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9025804\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9115887\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9115887\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255580\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255580\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8219521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8219521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8334767\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8334767\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9049874\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9049874\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8207980\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8207980\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9115887\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9115887\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8334767\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8334767\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9039992\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9039992\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9049874\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9049874\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9025804\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9025804\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8207980\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8207980\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9129843\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9129843\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255580,9039647..\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255580,9039647..\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8219521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8219521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9039992\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9039992\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEMOGLOBIN SOL 2PCT 100ML10EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8268963\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"BOTTLE HEMOGLOBIN SOL 2PCT 100ML10EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8268963\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT 10X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8334877\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"TUBE EGG YOLK ENRICHMENT 50PCT 10X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8334877\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8156756\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8156756\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SHIGELLA ANTIS POLY A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9140633\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SHIGELLA ANTIS POLY A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9140633\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9107937\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9107937\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9129779\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9129779\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL PENICILLINASE 10000000 KU/ML 1 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9099734\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL PENICILLINASE 10000000 KU/ML 1 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9099734\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SHIGELLA ANTIS POLY A1 LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8103629\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210010\", \"uraian\": \"VIAL SHIGELLA ANTIS POLY A1 LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8103629\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPASPRAY BLUE (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT691289\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPASPRAY BLUE (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT691289\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN1550519\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN1550519\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IBUPROFEN 40 GRADE (BHN BAKU OBAT) COA 4050-3557\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29163990\", \"uraian\": \"IBUPROFEN 40 GRADE (BHN BAKU OBAT) COA 4050-3557\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190717\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190717\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT)COA L105712119\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200H (BHN BAKU OBAT)COA L105712119\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CELLACTOSE (R) 80 (BHN BAKU OBAT)COA L100462719\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"CELLACTOSE (R) 80 (BHN BAKU OBAT)COA L100462719\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SKINB VITLIDO 1 MLD16 ,COA 16905-1,17008-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE SKINB VITLIDO 1 MLD16 ,COA 16905-1,17008-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REST SKINB VITALLGHLIDO 1MLD16, COA 17063-1, 17132-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"REST SKINB VITALLGHLIDO 1MLD16, COA 17063-1, 17132-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE LYFT LIDOCAINE 1 ML ,COA 17004-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE LYFT LIDOCAINE 1 ML ,COA 17004-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE REFYNE 1 ML , COA 17084-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE REFYNE 1 ML , COA 17084-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE KYSSE 1 ML , COA 16911-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE KYSSE 1 ML , COA 16911-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE LYFT LIDOCAINE 1 ML ,COA 17004-1, 17061-1,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE LYFT LIDOCAINE 1 ML ,COA 17004-1, 17061-1,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE REFYNE 1 ML , COA 17084-1, SAMPLE NO COMMERCIAL NALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE REFYNE 1 ML , COA 17084-1, SAMPLE NO COMMERCIAL NALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE KYSSE 1 ML , COA 16911-1, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE KYSSE 1 ML , COA 16911-1, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRISODIUM CITRATE DIHYDRATE FINE GRANULAR (BHN BAKU MAKANAN), COA UJ919,UJ921\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"TRISODIUM CITRATE DIHYDRATE FINE GRANULAR (BHN BAKU MAKANAN), COA UJ919,UJ921\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1908019 S/D 22, 24 S/D 26, 28 S/D 30\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"MEFENAMIC ACID (BHN BAKU OBAT) COA MA1908019 S/D 22, 24 S/D 26, 28 S/D 30\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539989\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539989\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN540098\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN540098\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN540003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN540003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539990\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539990\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CETRIMIDE (BHN BAKU OBAT) COA 319CAA0002,0004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CETRIMIDE (BHN BAKU OBAT) COA 319CAA0002,0004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFADROXIL MONOHYDRATE (PURIDROX COMPACTED) BHN BAKU OBAT) COA B340109,111 S/D 113\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFADROXIL MONOHYDRATE (PURIDROX COMPACTED) BHN BAKU OBAT) COA B340109,111 S/D 113\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID PPL-600 (BHN BAKU OBAT) COA. 577200-2190225/007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232010\", \"uraian\": \"LIPOID PPL-600 (BHN BAKU OBAT) COA. 577200-2190225/007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA657367\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA657367\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00119215\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00119215\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00918689\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00918689\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00319235\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00319235\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20190701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20190701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) , COA 907134\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6017 (17KG) (BHN BAKU KOSMETIK) , COA 907134\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-210 (16KG) BHN BAKU KOSMETIK, COA 907060\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSG-210 (16KG) BHN BAKU KOSMETIK, COA 907060\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-710 (16KG) BHN BAKU KOSMETIK, COA 907268\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSG-710 (16KG) BHN BAKU KOSMETIK, COA 907268\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KP-562P (16KG) BHN BAKU KOSMETIK, COA 802008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KP-562P (16KG) BHN BAKU KOSMETIK, COA 802008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KP-578 (16KG) BHN BAKU KOSMETIK , COA 807080\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KP-578 (16KG) BHN BAKU KOSMETIK , COA 807080\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP-100 (10KG) BHN BAKU KOSMETIK , COA 907717\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSP-100 (10KG) BHN BAKU KOSMETIK , COA 907717\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-15 (900G) BHN BAKU KOSMETIK, COA 908331\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSG-15 (900G) BHN BAKU KOSMETIK, COA 908331\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01907062\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01907062\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM VALPROATE (BAHAN BAKU OBAT) COA.453131\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29159090\", \"uraian\": \"SODIUM VALPROATE (BAHAN BAKU OBAT) COA.453131\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHOLINE L-BITARTRATE (BAHAN BAKU OBAT) COA.3018002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29231000\", \"uraian\": \"CHOLINE L-BITARTRATE (BAHAN BAKU OBAT) COA.3018002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA 190710121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA 190710121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000182785\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000182785\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT19030850\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT19030850\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001529534\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SLX (BHN BAKU KOSMETIK) COA 0001529534\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0319050702,703,746\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 (BHN BAKU KOSMETIK) COA 0319050702,703,746\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P9N24QA000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL TX (BHN BAKU KOSMETIK) COA P9N24QA000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90513039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90513039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18100325\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18100325\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19030046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19030046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19030014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19030014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11903009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11903009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18120037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18120037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01902117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01902117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01902117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01902117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01810075\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01810075\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19040022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19040022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518048\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518048\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01903083\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01903083\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19050090\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19050090\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11903009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP11903009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01810082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01810082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01810076\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01810076\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18120037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18120037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01810075\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01810075\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18120037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18120037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18120037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18120037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01810082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01810082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19030046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19030046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19030021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19030021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19030014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19030014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18120037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18120037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01810075,76\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01810075,76\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01901004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01901004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT18100063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT18100063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19030004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19030004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT19040177\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT19040177\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT19050090\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT19050090\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01901004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01901004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT19010008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT19010008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT18100063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT18100063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19070045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19070045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COATED ASCORBIC ACID TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01908235\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"COATED ASCORBIC ACID TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01908235\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19020008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19020008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19070056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19070056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A+ D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN), COA UT19070045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A+ D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN), COA UT19070045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 20190808\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 20190808\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011IAKL02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011IAKL02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011I9PL01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011I9PL01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011J36L02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011J36L02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011IBTL01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011IBTL01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILDENAFIL CITRATE USP (BHN BAKU OBAT) COA SLC 103 07 19\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"SILDENAFIL CITRATE USP (BHN BAKU OBAT) COA SLC 103 07 19\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I6Q001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I6Q001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I6Q001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I6Q001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I5R002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I5R002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180IC4002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180IC4002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I73002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I73002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539799\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539799\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPIRAMYCIN (BHN BAKU OBAT) COA 190117080M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"SPIRAMYCIN (BHN BAKU OBAT) COA 190117080M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SERASENSE SF CM5 (BAHAN BAKU KOSMETIK) COA PA90729040,42,44,46,48,50,52,54\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29319049\", \"uraian\": \"SERASENSE SF CM5 (BAHAN BAKU KOSMETIK) COA PA90729040,42,44,46,48,50,52,54\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EDIBLE BOVINE GELATINE (BAHAN BAKU OBAT ), COA 5001907255,8279\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35030049\", \"uraian\": \"EDIBLE BOVINE GELATINE (BAHAN BAKU OBAT ), COA 5001907255,8279\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 83001722K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL (BHN BAKU KOSMETIK) COA 83001722K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769017443K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHRONOLINE (BHN BAKU KOSMETIK) COA 769017443K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1901606\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) COA 1901606\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELANOSTATINE-5BG (50PPM) BHN BAKU KOSMETIK, COA 817047448K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MELANOSTATINE-5BG (50PPM) BHN BAKU KOSMETIK, COA 817047448K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) COA 1805516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTENSO TM (BHN BAKU KOSMETIK) COA 1805516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK), COA 1835314\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AMISOL TRIO TM (BHN BAKU KOSMETIK), COA 1835314\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK), COA 769017443K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHRONOLINE (BHN BAKU KOSMETIK), COA 769017443K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK), COA 828017197K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"NEUTRAZEN (BHN BAKU KOSMETIK), COA 828017197K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT-11 (BHN BAKU KOSMETIK), COA 784027602K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"TYROSTAT-11 (BHN BAKU KOSMETIK), COA 784027602K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELANOSTATINE-5BG (50PPM) (BHN BAKU KOSMETIK), COA 817047448K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MELANOSTATINE-5BG (50PPM) (BHN BAKU KOSMETIK), COA 817047448K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-PANTHENOL 50 L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01808637\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL-PANTHENOL 50 L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01808637\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL ,20KG PAIL PE BHN BAKU KOSMETIK) COA TL01904043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL ,20KG PAIL PE BHN BAKU KOSMETIK) COA TL01904043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219030054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219030054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00588582,589482,589484\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"AMPHISOL K (BHN BAKU KOSMETIK) COA VE00588582,589482,589484\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180121,0708190001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180121,0708190001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18100325\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18100325\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000183324\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000183324\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91907318\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX 504010 (BHN BAKU MAKANAN) COA XW91907318\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91907294\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91907294\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VP DN03 (BHN BAKU MAKANAN) COA XW91907385\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VP DN03 (BHN BAKU MAKANAN) COA XW91907385\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01903025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01903025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01903025,32\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01903025,32\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHNN BAKU SUPLEMEN) COA UE01905011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHNN BAKU SUPLEMEN) COA UE01905011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20190202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20190202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20190202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20190202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX /ALU (BHN BAKU SUPLEMEN) COA TL01902123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX /ALU (BHN BAKU SUPLEMEN) COA TL01902123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01903356\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01903356\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01902117,2123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01902117,2123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01902117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01902117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01902117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01902117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01902117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01902117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT19020008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT19020008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT19070873\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT19070873\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT19070873\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT19070873\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT19070873\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT19070873\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01902117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01902117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT19070873\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT19070873\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01902117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01902117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT19020008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT19020008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90602227\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90602227\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01902117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01902117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ90602227\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ90602227\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90602227\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90602227\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90602221,2227\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90602221,2227\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ90602221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ90602221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00619039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00619039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01902117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01902117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPLEMEN) COA XH20190202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPLEMEN) COA XH20190202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01906715\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01906715\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25 KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01902117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25 KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01902117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90602227\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90602227\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01906715\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01906715\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01902123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01902123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL01906715\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL01906715\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ90710155\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ90710155\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 -C3 (BHN BAKU MAKANAN) COA XW91907097\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 -C3 (BHN BAKU MAKANAN) COA XW91907097\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ90710155\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ90710155\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453425151\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453425151\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 10 PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D184J57021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 10 PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D184J57021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 14 PREMIUM (BHN BAKU OBAT UTK PEWARNA TABLET), COA D184J24021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 14 PREMIUM (BHN BAKU OBAT UTK PEWARNA TABLET), COA D184J24021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TSPL-30-ID (IKG) (BHN BAKU KOSMETIK) , COA 807011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"TSPL-30-ID (IKG) (BHN BAKU KOSMETIK) , COA 807011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB290719, LB140619\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB290719, LB140619\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B170719\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B170719\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG030819\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG030819\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP(BHN BAKU OBAT) COA 101902024,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"BARCROFT TM AL HYD GEL VISCO-9, USP(BHN BAKU OBAT) COA 101902024,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M-31.0PCT (BHN BAKU OBAT) COA 101929014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MG HYD PASTE USP TYPE M-31.0PCT (BHN BAKU OBAT) COA 101929014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT691567\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT691567\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GENIVIDA (TM) TG, 1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT17080005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"GENIVIDA (TM) TG, 1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT17080005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA.0000068305\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA.0000068305\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA.0000068305\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA.0000068305\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK),COA 0000068309\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK),COA 0000068309\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H105 83PCT (BHN BAKU KOSMETIK), COA 0000068325\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H105 83PCT (BHN BAKU KOSMETIK), COA 0000068325\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTIZOXIME SODIUM (BHN BAKU OBAT) COA S600300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTIZOXIME SODIUM (BHN BAKU OBAT) COA S600300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DICLOFENAC POTASSIUM BP 2019 (BHN BAKU OBAT) COA DFK/19080092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"DICLOFENAC POTASSIUM BP 2019 (BHN BAKU OBAT) COA DFK/19080092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1903163183\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1903163183\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG190802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG190802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1908075 S/D 86\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"MEFENAMIC ACID (BHN BAKU OBAT) COA MA1908075 S/D 86\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OMEPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA OP0219C036\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"OMEPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA OP0219C036\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ONDANSETRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA 18OS003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"ONDANSETRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA 18OS003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED) BHN BAKU OBAT, COA. M531278,292,279,280\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED) BHN BAKU OBAT, COA. M531278,292,279,280\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX POWDER) ,BHN BAKU OBAT, COA. M484164,165\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE (PURIMOX POWDER) ,BHN BAKU OBAT, COA. M484164,165\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA S100100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA S100100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA S701900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA S701900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620358\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620358\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK)COA EG138-190601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK)COA EG138-190601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INCA INCHI ORGANIC LIPACTIVE WA (BHN BAKU KOSMETIK)COA II190608-AI-D-BIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"INCA INCHI ORGANIC LIPACTIVE WA (BHN BAKU KOSMETIK)COA II190608-AI-D-BIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 201900091\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 201900091\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK)COA CHP1190822\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK)COA CHP1190822\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK)COA NMP-L-291069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK)COA NMP-L-291069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012239\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012239\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-012229\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-012229\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK) COA NMSP-D-011018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK) COA NMSP-D-011018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK)COA OHA-030669\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK)COA OHA-030669\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK) COA CPG-391069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK) COA CPG-391069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-011079\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-011079\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 87-28-5 SALICYLIC ACID ETHYLENE GLYCOL ESTER/GLYCOL SALICYLATE (B.BAKU KOSMETIK)COA.DE190825\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"87-28-5 SALICYLIC ACID ETHYLENE GLYCOL ESTER/GLYCOL SALICYLATE (B.BAKU KOSMETIK)COA.DE190825\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619775\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619775\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620623\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620623\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619766\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619766\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619790\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619790\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620619\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620619\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619773\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619773\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619767\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619767\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619780\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619780\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619839\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619839\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619758\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619758\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619932\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619932\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620620\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620620\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619932\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619932\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ90710156\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ90710156\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT19070875\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT19070875\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ90710156,58\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ90710156,58\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01907092,7109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01907092,7109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01907062,92\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01907062,92\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEVOFLOXACIN HEMIHYDRATE (FREE ALKALINE) BHN BAKU OBAT, COA C008-1906604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"LEVOFLOXACIN HEMIHYDRATE (FREE ALKALINE) BHN BAKU OBAT, COA C008-1906604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-190302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-190302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POVIDONE K30 (BHN BAKU OBAT) COA PK30-190807F21\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"POVIDONE K30 (BHN BAKU OBAT) COA PK30-190807F21\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INOSITOL (BHN BAKU OBAT) COA 201907054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"INOSITOL (BHN BAKU OBAT) COA 201907054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 1908052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"ACESULFAME K (BHN BAKU OBAT) COA 1908052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITICOLINE SODIUM (BHN BAKU OBAT) COA CDP-C-190702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"CITICOLINE SODIUM (BHN BAKU OBAT) COA CDP-C-190702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROCATEROL HCL HEMIHYDRATE MICRONIZED (BHN BAKU OBAT) COA 860050719M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29337900\", \"uraian\": \"PROCATEROL HCL HEMIHYDRATE MICRONIZED (BHN BAKU OBAT) COA 860050719M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19060014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19060014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 (TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19060014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 (TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19060014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19060014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19060014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TSPL-30-ID (IKG) (BHN BAKU KOSMETIK) , COA 807011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"TSPL-30-ID (IKG) (BHN BAKU KOSMETIK) , COA 807011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELATINE (BAHAN BAKU OBAT ), COA 5131906514,6511,4402,6514,6511,4402,6514...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051090\", \"uraian\": \"GELATINE (BAHAN BAKU OBAT ), COA 5131906514,6511,4402,6514,6511,4402,6514...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRAYPHOS DKP FG (BAHAN BAKU KOSMETIK), COA 191634\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PRAYPHOS DKP FG (BAHAN BAKU KOSMETIK), COA 191634\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FEED GRADE DICALCIUM PHOSPHATE POWDER (BHN BAKU UNTUK PAKAN TERNAK) COA TB1907003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28352510\", \"uraian\": \"FEED GRADE DICALCIUM PHOSPHATE POWDER (BHN BAKU UNTUK PAKAN TERNAK) COA TB1907003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 190328\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 190328\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 182975\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 182975\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 190809\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ABSORAGE (BHN BAKU KOSMETIK) COA 190809\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIRJU (BHN BAKU KOSMETIK) COA 190809\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"CLAIRJU (BHN BAKU KOSMETIK) COA 190809\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 190804\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNEBUSTERS (BHN BAKU KOSMETIK) COA 190804\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 191234\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 191234\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EDIBLE BOVINE GELATINE 200 BLOOM...(BHN BAKU OBAT), COA 5001907208, 908268,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051090\", \"uraian\": \"EDIBLE BOVINE GELATINE 200 BLOOM...(BHN BAKU OBAT), COA 5001907208, 908268,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EDIBLE BOVINE GELATINE INSTANT 200 (BHN BAKU OBAT) COA S18D03 , SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051090\", \"uraian\": \"EDIBLE BOVINE GELATINE INSTANT 200 (BHN BAKU OBAT) COA S18D03 , SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 BHN BAKU OBAT, COA 121909773\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 BHN BAKU OBAT, COA 121909773\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA.M113258\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA.M113258\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113270\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113270\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113270\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113270\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETAMINE HCL (BHN BAKU OBAT), COA 0162419P\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29223900\", \"uraian\": \"KETAMINE HCL (BHN BAKU OBAT), COA 0162419P\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP2010/USP41 (BHN BAKU OBAT) COA.NED190804, NED190805\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP2010/USP41 (BHN BAKU OBAT) COA.NED190804, NED190805\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELOXICAM BP/EP (BHN BAKU OBAT) COA HMXCPN002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29341000\", \"uraian\": \"MELOXICAM BP/EP (BHN BAKU OBAT) COA HMXCPN002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190809, 20190815\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190809, 20190815\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PERMETHRIN (PHARMA GRADE) BHN BAKU OBAT COA 195046014, 195046015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29163990\", \"uraian\": \"PERMETHRIN (PHARMA GRADE) BHN BAKU OBAT COA 195046014, 195046015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 20410819, 20430819\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 20410819, 20430819\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE BP MICRONISED (BHN BAKU OBAT) COA 19750819,19780819, 19860819...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE BP MICRONISED (BHN BAKU OBAT) COA 19750819,19780819, 19860819...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A, 20KG BAG (BHN BAKU MAKANAN) COA WB00719445,446\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A, 20KG BAG (BHN BAKU MAKANAN) COA WB00719445,446\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A 20KG BAG (BHN BAKU MAKANAN) COA WB00719446\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A 20KG BAG (BHN BAKU MAKANAN) COA WB00719446\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHAMBUTOL (BHN BAKU OBAT) COA N9058600 S/D 605,985 S/D 988\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29051400\", \"uraian\": \"ETHAMBUTOL (BHN BAKU OBAT) COA N9058600 S/D 605,985 S/D 988\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM REGULAR GRADE (BHN BAKU OBAT) COA 1905550\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331900\", \"uraian\": \"METAMIZOLE SODIUM REGULAR GRADE (BHN BAKU OBAT) COA 1905550\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM INJECTABLE GRADE (BHN BAKU OBAT) COA 18121897, 18121899\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331900\", \"uraian\": \"METAMIZOLE SODIUM INJECTABLE GRADE (BHN BAKU OBAT) COA 18121897, 18121899\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THEOPHYLLINE (BHN BAKU OBAT) COA 19310,19311,19312\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29395900\", \"uraian\": \"THEOPHYLLINE (BHN BAKU OBAT) COA 19310,19311,19312\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIPEMIDIC ACID (BHN BAKU OBAT) COA 18051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"PIPEMIDIC ACID (BHN BAKU OBAT) COA 18051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACETYLSALICYLIC ACID 40/80 ( BHN BAKU OBAT) COA 191624\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29182200\", \"uraian\": \"ACETYLSALICYLIC ACID 40/80 ( BHN BAKU OBAT) COA 191624\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACETYLSALICYLIC ACID 20/60 (BHN BAKU OBAT) COA 191576\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29182200\", \"uraian\": \"ACETYLSALICYLIC ACID 20/60 (BHN BAKU OBAT) COA 191576\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91908052,8053,8054,8055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91908052,8053,8054,8055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT19020043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT19020043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01902805, TL01906808\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01902805, TL01906808\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0718110176\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0718110176\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX ,25KG PC (BHN BAKU KOSMETIK) COA 0519010008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX ,25KG PC (BHN BAKU KOSMETIK) COA 0519010008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT19060053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT19060053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0419060155\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HMS, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0419060155\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18120377\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18120377\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19060053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19060053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00619039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00619039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00619039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00619039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPLEMEN) COA XH20190202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPLEMEN) COA XH20190202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01904028, UE01904029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01904028, UE01904029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19040028, UT19060053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19040028, UT19060053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19060053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19060053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU SUPLEMEN) COA UT19040086\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU SUPLEMEN) COA UT19040086\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19060053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19060053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ80813230\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ80813230\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT19030176\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT19030176\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01808637\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01808637\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL , 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01904043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL , 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01904043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE USP (BHN BAKU KOSMETIK) COA 19-20/NMD(P)/U/078, 079 ,081,082,083\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE USP (BHN BAKU KOSMETIK) COA 19-20/NMD(P)/U/078, 079 ,081,082,083\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE (BHN BAKU OBAT) COA F-04 1064-190801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE (BHN BAKU OBAT) COA F-04 1064-190801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CATECHINS (TEA EXTRACT) TEAVIGO (1KG)(BHN BAKU KOSMETIK), COA 907241\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"CATECHINS (TEA EXTRACT) TEAVIGO (1KG)(BHN BAKU KOSMETIK), COA 907241\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT TEA POWDER (TEA EXTRACT) BHN BAKU MAKANAN, COA 909061\""}, {"role": "assistant", "content": "{\"hs_code\" : \"9022010\", \"uraian\": \"INSTANT TEA POWDER (TEA EXTRACT) BHN BAKU MAKANAN, COA 909061\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA S701900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA S701900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOTAXIME SODIUM STERILE USP (BHN BAKU OBAT) COA S201000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOTAXIME SODIUM STERILE USP (BHN BAKU OBAT) COA S201000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED) BHN BAKU OBAT, COA. M531341,343,344,345\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED) BHN BAKU OBAT, COA. M531341,343,344,345\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX POWDER) ,BHN BAKU OBAT, COA. M484184,183\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE (PURIMOX POWDER) ,BHN BAKU OBAT, COA. M484184,183\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BROMELAIN 1600 GDU UNITS/G (BHN BAKU OBAT) COA 0162419P\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35079000\", \"uraian\": \"BROMELAIN 1600 GDU UNITS/G (BHN BAKU OBAT) COA 0162419P\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK)COA MSEEC-050918\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK)COA MSEEC-050918\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK)COA NMP-L-360179\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK)COA NMP-L-360179\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-050218\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-050218\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPICILLIN SODIUM (STERILE) BP (BHN BAKU OBAT), COA SI/AMP/00660819\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411020\", \"uraian\": \"AMPICILLIN SODIUM (STERILE) BP (BHN BAKU OBAT), COA SI/AMP/00660819\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANTOPRAZOLE SODIUM (STERILE) BHN BAKU OBAT, COA SI/PPZ/00450819\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"PANTOPRAZOLE SODIUM (STERILE) BHN BAKU OBAT, COA SI/PPZ/00450819\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROPYPHENAZONE (ST) (BHN BAKU OBAT) COA 1804031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331100\", \"uraian\": \"PROPYPHENAZONE (ST) (BHN BAKU OBAT) COA 1804031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POTASSIUM IODIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA KID/E/1920/013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28276000\", \"uraian\": \"POTASSIUM IODIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA KID/E/1920/013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-1470719\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334910\", \"uraian\": \"DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-1470719\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 20 PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D184J14021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 20 PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D184J14021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL 36PCT-39PCT...(BHN BAKU OBAT UTK PEWARNA TABLET) COA WP804552\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #5/TARTRAZINE AL 36PCT-39PCT...(BHN BAKU OBAT UTK PEWARNA TABLET) COA WP804552\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C RED #40 ALLURA RED AC AL... (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP806874\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C RED #40 ALLURA RED AC AL... (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP806874\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERYTHROSINE AL 38PCT-42PCT... (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP798864-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"ERYTHROSINE AL 38PCT-42PCT... (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP798864-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERYTHROSINE AL 38PCT-42PCT... (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP798863:1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"ERYTHROSINE AL 38PCT-42PCT... (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP798863:1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C BLUE #1/BRILLIANT BLUE ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA WP805969:AZ1029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C BLUE #1/BRILLIANT BLUE ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA WP805969:AZ1029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9121749\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9121749\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9189033\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9189033\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9148976\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9148976\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8344948\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8344948\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9070604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9070604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9024916\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9024916\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9070604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9070604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8338681\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8338681\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8338681\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8338681\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9189048\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9189048\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9189048\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9189048\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8155535\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8155535\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9105844\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9105844\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9113978\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9113978\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9057852\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9057852\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8155535\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8155535\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIFCO BEEF EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7296821\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DIFCO BEEF EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7296821\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO MALT EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8290986\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO MALT EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8290986\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO MALT EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8290986\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO MALT EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8290986\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PROTEOSE PEPTONE NO.3 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9070621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PROTEOSE PEPTONE NO.3 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9070621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8312754\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8312754\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASAMINO ACIDS EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8312714\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASAMINO ACIDS EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8312714\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ90107004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ90107004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 INF OIL ,4,5KG PJUG (BHN BAKU SUPLEMEN) COA TS00012344\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 INF OIL ,4,5KG PJUG (BHN BAKU SUPLEMEN) COA TS00012344\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAROPHYLL YELLOW 10PCT, 5KG BAG ALU (BHN BAKU OBAT UTK PAKAN TERNAK) COA UE01901005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"CAROPHYLL YELLOW 10PCT, 5KG BAG ALU (BHN BAKU OBAT UTK PAKAN TERNAK) COA UE01901005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) , COA 909219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (16KG) (BHN BAKU KOSMETIK) , COA 909219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6028 (16KG) BHN BAKU KOSMETIK, COA 907215\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6028 (16KG) BHN BAKU KOSMETIK, COA 907215\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6028 (16KG) BHN BAKU KOSMETIK, COA 907215\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6028 (16KG) BHN BAKU KOSMETIK, COA 907215\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-15 (16KG) BHN BAKU KOSMETIK, COA 908344\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSG-15 (16KG) BHN BAKU KOSMETIK, COA 908344\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9177402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9177402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01B204M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01B204M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TERGITOL 4 XLT4 SUPPLEMENT 100 ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH SLCB3712\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TERGITOL 4 XLT4 SUPPLEMENT 100 ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH SLCB3712\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH9144942,72793\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH9144942,72793\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9185635\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9185635\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9144942\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9144942\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9185623\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9185623\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9193139\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9193139\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9199251\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9199251\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9178482\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9178482\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA ROA238193\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA ROA238193\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8331811\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8331811\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9219600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9219600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9206582\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9206582\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SOLUTION BACTERIOSTAT CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 19G2256203\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SOLUTION BACTERIOSTAT CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 19G2256203\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8331811\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8331811\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255977\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255977\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9148762\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9148762\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9128557\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9128557\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9084661\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9084661\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9128533\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9128533\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9107597\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9107597\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9219600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9219600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9107532\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9107532\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9141938\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9141938\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9021617\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9021617\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8317927\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8317927\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8297883\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8297883\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9091912\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9091912\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8312962\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8312962\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255977\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255977\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9084840\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9084840\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9079951\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9079951\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9107576\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9107576\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9142666\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9142666\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9133762\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9133762\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE L-ARABINOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9189637\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE L-ARABINOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9189637\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9219600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9219600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9128557\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9128557\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9128533\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE YEAST EXT GLUCOSE CHLOR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9128533\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9212136\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9212136\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE L-ARABINOSE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9199186\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE L-ARABINOSE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9199186\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9045711\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9045711\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8331811\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8331811\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8317927\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8317927\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9127592\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9127592\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8312962\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8312962\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 82559777\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 82559777\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9021613\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9021613\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9148762\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9148762\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9128557\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9128557\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9170916\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9170916\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9142666\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9142666\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 9133762\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 9133762\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9025695\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRILLIANT GREEN BILE 2PCT 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9025695\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8354563\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8354563\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9084661\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9084661\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9128533\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9128533\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9211782\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9211782\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9150544\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9150544\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE CRYSTAL E/ ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9135718\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"TUBE CRYSTAL E/ ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9135718\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01B203M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01B203M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-PA-C AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 83555632\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M-PA-C AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 83555632\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9128828\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9128828\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9010685\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9010685\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161608\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161608\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8129682\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8129682\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLANT COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9128557,9189611\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PLANT COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9128557,9189611\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9206386\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9206386\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 9170916\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 9170916\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9107576\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9107576\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142666\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142666\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9205168\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9205168\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9084661\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9084661\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9148762\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9148762\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL BUFFERED PEPTONE WATER 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9133516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PAIL BUFFERED PEPTONE WATER 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9133516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL LAURYL TRYPTOSE BROTH 2KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9084715\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PAIL LAURYL TRYPTOSE BROTH 2KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9084715\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9114508\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9114508\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8304929\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8304929\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8305630\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8305630\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MICRO INOCULUM BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8311696\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MICRO INOCULUM BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8311696\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9175490\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9175490\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9028828\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9028828\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE L-ARABINOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9189637\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE L-ARABINOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9189637\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DULCITOL 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8337666\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DULCITOL 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8337666\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TREHALOSE 10G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9066673\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TREHALOSE 10G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9066673\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM WQITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161593\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EC MEDIUM WQITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161593\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084697\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084697\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9142723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9142723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9224870\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9224870\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9021602\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9021602\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NITRATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9148558\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NITRATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9148558\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025865\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025865\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9219600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9219600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9112988\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9112988\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE STOCK CULTURE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8012616\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE STOCK CULTURE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8012616\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8134767\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8134767\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 8317917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 8317917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH B01B165M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH B01B165M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 83377152\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 83377152\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084966\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084966\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9182087\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9182087\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8032739\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8032739\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9206582\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9206582\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9189647\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9189647\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9150805\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9150805\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BLOOD AGAR BASE 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9023839\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BLOOD AGAR BASE 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9023839\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9010685\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9010685\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9168641\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9168641\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161683\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161683\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9212136\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9212136\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9212136\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9212136\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9172854\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9172854\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8291589\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8291589\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 9107532\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 9107532\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9105960\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO AGAR 454G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9105960\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161791\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161791\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8331811\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8331811\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9141938\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9141938\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9021617,9085997\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9021617,9085997\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8183841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8183841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8317927\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8317927\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) COA 9127592\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) COA 9127592\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297883\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297883\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8271693\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8271693\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9091867,9161608\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9091867,9161608\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9091912\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9091912\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKIROORGANISME) BATCH 8312962, 9142767\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKIROORGANISME) BATCH 8312962, 9142767\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8255977\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8255977\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9021613\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9021613\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084840\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084840\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9092586\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9092586\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9148762\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9148762\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9079951\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9079951\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9112849\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9112849\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9128557\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9128557\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILLIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9029985\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RAPPAPORT VASSILLIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9029985\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084525\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084525\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8317859\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8317859\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH 9161603\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH 9161603\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9107576\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9107576\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9014523\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9014523\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9142666\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9142666\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9021643\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9021643\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9025917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9025917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 91337624\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 91337624\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9025695\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9025695\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA PENGEMBANGAN MIKROORGANISME) BATCH 8354563\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA PENGEMBANGAN MIKROORGANISME) BATCH 8354563\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084661\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084661\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9107597\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9107597\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8317797\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8317797\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE KOSER CITRATE MEDIUM 500G ( MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8054971\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE KOSER CITRATE MEDIUM 500G ( MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8054971\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA658526\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA658526\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA P-64\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA P-64\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MOMETASONE FUROATE MICRONIZED (BHN BAKU OBAT) COA NX2467M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"MOMETASONE FUROATE MICRONIZED (BHN BAKU OBAT) COA NX2467M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NZ2112M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NZ2112M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FEED GRADE DICALCIUM PHOSPHATE POWDER (BHN BAKU UNTUK PAKAN TERNAK) COA TB1908014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28352510\", \"uraian\": \"FEED GRADE DICALCIUM PHOSPHATE POWDER (BHN BAKU UNTUK PAKAN TERNAK) COA TB1908014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620274\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620274\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620310\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620310\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620309\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620309\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620309\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620309\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621255\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621255\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621130\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621130\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH6202943\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH6202943\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 19E3002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 19E3002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA C00991UP\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA C00991UP\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA. 20190903\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17023010\", \"uraian\": \"DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA. 20190903\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK ,COA 02/19GL4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK ,COA 02/19GL4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK, COA 02/19LG4, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK, COA 02/19LG4, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180J4M001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180J4M001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLOPURINOL USP (BHN BAKU OBAT) COA 190054AY3ARII\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"ALLOPURINOL USP (BHN BAKU OBAT) COA 190054AY3ARII\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 02/18GAAK\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 02/18GAAK\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU KOSMETIK) COA.02/18GAAK, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT KIWI (BAHAN BAKU KOSMETIK) COA.02/18GAAK, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for APIFIL CAR (BAHAN BAKU OBAT) COA. 173268\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"APIFIL CAR (BAHAN BAKU OBAT) COA. 173268\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPRYOL 90 BF (BAHAN BAKU OBAT) COA 175088\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"CAPRYOL 90 BF (BAHAN BAKU OBAT) COA 175088\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRAZINAMIDE EP/USP (BHN BAKU OBAT) COA WPOZ 086 H 19,WHOPZ 087 H 19...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"PYRAZINAMIDE EP/USP (BHN BAKU OBAT) COA WPOZ 086 H 19,WHOPZ 087 H 19...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRANOL C2M CONC NP 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP907433R\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34029099\", \"uraian\": \"MIRANOL C2M CONC NP 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP907433R\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT692474\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT692474\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT692170\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPAGLOS WHITE/OFF-WHITE (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT692170\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX PINK (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT692475\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX PINK (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT692475\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA.M113258\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA.M113258\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIDOCAINE BASE (BHN BAKU OBAT) COA. 188117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"LIDOCAINE BASE (BHN BAKU OBAT) COA. 188117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA.MLAH0430819\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29341000\", \"uraian\": \"MELOXICAM BP (BHN BAKU OBAT) COA.MLAH0430819\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT)COA L105712819\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200H (BHN BAKU OBAT)COA L105712819\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAPROTILINE HCL (BHN BAKU OBAT) COA 1950002228\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29214900\", \"uraian\": \"MAPROTILINE HCL (BHN BAKU OBAT) COA 1950002228\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU FOXP3 BUFFER SET 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9035607\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU FOXP3 BUFFER SET 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9035607\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9169895\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9169895\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9148525\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9148525\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8219521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8219521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI-LYO (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9157516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI-LYO (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9157516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9049874\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9049874\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9172664\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9172664\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9204535\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9204535\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9196206\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9196206\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9214700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9214700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9116847\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9116847\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161530\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161530\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9192091\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9192091\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9192085\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9192085\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9203956\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9203956\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8325512\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8325512\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD CST BEADS KIT 50 TESTS(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 90399\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BD CST BEADS KIT 50 TESTS(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 90399\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD14 PE MPHIP9 100TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9134580\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD14 PE MPHIP9 100TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9134580\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8207980\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8207980\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH9169895,78374\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH9169895,78374\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9148525\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9148525\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8219521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8219521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9039992\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9039992\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8325512\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8325512\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD19 FITC 4G7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9039818\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD19 FITC 4G7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9039818\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MS CD3 MOICPX PE-CY7 17A2 50UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9108972\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"MS CD3 MOICPX PE-CY7 17A2 50UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9108972\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PERM/WASH BUFFER 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8330934\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PERM/WASH BUFFER 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8330934\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD40 FITC 5C3 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9017856\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD40 FITC 5C3 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9017856\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HUHL.A-DR FITC L243 (G46-6) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9042902\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HUHL.A-DR FITC L243 (G46-6) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9042902\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MS LGG 1KPA LTCL-FITC MOPC-21 100TST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8241736\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"MS LGG 1KPA LTCL-FITC MOPC-21 100TST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8241736\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYTOFIX/CYTOPERM W/GOLGLPLUG KIT 250TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8330748\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CYTOFIX/CYTOPERM W/GOLGLPLUG KIT 250TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8330748\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9172653\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9172653\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9025804\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9025804\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP A (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9171702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL N MENINGITIDIS ANTISERUM GRP A (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9171702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9025804\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9025804\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025804\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025804\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9113721\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9113721\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI-HLA-DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9136649\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"ANTI-HLA-DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9136649\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9162587\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9162587\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD10 PE HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9178421\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD10 PE HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9178421\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD41A PE HIP8 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9010710\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD41A PE HIP8 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9010710\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MS TH1/TH2/TH17 CBA KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9221635\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"MS TH1/TH2/TH17 CBA KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9221635\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9025667\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9025667\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8291707\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8291707\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 9148525\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 9148525\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233839\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233839\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8243742\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS INABA 3ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8243742\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE PENASE CONCENTRATE 10X20ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9190501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"TUBE PENASE CONCENTRATE 10X20ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9190501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8312963\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8312963\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FOLIC ACID ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9176696\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE FOLIC ACID ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9176696\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8248932\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8248932\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLR B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9176695\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLR B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9176695\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9142512\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9142512\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9017792\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9017792\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9196893\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9196893\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOBACILLI MRS BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9039670\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOBACILLI MRS BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9039670\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9183217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9183217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOBACILLI AGAR AOAC 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8155567\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOBACILLI AGAR AOAC 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8155567\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PDX-1 ALEXA 488 658A5 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8172732\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PDX-1 ALEXA 488 658A5 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8172732\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD4 APC SK3 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 9135596\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD4 APC SK3 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 9135596\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9092796\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9092796\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9113721\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD3 PE SK7 100 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9113721\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI-HLA-DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9136649\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"ANTI-HLA-DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9136649\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD41A PE HIP8 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9010710\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD41A PE HIP8 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9010710\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD209 APC DCN46 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9123890\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD209 APC DCN46 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9123890\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD64 FITC 10.1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9017758\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD64 FITC 10.1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9017758\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD274 PE MIH1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9032800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD274 PE MIH1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9032800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD206 FITC 19.2 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8191532\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD206 FITC 19.2 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8191532\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD11C PE CE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9157617\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD11C PE CE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9157617\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9025804\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9025804\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA ROA235197\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA ROA235197\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYLPOL 980 (20KG) BAHAN BAKU KOSMETIK, COA 11519073,11519074\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39069099\", \"uraian\": \"ACRYLPOL 980 (20KG) BAHAN BAKU KOSMETIK, COA 11519073,11519074\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BAHAN BAKU MAKANAN ), COA 20190905\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BAHAN BAKU MAKANAN ), COA 20190905\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET), COA WP816958\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET), COA WP816958\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELANOSTATINE 5-BG(50PPM) (BHN BAKU KOSMETIK) COA 817047558K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MELANOSTATINE 5-BG(50PPM) (BHN BAKU KOSMETIK) COA 817047558K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829017384K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"B-WHITE (BHN BAKU KOSMETIK) COA 829017384K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769017443K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHRONOLINE (BHN BAKU KOSMETIK) COA 769017443K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANACHRYS 2B PF (BHN BAKU KOSMETIK) COA 793057327K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LANACHRYS 2B PF (BHN BAKU KOSMETIK) COA 793057327K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK), COA 1901606\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK), COA 1901606\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1907705\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) COA 1907705\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1907706\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) COA 1907706\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5555018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5555018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830017310K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL (BHN BAKU KOSMETIK) COA 830017310K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769017443K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHRONOLINE (BHN BAKU KOSMETIK) COA 769017443K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANABLUE (DISC) (BHN BAKU KOSMETIK) COA 5533018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LANABLUE (DISC) (BHN BAKU KOSMETIK) COA 5533018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828017058K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"NEUTRAZEN (BHN BAKU KOSMETIK) COA 828017058K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784027602K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784027602K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFADROXIL MONOHYDRATE (PURIDROX TM POWDER) BHN BAKU OBAT, COA B334648 ,649,644\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFADROXIL MONOHYDRATE (PURIDROX TM POWDER) BHN BAKU OBAT, COA B334648 ,649,644\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180J7B001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM HYDROXYPROPYL (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180J7B001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J33002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J33002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I8Q003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I8Q003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J5L003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J5L003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J4B003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J4B003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180J4J001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180J4J001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180J5L003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180J5L003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219030054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219030054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL 75L ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01906334\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL 75L ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01906334\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01905011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE01905011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01905011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE01905011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18120037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18120037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01904029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01904029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT19020008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT19020008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM ASCORBATE 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00119006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"CALCIUM ASCORBATE 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00119006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT19020043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT19020043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19030046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19030046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19030004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19030004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT19040177\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT19040177\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPLEMEN) COA XH20190202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPLEMEN) COA XH20190202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19030021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19030021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19030014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19030014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519137\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519137\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00519015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00519015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18120037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18120037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19030021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19030021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT19020008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT19020008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01902018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01902018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18120037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18120037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11190103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11190103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90610138\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90610138\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90610138\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90610138\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90610138\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90610138\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ90610138, UQ90710156\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ90610138, UQ90710156\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00619038\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00619038\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00619038\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00619038\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00619038,WB00619039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00619038,WB00619039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100CWS/AM (BHN BAKU SUPLEMEN) COA UT19060021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100CWS/AM (BHN BAKU SUPLEMEN) COA UT19060021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT19040177\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT19040177\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT19020008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT19020008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01904029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01904029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00519015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00519015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT19020043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT19020043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19030014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19030014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11903011, OP11903019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11903011, OP11903019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT19060021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT19060021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01904029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01904029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01906728\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01906728\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1901010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1901010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18120056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18120056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ90206035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ90206035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX BAKU MAKANAN) COA TL01906718\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE, 25KG BOX BAKU MAKANAN) COA TL01906718\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01907732\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01907732\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01904045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL ,20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01904045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01904045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01904045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01902018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01902018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 103093-A (BHN BAKU MAKANAN) COA XW91908194\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 103093-A (BHN BAKU MAKANAN) COA XW91908194\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW91908221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW91908221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01902018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01902018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19050090\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19050090\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01904045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01904045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01907732\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01907732\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01905843\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01905843\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01906728\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01906728\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01902018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01902018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01903366\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01903366\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DWI-BI (BHN BAKU MAKANAN) COA XW91908263\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"DWI-BI (BHN BAKU MAKANAN) COA XW91908263\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ADSORB AFLA (BHN BAKU UNTUK PAKAN TERNAK) COA 124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25081000\", \"uraian\": \"ADSORB AFLA (BHN BAKU UNTUK PAKAN TERNAK) COA 124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA MTP22219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA MTP22219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA API HIGH PURITY (1X25KG FREE SAMPLE)NO COMMERCIAL VALUE,COA MTP22219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA API HIGH PURITY (1X25KG FREE SAMPLE)NO COMMERCIAL VALUE,COA MTP22219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00419415\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00419415\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00419415\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00419415\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE 99PCT TG,20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00419415\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE 99PCT TG,20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00419415\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19070015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19070015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE ,25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ90706164,6165\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE ,25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ90706164,6165\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18120041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18120041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19070015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19070015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19060014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19060014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100(BHN BAKU SUPLEMEN) COA UT19070056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100(BHN BAKU SUPLEMEN) COA UT19070056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM TYPE T 25 KG (BHN BAKU OBAT) COA C0029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331100\", \"uraian\": \"METAMIZOLE SODIUM TYPE T 25 KG (BHN BAKU OBAT) COA C0029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SARBUTAMOL SULFATE BP (BHN BAKU OBAT) COA 029D041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29051400\", \"uraian\": \"SARBUTAMOL SULFATE BP (BHN BAKU OBAT) COA 029D041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 070719, 250719\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25070000\", \"uraian\": \"KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 070719, 250719\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 INF OIL ,4,5KG PJUG (BHN BAKU SUPLEMEN) COA TS00012344\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 INF OIL ,4,5KG PJUG (BHN BAKU SUPLEMEN) COA TS00012344\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA. 20190815\""}, {"role": "assistant", "content": "{\"hs_code\" : \"11081200\", \"uraian\": \"CORN STARCH (BHN BAKU MAKANAN) COA. 20190815\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINGSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO190101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINGSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO190101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-190805\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-190805\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INCA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK) COA II190608-AI-D-BIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"INCA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK) COA II190608-AI-D-BIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HORSECHESNUT PHYTELENE EG 042 (BHN BAKU KOSMETIK) COA EG402-190801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HORSECHESNUT PHYTELENE EG 042 (BHN BAKU KOSMETIK) COA EG402-190801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA190801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA190801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA VIV1900701-BGBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA VIV1900701-BGBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180092 ,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180092 ,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-RIBOSE (BHN BAKU OBAT) COA ZN190912\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29400000\", \"uraian\": \"D-RIBOSE (BHN BAKU OBAT) COA ZN190912\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SORBITOL SPECIAL TM MDF 85, SORBITOL( BHN BAKU OBAT) COA M19013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054400\", \"uraian\": \"SORBITOL SPECIAL TM MDF 85, SORBITOL( BHN BAKU OBAT) COA M19013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM (BHN BAKU OBAT) COA 1905465 S/D 67,1906726, 28\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331900\", \"uraian\": \"METAMIZOLE SODIUM (BHN BAKU OBAT) COA 1905465 S/D 67,1906726, 28\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLOMIPHENE CITRATE USP/EP (BHN BAKU OBAT ) COA 201809290013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"CLOMIPHENE CITRATE USP/EP (BHN BAKU OBAT ) COA 201809290013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 19249\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 19249\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 19076\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 19076\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEUCOCYANIDINDS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 19076\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LEUCOCYANIDINDS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 19076\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIOSMIN (BHN BAKU OBAT) COA 4003-20190807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29389000\", \"uraian\": \"DIOSMIN (BHN BAKU OBAT) COA 4003-20190807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLARITHROMYCIN (BHN BAKU OBAT) COA 128-190417-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29415000\", \"uraian\": \"CLARITHROMYCIN (BHN BAKU OBAT) COA 128-190417-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLACHE-II (BHN BAKU KOSMETIK) COA 191100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLACHE-II (BHN BAKU KOSMETIK) COA 191100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 190106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"IZAYOI (BHN BAKU KOSMETIK) COA 190106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 182975\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 182975\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 190728\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 190728\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSE HIPS LIQUID B (BHN BAKU KOSMETIK) COA 183099\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ROSE HIPS LIQUID B (BHN BAKU KOSMETIK) COA 183099\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYOSCINE BUTYL BROMIDE EP/BP (BHN BAKU OBAT) COA.2520519\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29391900\", \"uraian\": \"HYOSCINE BUTYL BROMIDE EP/BP (BHN BAKU OBAT) COA.2520519\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED(BHN BAKU OBAT UTK PAKAN TERNAK) COA. ROA3719\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED(BHN BAKU OBAT UTK PAKAN TERNAK) COA. ROA3719\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE (BHN BAKU OBAT) COA F-04 1064-190801, F-04,1064-190603\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE (BHN BAKU OBAT) COA F-04 1064-190801, F-04,1064-190603\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IPRATROPIUM BROMIDE (BHN BAKU OBAT) COA 1950000929\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"IPRATROPIUM BROMIDE (BHN BAKU OBAT) COA 1950000929\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BJ05707\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BJ05707\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91909076,77\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91909076,77\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708190001, 40 S/D 44\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708190001, 40 S/D 44\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0718110176, 0719070172\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0718110176, 0719070172\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001529534\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SLX (BHN BAKU KOSMETIK) COA 0001529534\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX (TM) VH, 5KG BAG ALU (BHN BAKU KOSMETIK) COA UF19020045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"BEAUPLEX (TM) VH, 5KG BAG ALU (BHN BAKU KOSMETIK) COA UF19020045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES1901168\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"ALLANTOIN (BHN BAKU KOSMETIK) COA ES1901168\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001529534\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SLX (BHN BAKU KOSMETIK) COA 0001529534\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX, 25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0918110046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX, 25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0918110046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT18120077\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT18120077\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01904029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01904029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT19020043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT19020043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19030049\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19030049\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19030004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19030004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519137\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519137\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT19040177\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT19040177\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT19050090\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT19050090\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPLEMEN) COA XH20190202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPLEMEN) COA XH20190202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1903019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1903019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTAZIDIME BUFFERED (BHN BAKU OBAT) COA S100900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTAZIDIME BUFFERED (BHN BAKU OBAT) COA S100900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA S702300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA S702300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) , COA 909220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (16KG) (BHN BAKU KOSMETIK) , COA 909220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) BHN BAKU KOSMETIK, COA 909220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (16KG) BHN BAKU KOSMETIK, COA 909220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GENIVIDA (TM) TG ,1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT19060002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"GENIVIDA (TM) TG ,1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT19060002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GENIVIDA (TM) TG, 1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT19060002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"GENIVIDA (TM) TG, 1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT19060002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GENIVIDA (TM) TG, 1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT19060002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"GENIVIDA (TM) TG, 1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT19060002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GENIVIDA (TM) TG, 1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT19060002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"GENIVIDA (TM) TG, 1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT19060002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT. A PALM. 1.0 M + VIT.D3 100'000 (BHN BAKU SUPLEMEN) COA UT19070073\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VIT. A PALM. 1.0 M + VIT.D3 100'000 (BHN BAKU SUPLEMEN) COA UT19070073\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT19030004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT19030004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GENIVIDA (TM) TG, 1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT19060002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"GENIVIDA (TM) TG, 1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT19060002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GENIVIDA (TM) TG, 1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT19060002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"GENIVIDA (TM) TG, 1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT19060002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18090032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18090032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COATED ASCORBIC ACID, TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01908316\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"COATED ASCORBIC ACID, TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01908316\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19070015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19070015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19070056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19070056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS FUMARATE USP/EP (BHN BAKU OBAT) COA.2019/173\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"FERROUS FUMARATE USP/EP (BHN BAKU OBAT) COA.2019/173\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CETIRIZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA 18019CZ6RII\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"CETIRIZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA 18019CZ6RII\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20190701, XH20190702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20190701, XH20190702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621632\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621632\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620818\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620818\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620878\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620878\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620585\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620585\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620873\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620873\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621359\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621359\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621358\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621358\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620876\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620876\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620817\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620817\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620294\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620294\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620819\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620819\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620869\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620869\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620870\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620870\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620871\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620871\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620935\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620935\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621130\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621130\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620972\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620972\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620970\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620970\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620969\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620969\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621254\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621254\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620968\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620968\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620967\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620967\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619248\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619248\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620310\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620310\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621364\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621364\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620422\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620422\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620422\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620422\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621365\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621365\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620307\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620307\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 22220919, 22230919,22240919, 22260919,22200919\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 22220919, 22230919,22240919, 22260919,22200919\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE BP MICRONISED (BHN BAKU OBAT) COA 22200919,22210919,20190819\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE BP MICRONISED (BHN BAKU OBAT) COA 22200919,22210919,20190819\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIMETHOPRIM BP MICRONISED (BHN BAKU OBAT) COA TMP19080680,19090685, 19090688\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"TRIMETHOPRIM BP MICRONISED (BHN BAKU OBAT) COA TMP19080680,19090685, 19090688\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRUM KOSONG (EMPTY DRUMS) FREE OF COST NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"48192000\", \"uraian\": \"DRUM KOSONG (EMPTY DRUMS) FREE OF COST NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 22700919,22710919...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 22700919,22710919...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 175450\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 175450\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE A PELLETS (BAHAN BAKU OBAT) COA 18E2201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE A PELLETS (BAHAN BAKU OBAT) COA 18E2201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN540226\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN540226\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN540219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN540219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN540229\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN540229\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN540227\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN540227\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSUVASTATIN CALCIUM (BHN BAKU OBAT) COA RVM1970719\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"ROSUVASTATIN CALCIUM (BHN BAKU OBAT) COA RVM1970719\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECHINACEA ANG. DRY PURIF.EX (BHN BAKU SUPLEMEN) COA 32767/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ECHINACEA ANG. DRY PURIF.EX (BHN BAKU SUPLEMEN) COA 32767/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for P.GINGSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 32347/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"P.GINGSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 32347/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA /PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 32811/H1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA /PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 32811/H1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1903163183\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1903163183\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1907361843\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1907361843\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0319050802 S/D 804, 807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0319050802 S/D 804, 807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL ,10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0025591\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL ,10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0025591\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219030054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219030054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0319050807 S/D 809,11\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0319050807 S/D 809,11\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0819030068\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0819030068\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES1901168\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"ALLANTOIN (BHN BAKU KOSMETIK) COA ES1901168\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL ,10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0025591\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL ,10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0025591\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX, 25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 091810046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX, 25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 091810046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0418110233\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HMS (BHN BAKU KOSMETIK) COA 0418110233\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01905011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE01905011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0025591\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0025591\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01905011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE01905011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHISOPRINOL (BHN BAKU OBAT) COA MTP9050150\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"METHISOPRINOL (BHN BAKU OBAT) COA MTP9050150\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTAXANTHIN OIL 10PCT (BHN BAKU OBAT) COA 1903231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"ASTAXANTHIN OIL 10PCT (BHN BAKU OBAT) COA 1903231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTAXANTHIN WATER-SOLUBLE 1PCT (BHN BAKU OBAT) COA 1904051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"ASTAXANTHIN WATER-SOLUBLE 1PCT (BHN BAKU OBAT) COA 1904051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFADROXIL MONOHYDRATE (PURIDROX TM POWDER) BHN BAKU OBAT, COA B334650,653 S/D 655\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFADROXIL MONOHYDRATE (PURIDROX TM POWDER) BHN BAKU OBAT, COA B334650,653 S/D 655\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA WID\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) COA WID\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WG-SIG (BHN BAKU KOSMETIK) COA WBI\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WG-SIG (BHN BAKU KOSMETIK) COA WBI\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA WGM\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA WGM\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-013159\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-013159\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK)COA BAG-021879\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK)COA BAG-021879\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK) COA U190917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK) COA U190917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA MCP-N-042189\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA MCP-N-042189\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012239\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012239\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK)COA MSEEC-012039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK)COA MSEEC-012039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-011049\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-011049\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK) COA NMSP-D-023028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK) COA NMSP-D-023028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-040479\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-040479\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK) COA CPG-391069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK) COA CPG-391069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND YUZU EXTRACT (BHN BAKU KOSMETIK) COA CJUBD-063059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND YUZU EXTRACT (BHN BAKU KOSMETIK) COA CJUBD-063059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK)COA ARP-321249\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK)COA ARP-321249\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-062928\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-062928\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 101969012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 101969012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT TEA POWDER (TEA EXTRACT) BHN BAKU MAKANAN, COA 909201,909061\""}, {"role": "assistant", "content": "{\"hs_code\" : \"9022010\", \"uraian\": \"INSTANT TEA POWDER (TEA EXTRACT) BHN BAKU MAKANAN, COA 909201,909061\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 INF OIL ,4,5KG PJUG (BHN BAKU SUPLEMEN) COA TS00012761\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 INF OIL ,4,5KG PJUG (BHN BAKU SUPLEMEN) COA TS00012761\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT19030006,07\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT19030006,07\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE,25KG BOX (BHN BAKU MAKANAN) COA TL01908287,8292\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE,25KG BOX (BHN BAKU MAKANAN) COA TL01908287,8292\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01908270,74,79,87\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01908270,74,79,87\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT19060015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT19060015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA 176574\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELUCIRE 44/14 (BHN BAKU OBAT) COA 176574\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TEFOSE 63 BF (BAHAN BAKU OBAT) COA 176277\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TEFOSE 63 BF (BAHAN BAKU OBAT) COA 176277\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TEFOSE 63 BF (BAHAN BAKU OBAT) COA 176334\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TEFOSE 63 BF (BAHAN BAKU OBAT) COA 176334\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN2830919\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN2830919\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK)COA MSEEC-012039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK)COA MSEEC-012039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK)COA HMVBD-011079\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK)COA HMVBD-011079\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-062928\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-062928\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND LICORICE EXTRACT (BHN BAKU KOSMETIK) COA GGB-012759\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND LICORICE EXTRACT (BHN BAKU KOSMETIK) COA GGB-012759\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA MCP-N-042189\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA MCP-N-042189\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK)COA 061219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK)COA 061219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA. RBA2661900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA. RBA2661900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CATCOL C 135 (L) GRADE (BAHAN BAKU KOSMETIK) COA 561/19\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CATCOL C 135 (L) GRADE (BAHAN BAKU KOSMETIK) COA 561/19\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP816106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP-PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP816106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP814311\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP814311\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C BLUE #1/BRILLIANT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP805964\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C BLUE #1/BRILLIANT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP805964\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C BLUE #2/INDIGO CARMINE... (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP815895\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C BLUE #2/INDIGO CARMINE... (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP815895\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP807309\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP807309\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRISODIUM CITRATE DIHYDRATE FINE GRANULAR (BHN BAKU MAKANAN), COA UJ927\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"TRISODIUM CITRATE DIHYDRATE FINE GRANULAR (BHN BAKU MAKANAN), COA UJ927\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA P-64\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA P-64\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEPYRAMINE MALEATE EP (BHN BAKU OBAT) COA SLL/M/0519008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"MEPYRAMINE MALEATE EP (BHN BAKU OBAT) COA SLL/M/0519008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1909077,78 ,81 S/D 88\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"MEFENAMIC ACID (BHN BAKU OBAT) COA MA1909077,78 ,81 S/D 88\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NOREPINEPHRINE BITARTRATE/NORADRENALINE TARTRATE (BHN BAKU OBAT) COA 520104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29379010\", \"uraian\": \"NOREPINEPHRINE BITARTRATE/NORADRENALINE TARTRATE (BHN BAKU OBAT) COA 520104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SELVOL ULTALUX FF 25KG BAG (BHN BAKU KOSMETIK) COA D041892672\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SELVOL ULTALUX FF 25KG BAG (BHN BAKU KOSMETIK) COA D041892672\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 182879\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 182879\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1906203\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) COA 1906203\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829017461K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"B-WHITE (BHN BAKU KOSMETIK) COA 829017461K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1833811\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) COA 1833811\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EPA DHA 44 37 (BHN SUPLEMEN KESEHATAN) COA EE4437-191006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"EPA DHA 44 37 (BHN SUPLEMEN KESEHATAN) COA EE4437-191006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B02B228M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B02B228M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9072674\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9072674\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY...(BHN BAKU OBAT UTK PEWARNA TABLET)COA IN540058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY...(BHN BAKU OBAT UTK PEWARNA TABLET)COA IN540058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180J1V001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180J1V001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180H86002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180H86002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9067559\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9067559\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9189630\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M-GREEN YEAST AND MOLD BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9189630\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9217032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9217032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I AND VI LYO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9157516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I AND VI LYO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9157516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9039992\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9039992\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8243742\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8243742\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYCLETEST PLUS DNA REAGENT KIT RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9183628\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CYCLETEST PLUS DNA REAGENT KIT RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9183628\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9204535\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9204535\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9196206\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9196206\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9209956\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9209956\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CS AND T RUO BEADS 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9087502\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CS AND T RUO BEADS 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9087502\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD36 FITC CB36 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8225528\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD36 FITC CB36 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8225528\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9234913\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9234913\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD4 PE-CY7 SK3 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9052626\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD4 PE-CY7 SK3 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9052626\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANNEXIN V FITC APOP DTEC KIT I 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9154818\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"ANNEXIN V FITC APOP DTEC KIT I 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9154818\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9197077\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9197077\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8312963\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8312963\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL E COLI O ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8285871\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL E COLI O ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8285871\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9233245\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9233245\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9017792\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9017792\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL PENICILLINASE 10000000 KU/ML 1EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9219203\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL PENICILLINASE 10000000 KU/ML 1EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9219203\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9067559\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9067559\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9197077\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9197077\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8207980\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8207980\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9067559\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9067559\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9190271\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9190271\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9217032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9217032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I AND VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9157516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I AND VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9157516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 9039992\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL H ANTIS POLY 3ML (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 9039992\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG L AND P80 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9049874\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG L AND P80 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9049874\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9039992\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9039992\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9067559\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9067559\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI SHINE WASH (BHN BAKU KOSMETIK) COA 10300077\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ANTI SHINE WASH (BHN BAKU KOSMETIK) COA 10300077\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCAP 1500 CO-PROCESSED (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539505\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCAP 1500 CO-PROCESSED (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539505\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 1909EF8413\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"L-ARGININE LO (BHN BAKU KOSMETIK),COA 1909EF8413\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA. L105712819\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200H (BHN BAKU OBAT) COA. L105712819\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPSULAC (R) 60 (BHN BAKU OBAT) COA L100412819\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"CAPSULAC (R) 60 (BHN BAKU OBAT) COA L100412819\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CELLACTOSE (R) 80 (BHN BAKU OBAT) COA L100462819\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"CELLACTOSE (R) 80 (BHN BAKU OBAT) COA L100462819\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103862619\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103862619\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLOWLAC (R) 100 (BHN BAKU OBAT) COA L101503019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"FLOWLAC (R) 100 (BHN BAKU OBAT) COA L101503019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA. 20190922\""}, {"role": "assistant", "content": "{\"hs_code\" : \"11081200\", \"uraian\": \"CORN STARCH (BHN BAKU MAKANAN) COA. 20190922\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 90238391\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 90238391\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9014523\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9014523\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9171871\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9171871\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE STANDARD METHODS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9002994\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE STANDARD METHODS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9002994\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239568\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239568\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9247271\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9247271\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9150536\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9150536\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9206092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9206092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9129700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9129700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9224870\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9224870\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161791\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE STERILE RODAC EMPTY 65X15 MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161791\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9084840\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9084840\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9197721\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9197721\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9171871\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9171871\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161683\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161683\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9050790\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9050790\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9168641\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9168641\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9247271\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9247271\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE CRYSTAL INOCULUM BROTH (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9219398\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"TUBE CRYSTAL INOCULUM BROTH (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9219398\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9128828\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9128828\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9107532\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9107532\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9105960\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9105960\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161791,\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE STERILE RODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161791,\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8331811\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8331811\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9141938\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9141938\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9085997,9161680\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9085997,9161680\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9066742\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9066742\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8317927\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8317927\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9127592\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9127592\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8271693\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8271693\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161608\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161608\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9142767\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9142767\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255977\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255977\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9021613\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9021613\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9142728\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9142728\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9148762\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9148762\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9114508\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9114508\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9168641\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9168641\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9213074\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9213074\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9128557\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9128557\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8317859\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE R2A AGAR 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8317859\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161603\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161603\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161683\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161683\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9170723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9170723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9133762\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9133762\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8354563\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8354563\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9050790\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9050790\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9084661\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9084661\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9219806\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9219806\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANEL VIEWER EUROPE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 457987\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PANEL VIEWER EUROPE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 457987\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9171871\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9171871\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 9107576\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 9107576\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161683\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161683\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142666\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142666\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9021643\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9021643\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025695\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025695\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8354563\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8354563\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9050790\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9050790\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084661\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084661\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9128557\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9128557\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9211787\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9211787\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1907559\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1907559\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE CRYSTAL E/ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9219396\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"TUBE CRYSTAL E/ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9219396\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 92118096\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 92118096\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9150590\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9150590\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL UNIVERSAL VIRAL TRANSPORT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 190908700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL UNIVERSAL VIRAL TRANSPORT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 190908700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH B01B203M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH B01B203M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9128931\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9128931\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9114508\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9114508\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9254329\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9254329\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9142723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9142723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239568\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239568\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9206092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9206092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8305630\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8305630\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MR-VP BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9148534\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MR-VP BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9148534\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7317688\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7317688\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9015557\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9015557\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MR-VP MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297944\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MR-VP MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297944\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297950\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297950\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084697\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084697\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTONE GLUCOSE EXT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8331813\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTONE GLUCOSE EXT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8331813\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9224889\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9224889\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9218024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRILLIANT GREEN AGAR 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9218024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MICRO ASSAY CULTURE AGAR 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9025933\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MICRO ASSAY CULTURE AGAR 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9025933\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8317917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8317917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DICHLORAN ROSE BENGAL CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9142981\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DICHLORAN ROSE BENGAL CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9142981\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH B01B211M136\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH B01B211M136\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9121641\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9121641\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ISP MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9189639\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ISP MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9189639\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ISP MEDIUM 4 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 8354590\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ISP MEDIUM 4 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 8354590\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MARINE BROTH 2216 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9142906\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MARINE BROTH 2216 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9142906\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YPD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9218049\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE YPD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9218049\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ISP MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8337710\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ISP MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8337710\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST NITROGEN BASE W/O AA 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9148839\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE YEAST NITROGEN BASE W/O AA 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9148839\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9206092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9206092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9142666\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9142666\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9206092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9206092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH 9254329\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH 9254329\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 INF OIL ,4,5KG PJUG (BHN BAKU SUPLEMEN) COA TS00012761\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 INF OIL ,4,5KG PJUG (BHN BAKU SUPLEMEN) COA TS00012761\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLORIMETRIC (BAHAN BAKU SUPLEMEN) COA 19B0048100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLORIMETRIC (BAHAN BAKU SUPLEMEN) COA 19B0048100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLORIMETRIC (BAHAN BAKU SUPLEMEN) COA 19B0062200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLORIMETRIC (BAHAN BAKU SUPLEMEN) COA 19B0062200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLORIMETRIC (BAHAN BAKU SUPPLEMEN) COA 19B0062300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLORIMETRIC (BAHAN BAKU SUPPLEMEN) COA 19B0062300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLORIMETRIC (BAHAN BAKU SUPPLEMEN) COA 19B0066200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLORIMETRIC (BAHAN BAKU SUPPLEMEN) COA 19B0066200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLORIMETRIC (BHN BAKU SUPLEMEN) COA 19B0066300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLORIMETRIC (BHN BAKU SUPLEMEN) COA 19B0066300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VALERIAN D.H.E>0.8PCT VAL.AC (BHN BAKU SUPLEMEN) COA 19B0016400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VALERIAN D.H.E>0.8PCT VAL.AC (BHN BAKU SUPLEMEN) COA 19B0016400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYMARIN /PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 19B0044300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILYMARIN /PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 19B0044300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 19B00063300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 19B00063300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PASSION FLOWER D.H.E.>4PCT (BHN BAKU SUPLEMEN) COA 19B0061200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PASSION FLOWER D.H.E.>4PCT (BHN BAKU SUPLEMEN) COA 19B0061200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HAWTHORN DRY EXTRACT>1.8PCT (BHN BAKU SUPLEMEN) COA 10908/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HAWTHORN DRY EXTRACT>1.8PCT (BHN BAKU SUPLEMEN) COA 10908/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VALERIAN D.H.E.>0.8PCT VAL.AC.(BHN BAKU SUPLEMEN) COA 19B0016400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VALERIAN D.H.E.>0.8PCT VAL.AC.(BHN BAKU SUPLEMEN) COA 19B0016400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621969\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621969\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1903163183\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1903163183\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA ND190401\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP93 (BHN BAKU OBAT) COA ND190401\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP2010/USP42 (BHN BAKU OBAT) COA.NED190802, NED190901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP2010/USP42 (BHN BAKU OBAT) COA.NED190802, NED190901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISONE USP42 (BHN BAKU OBAT) COA NPD190911\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISONE USP42 (BHN BAKU OBAT) COA NPD190911\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA ROA268194\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA ROA268194\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19090044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19090044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCTCWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"REDIVIVO (R) (LYCOPENE) 10PCTCWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19080018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19080018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19090044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19090044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19090044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19090044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COATED ASCORBIC ACID TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01909612\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"COATED ASCORBIC ACID TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01909612\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCTCWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"REDIVIVO (R) (LYCOPENE) 10PCTCWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 1PCT SD (BHN BAKU SUPLEMEN) COA UT18110016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 1PCT SD (BHN BAKU SUPLEMEN) COA UT18110016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE 99PCT TG,20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00419416\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE 99PCT TG,20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00419416\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19070015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19070015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF, 1KG /ALUF (BHN BAKU SUPLEMEN) COA UE01903011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO (R) LUTEIN 20PCT SAF, 1KG /ALUF (BHN BAKU SUPLEMEN) COA UE01903011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19090044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19090044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LABRAFAC PG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 176988\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LABRAFAC PG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 176988\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE BM PELLETS (BAHAN BAKU OBAT) COA 19E1401\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE BM PELLETS (BAHAN BAKU OBAT) COA 19E1401\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CARBAZOCHROME SODIUM SULFONATE ORAL G (BHN BAKU OBAT)COA AC90801/90822\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"CARBAZOCHROME SODIUM SULFONATE ORAL G (BHN BAKU OBAT)COA AC90801/90822\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NOREPINEPHRINE BITARTRATE ,BHN BAKU OBAT, COA 520104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29379010\", \"uraian\": \"NOREPINEPHRINE BITARTRATE ,BHN BAKU OBAT, COA 520104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011J66L01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV HYDROXYPROPYL (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011J66L01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM VALPROATE (BAHAN BAKU OBAT) COA.453132\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29159090\", \"uraian\": \"SODIUM VALPROATE (BAHAN BAKU OBAT) COA.453132\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LCD39419T\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101990\", \"uraian\": \"SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LCD39419T\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN SODIUM CRYSTALLINE STERILE (BHN BAKU OBAT) COA 25NHAGB0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN SODIUM CRYSTALLINE STERILE (BHN BAKU OBAT) COA 25NHAGB0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NYSTATIN POWDER (BHN BAKU OBAT) COA C114344\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NYSTATIN POWDER (BHN BAKU OBAT) COA C114344\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 23620919,23630919...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 23620919,23630919...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IRBESARTAN (BHN BAKU OBAT) COA C5409-19-002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"IRBESARTAN (BHN BAKU OBAT) COA C5409-19-002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-GLUCOSAMINE SULPHATE POTASSIUM (BHN BAKU OBAT) COA XH20191010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"D-GLUCOSAMINE SULPHATE POTASSIUM (BHN BAKU OBAT) COA XH20191010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OXFENDAZOLE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 60419006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"OXFENDAZOLE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 60419006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POVIDONE K-30 (BHN BAKU OBAT) COA PK30-190827F13\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"POVIDONE K-30 (BHN BAKU OBAT) COA PK30-190827F13\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISONE (BHN BAKU OBAT) COA K03F20190504, K03F20190505\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISONE (BHN BAKU OBAT) COA K03F20190504, K03F20190505\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621474\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621474\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621081\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621081\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620870\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620870\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621465\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621465\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621413\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621413\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621441\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621441\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621467\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621467\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620996\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620996\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621441\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621441\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621471\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621471\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621466\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621466\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621494\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621494\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621495\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621495\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHARMABURST (R) C1 (BHN BAKU OBAT) COA.121910088\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069099\", \"uraian\": \"PHARMABURST (R) C1 (BHN BAKU OBAT) COA.121910088\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT GRANULATION ,25KG BOX (BHN BAKU SUPLEMEN) COA WB00319900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT GRANULATION ,25KG BOX (BHN BAKU SUPLEMEN) COA WB00319900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT GRANULATION ,25KG BOX (BHN BAKU SUPLEMEN) COA WB00319901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT GRANULATION ,25KG BOX (BHN BAKU SUPLEMEN) COA WB00319901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT, GRANULATION ,25KGBOX (BHN BAKU SUPLEMEN) COA WB00319900,9901,9902\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT, GRANULATION ,25KGBOX (BHN BAKU SUPLEMEN) COA WB00319900,9901,9902\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90410072\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90410072\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB00319902\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB00319902\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB00319902\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB00319902\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01902123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01902123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT19020043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT19020043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19030014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19030014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20190202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20190202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01904045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01904045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ90609014,18\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ90609014,18\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01901005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01901005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19030039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19030039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19030014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19030014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01902123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01902123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL01907738\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL01907738\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 1PCT CWS/M (BHN BAKU MAKANAN) COA UT19070032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 1PCT CWS/M (BHN BAKU MAKANAN) COA UT19070032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT19050016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT19050016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT19060020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT19060020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)(BHN BAKU MAKANAN) COA UT19040177\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO)(BHN BAKU MAKANAN) COA UT19040177\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01902123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01902123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS(BHN BAKU MAKANAN) COA UE01904029,UE01905038\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS(BHN BAKU MAKANAN) COA UE01904029,UE01905038\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01906190\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01906190\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU (BHN BAKU MAKANAN) COA UT19040177\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU (BHN BAKU MAKANAN) COA UT19040177\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0005142826\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SLX (BHN BAKU KOSMETIK) COA 0005142826\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708190044,53,54\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708190044,53,54\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P9N27QA000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL TX (BHN BAKU KOSMETIK) COA P9N27QA000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA S702300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA S702300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOXORUBICIN HYDROCHLORIDE EP (BHN BAKU OBAT) COA 0619036011, 061903049\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"DOXORUBICIN HYDROCHLORIDE EP (BHN BAKU OBAT) COA 0619036011, 061903049\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GLICLAZIDE (BHN BAKU OBAT) COA 1940002667\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"GLICLAZIDE (BHN BAKU OBAT) COA 1940002667\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GLICLAZIDE (BHN BAKU OBAT) COA 1940002357\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"GLICLAZIDE (BHN BAKU OBAT) COA 1940002357\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00119216\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00119216\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00319233\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00319233\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ONDANSETRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA 19002OHRII\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"ONDANSETRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA 19002OHRII\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLOBETASOL PROPIONATE USP 41 MI (BHN BAKU OBAT) COA APL/01207/H-19\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"CLOBETASOL PROPIONATE USP 41 MI (BHN BAKU OBAT) COA APL/01207/H-19\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIROXICAM (BHN BAKU OBAT) COA PRX2019017M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"PIROXICAM (BHN BAKU OBAT) COA PRX2019017M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EDIBLE BOVINE GELATINE (BAHAN BAKU OBAT ), COA 5001909474\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35030049\", \"uraian\": \"EDIBLE BOVINE GELATINE (BAHAN BAKU OBAT ), COA 5001909474\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE,25KG BOX (BHN BAKU MAKANAN) COA TL01910873\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE,25KG BOX (BHN BAKU MAKANAN) COA TL01910873\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000030383\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000030383\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9221680\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9221680\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9235165\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9235165\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9235171\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9235171\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9226303\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9226303\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFADROXIL MONOHYDRATE (PURIDROX COMPACTED) BHN BAKU OBAT, COA B340119,121,123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFADROXIL MONOHYDRATE (PURIDROX COMPACTED) BHN BAKU OBAT, COA B340119,121,123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799037025K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799037025K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799037191K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799037191K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799037364K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799037364K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829017461K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"B-WHITE TM (BHN BAKU KOSMETIK) COA 829017461K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769017504K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769017504K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXO-T TM (BHN BAKU KOSMETIK), COA 715017373K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EXO-T TM (BHN BAKU KOSMETIK), COA 715017373K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANACHRYS 2B PF (PRESERVATIVE ) BHN BAKU KOSMETIK, COA 793057327K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LANACHRYS 2B PF (PRESERVATIVE ) BHN BAKU KOSMETIK, COA 793057327K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK), COA 1921406\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK), COA 1921406\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELANOSTATINE TM 5BG (50PPM) BHN BAKU KOSMETIK, COA 817047448K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MELANOSTATINE TM 5BG (50PPM) BHN BAKU KOSMETIK, COA 817047448K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELANOSTATINE TM 5 BG (50PPM) BHN BAKU KOSMETIK, COA 817047558K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MELANOSTATINE TM 5 BG (50PPM) BHN BAKU KOSMETIK, COA 817047558K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN TM (BHN BAKU KOSMETIK), COA 828017197K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"NEUTRAZEN TM (BHN BAKU KOSMETIK), COA 828017197K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK), COA 782017161K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK), COA 782017161K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELANOSTATINE TM 5 BG (50PPM) BHN BAKU KOSMETIK, COA 817047558K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MELANOSTATINE TM 5 BG (50PPM) BHN BAKU KOSMETIK, COA 817047558K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRO-LIPO TM NEO (BHN BAKU KOSMETIK) COA 1921801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PRO-LIPO TM NEO (BHN BAKU KOSMETIK) COA 1921801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9189048\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9189048\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9189048\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9189048\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9239884\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9239884\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9155999\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9155999\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9189027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9189027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8338681\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8338681\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239884\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239884\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239884\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239884\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9239884\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9239884\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9148976\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9148976\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9070604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9070604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9070604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9070604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BJ05707\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BJ05707\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA C12041UP\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA C12041UP\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA. 8MT190979\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30032000\", \"uraian\": \"STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA. 8MT190979\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 190924031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 190924031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA DOC2521921\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"SODIUM CARBONATE IPH (BHN BAKU OBAT) COA DOC2521921\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BAHAN BAKU MAKANAN ), COA 20191017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BAHAN BAKU MAKANAN ), COA 20191017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL, PRESSED CAN,25KG (BHN BAKU OBAT) COA 8005560001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL, PRESSED CAN,25KG (BHN BAKU OBAT) COA 8005560001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA659458\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA659458\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY SGR RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA660763\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY SGR RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA660763\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA660424\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA660424\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 20191003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 20191003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1903143163\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1903143163\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GABAPENTIN (USP) (BHN BAKU OBAT) COA CGBU190395, CGBU190398\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"GABAPENTIN (USP) (BHN BAKU OBAT) COA CGBU190395, CGBU190398\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BAHAN BAKU MAKANAN ), COA 20191019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BAHAN BAKU MAKANAN ), COA 20191019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J71002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J71002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180J7N002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180J7N002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J7I001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J7I001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM CR...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J32001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM CR...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J32001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E5 PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011J6AL01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E5 PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011J6AL01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-1510719\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334910\", \"uraian\": \"DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-1510719\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOPROFEN SALE DI LISINA (BHN BAKU OBAT) COA 190324\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29183000\", \"uraian\": \"KETOPROFEN SALE DI LISINA (BHN BAKU OBAT) COA 190324\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOPROFEN (BHN BAKU OBAT) COA 192026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29183000\", \"uraian\": \"KETOPROFEN (BHN BAKU OBAT) COA 192026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFADROXIL MONOHYDRATE (PURIDROX COMPACTED) BHN BAKU OBAT, COA B334656,B334656,B334660\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFADROXIL MONOHYDRATE (PURIDROX COMPACTED) BHN BAKU OBAT, COA B334656,B334656,B334660\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 720 -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1518553\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 720 -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1518553\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 940 10KG KA (BHN BAKU KOSMETIK) COA 1531980\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 940 10KG KA (BHN BAKU KOSMETIK) COA 1531980\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT A PALM 1.0M AND VIT D3 100'000 (BHN BAKU MAKANAN) COA UT19080074\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VIT A PALM 1.0M AND VIT D3 100'000 (BHN BAKU MAKANAN) COA UT19080074\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT19090024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT19090024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE 99PCT,20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00419416\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE 99PCT,20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00419416\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE KYSSE 1ML, COA 16912-1,17302-1,17343-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE KYSSE 1ML, COA 16912-1,17302-1,17343-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SB VITAL LIDOCAINE IML ,COA 17244-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE SB VITAL LIDOCAINE IML ,COA 17244-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SB VITAL LIGHT LIDOCAINE IML, COA 17132-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE SB VITAL LIGHT LIDOCAINE IML, COA 17132-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE REFYNE 1 ML ,COA 17180-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE REFYNE 1 ML ,COA 17180-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE DEFYNE 1ML , COA 17294-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE DEFYNE 1ML , COA 17294-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE KYSSE 1ML , COA 16912-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE KYSSE 1ML , COA 16912-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA.0000068958\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA.0000068958\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA.0000068959\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA.0000068959\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEVOFLOXACIN HEMIHYDRATE USP (BHN BAKU OBAT) COA LF19070101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"LEVOFLOXACIN HEMIHYDRATE USP (BHN BAKU OBAT) COA LF19070101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THEOPHYLLINE ANHYDROUS (BAHAN BAKU OBAT) COA 19250,384,,385,394, S/D 398, 401,402,405\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29395900\", \"uraian\": \"THEOPHYLLINE ANHYDROUS (BAHAN BAKU OBAT) COA 19250,384,,385,394, S/D 398, 401,402,405\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT19080017,18\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT19080017,18\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT19070876\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT19070876\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT19080017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT19080017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ90706165,66,68,69\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ90706165,66,68,69\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT19050016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT19050016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90513038\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90513038\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE ,25KG BOX (BHN BAKU MAKANAN) COA TL01909622,1910800,818,824\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE ,25KG BOX (BHN BAKU MAKANAN) COA TL01909622,1910800,818,824\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A, 20KG BA (BHN BAKU MAKANAN) COA WB00719452,63,64\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A, 20KG BA (BHN BAKU MAKANAN) COA WB00719452,63,64\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-190906\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-190906\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK) COA EG138-190601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK) COA EG138-190601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK) COA EG138-191002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK) COA EG138-191002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) , COA 910065\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) , COA 910065\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) BHN BAKU KOSMETIK, COA 90221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (16KG) BHN BAKU KOSMETIK, COA 90221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6028 (16KG) BHN BAKU KOSMETIK, COA 909220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6028 (16KG) BHN BAKU KOSMETIK, COA 909220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-96A-6CS (16KG) BHN BAKU KOSMETIK, COA 910066,910067\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-96A-6CS (16KG) BHN BAKU KOSMETIK, COA 910066,910067\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-56A (18KG) BHN BAKU KOSMETIK , COA 910742\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-56A (18KG) BHN BAKU KOSMETIK , COA 910742\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 182975\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 182975\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 191630\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 191630\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 191799\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"IZAYOI (BHN BAKU KOSMETIK) COA 191799\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 191495\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 191495\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 190328\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 190328\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 191630\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 191630\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM SALICYLATE (TYPE O) USP/EP (BHN BAKU KOSMETIK)COA 1808016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29182100\", \"uraian\": \"SODIUM SALICYLATE (TYPE O) USP/EP (BHN BAKU KOSMETIK)COA 1808016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT694467\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT694467\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPASPRAY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT693977\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPASPRAY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT693977\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT694401\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPAGLOS WHITE/OFF-WHITE (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT694401\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J4M001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J4M001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I5B003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I5B003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I5R001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I5R001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM CR...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I61003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM CR...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I61003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LISINOPRIL DIHYDRATE (BHN BAKU OBAT) COA C5170-19-001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"LISINOPRIL DIHYDRATE (BHN BAKU OBAT) COA C5170-19-001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AHCC-PROFESSIONAL-FG (BHN BAKUOBAT) COA 910FM01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069099\", \"uraian\": \"AHCC-PROFESSIONAL-FG (BHN BAKUOBAT) COA 910FM01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621495\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621495\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622561\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622561\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622560\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622560\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621924\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621924\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621925\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621925\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621913\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621913\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621925\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621925\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621918\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621918\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621921\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621921\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621888\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621888\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621922\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621922\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621919\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621919\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622847\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622847\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621473\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621473\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621466\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621466\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621470\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621470\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19070056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19070056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19090044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19090044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18120041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18120041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COATED ASCORBIC ACID TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01909631\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"COATED ASCORBIC ACID TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01909631\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19070015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19070015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19080019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19080019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK)COA CHP1191022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK)COA CHP1191022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK)COA ARP-870989\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK)COA ARP-870989\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012239\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012239\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-062109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-062109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE 1PCT SOLUTION (BHN BAKU KOSMETIK) COA HASC-561409\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND BIO-SODIUM HYALURONATE 1PCT SOLUTION (BHN BAKU KOSMETIK) COA HASC-561409\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK)COA HMVBD-011079,021409\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK)COA HMVBD-011079,021409\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND BIO-BLACK PEARL POWDER (BHN BAKU KOSMETIK) COA PDEG-022369\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND BIO-BLACK PEARL POWDER (BHN BAKU KOSMETIK) COA PDEG-022369\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COAOHA-062109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COAOHA-062109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-011579\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-011579\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-021409\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-021409\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 061219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 061219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELATINE (PHARMACEUTICAL BOVINE) (BAHAN BAKU OBAT ), COA 5001907208\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35030049\", \"uraian\": \"GELATINE (PHARMACEUTICAL BOVINE) (BAHAN BAKU OBAT ), COA 5001907208\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for P.GINGSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 19S0132200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"P.GINGSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 19S0132200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ACETATE ANHYDROUS (BHN BAKU MAKANAN), COA 3073326\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29152910\", \"uraian\": \"SODIUM ACETATE ANHYDROUS (BHN BAKU MAKANAN), COA 3073326\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED GRADE A) BHN BAKU OBAT, COA. M531601, 1623,1625,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED GRADE A) BHN BAKU OBAT, COA. M531601, 1623,1625,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9270953\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9270953\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH B01B204M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH B01B204M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA ROA275191\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA ROA275191\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOCUSATE SODIUM BP (BHN BAKU OBAT) COA DSW9009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"DOCUSATE SODIUM BP (BHN BAKU OBAT) COA DSW9009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9239568\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9239568\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025695\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRILIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025695\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142908\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142908\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9128828\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9128828\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9141938\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9141938\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9066742,9128852\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9066742,9128852\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9161608\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9161608\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9168641\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9168641\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8129682\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8129682\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9189611\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9189611\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9128828\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9128828\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9105960,9211130\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9105960,9211130\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILERODAC EMPTY 65X15 MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9199500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE STERILERODAC EMPTY 65X15 MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9199500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9141938,9183260\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9141938,9183260\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161680\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161680\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9128852\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9128852\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8317927\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8317927\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9127592\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9127592\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8297883\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8297883\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8271693\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8271693\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161608\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161608\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9091912\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9091912\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8255977\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8255977\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9021613\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9021613\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142728\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142728\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9212136\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9212136\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9079951, 9161545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9079951, 9161545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9128931\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9128931\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9168641\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9168641\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8129682\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8129682\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161934\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161934\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9189611\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9189611\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9196801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9196801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9197721\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9197721\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9206386\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9206386\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161603\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161603\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9239568\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9239568\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 9161683\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 9161683\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 90216434563\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 90216434563\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9206092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9206092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9148938\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9148938\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 91769202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 91769202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9025695\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9025695\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8354563\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8354563\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9050790\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9050790\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142908\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142908\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9248034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9248034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 9196801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 9196801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239568\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239568\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9025695\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9025695\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9179455\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9179455\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1907559\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1907559\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE CRYSTAL E/ ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9219396\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"TUBE CRYSTAL E/ ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9219396\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01B203M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01B203M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9248034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9248034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9211356\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9211356\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9023839\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9023839\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8317927\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8317927\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9127592\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9127592\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161934\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161934\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9256266\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9256266\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9084661\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9084661\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9211593\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9211593\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL BUFFERED PEPTONE WATER 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9133516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PAIL BUFFERED PEPTONE WATER 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9133516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL LAURYL TRYPTOSE BROTH 2KG (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161787\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PAIL LAURYL TRYPTOSE BROTH 2KG (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161787\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9039645\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9039645\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9168709\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9168709\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9206092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9206092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9198204\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9198204\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRAIN HEART INFUSION BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8254550\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRAIN HEART INFUSION BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8254550\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9128845\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9128845\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PURPLE BROTH BASE BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9268130\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PURPLE BROTH BASE BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9268130\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MICRO INOCULUM BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 8311696\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MICRO INOCULUM BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 8311696\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE OXGALL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297826\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE OXGALL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297826\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CHROMAGAR CANDIDA 500GM (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9134915\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE CHROMAGAR CANDIDA 500GM (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9134915\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MR-VP MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297944\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MR-VP MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297944\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SALICIN 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9197737\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SALICIN 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9197737\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161593\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161593\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9231550\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9231550\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9224889\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9224889\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GC MEDIUM BASE 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9134926\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GC MEDIUM BASE 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9134926\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT BROTH 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9219600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT BROTH 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9219600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8310633\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8310633\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9267518\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9267518\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8317917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8317917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH B01B165M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH B01B165M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE OF BASEL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9121641\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE OF BASEL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9121641\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9128852\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9128852\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 8331811\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 8331811\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8271693\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8271693\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9091912\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9091912\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9079916,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9079916,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9161603\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9161603\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161683\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161683\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) COA 9021643\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) COA 9021643\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8354563\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8354563\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH B02B241M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH B02B241M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9148762\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9148762\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9128830,9168888\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9128830,9168888\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKIROORGANISME) BATCH 9161545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKIROORGANISME) BATCH 9161545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9182087\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9182087\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHENYLALANINE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9189619\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PHENYLALANINE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9189619\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9023839\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9023839\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9280013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9280013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9277506\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9277506\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9023839\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9023839\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084661\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084661\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9156832\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9156832\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9218933\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9218933\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9241552\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9241552\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9196427\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9196427\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9067559\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9067559\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9197111,9227076,..\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9197111,9227076,..\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9217032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9217032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9157516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9157516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9157516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9157516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8312963\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8312963\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL E COLI O ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8285871\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL E COLI O ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8285871\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL ISOVITALEX ENRICHMENT 10ML 5 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9203982\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL ISOVITALEX ENRICHMENT 10ML 5 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9203982\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9217032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9217032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8219521,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8219521,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD14 APC MPHI9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9196206\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD14 APC MPHI9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9196206\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9067559\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9067559\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8225528\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8225528\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9196206\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9196206\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218933\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218933\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9246430\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9246430\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9241552\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9241552\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9196427\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9196427\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9256006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9256006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP Y 1ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9277251\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL N MENINGITIDIS ANTISERUM GRP Y 1ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9277251\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8207980613\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8207980613\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9067559\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9067559\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9213220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9213220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9256006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9256006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9189630\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9189630\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9217032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9217032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9157516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9157516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9039992\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9039992\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8243742\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8243742\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9228683\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD5 APC L17F12 100 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9228683\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANNEXIN V FITC APOP DTEC KIT I 100TST (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9225522\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"ANNEXIN V FITC APOP DTEC KIT I 100TST (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9225522\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9239884\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9239884\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9241899\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9241899\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POLYPEPTONE PEPTONE EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9184337\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"POLYPEPTONE PEPTONE EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9184337\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9148976\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9148976\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9035505\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9035505\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9070604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9070604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9122883\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9122883\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9121860\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9121860\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01902123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01902123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91910074\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX 504010 (BHN BAKU MAKANAN) COA XW91910074\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA WB00519015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA WB00519015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 204005 (BHN BAKU MAKANAN) COA XW91910177\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 204005 (BHN BAKU MAKANAN) COA XW91910177\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA S100200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA S100200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOTAXIME SODIUM STERILE USP (BHN BAKU OBAT) COA S200700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOTAXIME SODIUM STERILE USP (BHN BAKU OBAT) COA S200700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACYCLOVIR MICRONIZED (BHN BAKU OBAT) COA 19100277\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"ACYCLOVIR MICRONIZED (BHN BAKU OBAT) COA 19100277\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEFENAMIC ACID POWDER (BHN BAKU OBAT) COA MA1908019 S/D 22, 24 S/D 26, 28 S/D 30\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"MEFENAMIC ACID POWDER (BHN BAKU OBAT) COA MA1908019 S/D 22, 24 S/D 26, 28 S/D 30\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETAMINE HCL (BHN BAKU OBAT), COA 0123819P\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29223900\", \"uraian\": \"KETAMINE HCL (BHN BAKU OBAT), COA 0123819P\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM OXIDE, LIGHT POWDER BP2019 (BHN BAKU OBAT), COA 1101536-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25199010\", \"uraian\": \"MAGNESIUM OXIDE, LIGHT POWDER BP2019 (BHN BAKU OBAT), COA 1101536-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA WGM\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA WGM\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA WJE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) COA WJE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA WHE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROTESIL LH (BHN BAKU KOSMETIK) COA WHE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILASOMA MFA (S) (BHN BAKU KOSMETIK) COA WJJ\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILASOMA MFA (S) (BHN BAKU KOSMETIK) COA WJJ\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS HYDROMILK (BHN BAKU KOSMETIK) COA WIJ\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS HYDROMILK (BHN BAKU KOSMETIK) COA WIJ\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT TEA POWDER (TEA EXTRACT) BHN BAKU MAKANAN, COA 910312\""}, {"role": "assistant", "content": "{\"hs_code\" : \"9022010\", \"uraian\": \"INSTANT TEA POWDER (TEA EXTRACT) BHN BAKU MAKANAN, COA 910312\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACYCLOVIR MICRONIZED (BHN BAKU OBAT) COA 19100709\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"ACYCLOVIR MICRONIZED (BHN BAKU OBAT) COA 19100709\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EPA DHA 44 37 (BHN SUPLEMEN KESEHATAN) COA EE4437-191029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"EPA DHA 44 37 (BHN SUPLEMEN KESEHATAN) COA EE4437-191029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) , COA 909746\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSP-100 (10KG) (BHN BAKU KOSMETIK) , COA 909746\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) BHN BAKU KOSMETIK, COA 910221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (16KG) BHN BAKU KOSMETIK, COA 910221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) BHN BAKU KOSMETIK, COA 910221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (16KG) BHN BAKU KOSMETIK, COA 910221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AQUACOAT ECD-30 ETHYLCELLULOSE AQUEOUS... (BHN BAKU OBAT UTK PEWARNA TABLET), COA XN19833521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"AQUACOAT ECD-30 ETHYLCELLULOSE AQUEOUS... (BHN BAKU OBAT UTK PEWARNA TABLET), COA XN19833521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AQUACOAT ECD-30 ETHYLCELLULOSE AQUEOUS 9BHN BAKU OBAT UTK PEWARNA TABLET) COA XN19833527\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"AQUACOAT ECD-30 ETHYLCELLULOSE AQUEOUS 9BHN BAKU OBAT UTK PEWARNA TABLET) COA XN19833527\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRAPE SEED DRY EXTRACT (BHN BAKU SUPLEMEN) COA 19298\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"GRAPE SEED DRY EXTRACT (BHN BAKU SUPLEMEN) COA 19298\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622339\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622339\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622338\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622338\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1951799, 1951800, 19\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"PARACETAMOL (BHN BAKU OBAT) COA 1951799, 1951800, 19\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BAHAN BAKU MAKANAN ), COA 20191023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BAHAN BAKU MAKANAN ), COA 20191023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROPYPHENAZONE (ST) (BHN BAKU OBAT) COA 1909160,65,68,74,77\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331100\", \"uraian\": \"PROPYPHENAZONE (ST) (BHN BAKU OBAT) COA 1909160,65,68,74,77\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEVOFLOXACIN HEMIHYDRATE (FREE ALKALINE) (BHN BAKU OBAT) COA C008-1906622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"LEVOFLOXACIN HEMIHYDRATE (FREE ALKALINE) (BHN BAKU OBAT) COA C008-1906622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SERENOA REPENS PURIFIED EXT (BHN BAKU SUPLEMEN) COA 19S0245600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SERENOA REPENS PURIFIED EXT (BHN BAKU SUPLEMEN) COA 19S0245600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VACCINIUM MYRTILLUS DRY EX (BHN BAKU SUPLEMEN) COA 19S0321100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"VACCINIUM MYRTILLUS DRY EX (BHN BAKU SUPLEMEN) COA 19S0321100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOTREXATE (BHN BAKU OBAT) COA EP190913\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"METHOTREXATE (BHN BAKU OBAT) COA EP190913\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MC-GLUCAN (BHN BAKU KOSMETIK) COA MCGL191025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"MC-GLUCAN (BHN BAKU KOSMETIK) COA MCGL191025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA 1GC01CLB ZP48D 250MT\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA 1GC01CLB ZP48D 250MT\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHARMACEUTICALS BOVINE GELATINE 200 BLOOM 18 MESH... (BAHAN BAKU OBAT ), COA 50019009420\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181200\", \"uraian\": \"PHARMACEUTICALS BOVINE GELATINE 200 BLOOM 18 MESH... (BAHAN BAKU OBAT ), COA 50019009420\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EDIBLE BOVINE GELATINE 220 BLOOM 20 MESH (BHN BAKU MAKANAN) COA 5001909420\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181200\", \"uraian\": \"EDIBLE BOVINE GELATINE 220 BLOOM 20 MESH (BHN BAKU MAKANAN) COA 5001909420\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT19080182\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT19080182\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE,25KG BOX (BHN BAKU MAKANAN) COA TL01909622,TL01909782\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE,25KG BOX (BHN BAKU MAKANAN) COA TL01909622,TL01909782\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J7D002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J7D002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180J7J002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180J7J002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J71002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J71002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J7I001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J7I001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MONOPROPYLENE GLYCOL (BHN BAKU KOSMETIK) COA PG(S)191018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"MONOPROPYLENE GLYCOL (BHN BAKU KOSMETIK) COA PG(S)191018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LUBRIPHARM (R) SSF NF/EP/JP SODIUM STEARYL FUMARATE(BHN BAKU OBAT) COA 121910218\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"LUBRIPHARM (R) SSF NF/EP/JP SODIUM STEARYL FUMARATE(BHN BAKU OBAT) COA 121910218\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622646\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622646\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH623243\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH623243\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622637\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622637\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622609\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622609\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622726\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622726\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH623086\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH623086\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622611\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622611\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622636\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622636\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622638\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622638\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622608\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622608\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622619\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622619\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622610\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622610\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622634\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622634\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011J66L01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011J66L01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180J63001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180J63001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I8Q003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I8Q003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J4O002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J4O002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100 PREMIUM LVCR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180J6O021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100 PREMIUM LVCR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180J6O021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I8G001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I8G001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR ... (BHN BAKU OBAT UTK PEWARNA WARNA) COA D180J5L003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR ... (BHN BAKU OBAT UTK PEWARNA WARNA) COA D180J5L003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM CR ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180J66001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM CR ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180J66001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E15 PREMIUM LV ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011J3CL01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E15 PREMIUM LV ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011J3CL01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180J89002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180J89002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH623542\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH623542\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH623541\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH623541\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH623566\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH623566\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 192024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNEBUSTERS (BHN BAKU KOSMETIK) COA 192024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 191495\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 191495\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 182975\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 182975\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 191630\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 191630\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECOFARM BILBERRY LEAF-G (BHN BAKU KOSMETIK) COA 190419\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ECOFARM BILBERRY LEAF-G (BHN BAKU KOSMETIK) COA 190419\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT19040104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT19040104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708190055,56\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708190055,56\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT19040177172\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT19040177172\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL ZX (BHN BAKU KOSMETIK) COA 190508012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL ZX (BHN BAKU KOSMETIK) COA 190508012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0025591\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0025591\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0819030049\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0819030049\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX, 25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0918110046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX, 25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0918110046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ90810196\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ90810196\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 103093-A (BHN BAKU MAKANAN) COA XW91910180\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 103093-A (BHN BAKU MAKANAN) COA XW91910180\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN MINERAL PREMIX INSTANT DRINK (BHN BAKU MAKANAN) COA XW91910201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN MINERAL PREMIX INSTANT DRINK (BHN BAKU MAKANAN) COA XW91910201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTIOXIDANT PREMIX FOR GUMMY (BHN BAKU MAKANAN) COA XW91910327\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"ANTIOXIDANT PREMIX FOR GUMMY (BHN BAKU MAKANAN) COA XW91910327\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01908359\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01908359\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518049\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518049\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ90609018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ90609018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT GRANULATION 25KG BOX (BHN BAKU SUPLEMEN) COA WB00419906\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT GRANULATION 25KG BOX (BHN BAKU SUPLEMEN) COA WB00419906\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90810196\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90810196\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90810196\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90810196\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18120040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18120040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA.MLAH0521019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29341000\", \"uraian\": \"MELOXICAM BP (BHN BAKU OBAT) COA.MLAH0521019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT BLACK TEA POWDER THB430 (BHN BAKU MAKANAN) COA 2019102301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"INSTANT BLACK TEA POWDER THB430 (BHN BAKU MAKANAN) COA 2019102301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 CN 10KG KA (BHN BAKU KOSMETIK) COA.1539629\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 CN 10KG KA (BHN BAKU KOSMETIK) COA.1539629\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROMAN CHAMOMILLE ORGANIC DISTILLATE 1:1 (SB)(BHN BAKU KOSMETIK)COA ANND191003-BIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROMAN CHAMOMILLE ORGANIC DISTILLATE 1:1 (SB)(BHN BAKU KOSMETIK)COA ANND191003-BIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSE DAMASCENA ORGANIC DISTILLATE 1:20 (SB) (BHN BAKU KOSMETIK)COA ROSD190915-BIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROSE DAMASCENA ORGANIC DISTILLATE 1:20 (SB) (BHN BAKU KOSMETIK)COA ROSD190915-BIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO190101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO190101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINGSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO190101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINGSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO190101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN VIRGIN COLD PRESSED DEODORISED ORGANIC OIL... (BHN BAKU KOSMETIK) COA ARHVD191105-SICBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ARGAN VIRGIN COLD PRESSED DEODORISED ORGANIC OIL... (BHN BAKU KOSMETIK) COA ARHVD191105-SICBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS190201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS190201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA191002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA191002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROMAN CHAMOMILLE ORGANIC DISTILLATE 1:1 (SB) (BHN BAKU KOSMETIK) COA ANND191003-BIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROMAN CHAMOMILLE ORGANIC DISTILLATE 1:1 (SB) (BHN BAKU KOSMETIK) COA ANND191003-BIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO190102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO190102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01902801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01902801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROPOLIS BEE EXTRACT (BHN BAKU OBAT) COA 191101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29304000\", \"uraian\": \"PROPOLIS BEE EXTRACT (BHN BAKU OBAT) COA 191101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB110919\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB110919\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B210919\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B210919\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GLICLAZIDE (BHN BAKU OBAT) COA 1940002357\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"GLICLAZIDE (BHN BAKU OBAT) COA 1940002357\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA WGM\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA WGM\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA WKF\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) COA WKF\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA WHE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROTESIL LH (BHN BAKU KOSMETIK) COA WHE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0014517001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0014517001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA.0014518004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA.0014518004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 052319/006049\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 052319/006049\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA WLP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9277143\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA WLP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9277143\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9248813\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9248813\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT19090082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT19090082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 201900363\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 201900363\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 720 -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1540851\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 720 -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1540851\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 720 -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1540851\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 720 -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1540851\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for S AND M PHENOXYETHANOL RCH 100ML FL (BHN BAKU KOSMETIK) COA 1536332 ,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"S AND M PHENOXYETHANOL RCH 100ML FL (BHN BAKU KOSMETIK) COA 1536332 ,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 940 (SAMPLE) 100 ML FL (BHN BAKU KOSMETIK) COA 1500965,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 940 (SAMPLE) 100 ML FL (BHN BAKU KOSMETIK) COA 1500965,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 900 (SAMPLE) 100 ML FL (BHN BAKU KOSMETIK) COA 1536334, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 900 (SAMPLE) 100 ML FL (BHN BAKU KOSMETIK) COA 1536334, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYOSCINE BUTYL BROMIDE EP/BP (BHN BAKU OBAT) COA 2520519\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29391900\", \"uraian\": \"HYOSCINE BUTYL BROMIDE EP/BP (BHN BAKU OBAT) COA 2520519\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-022019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-022019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK)COA ARP-881089\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK)COA ARP-881089\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-452109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-452109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 061219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 061219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-022019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-022019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-012229\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-012229\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK) COA NMSP-D-012079\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK) COA NMSP-D-012079\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-021819\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-021819\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-602979\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-602979\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA MCP-N-051709\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA MCP-N-051709\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SB VITAL LIDOCAINE IML ,COA 17244-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE SB VITAL LIDOCAINE IML ,COA 17244-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SB VITAL LIGHT LIDOCAINE IML, COA 17132-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE SB VITAL LIGHT LIDOCAINE IML, COA 17132-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE DEFYNE 1 ML ,COA 17399-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE DEFYNE 1 ML ,COA 17399-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE REFYNE 1ML , COA 17292-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE REFYNE 1ML , COA 17292-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE KYSSE 1ML , COA 17343-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE KYSSE 1ML , COA 17343-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNOLIA BARK EXTRACT (BHN BAKU KOSMETIK) COA MBE05-190706\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MAGNOLIA BARK EXTRACT (BHN BAKU KOSMETIK) COA MBE05-190706\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NATURAL SOURCE MIXED TOCOPHEROLS (BHN BAKU KOSMETIK) COA 190703M001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"NATURAL SOURCE MIXED TOCOPHEROLS (BHN BAKU KOSMETIK) COA 190703M001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFADROXIL MONOHYDRATE (PURIDROX TM POWDER) BHN BAKU OBAT, COA B334662, 664,666\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFADROXIL MONOHYDRATE (PURIDROX TM POWDER) BHN BAKU OBAT, COA B334662, 664,666\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VALERIAN D.H.E>0.8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 19B0088300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VALERIAN D.H.E>0.8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 19B0088300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA 177378\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELUCIRE 44/14 (BHN BAKU OBAT) COA 177378\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TEFOSE 63 (BHN BAKU OBAT) COA 176440\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TEFOSE 63 (BHN BAKU OBAT) COA 176440\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU OBAT) COA 02/18GAAK\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT KIWI (BAHAN BAKU OBAT) COA 02/18GAAK\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU OBAT) COA 02/18GAAK, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT KIWI (BAHAN BAKU OBAT) COA 02/18GAAK, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LABRAFAC LIPOPHILE WL 1349 (BHN BAKU OBAT) COA 177185\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LABRAFAC LIPOPHILE WL 1349 (BHN BAKU OBAT) COA 177185\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE AM PELLETS (BAHAN BAKU OBAT) COA 18E5109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE AM PELLETS (BAHAN BAKU OBAT) COA 18E5109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LACTOFIL MOIST (BHN BAKU OBAT) COA Z91080026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LACTOFIL MOIST (BHN BAKU OBAT) COA Z91080026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE USP (BHN BAKU KOSMETIK) COA 19-20/NMD(P)/U/122,123,125,126,127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE USP (BHN BAKU KOSMETIK) COA 19-20/NMD(P)/U/122,123,125,126,127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH623270\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH623270\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH623261\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH623261\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH623240\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH623240\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH622264\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH622264\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH623243\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH623243\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH623241\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH623241\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH623263\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH623263\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH623262\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH623262\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH621458\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH621458\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH623243\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH623243\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH623242\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH623242\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLOTRIMAZOLE MICRONIZED (BHN BAKU OBAT ) COA 201910150265\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"CLOTRIMAZOLE MICRONIZED (BHN BAKU OBAT ) COA 201910150265\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRINSTED XANTHAN 80 PHARMA GRADE, BHN BAKU OBAT, COA 4453521544\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"GRINSTED XANTHAN 80 PHARMA GRADE, BHN BAKU OBAT, COA 4453521544\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHARMACEUTICALS BOVINE GELATINE 200/18 ...(BAHAN BAKU OBAT ), COA 5001907208\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35030049\", \"uraian\": \"PHARMACEUTICALS BOVINE GELATINE 200/18 ...(BAHAN BAKU OBAT ), COA 5001907208\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT BLACK TEA POWDER TH-B 430 (BHN BAKU MAKANAN) COA 2019111207\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"INSTANT BLACK TEA POWDER TH-B 430 (BHN BAKU MAKANAN) COA 2019111207\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT BLACK TEA POWDER TH-E 1008 (BHN BAKU MAKANAN) COA 2019090203\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"INSTANT BLACK TEA POWDER TH-E 1008 (BHN BAKU MAKANAN) COA 2019090203\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIUSID AQUA ORAL SOLUTION @1LTR (PAKAN IKAN BERBENTUK CAIR) COA T-4 06-22,T-5 07-22\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"VIUSID AQUA ORAL SOLUTION @1LTR (PAKAN IKAN BERBENTUK CAIR) COA T-4 06-22,T-5 07-22\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIUSID VET @ 1KG (PAKAN IKAN BERBENTUK CAIR) COA T-2 06-22\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"VIUSID VET @ 1KG (PAKAN IKAN BERBENTUK CAIR) COA T-2 06-22\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9239004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9239004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PROTEOSE PEPTONE NO.3 500G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9189727\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PROTEOSE PEPTONE NO.3 500G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9189727\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9148976\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9148976\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9070604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9070604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9122883\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9122883\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239884\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239884\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239884\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239884\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9239884\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9239884\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9121860\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9121860\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9107951\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9107951\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASAMINO ACIDS EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9105919\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASAMINO ACIDS EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9105919\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9273225\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9273225\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTONE 500G EA ( MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9273225\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTONE 500G EA ( MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9273225\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOBUTAMINE HCL (BHN BAKU OBAT) COA 19100392\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29222900\", \"uraian\": \"DOBUTAMINE HCL (BHN BAKU OBAT) COA 19100392\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE BP (BHN BAKU OBAT), COA ASGP/10/241019, ASGP/11/031119\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE BP (BHN BAKU OBAT), COA ASGP/10/241019, ASGP/11/031119\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/08/230819-2,ASG/11/141119,151119,130919\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/08/230819-2,ASG/11/141119,151119,130919\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/11/081119\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123100\", \"uraian\": \"CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/11/081119\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5566918\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5566918\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829017461K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"B-WHITE TM (BHN BAKU KOSMETIK) COA 829017461K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829017654K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"B-WHITE TM (BHN BAKU KOSMETIK) COA 829017654K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830017310K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL TM (BHN BAKU KOSMETIK) COA 830017310K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GREYVERSE TM (BHN BAKU KOSMETIK), COA 833017324K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GREYVERSE TM (BHN BAKU KOSMETIK), COA 833017324K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK), COA 1835314\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AMISOL TRIO TM (BHN BAKU KOSMETIK), COA 1835314\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANACHRYS 2B PF (PRESERVATIVE)BHN BAKU KOSMETIK, COA 793057327K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LANACHRYS 2B PF (PRESERVATIVE)BHN BAKU KOSMETIK, COA 793057327K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK), COA 1921406\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK), COA 1921406\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILIGEL TM (BHN BAKU KOSMETIK), COA 1918702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILIGEL TM (BHN BAKU KOSMETIK), COA 1918702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRO-LIPO TM NEO (BHN BAKU KOSMETIK) COA 1925101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PRO-LIPO TM NEO (BHN BAKU KOSMETIK) COA 1925101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMBROXOL HYDROCHLORIDE POWDER (BHN BAKU OBAT) COA AHM/19087,AHM/19088\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"AMBROXOL HYDROCHLORIDE POWDER (BHN BAKU OBAT) COA AHM/19087,AHM/19088\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR...(BHN BAKU PEWARNA TABLET)COA D180J75002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR...(BHN BAKU PEWARNA TABLET)COA D180J75002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP818101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP818101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU PEWARNA TABLET) COA WP812973\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU PEWARNA TABLET) COA WP812973\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP812982\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP812982\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP8143316\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP8143316\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C RED #40/ALLURA RED AC AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP811339\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C RED #40/ALLURA RED AC AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP811339\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP807997\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP807997\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #6/SUNSET YELOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP818229\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #6/SUNSET YELOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP818229\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BILBERRY (V.MYRTILLUS)ET. EX 36PCT (BHN BAKU SUPLEMEN) COA 19S0328502\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BILBERRY (V.MYRTILLUS)ET. EX 36PCT (BHN BAKU SUPLEMEN) COA 19S0328502\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARTAB DIRECTLY COMPRESSIBLE STARCH (BHN BAKU PEWARNA TABLET) COA.WP816007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARTAB DIRECTLY COMPRESSIBLE STARCH (BHN BAKU PEWARNA TABLET) COA.WP816007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9283058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9283058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9290152\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9290152\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9277140\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9277140\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9241752\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9241752\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9231577\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9231577\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8354563\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8354563\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9247271\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9247271\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9247271\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9247271\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9247271\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9247271\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9247271\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9247271\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9231577\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9231577\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9247271\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9247271\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9310881\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9310881\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MARINE BROTH 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9294142\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MARINE BROTH 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9294142\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9316132\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9316132\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 92800133\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 92800133\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9316132\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9316132\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9253973\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9253973\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9256077,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9256077,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9241388\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9241388\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9269210\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9269210\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT PHOENIXAPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9287737\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT PHOENIXAPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9287737\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9219559\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9219559\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218804\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218804\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9211435\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9211435\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9114508\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9114508\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9241879\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9241879\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9252346\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9252346\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9168641\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9168641\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9211356\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9211356\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9231558\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9231558\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANOLATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9114508\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MANOLATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9114508\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9256266\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9256266\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239568\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239568\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9252346\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9252346\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9254329\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9254329\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9206092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9206092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9128828\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9128828\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239282\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239282\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161680\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161680\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9218804\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9218804\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 9128931\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SACCHAROSE 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 9128931\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALONATE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9310881\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALONATE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9310881\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9168641\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9168641\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9241879\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9241879\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9254329\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9254329\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9206092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9206092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9252365\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9252365\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9142723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9142723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9256070,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9256070,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9241388\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9241388\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1911027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1911027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE CRYSTAL E/ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9219396\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"TUBE CRYSTAL E/ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9219396\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE CRYSTAL INOCULUM BROTH (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9157734\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"TUBE CRYSTAL INOCULUM BROTH (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9157734\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9241413,415\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9241413,415\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-PA-C AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9295919\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M-PA-C AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9295919\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL UNIVERSAL VIRAL TRANSPORT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 190908700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL UNIVERSAL VIRAL TRANSPORT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 190908700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9213536\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9213536\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8317927\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8317927\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9127592\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9127592\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161934\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161934\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9253973\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9253973\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025695\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025695\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9084661\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9084661\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9256077\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9256077\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9128828\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9128828\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239282\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239282\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9231558\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9231558\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161680\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161680\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8317927\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8317927\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9127592\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9127592\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8271693,9218804\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8271693,9218804\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161608\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161608\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9211435\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9211435\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9021613\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9021613\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9211593\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9211593\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084840\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084840\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9142728\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9142728\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161543\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161543\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9128931\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9128931\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9255013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9255013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 9168641\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 9168641\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161934\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161934\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9213074\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9213074\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9239319\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9239319\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9231539\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9231539\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9253973\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9253973\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DECARBOXCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9241879\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DECARBOXCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9241879\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161683\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161683\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9021643\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9021643\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9254329\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9254329\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9206092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9206092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9252365\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9252365\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 8354563\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 8354563\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9084661\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9084661\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9142723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9142723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9142908\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9142908\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9219559\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9219559\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9023839\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9023839\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084840\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084840\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9261868\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9261868\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) COA 9211356\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) COA 9211356\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9198204\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9198204\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8206968\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8206968\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9028828\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY AGAR MOD 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9028828\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE L-ARABINOSE 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9199186\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE L-ARABINOSE 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9199186\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKIROORGANISME) BATCH 7332727\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKIROORGANISME) BATCH 7332727\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9142723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9142723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9273419\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9273419\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9218024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9218024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9134926\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9134926\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9219600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9219600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GAZPAK EZ STANDARD INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 7308746010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"GAZPAK EZ STANDARD INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 7308746010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH B01B260M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH B01B260M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9121641\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9121641\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYP AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9233393\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MYP AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9233393\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9189647\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9189647\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER LACTOPHENOL COTTON BLUE STAIN (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH B01B219M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER LACTOPHENOL COTTON BLUE STAIN (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH B01B219M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9023839\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9023839\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9050790\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9050790\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9023839\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9023839\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LYSING BUFFER 10X CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9137698\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"LYSING BUFFER 10X CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9137698\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9281171\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9281171\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9281171\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9281171\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9281171\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9281171\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9281171\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9281171\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 8207980\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 8207980\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9067559,92\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9067559,92\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9238628\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9238628\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9249798\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9249798\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9217032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9217032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9246040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9246040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9157516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9157516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9039992\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9039992\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9211095\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9211095\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8207980\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8207980\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9157516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9157516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9204535\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9204535\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9196206\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9196206\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9269991\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD34 APC 8G12 100 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9269991\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9228683,9304226\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9228683,9304226\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218933\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218933\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9246430\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9246430\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9241552\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9241552\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9196427\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9196427\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI-HLA-DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9204225\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"ANTI-HLA-DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9204225\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9228756\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9228756\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9227178,9227183\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9227178,9227183\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8285857\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8285857\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTISERUM FACTORS 4&5 GRP B (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8271718\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTISERUM FACTORS 4&5 GRP B (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8271718\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/19090537\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/19090537\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHARMACEUTICAL BOVINE GELATINE 200/18 (BAHAN BAKU OBAT ), COA 5001907208\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35030049\", \"uraian\": \"PHARMACEUTICAL BOVINE GELATINE 200/18 (BAHAN BAKU OBAT ), COA 5001907208\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPIRAMYCIN (BHN BAKU OBAT) COA SP191476\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"SPIRAMYCIN (BHN BAKU OBAT) COA SP191476\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRANOL ULTRA C-32 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP909511R,BP911690R\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34029099\", \"uraian\": \"MIRANOL ULTRA C-32 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP909511R,BP911690R\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0319101541 S/D 548\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0319101541 S/D 548\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0319101548\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0319101548\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000184323,324\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000184323,324\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ90910221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ90910221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90910220,221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90910220,221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN MINERAL PREMIX INSTANT DRINK (BHN BAKU MAKANAN) COA XW91911111\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN MINERAL PREMIX INSTANT DRINK (BHN BAKU MAKANAN) COA XW91911111\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070-C3 (BHN BAKU MAKANAN) COA XW91911091,092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070-C3 (BHN BAKU MAKANAN) COA XW91911091,092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW91911112\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW91911112\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01905038,5039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01905038,5039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B03B164M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B03B164M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GRAM DECOLORIZER 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9269854\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GRAM DECOLORIZER 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9269854\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET), COA JP514001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET), COA JP514001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT)COA L105712819, L105714719\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200H (BHN BAKU OBAT)COA L105712819, L105714719\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 080419,090419,170519,270319...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 080419,090419,170519,270319...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-GLUTAMIC ACID (FCC GRADE) PURITY 99PCT UP (BHN BAKU MAKANAN), COA 1000049875/191120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"L-GLUTAMIC ACID (FCC GRADE) PURITY 99PCT UP (BHN BAKU MAKANAN), COA 1000049875/191120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 100 CN 10KG KA (BHN BAKU KOSMETIK) COA 1536160\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 100 CN 10KG KA (BHN BAKU KOSMETIK) COA 1536160\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50-CN- 10KG KA (BHN BAKU KOSMETIK) COA 1536004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50-CN- 10KG KA (BHN BAKU KOSMETIK) COA 1536004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 120 -CN-10KG KA (BHN BAKU KOSMETIK) COA 1536749\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 120 -CN-10KG KA (BHN BAKU KOSMETIK) COA 1536749\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 10 -CN-10KG KA (BHN BAKU KOSMETIK) COA 1532992\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 10 -CN-10KG KA (BHN BAKU KOSMETIK) COA 1532992\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 720 -C08- 10 KG KA (BHN BAKU KOSMETIK) COA 1540851\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 720 -C08- 10 KG KA (BHN BAKU KOSMETIK) COA 1540851\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 100 SAMPLE(S) 100ML FL (BHN BAKU KOSMETIK) COA 1535690, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 100 SAMPLE(S) 100ML FL (BHN BAKU KOSMETIK) COA 1535690, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 120 100 ML FL (BHN BAKU KOSMETIK) COA 1532897 ,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 120 100 ML FL (BHN BAKU KOSMETIK) COA 1532897 ,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 340 100ML FL (BHN BAKU KOSMETIK) COA 1338121, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 340 100ML FL (BHN BAKU KOSMETIK) COA 1338121, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 700 SAMPLE 100ML FL (BHN BAKU KOSMETIK) COA 1527936,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 700 SAMPLE 100ML FL (BHN BAKU KOSMETIK) COA 1527936,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 701 SAMPLE 100 ML FL (BHN BAKU KOSMETIK) COA 1532289 SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 701 SAMPLE 100 ML FL (BHN BAKU KOSMETIK) COA 1532289 SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 712 SAMPLE 100 ML FL (BHN BAKU KOSMETIK) COA 1536820,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 712 SAMPLE 100 ML FL (BHN BAKU KOSMETIK) COA 1536820,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 830 100 ML FL (BHN BAKU KOSMETIK) COA 1536411 SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 830 100 ML FL (BHN BAKU KOSMETIK) COA 1536411 SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 900 (SAMPLE) 100 ML FL (BHN BAKU KOSMETIK) COA 1536334 SAMPLE COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 900 (SAMPLE) 100 ML FL (BHN BAKU KOSMETIK) COA 1536334 SAMPLE COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for S&M PHENOXYETHANOL RCH 100 ML FL (BHN BAKU KOSMETIK) COA 1536332, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"S&M PHENOXYETHANOL RCH 100 ML FL (BHN BAKU KOSMETIK) COA 1536332, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA PA 20 SAMPLE(S) 100ML FL (BHN BAKU KOSMETIK) COA 1520205 SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA PA 20 SAMPLE(S) 100ML FL (BHN BAKU KOSMETIK) COA 1520205 SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA PA 30 (SAMPLE) 100 ML FL (BHN BAKU KOSMETIK) COA 1340275 SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA PA 30 (SAMPLE) 100 ML FL (BHN BAKU KOSMETIK) COA 1340275 SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR (BHN BAKU PEWARNA TABLET)COA D180J88002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR (BHN BAKU PEWARNA TABLET)COA D180J88002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LABRAFIL M 1944 CS (BHN BAKU OBAT) COA 177404\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LABRAFIL M 1944 CS (BHN BAKU OBAT) COA 177404\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE AM PELLETS (BAHAN BAKU OBAT) COA 18E5109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE AM PELLETS (BAHAN BAKU OBAT) COA 18E5109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) , COA 911141\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6017 (17KG) (BHN BAKU KOSMETIK) , COA 911141\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) BHN BAKU KOSMETIK, COA 911224\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (16KG) BHN BAKU KOSMETIK, COA 911224\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-96A-6CS (16KG) BHN BAKU KOSMETIK, COA 910069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-96A-6CS (16KG) BHN BAKU KOSMETIK, COA 910069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETAHISTINE MESILATE EP (BHN BAKU OBAT) COA EDBHM19004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"BETAHISTINE MESILATE EP (BHN BAKU OBAT) COA EDBHM19004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT... (BHN BAKU OBAT) COA NZ1858\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT... (BHN BAKU OBAT) COA NZ1858\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT ...(BHN BAKU OBAT) COA NZ2075\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT ...(BHN BAKU OBAT) COA NZ2075\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT... (BHN BAKU OBAT) COA NZ2605\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT... (BHN BAKU OBAT) COA NZ2605\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT... (BHN BAKU OBAT) COA NZ2606\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT... (BHN BAKU OBAT) COA NZ2606\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA S100300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA S100300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE WHITE (BHN BAKU PEWARNA TABLET), COA WP820412\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE WHITE (BHN BAKU PEWARNA TABLET), COA WP820412\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA WKG\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) COA WKG\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLOPURINOL USP (BHN BAKU OBAT) COA 19086AY3ARII\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"ALLOPURINOL USP (BHN BAKU OBAT) COA 19086AY3ARII\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE DOLCE (BHN BAKU KOSMETIK) COA S227/19\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE DOLCE (BHN BAKU KOSMETIK) COA S227/19\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ACETATE ANHYDROUS (BHN BAKU MAKANAN) COA 3078124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29152910\", \"uraian\": \"SODIUM ACETATE ANHYDROUS (BHN BAKU MAKANAN) COA 3078124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SELOHVITA C.SODIUM SELENITE MAX.0.99PCT (BHN BAKU OBAT) COA 3068590\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28429010\", \"uraian\": \"SELOHVITA C.SODIUM SELENITE MAX.0.99PCT (BHN BAKU OBAT) COA 3068590\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM ACETATE,POWDER,PURITY ACC TO E263 (BHN BAKU OBAT) COA 3077789\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29152910\", \"uraian\": \"CALCIUM ACETATE,POWDER,PURITY ACC TO E263 (BHN BAKU OBAT) COA 3077789\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)(BHN BAKU MAKANAN) COA UT19090183\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO)(BHN BAKU MAKANAN) COA UT19090183\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT19080883,885\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT19080883,885\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01909048,49\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01909048,49\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01910882,892,902,909\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01910882,892,902,909\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA339196\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA339196\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BAHAN BAKU MAKANAN ), COA 20191017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BAHAN BAKU MAKANAN ), COA 20191017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC46719T\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101990\", \"uraian\": \"SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC46719T\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU OBAT) COA UJ949\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU OBAT) COA UJ949\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AL HYD WET GEL VAC 20(BHN BAKU OBAT) COA 201900249,201900185\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"AL HYD WET GEL VAC 20(BHN BAKU OBAT) COA 201900249,201900185\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN540567\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN540567\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN540566\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN540566\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN540569\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN540569\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN540568\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN540568\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISONE (BHN BAKU OBAT) COA 03F20190504 S/D 506\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISONE (BHN BAKU OBAT) COA 03F20190504 S/D 506\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1911108,12010,12011,12012,12014 S/D 16,18 S/D 20\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"MEFENAMIC ACID (BHN BAKU OBAT) COA MA1911108,12010,12011,12012,12014 S/D 16,18 S/D 20\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEOMYCIN SULPHATE USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA 201911024,11025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NEOMYCIN SULPHATE USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA 201911024,11025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POVIDONE K-30 EX JHNH (BHN BAKU OBAT) COA PK30-190913F11\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"POVIDONE K-30 EX JHNH (BHN BAKU OBAT) COA PK30-190913F11\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POVIDONE K-25 (BHN BAKU OBAT) COA PK25-191013F42\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"POVIDONE K-25 (BHN BAKU OBAT) COA PK25-191013F42\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FIBRE DRUM, PRICE AND AMOUNT ARE FOR CUSTOM ONLY\""}, {"role": "assistant", "content": "{\"hs_code\" : \"48192000\", \"uraian\": \"FIBRE DRUM, PRICE AND AMOUNT ARE FOR CUSTOM ONLY\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BAHAN BAKU MAKANAN ), COA 20191205\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BAHAN BAKU MAKANAN ), COA 20191205\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS FUMARATE (BHN BAKU MAKANAN), COA 3077999\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054300\", \"uraian\": \"FERROUS FUMARATE (BHN BAKU MAKANAN), COA 3077999\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYLPOL 980 (20KG) BAHAN BAKU KOSMETIK, COA 11519097, 11519098\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39069099\", \"uraian\": \"ACRYLPOL 980 (20KG) BAHAN BAKU KOSMETIK, COA 11519097, 11519098\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0319101549 S/D 54,70,76\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0319101549 S/D 54,70,76\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000184499,184582\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000184499,184582\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219030054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219030054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT19040177\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT19040177\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UE01901015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UE01901015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT19070206,90239\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT19070206,90239\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90613065\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90613065\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00519025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00519025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01908762\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01908762\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT19070186\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT19070186\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01901006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01901006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19040077\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19040077\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT19070186\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT19070186\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90702292,96\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90702292,96\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90910227\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90910227\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT19090071\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT19090071\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01908359\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01908359\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT19070093\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT19070093\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19070093\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19070093\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT19080029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT19080029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01908359\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01908359\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91911153\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91911153\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01908761\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01908761\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT19070186\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT19070186\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11904011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11904011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ90706162, 6163\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ90706162, 6163\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01905039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01905039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ90303061\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ90303061\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01905039,40\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01905039,40\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT19070186\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT19070186\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ90303061\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ90303061\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11190420\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11190420\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT19070186\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT19070186\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19030014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19030014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01907976\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01907976\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18120040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18120040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19030021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19030021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01901006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01901006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01906076\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL ,20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01906076\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OXYTETRACYCLINE HYDROCHLORIDE (BHN BAKU OBAT) COA 19030767,768,769,770,771,772\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29413000\", \"uraian\": \"OXYTETRACYCLINE HYDROCHLORIDE (BHN BAKU OBAT) COA 19030767,768,769,770,771,772\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000032930\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000032930\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/50 SODIUM BICARBONATE (BHN BAKU OBAT ) COA MTP34519\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/50 SODIUM BICARBONATE (BHN BAKU OBAT ) COA MTP34519\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFADROXIL MONOHYDRATE (PURIDROX COMPACTED) BHN BAKU OBAT, COA B340122,126,128\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFADROXIL MONOHYDRATE (PURIDROX COMPACTED) BHN BAKU OBAT, COA B340122,126,128\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT BLACK TEA POWDER TH B430 (BHN BAKU MAKANAN) COA 2019102301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"INSTANT BLACK TEA POWDER TH B430 (BHN BAKU MAKANAN) COA 2019102301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA MTP34519\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA MTP34519\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT TEA POWDER (TEA EXTRACT) BHN BAKU MAKANAN, COA 912072\""}, {"role": "assistant", "content": "{\"hs_code\" : \"9022010\", \"uraian\": \"INSTANT TEA POWDER (TEA EXTRACT) BHN BAKU MAKANAN, COA 912072\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE DOLCE (BHN BAKU KOSMETIK) COA S344/19\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE DOLCE (BHN BAKU KOSMETIK) COA S344/19\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE 11T (BHN BAKU KOSMETIK) COA S658/19\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE 11T (BHN BAKU KOSMETIK) COA S658/19\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE (R) VELLUTO (BHN BAKU KOSMETIK) COA L41/17\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE (R) VELLUTO (BHN BAKU KOSMETIK) COA L41/17\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SORBITOL SOLUTION 70PCT CRYSTALLISING (BAHAN BAKU KOSMETIK) COA 1920P434\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054400\", \"uraian\": \"SORBITOL SOLUTION 70PCT CRYSTALLISING (BAHAN BAKU KOSMETIK) COA 1920P434\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS FUMARATE (BHN BAKU MAKANAN), COA 3077999\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054300\", \"uraian\": \"FERROUS FUMARATE (BHN BAKU MAKANAN), COA 3077999\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM GLYCEROPHOSPHATE CRYST (BHN BAKU OBAT) COA 3073900-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29199000\", \"uraian\": \"SODIUM GLYCEROPHOSPHATE CRYST (BHN BAKU OBAT) COA 3073900-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH623629\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH623629\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH624306\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH624306\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH624265\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH624265\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH623966\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH623966\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH624280\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH624280\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH624507\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH624507\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH625173\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH625173\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BLACK (BHN BAKU PEWARNA TABLET) COA SH624300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BLACK (BHN BAKU PEWARNA TABLET) COA SH624300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH624287\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH624287\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH623974\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH623974\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH624307\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH624307\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH624307\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH624307\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH624284\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH624284\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH624280\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH624280\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH624502\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH624502\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH623677\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH623677\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH623567\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH623567\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH623965\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH623965\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH624010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH624010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH623956\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH623956\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH623966\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH623966\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH623831\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH623831\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH623677\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH623677\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH623962\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH623962\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BLACK (BHN BAKU PEWARNA TABLET) COA SH623961\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BLACK (BHN BAKU PEWARNA TABLET) COA SH623961\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE PURPLE (BHN BAKU PEWARNA TABLET) COA SH623964\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE PURPLE (BHN BAKU PEWARNA TABLET) COA SH623964\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH623965\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH623965\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHARMABURST (R) C1 (BHN BAKU OBAT) COA.121910249\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069099\", \"uraian\": \"PHARMABURST (R) C1 (BHN BAKU OBAT) COA.121910249\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 121910045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28365010\", \"uraian\": \"VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 121910045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG191122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG191122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 26221119,26411119,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 26221119,26411119,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 27691219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 27691219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHARMACEUTICAL BOVINE GELATINE 200/18 (BAHAN BAKU OBAT), COA 5001907208,5001910526\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35030049\", \"uraian\": \"PHARMACEUTICAL BOVINE GELATINE 200/18 (BAHAN BAKU OBAT), COA 5001907208,5001910526\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA RBA3331900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA RBA3331900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 191125181\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 191125181\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453521544\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453521544\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND GLA-40 (BHN BAKU KOSMETIK)COA GLCP-101819\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND GLA-40 (BHN BAKU KOSMETIK)COA GLCP-101819\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK)COA U191129\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK)COA U191129\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012239,020619,\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012239,020619,\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-070819\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-070819\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-021409, 032919\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-021409, 032919\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK)COA MCP-N-051709\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK)COA MCP-N-051709\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND JEJU TANGERINE EXTRACT (BHN BAKU KOSMETIK) COA GTUP-T-011169\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND JEJU TANGERINE EXTRACT (BHN BAKU KOSMETIK) COA GTUP-T-011169\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-012239\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-012239\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 112919\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 112919\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-012239\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-012239\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1191224\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1191224\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK)COA MUP-012239, MUP-021769\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK)COA MUP-012239, MUP-021769\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20190702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20190702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB19090217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB19090217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB19080244\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB19080244\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 2966585\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 2966585\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT19090091\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT19090091\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91013179,UQ91113190\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91013179,UQ91113190\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01910873,TL01910919\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01910873,TL01910919\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19110085, UT19120090\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19110085, UT19120090\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL 50L, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01910645\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL 50L, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01910645\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT19110086\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT19110086\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METOCLOPRAMIDE HYDROCHLORIDE BP (BHN BAKU OBAT) COA M-1912406\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"METOCLOPRAMIDE HYDROCHLORIDE BP (BHN BAKU OBAT) COA M-1912406\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19120090\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19120090\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT19080020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT19080020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT19110186\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT19110186\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT19050001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT19050001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COATED ASCORBIC ACID TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"COATED ASCORBIC ACID TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF,1KG (BHN BAKU SUPLEMEN) COA UE01905024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO (R) LUTEIN 20PCT SAF,1KG (BHN BAKU SUPLEMEN) COA UE01905024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19080020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19080020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19100046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19100046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COATED ASCORBIC ACID, TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01910939\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"COATED ASCORBIC ACID, TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01910939\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19080020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19080020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19060003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19060003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19070056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19070056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PERFECTAMYL AC (BHN BAKU KOSMETIK)COA K2872801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PERFECTAMYL AC (BHN BAKU KOSMETIK)COA K2872801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTAZIDIME BUFFERED (BHN BAKU OBAT) COA S101100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTAZIDIME BUFFERED (BHN BAKU OBAT) COA S101100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA S702300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA S702300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTIZOXIME SODIUM (BHN BAKU OBAT) COA S700200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTIZOXIME SODIUM (BHN BAKU OBAT) COA S700200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH623956\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH623956\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH624515\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH624515\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH624507\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH624507\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH624511\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH624511\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH624170\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH624170\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH624502\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH624502\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH624518\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH624518\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH624501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH624501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH624516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH624516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH625173\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH625173\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH624508\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH624508\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BLUE (BHN BAKU PEWARNA TABLET) COA SH624517\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BLUE (BHN BAKU PEWARNA TABLET) COA SH624517\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH624287\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH624287\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E5 PREMIUM LV HYDROXYPROPYL (BHN BAKU PEWARNA TABLET)COA D011J93L01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E5 PREMIUM LV HYDROXYPROPYL (BHN BAKU PEWARNA TABLET)COA D011J93L01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E15 PREMIUM LV HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D011J6BL02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E15 PREMIUM LV HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D011J6BL02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL (BHN BAKU PEWARNA TABLET)COA D011J8DL02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV HYDROXYPROPYL (BHN BAKU PEWARNA TABLET)COA D011J8DL02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN540603\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN540603\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 20 PREMIUM ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D184J1C021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 20 PREMIUM ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D184J1C021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEG 400 (POLYETHYLENE GLYCOL) BAHAN BAKU KOSMETIK) COA.AKW0008148\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39072010\", \"uraian\": \"PEG 400 (POLYETHYLENE GLYCOL) BAHAN BAKU KOSMETIK) COA.AKW0008148\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP2010/USP41 (BHN BAKU OBAT) COA.NED191001,NED190902\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP2010/USP41 (BHN BAKU OBAT) COA.NED191001,NED190902\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFIBER AG (BHN BAKU MAKANAN), COA 907011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SUNFIBER AG (BHN BAKU MAKANAN), COA 907011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIACEREIN EP (BHN BAKU OBAT) COA DCE/40100619\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29389000\", \"uraian\": \"DIACEREIN EP (BHN BAKU OBAT) COA DCE/40100619\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BAHAN BAKU MAKANAN ), COA 20191205\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BAHAN BAKU MAKANAN ), COA 20191205\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BAHAN BAKU MAKANAN ), COA 20191219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BAHAN BAKU MAKANAN ), COA 20191219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA WIN\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA WIN\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILASOMA MFA(S) (BHN BAKU KOSMETIK) COA WJJ\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILASOMA MFA(S) (BHN BAKU KOSMETIK) COA WJJ\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA WKG\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) COA WKG\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMITOSE HGA (BHN BAKU KOSMETIK) COA WLM\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AMITOSE HGA (BHN BAKU KOSMETIK) COA WLM\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M.31PCT (BHN BAKU OBAT) COA 101929026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MG HYD PASTE USP TYPE M.31PCT (BHN BAKU OBAT) COA 101929026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETAHISTINE MESILATE EP (BHN BAKU OBAT) COA EDBHM19005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"BETAHISTINE MESILATE EP (BHN BAKU OBAT) COA EDBHM19005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMIDAPRIL HYDROCHLORIDE (BHN BAKU OBAT) COA IPL/0519002, 003,005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"IMIDAPRIL HYDROCHLORIDE (BHN BAKU OBAT) COA IPL/0519002, 003,005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED GRADE P) BHN BAKU OBAT,COA M596896\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED GRADE P) BHN BAKU OBAT,COA M596896\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 19031833190\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 19031833190\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BJ14407\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BJ14407\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOROLAC TROMETHAMOL/TROMETHAMINE (BHN BAKU OBAT) COA 19100747\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"KETOROLAC TROMETHAMOL/TROMETHAMINE (BHN BAKU OBAT) COA 19100747\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU MAKANAN) COA UT19120187\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU MAKANAN) COA UT19120187\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 192024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNEBUSTERS (BHN BAKU KOSMETIK) COA 192024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 191495\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 191495\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 192253\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ABSORAGE (BHN BAKU KOSMETIK) COA 192253\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 191630\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 191630\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C BLUE #1/BRILLIANT BLUE (BHN BAKU PEWARNA TABLET) COA WP817550\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C BLUE #1/BRILLIANT BLUE (BHN BAKU PEWARNA TABLET) COA WP817550\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU PEWARNA TABLET) COA WP812979\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU PEWARNA TABLET) COA WP812979\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP807308\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP807308\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP818103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP818103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP818225\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP818225\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT(BHN BAKU OBAT UTK PEWARNA TABLET) COA WP814838\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"D AND C YELLOW #10 AL 15PCT-20PCT(BHN BAKU OBAT UTK PEWARNA TABLET) COA WP814838\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP812973\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP812973\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP814310\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP814310\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.19100884\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29391900\", \"uraian\": \"PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.19100884\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ISONIAZID EP (BHN BAKU OBAT) COA IZ 001 J 19\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333910\", \"uraian\": \"ISONIAZID EP (BHN BAKU OBAT) COA IZ 001 J 19\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 201900368\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 201900368\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LORATADINE USP (BHN BAKU ) COA LRHB 9687\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"LORATADINE USP (BHN BAKU ) COA LRHB 9687\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SMIZYME PHYTASE 5000U/G GRANULAR (BHN BAKU OBAT UTK PAKAN TERNAK) COA 0123051912\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35079000\", \"uraian\": \"SMIZYME PHYTASE 5000U/G GRANULAR (BHN BAKU OBAT UTK PAKAN TERNAK) COA 0123051912\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NYSTATIN POWDER ROW (BHN BAKU OBAT) COA C114348, C114371\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NYSTATIN POWDER ROW (BHN BAKU OBAT) COA C114348, C114371\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFADROXIL MONOHYDRATE (PURIDROX POWDER) BHN BAKU OBAT, COA B334669,B334671,B334673\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFADROXIL MONOHYDRATE (PURIDROX POWDER) BHN BAKU OBAT, COA B334669,B334671,B334673\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EPA DHA 44 37 (BHN SUPLEMEN KESEHATAN) COA EE4437-191202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"EPA DHA 44 37 (BHN SUPLEMEN KESEHATAN) COA EE4437-191202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0150819\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0150819\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) , COA 912142\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6017 (17KG) (BHN BAKU KOSMETIK) , COA 912142\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) BHN BAKU KOSMETIK, COA 912225\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (16KG) BHN BAKU KOSMETIK, COA 912225\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KP-562P (16KG) BHN BAKU KOSMETIK, COA 802008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KP-562P (16KG) BHN BAKU KOSMETIK, COA 802008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KP-578 (16KG) BHN BAKU KOSMETIK, COA 807081\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KP-578 (16KG) BHN BAKU KOSMETIK, COA 807081\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP-100 (10KG) BHN BAKU KOSMETIK , COA 9111760\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSP-100 (10KG) BHN BAKU KOSMETIK , COA 9111760\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP-100 (10KG) BHN BAKU KOSMETIK , COA 911760\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSP-100 (10KG) BHN BAKU KOSMETIK , COA 911760\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6028 (16KG) BHN BAKU KOSMETIK, COA 912224,912225,912226\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6028 (16KG) BHN BAKU KOSMETIK, COA 912224,912225,912226\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9309706\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9309706\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9267765\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9267765\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9273225\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9273225\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9274645\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9274645\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9035505\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9035505\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9070604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9070604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9109987\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9109987\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9267765\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9267765\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9267765\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9267765\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9267765\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9267765\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9308244\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9308244\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9274645\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9274645\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA ( MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9109987\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA ( MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9109987\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 1912EF3212\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"L-ARGININE LO (BHN BAKU KOSMETIK),COA 1912EF3212\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AQUACOAT ECD-30 ETHYLCELLULOSE AQUEOUS... (BHN BAKU PEWARNA TABLET), COA XN19833579\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"AQUACOAT ECD-30 ETHYLCELLULOSE AQUEOUS... (BHN BAKU PEWARNA TABLET), COA XN19833579\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AQUACOAT CPD-30 CELLULOSE (BHN BAKU PEWARNA TABLET) COA KN19833680\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"AQUACOAT CPD-30 CELLULOSE (BHN BAKU PEWARNA TABLET) COA KN19833680\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9273225\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9273225\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309706\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309706\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9107951\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9107951\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9107951\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9107951\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9107951\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9107951\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9273225\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9273225\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273225\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273225\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309706\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309706\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273225\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273225\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9309706\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9309706\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPASPRAY YELLOW (BHN BAKU PEWARNA TABLET), COA DT696561\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPASPRAY YELLOW (BHN BAKU PEWARNA TABLET), COA DT696561\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPATINT BROWN (BHN BAKU PEWARNA TABLET), COA DT696574\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPATINT BROWN (BHN BAKU PEWARNA TABLET), COA DT696574\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE BLACK (BHN BAKU PEWARNA TABLET), COA DT696571\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE BLACK (BHN BAKU PEWARNA TABLET), COA DT696571\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE WHITE (BHN BAKU PEWARNA TABLET) COA DT695391\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE WHITE (BHN BAKU PEWARNA TABLET) COA DT695391\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METRONIDAZOLE BP MICRONISED (BHN BAKU OBAT) COA MTZ/9101863\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"METRONIDAZOLE BP MICRONISED (BHN BAKU OBAT) COA MTZ/9101863\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA360191, ROA360193\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA360191, ROA360193\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW91911172, XW91911173\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 C (BHN BAKU MAKANAN) COA XW91911172, XW91911173\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11905015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11905015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT19120094\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT19120094\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0026660\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0026660\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0026660\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0026660\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P9P06QA000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL TX (BHN BAKU KOSMETIK) COA P9P06QA000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT19080182\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT19080182\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01905011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE01905011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF19020048\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF19020048\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT19070186\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT19070186\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000184582\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000184582\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708190056,57, 61\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708190056,57, 61\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P9P06QA000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL TX (BHN BAKU KOSMETIK) COA P9P06QA000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0719060154\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0719060154\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001552129\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SLX (BHN BAKU KOSMETIK) COA 0001552129\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000184582, 0000185458\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000184582, 0000185458\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519090285, 0519090286\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519090285, 0519090286\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD ,20KG BOX (BHN BAKU KOSMETIK) COA 0819040084\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD ,20KG BOX (BHN BAKU KOSMETIK) COA 0819040084\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0319101676\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0319101676\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAKURA EXTRACT B (BHN BAKU PEWARNA TABLET)COA 191460\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SAKURA EXTRACT B (BHN BAKU PEWARNA TABLET)COA 191460\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY PREGELATINIZED MAIZE STARCH (BHN BAKU PEWARNA TABLET)COA IN540442\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY PREGELATINIZED MAIZE STARCH (BHN BAKU PEWARNA TABLET)COA IN540442\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) COA 319CAA0004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CETRIMIDE (BHN BAKU KOSMETIK) COA 319CAA0004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC46819T\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101990\", \"uraian\": \"SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC46819T\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHENYTOIN SODIUM USP (BHN BAKU OBAT) COA ALC/PTS/181212\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332100\", \"uraian\": \"PHENYTOIN SODIUM USP (BHN BAKU OBAT) COA ALC/PTS/181212\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC CALCIUM ASCORBATE DC, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPT1912001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC CALCIUM ASCORBATE DC, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPT1912001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) ,COA 19E0402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE NA PELLETS (BHN BAKU OBAT) ,COA 19E0402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 19E2902\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 19E2902\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 101969019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 101969019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GRAM SAFRANIN 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9296660\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GRAM SAFRANIN 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9296660\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9280085\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9280085\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01B273M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01B273M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8207980\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8207980\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9235506\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9235506\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9254801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9254801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9157516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9157516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9211095\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9211095\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9254801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9254801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239389\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239389\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9157516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9157516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9211095\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9211095\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9305970\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9305970\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SUPPLEMENT C 6X5ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9238664\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SUPPLEMENT C 6X5ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9238664\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SUPPLEMENT C 6X5ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9238664\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SUPPLEMENT C 6X5ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9238664\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9254801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9254801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9189630\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M-GREEN YEAST AND MOLD BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9189630\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233839\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233839\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9211095\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9211095\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9011569\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9011569\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9254182\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9254182\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9315833\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9315833\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH9295569,9324156\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH9295569,9324156\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NONIVAMIDE (SYNTHETIC CAPSAICIN)BHN BAKU KOSMETIK, COA.20191031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29241990\", \"uraian\": \"NONIVAMIDE (SYNTHETIC CAPSAICIN)BHN BAKU KOSMETIK, COA.20191031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE STANDARD METHODS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9343213\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE STANDARD METHODS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9343213\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9337386\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9337386\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8317927\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8317927\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9252346\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9252346\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9291612\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9291612\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9273651\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9273651\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9161545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9161545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9338809\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9338809\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9252365,9273427\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9252365,9273427\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9084840\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9084840\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHENOL RED BROTH BASE BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8310778\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PHENOL RED BROTH BASE BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8310778\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHENOL RED LACTOSE BR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8311620\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PHENOL RED LACTOSE BR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8311620\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9028828\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9028828\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025631\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025631\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01B291M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01B291M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8337715\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8337715\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9316132\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9316132\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ C02 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9269210\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ C02 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9269210\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9241399\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9241399\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE CRYSTAL INOCULUM BROTH (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9157734\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"TUBE CRYSTAL INOCULUM BROTH (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9157734\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9241399\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9241399\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161680\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161680\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9021613\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9021613\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9310881\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9310881\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9206092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9206092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9128828\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9128828\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239282\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239282\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9231558\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9231558\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8297883\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8297883\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218804\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218804\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161608\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161608\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9084840\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9084840\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9142728\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9142728\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALONATE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9310881\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALONATE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9310881\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161934\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161934\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILLIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9239319\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RAPPAPORT VASSILLIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9239319\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 9241879\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 9241879\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9252346\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9252346\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9021643\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9021643\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9206092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9206092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9252365\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9252365\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9261510\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9261510\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239628\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239628\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9084661\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9084661\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9318360\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9318360\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9306763\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9306763\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT UNIVERSAL VIRAL TRANSPORT STD SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 191309900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT UNIVERSAL VIRAL TRANSPORT STD SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 191309900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9128852\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9128852\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 9211362\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 9211362\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9291612\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9291612\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9302311\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9302311\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218538\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218538\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218538\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218538\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9253973\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9253973\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161608\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161608\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 INF OIL ,4,5KG PJUG (BHN BAKU SUPLEMEN) COA TS00013750\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 INF OIL ,4,5KG PJUG (BHN BAKU SUPLEMEN) COA TS00013750\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180093, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180093, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL ZX , 0,500KG PAIL (BHN BAKU KOSMETIK) COA 190511012, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL ZX , 0,500KG PAIL (BHN BAKU KOSMETIK) COA 190511012, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE USP (BHN BAKU KOSMETIK) COA 19-20/NMD(P)/U/146,148,149,150,151\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE USP (BHN BAKU KOSMETIK) COA 19-20/NMD(P)/U/146,148,149,150,151\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NABUMETONE (BHN BAKU OBAT) COA H-0680619\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29145000\", \"uraian\": \"NABUMETONE (BHN BAKU OBAT) COA H-0680619\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)(BHN BAKU MAKANAN) COA UT19100184,UT19100185\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO)(BHN BAKU MAKANAN) COA UT19100184,UT19100185\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT19110815, UT19110186\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT19110815, UT19110186\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19120094\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19120094\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROL 95 (BHN BAKU MAKANAN) COA XH20190301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROL 95 (BHN BAKU MAKANAN) COA XH20190301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT19110903, UT19110904\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT19110903, UT19110904\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHISOPRINOL (BHN BAKU OBAT) COA MTP9100289\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"METHISOPRINOL (BHN BAKU OBAT) COA MTP9100289\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM TYPE T 25 KG (BHN BAKU OBAT) COA B0014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331100\", \"uraian\": \"METAMIZOLE SODIUM TYPE T 25 KG (BHN BAKU OBAT) COA B0014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CINNARIZINE (BHN BAKU OBAT) COA CIN1912082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"CINNARIZINE (BHN BAKU OBAT) COA CIN1912082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHOLINE L-BITARTRATE (BAHAN BAKU OBAT) COA.3018788\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29231000\", \"uraian\": \"CHOLINE L-BITARTRATE (BAHAN BAKU OBAT) COA.3018788\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 061119\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25070000\", \"uraian\": \"KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 061119\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ91006244,UQ91006245\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ91006244,UQ91006245\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN, COA UT19120094\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN, COA UT19120094\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT19110904\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT19110904\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT19090012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT19090012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE,25KG BOX/ALU (BHN BAKU MAKANAN, COA UQ91006241 S/D 6244\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE,25KG BOX/ALU (BHN BAKU MAKANAN, COA UQ91006241 S/D 6244\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA P6914\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29225090\", \"uraian\": \"TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA P6914\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 27/50 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA MTP34519\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 27/50 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA MTP34519\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED (BHN BAKU UTK PAKAN TERNAK) COA ROA0120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED (BHN BAKU UTK PAKAN TERNAK) COA ROA0120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIV190701-BGBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIV190701-BGBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIVE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA OLE190801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OLIVE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA OLE190801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSE OILY EXTRACT (BHN BAKU KOSMETIK)COA ROS191104-H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROSE OILY EXTRACT (BHN BAKU KOSMETIK)COA ROS191104-H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS191102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS191102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO190102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO190102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-191107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-191107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM191201-PGH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM191201-PGH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RICE MILK AQUEOUS EXTRACT (BHN BAKU KOSMETIK) COA ORS1909R1-AQ\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"RICE MILK AQUEOUS EXTRACT (BHN BAKU KOSMETIK) COA ORS1909R1-AQ\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RICA MILK AQUEOUS EXTRACT (BHN BAKU KOSMETIK) COA ORSL191201-AQ\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"RICA MILK AQUEOUS EXTRACT (BHN BAKU KOSMETIK) COA ORSL191201-AQ\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EDIBLE BOVINE GELATINE 140/20 (BAHAN BAKU OBAT), COA 5001912753\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35030049\", \"uraian\": \"EDIBLE BOVINE GELATINE 140/20 (BAHAN BAKU OBAT), COA 5001912753\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA. 20191227\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17023010\", \"uraian\": \"DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA. 20191227\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20191223\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20191223\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH625682\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH625682\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CARBOPLATIN EP (BHN BAKU OBAT) COA 312190010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28439000\", \"uraian\": \"CARBOPLATIN EP (BHN BAKU OBAT) COA 312190010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS (KOSHER-PASSOVER) BHN BAKU MAKANAN, COA UJ952\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS (KOSHER-PASSOVER) BHN BAKU MAKANAN, COA UJ952\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9(BHN BAKU OBAT) COA 201900372\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"ALUMINIUM HYDROXIDE WET GEL VISCO 9(BHN BAKU OBAT) COA 201900372\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR (BHN BAKU PEWARNA TABLET)COA D180JAI001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR (BHN BAKU PEWARNA TABLET)COA D180JAI001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR (BHN BAKU PEWARNA TABLET) COA D180JAG001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR (BHN BAKU PEWARNA TABLET) COA D180JAG001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 192339\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 192339\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT19100092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT19100092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROVIMIX E-50 ADSORBATE, 25KG BAG (BHN BAKU UTK PAKAN TERNAK) COA UT19090354, UT19090356\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"ROVIMIX E-50 ADSORBATE, 25KG BAG (BHN BAKU UTK PAKAN TERNAK) COA UT19090354, UT19090356\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RONOZYME (R)HIPHOS GT, 20KG BAGDK (BHN BAKU UTK PAKAN TERNAK) COA HK920731\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29369000\", \"uraian\": \"RONOZYME (R)HIPHOS GT, 20KG BAGDK (BHN BAKU UTK PAKAN TERNAK) COA HK920731\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT19120042\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT19120042\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT19120042\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT19120042\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT19060025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT19060025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT19090231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT19090231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL01906077\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL01906077\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19030021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19030021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19060067\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19060067\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01906077\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL ,20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01906077\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19090018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19090018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19030021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19030021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19070094, UT19090096, 97\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19070094, UT19090096, 97\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19070093,UT19070094\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19070093,UT19070094\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19070093\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19070093\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19120094\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19120094\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ90609018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ90609018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ91010246\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ91010246\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19090018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19090018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT19070093\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT19070093\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB00419906\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB00419906\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011, UE01905017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011, UE01905017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01911818\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01911818\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19060067\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19060067\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT19080182, UT19090183\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT19080182, UT19090183\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01911059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01911059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01911059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01911059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01909234\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01909234\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ90503125,UQ90603126\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ90503125,UQ90603126\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11910006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP11910006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00519025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00519025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT19090231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT19090231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19030004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19030004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11910006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11910006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01907990\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01907990\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01901006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01901006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01908368\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01908368\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01906076, TL01906077\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01906076, TL01906077\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19030021, UT19030029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19030021, UT19030029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1902032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1902032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT19050003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT19050003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01905017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE01905017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS, 25KG PC (BHN BAKU KOSMETIK) COA 0418110248\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HMS, 25KG PC (BHN BAKU KOSMETIK) COA 0418110248\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL ZX ,20KG (BHN BAKU KOSMETIK) COA 190510012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL ZX ,20KG (BHN BAKU KOSMETIK) COA 190510012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708190073,74,75,82\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708190073,74,75,82\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC ,25KG BOX (BHN BAKU KOSMETIK) COA 0000185459\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC ,25KG BOX (BHN BAKU KOSMETIK) COA 0000185459\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219030054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219030054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0319101681,1682,1683,1684\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0319101681,1682,1683,1684\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219030054,55\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219030054,55\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT19090183\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT19090183\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF19020048\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF19020048\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT19090231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT19090231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000185459\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000185459\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P9P08QA000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL TX (BHN BAKU KOSMETIK) COA P9P08QA000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001552129\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SLX (BHN BAKU KOSMETIK) COA 0001552129\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01905017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE01905017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0319101680,0319101681\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0319101680,0319101681\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708190072\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708190072\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL ZX, 20KG FIBRE DRUM (BHN BAKU KOSMETIK) COA 190510012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL ZX, 20KG FIBRE DRUM (BHN BAKU KOSMETIK) COA 190510012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0319101680\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0319101680\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA0819040084\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA0819040084\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 103093-A (BHN BAKU MAKANAN) COA XW91911201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 103093-A (BHN BAKU MAKANAN) COA XW91911201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRAYPHOS MKP FG (BAHAN BAKU KOSMETIK), COA 19-319-01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PRAYPHOS MKP FG (BAHAN BAKU KOSMETIK), COA 19-319-01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CATCOL C 135 (L) GRADE (BAHAN BAKU KOSMETIK) COA 116/20\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CATCOL C 135 (L) GRADE (BAHAN BAKU KOSMETIK) COA 116/20\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLOMIPHENE CITRATE USP/EP (BHN BAKU OBAT ) COA 201911190352\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"CLOMIPHENE CITRATE USP/EP (BHN BAKU OBAT ) COA 201911190352\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1907652825\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1907652825\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1907652825\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1907652825\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ADIPOFILL'IN TM (BHN BAKU KOSMETIK) COA 1908201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ADIPOFILL'IN TM (BHN BAKU KOSMETIK) COA 1908201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829017654K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"B-WHITE TM (BHN BAKU KOSMETIK) COA 829017654K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BODY_3 COMPLEX TM (BHN BAKU KOSMETIK) COA B3C010619\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"BODY_3 COMPLEX TM (BHN BAKU KOSMETIK) COA B3C010619\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830017750K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL TM (BHN BAKU KOSMETIK) COA 830017750K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769017504K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769017504K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK), COA 785017870K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK), COA 785017870K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECOGEL TM (BHN BAKU KOSMETIK), COA 1919601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ECOGEL TM (BHN BAKU KOSMETIK), COA 1919601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXO-T TM (BHN BAKU KOSMETIK), COA 715017373K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EXO-T TM (BHN BAKU KOSMETIK), COA 715017373K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANACHRYS 2B PF (PRESERVATIVE- BHN BAKU KOSMETIK), COA 793057447K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LANACHRYS 2B PF (PRESERVATIVE- BHN BAKU KOSMETIK), COA 793057447K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK), COA 1924505\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK), COA 1924505\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK), COA 5627619\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK), COA 5627619\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN TM (BHN BAKU KOSMETIK), COA 828017309K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"NEUTRAZEN TM (BHN BAKU KOSMETIK), COA 828017309K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) COA 1735916\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTENSO TM (BHN BAKU KOSMETIK) COA 1735916\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SWT-7 TM L (BHN BAKU KOSMETIK) COA 1927001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SWT-7 TM L (BHN BAKU KOSMETIK) COA 1927001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT TM 09 (BHN BAKU KOSMETIK), COA 784017675K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"TYROSTAT TM 09 (BHN BAKU KOSMETIK), COA 784017675K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK), COA 784027671K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"TYROSTAT TM 11 (BHN BAKU KOSMETIK), COA 784027671K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOPROFEN SALE DI LISINA (BHN BAKU OBAT) COA 187893\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29183000\", \"uraian\": \"KETOPROFEN SALE DI LISINA (BHN BAKU OBAT) COA 187893\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-RIBOSE (BHN BAKU OBAT) COA ZN20200103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29400000\", \"uraian\": \"D-RIBOSE (BHN BAKU OBAT) COA ZN20200103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEUCOCYANIDINS PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 19480\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LEUCOCYANIDINS PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 19480\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROCATEROL HCL HEMIHYDRATE MICRONIZED (BHN BAKU OBAT) COA 860060719M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29337900\", \"uraian\": \"PROCATEROL HCL HEMIHYDRATE MICRONIZED (BHN BAKU OBAT) COA 860060719M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS FUMARATE USP/EP (BHN BAKU OBAT) COA.2019/243\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"FERROUS FUMARATE USP/EP (BHN BAKU OBAT) COA.2019/243\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 19290051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 19290051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB111219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB111219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B011219, B251219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B011219, B251219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CORTISONE ACETATE MICRONISED PH.EUR JP (BHN BAKU OBAT) COA 1900985220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"CORTISONE ACETATE MICRONISED PH.EUR JP (BHN BAKU OBAT) COA 1900985220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 19B0066300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 19B0066300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 19B0112100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 19B0112100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPPLEMEN) COA 19B0112200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPPLEMEN) COA 19B0112200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPPLEMEN) COA 19B0112300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPPLEMEN) COA 19B0112300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0112400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0112400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYMARIN /PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 19B0136800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILYMARIN /PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 19B0136800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILIBINA/FOSFOLIPIDI (BHN BAKU SUPLEMEN) COA 19B0063300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILIBINA/FOSFOLIPIDI (BHN BAKU SUPLEMEN) COA 19B0063300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILIBINA/FOSFOLIPIDI (BHN BAKU SUPLEMEN) COA 19B0110200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILIBINA/FOSFOLIPIDI (BHN BAKU SUPLEMEN) COA 19B0110200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILIBINA/FOSFOLIPIDI (BHN BAKU SUPLEMEN) COA 19B0110300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILIBINA/FOSFOLIPIDI (BHN BAKU SUPLEMEN) COA 19B0110300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MONENDOX 200 BMP (BHN BAKU UTK PAKAN TERNAK) COA 2001021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"MONENDOX 200 BMP (BHN BAKU UTK PAKAN TERNAK) COA 2001021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AESTHEFILL (POLYLACTIC ACID) ,COA AF191204, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"AESTHEFILL (POLYLACTIC ACID) ,COA AF191204, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AESTHEFILL (POLYLACTIC ACID) ,COA AF191204\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"AESTHEFILL (POLYLACTIC ACID) ,COA AF191204\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DERMOFEEL G 10L (BHN BAKU KOSMETIK) COA LT19500476\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"DERMOFEEL G 10L (BHN BAKU KOSMETIK) COA LT19500476\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH625622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH625622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH625147\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH625147\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH625134\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH625134\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH625157\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH625157\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH625132\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH625132\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH624221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH624221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH625135\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH625135\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH625156\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH625156\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH625145\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH625145\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH625572\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH625572\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH625158\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH625158\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH625155\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH625155\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH625144\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH625144\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH625148\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH625148\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH625137\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH625137\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH625136\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH625136\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH625133\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH625133\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH625501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH625501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH625501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH625501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH625286\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH625286\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH625138\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH625138\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH625140\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH625140\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECODIAR POWDER (HERACLEOTICUM) BHN BAKU OBAT UTK PAKAN TERNAK, COA P0102012020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"ECODIAR POWDER (HERACLEOTICUM) BHN BAKU OBAT UTK PAKAN TERNAK, COA P0102012020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECODIAR LIQUID (HERACLEOTICUM) BHN BAKU OBAT UTK PAKAN TERNAK, COA L0102012020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"ECODIAR LIQUID (HERACLEOTICUM) BHN BAKU OBAT UTK PAKAN TERNAK, COA L0102012020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYLPOL 980 (20KG) BAHAN BAKU KOSMETIK, COA 11519108, 11519117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39069099\", \"uraian\": \"ACRYLPOL 980 (20KG) BAHAN BAKU KOSMETIK, COA 11519108, 11519117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MICROCELAC(R) 100 (BHN BAKU OBAT) COA L103153919\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"MICROCELAC(R) 100 (BHN BAKU OBAT) COA L103153919\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104310220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104310220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105715019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200H (BHN BAKU OBAT) COA L105715019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLOWLAC (R) 100 H (BHN BAKU OBAT) COA L105814919\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"FLOWLAC (R) 100 H (BHN BAKU OBAT) COA L105814919\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID PPL-600 (BHN BAKU OBAT) COA. 577200-2190226/007-008 (2)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232010\", \"uraian\": \"LIPOID PPL-600 (BHN BAKU OBAT) COA. 577200-2190226/007-008 (2)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFADROXIL MONOHYDRATE (PURIDROX TM POWDER) BHN BAKU OBAT, COA B334675, B334683, B334684\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFADROXIL MONOHYDRATE (PURIDROX TM POWDER) BHN BAKU OBAT, COA B334675, B334683, B334684\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BJ14806\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BJ14806\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM L-HYDROGENASPARTATE 2-HYDRATE (BHN BAKU OBAT) COA 3077606\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"MAGNESIUM L-HYDROGENASPARTATE 2-HYDRATE (BHN BAKU OBAT) COA 3077606\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN540750\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN540750\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN540755\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN540755\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN540752\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN540752\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN540751\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN540751\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FEF CETRIMIDE PH EUR (BHN BAKU KOSMETIK) COA JX0C539\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"FEF CETRIMIDE PH EUR (BHN BAKU KOSMETIK) COA JX0C539\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CETRIMIDE EP (BHN BAKU KOSMETIK) COA JX0C448\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CETRIMIDE EP (BHN BAKU KOSMETIK) COA JX0C448\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COATED ASCORBIC ACID TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01910962\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"COATED ASCORBIC ACID TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01910962\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19070015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19070015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19080021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19080021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19060003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19060003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19020057\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19020057\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19120057\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19120057\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19120057\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19120057\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19080021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19080021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT19050001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT19050001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19100046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19100046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENTRY POLYOX WSR 303 LEO NF (DOW) (BHN BAKU PEWARNA TABLET), COA D682J4QRR5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"SENTRY POLYOX WSR 303 LEO NF (DOW) (BHN BAKU PEWARNA TABLET), COA D682J4QRR5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENTRY POLYOX WSR 1105 LEO NF (DOW) BHN BAKU PEWARNA TABLET, COA D682I6RRD4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"SENTRY POLYOX WSR 1105 LEO NF (DOW) BHN BAKU PEWARNA TABLET, COA D682I6RRD4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENTRY POLYOX WSR N750 LEO NF (DOW) BHN BAKU UTK PEWARNA TABLET, COA D682I97RJ4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"SENTRY POLYOX WSR N750 LEO NF (DOW) BHN BAKU UTK PEWARNA TABLET, COA D682I97RJ4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 1907762068, 1907923985\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29322090\", \"uraian\": \"SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 1907762068, 1907923985\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1907652825\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1907652825\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANOCOBALAMINE VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1907662827\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANOCOBALAMINE VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1907662827\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 19100882\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29395900\", \"uraian\": \"DIMENHYDRINATE (BHN BAKU OBAT) COA 19100882\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2510719\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29391900\", \"uraian\": \"HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2510719\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HG30906, HG30693\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34029099\", \"uraian\": \"MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HG30906, HG30693\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CARBOPLATIN EP (BHN BAKU OBAT) COA 360190010, 404190010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28439000\", \"uraian\": \"CARBOPLATIN EP (BHN BAKU OBAT) COA 360190010, 404190010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA S100400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA S100400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA S100400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA S100400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011J8DL02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011J8DL02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180J8O001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180J8O001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J63001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J63001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM CR...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J9A002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM CR...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J9A002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E15 PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011J6BL02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E15 PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011J6BL02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180JAJ002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180JAJ002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CARBAZOCHROME SODIUM SULFONATE ORAL G (BHN BAKU OBAT)COA AC90801/90822\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"CARBAZOCHROME SODIUM SULFONATE ORAL G (BHN BAKU OBAT)COA AC90801/90822\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA.\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA.\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) BHN BAKU KOSMETIK, COA 911226\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (16KG) BHN BAKU KOSMETIK, COA 911226\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-96A-6CS (16KG) BHN BAKU KOSMETIK, COA 910071\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-96A-6CS (16KG) BHN BAKU KOSMETIK, COA 910071\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 702017846K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ABYSSINE 657 (BHN BAKU KOSMETIK) COA 702017846K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 1735914\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 1735914\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829017654K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"B-WHITE TM (BHN BAKU KOSMETIK) COA 829017654K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829017654K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"B-WHITE TM (BHN BAKU KOSMETIK) COA 829017654K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830017814K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL TM (BHN BAKU KOSMETIK) COA 830017814K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK), COA 769017736K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHRONOLINE TM (BHN BAKU KOSMETIK), COA 769017736K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK), COA 785017960K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK), COA 785017960K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GREYVERSE TM (BHN BAKU KOSMETIK), COA 833017324K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GREYVERSE TM (BHN BAKU KOSMETIK), COA 833017324K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK), COA 5624919\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK), COA 5624919\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN TM (BHN BAKU KOSMETIK), COA 828017668K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"NEUTRAZEN TM (BHN BAKU KOSMETIK), COA 828017668K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRO-LIPO TM NEO (BHN BAKU KOSMETIK), COA 1934801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PRO-LIPO TM NEO (BHN BAKU KOSMETIK), COA 1934801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK), COA 784027671K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"TYROSTAT TM 11 (BHN BAKU KOSMETIK), COA 784027671K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELANOSTATINE TM 5PS (50PPM) (BHN BAKU KOSMETIK) COA 817016912J\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MELANOSTATINE TM 5PS (50PPM) (BHN BAKU KOSMETIK) COA 817016912J\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELANOSTATINE TM 5PS (50PPM) (BHN BAKU KOSMETIK) COA 817017459K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MELANOSTATINE TM 5PS (50PPM) (BHN BAKU KOSMETIK) COA 817017459K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELANOSTATINE TM 5PS (50PPM) (BHN BAKU KOSMETIK), COA 817017459K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MELANOSTATINE TM 5PS (50PPM) (BHN BAKU KOSMETIK), COA 817017459K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELANOSTATINE TM 5PS (50PPM) (BHN BAKU KOSMETIK), COA 817017459K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MELANOSTATINE TM 5PS (50PPM) (BHN BAKU KOSMETIK), COA 817017459K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ONDANSETRON HCL USP (BHN BAKU OBAT) COA 19OS001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"ONDANSETRON HCL USP (BHN BAKU OBAT) COA 19OS001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMBROXOL HYDROCHLORIDE POWDER (BHN BAKU OBAT) COA AHM/20001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"AMBROXOL HYDROCHLORIDE POWDER (BHN BAKU OBAT) COA AHM/20001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HG30584\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34029099\", \"uraian\": \"MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HG30584\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNE BUSTERS (BHN BAKU KOSMETIK) COA 192024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNE BUSTERS (BHN BAKU KOSMETIK) COA 192024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 192773\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 192773\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 192233\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 192233\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA190328\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA190328\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTO COLLAGE B (N) BHN BAKU KOSMETIK, COA 192085\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHYTO COLLAGE B (N) BHN BAKU KOSMETIK, COA 192085\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DERMAVEIL (BHN BAKU KOSMETIK) COA 192228\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"DERMAVEIL (BHN BAKU KOSMETIK) COA 192228\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT19090231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT19090231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC , 25KG BOX (BHN BAKU KOSMETIK) COA 0000185972\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC , 25KG BOX (BHN BAKU KOSMETIK) COA 0000185972\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0719070172\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0719070172\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519100287,295\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519100287,295\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA 0519010008,0519010014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA 0519010008,0519010014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P9P08QA000, P9Q29QA000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL TX (BHN BAKU KOSMETIK) COA P9P08QA000, P9Q29QA000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C(R) 50, 5KG BAG ALU (BHN BAKU KOSMETIK) COA CS18060031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C(R) 50, 5KG BAG ALU (BHN BAKU KOSMETIK) COA CS18060031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS, 25KG PC (BHN BAKU KOSMETIK) COA 0418110248\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HMS, 25KG PC (BHN BAKU KOSMETIK) COA 0418110248\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED GRADE P) BHN BAKU OBAT,COA M596895, M596941\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED GRADE P) BHN BAKU OBAT,COA M596895, M596941\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA 19ZDP\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA 19ZDP\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK)COA CHP1200116\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK)COA CHP1200116\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK)COA MUP-021769\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK)COA MUP-021769\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-651329\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-651329\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 012020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 012020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-602979\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-602979\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK)COA BAG-021879, BAG-030529\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK)COA BAG-021879, BAG-030529\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA MCP-N-060929\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA MCP-N-060929\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-020619, GSC-K-010210\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-020619, GSC-K-010210\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-053009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-053009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND GREEN TEA SEED OIL (BHN BAKU KOSMETIK) COA CSSO-031459\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND GREEN TEA SEED OIL (BHN BAKU KOSMETIK) COA CSSO-031459\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-041229\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-041229\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND LICORICE EXTRACT (BHN BAKU KOSMETIK)COA GGB-012759\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND LICORICE EXTRACT (BHN BAKU KOSMETIK)COA GGB-012759\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) COA MSEEC-022219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) COA MSEEC-022219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) COA MSEEC-022219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) COA MSEEC-022219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK) COA NMSP-D-013010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK) COA NMSP-D-013010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-062109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-062109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-021819\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-021819\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-032919, HMVBD-043029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-032919, HMVBD-043029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK) COA U200120, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK) COA U200120, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT)COA L105715019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200H (BHN BAKU OBAT)COA L105715019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E4M PREMIUM HYDROXYPROPYL METHYLCELLULOSE (BHN BAKU PEWARNA TABLET)COA D180IBM011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E4M PREMIUM HYDROXYPROPYL METHYLCELLULOSE (BHN BAKU PEWARNA TABLET)COA D180IBM011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01909558\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01909558\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT19050001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT19050001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19060003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19060003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF,1KG ALUF (BHN BAKU SUPLEMEN) COA UE01905024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO (R) LUTEIN 20PCT SAF,1KG ALUF (BHN BAKU SUPLEMEN) COA UE01905024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT19090024, UT19100025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT19090024, UT19100025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT19100092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT19100092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT19100025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT19100025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01909592\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01909592\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT19090012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT19090012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01909592\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01909592\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20190702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20190702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01910914\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01910914\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-PANTHENOL 50L, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01911650\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL-PANTHENOL 50L, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01911650\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-PANTHENOL 50L, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01911649\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL-PANTHENOL 50L, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01911649\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM (BHN BAKU OBAT) COA 19121328,19121330,19121327\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331900\", \"uraian\": \"METAMIZOLE SODIUM (BHN BAKU OBAT) COA 19121328,19121330,19121327\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CORTISONE ACETATE MICRONISED PH.EUR JP (BHN BAKU OBAT) COA 1900971988\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"CORTISONE ACETATE MICRONISED PH.EUR JP (BHN BAKU OBAT) COA 1900971988\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA 20200108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"11081200\", \"uraian\": \"CORN STARCH (BHN BAKU MAKANAN) COA 20200108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BILBERRY (V.MYRTILLUS)ET.EX 36PCT (BHN BAKU SUPLEMEN) COA 19S0328502\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BILBERRY (V.MYRTILLUS)ET.EX 36PCT (BHN BAKU SUPLEMEN) COA 19S0328502\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CURCUMA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 19S0360203\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CURCUMA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 19S0360203\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GREEN TEA DRY DEC.EX/PHOSPHOL (BHN BAKU SUPLEMEN) COA 19S0269701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GREEN TEA DRY DEC.EX/PHOSPHOL (BHN BAKU SUPLEMEN) COA 19S0269701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 FOOD OIL ,4,5KG PJUG (BHN BAKU MAKANAN) COA TS00013977\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 FOOD OIL ,4,5KG PJUG (BHN BAKU MAKANAN) COA TS00013977\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRAYPHOS MKP FG 25K BG (BHN BAKU KOSMETIK) COA 1931901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PRAYPHOS MKP FG 25K BG (BHN BAKU KOSMETIK) COA 1931901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A,20KG BA(BHN BAKU MAKANAN) COA WB19100467,469,470\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A,20KG BA(BHN BAKU MAKANAN) COA WB19100467,469,470\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO190101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO190101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO190101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO190101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO190102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO190102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK)COA EG543-191107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK)COA EG543-191107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) COA EG543-200101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) COA EG543-200101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-200101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-200101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-190404-GS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-190404-GS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS191102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS191102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIE191102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIE191102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JOB'S TEARS HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA COL200101-B\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"JOB'S TEARS HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA COL200101-B\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) COA OLVH200101-ENBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) COA OLVH200101-ENBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAFFRON FLOWER HYDROGLYCERINED EXTRACT 80 (BHN BAKU KOSMETIK) COA CRS190502-GL80\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SAFFRON FLOWER HYDROGLYCERINED EXTRACT 80 (BHN BAKU KOSMETIK) COA CRS190502-GL80\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SEABUCKTHORN HYDROGLYCOLIC EXTRACT (BHN BAKU OBAT) COA HIR200101-B\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SEABUCKTHORN HYDROGLYCOLIC EXTRACT (BHN BAKU OBAT) COA HIR200101-B\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA200101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA200101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA VIV190701-BGBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA VIV190701-BGBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLOMIPHENE CITRATE USP/EP (BHN BAKU OBAT ) COA 201911190352\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"CLOMIPHENE CITRATE USP/EP (BHN BAKU OBAT ) COA 201911190352\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 052319/006049\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 052319/006049\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219030055, 30056, 40084\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219030055, 30056, 40084\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ90913150\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ90913150\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000185972\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000185972\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0319111747, 749 S/D 752\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0319111747, 749 S/D 752\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00605068, VE00605069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"AMPHISOL K (BHN BAKU KOSMETIK) COA VE00605068, VE00605069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708190083\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708190083\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519100295\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519100295\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE WHITE (BHN BAKU PEWARNA TABLET), COA WP822726\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE WHITE (BHN BAKU PEWARNA TABLET), COA WP822726\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MC-GLUCAN (BHN BAKU KOSMETIK) COA MCGL191211\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"MC-GLUCAN (BHN BAKU KOSMETIK) COA MCGL191211\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC 026-19-801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 200 (BHN BAKU OBAT) COA. LC 026-19-801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC 026-19-801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 200 (BHN BAKU OBAT) COA. LC 026-19-801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM SELENITE IN CARRIER, SODIUM SELENITE 0.85PCT-0.99PCT... (BHN BAKU OBAT) COA 3073760\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28429010\", \"uraian\": \"SODIUM SELENITE IN CARRIER, SODIUM SELENITE 0.85PCT-0.99PCT... (BHN BAKU OBAT) COA 3073760\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM SELENITE MAX 0.99PCT IN CALCIUM CARBONATE (BHN BAKU OBAT) COA 3066563\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28429010\", \"uraian\": \"SODIUM SELENITE MAX 0.99PCT IN CALCIUM CARBONATE (BHN BAKU OBAT) COA 3066563\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM STEARATE POWDER, PH EUR.10.ED.,VEGETABLE (BHN BAKU OBAT) COA 3079064\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CALCIUM STEARATE POWDER, PH EUR.10.ED.,VEGETABLE (BHN BAKU OBAT) COA 3079064\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1903044380\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1903044380\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 CN 10KG KA (BHN BAKU KOSMETIK) COA.1540601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 CN 10KG KA (BHN BAKU KOSMETIK) COA.1540601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0036849\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0036849\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9337057\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9337057\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9337057\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9337057\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIFCO BEEF EXTRACT 500G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9253766\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DIFCO BEEF EXTRACT 500G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9253766\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9281428\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9281428\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9109987\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9109987\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9122883\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9122883\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9267765\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9267765\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEPTONE STARTER PAK NO.3(MEDIA U/ PENGEMBANGKAN MIKRO ORGANISME)BATCH 191029008,SAMPLE NO COMM\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PEPTONE STARTER PAK NO.3(MEDIA U/ PENGEMBANGKAN MIKRO ORGANISME)BATCH 191029008,SAMPLE NO COMM\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISONE USP42 (BHN BAKU OBAT) COA NPD190911, NPD191117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISONE USP42 (BHN BAKU OBAT) COA NPD190911, NPD191117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ISDN 25PCT-LACTOSE 450 75PCT DILUTED (BHN BAKU OBAT) COA 2000058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"ISDN 25PCT-LACTOSE 450 75PCT DILUTED (BHN BAKU OBAT) COA 2000058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANTOPRAZOLE SODIUM (STERILE) BHN BAKU OBAT, COA SI/PPZ/01001219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"PANTOPRAZOLE SODIUM (STERILE) BHN BAKU OBAT, COA SI/PPZ/01001219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OXOMEMAZINE BASE (BHN BAKU OBAT) COA HXBCPN006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29343000\", \"uraian\": \"OXOMEMAZINE BASE (BHN BAKU OBAT) COA HXBCPN006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000035604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000035604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLAISANCE P116808 (BHN BAKU KOSMETIK) COA.0000035606\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"PLAISANCE P116808 (BHN BAKU KOSMETIK) COA.0000035606\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA 0000035607\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA 0000035607\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB19090218\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB19090218\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB19110253\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB19110253\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GRAM DECOLORIZER 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9352509\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GRAM DECOLORIZER 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9352509\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE COOKED MEAT MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0014169\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE COOKED MEAT MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0014169\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9219559\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9219559\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9211356\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9211356\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9256266\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9256266\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9231272\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9231272\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANEL VIEWER EUROPE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 457987\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PANEL VIEWER EUROPE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 457987\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9219559\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9219559\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9211356\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9211356\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9266117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9266117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISTMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BISTMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9127592\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9127592\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D-SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9218804\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D-SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9218804\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9211435\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9211435\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9142767\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9142767\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273651\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273651\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9323677\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9323677\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9255013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9255013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7312565\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7312565\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9168541\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9168541\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239367\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239367\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273397\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273397\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9241879\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9241879\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9211365\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9211365\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9254329\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9254329\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9148938\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9148938\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9231272\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9231272\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9261510\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9261510\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239628\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239628\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9253973\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9253973\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9219559\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9219559\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9266117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9266117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9273651\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9273651\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9323677\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9323677\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9168641\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9168641\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 9239568\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 9239568\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9231272\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRILLIANT GREEN BILE 2PCT 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9231272\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9261510, 9353100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9261510, 9353100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239628\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239628\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9142723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9142723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9219559\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9219559\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9211356\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9211356\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239282,9294153\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239282,9294153\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218538\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218538\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9291612\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9291612\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161680\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161680\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 9218804\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 9218804\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161608\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161608\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9211435\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9211435\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142767\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142767\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9273651\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9273651\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9021613\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9021613\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9323677\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9323677\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9142728\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9142728\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9273402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9273402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9255013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9255013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9310881\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9310881\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9168641, ...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9168641, ...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161934\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161934\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9273621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9273621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9239379\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9239379\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9273397\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9273397\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9253973,9315219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9253973,9315219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9211365\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9211365\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9211365\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9211365\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9206092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9206092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9324109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9324109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9252365\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9252365\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9231272\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9231272\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9353100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9353100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239628\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239628\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 9084661\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 9084661\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9142723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9142723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9295486\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9295486\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9288895,899\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9288895,899\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161680\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161680\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8183841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8183841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9142728\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9142728\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9252365\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9252365\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9239628\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLD AGAR 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9239628\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9142908\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9142908\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9353100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9353100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE COOKED MEAT MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0014169\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE COOKED MEAT MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0014169\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 9364954\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 9364954\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9295571\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9295571\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9291612\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9291612\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9202311\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9202311\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PEPSIN 1 TO 10000 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9025890\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PEPSIN 1 TO 10000 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9025890\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POLYSORBATE 80 100G 1 EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9289195\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POLYSORBATE 80 100G 1 EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9289195\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GRAM CRYSTAL VIOLET 250ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9296589\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GRAM CRYSTAL VIOLET 250ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9296589\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9301915\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9301915\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) COA 9353100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) COA 9353100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9198204\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9198204\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRAIN HEART INFUSION BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9197613\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRAIN HEART INFUSION BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9197613\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT EXTRACT BROTH 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9295576\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALT EXTRACT BROTH 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9295576\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHOSPHATE BUFFER PH 7.2 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9302927\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PHOSPHATE BUFFER PH 7.2 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9302927\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKIROORGANISME) BATCH 9302976\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKIROORGANISME) BATCH 9302976\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9337678\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9337678\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9175490\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9175490\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEMOGLOBIN FREEZE DRIED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9324009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEMOGLOBIN FREEZE DRIED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9324009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DULCITOL 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8337666\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DULCITOL 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8337666\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MR-VP MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9354355\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MR-VP MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9354355\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9273419\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9273419\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9219600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9219600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE PHOSPHATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9364944\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTOSE PHOSPHATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9364944\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH B018345M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH B018345M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9206582\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9206582\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MOMETASONE FUROATE MICRONIZED (BHN BAKU OBAT) COA NZ3259M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"MOMETASONE FUROATE MICRONIZED (BHN BAKU OBAT) COA NZ3259M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 2998491\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 2998491\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH626259\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH626259\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM CHLORIDE 6-HYDRATE,CRYST (BHN BAKU KOSMETIK) COA 3066587\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28273100\", \"uraian\": \"MAGNESIUM CHLORIDE 6-HYDRATE,CRYST (BHN BAKU KOSMETIK) COA 3066587\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 14 PREMIUM (BHN BAKU PEWARNA TABLET), COA D184J24021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 14 PREMIUM (BHN BAKU PEWARNA TABLET), COA D184J24021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRET (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 03/19GL4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRET (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 03/19GL4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELUCIRE 48/16 (BHN BAKU OBAT) COA 178335\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELUCIRE 48/16 (BHN BAKU OBAT) COA 178335\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELUCIRE 44/14 (BAHAN BAKU OBAT) COA 177696\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELUCIRE 44/14 (BAHAN BAKU OBAT) COA 177696\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELUCIRE 44/14 (BAHAN BAKU OBAT) COA 178289\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELUCIRE 44/14 (BAHAN BAKU OBAT) COA 178289\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TEFOSE 63 (BHN BAKU OBAT) COA 177721\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TEFOSE 63 (BHN BAKU OBAT) COA 177721\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TEFOSE 63 (BAHAN BAKU OBAT) COA 178126\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TEFOSE 63 (BAHAN BAKU OBAT) COA 178126\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ91007012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ91007012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN VIRGIN COLD PRESSED DEODORISED ORGANIC OIL (BHN BAKU KOSMETIK)COA ARHVD191106-SICBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ARGAN VIRGIN COLD PRESSED DEODORISED ORGANIC OIL (BHN BAKU KOSMETIK)COA ARHVD191106-SICBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSA DAMASCENA ORGANIC DISTILLATE 1:20 (BHN BAKU KOSMETIK)COA ROSD190916-BIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROSA DAMASCENA ORGANIC DISTILLATE 1:20 (BHN BAKU KOSMETIK)COA ROSD190916-BIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA200101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA200101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO190102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO190102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANTOPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT, COA APSS19004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"PANTOPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT, COA APSS19004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9337189\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9337189\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9235506\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9235506\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9256006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9256006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9337905\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9337905\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239389\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239389\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9246040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9246040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9284311\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9284311\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH9211095,9287860\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG L&P80 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH9211095,9287860\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9284311\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9284311\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8207980\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8207980\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9136505,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9136505,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9238630\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9238630\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9189630\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9189630\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9284311\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9284311\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9268832\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9268832\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9338928\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9338928\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9269991\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD34 APC 8G12 100 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9269991\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9304226\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9304226\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9241769,9339955\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9241769,9339955\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9274649,9354096\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9274649,9354096\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9274670\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9274670\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI-HLA-DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9322195\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"ANTI-HLA-DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9322195\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9310704\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9310704\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9235506\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9235506\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239389\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239389\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9283338\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9283338\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NYSTATIN POWDER ROW (BHN BAKU OBAT) COA C114373\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NYSTATIN POWDER ROW (BHN BAKU OBAT) COA C114373\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NYSTATIN MICRONIZED ROW (BHN BAKU OBAT) COA C131305\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NYSTATIN MICRONIZED ROW (BHN BAKU OBAT) COA C131305\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for P.GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 19S0132200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"P.GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 19S0132200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for P.GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 19S0132200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"P.GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 19S0132200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BILBERRY (V.MYRTILLUS)ET.EX 36PCT (BHN BAKU SUPLEMEN) COA 19S0328502\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BILBERRY (V.MYRTILLUS)ET.EX 36PCT (BHN BAKU SUPLEMEN) COA 19S0328502\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM - 5KG (BHN BAKU KOSMETIK) COA 1924506\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM - 5KG (BHN BAKU KOSMETIK) COA 1924506\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECOGEL TM - 5KG (BHN BAKU KOSMETIK) COA 1934502\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ECOGEL TM - 5KG (BHN BAKU KOSMETIK) COA 1934502\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM - 20KG (BHN BAKU KOSMETIK) COA 1933601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM - 20KG (BHN BAKU KOSMETIK) COA 1933601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTENSO TM - 5KG (BHN BAKU KOSMETIK) COA 1805516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTENSO TM - 5KG (BHN BAKU KOSMETIK) COA 1805516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-1950919\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334910\", \"uraian\": \"DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-1950919\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT TEA POWDER (TEA EXTRACT) BHN BAKU MAKANAN, COA 912282\""}, {"role": "assistant", "content": "{\"hs_code\" : \"9022010\", \"uraian\": \"INSTANT TEA POWDER (TEA EXTRACT) BHN BAKU MAKANAN, COA 912282\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM (BHN BAKU OBAT UTK PAKAN TERNAK) COA 1905466\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331900\", \"uraian\": \"METAMIZOLE SODIUM (BHN BAKU OBAT UTK PAKAN TERNAK) COA 1905466\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8207980\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8207980\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9254142\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9254142\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9256006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9256006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9337905\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9337905\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9189630\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9189630\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9239389\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9239389\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9284311\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9284311\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH0007091\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG L&P80 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH0007091\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9284311\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9284311\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE PENASE CONCENTRATE 10X20ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9324994\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"TUBE PENASE CONCENTRATE 10X20ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9324994\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9018746\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9018746\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8285857\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8285857\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239389\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239389\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CS&T RUO BEADS 50 TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0009800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CS&T RUO BEADS 50 TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0009800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0051017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0051017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERYTHROMYCIN ETHYL SUCCINATE BP (BHN BAKU OBAT) COA EES 067 A 20\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29415000\", \"uraian\": \"ERYTHROMYCIN ETHYL SUCCINATE BP (BHN BAKU OBAT) COA EES 067 A 20\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 20100080, 20100083\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29395900\", \"uraian\": \"DIMENHYDRINATE (BHN BAKU OBAT) COA 20100080, 20100083\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CETIRIZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA 19002CZ6BI\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"CETIRIZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA 19002CZ6BI\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIDOCAINE BASE (BHN BAKU OBAT) COA. 190562\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"LIDOCAINE BASE (BHN BAKU OBAT) COA. 190562\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIDOCAINE HCL (BHN BAKU OBAT) COA 191827\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"LIDOCAINE HCL (BHN BAKU OBAT) COA 191827\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX POWDER) BHN BAKU OBAT, COA M484429\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE (PURIMOX POWDER) BHN BAKU OBAT, COA M484429\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED GRADE A) ,BHN BAKU OBAT, COA M532003,M532004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED GRADE A) ,BHN BAKU OBAT, COA M532003,M532004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) , COA 001228\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6028 (16KG) (BHN BAKU KOSMETIK) , COA 001228\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6017 (17KG) BHN BAKU KOSMETIK, COA 912143\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6017 (17KG) BHN BAKU KOSMETIK, COA 912143\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-96A-6CS (16KG) BHN BAKU KOSMETIK, COA 910074\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-96A-6CS (16KG) BHN BAKU KOSMETIK, COA 910074\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-210 (16KG) BHN BAKU KOSMETIK, COA 002338\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSG-210 (16KG) BHN BAKU KOSMETIK, COA 002338\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP-100 (10KG) BHN BAKU KOSMETIK , COA 911763\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSP-100 (10KG) BHN BAKU KOSMETIK , COA 911763\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KP-562P (16KG) BHN BAKU KOSMETIK , COA 802008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KP-562P (16KG) BHN BAKU KOSMETIK , COA 802008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KP-578 (16KG) BHN BAKU KOSMETIK, COA 912082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KP-578 (16KG) BHN BAKU KOSMETIK, COA 912082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA WIN\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA WIN\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA WIF\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROTESIL LH (BHN BAKU KOSMETIK) COA WIF\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA FAJ\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) COA FAJ\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABCOAT TC WHITE (BHN BAKU PEWARNA TABLET) COA GA666098\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"TABCOAT TC WHITE (BHN BAKU PEWARNA TABLET) COA GA666098\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY ORANGE (BHN BAKU PEWARNA TABLET) COA GA666096\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY ORANGE (BHN BAKU PEWARNA TABLET) COA GA666096\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA GA666097\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA GA666097\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DICLOFENAC POTASSIUM BP 2020 (BHN BAKU OBAT) COA DFK/10010003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"DICLOFENAC POTASSIUM BP 2020 (BHN BAKU OBAT) COA DFK/10010003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DICLOFENAC SODIUM USP 42 (BHN BAKU OBAT) COA DFS/10010023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"DICLOFENAC SODIUM USP 42 (BHN BAKU OBAT) COA DFS/10010023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DICLOFENAC SODIUM USP 42 (BHN BAKU OBAT) COA DFS/10010027 S/ 30\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"DICLOFENAC SODIUM USP 42 (BHN BAKU OBAT) COA DFS/10010027 S/ 30\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA D01231UP\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA D01231UP\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAROPHYLL RED 10PCT, 5KG BAG ALU (BHN BAKU OBAT UTK PAKAN TERNAK) COA UE01910718\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"CAROPHYLL RED 10PCT, 5KG BAG ALU (BHN BAKU OBAT UTK PAKAN TERNAK) COA UE01910718\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOXORUBICIN HYDROCHLORIDE EP (BHN BAKU OBAT) COA 0620036003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"DOXORUBICIN HYDROCHLORIDE EP (BHN BAKU OBAT) COA 0620036003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOCETAXEL TRIHYDRATE (BHN BAKU OBAT) COA 201909005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"DOCETAXEL TRIHYDRATE (BHN BAKU OBAT) COA 201909005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG200117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG200117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYPOL 980 (20KG) BAHAN BAKU KOSMETIK, COA 11519129,11519133\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39069099\", \"uraian\": \"ACRYPOL 980 (20KG) BAHAN BAKU KOSMETIK, COA 11519129,11519133\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 20KG ACRYPOL PRINTED BOX ,NO COMMERCIAL VALUE, BATCH 1020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"48192000\", \"uraian\": \"20KG ACRYPOL PRINTED BOX ,NO COMMERCIAL VALUE, BATCH 1020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 90609\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38247900\", \"uraian\": \"LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 90609\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 90920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38247900\", \"uraian\": \"MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 90920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 90601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38247900\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 90601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WILDLIME HARVEST TM AF (BHN BAKU KOSMETIK) COA 80901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38247900\", \"uraian\": \"WILDLIME HARVEST TM AF (BHN BAKU KOSMETIK) COA 80901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 91214\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38247900\", \"uraian\": \"OILESS'CITY TM (BHN BAKU KOSMETIK) COA 91214\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WILDLIME HARVEST TM AF (BHN BAKU KOSMETIK) COA 80901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38247900\", \"uraian\": \"WILDLIME HARVEST TM AF (BHN BAKU KOSMETIK) COA 80901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MB TRAY RODAC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 106BH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"MB TRAY RODAC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 106BH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MICROBIO M3D AUTOSCANNER EN (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH AS0132\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"MICROBIO M3D AUTOSCANNER EN (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH AS0132\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9319163\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9319163\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODOC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9353341\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODOC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9353341\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH 0010401\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH 0010401\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01905018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE01905018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT19110284,UT19120294\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT19110284,UT19120294\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01905018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE01905018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF19020048\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF19020048\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT19120294\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT19120294\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT19090231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT19090231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19100098\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19100098\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT19090231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT19090231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01907087\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01907087\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT19100216\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT19100216\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19100098\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19100098\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01905017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU MAKANAN) COA UE01905017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT19100008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT19100008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01909234\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01909234\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01909234\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01909234\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01909234\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01909234\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB19109001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB19109001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT19090097\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT19090097\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT19090231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT19090231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11910006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11910006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91002459\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91002459\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19090018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19090018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01911059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01911059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90913150\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90913150\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT19090231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT19090231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01907087\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01907087\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19090018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19090018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11910006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11910006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90913150\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90913150\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01902008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01902008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19080153\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19080153\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.PCT WS (BHN BAKU SUPLEMEN) COA UT19100008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.PCT WS (BHN BAKU SUPLEMEN) COA UT19100008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT19100008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT19100008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905017, UE01905018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905017, UE01905018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19030004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19030004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE 25KG BOX (BHN BAKU SUPLEMEN) COA TL01908764\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE 25KG BOX (BHN BAKU SUPLEMEN) COA TL01908764\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT1900008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT1900008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19060068\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19060068\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT19060068, UT19090231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT19060068, UT19090231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19060068,UT19060079\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19060068,UT19060079\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1902032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1902032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1902032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1902032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1902032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1902032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01909050\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01909050\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ91002459\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ91002459\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL01908764\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL01908764\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT19100008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT19100008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT19090231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT19090231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01909234\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01909234\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273314\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273314\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9274670\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9274670\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTYI-HLA-DR FITC L243 (G46-6) RUO/GMP(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9322195\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"ANTYI-HLA-DR FITC L243 (G46-6) RUO/GMP(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9322195\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9345605\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9345605\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9310704\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9310704\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SERASENSE SF CM5 (BAHAN BAKU KOSMETIK) COA PA00117016, 18,20\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29319049\", \"uraian\": \"SERASENSE SF CM5 (BAHAN BAKU KOSMETIK) COA PA00117016, 18,20\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 2001EF6310\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"L-ARGININE LO (BHN BAKU KOSMETIK),COA 2001EF6310\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1907753133\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1907753133\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OMEPRAZOLE PELLETS -8,5PCT (BHN BAKU OBAT) COA OP8.5/121600120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"OMEPRAZOLE PELLETS -8,5PCT (BHN BAKU OBAT) COA OP8.5/121600120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SB VITAL LIDOCAINE IML ,COA 17315-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE SB VITAL LIDOCAINE IML ,COA 17315-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE LIDOCAINE HA FILLER 1ML N2 S2 SE, COA 17462-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE LIDOCAINE HA FILLER 1ML N2 S2 SE, COA 17462-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE LYFT LIDOCAINE 1 ML ,COA 17511-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE LYFT LIDOCAINE 1 ML ,COA 17511-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE VOLYME 1ML , COA 17642-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE VOLYME 1ML , COA 17642-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE DEFYNE 1ML , COA 17568-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE DEFYNE 1ML , COA 17568-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE KYSSE 1 ML, COA 17615-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE KYSSE 1 ML, COA 17615-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SB VITAL LIGHT LIDOCAINE 1ML , COA 17326-2,17459-2, 17634-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE SB VITAL LIGHT LIDOCAINE 1ML , COA 17326-2,17459-2, 17634-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFADROXIL MONOHYDRATE (PURIDROX POWDER) BHN BAKU OBAT, COA B334677S/D 679, 681\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFADROXIL MONOHYDRATE (PURIDROX POWDER) BHN BAKU OBAT, COA B334677S/D 679, 681\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLOPURINOL USP (BHN BAKU OBAT) COA 19080AY3ARII\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"ALLOPURINOL USP (BHN BAKU OBAT) COA 19080AY3ARII\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THEOPHYLLINE ANHYDROUS (BAHAN BAKU OBAT) COA 19491,20019,21 S/D 23, 25,26,28 S/D 31\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29395900\", \"uraian\": \"THEOPHYLLINE ANHYDROUS (BAHAN BAKU OBAT) COA 19491,20019,21 S/D 23, 25,26,28 S/D 31\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROPYPHENAZONE (ST) (BHN BAKU PEWARNA TABLET) COA 1911210,211,221,225,226\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331100\", \"uraian\": \"PROPYPHENAZONE (ST) (BHN BAKU PEWARNA TABLET) COA 1911210,211,221,225,226\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA DOC0062021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"SODIUM CARBONATE IPH (BHN BAKU OBAT) COA DOC0062021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA DOC0062021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"SODIUM CARBONATE IPH (BHN BAKU OBAT) COA DOC0062021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH625713\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH625713\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH625712\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH625712\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH625711\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH625711\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH625263\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH625263\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH625786\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH625786\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH625769\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH625769\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH625752\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH625752\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY PURPLE (BHN BAKU PEWARNA TABLET) COA SH625768\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY PURPLE (BHN BAKU PEWARNA TABLET) COA SH625768\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH625747\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH625747\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH625771\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH625771\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH625276\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH625276\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH625764\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH625764\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH625945\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH625945\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH625765\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH625765\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE PURPLE (BHN BAKU PEWARNA TABLET) COA SH625736\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE PURPLE (BHN BAKU PEWARNA TABLET) COA SH625736\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH625826\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH625826\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH625746\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH625746\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND YELLOW (BHN BAKU PEWARNA TABLET) COA SH625745\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND YELLOW (BHN BAKU PEWARNA TABLET) COA SH625745\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM OXIDE, LIGHT POWDER, BP 2020 (BHN BAKU OBAT) COA 1104624\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28273100\", \"uraian\": \"MAGNESIUM OXIDE, LIGHT POWDER, BP 2020 (BHN BAKU OBAT) COA 1104624\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH626155\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH626155\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH625668\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH625668\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY PURPLE (BHN BAKU PEWARNA TABLET) COA SH627015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY PURPLE (BHN BAKU PEWARNA TABLET) COA SH627015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH625946\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH625946\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH626159\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH626159\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX MAROON (BHN BAKU PEWARNA TABLET), COA DT698487\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX MAROON (BHN BAKU PEWARNA TABLET), COA DT698487\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II TAN (BHN BAKU PEWARNA TABLET), COA DT698507\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II TAN (BHN BAKU PEWARNA TABLET), COA DT698507\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE BLACK (BHN BAKU PEWARNA TABLET), COA DT698793\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE BLACK (BHN BAKU PEWARNA TABLET), COA DT698793\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET) COA DT698788\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPAGLOS WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET) COA DT698788\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV...(BHN BAKU PEWARNA TABLET)COA D011J8DL02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV...(BHN BAKU PEWARNA TABLET)COA D011J8DL02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E50 PREMIUM LV... (BHN BAKU PEWARNA TABLET) COA D011J17L03\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E50 PREMIUM LV... (BHN BAKU PEWARNA TABLET) COA D011J17L03\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM CR ...(BHN BAKU PEWARNA TABLET)COA D180J9A002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM CR ...(BHN BAKU PEWARNA TABLET)COA D180J9A002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA MTP04520\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA MTP04520\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB19090218\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB19090218\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB19110253\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB19110253\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB19090218\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB19090218\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E ACETATE 950NS (BHN BAKU SUPLEMEN) COA WB00918690\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E ACETATE 950NS (BHN BAKU SUPLEMEN) COA WB00918690\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB19110253\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB19110253\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MONOPROPYLENE GLYCOL (BHN BAKU KOSMETIK) COA PG(S)200109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"MONOPROPYLENE GLYCOL (BHN BAKU KOSMETIK) COA PG(S)200109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP2010/USP41 (BHN BAKU OBAT) COA.NED191203,NED191205\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP2010/USP41 (BHN BAKU OBAT) COA.NED191203,NED191205\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNOLIA BARK EXTRACT (BHN BAKU KOSMETIK) COA MBE05-190903\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MAGNOLIA BARK EXTRACT (BHN BAKU KOSMETIK) COA MBE05-190903\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01912343\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01912343\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19120057\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19120057\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FRUITFLOW II SD ,1KG BAL (BHN BAKU SUPLEMEN) COA 19417\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"FRUITFLOW II SD ,1KG BAL (BHN BAKU SUPLEMEN) COA 19417\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB19120517\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB19120517\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF, IKG ALUF (BHN BAKU SUPLEMEN) COA UE01905024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO (R) LUTEIN 20PCT SAF, IKG ALUF (BHN BAKU SUPLEMEN) COA UE01905024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01912338\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01912338\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE02001011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE02001011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT19050001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT19050001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COATED ASCORBIC ACID, TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01912457\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"COATED ASCORBIC ACID, TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01912457\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19120057\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19120057\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19100047\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19100047\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ90907010, UQ90907011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ90907010, UQ90907011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0040762\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0040762\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AC091KF FUCOGEL 1.5P 25 KG (BHN BAKU KOSMETIK) COA 0041338\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AC091KF FUCOGEL 1.5P 25 KG (BHN BAKU KOSMETIK) COA 0041338\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0041341\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0041341\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0041499\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0041499\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000186494\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000186494\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0319111772\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0319111772\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519100295\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519100295\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX ,25KG PC (BHN BAKU KOSMETIK) COA 0519010014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX ,25KG PC (BHN BAKU KOSMETIK) COA 0519010014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0819120285\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0819120285\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001552129\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SLX (BHN BAKU KOSMETIK) COA 0001552129\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT19120090\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT19120090\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50, 5KG BAG ALU (BHN BAKU KOSMETIK) COA CS18060031,32,33\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50, 5KG BAG ALU (BHN BAKU KOSMETIK) COA CS18060031,32,33\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 ,25KG PC (BHN BAKU KOSMETIK) COA 0219040085,0219060109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 ,25KG PC (BHN BAKU KOSMETIK) COA 0219040085,0219060109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT19080029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT19080029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11910006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11910006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19030004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19030004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92001273\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"V003400 (BHN BAKU MAKANAN) COA XW92001273\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE01909014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"RONOXAN A (BHN BAKU MAKANAN) COA UE01909014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19100098\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19100098\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799037686L\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799037686L\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829017962K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"B-WHITE TM (BHN BAKU KOSMETIK) COA 829017962K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785018040L\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785018040L\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOXYL TM (BHN BAKU KOSMETIK) COA R1116501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"RIBOXYL TM (BHN BAKU KOSMETIK) COA R1116501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOXYL TM (BHN BAKU KOSMETIK) COA R1286501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"RIBOXYL TM (BHN BAKU KOSMETIK) COA R1286501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK), COA 1735914\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AMISOL TRIO TM (BHN BAKU KOSMETIK), COA 1735914\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEFENSCALP TM (BHN BAKU KOSMETIK), COA 785077880K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"DEFENSCALP TM (BHN BAKU KOSMETIK), COA 785077880K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEFENSCALP TM (BHN BAKU KOSMETIK), COA 785077880K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"DEFENSCALP TM (BHN BAKU KOSMETIK), COA 785077880K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK), COA 5624919\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK), COA 5624919\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK), COA 829017654K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"B-WHITE TM (BHN BAKU KOSMETIK), COA 829017654K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANACHRYS 2B PF (PRESERVATIVE- (BHN BAKU KOSMETIK), COA 793057447K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LANACHRYS 2B PF (PRESERVATIVE- (BHN BAKU KOSMETIK), COA 793057447K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN TM (BHN BAKU KOSMETIK), COA 828017668K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"NEUTRAZEN TM (BHN BAKU KOSMETIK), COA 828017668K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) COA 1805516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTENSO TM (BHN BAKU KOSMETIK) COA 1805516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785018040L\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785018040L\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN TM (BHN BAKU KOSMETIK), COA 828017668K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"NEUTRAZEN TM (BHN BAKU KOSMETIK), COA 828017668K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830017322K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL TM (BHN BAKU KOSMETIK) COA 830017322K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANACHRYS 2B PF (PRESERVATIVE- BHN BAKU KOSMETIK) COA 793057447K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LANACHRYS 2B PF (PRESERVATIVE- BHN BAKU KOSMETIK) COA 793057447K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN TM (BHN BAKU KOSMETIK) COA 828017309K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"NEUTRAZEN TM (BHN BAKU KOSMETIK) COA 828017309K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EMULMETIK TM 100 (BHN BAKU KOSMETIK) COA 1830418\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EMULMETIK TM 100 (BHN BAKU KOSMETIK) COA 1830418\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CIPROFLOXACIN LACTATE INJECTABLE GRADE (BHN BAKU OBAT) COA TURTLE/CL/200201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"CIPROFLOXACIN LACTATE INJECTABLE GRADE (BHN BAKU OBAT) COA TURTLE/CL/200201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 1908045293\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29322090\", \"uraian\": \"SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 1908045293\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PACLITAXEL SEMISYNTHETIC (USP,TEST-2) (BHN BAKU OBAT) COA 899NSH003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"PACLITAXEL SEMISYNTHETIC (USP,TEST-2) (BHN BAKU OBAT) COA 899NSH003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC1920T\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101990\", \"uraian\": \"SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC1920T\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE 11T (BHN BAKU KOSMETIK) COA S38/20\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE 11T (BHN BAKU KOSMETIK) COA S38/20\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 073119/006130\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 073119/006130\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM CARBONATE DC TYPE CS90 PHARMA (BHN BAKU OBAT) COA 202000031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28365010\", \"uraian\": \"CALCIUM CARBONATE DC TYPE CS90 PHARMA (BHN BAKU OBAT) COA 202000031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P9R08QA000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL TX (BHN BAKU KOSMETIK) COA P9R08QA000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0419060155\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HMS, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0419060155\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS, 25KG PC (BHN BAKU KOSMETIK) COA 0418110248\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HMS, 25KG PC (BHN BAKU KOSMETIK) COA 0418110248\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL ZX ,20KG DRUM (BHN BAKU KOSMETIK) COA 190510012, 190511012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL ZX ,20KG DRUM (BHN BAKU KOSMETIK) COA 190510012, 190511012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT19090183\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT19090183\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P9Q20QA000,P9R03QA000,P9R08QA000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL TX (BHN BAKU KOSMETIK) COA P9Q20QA000,P9R03QA000,P9R08QA000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0719090220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHS, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0719090220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0719080180\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0719080180\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0719090220,231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHS ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0719090220,231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0819120285\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0819120285\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MINERAL PREMIX HBS08022019 (BHN BAKU MAKANAN) COA XW92002109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"MINERAL PREMIX HBS08022019 (BHN BAKU MAKANAN) COA XW92002109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PERTANI FK PREMIX 1.0 (BHN BAKU MAKANAN) COA XW92002110\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PERTANI FK PREMIX 1.0 (BHN BAKU MAKANAN) COA XW92002110\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 204005 (BHN BAKU MAKANAN) COA XW92002074\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 204005 (BHN BAKU MAKANAN) COA XW92002074\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 103047-D (BHN BAKU MAKANAN) COA XW92001302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 103047-D (BHN BAKU MAKANAN) COA XW92001302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200207\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200207\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTABIO ARV-S (BHN BAKU OBAT) COA.1903231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"ASTABIO ARV-S (BHN BAKU OBAT) COA.1903231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM (BHN BAKU OBAT) COA 2002273,2276,2279,2285\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331900\", \"uraian\": \"METAMIZOLE SODIUM (BHN BAKU OBAT) COA 2002273,2276,2279,2285\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIFE'S DHA (TM) S35-O300, 5KG ALUF (B.BAKU SUPLEMEN) COA VY00348008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"LIFE'S DHA (TM) S35-O300, 5KG ALUF (B.BAKU SUPLEMEN) COA VY00348008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA FAJ\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) COA FAJ\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS SILK-1000 (BHN BAKU KOSMETIK) COA FBK\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS SILK-1000 (BHN BAKU KOSMETIK) COA FBK\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILASOMA MFA(S) (BHN BAKU KOSMETIK) COA WJJ\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILASOMA MFA(S) (BHN BAKU KOSMETIK) COA WJJ\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS KR-30 (BHN BAKU KOSMETIK) COA FAG\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS KR-30 (BHN BAKU KOSMETIK) COA FAG\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMITOSE HGA (BHN BAKU KOSMETIK) COA WLM\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AMITOSE HGA (BHN BAKU KOSMETIK) COA WLM\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-96A-6CS (16KG) BHN BAKU KOSMETIK, COA 910075\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-96A-6CS (16KG) BHN BAKU KOSMETIK, COA 910075\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-210 (16KG) BHN BAKU KOSMETIK, COA 002349\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSG-210 (16KG) BHN BAKU KOSMETIK, COA 002349\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP-100 (10KG) BHN BAKU KOSMETIK , COA 001768\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSP-100 (10KG) BHN BAKU KOSMETIK , COA 001768\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KP-56A (18KG) BHN BAKU KOSMETIK , COA 001805, 001808\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KP-56A (18KG) BHN BAKU KOSMETIK , COA 001805, 001808\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP-101 (15KG) BHN BAKU KOSMETIK, COA 912338\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSP-101 (15KG) BHN BAKU KOSMETIK, COA 912338\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED(BHN BAKU UTK PAKAN TERNAK ) COA MTP00720\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED(BHN BAKU UTK PAKAN TERNAK ) COA MTP00720\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JAGUAR HP 105, 25KG CARDBOARD CARTON (BHN BAKU KOSMETIK) COA H1909148C\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"JAGUAR HP 105, 25KG CARDBOARD CARTON (BHN BAKU KOSMETIK) COA H1909148C\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0007261\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0007261\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 500/600 SUGLETS 500/600 (30/35 MESH)(BHN BAKU PEWARNA TABLET), COA ST513020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"500/600 SUGLETS 500/600 (30/35 MESH)(BHN BAKU PEWARNA TABLET), COA ST513020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SIMVASTATIN (BAHAN BAKU KOSMETIK) COA DK40-1910182, DK40-1912072, DK40-1912091\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29322090\", \"uraian\": \"SIMVASTATIN (BAHAN BAKU KOSMETIK) COA DK40-1910182, DK40-1912072, DK40-1912091\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-MENTHOL CRYSTALS INDIAN NATURAL (BHN BAKU KOSMETIK) COA NFPL/MEN/271\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"L-MENTHOL CRYSTALS INDIAN NATURAL (BHN BAKU KOSMETIK) COA NFPL/MEN/271\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01909052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01909052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92002154\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92002154\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNE BUSTERS (BHN BAKU KOSMETIK) COA 192406\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNE BUSTERS (BHN BAKU KOSMETIK) COA 192406\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 192773\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 192773\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 192920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 192920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA192253\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ABSORAGE (BHN BAKU KOSMETIK) COA192253\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANDARIN CLEAR (BHN BAKU KOSMETIK), COA 192120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"MANDARIN CLEAR (BHN BAKU KOSMETIK), COA 192120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 192085\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 192085\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA200202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA200202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA200101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA200101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED(BHN BAKU UTK PAKAN TERNAK ) COA MTP00720\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED(BHN BAKU UTK PAKAN TERNAK ) COA MTP00720\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE BP (BHN BAKU OBAT), COA ASGP/01/250120, ASGP/02/030220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE BP (BHN BAKU OBAT), COA ASGP/01/250120, ASGP/02/030220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/01/090120,090120-1,060220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/01/090120,090120-1,060220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/11/170120, 190120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123100\", \"uraian\": \"CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/11/170120, 190120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ONDANSETRON HCL USP (BHN BAKU OBAT) COA 19OS001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"ONDANSETRON HCL USP (BHN BAKU OBAT) COA 19OS001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GUAIFENESIN USP (BHN BAKU OBAT) COA GGE-2002016 S/D GGE-2002023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29094900\", \"uraian\": \"GUAIFENESIN USP (BHN BAKU OBAT) COA GGE-2002016 S/D GGE-2002023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GUAIFENESIN USP 41 (B. BAKU OBAT) COA GGE-2002011,GGE-2002024, NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29094900\", \"uraian\": \"GUAIFENESIN USP 41 (B. BAKU OBAT) COA GGE-2002011,GGE-2002024, NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EMPTY FIBER DRUM , NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"48192000\", \"uraian\": \"EMPTY FIBER DRUM , NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0010404\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0010404\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9357546\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9357546\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH 9357546\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH 9357546\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0021915\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0021915\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GRAM IODINE STANILIZED 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9353718\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GRAM IODINE STANILIZED 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9353718\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0013917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0013917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9337386\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9337386\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 191444701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 191444701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8018298M, 8038249M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8018298M, 8038249M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NITRATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9148558\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NITRATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9148558\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 5 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9280556\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 5 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9280556\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9324094\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9324094\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9219600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9219600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9025631\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9025631\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BORDET GENGOU AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9004960\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BORDET GENGOU AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9004960\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE PHOSPHATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9364944\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTOSE PHOSPHATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9364944\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B018350M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B018350M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE APT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8134772\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE APT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8134772\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9324170\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9324170\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9156832\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9156832\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9189647\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9189647\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GASPAK EZ LARGE INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7326630010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"GASPAK EZ LARGE INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7326630010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHENYLALANINE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9189619\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PHENYLALANINE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9189619\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0028518\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE STERILE RODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0028518\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0028518\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0028518\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0028518\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE STERILE RODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0028518\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0028518\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0028518\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0028518\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0028518\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161934\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161934\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD ACCURI C6 PLUS SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0008882,0008883\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BD ACCURI C6 PLUS SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0008882,0008883\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEL OPTIPLEX WORKSTATION BUNDLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8137704\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DEL OPTIPLEX WORKSTATION BUNDLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8137704\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9219559\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9219559\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273651\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273651\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9353100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9353100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0002860\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0002860\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9273340\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9273340\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206968\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206968\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL SULFATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9141969\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LAURYL SULFATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9141969\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9028828\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9028828\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR NOBLE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9197730\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR NOBLE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9197730\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PEPSIN 1 TO 10000 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9347113\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PEPSIN 1 TO 10000 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9347113\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE REINFORCED CLOSTRIDIAL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9352656\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE REINFORCED CLOSTRIDIAL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9352656\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161593\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161593\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 4 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8297988\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 4 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8297988\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 9303735\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 9303735\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GRAM CRYSTAL VIOLET 250G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9352484\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GRAM CRYSTAL VIOLET 250G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9352484\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9303770\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9303770\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT UNIVERSAL VIRAL TRANSPORT STD SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 192230800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT UNIVERSAL VIRAL TRANSPORT STD SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 192230800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9219559\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9219559\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161608\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161608\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9315468\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9315468\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9241879\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9241879\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273839\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273839\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9353100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9353100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0013917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0013917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239282\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239282\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 9218538\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 9218538\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9291612\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9291612\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161680\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161680\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0009096\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0009096\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218804\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218804\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9211435\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9211435\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9021613\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9021613\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9148762\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9148762\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9255013, 9295511\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9255013, 9295511\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161934\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161934\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9315219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9315219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9241879\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9241879\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9295571\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9295571\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9211365\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9211365\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9206092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9206092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9353100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9353100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9084661\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9084661\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9310358\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9310358\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9050790,9205168\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9050790,9205168\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9295560\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9295560\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FEED GRADE DICALCIUM PHOSPHATE POWDER (BHN BAKU UNTUK PAKAN TERNAK) COA TB2001002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28352510\", \"uraian\": \"FEED GRADE DICALCIUM PHOSPHATE POWDER (BHN BAKU UNTUK PAKAN TERNAK) COA TB2001002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE A PELLETS (BHN BAKU OBAT) COA 18E2201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE A PELLETS (BHN BAKU OBAT) COA 18E2201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CETYL PALMITATE PELLETS CAR (BHN BAKU OBAT) COA 178899\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"CETYL PALMITATE PELLETS CAR (BHN BAKU OBAT) COA 178899\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRANSCUTOL P (BAHAN BAKU OBAT) COA 177111\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TRANSCUTOL P (BAHAN BAKU OBAT) COA 177111\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE A PELLETS (BAHAN BAKU OBAT) COA 18E2201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE A PELLETS (BAHAN BAKU OBAT) COA 18E2201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE BM PELLETS (BHN BAKU OBAT) COA 19E2001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE BM PELLETS (BHN BAKU OBAT) COA 19E2001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRANSCUTOL P (BAHAN BAKU OBAT) COA 177111\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TRANSCUTOL P (BAHAN BAKU OBAT) COA 177111\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPRITOL 888 ATO (BHN BAKU OBAT) COA 178565\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"COMPRITOL 888 ATO (BHN BAKU OBAT) COA 178565\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRANSCUTOL P (BHN BAKU OBAT) COA 177111\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TRANSCUTOL P (BHN BAKU OBAT) COA 177111\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH626176\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH626176\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH626275\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH626275\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH626180\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH626180\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH627177\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH627177\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH625826\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH625826\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH625826\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH625826\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH626175\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH626175\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH626197\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH626197\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH626193\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH626193\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BLUE (BHN BAKU PEWARNA TABLET) COA SH626206\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BLUE (BHN BAKU PEWARNA TABLET) COA SH626206\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH626177\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH626177\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH626204\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH626204\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH626178\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH626178\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH625842\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH625842\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH626163\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH626163\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH626161\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH626161\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH626165\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH626165\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND BROWN (BHN BAKU PEWARNA TABLET) COA SH627034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND BROWN (BHN BAKU PEWARNA TABLET) COA SH627034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH626179\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH626179\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH626283\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH626283\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH626199\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH626199\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH626164\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH626164\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH626162\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH626162\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453521544,4453582992\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453521544,4453582992\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EPERISONE HYDROCHLORIDE SYN-TECH (BHN BAKU OBAT) COA.E10-19066\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"EPERISONE HYDROCHLORIDE SYN-TECH (BHN BAKU OBAT) COA.E10-19066\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-0090120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334910\", \"uraian\": \"DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-0090120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB19110253\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB19110253\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 03750220,03870220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 03750220,03870220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 03700220, 03710220,03720220...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 03700220, 03710220,03720220...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OXALIPLATIN (BAHAN BAKU OBAT) COA L20200114\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28439000\", \"uraian\": \"OXALIPLATIN (BAHAN BAKU OBAT) COA L20200114\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC 031-19-801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 200 (BHN BAKU OBAT) COA. LC 031-19-801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC 031-19-801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 200 (BHN BAKU OBAT) COA. LC 031-19-801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE 99PCT TG (BHN BAKU SUPLEMEN) COA WB19120517\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE 99PCT TG (BHN BAKU SUPLEMEN) COA WB19120517\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT20010007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT20010007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK)COA GSC-K-010210\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK)COA GSC-K-010210\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK)COA SFP-N-011720\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK)COA SFP-N-011720\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-011720\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-011720\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) COA MSEEC-022219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) COA MSEEC-022219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK)COA CPG-391069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK)COA CPG-391069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-011720\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-011720\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLEANBIO TM-ZINC (PROTECT) CL0024-K18 (BHN BAKU KOSMETIK) COA 20ZDP\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLEANBIO TM-ZINC (PROTECT) CL0024-K18 (BHN BAKU KOSMETIK) COA 20ZDP\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA MCP-N-060929\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA MCP-N-060929\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-053009,GTB-010610\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-053009,GTB-010610\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) COA MSEEC-022219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) COA MSEEC-022219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-040479\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-040479\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SERICIN 4.5CL (BHN BAKU KOSMETIK) COA SCPKJB0701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SERICIN 4.5CL (BHN BAKU KOSMETIK) COA SCPKJB0701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK)COA SAFW-010720\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK)COA SAFW-010720\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-043029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-043029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-022019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-022019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-971729\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-971729\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MC-GLUCAN (BHN BAKU KOSMETIK) COA MCGL200121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"MC-GLUCAN (BHN BAKU KOSMETIK) COA MCGL200121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP821764\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP821764\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW... (BHN BAKU PEWARNA TABLET) COA WP818968\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #6/SUNSET YELLOW... (BHN BAKU PEWARNA TABLET) COA WP818968\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU PEWARNA TABLET) COA WP822860\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU PEWARNA TABLET) COA WP822860\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU PEWARNA TABLET) COA WP822178\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"ERYTHROSINE AL 38PCT-42PCT (BHN BAKU PEWARNA TABLET) COA WP822178\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP815363\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP815363\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C BLUE #1/BRILLIANT BLUE (BHN BAKU PEWARNA TABLET) COA WP816335\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C BLUE #1/BRILLIANT BLUE (BHN BAKU PEWARNA TABLET) COA WP816335\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ00217001, 7002, 7012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ00217001, 7002, 7012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 1AX2001022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 1AX2001022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1903044380\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1903044380\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE AM PELLETS (BAHAN BAKU OBAT) COA 20E0501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE AM PELLETS (BAHAN BAKU OBAT) COA 20E0501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANSOPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA LP0220C009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"LANSOPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA LP0220C009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM (BHN BAKU OBAT) COA 2002272,2285,2286,2289,2165\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331900\", \"uraian\": \"METAMIZOLE SODIUM (BHN BAKU OBAT) COA 2002272,2285,2286,2289,2165\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN), BATCH UE01911058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN), BATCH UE01911058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113351\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113351\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113378\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113378\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SURCRALOSE (BHN BAKU OBAT) COA 20022701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29321400\", \"uraian\": \"SURCRALOSE (BHN BAKU OBAT) COA 20022701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRAZINAMIDE EP/USP (BHN BAKU OBAT) COA WHOPZ 237 B 20 S/D WHOPZ 247 B 20\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"PYRAZINAMIDE EP/USP (BHN BAKU OBAT) COA WHOPZ 237 B 20 S/D WHOPZ 247 B 20\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHONDROITIN SULPHATE SODIUM (BHN BAKU OBAT) COA HS2002064\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"CHONDROITIN SULPHATE SODIUM (BHN BAKU OBAT) COA HS2002064\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WILDLIME HARVEST TM AF (BHN BAKU KOSMETIK) COA 80901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"WILDLIME HARVEST TM AF (BHN BAKU KOSMETIK) COA 80901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 91019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 91019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CARBOXYMETHYLCELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/02/260220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123100\", \"uraian\": \"CARBOXYMETHYLCELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/02/260220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MICONAZOLE NITRATE (BAHAN BAKU OBAT) COA H20191201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"MICONAZOLE NITRATE (BAHAN BAKU OBAT) COA H20191201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 261119\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25070000\", \"uraian\": \"KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 261119\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 3020 EE P OIL ,190KG MEF (BHN BAKU SUPLEMEN) COA TS00014000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 3020 EE P OIL ,190KG MEF (BHN BAKU SUPLEMEN) COA TS00014000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 2AX2001028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 2AX2001028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM CARBONATE ,HEAVY (BHN BAKU OBAT) COA 1104545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332100\", \"uraian\": \"MAGNESIUM CARBONATE ,HEAVY (BHN BAKU OBAT) COA 1104545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINC SULFATE 1-HYDRATE, POWDER ,USP42 (BHN BAKU OBAT) COA 3080016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"ZINC SULFATE 1-HYDRATE, POWDER ,USP42 (BHN BAKU OBAT) COA 3080016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ACETATE ANHYDROUS (BHN BAKU MAKANAN) COA 3079845\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29152910\", \"uraian\": \"SODIUM ACETATE ANHYDROUS (BHN BAKU MAKANAN) COA 3079845\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM SELENITE MAX 0,99PCT IN CALCIUM CARBONATE (BHN BAKU OBAT) COA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28429010\", \"uraian\": \"SODIUM SELENITE MAX 0,99PCT IN CALCIUM CARBONATE (BHN BAKU OBAT) COA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM OXIDE, LIGHT, POWDER, BP 2020 (BHN BAKU OBAT) COA 1104435\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28273100\", \"uraian\": \"MAGNESIUM OXIDE, LIGHT, POWDER, BP 2020 (BHN BAKU OBAT) COA 1104435\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS(BHN BAKU MAKANAN) COA UE02001021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS(BHN BAKU MAKANAN) COA UE02001021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN), COA TL02002870, 2878, 2886, 2898\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN), COA TL02002870, 2878, 2886, 2898\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA. 8MT200146\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30032000\", \"uraian\": \"STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA. 8MT200146\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NOSCAPINE BASE BP (BHN BAKU OBAT) COA P0200120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29391900\", \"uraian\": \"NOSCAPINE BASE BP (BHN BAKU OBAT) COA P0200120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EDIBLE BOVINE GELATINE 140/20 HAL(BAHAN BAKU OBAT ), COA 5002003034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35030049\", \"uraian\": \"EDIBLE BOVINE GELATINE 140/20 HAL(BAHAN BAKU OBAT ), COA 5002003034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHARMACEUTICAL BOVINE GELATINE 200/18 (BHN BAKU OBAT) COA 5002003033\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35030049\", \"uraian\": \"PHARMACEUTICAL BOVINE GELATINE 200/18 (BHN BAKU OBAT) COA 5002003033\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT20010015, UT20020016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT20010015, UT20020016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT19050001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT19050001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19100047\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19100047\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02001010, 11\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02001010, 11\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02001011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02001011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE,25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ91106250\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE,25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ91106250\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID ,25KG BOX ALU (BHN BAKU MAKANAN) COA TL01909626\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID ,25KG BOX ALU (BHN BAKU MAKANAN) COA TL01909626\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT20010015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT20010015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT20010921,922\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT20010921,922\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02001011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02001011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01909626\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01909626\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02001010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02001010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COATED ASCORBIC ACID TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01912444\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"COATED ASCORBIC ACID TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01912444\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19120057\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19120057\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL ,1000KG IBC (BHN BAKU KOSMETIK) COA TL01911814\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL ,1000KG IBC (BHN BAKU KOSMETIK) COA TL01911814\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT20010012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT20010012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE USP (BHN BAKU KOSMETIK) COA 19-20/NMD(P)/U/167 S/D 171\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE USP (BHN BAKU KOSMETIK) COA 19-20/NMD(P)/U/167 S/D 171\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMISOL TM 4135 - 25KG (BHN BAKU KOSMETIK) COA 1934001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AMISOL TM 4135 - 25KG (BHN BAKU KOSMETIK) COA 1934001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM - 5KG (BHN BAKU KOSMETIK) COA 2003305\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM - 5KG (BHN BAKU KOSMETIK) COA 2003305\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SWT-7 TM H - 5KG (BHN BAKU KOSMETIK) COA 2000203\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SWT-7 TM H - 5KG (BHN BAKU KOSMETIK) COA 2000203\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SB VITAL LIDOCAINE IML ,COA 17315-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE SB VITAL LIDOCAINE IML ,COA 17315-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML , COA 17511-1, 17555-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE LYFT LIDOCAINE 1ML , COA 17511-1, 17555-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE VOLYME 1 ML ,COA 17735-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE VOLYME 1 ML ,COA 17735-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE REFYNE 1ML , COA 17757-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE REFYNE 1ML , COA 17757-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE DEFYNE 1ML , COA 17818-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE DEFYNE 1ML , COA 17818-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE KYSSE 1 ML, COA 17615-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE KYSSE 1 ML, COA 17615-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SB VITAL LIGHT LIDOCAINE 1ML , COA 17634-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE SB VITAL LIGHT LIDOCAINE 1ML , COA 17634-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SB VITAL LIDOCAINE IML ,COA 17315-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE SB VITAL LIDOCAINE IML ,COA 17315-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML, COA 17555-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE LYFT LIDOCAINE 1ML, COA 17555-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE VOLYME 1ML ,COA 17735-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE VOLYME 1ML ,COA 17735-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE REFYNE 1ML , COA 17757-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE REFYNE 1ML , COA 17757-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE DEFYNE 1ML , COA 17818-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE DEFYNE 1ML , COA 17818-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE KYSSE 1 ML, COA 17615-1, 17643-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE KYSSE 1 ML, COA 17615-1, 17643-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SB VITAL LIGHT LIDOCAINE 1ML , COA 17634-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE SB VITAL LIGHT LIDOCAINE 1ML , COA 17634-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERRIC PYROPHOSPHATE (BHN BAKU MAKANAN) COA 3067278\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28353990\", \"uraian\": \"FERRIC PYROPHOSPHATE (BHN BAKU MAKANAN) COA 3067278\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA P-64\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA P-64\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA P-64\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA P-64\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ADSORB AFLA (BHN BAKU UNTUK PAKAN TERNAK) COA 133\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25081000\", \"uraian\": \"ADSORB AFLA (BHN BAKU UNTUK PAKAN TERNAK) COA 133\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-210 (16KG) BHN BAKU KOSMETIK, COA 002364\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSG-210 (16KG) BHN BAKU KOSMETIK, COA 002364\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 192773\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 192773\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 192920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 192920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANDARIN CLEAR (BHN BAKU KOSMETIK) COA 192120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"MANDARIN CLEAR (BHN BAKU KOSMETIK) COA 192120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121910284,285\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121910284,285\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 121910285,122000007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 121910285,122000007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 90724,90821,90713,90716\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 90724,90821,90713,90716\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH626787\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH626787\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH627682\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH627682\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH626280\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH626280\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH626762\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH626762\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB RED (BHN BAKU PEWARNA TABLET) COA SH626763\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB RED (BHN BAKU PEWARNA TABLET) COA SH626763\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH626195\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH626195\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH626760\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH626760\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH626757\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH626757\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH626792\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH626792\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH627682\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH627682\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB MAROON (BHN BAKU PEWARNA TABLET) COA SH626761\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB MAROON (BHN BAKU PEWARNA TABLET) COA SH626761\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH626758\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH626758\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH627038\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH627038\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH627038\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH627038\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH626788\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH626788\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II ORANGE (BHN BAKU PEWARNA TABLET) COA SH626451\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II ORANGE (BHN BAKU PEWARNA TABLET) COA SH626451\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH626997\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH626997\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH626415\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH626415\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH626437\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH626437\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH626417\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH626417\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH626421\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH626421\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA SH626416\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA SH626416\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH626422\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH626422\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH627037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH627037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH627038\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH627038\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH626425\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH626425\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND YELLOW (BHN BAKU UTK PEWARNA TABLET) COA SH627356\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND YELLOW (BHN BAKU UTK PEWARNA TABLET) COA SH627356\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01912350\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01912350\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT19050001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT19050001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19120057\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19120057\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT19100026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT19100026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT19100026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT19100026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)(BHN BAKU MAKANAN) COA UT20010191\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO)(BHN BAKU MAKANAN) COA UT20010191\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ91007012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ91007012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-PANTHENOL 50 L,1000KG IBC (BHN BAKU KOSMETIK) COA TL02001601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL-PANTHENOL 50 L,1000KG IBC (BHN BAKU KOSMETIK) COA TL02001601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL ,1000KG IBC (BHN BAKU KOSMETIK) COA TL01911814\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL ,1000KG IBC (BHN BAKU KOSMETIK) COA TL01911814\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN)COA TL01910914,12571,12595,2002866,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN)COA TL01910914,12571,12595,2002866,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN), COA UE02001011,1020,1021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN), COA UE02001011,1020,1021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00918690\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00918690\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BILBERRY (VACCINIUM MYRTILLUS) ETHANOLIC EXTRACT 36PCT (BHN BAKU SUPLEMEN) COA 20S0006803\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BILBERRY (VACCINIUM MYRTILLUS) ETHANOLIC EXTRACT 36PCT (BHN BAKU SUPLEMEN) COA 20S0006803\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01906195\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01906195\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ91002486\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ91002486\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE,25KG BOX (BHN BAKU MAKANAN) COA TL01912852\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE,25KG BOX (BHN BAKU MAKANAN) COA TL01912852\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92002154\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92002154\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19100100,101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19100100,101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT19100257\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT19100257\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19100101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19100101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01905018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU MAKANAN) COA UE01905018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT19100219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT19100219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIAINAMIDE (BHN BAKU MAKANAN) COA OP11910006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIAINAMIDE (BHN BAKU MAKANAN) COA OP11910006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT19120040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT19120040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE ,20KG BOX (BHN BAKU MAKANAN) COA QZ11190520\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE ,20KG BOX (BHN BAKU MAKANAN) COA QZ11190520\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX HBS151118 (BHN BAKU MAKANAN) COA XW92002265\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX HBS151118 (BHN BAKU MAKANAN) COA XW92002265\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT19090231,UT19100257\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT19090231,UT19100257\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19100101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19100101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01906195\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01906195\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT GRANULATION ,25KG BOX (BHN BAKU SUPLEMEN) COA WB19109001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT GRANULATION ,25KG BOX (BHN BAKU SUPLEMEN) COA WB19109001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1903039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1903039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB19109001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB19109001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT19090231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT19090231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01908117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01908117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11910006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11910006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19060079\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19060079\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT GRANULATION ,25KG BOX (BHN BAKU SUPLEMEN) COA WB1910900126\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT GRANULATION ,25KG BOX (BHN BAKU SUPLEMEN) COA WB1910900126\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91013173\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91013173\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91002486\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91002486\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91002486\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91002486\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11910006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11910006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91002486\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91002486\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91102534\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91102534\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01905018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE01905018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 500/600 SUGLETS 500/600 (30/35 MESH)(BHN BAKU PEWARNA TABLET), COA ST513514\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"500/600 SUGLETS 500/600 (30/35 MESH)(BHN BAKU PEWARNA TABLET), COA ST513514\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA. 20200223\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17023010\", \"uraian\": \"DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA. 20200223\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA EXTRACT 95PCT ( BHN BAKU KOSMETIK), COA GKP 19091 EOU\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA EXTRACT 95PCT ( BHN BAKU KOSMETIK), COA GKP 19091 EOU\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA C002-YB2003317\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA C002-YB2003317\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED) BHN BAKU OBAT, COA M532100,2135,2137,2138,2129,2139\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED) BHN BAKU OBAT, COA M532100,2135,2137,2138,2129,2139\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV...(BHN BAKU PEWARNA TABLET)COA D011J7KL02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV...(BHN BAKU PEWARNA TABLET)COA D011J7KL02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100 PREMIUM LV... (BHN BAKU PEWARNA TABLET) COA D180I97021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100 PREMIUM LV... (BHN BAKU PEWARNA TABLET) COA D180I97021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0036760\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0036760\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9288618\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9288618\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9339275\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9339275\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2189343\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2189343\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8338681\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8338681\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9122883\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9122883\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0007337\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0007337\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0007337\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0007337\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9339275\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9339275\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2189343\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2189343\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9294107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9294107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9121860\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9121860\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 121910045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 121910045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SORBITOL SOLUTION 70PCT CRYSTALLINE (BHN BAKU OBAT) COA 1920P617\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054400\", \"uraian\": \"SORBITOL SOLUTION 70PCT CRYSTALLINE (BHN BAKU OBAT) COA 1920P617\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219040084\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219040084\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000187266, 187433\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000187266, 187433\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00607669, 7670\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"AMPHISOL K (BHN BAKU KOSMETIK) COA VE00607669, 7670\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VTP # MS012 (BHN BAKU MAKANAN) COA XW92002299\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VTP # MS012 (BHN BAKU MAKANAN) COA XW92002299\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12001019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12001019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12001019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12001019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT19040012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT19040012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19090007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19090007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19090018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19090018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00619040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00619040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01908270\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01908270\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12001019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12001019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01902012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01902012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92001275\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"V003400 (BHN BAKU MAKANAN) COA XW92001275\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UE01906195\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UE01906195\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92001274\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"V003400 (BHN BAKU MAKANAN) COA XW92001274\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19100101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19100101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19100101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19100101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT19100220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT19100220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ90903221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ90903221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT19120095,96\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT19120095,96\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12001019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12001019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT19050033\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT19050033\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE,5KG PE PAIL (BHN BAKU MAKANAN) COA UT19100257\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE,5KG PE PAIL (BHN BAKU MAKANAN) COA UT19100257\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROL 95 (BHN BAKU MAKANAN) COA XH20191001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROL 95 (BHN BAKU MAKANAN) COA XH20191001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROL 95 (BHN BAKU MAKANAN) COA XH20191001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROL 95 (BHN BAKU MAKANAN) COA XH20191001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A 20KG (BHN BAKU MAKANAN), COA WB19110473, S/D 475\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A 20KG (BHN BAKU MAKANAN), COA WB19110473, S/D 475\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SOYA LECITHIN (BHN BAKU MAKANAN) COA 2191117-15\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232010\", \"uraian\": \"SOYA LECITHIN (BHN BAKU MAKANAN) COA 2191117-15\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH626164\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH626164\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH627038\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH627038\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH626997\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH626997\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH626996\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH626996\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH627432\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH627432\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM (BHN BAKU PEWARNA TABLET)COA D180K13001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM (BHN BAKU PEWARNA TABLET)COA D180K13001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU SUPLEMEN), COA UJ010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU SUPLEMEN), COA UJ010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BUDESONIDE MICRONIZED (BHN BAKU OBAT) COA NA0157M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"BUDESONIDE MICRONIZED (BHN BAKU OBAT) COA NA0157M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RUGENER DREIKRONEN HEILKREIDE 25K (BHN BAKU KOSMETIK) COA 81690551\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25090000\", \"uraian\": \"RUGENER DREIKRONEN HEILKREIDE 25K (BHN BAKU KOSMETIK) COA 81690551\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINKGO EXTRACT (BHN BAKU KOSMETIK) COA 81692248\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"GINKGO EXTRACT (BHN BAKU KOSMETIK) COA 81692248\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRISODIUMCITRATE DIHYDRATE FINE GRANULAR (BHN BAKU MAKANAN), COA UJ002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"TRISODIUMCITRATE DIHYDRATE FINE GRANULAR (BHN BAKU MAKANAN), COA UJ002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU MAKANAN) COA UJ006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU MAKANAN) COA UJ006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIFE'S DHA S35-O100, 5KG ALUF (B.BAKU SUPLEMEN) COA VY00339609\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"LIFE'S DHA S35-O100, 5KG ALUF (B.BAKU SUPLEMEN) COA VY00339609\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB111219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB111219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C BLUE #2/INDIGO CARMINE (BHN BAKU PEWARNA TABLET) COA WP815898\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C BLUE #2/INDIGO CARMINE (BHN BAKU PEWARNA TABLET) COA WP815898\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP821787\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP821787\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU PEWARNA TABLET) COA WP822178:1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"ERYTHROSINE AL 38PCT-42PCT (BHN BAKU PEWARNA TABLET) COA WP822178:1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD & C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP818970\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD & C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP818970\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP818231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP818231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT(BHN BAKU OBAT UTK PEWARNA TABLET) COA WP814313\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"D AND C YELLOW #10 AL 15PCT-20PCT(BHN BAKU OBAT UTK PEWARNA TABLET) COA WP814313\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP814838\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP814838\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C BLUE #2/INDIGO CARMINE AL (BHN BAKU PEWARNA TABLET) COA WP815897\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C BLUE #2/INDIGO CARMINE AL (BHN BAKU PEWARNA TABLET) COA WP815897\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 70 (BHN BAKU OBAT) COA L101845019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 70 (BHN BAKU OBAT) COA L101845019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 2AX2003283\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 2AX2003283\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0056915\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0056915\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 APC-H7 SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0027983\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD3 APC-H7 SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0027983\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD25 PE 2A3 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0010234\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD25 PE 2A3 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0010234\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD34 PE-CY7 8G12 Y7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9358599\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD34 PE-CY7 8G12 Y7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9358599\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD19-PE-CY7 SJ25C1 100 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0021024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD19-PE-CY7 SJ25C1 100 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0021024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD10 APC HI10A 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9269823\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD10 APC HI10A 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9269823\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD20 V500-C RUO (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9331815\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD20 V500-C RUO (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9331815\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD200 APC (MRC OX-104) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0052723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD200 APC (MRC OX-104) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0052723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD43 APC H7 (1G10) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0052753\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD43 APC H7 (1G10) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0052753\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD38 APC H7 (HB7) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0022307\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD38 APC H7 (HB7) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0022307\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI-KAPPA FITC/ ANTI LAMBDA PE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9329635\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"ANTI-KAPPA FITC/ ANTI LAMBDA PE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9329635\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD64 APC-H7 10.1 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9039654\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD64 APC-H7 10.1 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9039654\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD36 HORIZON V450 CB38 50TST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9136944\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD36 HORIZON V450 CB38 50TST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9136944\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD10 BV421 HI10A 100 TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9262144\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD10 BV421 HI10A 100 TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9262144\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD19 BV510 SJ25C1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9337378\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD19 BV510 SJ25C1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9337378\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD14 BV421 MPHIP9 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0010270\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD14 BV421 MPHIP9 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0010270\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD103 BV421 BER-ACT8 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9178814\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD103 BV421 BER-ACT8 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9178814\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD3 BV421 UCHT1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9113553\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD3 BV421 UCHT1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9113553\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 PERCP-CY5.5 2D1 50 TEST RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9274670\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD45 PERCP-CY5.5 2D1 50 TEST RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9274670\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI HLA DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0063454\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"ANTI HLA DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0063454\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0035573,9310704\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0035573,9310704\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD34 PE CY7 8G12 Y7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9358599\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD34 PE CY7 8G12 Y7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9358599\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD25 PE 2A3 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0010234\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD25 PE 2A3 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0010234\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU KOSMETIK) COA UT19100257\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU KOSMETIK) COA UT19100257\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC, 25KG BOX ( BHN BAKU KOSMETIK) COA 0000186799\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC, 25KG BOX ( BHN BAKU KOSMETIK) COA 0000186799\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0319111794,796\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0319111794,796\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0026660\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0026660\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT20010008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT20010008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES1901168\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"ALLANTOIN (BHN BAKU KOSMETIK) COA ES1901168\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01905018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE01905018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT19090183\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT19090183\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50,5KG BAG ALU (BHN BAKU KOSMETIK) COA CS18060033,34\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50,5KG BAG ALU (BHN BAKU KOSMETIK) COA CS18060033,34\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL ZX, 20KG FIBRE DRUM (BHN BAKU KOSMETIK) COA 190511012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL ZX, 20KG FIBRE DRUM (BHN BAKU KOSMETIK) COA 190511012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708200010,11,12\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708200010,11,12\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708200012,13\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708200012,13\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 07080200013,14,15\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 07080200013,14,15\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT19120040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT19120040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91102546\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91102546\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20190203\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20190203\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20191203\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20191203\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20190203\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20190203\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPLEMEN) COA XH20191203\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPLEMEN) COA XH20191203\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPLEMEN) COA XH20191203, XH20200101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPLEMEN) COA XH20191203, XH20200101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPLEMEN) COA XH20200101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPLEMEN) COA XH20200101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ91010258\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ91010258\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT19120252\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT19120252\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN), COA QZ11190521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN), COA QZ11190521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11190521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11190521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RONOXAN A (BHN BAKU MAKANAN), COA UE01909005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"RONOXAN A (BHN BAKU MAKANAN), COA UE01909005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT19120040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT19120040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM ASCORBATE ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB19100012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"CALCIUM ASCORBATE ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB19100012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA. 20200309\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17023010\", \"uraian\": \"DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA. 20200309\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200227\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17023010\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200227\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA 20200308\""}, {"role": "assistant", "content": "{\"hs_code\" : \"11081200\", \"uraian\": \"CORN STARCH (BHN BAKU MAKANAN) COA 20200308\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA MTP04920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA MTP04920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH627831\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH627831\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH627858\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH627858\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH628167\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH628167\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH626918\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH626918\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH626901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH626901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY YELLOW (BHN BAKU PEWARNA TABLET) COA SH626898\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY YELLOW (BHN BAKU PEWARNA TABLET) COA SH626898\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH626921\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH626921\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH626425\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH626425\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH627095\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH627095\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH626176\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH626176\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH626915\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH626915\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH626900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH626900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH626920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH626920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH627032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH627032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH626918\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH626918\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN541008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN541008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA 178703\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELUCIRE 44/14 (BHN BAKU OBAT) COA 178703\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 03/19GL4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 03/19GL4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 03/19GL4,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 03/19GL4,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BAHAN BAKU KOSMETIK) COA 178542\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"VEGETOL GRAPEFRUIT GR403 HYDRO (BAHAN BAKU KOSMETIK) COA 178542\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK)COA 192415\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SAKURA EXTRACT B (BHN BAKU KOSMETIK)COA 192415\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 220519,270819,280819,290819\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 220519,270819,280819,290819\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S823/19\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S823/19\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA 200317111\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA 200317111\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 100 -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1544896\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 100 -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1544896\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 900 -CO8- 10KG KA (BHN BAKU KOSMETIK) COA 1543631\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 900 -CO8- 10KG KA (BHN BAKU KOSMETIK) COA 1543631\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 -CN- 10KG KA (BHN BAKU KOSMETIK) COA 1543900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 -CN- 10KG KA (BHN BAKU KOSMETIK) COA 1543900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 -CN-10KG KA (BHN BAKU KOSMETIK) COA 1543900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 -CN-10KG KA (BHN BAKU KOSMETIK) COA 1543900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 720 -C08- 10 KG KA (BHN BAKU KOSMETIK) COA 1544763\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 720 -C08- 10 KG KA (BHN BAKU KOSMETIK) COA 1544763\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 -CN- 10KG KA (BHN BAKU KOSMETIK) COA 1544357\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 -CN- 10KG KA (BHN BAKU KOSMETIK) COA 1544357\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 -CN- 200 FA (BHN BAKU KOSMETIK) COA 1537186,1539504LUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 -CN- 200 FA (BHN BAKU KOSMETIK) COA 1537186,1539504LUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 712 -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1544167\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 712 -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1544167\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 940 10KG KA (BHN BAKU KOSMETIK) COA 1541745\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 940 10KG KA (BHN BAKU KOSMETIK) COA 1541745\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 -CN- 200KG FA (BHN BAKU KOSMETIK) COA 1539504\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 -CN- 200KG FA (BHN BAKU KOSMETIK) COA 1539504\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 -CN- 10KG KA (BHN BAKU KOSMETIK) COA 1544357\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 -CN- 10KG KA (BHN BAKU KOSMETIK) COA 1544357\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 120 100 ML FL (BHN BAKU KOSMETIK) COA 1532897 SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 120 100 ML FL (BHN BAKU KOSMETIK) COA 1532897 SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 712 (SAMPLE) 100 ML FL (BHN BAKU KOSMETIK) COA 1544057 SAMPLE COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 712 (SAMPLE) 100 ML FL (BHN BAKU KOSMETIK) COA 1544057 SAMPLE COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 903 (SAMPLE) 100 ML FL (BHN BAKU KOSMETIK) COA 1543252, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 903 (SAMPLE) 100 ML FL (BHN BAKU KOSMETIK) COA 1543252, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA PA 40 SAMPLE 100ML FL (BHN BAKU KOSMETIK) COA 1544977 SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA PA 40 SAMPLE 100ML FL (BHN BAKU KOSMETIK) COA 1544977 SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 SAMPLE(S) 100 ML FL (BHN BAKU KOSMETIK) COA 1542660,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 SAMPLE(S) 100 ML FL (BHN BAKU KOSMETIK) COA 1542660,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for S & M PHENOXYETHANOL RCH 25KG KA (BHN BAKU KOSMETIK) COA 1545104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"S & M PHENOXYETHANOL RCH 25KG KA (BHN BAKU KOSMETIK) COA 1545104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC 005-20-801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 200 (BHN BAKU OBAT) COA. LC 005-20-801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN541128\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN541128\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN541110\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN541110\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN541130\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN541130\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN541129\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN541129\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA T700500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA T700500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA S700500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA S700500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTIZOXIME SODIUM (BHN BAKU OBAT) COA S600400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTIZOXIME SODIUM (BHN BAKU OBAT) COA S600400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTIZOXIME SODIUM (BHN BAKU OBAT) COA T600400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTIZOXIME SODIUM (BHN BAKU OBAT) COA T600400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP2010/USP41 (BHN BAKU OBAT) COA.NED191210,NED200101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP2010/USP41 (BHN BAKU OBAT) COA.NED191210,NED200101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 06230320,06470320,06490320...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 06230320,06470320,06490320...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE BM PELLETS (BAHAN BAKU OBAT) COA 20E0904\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE BM PELLETS (BAHAN BAKU OBAT) COA 20E0904\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHARMABURST (R) 500 (BHN BAKU OBAT) COA 121910343\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069099\", \"uraian\": \"PHARMABURST (R) 500 (BHN BAKU OBAT) COA 121910343\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MILK TALCUM MOD1 FM2 (BHN BAKU KOSMETIK) COA 10300200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MILK TALCUM MOD1 FM2 (BHN BAKU KOSMETIK) COA 10300200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTISHINE WASH 1 FM2 (BHN BAKU KOSMETIK) COA 10300133\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ANTISHINE WASH 1 FM2 (BHN BAKU KOSMETIK) COA 10300133\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSUVASTATIN CALCIUM MICRONIZED (BHN BAKU OBAT) COA M325137\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"ROSUVASTATIN CALCIUM MICRONIZED (BHN BAKU OBAT) COA M325137\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NONIVAMIDE (SYNTHETIC CAPSAICIN)BHN BAKU KOSMETIK, COA.20200105\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29241990\", \"uraian\": \"NONIVAMIDE (SYNTHETIC CAPSAICIN)BHN BAKU KOSMETIK, COA.20200105\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU UNTUK PAKAN TERNAK) COA TB2002002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28352510\", \"uraian\": \"DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU UNTUK PAKAN TERNAK) COA TB2002002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MONENDOX 200 BMP (BHN BAKU UTK PAKAN TERNAK) COA 2002211\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"MONENDOX 200 BMP (BHN BAKU UTK PAKAN TERNAK) COA 2002211\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP20034380,34381\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP20034380,34381\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA C002-YB2003377\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA C002-YB2003377\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS GLUCONATE, POWDER, USP 42 (BHN BAKU OBAT) COA 3083209\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"FERROUS GLUCONATE, POWDER, USP 42 (BHN BAKU OBAT) COA 3083209\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINC SULFATE 1-HYDRATE, POWDER ,USP42 (BHN BAKU OBAT) COA 3080018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"ZINC SULFATE 1-HYDRATE, POWDER ,USP42 (BHN BAKU OBAT) COA 3080018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS SULFATE ,DRIED, POWDER, USP42 (BHN BAKU OBAT) COA 3081041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"FERROUS SULFATE ,DRIED, POWDER, USP42 (BHN BAKU OBAT) COA 3081041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM L-HYDROGENASPARTATE 2-HYDRATE (BHN BAKU OBAT) COA 1103273-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"MAGNESIUM L-HYDROGENASPARTATE 2-HYDRATE (BHN BAKU OBAT) COA 1103273-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for UNIMER U-151 (BHN BAKU KOSMETIK) COA VO00001407, VO00001974\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"UNIMER U-151 (BHN BAKU KOSMETIK) COA VO00001407, VO00001974\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE BP PELLETS (BHN BAKU OBAT) COA 19E2304\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE BP PELLETS (BHN BAKU OBAT) COA 19E2304\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 19E3002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 19E3002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 19E5107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 19E5107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE BM PELLETS (BHN BAKU OBAT) COA 19E1404\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE BM PELLETS (BHN BAKU OBAT) COA 19E1404\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200307\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200307\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFADROXIL MONOHYDRATE (PURIDROX COMPACTED) BHN BAKU OBAT, COA B340149,340151,340153\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFADROXIL MONOHYDRATE (PURIDROX COMPACTED) BHN BAKU OBAT, COA B340149,340151,340153\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID S 67 F (BHN BAKU OBAT) COA. 576200-2190033/001-006 (6)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232010\", \"uraian\": \"LIPOID S 67 F (BHN BAKU OBAT) COA. 576200-2190033/001-006 (6)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID PPL-600 (BHN BAKU OBAT) COA 577200-2190225/009-010 (2)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232010\", \"uraian\": \"LIPOID PPL-600 (BHN BAKU OBAT) COA 577200-2190225/009-010 (2)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID PPL-600 (BHN BAKU OBAT) COA. 577200-2190226/011-012 (2)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232010\", \"uraian\": \"LIPOID PPL-600 (BHN BAKU OBAT) COA. 577200-2190226/011-012 (2)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID S 67 F (BHN BAKU OBAT) COA. 576200-2190033/007-012 (6)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232010\", \"uraian\": \"LIPOID S 67 F (BHN BAKU OBAT) COA. 576200-2190033/007-012 (6)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NOREPINEPHRINE BITARTRATE ,BHN BAKU OBAT, COA 540104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29379010\", \"uraian\": \"NOREPINEPHRINE BITARTRATE ,BHN BAKU OBAT, COA 540104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA FBA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA FBA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS191102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS191102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LOTUS OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA NEN191105-H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LOTUS OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA NEN191105-H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO200101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO200101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO190102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO190102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-200101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-200101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-200101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-200101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 19B0112400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 19B0112400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 19B0163800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 19B0163800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPPLEMEN) COA 19B0163900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPPLEMEN) COA 19B0163900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPPLEMEN) COA 19B0164000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPPLEMEN) COA 19B0164000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0164100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0164100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BUTCHERBROOM DRY HYDR EX.9-11PCT (BHN BAKU SUPLEMEN) COA 19B0053800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BUTCHERBROOM DRY HYDR EX.9-11PCT (BHN BAKU SUPLEMEN) COA 19B0053800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VALERIAN D.H.E >0.8PCT VAL.AC (BHN BAKU SUPLEMEN) COA 19B0092800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VALERIAN D.H.E >0.8PCT VAL.AC (BHN BAKU SUPLEMEN) COA 19B0092800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN TM (BHN BAKU KOSMETIK) COA 828018191L\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"NEUTRAZEN TM (BHN BAKU KOSMETIK) COA 828018191L\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN TM (BHN BAKU KOSMETIK) COA 828017668K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"NEUTRAZEN TM (BHN BAKU KOSMETIK) COA 828017668K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELANOSTATINE TM 5BG (50PPM) (BHN BAKU KOSMETIK) COA 817048274L\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MELANOSTATINE TM 5BG (50PPM) (BHN BAKU KOSMETIK) COA 817048274L\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 702018037K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ABYSSINE 657 (BHN BAKU KOSMETIK) COA 702018037K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769017736K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769017736K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK), COA 785017958K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK), COA 785017958K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANACHRYS 2B PF (BHN BAKU KOSMETIK), COA 793057447K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LANACHRYS 2B PF (BHN BAKU KOSMETIK), COA 793057447K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MINIPORYL TM (BHN BAKU KOSMETIK), COA 832017667K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MINIPORYL TM (BHN BAKU KOSMETIK), COA 832017667K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN TM (BHN BAKU KOSMETIK), COA 828018191L\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"NEUTRAZEN TM (BHN BAKU KOSMETIK), COA 828018191L\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANABLUE TM PARABEN FREE (BHN BAKU KOSMETIK), COA 788027752K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LANABLUE TM PARABEN FREE (BHN BAKU KOSMETIK), COA 788027752K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 070120, 291219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25070000\", \"uraian\": \"KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 070120, 291219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-190405\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-190405\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHISOPRINOL (BHN BAKU OBAT) COA MTP0030136\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"METHISOPRINOL (BHN BAKU OBAT) COA MTP0030136\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 20100228, 20100234\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29395900\", \"uraian\": \"DIMENHYDRINATE (BHN BAKU OBAT) COA 20100228, 20100234\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 19480\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 19480\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 2010001900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 2010001900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200315\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200315\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR...(BHN BAKU PEWARNA TABLET)COA D180J9M003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR...(BHN BAKU PEWARNA TABLET)COA D180J9M003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLEANBIO TM-ZINC (PROTECT) (CL0024-K18) (BAHAN BAKU KOSMETIK) COA 20ZDP\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLEANBIO TM-ZINC (PROTECT) (CL0024-K18) (BAHAN BAKU KOSMETIK) COA 20ZDP\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM VALPROATE (BAHAN BAKU OBAT) COA.454191\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29159090\", \"uraian\": \"SODIUM VALPROATE (BAHAN BAKU OBAT) COA.454191\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIROXICAM (BHN BAKU OBAT) COA PRX2019017M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"PIROXICAM (BHN BAKU OBAT) COA PRX2019017M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 1908075969\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29322090\", \"uraian\": \"SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 1908075969\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL,10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0026660\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL,10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0026660\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0220020001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0220020001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0220020001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0220020001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPLEMEN) COA XH20200202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPLEMEN) COA XH20200202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT(BHN BAKU SUPLEMEN) COA WB00519139\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT(BHN BAKU SUPLEMEN) COA WB00519139\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519139\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519139\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00619040,19041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00619040,19041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN541002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN541002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH628040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH628040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH627591\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH627591\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH627585\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH627585\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH627588\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH627588\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH627590\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH627590\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH627584\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH627584\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW BROWN (BHN BAKU PEWARNA TABLET) COA SH627614\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW BROWN (BHN BAKU PEWARNA TABLET) COA SH627614\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH627586\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH627586\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH627594\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH627594\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH627404\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH627404\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH627688\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH627688\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH627611\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH627611\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH627274\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH627274\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH627615\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH627615\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE PURPLE (BHN BAKU PEWARNA TABLET) COA SH628511\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE PURPLE (BHN BAKU PEWARNA TABLET) COA SH628511\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE PURPLE (BHN BAKU PEWARNA TABLET) COA SH628510\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE PURPLE (BHN BAKU PEWARNA TABLET) COA SH628510\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE(BHN BAKU PEWARNA TABLET) COA SH628201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE(BHN BAKU PEWARNA TABLET) COA SH628201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH628200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH628200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH628209\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH628209\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH628208\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH628208\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH628661\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH628661\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II AMB RED (BHN BAKU PEWARNA TABLET) COA SH628660\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II AMB RED (BHN BAKU PEWARNA TABLET) COA SH628660\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYDROCHLOROQUINE SULFATE (BHN BAKU OBAT) COA 12-SQKB-200306\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334990\", \"uraian\": \"HYDROCHLOROQUINE SULFATE (BHN BAKU OBAT) COA 12-SQKB-200306\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-LYSINE HYDROCHLORIDE (FEED GRADE) 98.5PCT (BHN BAKU UTK PAKAN TERNAK )COA QDDX20-03-0140HJ-IB\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"L-LYSINE HYDROCHLORIDE (FEED GRADE) 98.5PCT (BHN BAKU UTK PAKAN TERNAK )COA QDDX20-03-0140HJ-IB\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH628031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH628031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH627813\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH627813\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH627814\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH627814\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH627831\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH627831\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH627859\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH627859\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY BROWN (BHN BAKU PEWARNA TABLET) COA SH627815\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY BROWN (BHN BAKU PEWARNA TABLET) COA SH627815\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH628016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH628016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH627812\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH627812\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH628041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH628041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH628015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH628015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH628014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH628014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH627879\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH627879\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH628017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH628017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH628013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH628013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX2004009, 4010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX2004009, 4010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-021920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-021920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 2019F1287\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 2019F1287\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-01043029,010430\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-01043029,010430\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND GLA-40 (BHN BAKU KOSMETIK) COA GLCP-020310\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND GLA-40 (BHN BAKU KOSMETIK) COA GLCP-020310\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-030529\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-030529\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK)COA AACN-011310\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK)COA AACN-011310\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CUCUMBER EXTRACT (BHN BAKU KOSMETIK) COA CUPD-012020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND CUCUMBER EXTRACT (BHN BAKU KOSMETIK) COA CUPD-012020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) COA MSEEC-022219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) COA MSEEC-022219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA 20200318\""}, {"role": "assistant", "content": "{\"hs_code\" : \"11081200\", \"uraian\": \"CORN STARCH (BHN BAKU MAKANAN) COA 20200318\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA083206, 204\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA083206, 204\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200323\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200323\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200311\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200311\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200317\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200317\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA 20200314\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17023010\", \"uraian\": \"DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA 20200314\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 27/50 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP07720\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 27/50 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP07720\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLOWLAC (R) 100H (BHN BAKU OBAT) COA. L105810250\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"FLOWLAC (R) 100H (BHN BAKU OBAT) COA. L105810250\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104310620\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104310620\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPSULAC (R) 60 (BHN BAKU OBAT) COA L100410520\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"CAPSULAC (R) 60 (BHN BAKU OBAT) COA L100410520\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103860220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103860220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CELLACTOSE (R) 80 (BHN BAKU OBAT) COA L100460120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"CELLACTOSE (R) 80 (BHN BAKU OBAT) COA L100460120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT FS, 5KG ALU (BHN BAKU SUPLEMEN) COA UE01907002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"REDIVIVO (R) (LYCOPENE) 10PCT FS, 5KG ALU (BHN BAKU SUPLEMEN) COA UE01907002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL02001606\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL02001606\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT EMULS (BHN BAKU SUPLEMEN) COA UE01910016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT EMULS (BHN BAKU SUPLEMEN) COA UE01910016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT EM YELLOW (BHN BAKU SUPLEMEN) COA UT20030001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT EM YELLOW (BHN BAKU SUPLEMEN) COA UT20030001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ000217003,4, UQ90907011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ000217003,4, UQ90907011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ00217002, 7005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ00217002, 7005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ00317004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ00317004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID 325 MESH, 20KG BOA1PO... (BAHAN BAKU SUPLEMEN) COA HPD191019,2003036, 3042...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID 325 MESH, 20KG BOA1PO... (BAHAN BAKU SUPLEMEN) COA HPD191019,2003036, 3042...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID 325 MESH, 20KG BOA1PO (BAHAN BAKU SUPLEMEN) COA HPD2003089,3096.,3103,3113\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID 325 MESH, 20KG BOA1PO (BAHAN BAKU SUPLEMEN) COA HPD2003089,3096.,3103,3113\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID DC 97PCT ,25KG BAL (BHN BAKU SUPLEMEN) COA HPG1910002, HPG2003001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID DC 97PCT ,25KG BAL (BHN BAKU SUPLEMEN) COA HPG1910002, HPG2003001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHOLINE CHLORIDE 60 PCT (BHN BAKU PAKAN UTK TERNAK), COA 202003T-CCH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHOLINE CHLORIDE 60 PCT (BHN BAKU PAKAN UTK TERNAK), COA 202003T-CCH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS (KOSHER-PASSOVER) (BHN BAKU MAKANAN) COA UJ012, UJ013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS (KOSHER-PASSOVER) (BHN BAKU MAKANAN) COA UJ012, UJ013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RANITIDINE HCL USP (BHN BAKU OBAT)COA. RH0470120,0480120,1970320\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29321900\", \"uraian\": \"RANITIDINE HCL USP (BHN BAKU OBAT)COA. RH0470120,0480120,1970320\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRISODIUMCITRATE DIHYDRATE FINE GRANULAR (BHN BAKU MAKANAN), COA UJ006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"TRISODIUMCITRATE DIHYDRATE FINE GRANULAR (BHN BAKU MAKANAN), COA UJ006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU MAKANAN) COA UJ012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU MAKANAN) COA UJ012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE 400D S (BHN BAKU KOSMETIK) COA 1905A4-05\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE 400D S (BHN BAKU KOSMETIK) COA 1905A4-05\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ91210334\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ91210334\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ91210316\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ91210316\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) LYCOPENE 10PCTCWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"REDIVIVO (R) LYCOPENE 10PCTCWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02001022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02001022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE02001022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE02001022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG(BHN BAKU SUPLEMEN) COA UT20020008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S-TG(BHN BAKU SUPLEMEN) COA UT20020008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19120057\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19120057\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPSULAC (R) 60 (BHN BAKU OBAT) COA L100410520\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"CAPSULAC (R) 60 (BHN BAKU OBAT) COA L100410520\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET), COA SH629243\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU PEWARNA TABLET), COA SH629243\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTONE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0042379\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTONE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0042379\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTONE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0042379\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTONE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0042379\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9121860\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9121860\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200327\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200327\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 2AX2004041, 4043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 2AX2004041, 4043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLEANBIO TM-ZINC (PROTECT) (CL0024-K18) (BAHAN BAKU KOSMETIK) COA 20ZDP\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLEANBIO TM-ZINC (PROTECT) (CL0024-K18) (BAHAN BAKU KOSMETIK) COA 20ZDP\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA.122000006,7,8\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA.122000006,7,8\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL (BHN BAKU PEWARNA TABLET)COA D180K19002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM HYDROXYPROPYL (BHN BAKU PEWARNA TABLET)COA D180K19002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VACCINIUM MYRTYLLUS DRY EX. (BHN BAKU SUPLEMEN) COA 20S0047001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VACCINIUM MYRTYLLUS DRY EX. (BHN BAKU SUPLEMEN) COA 20S0047001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 32347/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 32347/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 20S0062103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 20S0062103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GREEN TEA DRY DEC.EX/PHOSPHOL (BHN BAKU SUPLEMEN) COA 19S0269701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"GREEN TEA DRY DEC.EX/PHOSPHOL (BHN BAKU SUPLEMEN) COA 19S0269701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 19S0108400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 19S0108400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 19S0193900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 19S0193900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 19S0209900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 19S0209900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GREEN TEA DRY DEC.EX/PHOSPHOL (BHN BAKU SUPLEMEN) COA 19S0269701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"GREEN TEA DRY DEC.EX/PHOSPHOL (BHN BAKU SUPLEMEN) COA 19S0269701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CURCUMA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 20S0035903\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CURCUMA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 20S0035903\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA/PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 32811/H1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA/PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 32811/H1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VACCINIUM MYRTILLUS DRY EX (BHN BAKU SUPLEMEN) COA 20S0047001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VACCINIUM MYRTILLUS DRY EX (BHN BAKU SUPLEMEN) COA 20S0047001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50,20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE01903046,49\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50,20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE01903046,49\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT20010015,23\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT20010015,23\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT20010023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT20010023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL(BHN BAKU KOSMETIK) COA UT19100257\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL(BHN BAKU KOSMETIK) COA UT19100257\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT20010010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT20010010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01905018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE01905018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT19120041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT19120041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ90902406,UQ91002494\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ90902406,UQ91002494\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE, 29KG BOX (BHN BAKU MAKANAN) COA QZ11190614\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE, 29KG BOX (BHN BAKU MAKANAN) COA QZ11190614\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11190614\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11190614\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE FCC,25KG BOX (BHN BAKU MAKANAN) COA 0000187473\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE FCC,25KG BOX (BHN BAKU MAKANAN) COA 0000187473\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12001013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12001013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTIOXIDANT PREMIX FOR GUMMY (BHN BAKU MAKANAN) COA XW92003065\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"ANTIOXIDANT PREMIX FOR GUMMY (BHN BAKU MAKANAN) COA XW92003065\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE FCC, 25KG BOX (BHN BAKU MAKANAN) COA 0000187473\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE FCC, 25KG BOX (BHN BAKU MAKANAN) COA 0000187473\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02001008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02001008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL01911147\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL01911147\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU MAKANAN) COA UT19100257\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU MAKANAN) COA UT19100257\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT19100257\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT19100257\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11190614\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11190614\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90802361\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90802361\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90902406\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90902406\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT GRANULATION,25KG BOX (BHN BAKU SUPLEMEN) COA WB19119007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT GRANULATION,25KG BOX (BHN BAKU SUPLEMEN) COA WB19119007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91002494\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91002494\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12001013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12001013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01912527\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01912527\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19080153\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19080153\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01912527\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01912527\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01912527\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01912527\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01912527\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01912527\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WP19119007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WP19119007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT GRANULATION ,25KG BOX (BHN BAKU SUPLEMEN) COA WB19119007,9009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT GRANULATION ,25KG BOX (BHN BAKU SUPLEMEN) COA WB19119007,9009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT19040012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT19040012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB19100012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB19100012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD(BHN BAKU SUPLEMEN) COA UT19090007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD(BHN BAKU SUPLEMEN) COA UT19090007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19090018,19\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19090018,19\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00619041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00619041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01911147\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01911147\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ00103303\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ00103303\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ90802361, UQ90902406\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ90802361, UQ90902406\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90902406\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90902406\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91002494\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91002494\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT20010188,189\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT20010188,189\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE FCC, 25KG BOX (BHN BAKU SUPLEMEN) COA 0000187473\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE FCC, 25KG BOX (BHN BAKU SUPLEMEN) COA 0000187473\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE FCC, 25KG BOX (BHN BAKU MAKANAN) COA 0000187473\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE FCC, 25KG BOX (BHN BAKU MAKANAN) COA 0000187473\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT19100220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT19100220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02001008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02001008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02001008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02001008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ00103303\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ00103303\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT19110014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT19110014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219040084\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219040084\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIQUORICE LC (BHN BAKU KOSMETIK) COA.115385\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021920\", \"uraian\": \"LIQUORICE LC (BHN BAKU KOSMETIK) COA.115385\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLAISANCE P116808 (BHN BAKU KOSMETIK) COA.0000038952\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"PLAISANCE P116808 (BHN BAKU KOSMETIK) COA.0000038952\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA I P001602 (BHN BAKU KOSMETIK) COA 0000038942\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA I P001602 (BHN BAKU KOSMETIK) COA 0000038942\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU PEWARNA TABLET) COA WP814318,AZ5755\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU PEWARNA TABLET) COA WP814318,AZ5755\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU PEWARNA TABLET) COA WP822185\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"ERYTHROSINE AL 38PCT-42PCT (BHN BAKU PEWARNA TABLET) COA WP822185\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C BLUE #1/BRILLIANT BLUE (BHN BAKU PEWARNA TABLET) COA WP816335\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C BLUE #1/BRILLIANT BLUE (BHN BAKU PEWARNA TABLET) COA WP816335\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU PEWARNA TABLET) COA WP822862\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU PEWARNA TABLET) COA WP822862\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C BLUE #1/BRILLIANT BLUE (BHN BAKU PEWARNA TABLET) COA WP816335:AZ6852\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C BLUE #1/BRILLIANT BLUE (BHN BAKU PEWARNA TABLET) COA WP816335:AZ6852\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU PEWARNA TABLET) COA WP824673:1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"ERYTHROSINE AL 38PCT-42PCT (BHN BAKU PEWARNA TABLET) COA WP824673:1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU PEWARNA TABLET) COA WP822866:BA0298\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU PEWARNA TABLET) COA WP822866:BA0298\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU PEWARNA TABLET) COA WP814316:AZ5758\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU PEWARNA TABLET) COA WP814316:AZ5758\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA OBAT) COA WP821786\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA OBAT) COA WP821786\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C RED #40/ALLURA RED AC AL (BHN BAKU PEWARNA TABLET) COA WP820592:AZ8936\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C RED #40/ALLURA RED AC AL (BHN BAKU PEWARNA TABLET) COA WP820592:AZ8936\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FC AND C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP818232:AZ7799\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FC AND C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP818232:AZ7799\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISONE USP42 (BHN BAKU OBAT) COA.NPD200410\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISONE USP42 (BHN BAKU OBAT) COA.NPD200410\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GRAM SAFRANIN 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 002819, 9353466\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GRAM SAFRANIN 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 002819, 9353466\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0041114\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0041114\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B02B318M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B02B318M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9309252\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9309252\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NYSTATIN POWDER ROW (BHN BAKU OBAT) COA C114387, C114399\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NYSTATIN POWDER ROW (BHN BAKU OBAT) COA C114387, C114399\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NYSTATIN MICRONIZED ROW (BHN BAKU OBAT) COA C131274\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NYSTATIN MICRONIZED ROW (BHN BAKU OBAT) COA C131274\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP20034458, XP20034459\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP20034458, XP20034459\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA 200309012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA 200309012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIOCELLACT CHAMOMILLA BD (BHN BAKU KOSMETIK) COA 193125\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BIOCELLACT CHAMOMILLA BD (BHN BAKU KOSMETIK) COA 193125\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 191799\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"IZAYOI (BHN BAKU KOSMETIK) COA 191799\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 193115\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 193115\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 192085,192760\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 192085,192760\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CINDERELLACARE (BHN BAKU KOSMETIK), COA 192822\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"CINDERELLACARE (BHN BAKU KOSMETIK), COA 192822\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 192929\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"MANDARINCLEAR (BHN BAKU KOSMETIK) COA 192929\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT19120262, 263\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT19120262, 263\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19110102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19110102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ91110280\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ91110280\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070C (BHN BAKU MAKANAN) COA XW92003289, 90\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070C (BHN BAKU MAKANAN) COA XW92003289, 90\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT19080029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT19080029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19090007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19090007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519139\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519139\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01912527\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01912527\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT20010188\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT20010188\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01902012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01902012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19080153,154\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19080153,154\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL-ACETATE,20KG JUG (BHN BAKU SUPLEMEN) COA XH20200202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL-ACETATE,20KG JUG (BHN BAKU SUPLEMEN) COA XH20200202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB01906085,87,88\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB01906085,87,88\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91013186\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91013186\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT GRANULATION ,25KG BOX (BHN BAKU SUPLEMEN) COA WB19119010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT GRANULATION ,25KG BOX (BHN BAKU SUPLEMEN) COA WB19119010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01908419\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01908419\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ91110280\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ91110280\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P9R08QA000, P9R09QA000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL TX (BHN BAKU KOSMETIK) COA P9R08QA000, P9R09QA000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000187434\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000187434\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01911147,01911148,02001008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01911147,01911148,02001008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519100308,0519110335\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519100308,0519110335\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519110335,336\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519110335,336\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0034823\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0034823\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0013917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0013917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SODIUM DESOXYCHOLATE 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8312884\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SODIUM DESOXYCHOLATE 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8312884\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 00348236\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 00348236\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9211356\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9211356\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH0014801,28518,34699\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE STERILE RODAC EMPTY ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH0014801,28518,34699\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 8219795,9302047\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 8219795,9302047\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9161608\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9161608\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273651\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273651\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9323677\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9323677\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9315468\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9315468\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9148762\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9148762\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MAC-CONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9161545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MAC-CONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9161545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9302327\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9302327\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239367\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239367\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239319\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239319\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9338809\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9338809\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0008443\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0008443\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9287872\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9287872\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9353100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9353100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9316509\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9316509\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239367\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239367\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9324109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9324109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9302327\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9302327\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BIGGY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9231143\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BIGGY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9231143\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0013690\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0013690\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9175490\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9175490\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYP AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9324178\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MYP AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9324178\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309193\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309193\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0021157\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0021157\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0056343\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0056343\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9224604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9224604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST CARBON BASE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0038689\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE YEAST CARBON BASE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0038689\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE WL DIFFERENTIAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9337172\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE WL DIFFERENTIAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9337172\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9280615\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9280615\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GASPAK EZ STANDARD INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH7326629010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"GASPAK EZ STANDARD INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH7326629010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0042967\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0042967\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9344975\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9344975\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 9353100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 9353100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273651\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273651\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0034699\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE STERILE RODAC EMPTY 65X15 MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0034699\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9211356\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9211356\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9273651\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9273651\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9324109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9324109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9324109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9324109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9315219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9315219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9219559\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9219559\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0034823\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0034823\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9302047\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9302047\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161680\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161680\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0009096\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0009096\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 9127592\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 9127592\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 92188048\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 92188048\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161608\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161608\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9211435\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9211435\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9021613\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9021613\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9315468\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9315468\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9310881\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9310881\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9261868\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9261868\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161934\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161934\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9315219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9315219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9241879\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9241879\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9338809\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9338809\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0008443\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0008443\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9211362\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9211362\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9273839\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9273839\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0021091\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0021091\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9287872\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9287872\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9231272\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9231272\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9353100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9353100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9239628\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9239628\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9309312\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9309312\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9295486\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9295486\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9219559,9364957\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9219559,9364957\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0034823,9280673\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0034823,9280673\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239282\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239282\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9218604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9218604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9273651\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9273651\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0077148\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0077148\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9261868\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9261868\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9239319\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9239319\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BPOTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9311217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BPOTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9311217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9241879\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9241879\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0008443\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0008443\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9324109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 19 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9324109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9353100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9353100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9309312\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9309312\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9273651\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9273651\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 0034699\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 0034699\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT AGAR 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9302327\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALT AGAR 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9302327\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9364957\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9364957\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9338809\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9338809\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9316509890\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9316509890\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9352422\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9352422\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9269210\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9269210\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH9296257,9310358\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH9296257,9310358\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA D01431UP\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA D01431UP\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA C002-YB2004279, C002-YB2004305\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA C002-YB2004279, C002-YB2004305\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP09620\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP09620\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 189135\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 189135\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SCHISANDRA EXTRACT (BAHAN BAKU OBAT) COA SCE03-20041601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SCHISANDRA EXTRACT (BAHAN BAKU OBAT) COA SCE03-20041601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1903224672\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1903224672\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ00317004,7007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ00317004,7007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRAZINAMIDE EP/USP (BHN BAKU OBAT) COA WHOPZ 259 B 20 S/D WHOPZ 269 B 20\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"PYRAZINAMIDE EP/USP (BHN BAKU OBAT) COA WHOPZ 259 B 20 S/D WHOPZ 269 B 20\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET), COA DT700664\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX RED (BHN BAKU PEWARNA TABLET), COA DT700664\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX MAROON (BHN BAKU PEWARNA TABLET), COA DT700663\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX MAROON (BHN BAKU PEWARNA TABLET), COA DT700663\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET) COA DT700640\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPAGLOS WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET) COA DT700640\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 20 PREMIUM (BHN BAKU PEWARNA TABLET), COA D184J3H021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 20 PREMIUM (BHN BAKU PEWARNA TABLET), COA D184J3H021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV (BHN BAKU PEWARNA TABLET)COA D011J7KL02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV (BHN BAKU PEWARNA TABLET)COA D011J7KL02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM (BHN BAKU PEWARNA TABLET) COA D180J8O001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM (BHN BAKU PEWARNA TABLET) COA D180J8O001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA 8MT200345\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30032000\", \"uraian\": \"STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA 8MT200345\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1911237,1911238,1952087,1911242\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"PARACETAMOL (BHN BAKU OBAT) COA 1911237,1911238,1952087,1911242\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POVIDONE K-25 (BHN BAKU OBAT) COA PK25-200106F11\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"POVIDONE K-25 (BHN BAKU OBAT) COA PK25-200106F11\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CROSPOVIDONE XL (BHN BAKU OBAT) COA PP200221XL\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"CROSPOVIDONE XL (BHN BAKU OBAT) COA PP200221XL\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITICOLINE SODIUM (BHN BAKU OBAT) COA 3A26190722, 3A26200111\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"CITICOLINE SODIUM (BHN BAKU OBAT) COA 3A26190722, 3A26200111\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 2003028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"ACESULFAME K (BHN BAKU OBAT) COA 2003028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INOSITOL (BHN BAKU OBAT) COA 202003060\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"INOSITOL (BHN BAKU OBAT) COA 202003060\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GLUCOSAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA WA202002008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"GLUCOSAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA WA202002008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLSULFONYLMETHANE USP (BHN BAKU OBAT) COA 20200316\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"METHYLSULFONYLMETHANE USP (BHN BAKU OBAT) COA 20200316\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IRBESARTAN (BHN BAKU OBAT), COA C5562-19-008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"IRBESARTAN (BHN BAKU OBAT), COA C5562-19-008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEVOFLOXACIN HEMIHYDRATE (FREEALKALINE) BHN BAKU OBAT,COA C008-1912114\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"LEVOFLOXACIN HEMIHYDRATE (FREEALKALINE) BHN BAKU OBAT,COA C008-1912114\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FIBRE DRUM, PRICE AND AMOUNT ARE FOR CUSTOM ONLY\""}, {"role": "assistant", "content": "{\"hs_code\" : \"48192000\", \"uraian\": \"FIBRE DRUM, PRICE AND AMOUNT ARE FOR CUSTOM ONLY\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM INJECTABLE GRADE (BHN BAKU OBAT) COA 19121331,19121332\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331900\", \"uraian\": \"METAMIZOLE SODIUM INJECTABLE GRADE (BHN BAKU OBAT) COA 19121331,19121332\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM REGULAR GRADE (BHN BAKU OBAT) COA 2004586\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331900\", \"uraian\": \"METAMIZOLE SODIUM REGULAR GRADE (BHN BAKU OBAT) COA 2004586\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAFFEINE (BHN BAKU OBAT) COA 2003535,2004595,2004600,2004601,2004610\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29393000\", \"uraian\": \"CAFFEINE (BHN BAKU OBAT) COA 2003535,2004595,2004600,2004601,2004610\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IBUPROFEN (BHN BAKU OBAT) COA 20017043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29163990\", \"uraian\": \"IBUPROFEN (BHN BAKU OBAT) COA 20017043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IBUPROFEN ( BHN BAKU OBAT) COA 20047165\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29163990\", \"uraian\": \"IBUPROFEN ( BHN BAKU OBAT) COA 20047165\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 27/50 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP09120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 27/50 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP09120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED(BHN BAKU UTK PAKAN TERNAK ) COA MTP01620\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED(BHN BAKU UTK PAKAN TERNAK ) COA MTP01620\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01905018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU MAKANAN) COA UE01905018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX103070-C3 (BHN BAKU MAKANAN) COA XW92003292\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX103070-C3 (BHN BAKU MAKANAN) COA XW92003292\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN MINERAL PREMIX INSTANT DRINK (BHN BAKU MAKANAN) COA XW92003299\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN MINERAL PREMIX INSTANT DRINK (BHN BAKU MAKANAN) COA XW92003299\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92003344\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92003344\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT19120041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT19120041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01905018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU MAKANAN) COA UE01905018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01905018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU MAKANAN) COA UE01905018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT20010918\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT20010918\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20010010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20010010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT20010011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT20010011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219040084\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219040084\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519110336,10337,20366\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519110336,10337,20366\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT20010915\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT20010915\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF19085007,UF18316006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF19085007,UF18316006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF19085007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF19085007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT20010023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT20010023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF19085007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF19085007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT20010023,25\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT20010023,25\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET), COA SH629487\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET), COA SH629487\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY PURPLE (BHN BAKU PEWARNA TABLET) COA SH628514\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY PURPLE (BHN BAKU PEWARNA TABLET) COA SH628514\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 121910329\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054300\", \"uraian\": \"MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 121910329\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK)COA EG138-191002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK)COA EG138-191002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-C0200101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-C0200101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRAPE SEED ORGANIC OIL (BHN BAKU KOSMETIK)COA RPM200102-ENBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GRAPE SEED ORGANIC OIL (BHN BAKU KOSMETIK)COA RPM200102-ENBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK)COA CFM191201-PGH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK)COA CFM191201-PGH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-200101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-200101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-200102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-200102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEPPERMINT ORGANIC DISTILLATE 1:5 SB (BHN BAKU KOSMETIK) COA MEPD200401-BIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PEPPERMINT ORGANIC DISTILLATE 1:5 SB (BHN BAKU KOSMETIK) COA MEPD200401-BIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR ( BHN BAKU KOSMETIK) COA CHS191102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR ( BHN BAKU KOSMETIK) COA CHS191102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS191102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS191102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) CFM191201-PGH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) CFM191201-PGH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-C0200101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-C0200101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-200101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-200101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO190102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO190102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO190102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO190102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA.0000070426\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA.0000070426\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA.0000070427\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA.0000070427\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 78508188L\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 78508188L\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785018258L\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785018258L\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785018040L\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785018040L\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROGELINE TM (BHN BAKU KOSMETIK) COA 820057918L\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROGELINE TM (BHN BAKU KOSMETIK) COA 820057918L\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELANOSTATINE TM 5 BG (50PPM) (BHN BAKU KOSMETIK) COA 817048274L\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MELANOSTATINE TM 5 BG (50PPM) (BHN BAKU KOSMETIK) COA 817048274L\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELANOSTATINE TM 5 BG (BHN BAKU KOSMETIK), COA 817048274L\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MELANOSTATINE TM 5 BG (BHN BAKU KOSMETIK), COA 817048274L\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK), COA 784027671K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"TYROSTAT TM 11 (BHN BAKU KOSMETIK), COA 784027671K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK), COA 769017736K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHRONOLINE TM (BHN BAKU KOSMETIK), COA 769017736K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK), COA 785018188L\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK), COA 785018188L\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANACHRYS 2B PF (PRESERVATIVE (BHN BAKU KOSMETIK), COA 793057689K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LANACHRYS 2B PF (PRESERVATIVE (BHN BAKU KOSMETIK), COA 793057689K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK), COA 784027993K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"TYROSTAT TM 11 (BHN BAKU KOSMETIK), COA 784027993K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELANOSTATINE TM 5 BG (50PPM) (BHN BAKU KOSMETIK), COA 817048335L\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MELANOSTATINE TM 5 BG (50PPM) (BHN BAKU KOSMETIK), COA 817048335L\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0037326\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0037326\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8285857\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8285857\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 90011569\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 90011569\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9283338\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9283338\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9340914\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9340914\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0050168\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0050168\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOBACILLLI MRS BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273767\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOBACILLLI MRS BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273767\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0063478\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0063478\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9312760\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9312760\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH0009986,9364835\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH0009986,9364835\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8207980\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8207980\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9312760\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9312760\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9254142\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9254142\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9254801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9254801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9189630\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9189630\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239389\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239389\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH0015023,9246040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH0015023,9246040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0007091\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0007091\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037338\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037338\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037326\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037326\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037326\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037326\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD117PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0030043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD117PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0030043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD10 APC HI10A 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9269823\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD10 APC HI10A 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9269823\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD25 PE 2A3 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0010234\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD25 PE 2A3 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0010234\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD34 PE-CY7 8G12 Y7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9358599\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD34 PE-CY7 8G12 Y7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9358599\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI-KAPPA FITC/ ANTI-LAMBDA PE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0043087\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"ANTI-KAPPA FITC/ ANTI-LAMBDA PE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0043087\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD20 V500-C RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9331815\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD20 V500-C RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9331815\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD200 APC (MRC OX-104) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0052723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD200 APC (MRC OX-104) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0052723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD38 APC-H7 (HB7) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0076940\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD38 APC-H7 (HB7) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0076940\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD56 APC NCAM 16.2 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0063445\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD56 APC NCAM 16.2 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0063445\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD11B APC D12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9330650\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD11B APC D12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9330650\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD23 FITC EBVCS-5 RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9351395\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD23 FITC EBVCS-5 RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9351395\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD64 APC-H7 10.1 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9039654\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD64 APC-H7 10.1 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9039654\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD36 HORIZON V450 CB38 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9136944\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD36 HORIZON V450 CB38 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9136944\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD3 BV421 HI 10A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9113553\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD3 BV421 HI 10A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9113553\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD10 BV421 HI10A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9262144\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD10 BV421 HI10A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9262144\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD19 BV510 SJ25C1 100 TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9337378\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD19 BV510 SJ25C1 100 TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9337378\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD14 BV421 MPHIP9 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0010270\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD14 BV421 MPHIP9 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0010270\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD138 BV421 MI15 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9301758\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD138 BV421 MI15 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9301758\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9312760\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9312760\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0017348\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0017348\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8207980\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8207980\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9312760\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9312760\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9254801,9338712\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9254801,9338712\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0015023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0015023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9284311\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9284311\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PI18050006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349920\", \"uraian\": \"PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PI18050006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MC-GLUCAN (BHN BAKU KOSMETIK) COA MCGL200310\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"MC-GLUCAN (BHN BAKU KOSMETIK) COA MCGL200310\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRANOL ULTRA C-32 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP002102R\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34029099\", \"uraian\": \"MIRANOL ULTRA C-32 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP002102R\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE WHITE (BHN BAKU PEWARNA TABLET), COA WP826254\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE WHITE (BHN BAKU PEWARNA TABLET), COA WP826254\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP821800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP821800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP821799\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP821799\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP821797\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP821797\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD & C YELLOW #5/TARTRAZINE AL(BHN BAKU PEWARNA TABLET) COA WP822866\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD & C YELLOW #5/TARTRAZINE AL(BHN BAKU PEWARNA TABLET) COA WP822866\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU PEWARNA TABLET) COA WP814316\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU PEWARNA TABLET) COA WP814316\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EPA DHA 44 37 (BHN SUPLEMEN KESEHATAN) COA EE4437-200320\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"EPA DHA 44 37 (BHN SUPLEMEN KESEHATAN) COA EE4437-200320\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PACLITAXEL SEMISYNTHETIC (USP,TEST-2) (BHN BAKU OBAT) COA 8920NSH002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"PACLITAXEL SEMISYNTHETIC (USP,TEST-2) (BHN BAKU OBAT) COA 8920NSH002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MONENDOX 200 BMP (BHN BAKU UTK PAKAN TERNAK) COA 2004061\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"MONENDOX 200 BMP (BHN BAKU UTK PAKAN TERNAK) COA 2004061\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID S 20 (BHN BAKU OBAT) COA. 572000-2190132/001-024 (24)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232010\", \"uraian\": \"LIPOID S 20 (BHN BAKU OBAT) COA. 572000-2190132/001-024 (24)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU MAKANAN) COA TS00014427\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU MAKANAN) COA TS00014427\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 INF OIL, 4,5KG PJUG (BHN BAKU SUPLEMEN) COA TS00014322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 INF OIL, 4,5KG PJUG (BHN BAKU SUPLEMEN) COA TS00014322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000173\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000173\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA109206\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA109206\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP09620\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP09620\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 COARSE GRADE SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP09520\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 COARSE GRADE SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP09520\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH628444\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH628444\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH628578\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH628578\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY EZ CLEAR (BHN BAKU PEWARNA TABLET) COA SH628367\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY EZ CLEAR (BHN BAKU PEWARNA TABLET) COA SH628367\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH628364\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH628364\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH628409\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH628409\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH628341\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH628341\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH628401\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH628401\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH628421\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH628421\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY QX YELLOW (BHN BAKU PEWARNA TABLET) COA SH628410\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY QX YELLOW (BHN BAKU PEWARNA TABLET) COA SH628410\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 PINK (BHN BAKU PEWARNA TABLET) COA SH628411\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 PINK (BHN BAKU PEWARNA TABLET) COA SH628411\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH628367\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH628367\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH628043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH628043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH629181\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH629181\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY EZ CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH628367\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY EZ CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH628367\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH628366\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH628366\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA SH628368\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA SH628368\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH627584\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH627584\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH629269\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH629269\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH628363\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH628363\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GRAY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH628369\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GRAY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH628369\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH628398\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH628398\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH628652\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH628652\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH628578\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH628578\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH628167\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH628167\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY BROWN (BHN BAKU PEWARNA TABLET) COA SH628513\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY BROWN (BHN BAKU PEWARNA TABLET) COA SH628513\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH629727\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH629727\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH629269\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH629269\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH627919\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH627919\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH628512\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH628512\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH628565\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH628565\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH629768\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH629768\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH628542\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH628542\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH629710\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH629710\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABCOAT TC WHITE (BHN BAKU PEWARNA TABLET), COA GA670560\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"TABCOAT TC WHITE (BHN BAKU PEWARNA TABLET), COA GA670560\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY SGR CLEAR (BHN BAKU UTK PEWARNA OBAT) COA GA670561\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY SGR CLEAR (BHN BAKU UTK PEWARNA OBAT) COA GA670561\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINC PICOLINATE (BAHAN BAKU OBAT), COA 20002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333910\", \"uraian\": \"ZINC PICOLINATE (BAHAN BAKU OBAT), COA 20002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET), COA SH628731\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET), COA SH628731\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ONDANSETRON HCL USP (BHN BAKU OBAT) COA 19OS001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"ONDANSETRON HCL USP (BHN BAKU OBAT) COA 19OS001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROVIMIX E 50 ADSORBATE (BHN BAKU UTK PAKAN TERNAK) COA VX12004044,45\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"ROVIMIX E 50 ADSORBATE (BHN BAKU UTK PAKAN TERNAK) COA VX12004044,45\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20191001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20191001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROL 95 (BHN BAKU MAKANAN, COA XH20191001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROL 95 (BHN BAKU MAKANAN, COA XH20191001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A, 20KG BA (BHN BAKU MAKANAN) COA WB19110478,479,480\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A, 20KG BA (BHN BAKU MAKANAN) COA WB19110478,479,480\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20191201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20191201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIFE'S ARA (TM)'12' N-6 ARA POWDER (BHN BAKU MAKANAN), COA WB200103654\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"LIFE'S ARA (TM)'12' N-6 ARA POWDER (BHN BAKU MAKANAN), COA WB200103654\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A, 20KG BA (BHN BAKU MAKANAN) COA WB19110490\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A, 20KG BA (BHN BAKU MAKANAN) COA WB19110490\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20191201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20191201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAROPHYLL PINK 10PCT-CWS (BHN BAKU UTK PAKAN TERNAK) COA UE01909787\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"CAROPHYLL PINK 10PCT-CWS (BHN BAKU UTK PAKAN TERNAK) COA UE01909787\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROVIMIX CALPAN, 25KG BOX (BHN BAKU UTK PAKAN TERNAK) COA TL01912418\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ROVIMIX CALPAN, 25KG BOX (BHN BAKU UTK PAKAN TERNAK) COA TL01912418\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAROPHYLL PINK 10PCT-CWS (BHN BAKU UTK PAKAN TERNAK) COA UE01909787,9825\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"CAROPHYLL PINK 10PCT-CWS (BHN BAKU UTK PAKAN TERNAK) COA UE01909787,9825\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROVIMIX AD3 1000/200,20KG BAG (BHN BAKU UTK PAKAN TERNAK) COA UT19111068,069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"ROVIMIX AD3 1000/200,20KG BAG (BHN BAKU UTK PAKAN TERNAK) COA UT19111068,069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROVIMIX NIACIN (BHN BAKU UTK PAKAN TERNAK) COA 27014,27015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROVIMIX NIACIN (BHN BAKU UTK PAKAN TERNAK) COA 27014,27015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU UTK PEWARNA TABLET) COA SH629812\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU UTK PEWARNA TABLET) COA SH629812\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA OBAT) COA SH630209\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU PEWARNA OBAT) COA SH630209\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA LC005-20-801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 200 (BHN BAKU OBAT) COA LC005-20-801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POVIDONE K-25 (BHN BAKU OBAT) COA PK25-200106F11\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"POVIDONE K-25 (BHN BAKU OBAT) COA PK25-200106F11\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CROSPOVIDONE XL (BHN BAKU OBAT) COA PP200221XL\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"CROSPOVIDONE XL (BHN BAKU OBAT) COA PP200221XL\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITICOLINE SODIUM (BHN BAKU OBAT) COA 3A26190722, 3A26200111\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"CITICOLINE SODIUM (BHN BAKU OBAT) COA 3A26190722, 3A26200111\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 2003028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"ACESULFAME K (BHN BAKU OBAT) COA 2003028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INOSITOL (BHN BAKU OBAT) COA 202003060\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"INOSITOL (BHN BAKU OBAT) COA 202003060\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GLUCOSAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA WA202002008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"GLUCOSAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA WA202002008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLSULFONYLMETHANE USP (BHN BAKU OBAT) COA 20200316\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"METHYLSULFONYLMETHANE USP (BHN BAKU OBAT) COA 20200316\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IRBESARTAN (BHN BAKU OBAT), COA C5562-19-008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"IRBESARTAN (BHN BAKU OBAT), COA C5562-19-008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEVOFLOXACIN HEMIHYDRATE (FREEALKALINE) BHN BAKU OBAT,COA C008-1912114\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"LEVOFLOXACIN HEMIHYDRATE (FREEALKALINE) BHN BAKU OBAT,COA C008-1912114\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FIBRE DRUM, PRICE AND AMOUNT ARE FOR CUSTOM ONLY\""}, {"role": "assistant", "content": "{\"hs_code\" : \"48192000\", \"uraian\": \"FIBRE DRUM, PRICE AND AMOUNT ARE FOR CUSTOM ONLY\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED GRADE A) BHN BAKU OBAT, COA M532342 S/D 46\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED GRADE A) BHN BAKU OBAT, COA M532342 S/D 46\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX POWDER) ,BHN BAKU OBAT, COA M484499\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE (PURIMOX POWDER) ,BHN BAKU OBAT, COA M484499\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLOTRIMAZOLE MICRONIZED (BHN BAKU OBAT ) COA 201910150265\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"CLOTRIMAZOLE MICRONIZED (BHN BAKU OBAT ) COA 201910150265\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE, 25KG BOX/ALU(BHN BAKU MAKANAN) COA UQ91106273,274\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE, 25KG BOX/ALU(BHN BAKU MAKANAN) COA UQ91106273,274\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ91210316\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ91210316\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT20010007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT20010007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT20020008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT20020008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ91106274\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ91106274\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01912558\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01912558\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT20020016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT20020016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01912558, TL02001606\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01912558, TL02001606\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT19120016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT19120016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT20020094\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT20020094\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ91106272,6274\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ91106272,6274\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT20030023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT20030023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN) COA UT20030939\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN) COA UT20030939\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO)BHN BAKU MAKANAN, COA UT20030939, 940\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO)BHN BAKU MAKANAN, COA UT20030939, 940\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT19100025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT19100025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT20020008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT20020008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02001022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02001022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT20010010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT20010010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT20010006,7,10\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT20010006,7,10\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL02003119,3127, 3135,3141\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL02003119,3127, 3135,3141\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01912150\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01912150\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT20010918\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT20010918\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01912150\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01912150\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL-ACETATE (BHN BAKU KOSMETIK) COA UT20020036\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL-ACETATE (BHN BAKU KOSMETIK) COA UT20020036\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL ,10KG PAIL PE(BHN BAKU KOSMETIK) COA AVD0026660\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL ,10KG PAIL PE(BHN BAKU KOSMETIK) COA AVD0026660\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)(BHN BAKU KOSMETIK) COA UT20010189\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO)(BHN BAKU KOSMETIK) COA UT20010189\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708200029,30\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708200029,30\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000188161\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000188161\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0320050440,441\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0320050440,441\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01912150\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01912150\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A PALMITATE TYPE 250CWS/F (BHN BAKU MAKANAN) COA UT19090010,11\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A PALMITATE TYPE 250CWS/F (BHN BAKU MAKANAN) COA UT19090010,11\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL-ACETATE, 20KG JUG (BHN BAKU SUPLEMEN) COA XH20200202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL-ACETATE, 20KG JUG (BHN BAKU SUPLEMEN) COA XH20200202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW92004206,07\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW92004206,07\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92004202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92004202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CATECHINS (TEA EXTRACT) (BHN BAKU SUPLEMEN KESEHATAN), COA 002211\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"CATECHINS (TEA EXTRACT) (BHN BAKU SUPLEMEN KESEHATAN), COA 002211\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH6289710\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH6289710\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH629445\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH629445\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH628409\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH628409\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH628421\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH628421\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH629488\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH629488\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH629446\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH629446\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH629459\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH629459\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH628039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH628039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH629660\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH629660\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL -EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH629458\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL -EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH629458\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH629483\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH629483\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH629485\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH629485\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH629460\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH629460\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND BROWN (BHN BAKU PEWARNA TABLET) COA SH629461\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND BROWN (BHN BAKU PEWARNA TABLET) COA SH629461\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BOCARBONATE (BHN BAKU OBAT) COA RBA1042000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BOCARBONATE (BHN BAKU OBAT) COA RBA1042000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MONOPOT PHOS MKP FG 25K BG (BHN BAKU KOSMETIK) COA 20-015-01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"MONOPOT PHOS MKP FG 25K BG (BHN BAKU KOSMETIK) COA 20-015-01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARACETAMOL USP (BHN BAKU OBAT) COA 1952499,1951956,1951890,1911136\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"PARACETAMOL USP (BHN BAKU OBAT) COA 1952499,1951956,1951890,1911136\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA2004247 S/D 4256\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"MEFENAMIC ACID (BHN BAKU OBAT) COA MA2004247 S/D 4256\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETAHISTINE MESILATE EP (BHN BAKU OBAT) COA EDBHM20001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"BETAHISTINE MESILATE EP (BHN BAKU OBAT) COA EDBHM20001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN2830919\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN2830919\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB19110257\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB19110257\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWER CATCOL C 135 (L) GRADE (BHN BAKU KOSMETIK) COA163/20\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GUAR GUM TREATED AND PULVERISED IN POWER CATCOL C 135 (L) GRADE (BHN BAKU KOSMETIK) COA163/20\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 08800420,08810420,08820420,08830420...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 08800420,08810420,08820420,08830420...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-022019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-022019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-613079\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-613079\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CARBAMIDE(BHN BAKU KOSMETIK) COA U200410\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND CARBAMIDE(BHN BAKU KOSMETIK) COA U200410\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 040920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 040920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE ACEROLA B (BHN BAKU KOSMETIK) COA 10300043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EXTRAPONE ACEROLA B (BHN BAKU KOSMETIK) COA 10300043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D&C GREEN NO.5 C.I.61570 FDA CERTIFIED (BHN BAKU KOSMETIK) COA 10300034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"D&C GREEN NO.5 C.I.61570 FDA CERTIFIED (BHN BAKU KOSMETIK) COA 10300034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for C47-051 SUNCROMA TITANIUM DIOXIDE (BHN BAKU KOSMETIK) COA 2693660200102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"C47-051 SUNCROMA TITANIUM DIOXIDE (BHN BAKU KOSMETIK) COA 2693660200102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0066956\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0066956\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0023070\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0023070\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0079232\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0079232\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0079211\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0079211\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0077148\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0077148\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9302311\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9302311\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0008275\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0008275\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048064\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048064\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0047064\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0047064\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9364856\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9364856\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9337215\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9337215\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239367\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239367\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BROT 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239319\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BROT 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239319\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9324109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9324109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0062582\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0062582\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9231272\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRILLIANT GREEN 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9231272\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9296257\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9296257\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9211356\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9211356\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239282\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239282\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0041165\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE STERILE RODAC EMPTY 65X15MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0041165\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9302047\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9302047\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161680\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161680\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0009096\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0009096\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9354166\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9354166\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161608\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161608\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9211435\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9211435\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9273651\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9273651\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0077148\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0077148\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9315468\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9315468\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MAC CONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MAC CONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9310881\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9310881\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309234\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309234\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239319\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239319\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9273397,9311217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9273397,9311217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0037434\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0037434\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9241879\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9241879\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DESTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9338809\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DESTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9338809\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 00084432\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 00084432\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9211362\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9211362\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0021091\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0021091\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9324109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9324109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9287872\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9287872\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 9231272\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 9231272\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9353100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TCBS AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9353100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239628\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239628\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9309312\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9309312\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0041165\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0041165\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9302311\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9302311\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9295511\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9295511\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239319\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239319\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0013917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0013917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0009147\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0009147\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 19144470\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 19144470\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GRAM CRYSTAL VIOLET 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0055871\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GRAM CRYSTAL VIOLET 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0055871\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02C042M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02C042M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GRAM IODINE STABILIZED 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 0028369\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GRAM IODINE STABILIZED 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 0028369\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161934\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161934\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9211435\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9211435\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0034823\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0034823\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01C098M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01C098M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9295511\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9295511\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0002325\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0002325\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9295511\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9295511\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9295511\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9295511\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9302311\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9302311\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0013917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0013917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MINICAPT MOBILE MICROBIAL SAMPLER 100LPM(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"MINICAPT MOBILE MICROBIAL SAMPLER 100LPM(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9211356\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9211356\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9295511\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9295511\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239319\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239319\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9219559,9364957\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9219559,9364957\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0077148\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0077148\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9198204\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TETRATHIONATE BROTH BASE 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9198204\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025631\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025631\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0030043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0030043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD10 APC HI10A 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0078254\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD10 APC HI10A 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0078254\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0079949\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0079949\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD25 PE 2A3 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0050201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD25 PE 2A3 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0050201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI-HLA-DR FITC L243 (646-6)RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0063454\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"ANTI-HLA-DR FITC L243 (646-6)RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0063454\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA PENGEMBANGAN MIKRO ORGANISME,BATCH0035573,0086625,9347462\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD13 PE L138 100 TESTS RUO/GMP (MEDIA PENGEMBANGAN MIKRO ORGANISME,BATCH0035573,0086625,9347462\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD34 PE-CY7 8G12 Y7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9358599\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD34 PE-CY7 8G12 Y7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9358599\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI-KAPPA FITC/ANTI-LAMBDA PE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0043087\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"ANTI-KAPPA FITC/ANTI-LAMBDA PE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0043087\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 APC-H7 SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0086731\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD3 APC-H7 SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0086731\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD200 APC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0086271\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD200 APC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0086271\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD64 APC-H7 10.1 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9039654\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD64 APC-H7 10.1 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9039654\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD36 HORIZON V450 CB38 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0058061\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD36 HORIZON V450 CB38 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0058061\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD7 APC M-T701 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9176946\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD7 APC M-T701 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9176946\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD3 BV421 UCHT1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9113553\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD3 BV421 UCHT1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9113553\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD10 BV421 HI10A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9262144\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD10 BV421 HI10A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9262144\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD19 BV510 SJ25C1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9337378\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD19 BV510 SJ25C1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9337378\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD14 BV421 MPHIP9 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0010270\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD14 BV421 MPHIP9 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0010270\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD103 BV421 BER-ACT8 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0094483\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD103 BV421 BER-ACT8 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0094483\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9018746\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9018746\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SHIGELLA ANTIS POLY A LYOPHILIZED (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 9354479\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SHIGELLA ANTIS POLY A LYOPHILIZED (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 9354479\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SHIGELLA ANTIS POLY B LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0066791\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SHIGELLA ANTIS POLY B LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0066791\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SHIGELLA ANTIS POLY D LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8313989\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SHIGELLA ANTIS POLY D LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8313989\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL E COLI O ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9137791\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL E COLI O ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9137791\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9340914\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9340914\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8248932\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8248932\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SHIGELLA ANTIS POLY C1 LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9207991\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SHIGELLA ANTIS POLY C1 LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9207991\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD103 BV421 BER-ACT8 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0094483\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD103 BV421 BER-ACT8 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0094483\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364916\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364916\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL ISOVITALEX ENRICHMENT 10ML 5 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048880\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL ISOVITALEX ENRICHMENT 10ML 5 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048880\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9312760\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL COAG PLASMA RABBIT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9312760\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 82077980\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 82077980\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9312760\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9312760\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9338712\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9338712\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0015023,9338680\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0015023,9338680\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9284311\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9284311\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG L & P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0072634\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG L & P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0072634\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0057095\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0057095\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0063465\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0063465\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0079949\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0079949\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI-HLA-DR FITC L243 (G46-6) RUO/GMP (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0063454\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"ANTI-HLA-DR FITC L243 (G46-6) RUO/GMP (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0063454\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD3 APC-H7 SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0027983,0086731\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD3 APC-H7 SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0027983,0086731\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD10 APC HI10A 100 TESTS RUO/GMPMEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0078254\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD10 APC HI10A 100 TESTS RUO/GMPMEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0078254\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD64 APC-H7 10.1 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9039654\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD64 APC-H7 10.1 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9039654\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD36 HORIZON V450 CB38 50TST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0058061\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD36 HORIZON V450 CB38 50TST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0058061\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD7 APC M-T701 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9176946\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD7 APC M-T701 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9176946\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD3 BV421 UCHT1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9113553\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD3 BV421 UCHT1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9113553\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD19 BV510 SJ25C1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9337378\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD19 BV510 SJ25C1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9337378\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD103 BV421 BER-ACT8 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0094483\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD103 BV421 BER-ACT8 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0094483\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT 10X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9323256\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"TUBE EGG YOLK ENRICHMENT 50PCT 10X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9323256\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT 10X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9323256\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"TUBE EGG YOLK ENRICHMENT 50PCT 10X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9323256\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE PENASE CONCENTRATE 10X20ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0009774\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"TUBE PENASE CONCENTRATE 10X20ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0009774\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD20 V500-C RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0111271\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD20 V500-C RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0111271\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD20 V500-C RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 0111271\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD20 V500-C RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 0111271\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CROSPOVIDONE XL ( BAHAN BAKU OBAT ) COA PP200411XL\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"CROSPOVIDONE XL ( BAHAN BAKU OBAT ) COA PP200411XL\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ISONIAZID EP (BHN BAKU OBAT) COA IZ 002 L 19\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333910\", \"uraian\": \"ISONIAZID EP (BHN BAKU OBAT) COA IZ 002 L 19\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL (BHN BAKU PEWARNA TABLET)COA D180K1G022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM HYDROXYPROPYL (BHN BAKU PEWARNA TABLET)COA D180K1G022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ADSORB AFLA (BHN BAKU UNTUK PAKAN TERNAK) COA 139\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25081000\", \"uraian\": \"ADSORB AFLA (BHN BAKU UNTUK PAKAN TERNAK) COA 139\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121910283,284\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121910283,284\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 1,3-BUTYLENE GLYCOL, COSMETIC QUALITY(BHN BAKU KOSMETIK) COA P0620120DC\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"1,3-BUTYLENE GLYCOL, COSMETIC QUALITY(BHN BAKU KOSMETIK) COA P0620120DC\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 149947\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15159011\", \"uraian\": \"AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 149947\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JOJOBA OIL VIRGIN LOW ODOUR (BHN BAKU KOSMETIK) COA 151999\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15159011\", \"uraian\": \"JOJOBA OIL VIRGIN LOW ODOUR (BHN BAKU KOSMETIK) COA 151999\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 -CN- 10KG KA (BHN BAKU KOSMETIK) COA 1547360\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 -CN- 10KG KA (BHN BAKU KOSMETIK) COA 1547360\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 900 -CO8- 10KG KA (BHN BAKU KOSMETIK) COA 1547822,1548910\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 900 -CO8- 10KG KA (BHN BAKU KOSMETIK) COA 1547822,1548910\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 -CN- 10KG KA (BHN BAKU KOSMETIK) COA 1544393\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 -CN- 10KG KA (BHN BAKU KOSMETIK) COA 1544393\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 -CN-10KG KA (BHN BAKU KOSMETIK) COA 1544393\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 -CN-10KG KA (BHN BAKU KOSMETIK) COA 1544393\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 120 -C08- 10 KG KA (BHN BAKU KOSMETIK) COA 1548443\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 120 -C08- 10 KG KA (BHN BAKU KOSMETIK) COA 1548443\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 720 -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1546693\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 720 -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1546693\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 -CN- 200KG FA (BHN BAKU KOSMETIK) COA 1539504, 1548913\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 -CN- 200KG FA (BHN BAKU KOSMETIK) COA 1539504, 1548913\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 100 -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1548781\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 100 -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1548781\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIDIN DO -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1548623\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIDIN DO -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1548623\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000173,174\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000173,174\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000156,157\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000156,157\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HG31068, HG31229\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34029099\", \"uraian\": \"MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HG31068, HG31229\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA122206\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA122206\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA121205\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA121205\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 19B0164100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 19B0164100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 19B0177900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 19B0177900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPPLEMEN) COA 19B0178000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPPLEMEN) COA 19B0178000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPPLEMEN) COA 20B0018700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPPLEMEN) COA 20B0018700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 20B0018800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 20B0018800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VALERIAN D.H.E .0.8PCT VAL.AC (BHN BAKU SUPLEMEN) COA 19B0147600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VALERIAN D.H.E .0.8PCT VAL.AC (BHN BAKU SUPLEMEN) COA 19B0147600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VALERIAN D.H.E >0.8PCT VAL.AC (BHN BAKU SUPLEMEN) COA 19B0147700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VALERIAN D.H.E >0.8PCT VAL.AC (BHN BAKU SUPLEMEN) COA 19B0147700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYMARIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 19B0142500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILYMARIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 19B0142500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 19B0179600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 19B0179600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200423\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200423\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA 20200423\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17023010\", \"uraian\": \"DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA 20200423\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II BROWN (BHN BAKU PEWARNA TABLET) COA SH629622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II BROWN (BHN BAKU PEWARNA TABLET) COA SH629622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH629598\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH629598\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH630374\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH630374\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH630372\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH630372\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH630454\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH630454\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH629610\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH629610\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH629605\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH629605\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH629611\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH629611\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH630591\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH630591\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH630590\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH630590\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH628746\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH628746\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH630619\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH630619\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH630629\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH630629\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH630651\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH630651\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH629422\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH629422\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY PURPLE (BHN BAKU PEWARNA TABLET) COA SH628514\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY PURPLE (BHN BAKU PEWARNA TABLET) COA SH628514\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 PINK (BHN BAKU PEWARNA TABLET) COA SH629608\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 PINK (BHN BAKU PEWARNA TABLET) COA SH629608\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH628167\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH628167\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH628167\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH628167\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH630209\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH630209\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH629597\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH629597\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH629652\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH629652\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRECIROL ATO 5 (BHN BAKU OBAT) COA 178799\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"PRECIROL ATO 5 (BHN BAKU OBAT) COA 178799\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRANSCUTOL P (BHN BAKU OBAT) COA 178799\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TRANSCUTOL P (BHN BAKU OBAT) COA 178799\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA 178703\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELUCIRE 44/14 (BHN BAKU OBAT) COA 178703\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA 179088\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELUCIRE 44/14 (BHN BAKU OBAT) COA 179088\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIV190701-BGBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIV190701-BGBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH200202-ENBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH200202-ENBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SEABUCKTHORN HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HIR200101-B\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SEABUCKTHORN HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HIR200101-B\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SEABUCKTHORN HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HIR200101-B\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SEABUCKTHORN HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HIR200101-B\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEPPERMINT ORGANIC DISTILLATE 1:5 SB (BHN BAKU KOSMETIK) COA MEPD200401-BIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PEPPERMINT ORGANIC DISTILLATE 1:5 SB (BHN BAKU KOSMETIK) COA MEPD200401-BIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HONEY HYDROGLYCOLIC (BHN BAKU KOSMETIK) COA MIE191102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HONEY HYDROGLYCOLIC (BHN BAKU KOSMETIK) COA MIE191102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO200101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO200101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC ( BHN BAKU KOSMETIK) COA HEA200202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC ( BHN BAKU KOSMETIK) COA HEA200202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA200403\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA200403\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ULVA LACTUCA ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA ULL2004R1-GS-BGBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ULVA LACTUCA ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA ULL2004R1-GS-BGBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAPIOKA STARCH NATURAL 25KG BAG (BHN BAKU KOSMETIK) COA 0092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"11081400\", \"uraian\": \"TAPIOKA STARCH NATURAL 25KG BAG (BHN BAKU KOSMETIK) COA 0092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH629700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH629700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH630496\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH630496\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH630496\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH630496\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH630496\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH630496\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 101969019, 102069005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 101969019, 102069005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA RBA125200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA RBA125200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 14 PREMIUM (BHN BAKU PEWARNA TABLET), COA D184I39021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 14 PREMIUM (BHN BAKU PEWARNA TABLET), COA D184I39021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 20 PREMIUM (BHN BAKU PEWARNA TABLET), COA D184J1C021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 20 PREMIUM (BHN BAKU PEWARNA TABLET), COA D184J1C021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 20 PREMIUM (BHN BAKU PEWARNA TABLET) COA D184J71021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 20 PREMIUM (BHN BAKU PEWARNA TABLET) COA D184J71021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP821809\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP821809\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D&C YELLOW #10 AL 15PCT-20PCT (BHN BAKU PEWARNA TABLET) COA WP821809\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"D&C YELLOW #10 AL 15PCT-20PCT (BHN BAKU PEWARNA TABLET) COA WP821809\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU PEWARNA TABLET) COA WP769011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"ERYTHROSINE AL 38PCT-42PCT (BHN BAKU PEWARNA TABLET) COA WP769011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD & C BLUE #2/INDIGO CARMINE (BHN BAKU PEWARNA TABLET) COA WP825902\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD & C BLUE #2/INDIGO CARMINE (BHN BAKU PEWARNA TABLET) COA WP825902\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D & C YELLOW #10 AL 15PCT-20PCT (BHN BAKU PEWARNA TABLET) COA WP824126\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"D & C YELLOW #10 AL 15PCT-20PCT (BHN BAKU PEWARNA TABLET) COA WP824126\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD & C YELLOW #5/TARTRAZINE AL (BHN BAKU PEWARNA TABLET) COA WP822863\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD & C YELLOW #5/TARTRAZINE AL (BHN BAKU PEWARNA TABLET) COA WP822863\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD & C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP818232\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD & C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP818232\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD & C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP818225\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD & C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP818225\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILVERION 2400 (BHN BAKU KOSMETIK) COA 19-05225\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILVERION 2400 (BHN BAKU KOSMETIK) COA 19-05225\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IBUPROFEN 40 GRADE (BHN BAKU OBAT) COA 4050-3557\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"IBUPROFEN 40 GRADE (BHN BAKU OBAT) COA 4050-3557\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM REGULAR GRADE(BHN BAKU OBAT) COA 2004586,2004587,2004635,2004640\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331900\", \"uraian\": \"METAMIZOLE SODIUM REGULAR GRADE(BHN BAKU OBAT) COA 2004586,2004587,2004635,2004640\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM INJECTABLE GRADE (BHN BAKU OBAT) COA 19121332\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331900\", \"uraian\": \"METAMIZOLE SODIUM INJECTABLE GRADE (BHN BAKU OBAT) COA 19121332\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DICLOFENAC SODIUM USP42 (BHN BAKU OBAT) COA DFS/10040037,10040038,10040039,10040040,10040045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"DICLOFENAC SODIUM USP42 (BHN BAKU OBAT) COA DFS/10040037,10040038,10040039,10040040,10040045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DICLOFENAC POTASSIUM BP (BHN BAKU OBAT) COA DFK/10020048,10020049\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"DICLOFENAC POTASSIUM BP (BHN BAKU OBAT) COA DFK/10020048,10020049\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1910131,133,134\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1910131,133,134\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT20030001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT20030001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19100047\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19100047\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT20030027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT20030027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL02001642\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL02001642\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE, 25KG BOX /ALU (BHN BAKU MAKANAN) COA UQ91106279,6280\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE, 25KG BOX /ALU (BHN BAKU MAKANAN) COA UQ91106279,6280\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 (TM)'10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT20010011001606\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 (TM)'10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT20010011001606\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) (LYCOPENE)10PCT CWS/S-TG(BHN BAKU SUPLEMEN) COA UT18110017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"REDIVIVO (R) (LYCOPENE)10PCT CWS/S-TG(BHN BAKU SUPLEMEN) COA UT18110017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19120057\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19120057\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT20020008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT20020008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT20040027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT20040027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN) COA UT20040959\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN) COA UT20040959\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 MIU/G (BHN BAKU MAKANAN, COA UT20040027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 MIU/G (BHN BAKU MAKANAN, COA UT20040027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU MAKANAN) COA UT19050001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU MAKANAN) COA UT19050001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT20020008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT20020008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT20040058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VIAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT20040058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT19050001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT19050001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT20020009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT20020009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ91210340\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ91210340\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT20040058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT20040058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) BHN BAKU MAKANAN, COA UT20030194, 195\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G(TOCO) BHN BAKU MAKANAN, COA UT20030194, 195\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT19050001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT19050001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT20020008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT20020008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTISHARP (ZEAXANTHIN)5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19060003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"OPTISHARP (ZEAXANTHIN)5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19060003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19120057\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19120057\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A +D3 WATER-MISCIBLE 100/20(BHN BAKU SUPLEMEN) COA UT19100047\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A +D3 WATER-MISCIBLE 100/20(BHN BAKU SUPLEMEN) COA UT19100047\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT20040957, 959\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT20040957, 959\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT)COA L101851720\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200H (BHN BAKU OBAT)COA L101851720\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC011-20-801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 200 (BHN BAKU OBAT) COA. LC011-20-801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC011-20-801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 200 (BHN BAKU OBAT) COA. LC011-20-801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.20100281\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29391900\", \"uraian\": \"PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.20100281\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOSWELLIA SERRATA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 20T0047700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"BOSWELLIA SERRATA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 20T0047700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 121910045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28365010\", \"uraian\": \"VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 121910045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 CN 200KG FA (BHN BAKU KOSMETIK) COA 1548913\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 CN 200KG FA (BHN BAKU KOSMETIK) COA 1548913\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE USP (NIACINAMIDE USP/EP) BHN BAKU KOSMETIK, COA 20-21/NMD(P)/00011,00014 S/D 17\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE USP (NIACINAMIDE USP/EP) BHN BAKU KOSMETIK, COA 20-21/NMD(P)/00011,00014 S/D 17\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 2005EF7813\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"L-ARGININE LO (BHN BAKU KOSMETIK),COA 2005EF7813\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK)COA MCP-N-032630\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK)COA MCP-N-032630\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK)COA SFP-N-021920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK)COA SFP-N-021920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND JEJU TANGERINE EXTRACT (BHN BAKU KOSMETIK) COA GTUP-T-022919\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND JEJU TANGERINE EXTRACT (BHN BAKU KOSMETIK) COA GTUP-T-022919\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE 1PCT SOLUTION (BHN BAKU KOSMETIK) COA HASC-142520\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND BIO-SODIUM HYALURONATE 1PCT SOLUTION (BHN BAKU KOSMETIK) COA HASC-142520\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK)COA MCP-N-032630\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK)COA MCP-N-032630\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEEP IMPACT DEO 802054 (BHN BAKU KOSMETIK) COA 10300144\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"DEEP IMPACT DEO 802054 (BHN BAKU KOSMETIK) COA 10300144\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURE GREEN B&W PIT (BHN BAKU KOSMETIK) COA 10300059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PURE GREEN B&W PIT (BHN BAKU KOSMETIK) COA 10300059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA RBA1262000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA RBA1262000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX2005011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX2005011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIACEREIN EP (BHN BAKU OBAT) COA DCE/40060220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29389000\", \"uraian\": \"DIACEREIN EP (BHN BAKU OBAT) COA DCE/40060220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200429\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200429\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A,20KG BA (BHN BAKU MAKANAN) COA WB19110485 S/D 89\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A,20KG BA (BHN BAKU MAKANAN) COA WB19110485 S/D 89\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A 20KG BA (BHN BAKU MAKANAN), COA WB19110481, 483, 484\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A 20KG BA (BHN BAKU MAKANAN), COA WB19110481, 483, 484\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0066953\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0066953\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2189343\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2189343\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2189343\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2189343\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2189343\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2189343\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9274567\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9274567\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9121860\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9121860\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL ...(BHN BAKU PEWARNA TABLET)COA D180J88002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR HYDROXYPROPYL ...(BHN BAKU PEWARNA TABLET)COA D180J88002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180JAD003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180JAD003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D180JB1023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D180JB1023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D180JAL002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D180JAL002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180JAK002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180JAK002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180JAS001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180JAS001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.20100358\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29391900\", \"uraian\": \"PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.20100358\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARACETAMOL USP (BHN BAKU OBAT) COA 1911559,1952548,1952591,1952604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"PARACETAMOL USP (BHN BAKU OBAT) COA 1911559,1952548,1952591,1952604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYLPOL 980 (20KG) BAHAN BAKU KOSMETIK, COA 11520003,11520004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39069099\", \"uraian\": \"ACRYLPOL 980 (20KG) BAHAN BAKU KOSMETIK, COA 11520003,11520004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SERASENSE SF CM5 (BAHAN BAKU KOSMETIK) COA PA00416071,PA00416073,PA00416075\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29319049\", \"uraian\": \"SERASENSE SF CM5 (BAHAN BAKU KOSMETIK) COA PA00416071,PA00416073,PA00416075\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TICAGRELOR (BHN BAKU OBAT) COA, TG2M006022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29091900\", \"uraian\": \"TICAGRELOR (BHN BAKU OBAT) COA, TG2M006022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 19B0179600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 19B0179600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 20B0037200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 20B0037200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 20B0037200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 20B0037200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 19B0110300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 19B0110300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU UTK PEWARNA TABLET) COA SH630634\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU UTK PEWARNA TABLET) COA SH630634\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA OBAT) COA SH631391\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU PEWARNA OBAT) COA SH631391\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 19480\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 19480\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRTOGENOL (R) (BHN BAKU SUPLEMEN) COA 20S0092200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MIRTOGENOL (R) (BHN BAKU SUPLEMEN) COA 20S0092200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYMARIN (BHN BAKU SUPLEMEN) COA 19S0258905\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILYMARIN (BHN BAKU SUPLEMEN) COA 19S0258905\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECHINACEA ANG.DRY PURIF.EX (BHN BAKU SUPLEMEN) COA 19S0359200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"ECHINACEA ANG.DRY PURIF.EX (BHN BAKU SUPLEMEN) COA 19S0359200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BILBERRY (V. MYRTILLUS) ET EX 36PCT (BHN BAKU SUPLEMEN) COA 20S0062103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"BILBERRY (V. MYRTILLUS) ET EX 36PCT (BHN BAKU SUPLEMEN) COA 20S0062103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M-31PCT (BHN BAKU OBAT) COA 102029008,102029010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MG HYD PASTE USP TYPE M-31PCT (BHN BAKU OBAT) COA 102029008,102029010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX POWDER) BHN BAKU OBAT, COA M484519\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE (PURIMOX POWDER) BHN BAKU OBAT, COA M484519\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED) ,BHN BAKU OBAT, COA M532309\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED) ,BHN BAKU OBAT, COA M532309\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP20043195, XP20043196\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP20043195, XP20043196\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 200414\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 200414\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALPINIAWHITE (BHN BAKU KOSMETIK)COA 192930\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ALPINIAWHITE (BHN BAKU KOSMETIK)COA 192930\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA I P001602 (BHN BAKU KOSMETIK) COA 0000039198\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA I P001602 (BHN BAKU KOSMETIK) COA 0000039198\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL ...(BHN BAKU PEWARNA TABLET)COA D180J63001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM CR HYDROXYPROPYL ...(BHN BAKU PEWARNA TABLET)COA D180J63001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180J63002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM CR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180J63002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D180H14002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D180H14002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D180J6P021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D180J6P021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180K1O003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180K1O003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180K1Q002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180K1Q002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOPERAZONE SODIUM STERILE (BAHAN BAKU OBAT) COA 2004402117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOPERAZONE SODIUM STERILE (BAHAN BAKU OBAT) COA 2004402117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP20053132, XP20053133\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP20053132, XP20053133\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/CA05606\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/CA05606\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-0720420\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334910\", \"uraian\": \"DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-0720420\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-0740420\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334910\", \"uraian\": \"DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-0740420\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EPA DHA 44 37 (BHN SUPLEMEN KESEHATAN) COA EE4437-200518\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"EPA DHA 44 37 (BHN SUPLEMEN KESEHATAN) COA EE4437-200518\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA T100500, T100600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA T100500, T100600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOTAXIME SODIUM STERILE USP (BHN BAKU OBAT) COA T200400, T200500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOTAXIME SODIUM STERILE USP (BHN BAKU OBAT) COA T200400, T200500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA T700500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA T700500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 10070520,10090520,10110520...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 10070520,10090520,10110520...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ90813106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ90813106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT20020042\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT20020042\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000188240, 188397,188398\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000188240, 188397,188398\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES1901168\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"ALLANTOIN (BHN BAKU KOSMETIK) COA ES1901168\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01912158, TL01912165\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01912158, TL01912165\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0320050529\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0320050529\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL01911148\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU MAKANAN) COA TL01911148\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01911148\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01911148\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A BHN BAKU MAKANAN) COA UT19080028,UT19080029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A BHN BAKU MAKANAN) COA UT19080028,UT19080029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLIORIDE ,20KG BOX(BHN BAKU MAKANAN) COA QZ11190618,QZ11190625\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLIORIDE ,20KG BOX(BHN BAKU MAKANAN) COA QZ11190618,QZ11190625\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01911148\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01911148\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11190625\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11190625\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12002003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12002003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX BALITA (BHN BAKU MAKANAN) COA XW92003345\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX BALITA (BHN BAKU MAKANAN) COA XW92003345\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ91110282\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ91110282\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ91002508\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ91002508\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19110102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19110102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01909526, TL01909533\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01909526, TL01909533\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90913144\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90913144\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01911148\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL ,20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01911148\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ91110282\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ91110282\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1909123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1909123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1909123,127,130\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1909123,127,130\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT19110102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT19110102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT19110102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT19110102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ91110282\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ91110282\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE FCC, 25KG BOX (BHN BAKU MAKANAN) COA 0000188584\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE FCC, 25KG BOX (BHN BAKU MAKANAN) COA 0000188584\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE FCC, 25KG BOX (BHN BAKU MAKANAN) COA 0000188584,0000188592\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE FCC, 25KG BOX (BHN BAKU MAKANAN) COA 0000188584,0000188592\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19110102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19110102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT GRANULATION ,25KG BOX(BHN BAKU SUPLEMEN) COA WP19119010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT GRANULATION ,25KG BOX(BHN BAKU SUPLEMEN) COA WP19119010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ00103306\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ00103306\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL01911148\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU MAKANAN) COA TL01911148\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT19120041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT19120041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL01911148\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL01911148\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11190625\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11190625\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ91002507, UQ91002508\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ91002507, UQ91002508\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE FCC, 25KG BOX (BHN BAKU MAKANAN) COA 0000188584, 0000188592\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE FCC, 25KG BOX (BHN BAKU MAKANAN) COA 0000188584, 0000188592\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12002003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12002003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU MAKANAN) COA UT19090007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU MAKANAN) COA UT19090007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11190625\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11190625\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01912322, U01912323\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01912322, U01912323\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACTATE 325 CWS/A (BHN BAKU MAKANAN) COA UT19120038\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACTATE 325 CWS/A (BHN BAKU MAKANAN) COA UT19120038\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA U01912322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA U01912322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ00103306\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ00103306\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT20020036, UT20020042\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT20020036, UT20020042\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT19050033\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT19050033\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01911148\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01911148\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD(BHN BAKU SUPLEMEN) COA UT19090007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD(BHN BAKU SUPLEMEN) COA UT19090007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)(BHN BAKU SUPLEMEN) COA UT20010189\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO)(BHN BAKU SUPLEMEN) COA UT20010189\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT20010004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT20010004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90913144\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90913144\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91002507\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91002507\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00619042\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00619042\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01902300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01902300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT20010004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT20010004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT19120041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT19120041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL ACETATE, 20KG JUG(BHN BAKU SUPLEMEN) COA XH20200202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL ACETATE, 20KG JUG(BHN BAKU SUPLEMEN) COA XH20200202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLMEN) COA UT19050033\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLMEN) COA UT19050033\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20010004, UT20010009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20010004, UT20010009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20010009, UT20010010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20010009, UT20010010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01911148\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01911148\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01911148\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01911148\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ00103306\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ00103306\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN)COA WB19119010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN)COA WB19119010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTNE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT19050033\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTNE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT19050033\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)BHN BAKU SUPLEMEN, COA UT20010189\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO)BHN BAKU SUPLEMEN, COA UT20010189\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19080154\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19080154\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ00103306\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ00103306\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT GRANULATION,25KG BOX (BHN BAKU SUPLEMEN) COA WB19119010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT GRANULATION,25KG BOX (BHN BAKU SUPLEMEN) COA WB19119010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB19090221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB19090221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB19110257\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB19110257\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB19090222\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB19090222\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB19110257\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB19110257\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GENIVIDA(TM) TG, 1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT19060004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"GENIVIDA(TM) TG, 1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT19060004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF, 1KG ALUF(BHN BAKU SUPLEMEN) COA UE01905024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO (R) LUTEIN 20PCT SAF, 1KG ALUF(BHN BAKU SUPLEMEN) COA UE01905024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19120057\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19120057\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 1PCT SD (BHN BAKU SUPLEMEN) COA UT20030002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 1PCT SD (BHN BAKU SUPLEMEN) COA UT20030002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE02004042\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE02004042\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT20030008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT20030008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU MAKANAN) COA TL02005719\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU MAKANAN) COA TL02005719\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT EMULS (BHN BAKU MAKANAN) COA UE01910015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT EMULS (BHN BAKU MAKANAN) COA UE01910015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT. A PALM. 1.0M+ VIT D3 100'000 (BHN BAKU MAKANAN) COA UT20040086\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VIT. A PALM. 1.0M+ VIT D3 100'000 (BHN BAKU MAKANAN) COA UT20040086\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL02005719\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL02005719\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG200403\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG200403\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA OBAT) COA SH631363\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU PEWARNA OBAT) COA SH631363\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN541486\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN541486\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MONOPROPYLENE GLYCOL (BHN BAKU KOSMETIK) COA PG(S)200410\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"MONOPROPYLENE GLYCOL (BHN BAKU KOSMETIK) COA PG(S)200410\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU MAKANAN) COA HPD2005010,HPD2004156\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU MAKANAN) COA HPD2005010,HPD2004156\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC SODIUM ASCORBATE REGULAR, 25KG BAL (BAHAN BAKU MAKANAN) COA HPD2005055 S/D 57\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC SODIUM ASCORBATE REGULAR, 25KG BAL (BAHAN BAKU MAKANAN) COA HPD2005055 S/D 57\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID 325 MESH ,20KG BOALPO (BHN BAKU SUPLEMEN) COA HPG2003176,3184,3193,3196\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID 325 MESH ,20KG BOALPO (BHN BAKU SUPLEMEN) COA HPG2003176,3184,3193,3196\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT)COA L101851720\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200H (BHN BAKU OBAT)COA L101851720\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA DOC1252022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"SODIUM CARBONATE IPH (BHN BAKU OBAT) COA DOC1252022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ADSORB AFLA (BHN BAKU UNTUK PAKAN TERNAK) COA 144\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25081000\", \"uraian\": \"ADSORB AFLA (BHN BAKU UNTUK PAKAN TERNAK) COA 144\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXCHLORPHENIRAMINE MALEATE BP/EP (BHN BAKU OBAT) COA SLL/DC/0220004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333910\", \"uraian\": \"DEXCHLORPHENIRAMINE MALEATE BP/EP (BHN BAKU OBAT) COA SLL/DC/0220004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXCHLORPHENIRAMINE MALEATE USP (BHN BAKU OBAT) COA SLL/DC/0420008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333910\", \"uraian\": \"DEXCHLORPHENIRAMINE MALEATE USP (BHN BAKU OBAT) COA SLL/DC/0420008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA MTP12820\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA MTP12820\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102069005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102069005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FEF CETRIMIDE PH EUR (BHN BAKU KOSMETIK) COA KX0C656\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"FEF CETRIMIDE PH EUR (BHN BAKU KOSMETIK) COA KX0C656\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACTIPONE (R) CAMU CAMU ET (BHN BAKU KOSMETIK) COA 10300017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"ACTIPONE (R) CAMU CAMU ET (BHN BAKU KOSMETIK) COA 10300017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PF.ANTI SHINE WASH PERFUME 45414.1 (BHN BAKU KOSMETIK) COA 10300083\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"PF.ANTI SHINE WASH PERFUME 45414.1 (BHN BAKU KOSMETIK) COA 10300083\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MILD TALCUM MOD 1 (BHN BAKU KOSMETIK) COA 10300204\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"MILD TALCUM MOD 1 (BHN BAKU KOSMETIK) COA 10300204\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC1420T\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101990\", \"uraian\": \"SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC1420T\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARACETAMOL USP (BHN BAKU OBAT) COA 2010040,2010020,2010013,2030197,2010740,2050268\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"PARACETAMOL USP (BHN BAKU OBAT) COA 2010040,2010020,2010013,2030197,2010740,2050268\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINC SULFATE 1-HYDRATE, POWDER ,USP43 (BHN BAKU OBAT) COA 3080018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"ZINC SULFATE 1-HYDRATE, POWDER ,USP43 (BHN BAKU OBAT) COA 3080018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SELOHVITA C (BHN BAKU OBAT) COA 3084269\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28429010\", \"uraian\": \"SELOHVITA C (BHN BAKU OBAT) COA 3084269\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIPOTASSIUM CITRATE 1-HYDRATE (BHN BAKU OBAT) COA3083078\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"TRIPOTASSIUM CITRATE 1-HYDRATE (BHN BAKU OBAT) COA3083078\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM ACETATE, POWDER, PURITY ACC. TO E 263 (BHN BAKU OBAT) COA 3082104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29152910\", \"uraian\": \"CALCIUM ACETATE, POWDER, PURITY ACC. TO E 263 (BHN BAKU OBAT) COA 3082104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS SULFATE, DRIED, POWDER, USP43 (BHN BAKU OBAT) COA 3084930\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"FERROUS SULFATE, DRIED, POWDER, USP43 (BHN BAKU OBAT) COA 3084930\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SELOHVITA C (BHN BAKU OBAT) COA 3084269\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28429010\", \"uraian\": \"SELOHVITA C (BHN BAKU OBAT) COA 3084269\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SELOHVITA C (BHN BAKU OBAT) COA 3084270\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28429010\", \"uraian\": \"SELOHVITA C (BHN BAKU OBAT) COA 3084270\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINC SULFATE 1-HYDRATE, POWDER,USP 43 (BHN BAKU OBAT) COA 3080020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"ZINC SULFATE 1-HYDRATE, POWDER,USP 43 (BHN BAKU OBAT) COA 3080020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM CARBONATE, HEAVY (BHN BAKU OBAT) COA 1103215\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28369990\", \"uraian\": \"MAGNESIUM CARBONATE, HEAVY (BHN BAKU OBAT) COA 1103215\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EPERISONE HCL (BHN BAKU OBAT) COA 05820001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"EPERISONE HCL (BHN BAKU OBAT) COA 05820001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMLODIPINE BESYLATE BP/EP (BHN BAKU OBAT) COA AMB/078/04/20 S/D AMB/080/04/20, AMB/084/04/20,..\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"AMLODIPINE BESYLATE BP/EP (BHN BAKU OBAT) COA AMB/078/04/20 S/D AMB/080/04/20, AMB/084/04/20,..\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NABUMETONE (BHN BAKU OBAT) COA H-0560520\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29145000\", \"uraian\": \"NABUMETONE (BHN BAKU OBAT) COA H-0560520\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA ROA143203\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA ROA143203\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH630044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH630044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH630121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH630121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH630045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH630045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH630039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH630039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH629422\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH629422\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH629728\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH629728\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH630043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH630043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH630994\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH630994\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH631391\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH631391\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH630006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH630006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH630581\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH630581\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH630046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH630046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE PURPLE (BHN BAKU PEWARNA TABLET) COA SH630040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE PURPLE (BHN BAKU PEWARNA TABLET) COA SH630040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ONDANSETRON HCL USP (BHN BAKU OBAT) COA 19OS001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"ONDANSETRON HCL USP (BHN BAKU OBAT) COA 19OS001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA.MLAH0160520\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29341000\", \"uraian\": \"MELOXICAM BP (BHN BAKU OBAT) COA.MLAH0160520\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 2004121219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 2004121219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA OBAT) COA SH631278\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II RED (BHN BAKU PEWARNA OBAT) COA SH631278\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AQUACOAT ECD-30 ETHYLCELLULOSE AQUEOUS (BHN BAKU PEWARNA TABLET), COA XN20834274\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"AQUACOAT ECD-30 ETHYLCELLULOSE AQUEOUS (BHN BAKU PEWARNA TABLET), COA XN20834274\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT), COA ASGP/04/190420,190420-2,210420,190420-3,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT), COA ASGP/04/190420,190420-2,210420,190420-3,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/04/180420,200420,220420\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123100\", \"uraian\": \"CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/04/180420,200420,220420\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CROSCARMELLOSE SODIUM USP-NF (BHN BAKU OBAT) COA ACRMC/01/260120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123100\", \"uraian\": \"CROSCARMELLOSE SODIUM USP-NF (BHN BAKU OBAT) COA ACRMC/01/260120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED(BHN BAKU PAKAN TERNAK) COA ROA2020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED(BHN BAKU PAKAN TERNAK) COA ROA2020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN MINERAL PREMIX FOR IMMUNITY (BHN BAKU MAKANAN), COA XW93005287\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN MINERAL PREMIX FOR IMMUNITY (BHN BAKU MAKANAN), COA XW93005287\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12004021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12004021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12004021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12004021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD(BHN BAKU SUPLEMEN) COA UT19090007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD(BHN BAKU SUPLEMEN) COA UT19090007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12004021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12004021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT20010189\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT20010189\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01902300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01902300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT20010004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT20010004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12004021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12004021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT20010189\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT20010189\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01911059, UE02001009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01911059, UE02001009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROVIMIX D3-500 (BHN BAKU PAKAN TERNAK) COA UE02001004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROVIMIX D3-500 (BHN BAKU PAKAN TERNAK) COA UE02001004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAROPHYLL RED 10PCT, 5KG BAG ALU (BHN BAKU PAKAN TERNAK) COA UE02003556\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"CAROPHYLL RED 10PCT, 5KG BAG ALU (BHN BAKU PAKAN TERNAK) COA UE02003556\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000175\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000175\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LUBRIPHARM (R) SSF NF/EP/JP SODIUM STEARYL FUMARATE (BHN BAKU OBAT) COA 122000210\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"LUBRIPHARM (R) SSF NF/EP/JP SODIUM STEARYL FUMARATE (BHN BAKU OBAT) COA 122000210\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPRITOL 888 ATO (BHN BAKU OBAT) COA 179718\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"COMPRITOL 888 ATO (BHN BAKU OBAT) COA 179718\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRANCUTOL P (BHN BAKU OBAT) COA 177546\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TRANCUTOL P (BHN BAKU OBAT) COA 177546\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LABRAFIL M 1944 CS (BAHAN BAKU OBAT) COA 179415\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LABRAFIL M 1944 CS (BAHAN BAKU OBAT) COA 179415\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LABRAFIL M 1944 CS (BAHAN BAKU OBAT) COA 179771\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LABRAFIL M 1944 CS (BAHAN BAKU OBAT) COA 179771\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLURESSENCE LEMON 5001 BA (BHN BAKU OBAT) COA 455295\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"PLURESSENCE LEMON 5001 BA (BHN BAKU OBAT) COA 455295\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX2005018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX2005018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX2005020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX2005020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN541535\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN541535\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN541546\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN541546\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYPROHEPTADINE HCL BP/PH.EUR (BHN BAKU OBAT) COA CYP/10191013, CYP/10191014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"CYPROHEPTADINE HCL BP/PH.EUR (BHN BAKU OBAT) COA CYP/10191013, CYP/10191014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYPROHEPTADINE HCL BP/PH.EUR (BHN BAKU OBAT) COA CYP/11191016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"CYPROHEPTADINE HCL BP/PH.EUR (BHN BAKU OBAT) COA CYP/11191016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9239282\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9239282\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 004165,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE STERILE RODAC EMPTY 65X15MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 004165,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0070949,9302047\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0070949,9302047\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161680\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161680\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0097399\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0097399\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218804\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218804\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0037499,9337147\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0037499,9337147\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9211435\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9211435\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0107757\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0107757\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9323677\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9323677\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0002325\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0002325\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0119308\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0119308\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9302327\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9302327\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9309234\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9309234\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239367\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239367\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9287998\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9287998\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065878\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065878\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9311217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9311217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037434,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037434,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 00480551\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 00480551\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0008443\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0008443\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0009147\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0009147\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0083370,9211362\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0083370,9211362\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0125228\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0125228\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9324109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9324109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0027287,0062582,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0027287,0062582,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065975\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRILLIANT GREEN BILE 2PCT 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065975\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9353100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9353100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 01078811\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 01078811\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1922523\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1922523\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0030216,9352447\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0030216,9352447\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218538\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218538\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0107757\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0107757\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 93430972\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 93430972\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0013917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0013917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0009147\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0009147\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D-SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0097350,9218804\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D-SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0097350,9218804\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0008443\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0008443\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9273839\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9273839\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0013247\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0013247\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364957\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364957\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273651\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273651\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065975\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065975\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0013057\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0013057\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CORN MEAL AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE CORN MEAL AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ENDO AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0009128\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ENDO AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0009128\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EOSIN METHYLENE BLUE AG HHT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9254786\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EOSIN METHYLENE BLUE AG HHT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9254786\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT EXTRACT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0043946\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALT EXTRACT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0043946\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL SULFATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9280526\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LAURYL SULFATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9280526\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHENOL RED BROTH BASE BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8310778\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PHENOL RED BROTH BASE BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8310778\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218592\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218592\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9028828\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9028828\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TREHALOSE 10G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 00942411\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TREHALOSE 10G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 00942411\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309193\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309193\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 9273419\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 9273419\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NITRATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9148558\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NITRATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9148558\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364959\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364959\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9339238\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9339238\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE STOCK CULTURE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8012616\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE STOCK CULTURE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8012616\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9280662\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9280662\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B02C022M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B02C022M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE APT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0034063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE APT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0034063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHENYLLALANINE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9189619\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PHENYLLALANINE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9189619\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9189647\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9189647\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0035732\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0035732\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9311217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9311217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065836\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065836\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218592\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218592\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0021157\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0021157\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8312795\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8312795\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9156832\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9156832\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0099482\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0099482\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0009147\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0009147\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 01252283\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 01252283\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TREHALOSE 10G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0094241\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TREHALOSE 10G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0094241\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0037499\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0037499\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9218538\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9218538\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0002325\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0002325\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9364856\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9364856\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9364864\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9364864\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0042227\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0042227\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0107757\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0107757\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 9343097\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 9343097\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0002860\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0002860\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0013917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0013917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0065836\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0065836\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0065878\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0065878\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0048064\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0048064\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9364957\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9364957\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0008443\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0008443\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9324109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9324109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 00833709\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 00833709\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9273839\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTOSE BROTH 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9273839\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9353100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9353100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0065975\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0065975\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161680\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161680\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0031247\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0031247\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0077148\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0077148\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9296257\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9296257\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 9364957\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 9364957\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEVINE EMB AGAR 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0002325\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LEVINE EMB AGAR 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0002325\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0042333\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0042333\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9364853\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9364853\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9225861\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9225861\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0035732\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0035732\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GRAM CRYSTAL VIOLET 250ML(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0119933\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GRAM CRYSTAL VIOLET 250ML(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0119933\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9337386\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9337386\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GRAM IODINE STABILIZED 250ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) COA 0028379\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GRAM IODINE STABILIZED 250ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) COA 0028379\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHENOL RED SUCROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8057792\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PHENOL RED SUCROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8057792\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0021915\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0021915\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0021915\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0021915\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0135906\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0135906\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKIROORGANISME) BATCH 0135906\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKIROORGANISME) BATCH 0135906\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0135906\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0135906\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0135906\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0135906\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0079962\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0079962\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0091369\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0091369\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0013917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0013917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0065836\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0065836\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0107888\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0107888\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DIFCO CHROMAGAR SALMONELLA 374G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 00245797\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DIFCO CHROMAGAR SALMONELLA 374G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 00245797\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0013057\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0013057\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHENOL RED LACTOSE BR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8311620\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PHENOL RED LACTOSE BR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8311620\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 002157\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 002157\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH 9280662\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH 9280662\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9324170\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9324170\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 00429673\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 00429673\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC015-20-801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 200 (BHN BAKU OBAT) COA. LC015-20-801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC014-20-801, LC015-20-801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 200 (BHN BAKU OBAT) COA. LC014-20-801, LC015-20-801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC015-20-801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 200 (BHN BAKU OBAT) COA. LC015-20-801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH630771\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH630771\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH631231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH631231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH631232\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH631232\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH631233\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH631233\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH630303\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH630303\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH631412\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH631412\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY YELLOW (BHN BAKU PEWARNA TABLET) COA SH630305\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY YELLOW (BHN BAKU PEWARNA TABLET) COA SH630305\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH630325\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH630325\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BLACK (BHN BAKU PEWARNA TABLET) COA SH630322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BLACK (BHN BAKU PEWARNA TABLET) COA SH630322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND GREEN (BHN BAKU PEWARNA TABLET) COA SH630301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND GREEN (BHN BAKU PEWARNA TABLET) COA SH630301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH630117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH630117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND BROWN (BHN BAKU PEWARNA TABLET) COA SH630312\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND BROWN (BHN BAKU PEWARNA TABLET) COA SH630312\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH630304\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH630304\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BLUE (BHN BAKU PEWARNA TABLET) COA SH630321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BLUE (BHN BAKU PEWARNA TABLET) COA SH630321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH631562\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH631562\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH630311\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH630311\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH630324\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH630324\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH630306\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH630306\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0037338\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0037338\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0051017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0051017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI-MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0059074\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"ANTI-MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0059074\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD19 PE-CY7 SJ25C1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0093153\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD19 PE-CY7 SJ25C1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0093153\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD20 FITC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0104073\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD20 FITC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0104073\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI-KAPPA FITC/ANTI-LAMBDA PE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0071546\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"ANTI-KAPPA FITC/ANTI-LAMBDA PE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0071546\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD38 APC-H7 (HB7) RUO (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0100543\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD38 APC-H7 (HB7) RUO (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0100543\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD10 BV421 HI10A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0086644\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD10 BV421 HI10A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0086644\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD14 BV421 MPHIP9 100 TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0058170\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD14 BV421 MPHIP9 100 TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0058170\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD38 APC-H7 (HB7) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0100543\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD38 APC-H7 (HB7) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0100543\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0315942\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0315942\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0090650\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0090650\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273671\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273671\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0030043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0030043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD200 APC (MRC OX-104) RUO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0140296\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD200 APC (MRC OX-104) RUO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0140296\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI-MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0059074\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"ANTI-MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0059074\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL ISOVITALEX ENRICHMENT 10ML 5 EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0132479\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL ISOVITALEX ENRICHMENT 10ML 5 EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0132479\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0015023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0015023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0133080\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0133080\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9309244\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9309244\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT 10X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9323256\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"TUBE EGG YOLK ENRICHMENT 50PCT 10X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9323256\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTISERUM GRP A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9046966\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTISERUM GRP A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9046966\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0076734\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0076734\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9283338\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9283338\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0034818,9340914\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0034818,9340914\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEMOGLOBIN SOL 2PCT 100ML 10EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239090\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEMOGLOBIN SOL 2PCT 100ML 10EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239090\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH 9273671\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH 9273671\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9312760\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9312760\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENTICHMENT (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0051680\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENTICHMENT (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0051680\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9270026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9270026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9284311\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9284311\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0037326\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0037326\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG L &P 80 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0072634\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG L &P 80 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0072634\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GRAM DECOLORIZER 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0077164\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GRAM DECOLORIZER 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0077164\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GRAM SAFRANIN 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0055061\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GRAM SAFRANIN 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0055061\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0105205\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0105205\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0105205\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0105205\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9309252\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9309252\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER INDOLE (MEDIA UTK PNGEMBANGAN MIKROORGANISME) BATCH B028318M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER INDOLE (MEDIA UTK PNGEMBANGAN MIKROORGANISME) BATCH B028318M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 192253\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ABSORAGE (BHN BAKU KOSMETIK) COA 192253\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONO CHARDY (BHN BAKU KOSMETIK) COA 192698\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"CHRONO CHARDY (BHN BAKU KOSMETIK) COA 192698\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIOCELLACT CHAMOMILLA BD (BHN BAKU KOSMETIK) COA 200623\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BIOCELLACT CHAMOMILLA BD (BHN BAKU KOSMETIK) COA 200623\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SWERTIANIN-P (BHN BAKU KOSMETIK), COA 200456\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SWERTIANIN-P (BHN BAKU KOSMETIK), COA 200456\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALPINAWHITE (BHN BAKU KOSMETIK) COA 200601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ALPINAWHITE (BHN BAKU KOSMETIK) COA 200601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LG120420\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LG120420\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG120420\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG120420\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50310\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061100\", \"uraian\": \"MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50310\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01901001, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01901001, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CROSPOVIDONE XL ( BAHAN BAKU OBAT ) COA PP200502XL\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"CROSPOVIDONE XL ( BAHAN BAKU OBAT ) COA PP200502XL\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NOSCAPINE BASE USP (BHN BAKU OBAT) COA P0200720\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29391900\", \"uraian\": \"NOSCAPINE BASE USP (BHN BAKU OBAT) COA P0200720\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453582992\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453582992\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYPROTERONE ACETATE MICRONIZED (BHN BAKU OBAT) COA NA0687M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"CYPROTERONE ACETATE MICRONIZED (BHN BAKU OBAT) COA NA0687M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISONE USP42 (BHN BAKU OBAT) COA NPD200505\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISONE USP42 (BHN BAKU OBAT) COA NPD200505\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRASIL DM 5L DR M 190KG (BHN BAKU KOSMETIK) COA 20092PN415\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100090\", \"uraian\": \"MIRASIL DM 5L DR M 190KG (BHN BAKU KOSMETIK) COA 20092PN415\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM CR (BHN BAKU PEWARNA TABLET)COA D180JBT001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM CR (BHN BAKU PEWARNA TABLET)COA D180JBT001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 10 PREMIUM (BHN BAKU PEWARNA TABLET) COA D184GC1021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 10 PREMIUM (BHN BAKU PEWARNA TABLET) COA D184GC1021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC015-20-801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 200 (BHN BAKU OBAT) COA. LC015-20-801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET), COA DT703019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX RED (BHN BAKU PEWARNA TABLET), COA DT703019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX TAN (BHN BAKU PEWARNA TABLET), COA DT703020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX TAN (BHN BAKU PEWARNA TABLET), COA DT703020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPASPRAY YELLOW (BHN BAKU PEWARNA TABLET) COA DT702435\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPASPRAY YELLOW (BHN BAKU PEWARNA TABLET) COA DT702435\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE RED (BHN BAKU PEWARNA TABLET) COA DT702944\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE RED (BHN BAKU PEWARNA TABLET) COA DT702944\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 2005009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"ACESULFAME K (BHN BAKU OBAT) COA 2005009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INOSITOL (BHN BAKU OBAT) COA 202005063, 5064\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"INOSITOL (BHN BAKU OBAT) COA 202005063, 5064\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POVIDONE K-30 EX JHNH (BHN BAKU OBAT) COA PK30-200421F11\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"POVIDONE K-30 EX JHNH (BHN BAKU OBAT) COA PK30-200421F11\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POVIDONE K-25 (BHN BAKU OBAT) COA PK25-200430F31\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"POVIDONE K-25 (BHN BAKU OBAT) COA PK25-200430F31\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20200419\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20200419\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUCRALOSE (JKSS00) (BHN BAKU OBAT) COA 20040103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29321400\", \"uraian\": \"SUCRALOSE (JKSS00) (BHN BAKU OBAT) COA 20040103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CROSPOVIDONE XL-10 (BHN BAKU OBAT) COA PP200426XL-10\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"CROSPOVIDONE XL-10 (BHN BAKU OBAT) COA PP200426XL-10\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-RIBOSE (BHN BAKU OBAT), COA ZN20200417\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29400000\", \"uraian\": \"D-RIBOSE (BHN BAKU OBAT), COA ZN20200417\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IRBESARTAN (BHN BAKU OBAT) COA C5055-20-003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"IRBESARTAN (BHN BAKU OBAT) COA C5055-20-003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEVOFLOXACIN HEMIHYDRATE (FREE ALKALINE (BHN BAKU OBAT) COA C008-1912114\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"LEVOFLOXACIN HEMIHYDRATE (FREE ALKALINE (BHN BAKU OBAT) COA C008-1912114\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM SALICYLATE BP2005 (BHN BAKU KOSMETIK)COA 201909025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29182100\", \"uraian\": \"SODIUM SALICYLATE BP2005 (BHN BAKU KOSMETIK)COA 201909025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-200504\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-200504\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-200504\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-200504\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-190303-GS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-190303-GS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 2004121219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 2004121219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-96L-2CS (14KG) BHN BAKU KOSMETIK, COA 003372\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-96L-2CS (14KG) BHN BAKU KOSMETIK, COA 003372\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-96L-2CS (14KG) BHN BAKU KOSMETIK, COA 003376\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-96L-2CS (14KG) BHN BAKU KOSMETIK, COA 003376\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SELOHVITA C (BHN BAKU OBAT) COA 3085066, 3084270\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28429010\", \"uraian\": \"SELOHVITA C (BHN BAKU OBAT) COA 3085066, 3084270\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SURELEASE ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET), COA IN541465\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"SURELEASE ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET), COA IN541465\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for P.GINSENG DRY EXTRACT /IDB(BHN BAKU SUPLEMEN) COA 32347/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"P.GINSENG DRY EXTRACT /IDB(BHN BAKU SUPLEMEN) COA 32347/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU KOSMETIK) COA 19S0393500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA TRITERPENES (BHN BAKU KOSMETIK) COA 19S0393500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ90813111\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ90813111\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0320050625 S/D 628, 706, 707, 709\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0320050625 S/D 628, 706, 707, 709\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01904006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE01904006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT20010011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT20010011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE ,5KG PE PAIL(BHN BAKU KOSMETIK) COA UT2000045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE ,5KG PE PAIL(BHN BAKU KOSMETIK) COA UT2000045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01912323\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01912323\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01912323\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01912323\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070-C3 (BHN BAKU MAKANAN) COA XW92005228\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070-C3 (BHN BAKU MAKANAN) COA XW92005228\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19110102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19110102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ91210303,304\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ91210303,304\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT PREMIX MI A1 (BHN BAKU MAKANAN) COA XW92005382\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VIT PREMIX MI A1 (BHN BAKU MAKANAN) COA XW92005382\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ91210304\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ91210304\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ91102566\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ91102566\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT20020042\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT20020042\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20030106, 107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20030106, 107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE,5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20020045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE,5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20020045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20020045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20020045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1910130,0131,7111\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1910130,0131,7111\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT20010004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT20010004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91113211\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91113211\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91113211\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91113211\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20010010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20010010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S(BHN BAKU SUPLEMEN) COA UT20010010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S(BHN BAKU SUPLEMEN) COA UT20010010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT19110102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT19110102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT19110102,UT20030106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT19110102,UT20030106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT20030106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT20030106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91002509,UA91102566\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91002509,UA91102566\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91102566\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91102566\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91102566\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91102566\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT(BHN BAKU SUPLEMEN) COA WB00519134, WB00519135\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT(BHN BAKU SUPLEMEN) COA WB00519134, WB00519135\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU MAKANAN) COA UT20020045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU MAKANAN) COA UT20020045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20020045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20020045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20020045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20020045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19110102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19110102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19110102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19110102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINC GLUCONATE, POWDER, FCC 10 ( BHN BAKU MAKANAN) SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"ZINC GLUCONATE, POWDER, FCC 10 ( BHN BAKU MAKANAN) SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINC SULFATE 7-HYDRATE, CRYST, FCC 10 (BHN BAKU MAKANAN) SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"ZINC SULFATE 7-HYDRATE, CRYST, FCC 10 (BHN BAKU MAKANAN) SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS SULFATE 7-HYDRATE CRYST, FCC 10 (BHN BAKU MAKANAN) SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"FERROUS SULFATE 7-HYDRATE CRYST, FCC 10 (BHN BAKU MAKANAN) SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINC GLUCONATE, POWDER, FCC 10 (BHN BAKU MAKANAN) SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"ZINC GLUCONATE, POWDER, FCC 10 (BHN BAKU MAKANAN) SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0079795\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0079795\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0084429\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0084429\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTONE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 57343\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTONE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 57343\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9071756\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9071756\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0057343\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0057343\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0007337\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0007337\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0057343\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0057343\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0042378\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0042378\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTONE PHOSPHATE 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0057343\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTONE PHOSPHATE 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0057343\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0057343\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0057343\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0057343\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0057343\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9282976\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9282976\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0057343\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0057343\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9282981\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9282981\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0057343\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0057343\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0042378\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0042378\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0042378\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0042378\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0057337\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0057337\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0057337\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0057337\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0057337\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0057337\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0057343\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0057343\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0057337\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0057337\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9337057\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9337057\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9035505\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9035505\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9035505\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9035505\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2189343\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2189343\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9109987\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9109987\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-022019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-022019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK)COA ARP-071040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK)COA ARP-071040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-032399\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-032399\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-021920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-021920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK)COA NMP-L-052010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK)COA NMP-L-052010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA MCP-N-032630\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA MCP-N-032630\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 2051160,2051171,2051172\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"PARACETAMOL (BHN BAKU OBAT) COA 2051160,2051171,2051172\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL ...(BHN BAKU PEWARNA TABLET)COA D011JC2L02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV HYDROXYPROPYL ...(BHN BAKU PEWARNA TABLET)COA D011JC2L02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D011J8DL02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D011J8DL02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D180JBR002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D180JBR002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D180JC4001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D180JC4001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 10 PREMIUM ... (BHN BAKU PEWARNA TABLET) COA D184J7Q021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 10 PREMIUM ... (BHN BAKU PEWARNA TABLET) COA D184J7Q021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH630715\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH630715\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH631235\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH631235\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH632028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH632028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH631233\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH631233\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU PEWARNA TABLET) COA WP824576\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"ERYTHROSINE AL 38PCT-42PCT (BHN BAKU PEWARNA TABLET) COA WP824576\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C BLUE #2/INDIGO CARMINE AL (BHN BAKU PEWARNA TABLET) COA WP815907\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C BLUE #2/INDIGO CARMINE AL (BHN BAKU PEWARNA TABLET) COA WP815907\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU PEWARNA TABLET) COA WP824576\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"ERYTHROSINE AL 38PCT-42PCT (BHN BAKU PEWARNA TABLET) COA WP824576\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP818966\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP818966\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D&C YELLOW #10 AL 15PCT-20PCT (BHN BAKU PEWARNA TABLET) COA WP814317\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"D&C YELLOW #10 AL 15PCT-20PCT (BHN BAKU PEWARNA TABLET) COA WP814317\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP827632\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP827632\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP- PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP827023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP- PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP827023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA OBAT) COA WP827022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA OBAT) COA WP827022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP827629\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP827629\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARTAB DIRECTLY COMPRESSIBLE STARCH (BHN BAKU PEWARNA TABLET) COA WP816007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARTAB DIRECTLY COMPRESSIBLE STARCH (BHN BAKU PEWARNA TABLET) COA WP816007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CROSPOVIDONE XL ( BAHAN BAKU OBAT ) COA PP200531XL\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"CROSPOVIDONE XL ( BAHAN BAKU OBAT ) COA PP200531XL\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-RIBOSE (BHN BAKU OBAT) COA ZN20200608\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29400000\", \"uraian\": \"D-RIBOSE (BHN BAKU OBAT) COA ZN20200608\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OMEPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA OP0220C010,012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"OMEPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA OP0220C010,012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OMEPRAZOLE PELLETS 8,5PCT (BHN BAKU OBAT) COA OP0220C011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"OMEPRAZOLE PELLETS 8,5PCT (BHN BAKU OBAT) COA OP0220C011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANSOPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA LP0220C014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"LANSOPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA LP0220C014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SB VITAL LIDOCAINE 1ML ,COA 17862-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE SB VITAL LIDOCAINE 1ML ,COA 17862-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML , COA 17606-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE LYFT LIDOCAINE 1ML , COA 17606-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE VOLYME 1 ML ,COA 17875-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE VOLYME 1 ML ,COA 17875-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE REFYNE 1ML , COA 17748-1, 17749-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE REFYNE 1ML , COA 17748-1, 17749-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE DEFYNE 1ML , COA 17870-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE DEFYNE 1ML , COA 17870-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE KYSSE 1 ML, COA 17825-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE KYSSE 1 ML, COA 17825-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE SB VITAL LIGHT LIDOCAINE 1ML , COA 17839-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE SB VITAL LIGHT LIDOCAINE 1ML , COA 17839-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RESTYLANE DEFYNE 1ML , COA 17870-1,17852-1,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33049990\", \"uraian\": \"RESTYLANE DEFYNE 1ML , COA 17870-1,17852-1,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA 20200525\""}, {"role": "assistant", "content": "{\"hs_code\" : \"11081200\", \"uraian\": \"CORN STARCH (BHN BAKU MAKANAN) COA 20200525\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HEXYLENE GLYCOL (BHN BAKU KOSMETIK) COA 20040019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053900\", \"uraian\": \"HEXYLENE GLYCOL (BHN BAKU KOSMETIK) COA 20040019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 74814P\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 74814P\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000175, 194\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000175, 194\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REFINED SUNFLOWER OIL (BHN BAKU KOSMETIK) COA 0002228405\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"REFINED SUNFLOWER OIL (BHN BAKU KOSMETIK) COA 0002228405\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK COA B100420\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK COA B100420\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB100420\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB100420\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB100420\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB100420\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B100420\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B100420\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00637106,VE00637479,VE00637704\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"AMPHISOL K (BHN BAKU KOSMETIK) COA VE00637106,VE00637479,VE00637704\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00637704,VE00641232,VE00642630\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"AMPHISOL K (BHN BAKU KOSMETIK) COA VE00637704,VE00641232,VE00642630\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708200065 S/D 70\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708200065 S/D 70\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01912163\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01912163\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT20030070,UT20050090\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT20030070,UT20050090\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIN PREMIX MI A2 (BHN BAKU MAKANAN) COA XW92005385\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"MIN PREMIX MI A2 (BHN BAKU MAKANAN) COA XW92005385\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11200406\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11200406\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT20050090\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT20050090\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20010002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20010002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01912163\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01912163\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01912163,TL02001010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL ,20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01912163,TL02001010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT20030006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT20030006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM ASCORBATE ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB20030026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"CALCIUM ASCORBATE ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB20030026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91102568\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91102568\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20010010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20010010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20010010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20010010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)BHN BAKU MAKANAN, COA UT20010190, UT20030193\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO)BHN BAKU MAKANAN, COA UT20010190, UT20030193\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET), COA DT703171\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX RED (BHN BAKU PEWARNA TABLET), COA DT703171\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX TAN (BHN BAKU PEWARNA TABLET), COA DT703172\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX TAN (BHN BAKU PEWARNA TABLET), COA DT703172\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX MAROON (BHN BAKU PEWARNA TABLET) COA DT703361\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX MAROON (BHN BAKU PEWARNA TABLET) COA DT703361\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA OBAT) COA SH631392\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU PEWARNA OBAT) COA SH631392\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANTOPRAZOLE SODIUM (STERILE) BAHAN BAKU OBAT, COA SI/PPZ/00300320\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"PANTOPRAZOLE SODIUM (STERILE) BAHAN BAKU OBAT, COA SI/PPZ/00300320\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY ORANGE (BHN BAKU PEWARNA TABLET) COA GA672687\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY ORANGE (BHN BAKU PEWARNA TABLET) COA GA672687\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY SGR TRANSLUCENT (BHN BAKU PEWARNA TABLET) COA GA671697\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY SGR TRANSLUCENT (BHN BAKU PEWARNA TABLET) COA GA671697\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY SGR CLEAR (BHN BAKU PEWARNA TABLET) COA GA671696\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY SGR CLEAR (BHN BAKU PEWARNA TABLET) COA GA671696\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY SGR RED (BHN BAKU PEWARNA TABLET) COA GA672392\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY SGR RED (BHN BAKU PEWARNA TABLET) COA GA672392\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY SGR TRANSLUCENT (BHN BAKU PEWARNA TABLET) COA GA671697\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY SGR TRANSLUCENT (BHN BAKU PEWARNA TABLET) COA GA671697\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN541906\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN541906\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN541833\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN541833\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN541922\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN541922\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN541907\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN541907\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN541924\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN541924\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN541923\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN541923\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFADROXIL MONOHYDRATE (PURIDROX COMPACTED) BHN BAKU OBAT, COA B340170,172,173\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFADROXIL MONOHYDRATE (PURIDROX COMPACTED) BHN BAKU OBAT, COA B340170,172,173\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFADROXILE MONOHYDRATE POWDER (PURIDROX POWDER) COA B334672,74,76,81,84\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFADROXILE MONOHYDRATE POWDER (PURIDROX POWDER) COA B334672,74,76,81,84\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA P6935\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29225090\", \"uraian\": \"TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA P6935\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA P6936\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29225090\", \"uraian\": \"TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA P6936\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MATIPURE TM OIL FREE-5KG (BHN BAKU KOSMETIK) COA 2010102, 2010101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MATIPURE TM OIL FREE-5KG (BHN BAKU KOSMETIK) COA 2010102, 2010101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECOGEL TM - 5KG (BHN BAKU KOSMETIK) COA 2012905\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ECOGEL TM - 5KG (BHN BAKU KOSMETIK) COA 2012905\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SWT-7TM L- 5KG (BHN BAKU KOSMETIK) COA 2011401\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SWT-7TM L- 5KG (BHN BAKU KOSMETIK) COA 2011401\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HELIOGEL TM - 5KG (BHN BAKU KOSMETIK) COA 1932401\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HELIOGEL TM - 5KG (BHN BAKU KOSMETIK) COA 1932401\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA N3034126\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA N3034126\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-1080620, S-1090620\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334910\", \"uraian\": \"DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-1080620, S-1090620\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PI18050006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29341000\", \"uraian\": \"PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PI18050006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIROXICAM (BAHAN BAKU OBAT ) COA PRX2020007M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"PIROXICAM (BAHAN BAKU OBAT ) COA PRX2020007M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOTREXATE (BHN BAKU OBAT) COA EP200408\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"METHOTREXATE (BHN BAKU OBAT) COA EP200408\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIQUORICE LC (BHN BAKU KOSMETIK) COA.115774\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"LIQUORICE LC (BHN BAKU KOSMETIK) COA.115774\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-LYSINE HYDROCHLORIDE (FEED GRADE) 98.5PCT (BHN BAKU UTK PAKAN TERNAK )COA QDDX20-03-0140HJ-IB\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"L-LYSINE HYDROCHLORIDE (FEED GRADE) 98.5PCT (BHN BAKU UTK PAKAN TERNAK )COA QDDX20-03-0140HJ-IB\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ISDN 25PCT-LACTOSE 450 75PCT DILUTED (BHN BAKU OBAT) COA 1813430,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"ISDN 25PCT-LACTOSE 450 75PCT DILUTED (BHN BAKU OBAT) COA 1813430,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX POWDER) BHN BAKU OBAT, COA M484486, M484583\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE (PURIMOX POWDER) BHN BAKU OBAT, COA M484486, M484583\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED) ,BHN BAKU OBAT, COA M532498, 2499,2519,2496\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED) ,BHN BAKU OBAT, COA M532498, 2499,2519,2496\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH631406\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH631406\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0099489\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0099489\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0099489\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0099489\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 00119492\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 00119492\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0099498\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0099498\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0093988\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0093988\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL ...(MEDIA PENGEMBANGAN MIKROORGANISME) BATCH 0099489,0119492\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT MEDIA 90MM LL ...(MEDIA PENGEMBANGAN MIKROORGANISME) BATCH 0099489,0119492\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0119492\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0119492\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0119492\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0119492\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GLICLAZIDE (BHN BAKU OBAT) COA 1940001442\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"GLICLAZIDE (BHN BAKU OBAT) COA 1940001442\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GLICLAZIDE (BHN BAKU OBAT) COA 1940002424\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"GLICLAZIDE (BHN BAKU OBAT) COA 1940002424\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GLICLAZIDE (BHN BAKU OBAT) COA 1940002424\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"GLICLAZIDE (BHN BAKU OBAT) COA 1940002424\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ91102572\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ91102572\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ00103310\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ00103310\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT20030030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT20030030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100CWS (BHN BAKU SUPLEMEN) COA UT20010005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100CWS (BHN BAKU SUPLEMEN) COA UT20010005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20010005,7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20010005,7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS ( BHN BAKU SUPLEMEN), COA UT20010007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS ( BHN BAKU SUPLEMEN), COA UT20010007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE,5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20020045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE,5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20020045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ00103310\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ00103310\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91102572\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91102572\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DWI-BI (BHN BAKU MAKANAN) COA XW92005346\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"DWI-BI (BHN BAKU MAKANAN) COA XW92005346\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID REGULAR,25KG BAL (BAHAN BAKU SUPLEMEN) COA HPB2005191,5211\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID REGULAR,25KG BAL (BAHAN BAKU SUPLEMEN) COA HPB2005191,5211\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ONDANSETRON HCL USP (BHN BAKU OBAT) COA 19OS001, 20OS001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"ONDANSETRON HCL USP (BHN BAKU OBAT) COA 19OS001, 20OS001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM VALPROATE (BAHAN BAKU OBAT) COA 454565 (759)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29159090\", \"uraian\": \"SODIUM VALPROATE (BAHAN BAKU OBAT) COA 454565 (759)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IONOL CP,25KG BAG (BHN BAKU KOSMETIK) COA 01110120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29071900\", \"uraian\": \"IONOL CP,25KG BAG (BHN BAKU KOSMETIK) COA 01110120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IONOL CP (BHN BAKU KOSMETIK) COA 01104320\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29071900\", \"uraian\": \"IONOL CP (BHN BAKU KOSMETIK) COA 01104320\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL02004413,4466,4508,4515\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL02004413,4466,4508,4515\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT20040964,965,966\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT20040964,965,966\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02003030,3031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02003030,3031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL (BHN BAKU KOSMETIK) COA TL02003031,3032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL (BHN BAKU KOSMETIK) COA TL02003031,3032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL02004515,4525,4532,4537\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL02004515,4525,4532,4537\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU MAKANAN) COA TL02005719\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU MAKANAN) COA TL02005719\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT20030008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT20030008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT20030007,8,13\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT20030007,8,13\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTISHARP NAT ZEA 5PCT CWS/S-TG,10KG BAG (BHN BAKU SUPLEMEN) COA EW20055001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"OPTISHARP NAT ZEA 5PCT CWS/S-TG,10KG BAG (BHN BAKU SUPLEMEN) COA EW20055001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT19050002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT19050002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COATED ASCORBIC ACID, TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02005660\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"COATED ASCORBIC ACID, TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02005660\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT20020009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT20020009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19060003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19060003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT20040058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT20040058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT20050049\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT20050049\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 2AX2006018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 2AX2006018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 2051427,2051420,2051431,2051432\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"PARACETAMOL (BHN BAKU OBAT) COA 2051427,2051420,2051431,2051432\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP828366\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP828366\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP828367\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP828367\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP828113\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP828113\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D AND C YELLOW #10 AL 150CT-20PCT(BHN BAKU PEWARNA TABLET) COA WP814318\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"D AND C YELLOW #10 AL 150CT-20PCT(BHN BAKU PEWARNA TABLET) COA WP814318\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C RED #40/ALLURA RED AC AL... (BHN BAKU PEWARNA TABLET) COA WP824791\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C RED #40/ALLURA RED AC AL... (BHN BAKU PEWARNA TABLET) COA WP824791\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW... (BHN BAKU PEWARNA TABLET) COA WP818228\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #6/SUNSET YELLOW... (BHN BAKU PEWARNA TABLET) COA WP818228\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2003362364\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2003362364\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK)COA 200055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SAKURA EXTRACT B (BHN BAKU KOSMETIK)COA 200055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL,10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0026660\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL,10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0026660\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT20050122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT20050122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92005354, XW92005356\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"V003400 (BHN BAKU MAKANAN) COA XW92005354, XW92005356\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20010001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20010001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)(BHN BAKU SUPLEMEN) COA UT20020192\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO)(BHN BAKU SUPLEMEN) COA UT20020192\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92005355\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"V003400 (BHN BAKU MAKANAN) COA XW92005355\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113433\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113433\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 10 PREMIUM ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D184K25021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 10 PREMIUM ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D184K25021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 20 PREMIUM ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D184J1C021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 20 PREMIUM ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D184J1C021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 20 PREMIUM ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D184K4L021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 20 PREMIUM ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D184K4L021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 011420/006294\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 011420/006294\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLOZAPINE (BHN BAKU OBAT) COA 880106, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"CLOZAPINE (BHN BAKU OBAT) COA 880106, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ADRENALINE TARTRATE EPINEPHRINE BITARTRATE (B.BAKU OBAT)COA080108,100108,125158,SAMPLE NO COMM\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29379020\", \"uraian\": \"ADRENALINE TARTRATE EPINEPHRINE BITARTRATE (B.BAKU OBAT)COA080108,100108,125158,SAMPLE NO COMM\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA RBA1662000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA RBA1662000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS GLUCONATE, POWDER, USP 43 (BHN BAKU OBAT) COA 3087218\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"FERROUS GLUCONATE, POWDER, USP 43 (BHN BAKU OBAT) COA 3087218\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 00228,00310,00319\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 00228,00310,00319\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 190120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25070000\", \"uraian\": \"KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 190120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH631051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH631051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH631037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH631037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH631039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH631039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 BROWN (BHN BAKU PEWARNA TABLET) COA SH631075\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 BROWN (BHN BAKU PEWARNA TABLET) COA SH631075\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH631038\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH631038\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB RED (BHN BAKU PEWARNA TABLET) COA SH631047\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB RED (BHN BAKU PEWARNA TABLET) COA SH631047\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II BROWN (BHN BAKU PEWARNA TABLET) COA SH631049\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II BROWN (BHN BAKU PEWARNA TABLET) COA SH631049\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH631052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH631052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH630961\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH630961\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH631048\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH631048\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH631391\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH631391\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH632089\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH632089\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH631083\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH631083\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH632287\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH632287\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH631363\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH631363\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH631979\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH631979\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH631040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH631040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH630117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH630117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH632167\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH632167\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB MAROON (BHN BAKU PEWARNA TABLET) COA SH632139\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB MAROON (BHN BAKU PEWARNA TABLET) COA SH632139\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB MAROON (BHN BAKU PEWARNA TABLET) COA SH632138\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB MAROON (BHN BAKU PEWARNA TABLET) COA SH632138\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH631398\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH631398\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BLUE (BHN BAKU PEWARNA TABLET) COA SH631400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BLUE (BHN BAKU PEWARNA TABLET) COA SH631400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH631380\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH631380\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH631379\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH631379\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH631378\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH631378\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH631377\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH631377\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II BLUE (BHN BAKU PEWARNA TABLET) COA SH631403\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II BLUE (BHN BAKU PEWARNA TABLET) COA SH631403\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH632051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH632051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH632239\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH632239\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH632096\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH632096\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH631461\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH631461\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEG 400 (BAHAN BAKU KOSMETIK) COA.AKW0000227\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39072010\", \"uraian\": \"PEG 400 (BAHAN BAKU KOSMETIK) COA.AKW0000227\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYPOL 980 (20KG) BAHAN BAKU KOSMETIK, COA 11520019, 11520020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39069099\", \"uraian\": \"ACRYPOL 980 (20KG) BAHAN BAKU KOSMETIK, COA 11520019, 11520020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MOXIFLOXACIN HYDROCHLORIDE(BHN BAKU OBAT) COA MP0050719\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334990\", \"uraian\": \"MOXIFLOXACIN HYDROCHLORIDE(BHN BAKU OBAT) COA MP0050719\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMWITOR (R) GMIS (BAHAN BAKU KOSMETIK) COA 004053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"IMWITOR (R) GMIS (BAHAN BAKU KOSMETIK) COA 004053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA DOC1532021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"SODIUM CARBONATE IPH (BHN BAKU OBAT) COA DOC1532021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 121910045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28365010\", \"uraian\": \"VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 121910045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHARMABURST (R) C1 (BHN BAKU OBAT) COA 122000126\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069099\", \"uraian\": \"PHARMABURST (R) C1 (BHN BAKU OBAT) COA 122000126\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN MINERAL PREMIX FOR BISCUIT (BHN BAKU MAKANAN), COA XW92006379\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN MINERAL PREMIX FOR BISCUIT (BHN BAKU MAKANAN), COA XW92006379\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED GRADE P) BHN BAKU OBAT,COA M597141, M597153\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED GRADE P) BHN BAKU OBAT,COA M597141, M597153\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINC SULFATE 1-HYDRATE, POWDER ,PH EUR 10.ED(BHN BAKU OBAT) COA 3080021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"ZINC SULFATE 1-HYDRATE, POWDER ,PH EUR 10.ED(BHN BAKU OBAT) COA 3080021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYCLOSERINE USP ( BHN BAKU OBAT) COA CCLU200004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232010\", \"uraian\": \"CYCLOSERINE USP ( BHN BAKU OBAT) COA CCLU200004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIPROLIDINE HCL USP (BHN BAKU OBAT) COA 2-KI-A-0020719\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"TRIPROLIDINE HCL USP (BHN BAKU OBAT) COA 2-KI-A-0020719\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E50 PREMIUM LV HYDROXYPROPYL ...(BHN BAKU PEWARNA TABLET)COA D011J4NL02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E50 PREMIUM LV HYDROXYPROPYL ...(BHN BAKU PEWARNA TABLET)COA D011J4NL02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180JCF001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180JCF001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 27/50 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA MTP16020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 27/50 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA MTP16020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID PPL-600 (BHN BAKU OBAT) COA 577200-2200227/001-005 (5)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232010\", \"uraian\": \"LIPOID PPL-600 (BHN BAKU OBAT) COA 577200-2200227/001-005 (5)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISONE USP42 (BHN BAKU OBAT) COA NPD200308\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISONE USP42 (BHN BAKU OBAT) COA NPD200308\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISONE USP42 (BHN BAKU OBAT) COA NPD191008,NPD200702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISONE USP42 (BHN BAKU OBAT) COA NPD191008,NPD200702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANTOPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT, COA APSS20001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"PANTOPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT, COA APSS20001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA 8MT200448\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30032000\", \"uraian\": \"STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA 8MT200448\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET), COA DT703675\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPAGLOS WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET), COA DT703675\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX MAROON (BHN BAKU PEWARNA TABLET), COA DT704050\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX MAROON (BHN BAKU PEWARNA TABLET), COA DT704050\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPASPRAY YELLOW (BHN BAKU PEWARNA TABLET) COA DT704051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPASPRAY YELLOW (BHN BAKU PEWARNA TABLET) COA DT704051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00918691\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00918691\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB19110254\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB19110254\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HEXETIDINE (BAHAN BAKU OBAT) COA.FG20201113\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"HEXETIDINE (BAHAN BAKU OBAT) COA.FG20201113\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 202000011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 202000011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN ) COA MTP14720\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN ) COA MTP14720\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA MTP13120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA MTP13120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID DC 97PCT, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG2006003, 6004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID DC 97PCT, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG2006003, 6004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID 325 MESH, 20KG BOAIPO (BAHAN BAKU SUPLEMEN) COA HPD2003003089,3196,5146,5151\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID 325 MESH, 20KG BOAIPO (BAHAN BAKU SUPLEMEN) COA HPD2003003089,3196,5146,5151\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID 325 MESH ,20KG BOAIPO (BHN BAKU SUPLEMEN) COA HPG2005159,5164,5178,6010,6017..\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID 325 MESH ,20KG BOAIPO (BHN BAKU SUPLEMEN) COA HPG2005159,5164,5178,6010,6017..\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-190303-GS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-190303-GS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA200403\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA200403\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA200604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA200604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA200403\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA200403\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 2006035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"ACESULFAME K (BHN BAKU OBAT) COA 2006035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INOSITOL (BHN BAKU OBAT) COA 202006028, 202006029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"INOSITOL (BHN BAKU OBAT) COA 202006028, 202006029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20200419\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20200419\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CROSPOVIDONE XL (BHN BAKU OBAT) COA PP200601XL\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"CROSPOVIDONE XL (BHN BAKU OBAT) COA PP200601XL\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITICOLINE SODIUM (BHN BAKU OBAT) COA 200314\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"CITICOLINE SODIUM (BHN BAKU OBAT) COA 200314\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUCRALOSE (JKSS00) (BHN BAKU OBAT) COA 20040103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29321400\", \"uraian\": \"SUCRALOSE (JKSS00) (BHN BAKU OBAT) COA 20040103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GLUCOSAMINE HCL (BHN BAKU OBAT) COA JST200610\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"GLUCOSAMINE HCL (BHN BAKU OBAT) COA JST200610\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL02001647\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL02001647\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT20040041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT20040041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02004042,4043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02004042,4043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02004695\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02004695\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ91106279,82,83,84\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ91106279,82,83,84\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ91206294\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ91206294\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT20040048\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT20040048\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02004043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02004043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT20040045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT20040045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02004043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02004043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL02001647, 4498\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL02001647, 4498\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02004044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02004044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02004044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02004044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT20040048\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT20040048\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE02004044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE02004044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT20040048\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT20040048\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02004043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02004043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02004043, UE02004044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02004043, UE02004044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02004044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02004044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT19120019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT19120019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANGANESE (II)-SULFATE 1-HYDRATE (BHN BAKU OBAT) COA 3081906\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"MANGANESE (II)-SULFATE 1-HYDRATE (BHN BAKU OBAT) COA 3081906\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOPROFEN (BHN BAKU OBAT) COA 192131\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29183000\", \"uraian\": \"KETOPROFEN (BHN BAKU OBAT) COA 192131\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0140891\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0140891\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0143338\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0143338\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0136728\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0136728\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0143351\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0143351\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA PENGEMBANGAN MIKROORGANISME) BATCH 0136728\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA PENGEMBANGAN MIKROORGANISME) BATCH 0136728\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GRAM CRYSTAL VIOLET 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0140190\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GRAM CRYSTAL VIOLET 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0140190\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE CRYSTAL INOCULUM BROTH (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0086820\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"TUBE CRYSTAL INOCULUM BROTH (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0086820\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9361277\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9361277\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9361277\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9361277\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0013057\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0013057\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE OXFORD MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9364955\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE OXFORD MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9364955\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0079962\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0079962\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0091369\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0091369\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0002860\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0002860\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0097350\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0097350\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9337215\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9337215\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0147111\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0147111\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0105924\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0105924\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0042947\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0042947\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0050557\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0050557\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0125281\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0125281\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218538\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218538\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 002325\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 002325\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9309234\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9309234\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0070949\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0070949\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0091369, 9311217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0091369, 9311217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239282\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239282\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0107757\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0107757\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9343097\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9343097\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0030113\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0030113\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9287998\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9287998\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239319\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239319\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309312\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309312\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9337215\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9337215\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9315468\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9315468\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048064\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048064\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364957\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364957\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037499\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037499\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0008443, 0048007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0008443, 0048007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0062582\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0062582\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9310881\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9310881\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9324109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9324109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0107888\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0107888\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0083370\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0083370\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065756\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065756\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0037535\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0037535\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0107881\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0107881\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0135906\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0135906\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273839\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273839\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9353100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TCBS 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9353100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0009096\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0009096\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9231272\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9231272\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161680\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161680\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0013247\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0013247\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0077148\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0077148\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0097399\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0097399\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9295486\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9295486\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0062561,9225861\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0062561,9225861\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065878\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065878\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048064\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048064\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 0037535\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 0037535\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9353100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9353100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065975\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065975\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206968\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206968\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EOSIN METHYLENE BLUE AG HHT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9254786\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EOSIN METHYLENE BLUE AG HHT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9254786\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL SULFATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9280562\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LAURYL SULFATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9280562\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MR-VP BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9148534\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MR-VP BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9148534\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE KOSER CITRATE MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8054971\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE KOSER CITRATE MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8054971\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9015537\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9015537\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0090813\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0090813\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0021157\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0021157\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9364959\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9364959\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9339238\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9339238\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER LACTOPHENOL COTTON BLUE STAIN (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH BD1C118M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER LACTOPHENOL COTTON BLUE STAIN (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH BD1C118M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9206582\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9206582\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0009096\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0009096\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESTROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0030113\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DESTROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0030113\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH0048032,9315468\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH0048032,9315468\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9337215\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9337215\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9310881\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9310881\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0013247\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0013247\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CORTISONE ACETATE MICRONISED PH EUR JP (BHN BAKU OBAT) COA 1900971988\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"CORTISONE ACETATE MICRONISED PH EUR JP (BHN BAKU OBAT) COA 1900971988\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFADROXIL MONOHYDRATE POWDER (PURIDROX POWDER) BHN BAKU OBAT, COA B334690 S/D B334692, B334688\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFADROXIL MONOHYDRATE POWDER (PURIDROX POWDER) BHN BAKU OBAT, COA B334690 S/D B334692, B334688\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK)COA OSLP-112330\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK)COA OSLP-112330\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK)COA NMP-L-651329,NMP-L-062010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK)COA NMP-L-651329,NMP-L-062010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-030230\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-030230\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-021920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-021920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK)COA BIO-OSLP\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK)COA BIO-OSLP\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT20050053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT20050053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL02005627,5632,5641,5648\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL02005627,5632,5641,5648\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT20050056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT20050056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT20050002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT20050002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT20040058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT20040058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT20050049\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT20050049\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT20050053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT20050053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT20050053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT20050053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL02004603,4613,4620, 5627\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL02004603,4613,4620, 5627\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19060003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19060003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT20050123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT20050123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02004044, UE02004045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02004044, UE02004045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN), COA UE02004045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN), COA UE02004045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT20040096\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT20040096\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT19050002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT19050002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT20020009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT20020009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT20050968,970,971\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT20050968,970,971\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT20050002,50003,50004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT20050002,50003,50004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE ,25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ91206292\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE ,25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ91206292\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GEMCITABINE HYDROCHLORIDE (BAHAN BAKU OBAT) COA 200701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"GEMCITABINE HYDROCHLORIDE (BAHAN BAKU OBAT) COA 200701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 14730620,14750620\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 14730620,14750620\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE BP MICRONISED (BHN BAKU OBAT) COA 13650620,14700620,14710620,14720620...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE BP MICRONISED (BHN BAKU OBAT) COA 13650620,14700620,14710620,14720620...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIMETHOPRIM BP MICRONISED (BHN BAKU OBAT) COA TMP20040320\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"TRIMETHOPRIM BP MICRONISED (BHN BAKU OBAT) COA TMP20040320\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH633029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH633029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHARMACEUTICAL BOVINE GELATINE 150/08 ...(BAHAN BAKU OBAT ), COA 5131909595\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35030049\", \"uraian\": \"PHARMACEUTICAL BOVINE GELATINE 150/08 ...(BAHAN BAKU OBAT ), COA 5131909595\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0009780\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0009780\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9312760\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9312760\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9361990\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9361990\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80 (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0072634\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG L&P 80 (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0072634\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT(MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0099632,0113610\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT(MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0099632,0113610\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9284311\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9284311\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0037326\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0037326\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9312760\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9312760\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9340918\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9340918\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273671\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273671\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0015023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0015023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0009986...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0009986...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL VT ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0128384\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL VT ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0128384\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0015023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0015023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309244\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309244\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FOLIC ACID ASSAY MEDIUM 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9176696\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE FOLIC ACID ASSAY MEDIUM 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9176696\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL NOVOBIOCIN SUPPLEMENT 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0076485\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL NOVOBIOCIN SUPPLEMENT 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0076485\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0086427\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0086427\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8248932\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE B12 ASSAY MEDIUM USP 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8248932\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9273671\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9273671\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0121592\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0121592\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0154553\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0154553\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0148254\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D/E NEUTRALIZING BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0148254\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASAMINO ACIDS TECHNICAL 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0140445\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASAMINO ACIDS TECHNICAL 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0140445\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0132203\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0132203\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTONE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0042378\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTONE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0042378\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0132203\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0132203\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0132199\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0132199\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0112241\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0112241\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9035505\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9035505\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN SODIUM CRYSTALLINE STERILE (BHN BAKU OBAT) COA 25PEALQ0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN SODIUM CRYSTALLINE STERILE (BHN BAKU OBAT) COA 25PEALQ0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POMEGRANATE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA PUG2005L1,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"POMEGRANATE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA PUG2005L1,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAFFRON FLOWER HYDROGLYCENNED EXTRACT 80 (BHN BAKU KOSMETIK)COA CRS2004L1-GL80,SAMPLE NO COMM..\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SAFFRON FLOWER HYDROGLYCENNED EXTRACT 80 (BHN BAKU KOSMETIK)COA CRS2004L1-GL80,SAMPLE NO COMM..\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RICE MILK AQUEOUS EXTRACT (BHN BAKU KOSMETIK)COA ORSL1908L1-AQ,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"RICE MILK AQUEOUS EXTRACT (BHN BAKU KOSMETIK)COA ORSL1908L1-AQ,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRAPE SEED ORGANIC OIL (BHN BAKU KOSMETIK)COA VIVHV1905E1-ENBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GRAPE SEED ORGANIC OIL (BHN BAKU KOSMETIK)COA VIVHV1905E1-ENBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHLOROPHYLL POWDER (BHN BAKU KOSMETIK) COA CHLP2006E1-ES,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHLOROPHYLL POWDER (BHN BAKU KOSMETIK) COA CHLP2006E1-ES,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO190112, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO190112, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1907201172\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1907201172\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL02005802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL02005802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL02005802, 5806\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL02005802, 5806\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL02005806\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL02005806\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL02005815\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL02005815\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL02005815\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL02005815\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COATED ASCORBIC ACID TYPE EC,25KG BOX (BHN BAKU SUPLEMEN) COA TL02005709\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"COATED ASCORBIC ACID TYPE EC,25KG BOX (BHN BAKU SUPLEMEN) COA TL02005709\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ91206294 S/D 6297\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ91206294 S/D 6297\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU MAKANAN) COA TL02005737\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU MAKANAN) COA TL02005737\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL02005787,5795,5803\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL02005787,5795,5803\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT20060063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT20060063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19060003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19060003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT20040058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT20040058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT19050002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT19050002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19060003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19060003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT20040058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT20040058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT20050049\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT20050049\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02003029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02003029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02003029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02003029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02003029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02003029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ00209501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ00209501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOROLAC TROMETHAMOL/TROMETHAMINE (BHN BAKU OBAT) COA 20100147\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"KETOROLAC TROMETHAMOL/TROMETHAMINE (BHN BAKU OBAT) COA 20100147\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CIPROFLOXACIN HCL (BHN BAKU OBAT) COA HB00U2007001 S/D 7005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"CIPROFLOXACIN HCL (BHN BAKU OBAT) COA HB00U2007001 S/D 7005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENTRY POLYOX WSR 303 LEO NF (DOW) (BHN BAKU PEWARNA TABLET), COA D682K39RR5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"SENTRY POLYOX WSR 303 LEO NF (DOW) (BHN BAKU PEWARNA TABLET), COA D682K39RR5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENTRY POLYOX WSR 1105 LEO NF (DOW) BHN BAKU PEWARNA TABLET, COA D682JB7RD1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"SENTRY POLYOX WSR 1105 LEO NF (DOW) BHN BAKU PEWARNA TABLET, COA D682JB7RD1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENTRY POLYOX WSR N750 LEO NF (DOW) BHN BAKU UTK PEWARNA TABLET, COA D682I97RJ6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"SENTRY POLYOX WSR N750 LEO NF (DOW) BHN BAKU UTK PEWARNA TABLET, COA D682I97RJ6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT20060145, UT20060146\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT20060145, UT20060146\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH632214\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH632214\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH632216\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH632216\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH632217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH632217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH632239\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH632239\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH630961\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH630961\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH630415\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH630415\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY VIOLET (BHN BAKU PEWARNA TABLET) COA SH632200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY VIOLET (BHN BAKU PEWARNA TABLET) COA SH632200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH632409\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH632409\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA SH632202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA SH632202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH632215\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH632215\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH632201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH632201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH632219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH632219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GRAY (BHN BAKU PEWARNA TABLET) COA SH632203\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GRAY (BHN BAKU PEWARNA TABLET) COA SH632203\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 05062020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25081000\", \"uraian\": \"BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 05062020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY RED (BHN BAKU PEWARNA TABLET) COA SH632756\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY RED (BHN BAKU PEWARNA TABLET) COA SH632756\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET), COA DT704786\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX RED (BHN BAKU PEWARNA TABLET), COA DT704786\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET), COA DT704740\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPAGLOS WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET), COA DT704740\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE BLACK (BHN BAKU PEWARNA TABLET) COA DT704684\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE BLACK (BHN BAKU PEWARNA TABLET) COA DT704684\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX, 25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0919030007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX, 25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0919030007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ00303364, 85\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ00303364, 85\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW92006130,6131\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 C (BHN BAKU MAKANAN) COA XW92006130,6131\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW92006204, 6205\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 C (BHN BAKU MAKANAN) COA XW92006204, 6205\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT20030023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT20030023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20020045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20020045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ00303364\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ00303364\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20010007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20010007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB19119010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB19119010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ00303364\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ00303364\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT20020192,193\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT20020192,193\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYMARIN/ET (BHN BAKU SUPLEMEN) COA 20S0078402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILYMARIN/ET (BHN BAKU SUPLEMEN) COA 20S0078402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 32347/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 32347/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CURCUMA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 20S0091308\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CURCUMA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 20S0091308\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SERENOA REPENS PURIFIED EXT (BHN BAKU SUPLEMEN) COA 19S0245600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SERENOA REPENS PURIFIED EXT (BHN BAKU SUPLEMEN) COA 19S0245600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID S 67 F (BHN BAKU OBAT) COA 576200-2190033/013-017 (5), 576200-2190033/018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232010\", \"uraian\": \"LIPOID S 67 F (BHN BAKU OBAT) COA 576200-2190033/013-017 (5), 576200-2190033/018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA RBA180200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA RBA180200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NG 5 PCT-1,2 PROPYLENGLYCOLE 95% (BAHAN BAKU OBAT) COA 2005430\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"NG 5 PCT-1,2 PROPYLENGLYCOLE 95% (BAHAN BAKU OBAT) COA 2005430\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRAZINAMIDE EP/USP (BHN BAKU OBAT) COA WHOPZ 024 F 20 S/D WHOPZ 034 F 20\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"PYRAZINAMIDE EP/USP (BHN BAKU OBAT) COA WHOPZ 024 F 20 S/D WHOPZ 034 F 20\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA RBA1832000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA RBA1832000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMBROXOL HCL BP (BHN BAKU OBAT) COA AHM/20061 S/D AHM/20065\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"AMBROXOL HCL BP (BHN BAKU OBAT) COA AHM/20061 S/D AHM/20065\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU MAKANAN) COA TS00014835\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU MAKANAN) COA TS00014835\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 2030389,2030392,2051653\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"PARACETAMOL (BHN BAKU OBAT) COA 2030389,2030392,2051653\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY SGR RED (BHN BAKU PEWARNA OBAT) COA GA674963\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY SGR RED (BHN BAKU PEWARNA OBAT) COA GA674963\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 0,250 KG SAM (BHN BAKU KOSMETIK) COA 0220040007,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 0,250 KG SAM (BHN BAKU KOSMETIK) COA 0220040007,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC16620T\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101990\", \"uraian\": \"SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC16620T\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GRAM SAFRANIN 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0055111\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GRAM SAFRANIN 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0055111\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0140250\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0140250\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9309252\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9309252\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GRAM DECOLORIZER 250ML (MEDIA UTK PNGEMBANGAN MIKROORGANISME) BATCH 0077164\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GRAM DECOLORIZER 250ML (MEDIA UTK PNGEMBANGAN MIKROORGANISME) BATCH 0077164\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 040220,050220,130220,140220,170220,120220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 040220,050220,130220,140220,170220,120220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453662393\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453662393\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHOLINE L-BITARTRATE (BAHAN BAKU OBAT) COA.3020013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29231000\", \"uraian\": \"CHOLINE L-BITARTRATE (BAHAN BAKU OBAT) COA.3020013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP20053181, XP20053182\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP20053181, XP20053182\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-002-X, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-002-X, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 011420/006294\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 011420/006294\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANTOPRAZOLE SODIUM (STERILE) BAHAN BAKU OBAT, COA SI/PPZ/00360420\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"PANTOPRAZOLE SODIUM (STERILE) BAHAN BAKU OBAT, COA SI/PPZ/00360420\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC019-20-801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 200 (BHN BAKU OBAT) COA. LC019-20-801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC019-20-801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 200 (BHN BAKU OBAT) COA. LC019-20-801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2510420\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29391900\", \"uraian\": \"HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2510420\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 70 (BHN BAKU OBAT) COA L101841420\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 70 (BHN BAKU OBAT) COA L101841420\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA.0000071858\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA.0000071858\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA.0000071887,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA.0000071887,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H801 48PCT (BHN BAKU KOSMETIK) COA 0000071887, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H801 48PCT (BHN BAKU KOSMETIK) COA 0000071887, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H105 83PCT (BHN BAKU KOSMETIK) COA 0000071889, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H105 83PCT (BHN BAKU KOSMETIK) COA 0000071889, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H103 43PCT (BHN BAKU KOSMETIK), COA 0000071890,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H103 43PCT (BHN BAKU KOSMETIK), COA 0000071890,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK), COA 0000071891,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK), COA 0000071891,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA 0000071892,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA 0000071892,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU KOSMETIK) COA UT20050027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU KOSMETIK) COA UT20050027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA 20200629\""}, {"role": "assistant", "content": "{\"hs_code\" : \"11081200\", \"uraian\": \"CORN STARCH (BHN BAKU MAKANAN) COA 20200629\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ADSORB AFLA (BHN BAKU UNTUK PAKAN TERNAK) COA 149\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25081000\", \"uraian\": \"ADSORB AFLA (BHN BAKU UNTUK PAKAN TERNAK) COA 149\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLOMIPHENE CITRATE USP/EP (BHN BAKU OBAT ) COA 202003240245\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"CLOMIPHENE CITRATE USP/EP (BHN BAKU OBAT ) COA 202003240245\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOCUSATE SODIUM (BHN BAKU OBAT), COA SD0021906\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"DOCUSATE SODIUM (BHN BAKU OBAT), COA SD0021906\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NYSTATIN MICRONIZED ROW (BHN BAKU OBAT) COA C131423\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NYSTATIN MICRONIZED ROW (BHN BAKU OBAT) COA C131423\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLOTRIMAZOLE MICRONIZED (BHN BAKU OBAT ) COA 202006260309\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"CLOTRIMAZOLE MICRONIZED (BHN BAKU OBAT ) COA 202006260309\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLOPURINOL USP (BHN BAKU OBAT) COA 20024AY3ARII\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"ALLOPURINOL USP (BHN BAKU OBAT) COA 20024AY3ARII\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE A PELLETS (BHN BAKU OBAT) COA 19E4802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE A PELLETS (BHN BAKU OBAT) COA 19E4802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE AM PELLETS (BHN BAKU OBAT) COA 20E1507\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE AM PELLETS (BHN BAKU OBAT) COA 20E1507\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE BM PELLETS (BAHAN BAKU OBAT) COA 19E1009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE BM PELLETS (BAHAN BAKU OBAT) COA 19E1009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE NA PELLETS (BAHAN BAKU OBAT) COA 19E5205\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE NA PELLETS (BAHAN BAKU OBAT) COA 19E5205\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 20E0802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 20E0802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU MAKANAN) COA UT20020045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU MAKANAN) COA UT20020045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20010001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20010001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19090007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19090007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91113209\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91113209\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE,5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20020045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE,5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20020045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ91210344\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ91210344\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)BHN BAKU SUPLEMEN, COA UT20030193\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO)BHN BAKU SUPLEMEN, COA UT20030193\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT20010004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT20010004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ91210344, 345\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ91210344, 345\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM ASCORBATE,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB20030026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"CALCIUM ASCORBATE,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB20030026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ91210345\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ91210345\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92006263, XW92006264\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"V003400 (BHN BAKU MAKANAN) COA XW92006263, XW92006264\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92006272\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92006272\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20020045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20020045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12005014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12005014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ91210345\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ91210345\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM SELENITE IN CARRIER (BHN BAKU SUPLEMEN) COA 3085558\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28429010\", \"uraian\": \"SODIUM SELENITE IN CARRIER (BHN BAKU SUPLEMEN) COA 3085558\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIMAGNESIUM DICITRATE , ANHYDROUS (BHN BAKU SUPLEMEN) COA 3081933\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181590\", \"uraian\": \"TRIMAGNESIUM DICITRATE , ANHYDROUS (BHN BAKU SUPLEMEN) COA 3081933\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HUILE DE COPRAH RAFF GV 24/26 (BHN BAKU KOSMETIK)COA 20F2602\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15131910\", \"uraian\": \"HUILE DE COPRAH RAFF GV 24/26 (BHN BAKU KOSMETIK)COA 20F2602\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANGANESE (II)-SULFATE 1-HYDRATE (BHN BAKU SUPLEMEN) COA 3081905\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"MANGANESE (II)-SULFATE 1-HYDRATE (BHN BAKU SUPLEMEN) COA 3081905\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINC OXIDE ,POWDER, PH EUR.10 ED (BHN BAKU SUPLEMEN) COA 3085795\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28170010\", \"uraian\": \"ZINC OXIDE ,POWDER, PH EUR.10 ED (BHN BAKU SUPLEMEN) COA 3085795\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA VIV190701-BGBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA VIV190701-BGBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEPPERMINT ORGANIC FROM FRANCE DISTILLATE (SB) BHN BAKU MEPD200401-BIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PEPPERMINT ORGANIC FROM FRANCE DISTILLATE (SB) BHN BAKU MEPD200401-BIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-200701-GS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-200701-GS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROMAN CHAMOMILLE ORGANIC DISTILLATE 1:1 (SB) BHN BAKU KOSMETIK, COA ANND200401-BIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROMAN CHAMOMILLE ORGANIC DISTILLATE 1:1 (SB) BHN BAKU KOSMETIK, COA ANND200401-BIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAFFLOWER REFINED OIL (BHN BAKU KOSMETIK) COA CARHR200202-DW\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SAFFLOWER REFINED OIL (BHN BAKU KOSMETIK) COA CARHR200202-DW\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LICORICE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA GLG190401-BGBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LICORICE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA GLG190401-BGBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA VIV190701-BGBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA VIV190701-BGBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLOWER ACIDS (BHN BAKU KOSMETIK) COA HS200601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"FLOWER ACIDS (BHN BAKU KOSMETIK) COA HS200601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 10 PREMIUM ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D184K25021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 10 PREMIUM ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D184K25021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 20 PREMIUM ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D184J9N021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 20 PREMIUM ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D184J9N021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102069005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102069005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000194, 195\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000194, 195\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000193, 195\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000193, 195\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 BHN BAKU OBAT, COA 122000195\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 BHN BAKU OBAT, COA 122000195\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA D02711UP\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA D02711UP\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA.0000072011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA.0000072011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTAZIDIME BUFFERED (BHN BAKU OBAT) COA T200300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTAZIDIME BUFFERED (BHN BAKU OBAT) COA T200300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA T100600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA T100600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED) BHN BAKU OBAT, COA M532525,587,616,617\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED) BHN BAKU OBAT, COA M532525,587,616,617\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX POWDER) ,BHN BAKU OBAT, COA M484611\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE (PURIMOX POWDER) ,BHN BAKU OBAT, COA M484611\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED) COA M532552\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED) COA M532552\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 20B0037300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 20B0037300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN /PHOSPHOPILIDS (BAHAN BAKU SUPLEMEN) COA 20B0067700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILYBIN /PHOSPHOPILIDS (BAHAN BAKU SUPLEMEN) COA 20B0067700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 20B0018800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 20B0018800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 20B0037700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 20B0037700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 20B0037800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 20B0037800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 20B0037900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 20B0037900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 20B0038000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 20B0038000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 19B0110300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 19B0110300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFADROXIL MONOHYDRATE POWDER (PURIDROX POWDER) BHN BAKU OBAT, COA B334695,696,697\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFADROXIL MONOHYDRATE POWDER (PURIDROX POWDER) BHN BAKU OBAT, COA B334695,696,697\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75HP (BHN BAKU SUPLEMEN), COA WB19090223\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75HP (BHN BAKU SUPLEMEN), COA WB19090223\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75HP (BHN BAKU SUPLEMEN), COA WB1909023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75HP (BHN BAKU SUPLEMEN), COA WB1909023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH632783\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH632783\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH633089\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH633089\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 PINK (BHN BAKU PEWARNA TABLET) COA SH632757\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 PINK (BHN BAKU PEWARNA TABLET) COA SH632757\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY EZ CLEAR (BHN BAKU PEWARNA TABLET) COA SH632746\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY EZ CLEAR (BHN BAKU PEWARNA TABLET) COA SH632746\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH632194\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH632194\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II BLUE (BHN BAKU PEWARNA TABLET) COA SH632758\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II BLUE (BHN BAKU PEWARNA TABLET) COA SH632758\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH633169\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH633169\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH632749\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH632749\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP2010/USP41 (BHN BAKU OBAT) COA NED200509, NED200511\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP2010/USP41 (BHN BAKU OBAT) COA NED200509, NED200511\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA ND190702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP93 (BHN BAKU OBAT) COA ND190702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISOLONE BP2018/USP42 (BHN BAKU OBAT) COA NPL200310\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISOLONE BP2018/USP42 (BHN BAKU OBAT) COA NPL200310\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0190520\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0190520\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIOBENEFITY (PLANT EXTRACT FOR COSMETIC) BHN BAKU KOSMETIK, COA 200215\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BIOBENEFITY (PLANT EXTRACT FOR COSMETIC) BHN BAKU KOSMETIK, COA 200215\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSE HIPS LIQUID B (PLANT EXTRACT FOR COSMETIC)BHN BAKU KOSMETIK) COA 200964\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ROSE HIPS LIQUID B (PLANT EXTRACT FOR COSMETIC)BHN BAKU KOSMETIK) COA 200964\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EMALEX PEIS-10EX (SURFACTANT FOR COSMETIC)BHN BAKU KOSMETIK) COA 2002-27\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34021310\", \"uraian\": \"EMALEX PEIS-10EX (SURFACTANT FOR COSMETIC)BHN BAKU KOSMETIK) COA 2002-27\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EMALEX GWIS-320 (SURFACTANT FOR COSMETIC)BHN BAKU KOSMETIK, COA 1-1034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34021310\", \"uraian\": \"EMALEX GWIS-320 (SURFACTANT FOR COSMETIC)BHN BAKU KOSMETIK, COA 1-1034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTO COLLAGE B(N) PLANT EXTRACT FOR COSMETIC (BHN BAKU KOSMETIK), COA 192760,200610\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHYTO COLLAGE B(N) PLANT EXTRACT FOR COSMETIC (BHN BAKU KOSMETIK), COA 192760,200610\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPRINTMINT (PLANT EXTRACT FOR COSMETIC) BHN BAKU KOSMETIK,COA 200839\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SPRINTMINT (PLANT EXTRACT FOR COSMETIC) BHN BAKU KOSMETIK,COA 200839\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IZAYOI (PLANT EXTRACT FOR COSMETIC) BHN BAKU KOSMETIK,COA 193027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"IZAYOI (PLANT EXTRACT FOR COSMETIC) BHN BAKU KOSMETIK,COA 193027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 2AX2006039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 2AX2006039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA MTP19120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA MTP19120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLOWLAC (R) 100H (BHN BAKU OBAT) COA. L105810720\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"FLOWLAC (R) 100H (BHN BAKU OBAT) COA. L105810720\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103862120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103862120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPSULAC (R) 60 (BHN BAKU OBAT) COA L100411820\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"CAPSULAC (R) 60 (BHN BAKU OBAT) COA L100411820\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CELLACTOSE (R) 80 (BHN BAKU OBAT) COA L100462120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"CELLACTOSE (R) 80 (BHN BAKU OBAT) COA L100462120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABCOAT TC WHITE (BHN BAKU PEWARNA TABLET) COA GA674053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"TABCOAT TC WHITE (BHN BAKU PEWARNA TABLET) COA GA674053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY SGR TRANSLUCENT (BHN BAKU PEWARNA TABLET) COA GA674052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY SGR TRANSLUCENT (BHN BAKU PEWARNA TABLET) COA GA674052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY SGR CLEAR (BHN BAKU PEWARNA TABLET) COA GA674054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY SGR CLEAR (BHN BAKU PEWARNA TABLET) COA GA674054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 180808\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 180808\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELOT 64 (BAHAN BAKU OBAT) COA 180160\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELOT 64 (BAHAN BAKU OBAT) COA 180160\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHARMACEUTICAL BOVINE GELATINE 150/08 ...(BAHAN BAKU OBAT ), COA 5131906514, 5131909595\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35030049\", \"uraian\": \"PHARMACEUTICAL BOVINE GELATINE 150/08 ...(BAHAN BAKU OBAT ), COA 5131906514, 5131909595\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CATECHINS (TEA EXTRACT) (BHN BAKU SUPLEMEN KESEHATAN), COA 002211\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CATECHINS (TEA EXTRACT) (BHN BAKU SUPLEMEN KESEHATAN), COA 002211\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN), COA WB20070514,515\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN), COA WB20070514,515\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SOYA LECITHIN (BHN BAKU MAKANAN) COA TY2200615-25\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232010\", \"uraian\": \"SOYA LECITHIN (BHN BAKU MAKANAN) COA TY2200615-25\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINC SULFATE 1-HYDRATE,POWDER,PH.EUR.10.ED (BHN BAKU SUPLEMEN) COA 3052430\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"ZINC SULFATE 1-HYDRATE,POWDER,PH.EUR.10.ED (BHN BAKU SUPLEMEN) COA 3052430\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT MINERAL PREMIX FOR MATERNAL BISCUIT (BHN BAKU MAKANAN), COA XW92007025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VIT MINERAL PREMIX FOR MATERNAL BISCUIT (BHN BAKU MAKANAN), COA XW92007025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LISINOPRIL DIHYDRATE (BAHAN BAKU OBAT) COA C5170-19-005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"LISINOPRIL DIHYDRATE (BAHAN BAKU OBAT) COA C5170-19-005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMITOSE R (BHN BAKU KOSMETIK) COA FDC\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AMITOSE R (BHN BAKU KOSMETIK) COA FDC\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EDIBLE BOVINE GELATINE 140/20 HAL(BAHAN BAKU OBAT ), COA 5002007536,7560\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35030049\", \"uraian\": \"EDIBLE BOVINE GELATINE 140/20 HAL(BAHAN BAKU OBAT ), COA 5002007536,7560\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELATINE RXL 210 BLOOM 18 (BHN BAKU OBAT) COA 5001901482\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35030049\", \"uraian\": \"GELATINE RXL 210 BLOOM 18 (BHN BAKU OBAT) COA 5001901482\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EDIBLE BOVINE GELATINE 180/20 HAL (BHN BAKU OBAT) COA 5002003108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35030049\", \"uraian\": \"EDIBLE BOVINE GELATINE 180/20 HAL (BHN BAKU OBAT) COA 5002003108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECHINACEA ANG.DRY PURIF.EX (BHN BAKU SUPLEMEN) COA 20S0152800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ECHINACEA ANG.DRY PURIF.EX (BHN BAKU SUPLEMEN) COA 20S0152800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECHINACEA ANG.DRY PURIF.EX (BHN BAKU SUPLEMEN) COA 20S0152800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ECHINACEA ANG.DRY PURIF.EX (BHN BAKU SUPLEMEN) COA 20S0152800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIFE'S DHA (TM) S35-O300, 5KG ALUF (BHN BAKU SUPLEMEN) COA VY00365010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"LIFE'S DHA (TM) S35-O300, 5KG ALUF (BHN BAKU SUPLEMEN) COA VY00365010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIFE'SDHA S35-O100, 5KG ALUF (BHN BAKU SUPLEMEN) COA VY00339616\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"LIFE'SDHA S35-O100, 5KG ALUF (BHN BAKU SUPLEMEN) COA VY00339616\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENTRY POLYOX WSR 303 LEO NF (DOW) (BHN BAKU PEWARNA TABLET), COA D682K25RR3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"SENTRY POLYOX WSR 303 LEO NF (DOW) (BHN BAKU PEWARNA TABLET), COA D682K25RR3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRISODIUMCITRATE DIHYDRATE FINE GRANULAR (BHN BAKU MAKANAN), COA UJ028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"TRISODIUMCITRATE DIHYDRATE FINE GRANULAR (BHN BAKU MAKANAN), COA UJ028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU MAKANAN) COA UJ027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU MAKANAN) COA UJ027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRISODIUMCITRATE DIHYDRATE FINE GRANULAR (BHN BAKU MAKANAN), COA UJ027 ,UJ028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"TRISODIUMCITRATE DIHYDRATE FINE GRANULAR (BHN BAKU MAKANAN), COA UJ027 ,UJ028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU MAKANAN) COA UJ026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU MAKANAN) COA UJ026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ESOMEPRAZOLE MAGNESIUM USP (BHN BAKU OBAT) COAESM/2007290\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"ESOMEPRAZOLE MAGNESIUM USP (BHN BAKU OBAT) COAESM/2007290\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN542450\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN542450\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN542509\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN542509\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN542479\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN542479\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN542451\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN542451\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRANSCUTOL P (BHN BAKU OBAT) COA 179566\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TRANSCUTOL P (BHN BAKU OBAT) COA 179566\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TEFOSE 63 (BHN BAKU OBAT) COA 180034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TEFOSE 63 (BHN BAKU OBAT) COA 180034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELOT 64 (BAHAN BAKU OBAT) COA 180160\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELOT 64 (BAHAN BAKU OBAT) COA 180160\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRECIROL ATO 5 (BAHAN BAKU OBAT) COA 180609\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"PRECIROL ATO 5 (BAHAN BAKU OBAT) COA 180609\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX BALITA (BHN BAKU MAKANAN) COA XW92006266, XW92006267\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX BALITA (BHN BAKU MAKANAN) COA XW92006266, XW92006267\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070-C3 (BHN BAKU MAKANAN) COA XW92006294, XW92006295\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070-C3 (BHN BAKU MAKANAN) COA XW92006294, XW92006295\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN MINERAL PREMIX INSTANT DRINK (BHN BAKU MAKANAN) COA XW92007024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN MINERAL PREMIX INSTANT DRINK (BHN BAKU MAKANAN) COA XW92007024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92007026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92007026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT20030067\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT20030067\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20010006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20010006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL-ACETATE, 20KG JUG (BHN BAKU SUPLEMEN) COA XH20200401\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL-ACETATE, 20KG JUG (BHN BAKU SUPLEMEN) COA XH20200401\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL (R) HS, 20KG BOX (BHN BAKU KOSMETIK) COA HS0730520\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL (R) HS, 20KG BOX (BHN BAKU KOSMETIK) COA HS0730520\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01906809\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01906809\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01906809\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01906809\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT20040017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT20040017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ91206297\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ91206297\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT20040017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT20040017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0,1PCT WS (BHN BAKU MAKANAN) COA UT20040017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0,1PCT WS (BHN BAKU MAKANAN) COA UT20040017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20010002,UT20010003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20010002,UT20010003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2001002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2001002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT20050020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT20050020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT20050020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT20050020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 (TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT20050020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 (TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT20050020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT20060146, 154\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT20060146, 154\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT20060154\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT20060154\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101852720\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101852720\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA LC019-20-801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 200 (BHN BAKU OBAT) COA LC019-20-801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA HD0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN ) COA MTP16320\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA HD0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN ) COA MTP16320\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA DOC1882021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"SODIUM CARBONATE IPH (BHN BAKU OBAT) COA DOC1882021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000254\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000254\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHENYLEPHRINE HCL USP (BHN BAKU OBAT) COA 2-IL-D-0980620\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29225090\", \"uraian\": \"PHENYLEPHRINE HCL USP (BHN BAKU OBAT) COA 2-IL-D-0980620\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMBROXOL HYDROCHLORIDE (BAHAN BAKU OBAT), COA VBNG200194\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"AMBROXOL HYDROCHLORIDE (BAHAN BAKU OBAT), COA VBNG200194\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH633189\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH633189\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH632784\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH632784\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH633190\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH633190\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH633187\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH633187\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH633194\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH633194\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH633205\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH633205\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH633200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH633200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH633169\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH633169\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH633261\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH633261\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH633185\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH633185\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH633193\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH633193\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH633204\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH633204\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY RED (BHN BAKU PEWARNA TABLET) COA SH633188\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY RED (BHN BAKU PEWARNA TABLET) COA SH633188\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 PINK (BHN BAKU PEWARNA TABLET) COA SH632757\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 PINK (BHN BAKU PEWARNA TABLET) COA SH632757\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH632965\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH632965\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC16420T\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101990\", \"uraian\": \"SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC16420T\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 200, 25KG BAG (BHN BAKU OBAT) COA. LC024-20-801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 200, 25KG BAG (BHN BAKU OBAT) COA. LC024-20-801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECOGEL TM-5KG (BHN BAKU KOSMETIK) COA 2013701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ECOGEL TM-5KG (BHN BAKU KOSMETIK) COA 2013701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMISOL TRIO TM -5KG (BHN BAKU KOSMETIK) COA 1936114\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AMISOL TRIO TM -5KG (BHN BAKU KOSMETIK) COA 1936114\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSALITY TM- 1KG (BHN BAKU KOSMETIK) COA 2012801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROSALITY TM- 1KG (BHN BAKU KOSMETIK) COA 2012801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTENSO TM- 5KG (BHN BAKU KOSMETIK) COA 1936116\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTENSO TM- 5KG (BHN BAKU KOSMETIK) COA 1936116\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXO-T TM -1KG (BHN BAKU KOSMETIK) COA 715017666K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EXO-T TM -1KG (BHN BAKU KOSMETIK) COA 715017666K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SWT 7TM H -1KG (BHN BAKU KOSMETIK) COA 0029801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SWT 7TM H -1KG (BHN BAKU KOSMETIK) COA 0029801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE TODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0050557\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE STERILE TODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0050557\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0125281\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0125281\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0013180,9309234\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0013180,9309234\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0070949,0079962\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0070949,0079962\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0091369\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0091369\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9239282\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9239282\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0002860,0030113\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0002860,0030113\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D-MANNITOL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0013917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D-MANNITOL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0013917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G(MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH0065878,9239319\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G(MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH0065878,9239319\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309312\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309312\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0042333,9337215\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0042333,9337215\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9364958\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9364958\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0037499,0126889\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0037499,0126889\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0062582\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0062582\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9310881\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9310881\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037535\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037535\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9353100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9353100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFIDE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0009096\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BISMUTH SULFIDE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0009096\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161680\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161680\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0013247\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0013247\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0077148\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0077148\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0097399\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0097399\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH0125228,0161496\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH0125228,0161496\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0042947\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0042947\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0035732\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0035732\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9337386\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9337386\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE CRYSTAL INOCULUM BROTH (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0086820\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"TUBE CRYSTAL INOCULUM BROTH (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0086820\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0058279\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0058279\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239282\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239282\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0174577\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0174577\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037535\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037535\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9353100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9353100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0135906\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0135906\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0009096\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0009096\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0147207\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0147207\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BIGGY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0093712\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BIGGY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0093712\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8206968\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE COLUMBIA AGAR BASE 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8206968\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0126958\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0126958\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9015557\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9015557\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MR-VP MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9354355\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MR-VP MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9354355\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RHAMNOSE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0154527\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RHAMNOSE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0154527\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309193\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309193\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MED 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9112920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MED 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9112920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MICRO ASSAY CULTURE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025933\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MICRO ASSAY CULTURE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025933\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0079804\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0079804\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST NITROGEN BASE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0153180\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE YEAST NITROGEN BASE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0153180\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B03C073M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B03C073M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE OF BASAL MEDIUM 500GR(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048956\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE OF BASAL MEDIUM 500GR(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048956\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST MOLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065956\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE YEAST MOLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065956\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9324170\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9324170\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0161496\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0161496\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GASPAK EZ LARGE INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7336258010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"GASPAK EZ LARGE INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7336258010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0175457\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0175457\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0161496\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0161496\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9295486\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9295486\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC /NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0042947\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ENTERIC /NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0042947\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0196591\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M-GREEN YEAST AND MOLD BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0196591\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0196591\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M-GREEN YEAST AND MOLD BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0196591\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMEN(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0120569\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMEN(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0120569\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I&VI LYO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0044798\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I&VI LYO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0044798\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0034814\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0034814\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9273671\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9273671\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9338680\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9338680\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065943\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065943\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0196591\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M-GREEN YEAST AND MOLD BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0196591\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0041756\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0041756\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0041756\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0041756\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL FRASER BROTH SUPPLEMENT 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0120831\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL FRASER BROTH SUPPLEMENT 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0120831\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0037338\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0037338\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FOLIC ACID ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9176696\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE FOLIC ACID ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9176696\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 00655855\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 00655855\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0078873\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0078873\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0119320\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0119320\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0121592\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0121592\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0105076\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0105076\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOBACILLI AGAR AOAC 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9339176\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOBACILLI AGAR AOAC 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9339176\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8248932\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8248932\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM CARBONATE DC TYPE CS90 PHARMA (BHN BAKU OBAT) COA 202000083\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28365010\", \"uraian\": \"CALCIUM CARBONATE DC TYPE CS90 PHARMA (BHN BAKU OBAT) COA 202000083\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 202000199\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 202000199\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 INF OIL, 4,5KG PJUG (BHN BAKU SUPLEMEN) COA TS00014967\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 INF OIL, 4,5KG PJUG (BHN BAKU SUPLEMEN) COA TS00014967\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 2008131314\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29322090\", \"uraian\": \"SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 2008131314\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYPROHEPTADINE HCL BP/PH.EUR (BHN BAKU OBAT) COA CYP/05201006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"CYPROHEPTADINE HCL BP/PH.EUR (BHN BAKU OBAT) COA CYP/05201006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX2008007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX2008007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIFE'S ARA (TM) '12' N-6 ARA POWDER (BHN BAKU MAKANAN) COA WB20010367\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"LIFE'S ARA (TM) '12' N-6 ARA POWDER (BHN BAKU MAKANAN) COA WB20010367\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM LV HYDROXYPROPYL ...(BHN BAKU PEWARNA TABLET)COA D0180K1Q002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM LV HYDROXYPROPYL ...(BHN BAKU PEWARNA TABLET)COA D0180K1Q002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 10 PREMIUM ETHYLCELLULOSE... (BHN BAKU PEWARNA TABLET) COA D184J7Q021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 10 PREMIUM ETHYLCELLULOSE... (BHN BAKU PEWARNA TABLET) COA D184J7Q021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M-31.0PCT (BHN BAKU OBAT) COA 102029017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MG HYD PASTE USP TYPE M-31.0PCT (BHN BAKU OBAT) COA 102029017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA200604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA200604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA200604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA200604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO200101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO200101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WITCH HAZEL ORGANIC DISTILLATE 1:10 (BHN BAKU KOSMETIK), COA PAG-CO200101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"WITCH HAZEL ORGANIC DISTILLATE 1:10 (BHN BAKU KOSMETIK), COA PAG-CO200101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIGELINE (BHN BAKU KOSMETIK) COA KA200502-B\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KIGELINE (BHN BAKU KOSMETIK) COA KA200502-B\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COPPER (II) GLUCONATE, FINE POWDER, USP 43 (BHN BAKU SUPLEMEN) COA 3089250\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"COPPER (II) GLUCONATE, FINE POWDER, USP 43 (BHN BAKU SUPLEMEN) COA 3089250\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOL SODIUM (BAHAN BAKU UNTUK PAKAN TERNAK) COA 2006936\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331900\", \"uraian\": \"METAMIZOL SODIUM (BAHAN BAKU UNTUK PAKAN TERNAK) COA 2006936\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYL SULFONYL METHANE (BAHAN BAKU OBAT) COA 20200806\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"METHYL SULFONYL METHANE (BAHAN BAKU OBAT) COA 20200806\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 2007059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"ACESULFAME K (BHN BAKU OBAT) COA 2007059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20200716\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20200716\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAFFEINE (BHN BAKU OBAT) COA 2005897, 20071314, 20071316\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29393000\", \"uraian\": \"CAFFEINE (BHN BAKU OBAT) COA 2005897, 20071314, 20071316\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-LYSINE HCL (BHN BAKU OBAT) COA 2012270725\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224100\", \"uraian\": \"L-LYSINE HCL (BHN BAKU OBAT) COA 2012270725\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000256\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000256\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT), COA 122000255,256\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT), COA 122000255,256\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE TODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0050557\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE STERILE TODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0050557\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0125281\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0125281\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0013180,9309234\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0013180,9309234\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0070949,0079962\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0070949,0079962\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0091369\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0091369\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9239282\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9239282\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0002860,0030113\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0002860,0030113\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D-MANNITOL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0013917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D-MANNITOL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0013917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G(MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH0065878,9239319\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G(MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH0065878,9239319\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309312\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309312\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0042333,9337215\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0042333,9337215\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9364958\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9364958\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0037499,0126889\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0037499,0126889\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0062582\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0062582\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9310881\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9310881\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037535\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037535\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9353100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9353100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFIDE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0009096\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BISMUTH SULFIDE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0009096\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161680\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161680\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0013247\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0013247\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0077148\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0077148\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0097399\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0097399\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH0125228,0161496\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH0125228,0161496\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0042947\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0042947\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0035732\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0035732\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9337386\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9337386\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE CRYSTAL INOCULUM BROTH (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0086820\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"TUBE CRYSTAL INOCULUM BROTH (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0086820\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0058279\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0058279\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239282\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239282\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0174577\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0174577\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037535\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037535\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9353100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9353100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0135906\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0135906\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0009096\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0009096\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0147207\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0147207\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BIGGY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0093712\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BIGGY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0093712\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8206968\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE COLUMBIA AGAR BASE 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8206968\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0126958\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0126958\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9015557\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9015557\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MR-VP MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9354355\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MR-VP MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9354355\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RHAMNOSE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0154527\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RHAMNOSE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0154527\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309193\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309193\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MED 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9112920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MED 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9112920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MICRO ASSAY CULTURE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025933\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MICRO ASSAY CULTURE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025933\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0079804\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0079804\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST NITROGEN BASE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0153180\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE YEAST NITROGEN BASE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0153180\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B03C073M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B03C073M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE OF BASAL MEDIUM 500GR(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048956\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE OF BASAL MEDIUM 500GR(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048956\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST MOLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065956\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE YEAST MOLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065956\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9324170\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9324170\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0161496\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0161496\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GASPAK EZ LARGE INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7336258010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"GASPAK EZ LARGE INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7336258010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0175457\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0175457\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0161496\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0161496\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9295486\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9295486\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC /NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0042947\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ENTERIC /NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0042947\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS LACTATE 2-HYDRATE POWDER (BHN BAKU MAKANAN) COA 3077408\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181200\", \"uraian\": \"FERROUS LACTATE 2-HYDRATE POWDER (BHN BAKU MAKANAN) COA 3077408\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW92006358,6359\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 C (BHN BAKU MAKANAN) COA XW92006358,6359\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20020027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20020027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ00303386\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ00303386\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20020027,UT20040031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20020027,UT20040031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20040031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20040031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20010002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20010002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT20030193\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT20030193\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ00303386\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ00303386\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92006346, XW92006347\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"V003400 (BHN BAKU MAKANAN) COA XW92006346, XW92006347\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 90911, 200624\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33012920\", \"uraian\": \"AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 90911, 200624\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 200510\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"OILESS'CITY TM (BHN BAKU KOSMETIK) COA 200510\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 90802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33012920\", \"uraian\": \"AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 90802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD(BHN BAKU MAKANAN) COA UT20050022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM)'10' N-3 INF POWDER S/SD(BHN BAKU MAKANAN) COA UT20050022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT20050022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT20050022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT20050022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT20050022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT20050022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT20050022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02005742\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02005742\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2001016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2001016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02006056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02006056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL02005742\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL02005742\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL02005742\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL02005742\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL02005742, TL02007758\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL02005742, TL02007758\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA.0000072033\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA.0000072033\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK)COA BAG-010340\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK)COA BAG-010340\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK)COA MCP-N-032630\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK)COA MCP-N-032630\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SENAS (BHN BAKU KOSMETIK) COA NASB-012020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SENAS (BHN BAKU KOSMETIK) COA NASB-012020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-021920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-021920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND CACTUS EXTRACT (BHN BAKU KOSMETIK)COA CAB-021340\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND CACTUS EXTRACT (BHN BAKU KOSMETIK)COA CAB-021340\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND TEA TREE EXTRACT (BHN BAKU KOSMETIK) COA MASL-030260\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND TEA TREE EXTRACT (BHN BAKU KOSMETIK) COA MASL-030260\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NECTAR DE MATCHA FEMA P114 6 (BHN BAKU KOSMETIK) COA 0000040122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"NECTAR DE MATCHA FEMA P114 6 (BHN BAKU KOSMETIK) COA 0000040122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000040123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000040123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA 0000040124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA 0000040124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLAISANCE P116808 (BHN BAKU KOSMETIK) COA 0000042817\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"PLAISANCE P116808 (BHN BAKU KOSMETIK) COA 0000042817\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 PINK (BHN BAKU PEWARNA TABLET) COA SH633396\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 PINK (BHN BAKU PEWARNA TABLET) COA SH633396\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH633414\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH633414\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH633405\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH633405\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH633416\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH633416\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH633408\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH633408\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH633419\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH633419\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB RED (BHN BAKU PEWARNA TABLET) COA SH633392\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB RED (BHN BAKU PEWARNA TABLET) COA SH633392\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH633406\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH633406\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH633415\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH633415\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH632784\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH632784\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH633409\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH633409\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH633410\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH633410\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH633393\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH633393\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH633395\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH633395\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH633394\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH633394\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH633417\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH633417\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH633407\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH633407\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH6341242\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH6341242\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPASPRAY YELLOW (BHN BAKU PEWARNA TABLET), COA DT705767\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPASPRAY YELLOW (BHN BAKU PEWARNA TABLET), COA DT705767\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPATINT BLUE (BHN BAKU PEWARNA TABLET), COA DT705768\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPATINT BLUE (BHN BAKU PEWARNA TABLET), COA DT705768\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIPEMIDIC ACID (BHN BAKU OBAT) COA 20018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"PIPEMIDIC ACID (BHN BAKU OBAT) COA 20018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2007002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28352510\", \"uraian\": \"DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2007002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COPPER SULPHATE PENTAHYDRATE (BHN BAKU PAKAN TERNAK) COA N93\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332500\", \"uraian\": \"COPPER SULPHATE PENTAHYDRATE (BHN BAKU PAKAN TERNAK) COA N93\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0170540\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0170540\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0162138\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0162138\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0157786\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0157786\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA PENGEMBANGAN MIKROORGANISME) BATCH 0157830\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA PENGEMBANGAN MIKROORGANISME) BATCH 0157830\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 200, 25KG BAG (BHN BAKU OBAT) COA. LC024-20-801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 200, 25KG BAG (BHN BAKU OBAT) COA. LC024-20-801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 200, 25KG BAG (BHN BAKU OBAT) COA. LC024-20-801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 200, 25KG BAG (BHN BAKU OBAT) COA. LC024-20-801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CETIRIZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA 20010CZ6RII\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"CETIRIZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA 20010CZ6RII\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-200603\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-200603\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINC SULFATE 7-HYDRATE,CRYST,PH.EUR.10.ED (BHN BAKU SUPLEMEN) COA 3079705\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"ZINC SULFATE 7-HYDRATE,CRYST,PH.EUR.10.ED (BHN BAKU SUPLEMEN) COA 3079705\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETAS 50 (BHN BAKU KOSMETIK) COA HSP1906S\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"ETAS 50 (BHN BAKU KOSMETIK) COA HSP1906S\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN MINERAL PREMIX FOR BISCUIT (BHN BAKU MAKANAN), COA XW92008093\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN MINERAL PREMIX FOR BISCUIT (BHN BAKU MAKANAN), COA XW92008093\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU OBAT) COA 202000176\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"AL HYD WET GEL VAC 20 (BHN BAKU OBAT) COA 202000176\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROPYPHENAZONE (ST) (BHN BAKU PEWARNA TABLET) COA 2005077,5080,5085,5086,6103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331100\", \"uraian\": \"PROPYPHENAZONE (ST) (BHN BAKU PEWARNA TABLET) COA 2005077,5080,5085,5086,6103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 3064486\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 3064486\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS FUMARATE, FINE POWDER (BHN BAKU MAKANAN) COA 3082640\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054300\", \"uraian\": \"FERROUS FUMARATE, FINE POWDER (BHN BAKU MAKANAN) COA 3082640\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0132228\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0132228\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0112241\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0112241\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9109987\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9109987\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9266545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9266545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2186295\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2186295\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9121860\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9121860\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9035505\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9035505\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2198829\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2198829\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEPTONE STARTER PAK NO.3 EACH EA ,BATCH 191029008,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PEPTONE STARTER PAK NO.3 EACH EA ,BATCH 191029008,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CORTISONE ACETATE MICRONISED PH EUR JP (BHN BAKU OBAT) COA 2000990940\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"CORTISONE ACETATE MICRONISED PH EUR JP (BHN BAKU OBAT) COA 2000990940\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF, 1KG ALUF (BHN BAKU SUPLEMEN) COA UE02005024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO (R) LUTEIN 20PCT SAF, 1KG ALUF (BHN BAKU SUPLEMEN) COA UE02005024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GENIVIDA (TM) TG, 1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT19060004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"GENIVIDA (TM) TG, 1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT19060004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT EM YELLOW (BHN BAKU SUPLEMEN) COA UT20040007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT EM YELLOW (BHN BAKU SUPLEMEN) COA UT20040007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BANANA OILY EXTRACT (BHN BAKU KOSMETIK)COA MUS2007L1-H ,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"BANANA OILY EXTRACT (BHN BAKU KOSMETIK)COA MUS2007L1-H ,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO2007L2-B,SAMPLE NO COMM..\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO2007L2-B,SAMPLE NO COMM..\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY FX YELLOW (BHN BAKU PEWARNA OBAT) COA GA676197\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY FX YELLOW (BHN BAKU PEWARNA OBAT) COA GA676197\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL02007356,TL02007416\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL02007356,TL02007416\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN), COA UT20050026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN), COA UT20050026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ00316030,31,32\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ00316030,31,32\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU MAKANAN) COA UT20050130\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU MAKANAN) COA UT20050130\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030150\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030150\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030150\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030150\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20010006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20010006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE02001001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE02001001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20010006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20010006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU SUPLEMEN, COA WB20030026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU SUPLEMEN, COA WB20030026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00102696\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00102696\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20010002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20010002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20050130\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20050130\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030047\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030047\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01908638\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01908638\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KAHLWAX 2442L (BHN BAKU KOSMETIK) COA F2024024-001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15211000\", \"uraian\": \"KAHLWAX 2442L (BHN BAKU KOSMETIK) COA F2024024-001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AVICEL CL 611 NF BDF (BHN BAKU KOSMETIK) COA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39129090\", \"uraian\": \"AVICEL CL 611 NF BDF (BHN BAKU KOSMETIK) COA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH633915\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH633915\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP20084489\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP20084489\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP20084490\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP20084490\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP828112\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP828112\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP827634\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP827634\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP828115\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP828115\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #6 SUNSET YELLOW ...(BHN BAKU PEWARNA TABLET) COA WP818966:AZ8109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #6 SUNSET YELLOW ...(BHN BAKU PEWARNA TABLET) COA WP818966:AZ8109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C BLUE #1/BRILLIANT BLUE ... (BHN BAKU PEWARNA TABLET) COA WP816342:AZ6940\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C BLUE #1/BRILLIANT BLUE ... (BHN BAKU PEWARNA TABLET) COA WP816342:AZ6940\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERYTHROSINE AL38PCT-42PCT (BHN BAKU PEWARNA TABLET) COA WP760229-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"ERYTHROSINE AL38PCT-42PCT (BHN BAKU PEWARNA TABLET) COA WP760229-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C BLUE #1/BRILLIANT BLUE ...(BHN BAKU PEWARNA TABLET) COA WP826689:BA1430\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C BLUE #1/BRILLIANT BLUE ...(BHN BAKU PEWARNA TABLET) COA WP826689:BA1430\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLEANBIO TM-ZINC (PROTECT) (CL0024-K18) (BAHAN BAKU KOSMETIK) COA 20ZDP\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLEANBIO TM-ZINC (PROTECT) (CL0024-K18) (BAHAN BAKU KOSMETIK) COA 20ZDP\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COPPER SULFATE, POWDER, PH.EUR.10.ED (BHN BAKU SUPLEMEN) COA 3089772-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332500\", \"uraian\": \"COPPER SULFATE, POWDER, PH.EUR.10.ED (BHN BAKU SUPLEMEN) COA 3089772-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PI18050006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29341000\", \"uraian\": \"PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PI18050006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 19460820,19850820,19900820...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 19460820,19850820,19900820...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EMPTY DRUM (DRUM KOSONG) FREEOF COST NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"48192000\", \"uraian\": \"EMPTY DRUM (DRUM KOSONG) FREEOF COST NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 200, 25KG BAG (BHN BAKU OBAT) COA. LC020-20-801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 200, 25KG BAG (BHN BAKU OBAT) COA. LC020-20-801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA 179850\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELUCIRE 44/14 (BHN BAKU OBAT) COA 179850\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU OBAT) COA 03/19GL4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU OBAT) COA 03/19GL4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 03/19GL4,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 03/19GL4,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA.0000072152\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA.0000072152\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH634360\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH634360\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH634353\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH634353\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH634351\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH634351\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH634366\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH634366\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH634363\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH634363\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH634370\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH634370\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH634371\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH634371\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH634371\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH634371\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH634363\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH634363\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH634365\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH634365\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH634350\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH634350\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY GREEN (BHN BAKU PEWARNA TABLET) COA SH633938\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY GREEN (BHN BAKU PEWARNA TABLET) COA SH633938\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH633891\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH633891\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH631635\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH631635\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH633917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH633917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND GREEN (BHN BAKU PEWARNA TABLET) COA SH633934\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND GREEN (BHN BAKU PEWARNA TABLET) COA SH633934\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY RED (BHN BAKU PEWARNA TABLET) COA SH633916\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY RED (BHN BAKU PEWARNA TABLET) COA SH633916\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH633959\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH633959\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH633283\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH633283\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH633940\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH633940\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH633941\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH633941\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 202000277\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 202000277\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLOPURINOL USP (BHN BAKU OBAT) COA 20024AY3ARII\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"ALLOPURINOL USP (BHN BAKU OBAT) COA 20024AY3ARII\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FEED LP20 (PAKAN IKAN BERBENTUK SERBUK) COA 2019.07.06-1,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"FEED LP20 (PAKAN IKAN BERBENTUK SERBUK) COA 2019.07.06-1,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP20073160/XP20074900, XP20073161/XP20074901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP20073160/XP20074900, XP20073161/XP20074901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN541939\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN541939\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX2008014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX2008014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0047660\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0047660\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0034836\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0034836\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0091369\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0091369\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0202716\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0202716\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0191004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0191004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0191035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0191035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0196373\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0196373\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0202780\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0202780\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9239322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9239322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0065878\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0065878\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309312\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309312\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0042333\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0042333\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048064\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048064\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0062582\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0062582\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065756\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065756\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037535\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037535\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0135906\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0135906\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9353100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9353100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065975\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065975\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161680\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161680\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0147111\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0147111\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161545,9364856\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161545,9364856\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0182725\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0182725\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EOSIN METHYLENE BLUE AG HHT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0161742\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EOSIN METHYLENE BLUE AG HHT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0161742\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHENOL RED BROTH BASE BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0035735\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PHENOL RED BROTH BASE BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0035735\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9129926\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9129926\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CSIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0217191\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE CSIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0217191\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MICRO INOCULUM BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8311696\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MICRO INOCULUM BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8311696\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MARINE AGAR 2216 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0202716\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MARINE AGAR 2216 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0202716\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9028828\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9028828\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RHAMNOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0182029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RHAMNOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0182029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0191004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0191004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE UNIVERSAL PREENRICHMENT BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0161260\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE UNIVERSAL PREENRICHMENT BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0161260\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0043912\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0043912\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NITRATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9148558\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NITRATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9148558\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364959\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRILLIANT GREEN AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364959\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0191035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0191035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-HPC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9364008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M-HPC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9364008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0085263\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0085263\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B03C218M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B03C218M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0097399\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0097399\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0147111\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0147111\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0048055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0048055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0155534\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0155534\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH0125281,0154856\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH0125281,0154856\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0013180\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0013180\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0079962\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0079962\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9364856\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9364856\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9318604,9364864\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9318604,9364864\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0091369\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0091369\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH0008968,9294153,9309161,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO AGAR 454G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH0008968,9294153,9309161,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0133426\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0133426\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065878\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065878\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309312\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309312\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0042333,0174577\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0042333,0174577\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048064\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048064\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364958\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 2 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364958\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 0048055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 0048055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0126889\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0126889\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 00625828206968\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 00625828206968\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0133432\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0133432\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0083370\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0083370\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065756\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065756\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037535,0175236\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037535,0175236\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0135906\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0135906\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9353100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9353100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0009096\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0009096\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065975\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065975\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161680\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161680\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0013247\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0013247\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0147207\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0147207\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0153761\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0153761\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0147111,0161496\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0147111,0161496\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0062561\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0062561\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000293, 122000294\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000293, 122000294\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHARMABRUST (R) C1 (BHN BAKU OBAT), COA 122000263\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069099\", \"uraian\": \"PHARMABRUST (R) C1 (BHN BAKU OBAT), COA 122000263\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PROTEOSE PEPTONE 500G EA (MEDIA PENGEMBANGKAN MIKROORGANISME) BATCH 191029008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PROTEOSE PEPTONE 500G EA (MEDIA PENGEMBANGKAN MIKROORGANISME) BATCH 191029008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0143491\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0143491\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B02C111M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B02C111M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COPPER SULPHATE PENTAHYDRATE (BHN BAKU PAKAN TERNAK) COA N93\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332500\", \"uraian\": \"COPPER SULPHATE PENTAHYDRATE (BHN BAKU PAKAN TERNAK) COA N93\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX BALITA (BHN BAKU MAKANAN) COA XW92008068,8069,8070\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX BALITA (BHN BAKU MAKANAN) COA XW92008068,8069,8070\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02004002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02004002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519062\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519062\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0220040016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0220040016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519062\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519062\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU MAKANAN) COA XW92007272, XW92007273\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"2VIT PREMIX BEAUPLEX H0501 (BHN BAKU MAKANAN) COA XW92007272, XW92007273\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN, COA WB00619043, WB00619044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN, COA WB00619043, WB00619044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW92008140\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW92008140\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS FUMARATE EP/USP/FCC (BHN BAKU OBAT) COA.2020/190\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"FERROUS FUMARATE EP/USP/FCC (BHN BAKU OBAT) COA.2020/190\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OSELTAMIVIR PHOSPHATE - USP (BHN BAKU OBAT) COA MBAS20015A\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"OSELTAMIVIR PHOSPHATE - USP (BHN BAKU OBAT) COA MBAS20015A\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT A PALM 1.0 M+ VIT.D3 100'000 (BHN BAKU MAKANAN) COA UT20070095\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VIT A PALM 1.0 M+ VIT.D3 100'000 (BHN BAKU MAKANAN) COA UT20070095\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT A PALM 1.0 M + VIT.D3 100'000 (BHN BAKU MAKANAN) COA UT20070096\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VIT A PALM 1.0 M + VIT.D3 100'000 (BHN BAKU MAKANAN) COA UT20070096\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MECOBALAMINE JP (BHN BAKU OBAT) COA SLL/MC/0320024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"MECOBALAMINE JP (BHN BAKU OBAT) COA SLL/MC/0320024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ULTALUX FF 25KG BAG (BHN BAKU KOSMETIK) COA D042031671\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ULTALUX FF 25KG BAG (BHN BAKU KOSMETIK) COA D042031671\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHONDROITIN SULPHATE SODIUM (BHN BAKU OBAT) COA HS2008112\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"CHONDROITIN SULPHATE SODIUM (BHN BAKU OBAT) COA HS2008112\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID DC 97PCT, 25KG BAL (BHN BAKU MAKANAN) COA HPG2007010, HPG2007012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID DC 97PCT, 25KG BAL (BHN BAKU MAKANAN) COA HPG2007010, HPG2007012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NORIT SX SUPER E 153 (BHN BAKU KOSMETIK) COA 4672350\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38021000\", \"uraian\": \"NORIT SX SUPER E 153 (BHN BAKU KOSMETIK) COA 4672350\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG200807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG200807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC165 20 T\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101990\", \"uraian\": \"SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC165 20 T\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWER CATCOL C 135 (L) GRADE (BHN BAKU KOSMETIK) COA 430/20\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GUAR GUM TREATED AND PULVERISED IN POWER CATCOL C 135 (L) GRADE (BHN BAKU KOSMETIK) COA 430/20\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC CALCIUM ASCORBATE DC, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPT2007003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC CALCIUM ASCORBATE DC, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPT2007003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN ) COA MTP17720\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN ) COA MTP17720\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA RBA2432000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA RBA2432000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX2008028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX2008028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERRIC PYROPHOSPHATE,APPROX 25PCT FE (BHN BAKU MAKANAN) COA 3081937\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28353990\", \"uraian\": \"FERRIC PYROPHOSPHATE,APPROX 25PCT FE (BHN BAKU MAKANAN) COA 3081937\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0097374\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0097374\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0162727\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG L&P 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0162727\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0044798\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0044798\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY 3ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037326\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL H ANTIS POLY 3ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037326\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0052572\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0052572\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0041756,0041768\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0041756,0041768\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273671\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273671\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0052572\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0052572\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0163058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0163058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0037326\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0037326\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0041768\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0041768\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065943\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065943\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065943\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065943\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065943\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065943\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0154553\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0154553\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL E COIL H ANTISERUM H7 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0044768\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL E COIL H ANTISERUM H7 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0044768\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037338\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037338\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0162999\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0162999\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0196591\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0196591\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MONOCALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA 20200824216,2215,8216...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28352600\", \"uraian\": \"MONOCALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA 20200824216,2215,8216...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL ...(BHN BAKU PEWARNA TABLET)COA D180J9I001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL ...(BHN BAKU PEWARNA TABLET)COA D180J9I001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180K36003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180K36003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D180JCF001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D180JCF001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D180J9E003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D180J9E003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AEROSIL(R) R 972 (BHN BAKU KOSMETIK) COA 150041223\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AEROSIL(R) R 972 (BHN BAKU KOSMETIK) COA 150041223\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH635209\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH635209\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHARMACEUTICAL CASTOR OIL E.P (BHN BAKU KOSMETIK) COA 0000033504\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHARMACEUTICAL CASTOR OIL E.P (BHN BAKU KOSMETIK) COA 0000033504\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BAYPURE CX 100 SOLID G !25K BAG (BHN BAKU KOSMETIK) COA CHASMX0020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"BAYPURE CX 100 SOLID G !25K BAG (BHN BAKU KOSMETIK) COA CHASMX0020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHISOPRINOL (BHN BAKU OBAT) COA MTP0070320\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"METHISOPRINOL (BHN BAKU OBAT) COA MTP0070320\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMLODIPINE BESYLATE BP/EP (BHN BAKU OBAT) COA AMB/130/06/20\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"AMLODIPINE BESYLATE BP/EP (BHN BAKU OBAT) COA AMB/130/06/20\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAPROTILINE HCL (BHN BAKU OBAT) COA 1950002228, 1950003172\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29214900\", \"uraian\": \"MAPROTILINE HCL (BHN BAKU OBAT) COA 1950002228, 1950003172\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 072219/006111\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 072219/006111\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BULK DRUG CETYL PYRIDINIUM CHLORIDE EP (BHN BAKU OBAT) COA 320CAB0001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"BULK DRUG CETYL PYRIDINIUM CHLORIDE EP (BHN BAKU OBAT) COA 320CAB0001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA 8MT2008154\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30032000\", \"uraian\": \"STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA 8MT2008154\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ADSORB AFLA (BHN BAKU UNTUK PAKAN TERNAK) COA 159\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25081000\", \"uraian\": \"ADSORB AFLA (BHN BAKU UNTUK PAKAN TERNAK) COA 159\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA I P001602 (BHN BAKU KOSMETIK) COA 0000040123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA I P001602 (BHN BAKU KOSMETIK) COA 0000040123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK COA LB250620\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK COA LB250620\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB120620\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB120620\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG120620\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG120620\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT GREEN GLOBEADS L (70-120)BHN BAKU KOSMETIK, COA LG190120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT GREEN GLOBEADS L (70-120)BHN BAKU KOSMETIK, COA LG190120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 200815\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33012920\", \"uraian\": \"AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 200815\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 200618\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"OILESS'CITY TM (BHN BAKU KOSMETIK) COA 200618\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM CHLORIDE 6-HYDRATE (BHN BAKU OBAT) COA 3054789\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28273100\", \"uraian\": \"MAGNESIUM CHLORIDE 6-HYDRATE (BHN BAKU OBAT) COA 3054789\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 70 (BHN BAKU OBAT) COA L101841520\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 70 (BHN BAKU OBAT) COA L101841520\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104312620\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104312620\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L10386220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L10386220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLOWLAC (R) 100 H (BHN BAKU OBAT) COA L105810520\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"FLOWLAC (R) 100 H (BHN BAKU OBAT) COA L105810520\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY SGR RED (BHN BAKU PEWARNA OBAT) COA GA678155\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY SGR RED (BHN BAKU PEWARNA OBAT) COA GA678155\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E5 PREMIUM LV HYDROXYPROPYL ...(BHN BAKU PEWARNA TABLET)COA D011K3KL02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E5 PREMIUM LV HYDROXYPROPYL ...(BHN BAKU PEWARNA TABLET)COA D011K3KL02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0212530\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0212530\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0183232\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0183232\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC100EA(MEDIA U/ PENGEMBANGAN MIKROORGANISME) BATCH0183229,0212530\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC100EA(MEDIA U/ PENGEMBANGAN MIKROORGANISME) BATCH0183229,0212530\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK)COA AACN-011310\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK)COA AACN-011310\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK)COA BAG-010340\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK)COA BAG-010340\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-021920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-021920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIFCO BEEF EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0091832\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DIFCO BEEF EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0091832\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0063490\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0063490\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0057337\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0057337\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PEPTONE 500G EA (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0112242, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PEPTONE 500G EA (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0112242, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEPTONE STARTER PAK ...(MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH191029008,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PEPTONE STARTER PAK ...(MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH191029008,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASAMINO ACIDS...(MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 00668822,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASAMINO ACIDS...(MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 00668822,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113459\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113459\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113443\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113443\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFADROXIL MONOHYDRATE POWDER (PURIDROX POWDER) BHN BAKU OBAT, COA B340200,B340201,B340202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFADROXIL MONOHYDRATE POWDER (PURIDROX POWDER) BHN BAKU OBAT, COA B340200,B340201,B340202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE USP (BHN BAKU KOSMETIK) COA 20-21/NMD(P)/00178,180,181,182,184\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE USP (BHN BAKU KOSMETIK) COA 20-21/NMD(P)/00178,180,181,182,184\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB20010231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB20010231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 2008EF9812\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"L-ARGININE LO (BHN BAKU KOSMETIK),COA 2008EF9812\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK)COA 7766017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"YUZU LEMON EXTRACT (BHN BAKU KOSMETIK)COA 7766017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) COA 7766018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) COA 7766018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELUCIRE 48/16 PELLETS (BHN BAKU OBAT) COA 178335\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELUCIRE 48/16 PELLETS (BHN BAKU OBAT) COA 178335\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPRITOL 888 ATO (BHN BAKU OBAT) COA 181287\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"COMPRITOL 888 ATO (BHN BAKU OBAT) COA 181287\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELOIL SC (BAHAN BAKU OBAT) COA 176526\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELOIL SC (BAHAN BAKU OBAT) COA 176526\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LABRAFIL M 1944 CS (BAHAN BAKU OBAT) COA 181071\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LABRAFIL M 1944 CS (BAHAN BAKU OBAT) COA 181071\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB20010231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB20010231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX2008028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX2008028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200903\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200903\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED GRADE P) BHN BAKU OBAT,COA M597261,M597382\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED GRADE P) BHN BAKU OBAT,COA M597261,M597382\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RANITIDINE HCL USP (BHN BAKU OBAT)COA. RH0470 08 20, RH471 08 20,RH482 08 20\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29321900\", \"uraian\": \"RANITIDINE HCL USP (BHN BAKU OBAT)COA. RH0470 08 20, RH471 08 20,RH482 08 20\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELATINE 200/08 ...(BAHAN BAKU OBAT ), COA 5132008200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35030049\", \"uraian\": \"GELATINE 200/08 ...(BAHAN BAKU OBAT ), COA 5132008200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABCOAT TC WHITE (BHN BAKU PEWARNA TABLET) COA GA676921\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"TABCOAT TC WHITE (BHN BAKU PEWARNA TABLET) COA GA676921\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY SGR TRANSLUCENT (BHN BAKU PEWARNA TABLET) COA GA676922\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY SGR TRANSLUCENT (BHN BAKU PEWARNA TABLET) COA GA676922\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY SGR CLEAR (BHN BAKU PEWARNA TABLET) COA GA676923\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY SGR CLEAR (BHN BAKU PEWARNA TABLET) COA GA676923\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY SGR RED (BHN BAKU PEWARNA TABLET) COA GA676939\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY SGR RED (BHN BAKU PEWARNA TABLET) COA GA676939\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP20084555, XP20084556\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP20084555, XP20084556\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHONDROITIN SULPHATE SODIUM (BHN BAKU OBAT) COA HS2009082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"CHONDROITIN SULPHATE SODIUM (BHN BAKU OBAT) COA HS2009082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SERASENSE SF CM5 (BAHAN BAKU KOSMETIK) COA PA00807039,PA00807041, PA00807047\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29319049\", \"uraian\": \"SERASENSE SF CM5 (BAHAN BAKU KOSMETIK) COA PA00807039,PA00807041, PA00807047\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH634837\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH634837\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II PURPLE (BHN BAKU PEWARNA TABLET) COA SH634844\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II PURPLE (BHN BAKU PEWARNA TABLET) COA SH634844\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH632409\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH632409\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH632784\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH632784\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH633089\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH633089\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH632249\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH632249\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH633282\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH633282\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH634842\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH634842\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH634841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH634841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH634838\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH634838\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH634845\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH634845\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH634846\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH634846\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II GREEN (BHN BAKU PEWARNA TABLET) COA SH634853\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II GREEN (BHN BAKU PEWARNA TABLET) COA SH634853\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH634871\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH634871\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA L202009-016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA L202009-016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2008002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28352510\", \"uraian\": \"DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2008002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CORN PO4 25KG (BHN BAKU KOSMETIK) COA 0213\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"CORN PO4 25KG (BHN BAKU KOSMETIK) COA 0213\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS SULFATE,DRIED, POWDER ,USP43 (BHN BAKU OBAT) COA 3086986\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"FERROUS SULFATE,DRIED, POWDER ,USP43 (BHN BAKU OBAT) COA 3086986\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINC SULFATE 7-HYDRATE, CRYST., PH EUR.10 ED (BHN BAKU OBAT) COA 3079708\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"ZINC SULFATE 7-HYDRATE, CRYST., PH EUR.10 ED (BHN BAKU OBAT) COA 3079708\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIPOTASSIUM CITRATE 1-HYDRATE (BHN BAKU OBAT) COA3090583\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"TRIPOTASSIUM CITRATE 1-HYDRATE (BHN BAKU OBAT) COA3090583\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM OXIDE, LIGHT, POWDER, BP 2020 (BHN BAKU OBAT) COA 1104435\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25199010\", \"uraian\": \"MAGNESIUM OXIDE, LIGHT, POWDER, BP 2020 (BHN BAKU OBAT) COA 1104435\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRICALCIUM CITRATE 4-HYDRATE (BHN BAKU OBAT) COA 3089630\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"TRICALCIUM CITRATE 4-HYDRATE (BHN BAKU OBAT) COA 3089630\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINC SULFATE 1-HYDRATE, POWDER,USP 43 (BHN BAKU OBAT) COA 3087771-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"ZINC SULFATE 1-HYDRATE, POWDER,USP 43 (BHN BAKU OBAT) COA 3087771-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH635815\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH635815\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH635813\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH635813\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY ( BHN BAKU PEWARNA TABLET) COA SH635812\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY ( BHN BAKU PEWARNA TABLET) COA SH635812\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000294\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000294\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX MAROON (BHN BAKU PEWARNA OBAT) COA DT706927\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX MAROON (BHN BAKU PEWARNA OBAT) COA DT706927\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MECOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/0720033\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"MECOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/0720033\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 11092020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25081000\", \"uraian\": \"BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 11092020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY SGR TRANSLUCENT (BHN BAKU PEWARNA OBAT) COA GA678566\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY SGR TRANSLUCENT (BHN BAKU PEWARNA OBAT) COA GA678566\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY SGR CLEAR (BHN BAKU PEWARNA TABLET) COA GA678568\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY SGR CLEAR (BHN BAKU PEWARNA TABLET) COA GA678568\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY SGR WHITE (BHN BAKU PEWARNA TABLET) COA GA678567\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY SGR WHITE (BHN BAKU PEWARNA TABLET) COA GA678567\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0220040016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0220040016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-PANTHENOL 50L ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01908638\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL-PANTHENOL 50L ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01908638\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01908640\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01908640\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT20070164\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT20070164\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50,20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02002008,UE02002009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50,20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02002008,UE02002009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20010006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20010006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1907101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1907101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB20030026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB20030026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02008792\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02008792\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ESOMEPRAZOLE PELLETS 22.5PCT (BHN BAKU OBAT) COA EO01820C022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"ESOMEPRAZOLE PELLETS 22.5PCT (BHN BAKU OBAT) COA EO01820C022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX FOR BISCUIT (BHN BAKU MAKANAN), COA XW92009129\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX FOR BISCUIT (BHN BAKU MAKANAN), COA XW92009129\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANTOPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT, COA APSS19005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"PANTOPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT, COA APSS19005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT), COA ASG/07/310720, ASG/08/020820,ASG/08/030820\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT), COA ASG/07/310720, ASG/08/020820,ASG/08/030820\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE BP (BHN BAKU OBAT) COA ASGP/08/210820,ASGP/08/220820,ASGP/08/230820...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE BP (BHN BAKU OBAT) COA ASGP/08/210820,ASGP/08/220820,ASGP/08/230820...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHENYTOIN SODIUM (BHN BAKU OBAT) COA 20100268\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332100\", \"uraian\": \"PHENYTOIN SODIUM (BHN BAKU OBAT) COA 20100268\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RUGENER DREIKRONEN HEILKREIDE 25K (BHN BAKU KOSMETIK) COA 5032025280\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25090000\", \"uraian\": \"RUGENER DREIKRONEN HEILKREIDE 25K (BHN BAKU KOSMETIK) COA 5032025280\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU PEWARNA TABLET) COA WP824132\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU PEWARNA TABLET) COA WP824132\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT ...(BHN BAKU PEWARNA TABLET) COA WP824133\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"D AND C YELLOW #10 AL 15PCT-20PCT ...(BHN BAKU PEWARNA TABLET) COA WP824133\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW ... (BHN BAKU PEWARNA TABLET) COA WP830186\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #6/SUNSET YELLOW ... (BHN BAKU PEWARNA TABLET) COA WP830186\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU PEWARNA TABLET) COA WP831125\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU PEWARNA TABLET) COA WP831125\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL ...(BHN BAKU PEWARNA TABLET) COA WP822802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #5/TARTRAZINE AL ...(BHN BAKU PEWARNA TABLET) COA WP822802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 70 (BHN BAKU OBAT) COA L101841520\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 70 (BHN BAKU OBAT) COA L101841520\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104312620\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104312620\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L10386220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L10386220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLOWLAC (R) 100 H (BHN BAKU OBAT) COA L105810520\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"FLOWLAC (R) 100 H (BHN BAKU OBAT) COA L105810520\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN), COA XW92009194\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 704023 (BHN BAKU MAKANAN), COA XW92009194\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-GLUTAMIC ACID (FCC GRADE) PURITY 99PCT UP (BHN BAKU MAKANAN), COA 1000056342/200820\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"L-GLUTAMIC ACID (FCC GRADE) PURITY 99PCT UP (BHN BAKU MAKANAN), COA 1000056342/200820\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTIBOND TG-AK (BAHAN BAKU MAKANAN) COA AK20081709\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PROTIBOND TG-AK (BAHAN BAKU MAKANAN) COA AK20081709\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXCHLORPHENIRAMINE MALEATE USP (BHN BAKU OBAT) COA SLL/DC/0820022,0920023/0920024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333910\", \"uraian\": \"DEXCHLORPHENIRAMINE MALEATE USP (BHN BAKU OBAT) COA SLL/DC/0820022,0920023/0920024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXCHLORPHENIRAMINE MALEATE USP (BHN BAKU OBAT) COA SLL/DC/0420008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333910\", \"uraian\": \"DEXCHLORPHENIRAMINE MALEATE USP (BHN BAKU OBAT) COA SLL/DC/0420008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CELECOXIB USP (BHN BAKU OBAT) COA CLX/016/08/20\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"CELECOXIB USP (BHN BAKU OBAT) COA CLX/016/08/20\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPICILLIN TRIHYDRATE (PURICILLIN COMPACTED) BHN BAKU OBAT,COA B842860,M842868,M842869,M842870\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411020\", \"uraian\": \"AMPICILLIN TRIHYDRATE (PURICILLIN COMPACTED) BHN BAKU OBAT,COA B842860,M842868,M842869,M842870\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 20290029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 20290029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 20290029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 20290029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KANEKA Q10 UBIDECARENONE 5KG JP (BHN BAKU KOSMETIK) COA FA01-4306\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"KANEKA Q10 UBIDECARENONE 5KG JP (BHN BAKU KOSMETIK) COA FA01-4306\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC 207 20 T\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101990\", \"uraian\": \"SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC 207 20 T\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYPOL 980 (20KG) BAHAN BAKU KOSMETIK, COA 11520049, 11520050,11520051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39069099\", \"uraian\": \"ACRYPOL 980 (20KG) BAHAN BAKU KOSMETIK, COA 11520049, 11520050,11520051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2008341796\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2008341796\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANOCOBALAMINE VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2008341796\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANOCOBALAMINE VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2008341796\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABSORAGE ( BHN BAKU KOSMETIK), COA 200264\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ABSORAGE ( BHN BAKU KOSMETIK), COA 200264\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANDARIN CLEAR (BHN BAKU KOSMETIK) COA 200700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"MANDARIN CLEAR (BHN BAKU KOSMETIK) COA 200700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMFREY LIQUID B (BHN BAKU KOSMETIK) COA 201261\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"COMFREY LIQUID B (BHN BAKU KOSMETIK) COA 201261\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IZAYOI (BHN BAKU KOSMETIK), COA 193027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"IZAYOI (BHN BAKU KOSMETIK), COA 193027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTO COLLAGE B(N) BHN BAKU KOSMETIK, COA 200610\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHYTO COLLAGE B(N) BHN BAKU KOSMETIK, COA 200610\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIRJU (BHN BAKU KOSMETIK),COA 200963\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"CLAIRJU (BHN BAKU KOSMETIK),COA 200963\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK),COA 200719\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BOTANPI LIQUID B (BHN BAKU KOSMETIK),COA 200719\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAC-CO200101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAC-CO200101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SEABUCKTHORN HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HIR200101-B\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SEABUCKTHORN HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HIR200101-B\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POMEGRANATE OF ACORES HYDROGLYCERINED EXTRACT (BHN BAKU KOSMETIK) COA PUGA200603-GL\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"POMEGRANATE OF ACORES HYDROGLYCERINED EXTRACT (BHN BAKU KOSMETIK) COA PUGA200603-GL\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSE OILY EXTRACT (BHN BAKU KOSMETIK), COA ROS200402-H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROSE OILY EXTRACT (BHN BAKU KOSMETIK), COA ROS200402-H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIQUORICE ORGANIC OILY EXTRACT (BHN BAKU KOSMETIK) COA GLGT200901-HBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LIQUORICE ORGANIC OILY EXTRACT (BHN BAKU KOSMETIK) COA GLGT200901-HBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 154736\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15159011\", \"uraian\": \"AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 154736\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT MINERAL PREMIX FOR MATERNAL BISCUIT (BHN BAKU MAKANAN), COA XW92009299\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VIT MINERAL PREMIX FOR MATERNAL BISCUIT (BHN BAKU MAKANAN), COA XW92009299\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT MINERAL PREMIX FOR MATERNAL BISCUIT (BHN BAKU MAKANAN), COA XW92009297\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VIT MINERAL PREMIX FOR MATERNAL BISCUIT (BHN BAKU MAKANAN), COA XW92009297\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT MINERAL PREMIX FOR MATERNAL BISCUIT (BHN BAKU MAKANAN), COA XW92009298\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VIT MINERAL PREMIX FOR MATERNAL BISCUIT (BHN BAKU MAKANAN), COA XW92009298\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAMPLE ASCORBIC ACID (BHN BAKU KOSMETIK) COA TL02001622,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SAMPLE ASCORBIC ACID (BHN BAKU KOSMETIK) COA TL02001622,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REFINED SUNFLOWER OIL (BHN BAKU KOSMETIK) COA 0002228405\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"REFINED SUNFLOWER OIL (BHN BAKU KOSMETIK) COA 0002228405\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CETRIMIDE POWDER (BHN BAKU KOSMETIK) COA 320CAA0017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CETRIMIDE POWDER (BHN BAKU KOSMETIK) COA 320CAA0017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CATECHINS TEAVIGO 1KG (BHN BAKU SUPLEMEN KESEHATAN), COA 007081\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CATECHINS TEAVIGO 1KG (BHN BAKU SUPLEMEN KESEHATAN), COA 007081\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CATECHINS TEAVIGO 1KG (BHN BAKU SUPLEMEN KESEHATAN) COA 007081\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CATECHINS TEAVIGO 1KG (BHN BAKU SUPLEMEN KESEHATAN) COA 007081\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CATECHINS TEAVIGO 1KG (BHN BAKU SUPLEMEN KESEHATAN) COA 007081\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CATECHINS TEAVIGO 1KG (BHN BAKU SUPLEMEN KESEHATAN) COA 007081\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT TEA POWDER (TEA EXTRACT) BHN BAKU MAKANAN, COA 912282\""}, {"role": "assistant", "content": "{\"hs_code\" : \"9022010\", \"uraian\": \"INSTANT TEA POWDER (TEA EXTRACT) BHN BAKU MAKANAN, COA 912282\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB20090730\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB20090730\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB20070267\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB20070267\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MOXIFLOXACIN HYDROCHLORIDE USP (INJECTABLE GRADE) (BHN BAKU OBAT) COA MOX/10070006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334990\", \"uraian\": \"MOXIFLOXACIN HYDROCHLORIDE USP (INJECTABLE GRADE) (BHN BAKU OBAT) COA MOX/10070006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METRONIDAZOLE EP INJECTABLE (BHN BAKU OBAT) COA MTZ/0060815\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"METRONIDAZOLE EP INJECTABLE (BHN BAKU OBAT) COA MTZ/0060815\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METRONIDAZOLE BP (BHN BAKU OBAT) COA MTZ/0060926\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"METRONIDAZOLE BP (BHN BAKU OBAT) COA MTZ/0060926\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BUDESONIDE MICRONIZED (BHN BAKU OBAT) COA NA2270M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"BUDESONIDE MICRONIZED (BHN BAKU OBAT) COA NA2270M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYPROTERONE ACETATE MICRONIZED (BHN BAKU OBAT) COA NA2678M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"CYPROTERONE ACETATE MICRONIZED (BHN BAKU OBAT) COA NA2678M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MOMETAZONE FUROATE MICRONIZED (BHN BAKU OBAT) COA NA2603M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"MOMETAZONE FUROATE MICRONIZED (BHN BAKU OBAT) COA NA2603M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NA2219M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NA2219M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELOXICAM USP (BHN BAKU OBAT) COA HMXCPN002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29341000\", \"uraian\": \"MELOXICAM USP (BHN BAKU OBAT) COA HMXCPN002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP20094098, XP20094099\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP20094098, XP20094099\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METRONIDAZOLE BENZOATE (PSD:100PCT<30UM) (BHN BAKU OBAT) COA MBO/10090439\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"METRONIDAZOLE BENZOATE (PSD:100PCT<30UM) (BHN BAKU OBAT) COA MBO/10090439\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-003-X\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-003-X\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 200, 25KG BAG (BHN BAKU OBAT) COA. LC020-20-801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 200, 25KG BAG (BHN BAKU OBAT) COA. LC020-20-801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MOMETASONE FUROATE USP 41 MICRONISED (BHN BAKU OBAT) COA APL/01225/I-20\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"MOMETASONE FUROATE USP 41 MICRONISED (BHN BAKU OBAT) COA APL/01225/I-20\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0219510\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0219510\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 20290034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 20290034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COPPER SULPHATE PENTAHYDRATE (BHN BAKU PAKAN TERNAK) COA N95\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332500\", \"uraian\": \"COPPER SULPHATE PENTAHYDRATE (BHN BAKU PAKAN TERNAK) COA N95\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 200, 25KG BAG (BHN BAKU OBAT) COA. LC020-20-801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 200, 25KG BAG (BHN BAKU OBAT) COA. LC020-20-801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for M 1555 N 900/980 76 (BHN BAKU KOSMETIK) COA 267905\""}, {"role": "assistant", "content": "{\"hs_code\" : \"56039300\", \"uraian\": \"M 1555 N 900/980 76 (BHN BAKU KOSMETIK) COA 267905\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX2008028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX2008028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS SILK-1000 (BHN BAKU KOSMETIK) COA FFN\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS SILK-1000 (BHN BAKU KOSMETIK) COA FFN\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA FEB\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA FEB\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02005654\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02005654\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0320050466, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 (BHN BAKU KOSMETIK) COA 0320050466, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS3950120, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS3950120, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT A PALM 1.0 MIU/G (TOCO) BHN BAKU KOSMETIK,COA UT20020192, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VIT A PALM 1.0 MIU/G (TOCO) BHN BAKU KOSMETIK,COA UT20020192, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000190658, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000190658, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0519030064, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0519030064, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0919040013, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX (BHN BAKU KOSMETIK) COA 0919040013, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PDJ0003 SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PDJ0003 SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA P-66\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA P-66\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT GRANULATION (BHN BAKU SUPLEMEN) COA WB20089035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT GRANULATION (BHN BAKU SUPLEMEN) COA WB20089035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINKGO LEAVES EXTRACT (BHN BAKU KOSMETIK) COA 20080521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINKGO LEAVES EXTRACT (BHN BAKU KOSMETIK) COA 20080521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300045, 10300046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300045, 10300046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D&C GREEN NO.5 C.I.61570 FDA CERTIFIED (BHN BAKU KOSMETIK) COA 10300034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"D&C GREEN NO.5 C.I.61570 FDA CERTIFIED (BHN BAKU KOSMETIK) COA 10300034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK)COA CHP1200331\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK)COA CHP1200331\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND GREEN TEA SEED OIL (BHN BAKU KOSMETIK)COA CSSO-053029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND GREEN TEA SEED OIL (BHN BAKU KOSMETIK)COA CSSO-053029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 100720\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 100720\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND MARIGOLD EXTRACT (BHN BAKU KOSMETIK) COA MGA-012440\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND MARIGOLD EXTRACT (BHN BAKU KOSMETIK) COA MGA-012440\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND PF CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK)COA PSSBD-012329\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND PF CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK)COA PSSBD-012329\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND BIOCTP-500 (BHN BAKU KOSMETIK) COA BOPN-010560\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND BIOCTP-500 (BHN BAKU KOSMETIK) COA BOPN-010560\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-040270\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-040270\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) HMVBD-010430,HMVBD-020700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) HMVBD-010430,HMVBD-020700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-052829\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-052829\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWER FORM CATCOL C 135(L) GRADE(B.BAKU KOSMETIK) COA 432/20\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GUAR GUM TREATED AND PULVERISED IN POWER FORM CATCOL C 135(L) GRADE(B.BAKU KOSMETIK) COA 432/20\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 200817\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 200817\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 200618\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"OILESS'CITY TM (BHN BAKU KOSMETIK) COA 200618\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 200815\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33012920\", \"uraian\": \"AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 200815\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP20094872, XP20094873\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP20094872, XP20094873\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRAMADOL HCL (BHN BAKU OBAT) COA. TH/3/19031/00E\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29225090\", \"uraian\": \"TRAMADOL HCL (BHN BAKU OBAT) COA. TH/3/19031/00E\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 1,3-BUTYLENE GLYCOL, COSMETIC QUALITY(BHN BAKU KOSMETIK) COA P0620611BC\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"1,3-BUTYLENE GLYCOL, COSMETIC QUALITY(BHN BAKU KOSMETIK) COA P0620611BC\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN ) COA MTP19320\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN ) COA MTP19320\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 27/50 SODIUM BICARBONATE(B.BAKU SUPLEMEN) COA MTP25220,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 27/50 SODIUM BICARBONATE(B.BAKU SUPLEMEN) COA MTP25220,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (B. BAKU SUPLEMEN) COA MTP25820,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA API 0/13 SODIUM BICARBONATE (B. BAKU SUPLEMEN) COA MTP25820,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIDOCAINE HCL (BHN BAKU OBAT) COA 194898\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"LIDOCAINE HCL (BHN BAKU OBAT) COA 194898\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101853320\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA L101853320\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0196591\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M-GREEN YEAST AND MOLD BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0196591\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0128385\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0128385\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0114639\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0114639\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0190820\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0190820\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0238363\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0238363\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0226672\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0226672\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0044798\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0044798\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0037326\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0037326\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0105016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0105016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0209866\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0209866\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0065943\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0065943\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0120395,0212663\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0120395,0212663\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0097374\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0097374\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065943\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065943\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037338\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037338\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0114639\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0114639\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0162999\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0162999\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065855\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065855\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9295972\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9295972\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0119320\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0119320\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0121592\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0121592\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0052572\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0052572\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0155534\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0155534\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0202780\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0202780\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0237752\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0237752\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0182725\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0182725\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364958\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364958\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0133432\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0133432\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0155534\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0155534\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0154856\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0154856\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0097116\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LEVINE EMB AGAR BBL 500G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0097116\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0013180\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0013180\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0132738\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0132738\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364856\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364856\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0161953\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0161953\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0008968,0063472\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0008968,0063472\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 00973500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 00973500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0132265\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0132265\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065878\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065878\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9309312\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9309312\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0174577\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0174577\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0048055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0048055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0048007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0048007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0083370\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0083370\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0135906\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0135906\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9353100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9353100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0009096\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0009096\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0065975\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0065975\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161680\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161680\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0013247\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLD AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0013247\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0147207\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0147207\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0161496\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0161496\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TREHALOSE 10G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0237315\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TREHALOSE 10G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0237315\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT UNIVERSAL VIRAL TRANSPORT STD SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 201988000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT UNIVERSAL VIRAL TRANSPORT STD SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 201988000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0154856\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0154856\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEVINE EMB AGAR BBL500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 00971116\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LEVINE EMB AGAR BBL500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 00971116\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0013180\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0013180\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0132738\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0132738\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9364856\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9364856\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0161953\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0161953\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0063472,0183095\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0063472,0183095\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0002860\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DEXTROSE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0002860\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0119308\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0119308\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0097350\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0097350\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0132265\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0132265\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2A AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE R2A AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065878\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065878\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309312\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309312\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0174577\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0174577\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364958\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364958\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0048055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0048055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0162119\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0162119\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0048007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0048007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0147211\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0147211\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364969\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364969\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9310881\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9310881\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0083370\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0083370\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0175236\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0175236\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0135906\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0135906\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 9353100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 9353100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0009096\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0009096\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065975\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065975\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161680\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161680\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0013247\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0013247\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0147207\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0147207\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0183103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0183103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0161496\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0161496\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065896\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065896\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0062561\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0062561\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0182049\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0182049\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9028828\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9028828\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9015557\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9015557\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LOOPS INOCULATING 10/TUBE 10 MICROLITER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1917662\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"LOOPS INOCULATING 10/TUBE 10 MICROLITER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1917662\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0209766\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0209766\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9224604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9224604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9280662\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9280662\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST MOLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065956\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE YEAST MOLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065956\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8317895\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8317895\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CATALYST REPLACEMENT CHARGES\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CATALYST REPLACEMENT CHARGES\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0062561\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0062561\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0133450\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0133450\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER, BATCH 0120935\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER, BATCH 0120935\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ CO2 CONTAINER, BATCH 0177959\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ CO2 CONTAINER, BATCH 0177959\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20070114\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20070114\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE02001005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"RONOXAN A (BHN BAKU MAKANAN) COA UE02001005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ00310604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ00310604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ00309505\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ00309505\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00619044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00619044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DWI-BI (BHN BAKU MAKANAN) COA XW92009159\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"DWI-BI (BHN BAKU MAKANAN) COA XW92009159\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN), COA XW92009158,XW92009194\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 704023 (BHN BAKU MAKANAN), COA XW92009158,XW92009194\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ00303387\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ00303387\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ00303387\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ00303387\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C(R) 50, 20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02003023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C(R) 50, 20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02003023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF20014014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF20014014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES1908278\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"ALLANTOIN (BHN BAKU KOSMETIK) COA ES1908278\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL(R) HS, 20KG BOX (BHN BAKU KOSMETIK) COA HS0740520\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL(R) HS, 20KG BOX (BHN BAKU KOSMETIK) COA HS0740520\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF20014014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF20014014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50, 5KG BAG ALU (BHN BAKU KOSMETIK) COA CSI8060035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50, 5KG BAG ALU (BHN BAKU KOSMETIK) COA CSI8060035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0720010005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0720010005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL (R) HS, 20KG BOX (BHN BAKU KOSMETIK) COA HS0740520\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL (R) HS, 20KG BOX (BHN BAKU KOSMETIK) COA HS0740520\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01910812\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01910812\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C(R) 50, 5KG BAG ALU (BHN BAKU KOSMETIK) COA CS18060035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C(R) 50, 5KG BAG ALU (BHN BAKU KOSMETIK) COA CS18060035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C(R) 50, 20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02003023, UE02003024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C(R) 50, 20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02003023, UE02003024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-201006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-201006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BUTCHERBROOM DRY HYDR EX.9-11 (BHN BAKU SUPLEMEN) COA 20B0077600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BUTCHERBROOM DRY HYDR EX.9-11 (BHN BAKU SUPLEMEN) COA 20B0077600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PASSION FLOWER D.H.E.>4PCT (BHN BAKU SUPLEMEN) COA 20B0079600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PASSION FLOWER D.H.E.>4PCT (BHN BAKU SUPLEMEN) COA 20B0079600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HAWTHORN DRY HYDR. EXTR (BHN BAKU SUPLEMEN) COA 10909/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HAWTHORN DRY HYDR. EXTR (BHN BAKU SUPLEMEN) COA 10909/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLOPURINOL USP (BHN BAKU OBAT) COA 20038AY3ARII\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"ALLOPURINOL USP (BHN BAKU OBAT) COA 20038AY3ARII\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2008462149\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2008462149\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL ...(BHN BAKU PEWARNA TABLET)COA D180JBT001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM CR HYDROXYPROPYL ...(BHN BAKU PEWARNA TABLET)COA D180JBT001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D011JBPL02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D011JBPL02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D180K37001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D180K37001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH635532\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH635532\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH634880\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH634880\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB MAROON (BHN BAKU PEWARNA TABLET) COA SH635533\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB MAROON (BHN BAKU PEWARNA TABLET) COA SH635533\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH635542\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH635542\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH635252\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH635252\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH634727\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH634727\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH635560\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH635560\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH635556\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH635556\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH635544\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH635544\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH635543\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH635543\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH635545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH635545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEG 400 (BAHAN BAKU KOSMETIK) COA.AKW0000227\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39072010\", \"uraian\": \"PEG 400 (BAHAN BAKU KOSMETIK) COA.AKW0000227\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EDIBLE BOVINE GELATINE 200/400 (BAHAN BAKU OBAT), COA S19F11\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35030049\", \"uraian\": \"EDIBLE BOVINE GELATINE 200/400 (BAHAN BAKU OBAT), COA S19F11\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CURCUMA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 20S0177305\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CURCUMA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 20S0177305\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for C47-051 SUNCROMA TITANIUM DIOXIDE (BHN BAKU KOSMETIK) COA 2718150100101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"C47-051 SUNCROMA TITANIUM DIOXIDE (BHN BAKU KOSMETIK) COA 2718150100101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENTRY POLYOX WSR 303 LEO NF (DOW) (BHN BAKU PEWARNA TABLET), COA D682JCNVR4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"SENTRY POLYOX WSR 303 LEO NF (DOW) (BHN BAKU PEWARNA TABLET), COA D682JCNVR4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECOGEL TM-5KG (BHN BAKU KOSMETIK) COA 2013701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ECOGEL TM-5KG (BHN BAKU KOSMETIK) COA 2013701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HELIOGEL TM -30KG (BHN BAKU KOSMETIK) COA 2020501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HELIOGEL TM -30KG (BHN BAKU KOSMETIK) COA 2020501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SWT-7TM H-5KG (BHN BAKU KOSMETIK) COA 2021601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SWT-7TM H-5KG (BHN BAKU KOSMETIK) COA 2021601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT TM 09- 1KG (BHN BAKU KOSMETIK) COA 784017970K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"TYROSTAT TM 09- 1KG (BHN BAKU KOSMETIK) COA 784017970K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSALITY TM -1KG (BHN BAKU KOSMETIK) COA 1910701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROSALITY TM -1KG (BHN BAKU KOSMETIK) COA 1910701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE TM 657-1KG (BHN BAKU KOSMETIK) COA 702018037K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ABYSSINE TM 657-1KG (BHN BAKU KOSMETIK) COA 702018037K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MINIPORYL TM - 1KG (BHN BAKU KOSMETIK) COA 832017967K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MINIPORYL TM - 1KG (BHN BAKU KOSMETIK) COA 832017967K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROGELINE TM - 1KG (BHN BAKU KOSMETIK) COA 820058407L\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROGELINE TM - 1KG (BHN BAKU KOSMETIK) COA 820058407L\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXO-T TM - 1KG (BHN BAKU KOSMETIK) COA 715017666K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EXO-T TM - 1KG (BHN BAKU KOSMETIK) COA 715017666K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (ORANGE) (BHN BAKU PEWARNA TABLET) SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (ORANGE) (BHN BAKU PEWARNA TABLET) SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (ORANGE) (BHN BAKU PEWARNA TABLET) SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (ORANGE) (BHN BAKU PEWARNA TABLET) SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (PINK) (BHN BAKU PEWARNA TABLET)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (PINK) (BHN BAKU PEWARNA TABLET)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (ORANGE) (BHN BAKU PEWARNA TABLET)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (ORANGE) (BHN BAKU PEWARNA TABLET)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERRIC PYROPHOSPHATE APPROX 25PCT FE MICRONIZED (BHN BAKU MAKANAN) COA 3081937\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28353990\", \"uraian\": \"FERRIC PYROPHOSPHATE APPROX 25PCT FE MICRONIZED (BHN BAKU MAKANAN) COA 3081937\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB20090730\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB20090730\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH636395\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH636395\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340,0,25KG SAM (BHN BAKU KOSMETIK) COA 0220040007, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340,0,25KG SAM (BHN BAKU KOSMETIK) COA 0220040007, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLEANBIO TM-ZINC (PROTECT) (CL0024-K18) (BAHAN BAKU KOSMETIK) COA 20ZDP\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLEANBIO TM-ZINC (PROTECT) (CL0024-K18) (BAHAN BAKU KOSMETIK) COA 20ZDP\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NATRIUM HYDROXID PERLEN 98/99PCT...(B.BAKU KOSMETIK) COA 202004220020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28151100\", \"uraian\": \"NATRIUM HYDROXID PERLEN 98/99PCT...(B.BAKU KOSMETIK) COA 202004220020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS SULFATE,DRIED, POWDER ,USP43 (BHN BAKU OBAT) COA 3089416\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"FERROUS SULFATE,DRIED, POWDER ,USP43 (BHN BAKU OBAT) COA 3089416\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS SULFATE, DRIED, POWDER, USP43 (BHN BAKU OBAT) COA 3081610\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"FERROUS SULFATE, DRIED, POWDER, USP43 (BHN BAKU OBAT) COA 3081610\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS FUMARATE, FINE POWDER (BHN BAKU OBAT) COA 3091248\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"FERROUS FUMARATE, FINE POWDER (BHN BAKU OBAT) COA 3091248\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM CARBONATE, HEAVY POWDER, PH EUR.10.ED (BHN BAKU OBAT) COA 3091086-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332100\", \"uraian\": \"MAGNESIUM CARBONATE, HEAVY POWDER, PH EUR.10.ED (BHN BAKU OBAT) COA 3091086-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS FUMARATE, FINE POWDER (BHN BAKU OBAT) COA 3091248\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"FERROUS FUMARATE, FINE POWDER (BHN BAKU OBAT) COA 3091248\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT20060984\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT20060984\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1910128\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1910128\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOS (BHN BAKU SUPLEMEN) COA TL02008813\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE, 25KG BOS (BHN BAKU SUPLEMEN) COA TL02008813\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT20060027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT20060027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ00703509\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ00703509\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE,25KG BOX (BHN BAKU SUPLEMEN) COA TL02008815\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE,25KG BOX (BHN BAKU SUPLEMEN) COA TL02008815\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT20060027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT20060027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL02008813\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL02008813\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-PANTHENOL 50L, 1000KG IBC (BHN BAKU SUPLEMEN) COA TL02009639\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL-PANTHENOL 50L, 1000KG IBC (BHN BAKU SUPLEMEN) COA TL02009639\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT20080045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT20080045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ00316045 S/D 49\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ00316045 S/D 49\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S328/20\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S328/20\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CIPROFLOXACIN LACTATE INJECTABLE GRADE (BHN BAKU OBAT) COA TURTLE/CL/201001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"CIPROFLOXACIN LACTATE INJECTABLE GRADE (BHN BAKU OBAT) COA TURTLE/CL/201001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2008462149\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2008462149\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMLODIPINE BESYLATE (BHN BAKU OBAT) COA 20AD167, 20AD168, 20AD201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"AMLODIPINE BESYLATE (BHN BAKU OBAT) COA 20AD167, 20AD168, 20AD201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPIRAMYCIN (BHN BAKU OBAT) COA 20B044SP\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"SPIRAMYCIN (BHN BAKU OBAT) COA 20B044SP\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 29KG BOX (BHN BAKU KOSMETIK) COA 0320050929 S/D 50931,50933, 51123, 51124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789, 29KG BOX (BHN BAKU KOSMETIK) COA 0320050929 S/D 50931,50933, 51123, 51124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219120234\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219120234\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES1901169,ES1908277\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"ALLANTOIN (BHN BAKU KOSMETIK) COA ES1901169,ES1908277\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02004001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE02004001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01906809,TL01910812\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01906809,TL01910812\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA 0519010014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA 0519010014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE02001005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"RONOXAN A (BHN BAKU MAKANAN) COA UE02001005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX BALITA (BHN BAKU MAKANAN) COA XW92010139, XW92010140\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX BALITA (BHN BAKU MAKANAN) COA XW92010139, XW92010140\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX BALITA (BHN BAKU MAKANAN) COA XW92010138, XW92010140\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX BALITA (BHN BAKU MAKANAN) COA XW92010138, XW92010140\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20090010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20090010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20090010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20090010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20080052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20080052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20080052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20080052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030068,WB00519063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030068,WB00519063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DWI-BI (BHN BAKU MAKANAN) COA XW92009340\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"DWI-BI (BHN BAKU MAKANAN) COA XW92009340\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE USP (NIACINAMIDE USP/EP) BHN BAKU KOSMETIK,COA 20-21/NMD(P)/00236,00237,00238,00239\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE USP (NIACINAMIDE USP/EP) BHN BAKU KOSMETIK,COA 20-21/NMD(P)/00236,00237,00238,00239\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-710 (16KG) BHN BAKU KOSMETIK, COA 004369\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSG-710 (16KG) BHN BAKU KOSMETIK, COA 004369\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-54HV (18KG) BHN BAKU KOSMETIK, COA 006039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-54HV (18KG) BHN BAKU KOSMETIK, COA 006039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MINERAL IND 20 (BHN BAKU MAKANAN), COA XW92010176\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"MINERAL IND 20 (BHN BAKU MAKANAN), COA XW92010176\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 10- CN- 10KG KA (BHN BAKU KOSMETIK) COA.1543903\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 10- CN- 10KG KA (BHN BAKU KOSMETIK) COA.1543903\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK COA B200920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK COA B200920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB120920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB120920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG120920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG120920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B200920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B200920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG280920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG280920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0047657\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0047657\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 19LNC0925SQ626\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101990\", \"uraian\": \"NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 19LNC0925SQ626\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 19LNC0923SQ625\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101990\", \"uraian\": \"NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 19LNC0923SQ625\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 020320,030320,040320,050320\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 020320,030320,040320,050320\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NONIVAMIDE (SYNTHETIC CAPSAICIN) BHN BAKU KOSMETIK, COA.2020060\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29241990\", \"uraian\": \"NONIVAMIDE (SYNTHETIC CAPSAICIN) BHN BAKU KOSMETIK, COA.2020060\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSUVASTATIN CALCIUM (BHN BAKU OBAT) COA RVM1870720\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"ROSUVASTATIN CALCIUM (BHN BAKU OBAT) COA RVM1870720\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISONE USP42 (BHN BAKU OBAT) COA NED201014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISONE USP42 (BHN BAKU OBAT) COA NED201014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA ND190702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP93 (BHN BAKU OBAT) COA ND190702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.20100620\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29391900\", \"uraian\": \"PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.20100620\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS FUMARATE EP/USP/FCC (BHN BAKU OBAT) COA.2020/248\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"FERROUS FUMARATE EP/USP/FCC (BHN BAKU OBAT) COA.2020/248\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHARMACEUTICAL BOVINE GELATINE 150/08 ...(BAHAN BAKU OBAT ), COA 5131909595\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35030049\", \"uraian\": \"PHARMACEUTICAL BOVINE GELATINE 150/08 ...(BAHAN BAKU OBAT ), COA 5131909595\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2010002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28352510\", \"uraian\": \"DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2010002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT MINERAL PREMIX FOR MATERNAL BISCUIT (BHN BAKU MAKANAN) COA XW92009300,301,302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VIT MINERAL PREMIX FOR MATERNAL BISCUIT (BHN BAKU MAKANAN) COA XW92009300,301,302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20010002, UT20010006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20010002, UT20010006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 76883P\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 76883P\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRONENSAURE MONOHYDRAT (CAM) GRIEB 8-80 MESH E330 (BHN BAKU KOSMETIK) COA THY2003035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRONENSAURE MONOHYDRAT (CAM) GRIEB 8-80 MESH E330 (BHN BAKU KOSMETIK) COA THY2003035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA ROA286203\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA ROA286203\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN542780\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN542780\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN542781\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN542781\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 2010EF6013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"L-ARGININE LO (BHN BAKU KOSMETIK),COA 2010EF6013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for X-21-5595 (BHN BAKU KOSMETIK), COA 005137, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"X-21-5595 (BHN BAKU KOSMETIK), COA 005137, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-2101020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334910\", \"uraian\": \"DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-2101020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA I P001602 (BHN BAKU KOSMETIK) COA 0000043838\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA I P001602 (BHN BAKU KOSMETIK) COA 0000043838\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU MAKANAN) COA TS00015449\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU MAKANAN) COA TS00015449\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE UREA AGAR BASE BBL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0072659\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE UREA AGAR BASE BBL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0072659\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MS INFLAMMATION CBA KIT (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0237897\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"MS INFLAMMATION CBA KIT (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0237897\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0126154\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0126154\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 012615420\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 012615420\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0219903\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0219903\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL N MENINGTIDIS ANTISERUM GRP A (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0226419\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL N MENINGTIDIS ANTISERUM GRP A (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0226419\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0097374\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0097374\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0162999\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0162999\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0183095\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0183095\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0107757,0196557\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0107757,0196557\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364958\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364958\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0133432\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0133432\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0196557\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0196557\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0002860\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0002860\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0182049\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0182049\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0133432\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 19 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0133432\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G(MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0268409\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G(MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0268409\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0268409\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0268409\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0268409\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0268409\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0268409\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0268409\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0245118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0245118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0161777\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0161777\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0196448\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0196448\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0139161\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0139161\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0132265\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0132265\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0275956\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0275956\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRAIN HEART INFUSION BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0105297\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRAIN HEART INFUSION BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0105297\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0202716\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0202716\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BILE SALTS NO 3 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0252448\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BILE SALTS NO 3 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0252448\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RHAMNOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0182029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RHAMNOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0182029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MIL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065822\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MIL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065822\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0043912\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0043912\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE COOKED MEAT MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0119545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE COOKED MEAT MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0119545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8317895\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8317895\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0217336\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0217336\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B03C098M, B05C143M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B03C098M, B05C143M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0048956\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0048956\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0244008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0244008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0245118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0245118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BILE ESCULIN AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0140280\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BILE ESCULIN AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0140280\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9344975\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9344975\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GRAM CRYSTAL VIOLET 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0204263\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GRAM CRYSTAL VIOLET 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0204263\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01C258M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01C258M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER DMACA INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B04C259M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER DMACA INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B04C259M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GRAM IODINE STABILIZED 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0204394\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GRAM IODINE STABILIZED 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0204394\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK)COA 200701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SAKURA EXTRACT B (BHN BAKU KOSMETIK)COA 200701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JOJOBA OIL VIRGIN LOW ODOUR (BHN BAKU KOSMETIK) COA 154917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15159011\", \"uraian\": \"JOJOBA OIL VIRGIN LOW ODOUR (BHN BAKU KOSMETIK) COA 154917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 154736\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15159011\", \"uraian\": \"AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 154736\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK)COA NMP-L-321900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK)COA NMP-L-321900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK)COA NMP-L-280950\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK)COA NMP-L-280950\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 100720\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 100720\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-011760\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-011760\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE POWDE (VLMW) (BHN BAKU KOSMETIK)COA CHP1200210\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND BIO-SODIUM HYALURONATE POWDE (VLMW) (BHN BAKU KOSMETIK)COA CHP1200210\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-020700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-020700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-033060\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-033060\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-042750,GTB-053070\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-042750,GTB-053070\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 102920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 102920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-280950\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-280950\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE 1PCT SOLUTION (BHN BAKU KOSMETIK) COA HASC-512480\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND BIO-SODIUM HYALURONATE 1PCT SOLUTION (BHN BAKU KOSMETIK) COA HASC-512480\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-033060,SFP-N-040270\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-033060,SFP-N-040270\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK) COA CPG-712929\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK) COA CPG-712929\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-011310\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-011310\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 102920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 102920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SK BIOLAND COMPAREX (BHN BAKU KOSMETIK) COA COEX-022800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SK BIOLAND COMPAREX (BHN BAKU KOSMETIK) COA COEX-022800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 200, 25KG BAG (BHN BAKU OBAT) COA. LC030-20-801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 200, 25KG BAG (BHN BAKU OBAT) COA. LC030-20-801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA RBA2922000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA RBA2922000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GRAM SAFRANIN 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0204362\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GRAM SAFRANIN 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0204362\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0143491\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0143491\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 28092020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25081000\", \"uraian\": \"BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 28092020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET), COA DT708506\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX RED (BHN BAKU PEWARNA TABLET), COA DT708506\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE BLACK (BHN BAKU PEWARNA TABLET), COA DT708195\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE BLACK (BHN BAKU PEWARNA TABLET), COA DT708195\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY YELLOW (BHN BAKU PEWARNA TABLET) COA DT708508\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY YELLOW (BHN BAKU PEWARNA TABLET) COA DT708508\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA 200514062\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA 200514062\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX ,25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 091903008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX ,25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 091903008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0820010204\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0820010204\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500AF, 20KG BOXNA (BHN BAKU SUPLEMEN) COA WB005190023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500AF, 20KG BOXNA (BHN BAKU SUPLEMEN) COA WB005190023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E ACETATE 950NS (BHN BAKU SUPLEMEN) COA WB20090730\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E ACETATE 950NS (BHN BAKU SUPLEMEN) COA WB20090730\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB20090234\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB20090234\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIDIN DO-C08- 10KG KA (BHN BAKU KOSMETIK) COA 1554688\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIDIN DO-C08- 10KG KA (BHN BAKU KOSMETIK) COA 1554688\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH636518\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH636518\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH635914\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH635914\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY GREEN (BHN BAKU PEWARNA TABLET) COA SH636271\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY GREEN (BHN BAKU PEWARNA TABLET) COA SH636271\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH636268\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH636268\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH636257\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH636257\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH636267\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH636267\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH636258\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH636258\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH636279\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH636279\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH636260\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH636260\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH636269\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH636269\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH636288\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH636288\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH636259\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH636259\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH636274\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH636274\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH636275\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH636275\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH636282\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH636282\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH636272\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH636272\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PURPLE (BHN BAKU PEWARNA TABLET) COA SH636276\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PURPLE (BHN BAKU PEWARNA TABLET) COA SH636276\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BLACK (BHN BAKU PEWARNA TABLET) COA SH636270\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BLACK (BHN BAKU PEWARNA TABLET) COA SH636270\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH636278\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH636278\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 GREEN (BHN BAKU PEWARNA TABLET) COA SH635561\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 GREEN (BHN BAKU PEWARNA TABLET) COA SH635561\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38247900\", \"uraian\": \"MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AUSTRALIAN TEA TREE OIL-FER (BHN BAKU KOSMETIK) COA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38247900\", \"uraian\": \"AUSTRALIAN TEA TREE OIL-FER (BHN BAKU KOSMETIK) COA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON TEA TREE OIL (BHN BAKU KOSMETIK) COA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38247900\", \"uraian\": \"LEMON TEA TREE OIL (BHN BAKU KOSMETIK) COA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OILESS'CITY (BHN BAKU KOSMETIK) COA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38247900\", \"uraian\": \"OILESS'CITY (BHN BAKU KOSMETIK) COA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SKINECTURA TM (BHN BAKU KOSMETIK) COA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38247900\", \"uraian\": \"SKINECTURA TM (BHN BAKU KOSMETIK) COA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38247900\", \"uraian\": \"LIME PEARL TM AF (BHN BAKU KOSMETIK) COA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WILDPLUM HARVEST TM AF (BHN BAKU KOSMETIK) COA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38247900\", \"uraian\": \"WILDPLUM HARVEST TM AF (BHN BAKU KOSMETIK) COA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT20100007, UT20100008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT20100007, UT20100008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM FEREDETATE, POWDER BP2020 (BHN BAKU SUPLEMEN) COA 3089414\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"SODIUM FEREDETATE, POWDER BP2020 (BHN BAKU SUPLEMEN) COA 3089414\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POTASSIUM L-ASPARTATE 0.5-HYDRATE CRYST.POWDER...(BHN BAKU SUPLEMEN) COA 3053097-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"POTASSIUM L-ASPARTATE 0.5-HYDRATE CRYST.POWDER...(BHN BAKU SUPLEMEN) COA 3053097-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB20090730\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB20090730\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB20090730\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB20090730\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JAGUAR C162 SGI CARDBOARD BOX 25KG (BHN BAKU KOSMETIK) COA MJAC20210A\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"JAGUAR C162 SGI CARDBOARD BOX 25KG (BHN BAKU KOSMETIK) COA MJAC20210A\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) SEA EXTRACTS N (BHN BAKU KOSMETIK) COA 10300028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"EXTRAPONE (R) SEA EXTRACTS N (BHN BAKU KOSMETIK) COA 10300028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) GINSENG (BHN BAKU KOSMETIK) COA 10300038\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"EXTRAPONE (R) GINSENG (BHN BAKU KOSMETIK) COA 10300038\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELUCIRE 48/16 PELLETS (BHN BAKU KOSMETIK) COA 178335, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELUCIRE 48/16 PELLETS (BHN BAKU KOSMETIK) COA 178335, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE BS2X PELLETS (BAHAN BAKU OBAT) COA 18E2903, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE BS2X PELLETS (BAHAN BAKU OBAT) COA 18E2903, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GLIMEPIRIDE (BHN BAKU OBAT) COA H885\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"GLIMEPIRIDE (BHN BAKU OBAT) COA H885\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BRB 1740, DRUM 190 KG ( BHN BAKU KOSMETIK) COA B077435\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100020\", \"uraian\": \"BRB 1740, DRUM 190 KG ( BHN BAKU KOSMETIK) COA B077435\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SWT-7TM L- 1KG (BHN BAKU KOSMETIK) COA 2028701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SWT-7TM L- 1KG (BHN BAKU KOSMETIK) COA 2028701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM - 20KG (BHN BAKU KOSMETIK) COA 2028201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM - 20KG (BHN BAKU KOSMETIK) COA 2028201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20201019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20201019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA FEB\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA FEB\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA FJE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) COA FJE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0265643\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0265643\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0265643\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0265643\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0265643\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0265643\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0265643\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0265643\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0265643\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0265643\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0175364\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0175364\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2248533\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2248533\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2248533\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2248533\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2195717\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2195717\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2195717\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2195717\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0003496\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0003496\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0022270\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0022270\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0022270\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0022270\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PROTEOSE PEPTONE NO.3 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0002346\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PROTEOSE PEPTONE NO.3 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0002346\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9296104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9296104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0175364\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0175364\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0175364\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0175364\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2248533\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2248533\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2195717\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2195717\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2195717\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2195717\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0003496\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0003496\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0022270\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0022270\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0265643\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0265643\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9121860\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9121860\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92010171\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92010171\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MINERAL PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92010172\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"MINERAL PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92010172\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT20100008, UT20100009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT20100008, UT20100009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 20201027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 20201027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA 8MT2010125\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30032000\", \"uraian\": \"STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA 8MT2010125\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS GLUCONATE, POWDER ,USP43 (BHN BAKU OBAT) COA 3091310\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"FERROUS GLUCONATE, POWDER ,USP43 (BHN BAKU OBAT) COA 3091310\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRICALCIUM CITRATE 4-HYDRATE DC 100 (BHN BAKU OBAT) COA 3060551\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181590\", \"uraian\": \"TRICALCIUM CITRATE 4-HYDRATE DC 100 (BHN BAKU OBAT) COA 3060551\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIO VINACCIOLI RAFFINATO (BHN BAKU KOSMETIK) COA.B200045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15152919\", \"uraian\": \"OLIO VINACCIOLI RAFFINATO (BHN BAKU KOSMETIK) COA.B200045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FENTACARE 2231 EF (BHN BAKU KOSMETIK )COA ZH20J2407, ZH20J2604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34029019\", \"uraian\": \"FENTACARE 2231 EF (BHN BAKU KOSMETIK )COA ZH20J2407, ZH20J2604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 154963\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15159011\", \"uraian\": \"AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 154963\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0232102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0232102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0261272\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0261272\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB20090730\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB20090730\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB20070267, WB20070268\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB20070267, WB20070268\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERRIC PYROPHOSPHATE APPROX 25PCT FE MICRONIZED (BHN BAKU MAKANAN) COA 3090451\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28353990\", \"uraian\": \"FERRIC PYROPHOSPHATE APPROX 25PCT FE MICRONIZED (BHN BAKU MAKANAN) COA 3090451\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA DOC3002021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"SODIUM CARBONATE IPH (BHN BAKU OBAT) COA DOC3002021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 19102020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25081000\", \"uraian\": \"BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 19102020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB ( BHN BAKU KOSMETIK), COA 201210\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB ( BHN BAKU KOSMETIK), COA 201210\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPRING MINT (BHN BAKU KOSMETIK) COA 200839\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SPRING MINT (BHN BAKU KOSMETIK) COA 200839\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 193115\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 193115\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK), COA 201146\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK), COA 201146\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNE BUSTERS (BHN BAKU KOSMETIK), COA 201574\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNE BUSTERS (BHN BAKU KOSMETIK), COA 201574\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNE BUSTERS (BHN BAKU KOSMETIK),COA 202038\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNE BUSTERS (BHN BAKU KOSMETIK),COA 202038\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK),COA 200420\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK),COA 200420\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIE201002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIE201002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO200101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO200101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO201002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO201002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LICORICE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA GLG201101-BGBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LICORICE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA GLG201101-BGBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LOTUS OILY EXTRACT GT10 (BHN BAKU KOSMETIK) COA NEN200903-H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LOTUS OILY EXTRACT GT10 (BHN BAKU KOSMETIK) COA NEN200903-H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SEABUCKTHORN HYDROGLYCOLIC EXTRACT(BHN BAKU KOSMETIK) COA HIR201102-B\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SEABUCKTHORN HYDROGLYCOLIC EXTRACT(BHN BAKU KOSMETIK) COA HIR201102-B\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO201001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO201001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA200604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA200604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYDROXOCOBALAMIN CHLORIDE SP (BHN BAKU OBAT) COA AAR0004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"HYDROXOCOBALAMIN CHLORIDE SP (BHN BAKU OBAT) COA AAR0004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX BALITA (BHN BAKU MAKANAN), COA XW92010057, 58,59\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX BALITA (BHN BAKU MAKANAN), COA XW92010057, 58,59\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS200301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS200301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM SALICYLATE BP2005 (BHN BAKU KOSMETIK)COA 202004007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29182100\", \"uraian\": \"SODIUM SALICYLATE BP2005 (BHN BAKU KOSMETIK)COA 202004007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0032595\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0032595\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219120234\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219120234\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01908640\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01908640\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000189669\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000189669\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000189669,0000191168,0000191169\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000189669,0000191168,0000191169\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01908640\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01908640\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219120234\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219120234\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00649020,VE00649643,VE00649648\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"AMPHISOL K (BHN BAKU KOSMETIK) COA VE00649020,VE00649643,VE00649648\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0032595\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0032595\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX ,25KG PC (BHN BAKU KOSMETIK) COA 0519010014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX ,25KG PC (BHN BAKU KOSMETIK) COA 0519010014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02002804, TL02002805\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02002804, TL02002805\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02004001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE02004001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0320051127 S/D 30,32,34,35\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0320051127 S/D 30,32,34,35\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HEXYLENE GLYCOL (BHN BAKU KOSMETIK) COA 20040086\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053900\", \"uraian\": \"HEXYLENE GLYCOL (BHN BAKU KOSMETIK) COA 20040086\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NORIT SX SUPER E 153 (BHN BAKU KOSMETIK) COA 4978845\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38021000\", \"uraian\": \"NORIT SX SUPER E 153 (BHN BAKU KOSMETIK) COA 4978845\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTABIO ARV-S (BHN BAKU OBAT) COA.1903231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"ASTABIO ARV-S (BHN BAKU OBAT) COA.1903231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for M 1555 N 900/980 76 (BHN BAKU KOSMETIK) COA 267905\""}, {"role": "assistant", "content": "{\"hs_code\" : \"56039300\", \"uraian\": \"M 1555 N 900/980 76 (BHN BAKU KOSMETIK) COA 267905\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for M 1555 N 900/980 76 (BHN BAKU KOSMETIK) COA 267905\""}, {"role": "assistant", "content": "{\"hs_code\" : \"56039300\", \"uraian\": \"M 1555 N 900/980 76 (BHN BAKU KOSMETIK) COA 267905\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20070115\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20070115\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE02002007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"RONOXAN A (BHN BAKU MAKANAN) COA UE02002007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ00310604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ00310604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL(BHN BAKU MAKANAN) COA UT20060156\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL(BHN BAKU MAKANAN) COA UT20060156\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UE02006284\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UE02006284\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20080055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20080055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN), COA UT20080055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN), COA UT20080055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE02004001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE02004001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN MINERAL PREMIX FOR CAPSULE V3 (BHN BAKU SUPLEMEN) COA XW92010174\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN MINERAL PREMIX FOR CAPSULE V3 (BHN BAKU SUPLEMEN) COA XW92010174\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE ,20KG BOX (BHN BAKU SUPLEMEN) COA QZ11200811\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE ,20KG BOX (BHN BAKU SUPLEMEN) COA QZ11200811\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12007018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12007018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL ACETATE, 20KG JUG (BHN BAKU SUPLEMEN) COA XH20200401\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL ACETATE, 20KG JUG (BHN BAKU SUPLEMEN) COA XH20200401\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) BHN BAKU MAKANAN, COA UT20050198\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G(TOCO) BHN BAKU MAKANAN, COA UT20050198\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20070115\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20070115\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ00310606\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ00310606\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ00603486\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ00603486\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ00310606\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ00310606\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92009341, XW92009342\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"V003400 (BHN BAKU MAKANAN) COA XW92009341, XW92009342\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW92010177\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW92010177\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ00310606\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ00310606\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ00603486\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ00603486\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92010180\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92010180\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 200618\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"OILESS'CITY TM (BHN BAKU KOSMETIK) COA 200618\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 200934\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 200934\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA 20210305\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17023010\", \"uraian\": \"DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA 20210305\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 060320\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 060320\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SERASENSE SF CM5 (BAHAN BAKU KOSMETIK) COA PA01116033,6035,6037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29319049\", \"uraian\": \"SERASENSE SF CM5 (BAHAN BAKU KOSMETIK) COA PA01116033,6035,6037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLOWER ACIDS (BHN BAKU KOSMETIK) COA HS201002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"FLOWER ACIDS (BHN BAKU KOSMETIK) COA HS201002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SEABUCKTHORN HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HIR201102-B\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SEABUCKTHORN HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HIR201102-B\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS200301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS200301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INCA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK) COA II201014-AI-D-BIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"INCA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK) COA II201014-AI-D-BIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) COA EG543-200905\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) COA EG543-200905\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM191201-PGH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM191201-PGH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-200101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-200101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYDROXYETHYL SALICYLATE PPC 25KG (BHN BAKU KOSMETIK) COA FG20201284\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29182300\", \"uraian\": \"HYDROXYETHYL SALICYLATE PPC 25KG (BHN BAKU KOSMETIK) COA FG20201284\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK)COA CHP1201109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK)COA CHP1201109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK)COA 111020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK)COA 111020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-020700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-020700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND COMPAREX (BHN BAKU KOSMETIK) COA COEX-022800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND COMPAREX (BHN BAKU KOSMETIK) COA COEX-022800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK)COA SFP-N-050600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK)COA SFP-N-050600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BILBERRY (V.MYRTILLUS) ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 20S0241101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BILBERRY (V.MYRTILLUS) ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 20S0241101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 20S0241102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 20S0241102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 32347/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 32347/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIQUORICE LC (BHN BAKU KOSMETIK) COA.117231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"LIQUORICE LC (BHN BAKU KOSMETIK) COA.117231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIQUORICE LC (BHN BAKU KOSMETIK) COA 118144\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"LIQUORICE LC (BHN BAKU KOSMETIK) COA 118144\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IVY DRY HYDR.EXTR.10PCT HPLC (BHN BAKU SUPLEMEN) COA 20B0099200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"IVY DRY HYDR.EXTR.10PCT HPLC (BHN BAKU SUPLEMEN) COA 20B0099200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.20100687\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29391900\", \"uraian\": \"PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.20100687\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.20100620, 685, 687\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29391900\", \"uraian\": \"PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.20100620, 685, 687\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID S 20 (BHN BAKU OBAT) COA 572000-2200135/025-048(24)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232010\", \"uraian\": \"LIPOID S 20 (BHN BAKU OBAT) COA 572000-2200135/025-048(24)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRICKLY PEAR WATER DISTILLATE (BHN BAKU KOSMETIK) COA 20110094\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33019090\", \"uraian\": \"PRICKLY PEAR WATER DISTILLATE (BHN BAKU KOSMETIK) COA 20110094\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GLUCOSAMINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA HS2011466\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"GLUCOSAMINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA HS2011466\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH636901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH636901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH636588\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH636588\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH636903\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH636903\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH636814\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH636814\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH636957\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH636957\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH636959\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH636959\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH636963\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH636963\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH636956\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH636956\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH636900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH636900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH636919\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH636919\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH636955\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH636955\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY FX SILVER (BHN BAKU PEWARNA TABLET) COA SH636960\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY FX SILVER (BHN BAKU PEWARNA TABLET) COA SH636960\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH636902\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH636902\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH637005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH637005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH637004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH637004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH637032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH637032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH635914\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH635914\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND BROWN (BHN BAKU PEWARNA TABLET) COA SH636958\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND BROWN (BHN BAKU PEWARNA TABLET) COA SH636958\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 1936214\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 1936214\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829018363L\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"B-WHITE TM (BHN BAKU KOSMETIK) COA 829018363L\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GREYVERSE TM (BHN BAKU KOSMETIK) COA 833018113L\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GREYVERSE TM (BHN BAKU KOSMETIK) COA 833018113L\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSALITY TM (BHN BAKU KOSMETIK) COA 2012801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROSALITY TM (BHN BAKU KOSMETIK) COA 2012801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXO-P TM (BHN BAKU KOSMETIK) COA 715038112L\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EXO-P TM (BHN BAKU KOSMETIK) COA 715038112L\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 19LNC0925SQ626\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101990\", \"uraian\": \"NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 19LNC0925SQ626\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 19LNC1008SQ637\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101990\", \"uraian\": \"NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 19LNC1008SQ637\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E15 PREMIUM LV HYDROXYPROPYL ...(BHN BAKU PEWARNA TABLET)COA D011JBLL01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E15 PREMIUM LV HYDROXYPROPYL ...(BHN BAKU PEWARNA TABLET)COA D011JBLL01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D011JBPL02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D011JBPL02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D180K2J002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D180K2J002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180K37002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180K37002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA FKF\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) COA FKF\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA FJN\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROTESIL LH (BHN BAKU KOSMETIK) COA FJN\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT20090106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT20090106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 240420\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25070000\", \"uraian\": \"KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 240420\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX MAROON (BHN BAKU PEWARNA TABLET), COA DT709291\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX MAROON (BHN BAKU PEWARNA TABLET), COA DT709291\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA RBA3042000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA RBA3042000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK), COA 200420\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK), COA 200420\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK), COA 202079\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK), COA 202079\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPRINTMINT (BHN BAKU KOSMETIK) ,COA 201280\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SPRINTMINT (BHN BAKU KOSMETIK) ,COA 201280\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) ,COA 200719\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BOTANPI LIQUID B (BHN BAKU KOSMETIK) ,COA 200719\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIPERONYL BUTOXIDE (BHN BAKU OBAT PAKAN TERNAK) COA 20201009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"PIPERONYL BUTOXIDE (BHN BAKU OBAT PAKAN TERNAK) COA 20201009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POVIDONE K-30 (BHN BAKU OBAT) COA PK30-200926F31\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"POVIDONE K-30 (BHN BAKU OBAT) COA PK30-200926F31\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CROSPOVIDONE XL (BHN BAKU OBAT) COA PP201014XL\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"CROSPOVIDONE XL (BHN BAKU OBAT) COA PP201014XL\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPTOPRIL (BHN BAKU OBAT) COA 5103-20-116\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"CAPTOPRIL (BHN BAKU OBAT) COA 5103-20-116\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEVOFLOXACIN HEMIHYDRATE (BHN BAKU OBAT) COA C008-2006307\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"LEVOFLOXACIN HEMIHYDRATE (BHN BAKU OBAT) COA C008-2006307\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-201030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-201030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFADROXIL MONOHYDRATE COMPACTED (PURIDROX COMPACTED) BHN BAKU OBAT, COA B340209\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFADROXIL MONOHYDRATE COMPACTED (PURIDROX COMPACTED) BHN BAKU OBAT, COA B340209\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFADROXIL MONOHYDRATE POWDER (PURIDROX POWDER) BHN BAKU OBAT, COA B334711\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFADROXIL MONOHYDRATE POWDER (PURIDROX POWDER) BHN BAKU OBAT, COA B334711\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19110005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19110005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 071320/006484\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 071320/006484\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA201105\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA201105\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA201105\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA201105\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B MIX-SPREAD (BHN BAKU MAKANAN), COA XW92011126\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN B MIX-SPREAD (BHN BAKU MAKANAN), COA XW92011126\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 14 PREMIUM (BHN BAKU PEWARNA TABLET), COA D184K5S021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 14 PREMIUM (BHN BAKU PEWARNA TABLET), COA D184K5S021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE A PELLETS (BHN BAKU OBAT) COA 20E2306\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE A PELLETS (BHN BAKU OBAT) COA 20E2306\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 154963\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15159011\", \"uraian\": \"AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 154963\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0162999\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0162999\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0232663\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0232663\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0262796\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0262796\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0209866\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0209866\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0097374\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0097374\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0108475\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0108475\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL E COIL O ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0094884\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL E COIL O ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0094884\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0262823\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0262823\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01C258M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01C258M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GRAM DECOLORIZER 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0237809\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GRAM DECOLORIZER 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0237809\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GRAM SAFRANIN 250ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0237818\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GRAM SAFRANIN 250ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0237818\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER INDOLE (MEDIA UTK PNGEMBANGAN MIKROORGANISME) BATCH B02C309M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER INDOLE (MEDIA UTK PNGEMBANGAN MIKROORGANISME) BATCH B02C309M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9218592\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9218592\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0287484\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0287484\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0287484\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0287484\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE CRYSTAL E/ ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0218624\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"TUBE CRYSTAL E/ ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0218624\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0287484\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0287484\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0035732\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0035732\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2013232\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2013232\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0286357\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRUCELLA AGAR BBL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0286357\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G(MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0007272\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE COLUMBIA AGAR BASE 500G(MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0007272\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0062865\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0062865\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9309193\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9309193\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0237291\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0237291\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0043912\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0043912\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MICRO ASSAY CULTURE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0230001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MICRO ASSAY CULTURE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0230001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0272335,8271706\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0272335,8271706\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0217336\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0217336\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GASPAK EZ LARGE INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7326630010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"GASPAK EZ LARGE INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7326630010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B02C205M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B02C205M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0148256\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0148256\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0133196\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0133196\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M TGE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0296293\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M TGE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0296293\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065715\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065715\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GRAM CRYSTAL VIOLET 250ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0237798\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GRAM CRYSTAL VIOLET 250ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0237798\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0286603\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0286603\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0211466\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0211466\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0239539\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0239539\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ESOMEPRAZOLE SODIUM STERILE (BAHAN BAKU OBAT), COA SI/EPZ/00051120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"ESOMEPRAZOLE SODIUM STERILE (BAHAN BAKU OBAT), COA SI/EPZ/00051120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANTOPRAZOLE SODIUM STERILE (BHN BAKU OBAT) COA SI/PPZ/00771120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"PANTOPRAZOLE SODIUM STERILE (BHN BAKU OBAT) COA SI/PPZ/00771120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA D10231UP\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA D10231UP\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EDIBLE BOVINE GELATINE 140/20 HAL(BAHAN BAKU OBAT ), COA 5002010030,5002011077\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35030049\", \"uraian\": \"EDIBLE BOVINE GELATINE 140/20 HAL(BAHAN BAKU OBAT ), COA 5002010030,5002011077\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHARMACEUTICAL BOVINE GELATINE 200/18 (BHN BAKU OBAT) COA 5002011089\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35030049\", \"uraian\": \"PHARMACEUTICAL BOVINE GELATINE 200/18 (BHN BAKU OBAT) COA 5002011089\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EDIBLE BOVINE GELATINE 200/400 (BHN BAKU OBAT) COA S19F11\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35030049\", \"uraian\": \"EDIBLE BOVINE GELATINE 200/400 (BHN BAKU OBAT) COA S19F11\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA DOC3002021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"SODIUM CARBONATE IPH (BHN BAKU OBAT) COA DOC3002021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETORICOXIB (BHN BAKU OBAT) COA ERBPC20004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"ETORICOXIB (BHN BAKU OBAT) COA ERBPC20004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM CHLORIDE (BHN BAKU SUPLEMEN) COA 3054789\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28273100\", \"uraian\": \"MAGNESIUM CHLORIDE (BHN BAKU SUPLEMEN) COA 3054789\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100 PREMIUM LVCR (BHN BAKU PEWARNA TABLET), COA D180J8C021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100 PREMIUM LVCR (BHN BAKU PEWARNA TABLET), COA D180J8C021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHARMABURST (R) 500 (BHN BAKU OBAT) COA 122000348\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069099\", \"uraian\": \"PHARMABURST (R) 500 (BHN BAKU OBAT) COA 122000348\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA T703300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA T703300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELOIL SC (BHN BAKU OBAT) COA 182444\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELOIL SC (BHN BAKU OBAT) COA 182444\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRANCUTOL P (BHN BAKU OBAT) COA 180617\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TRANCUTOL P (BHN BAKU OBAT) COA 180617\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CETYL PALMITATE PELLETSCAR (BAHAN BAKU OBAT) COA 182801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"CETYL PALMITATE PELLETSCAR (BAHAN BAKU OBAT) COA 182801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LABRAFIL M 1944 CS (BAHAN BAKU OBAT) COA 181807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LABRAFIL M 1944 CS (BAHAN BAKU OBAT) COA 181807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELEOL MONO AND DIGLYCERIDES NF (BHN BAKU OBAT) COA 20E2004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELEOL MONO AND DIGLYCERIDES NF (BHN BAKU OBAT) COA 20E2004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELOIL SC (BHN BAKU OBAT) COA 182444\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELOIL SC (BHN BAKU OBAT) COA 182444\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHARMACEUTICAL BOVINE GELATINE 150/08 ...(BAHAN BAKU OBAT ), COA 5132010428\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35030049\", \"uraian\": \"PHARMACEUTICAL BOVINE GELATINE 150/08 ...(BAHAN BAKU OBAT ), COA 5132010428\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHARMACEUTICAL BOVINE GELATIN 150/08...(BAHAN BAKU OBAT ), COA 5132012567\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35030049\", \"uraian\": \"PHARMACEUTICAL BOVINE GELATIN 150/08...(BAHAN BAKU OBAT ), COA 5132012567\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL ...(BHN BAKU PEWARNA TABLET)COA D180K7V003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM HYDROXYPROPYL ...(BHN BAKU PEWARNA TABLET)COA D180K7V003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 202000389\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 202000389\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM AL HYD GEL VISCO 9, USP (BHN BAKU OBAT) COA 102002034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"BARCROFT TM AL HYD GEL VISCO 9, USP (BHN BAKU OBAT) COA 102002034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M-31.0PCT (BHN BAKU OBAT) COA 102029034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MG HYD PASTE USP TYPE M-31.0PCT (BHN BAKU OBAT) COA 102029034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM AL HYD GEL LV13, USP (BHN BAKU OBAT) COA 102013066\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"BARCROFT TM AL HYD GEL LV13, USP (BHN BAKU OBAT) COA 102013066\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102023014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102023014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP 5300 (BHN BAKU OBAT) COA 102069008,102069010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MAGNESIUM HYDROXIDE USP 5300 (BHN BAKU OBAT) COA 102069008,102069010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK)COA HMVBD-020700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK)COA HMVBD-020700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK)COA HOXB-012040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK)COA HOXB-012040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 194849\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 194849\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB20070268\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB20070268\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 20 PREMIUM (BHN BAKU PEWARNA TABLET)COA D184K4R021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 20 PREMIUM (BHN BAKU PEWARNA TABLET)COA D184K4R021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 10 PREMIUM (BHN BAKU PEWARNA TABLET) COA D184K3D021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 10 PREMIUM (BHN BAKU PEWARNA TABLET) COA D184K3D021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV (BHN BAKU PEWARNA TABLET)COA D011JBPL02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV (BHN BAKU PEWARNA TABLET)COA D011JBPL02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM (BHN BAKU PEWARNA TABLET)COA D180K4R001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM (BHN BAKU PEWARNA TABLET)COA D180K4R001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100 PREMIUM LV (BHN BAKU PEWARNA TABLET) COA D180J78021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100 PREMIUM LV (BHN BAKU PEWARNA TABLET) COA D180J78021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR (BHN BAKU UTK PEWARNA TABLET) COA D180JCV004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR (BHN BAKU UTK PEWARNA TABLET) COA D180JCV004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E15 PREMIUM LV (BHN BAKU PEWARNA TABLET) COA D011K1AL02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E15 PREMIUM LV (BHN BAKU PEWARNA TABLET) COA D011K1AL02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) 0219120234\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) 0219120234\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL,10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0032595\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL,10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0032595\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL ,10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0032595\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL ,10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0032595\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL 75L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01909355\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL 75L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01909355\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF20164001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF20164001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02002805\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02002805\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0820010214\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0820010214\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES1908279\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"ALLANTOIN (BHN BAKU KOSMETIK) COA ES1908279\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50, 20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02003024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50, 20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02003024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX, 25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0919030008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX, 25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0919030008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OPI2007018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OPI2007018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE02004001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU MAKANAN) COA UE02004001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 103047-D (BHN BAKU MAKANAN) COA XW92010207\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 103047-D (BHN BAKU MAKANAN) COA XW92010207\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN MINERAL PREMIX FOR BISCUIT (BHN BAKU MAKANAN) COA XW92010303\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN MINERAL PREMIX FOR BISCUIT (BHN BAKU MAKANAN) COA XW92010303\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 103093-A (BHN BAKU MAKANAN) COA XW92010302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 103093-A (BHN BAKU MAKANAN) COA XW92010302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT20080026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT20080026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE02004001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE02004001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12007018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12007018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00619044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00619044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030068\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030068\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT20060123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT20060123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20080052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20080052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20080052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20080052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM ASCORBATE, 25KG BOX ALU (BHN BAKU SUPLEMEN) COA WB20100069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"CALCIUM ASCORBATE, 25KG BOX ALU (BHN BAKU SUPLEMEN) COA WB20100069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB20100069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB20100069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2002019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2002019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20080052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20080052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92010227\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92010227\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT20030195, UT20040196\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT20030195, UT20040196\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20070115\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20070115\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92010233,XW92010234,XW92010235\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"V003400 (BHN BAKU MAKANAN) COA XW92010233,XW92010234,XW92010235\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIPERONYL BUTOXIDE (BHN BAKU OBAT PAKAN TERNAK) COA 20201009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"PIPERONYL BUTOXIDE (BHN BAKU OBAT PAKAN TERNAK) COA 20201009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET), COA DT709902\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX RED (BHN BAKU PEWARNA TABLET), COA DT709902\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX TAN (BHN BAKU PEWARNA TABLET), COA DT709903\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX TAN (BHN BAKU PEWARNA TABLET), COA DT709903\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE BLACK (BHN BAKU PEWARNA TABLET) COA DT709904\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE BLACK (BHN BAKU PEWARNA TABLET) COA DT709904\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORANGE FRUITOGREEN HG (BHN BAKU KOSMETIK)COA CAF200101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ORANGE FRUITOGREEN HG (BHN BAKU KOSMETIK)COA CAF200101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) COA OLVH201104-ENBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) COA OLVH201104-ENBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2008642675\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2008642675\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP830190:BA3138\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP830190:BA3138\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU PEWARNA TABLET) COA WP833405:BA4812\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU PEWARNA TABLET) COA WP833405:BA4812\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW ... (BHN BAKU PEWARNA TABLET) COA WP830190:BA3137\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #6/SUNSET YELLOW ... (BHN BAKU PEWARNA TABLET) COA WP830190:BA3137\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU PEWARNA TABLET) COA WP822862:BA0316\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU PEWARNA TABLET) COA WP822862:BA0316\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERYTHROSINE AL 38PCT-42PCT.(BHN BAKU PEWARNA TABLET) COA WP822178:1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"ERYTHROSINE AL 38PCT-42PCT.(BHN BAKU PEWARNA TABLET) COA WP822178:1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP833111\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP833111\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP833112\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP833112\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100 PREMIUM LVCR (BHN BAKU PEWARNA TABLET), COA D180J8D022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100 PREMIUM LVCR (BHN BAKU PEWARNA TABLET), COA D180J8D022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEONY P118 182 (BHN BAKU KOSMETIK) COA 3104218\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"PEONY P118 182 (BHN BAKU KOSMETIK) COA 3104218\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA.0000073449\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA.0000073449\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 00319\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 00319\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFADROXIL MONOHYDRATE (BHN BAKU OBAT) COA Z310407,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFADROXIL MONOHYDRATE (BHN BAKU OBAT) COA Z310407,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD(BHN BAKU MAKANAN) COA UT20100044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM)'10' N-3 INF POWDER S/SD(BHN BAKU MAKANAN) COA UT20100044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT20100044,UT20100046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT20100044,UT20100046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT20100046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT20100046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100/CWS/AM (BHN BAKU MAKANAN) COA UT20080032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100/CWS/AM (BHN BAKU MAKANAN) COA UT20080032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE ,25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ00416054, UQ00416055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE ,25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ00416054, UQ00416055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-PANTHENOL 50L, 1000KG IBC (BHN BAKU KOSMETIK) COA TL02011646\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL-PANTHENOL 50L, 1000KG IBC (BHN BAKU KOSMETIK) COA TL02011646\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL,1000KG IBC (BHN BAKU KOSMETIK) COA TL02002803\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL,1000KG IBC (BHN BAKU KOSMETIK) COA TL02002803\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT20090106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT20090106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIAMI SCG(S) (BHN BAKU KOSMETIK),COA 20121255\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34021190\", \"uraian\": \"MIAMI SCG(S) (BHN BAKU KOSMETIK),COA 20121255\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINC BISGLYCINATE POWDER,FOR THE USE IN FOOD SUPPLEMENTS (BHN BAKU SUPLEMEN) COA 3093384\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"ZINC BISGLYCINATE POWDER,FOR THE USE IN FOOD SUPPLEMENTS (BHN BAKU SUPLEMEN) COA 3093384\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CARTON BOX+ PRODUCT LABEL+OTHER (KARTON KOSONG) SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"48191000\", \"uraian\": \"CARTON BOX+ PRODUCT LABEL+OTHER (KARTON KOSONG) SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA RBA343207\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA RBA343207\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA RBA342204\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA RBA342204\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPD2011072\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPD2011072\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID DC 97PCT, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG2011003, HPG2011004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID DC 97PCT, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG2011003, HPG2011004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL ,PRESSED (BHN BAKU KOSMETIK), COA 8007068001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL ,PRESSED (BHN BAKU KOSMETIK), COA 8007068001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300047\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300047\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE USP 43 (BHN BAKU OBAT) COA APL/01215/I-20\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE SODIUM PHOSPHATE USP 43 (BHN BAKU OBAT) COA APL/01215/I-20\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HG33516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34029099\", \"uraian\": \"MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HG33516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYPOL 980 (20KG) BAHAN BAKU KOSMETIK, COA 11520072, 11520073, 11520074\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39069099\", \"uraian\": \"ACRYPOL 980 (20KG) BAHAN BAKU KOSMETIK, COA 11520072, 11520073, 11520074\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE 400D S (BHN BAKU KOSMETIK) COA 2007A4-07\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE 400D S (BHN BAKU KOSMETIK) COA 2007A4-07\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANNITOL POWDER USP/EP - MANNO (BHN BAKU OBAT) COA.302011011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054300\", \"uraian\": \"MANNITOL POWDER USP/EP - MANNO (BHN BAKU OBAT) COA.302011011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA326202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA326202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA RBA3202000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA RBA3202000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA RBA3472000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA RBA3472000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN ) COA MTP27620\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN ) COA MTP27620\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC SODIUM ASCORBATE REGULAR,25KG BAL (BAHAN BAKU SUPLEMEN) COA HPD2011209,233,234,236,237,238\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC SODIUM ASCORBATE REGULAR,25KG BAL (BAHAN BAKU SUPLEMEN) COA HPD2011209,233,234,236,237,238\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GUAIFENESIN USP 41 (B. BAKU OBAT) COA GGE-2010192 S/D GGE-2010199, GGE-2011200 S/D 2011205\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29094900\", \"uraian\": \"GUAIFENESIN USP 41 (B. BAKU OBAT) COA GGE-2010192 S/D GGE-2010199, GGE-2011200 S/D 2011205\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-201030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-201030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA 181151\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELUCIRE 44/14 (BHN BAKU OBAT) COA 181151\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA 182613\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELUCIRE 44/14 (BHN BAKU OBAT) COA 182613\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH637704\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH637704\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH637717\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH637717\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH637720\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH637720\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH637700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH637700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH637709\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH637709\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH637702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH637702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH637722\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH637722\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH637729\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH637729\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH637708\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH637708\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH637727\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH637727\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH637707\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH637707\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH638009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH638009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH637719\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH637719\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH637701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH637701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH637723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH637723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND GREEN (BHN BAKU PEWARNA TABLET) COA SH637714\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND GREEN (BHN BAKU PEWARNA TABLET) COA SH637714\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 BROWN (BHN BAKU PEWARNA TABLET) COA SH637724\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 BROWN (BHN BAKU PEWARNA TABLET) COA SH637724\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY EZ CLEAR (BHN BAKU PEWARNA TABLET) COA SH637705\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY EZ CLEAR (BHN BAKU PEWARNA TABLET) COA SH637705\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BLACK (BHN BAKU PEWARNA TABLET) COA SH637728\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BLACK (BHN BAKU PEWARNA TABLET) COA SH637728\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY GREEN (BHN BAKU PEWARNA TABLET) COA SH637716\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY GREEN (BHN BAKU PEWARNA TABLET) COA SH637716\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB RED (BHN BAKU PEWARNA TABLET) COA SH637725\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB RED (BHN BAKU PEWARNA TABLET) COA SH637725\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II PURPLE (BHN BAKU PEWARNA TABLET) COA SH637726\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II PURPLE (BHN BAKU PEWARNA TABLET) COA SH637726\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH638597\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH638597\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II BLUE (BHN BAKU PEWARNA TABLET) COA SH637731\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II BLUE (BHN BAKU PEWARNA TABLET) COA SH637731\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH637706\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH637706\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH637706\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH637706\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND BROWN (BHN BAKU PEWARNA TABLET) COA SH638313\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND BROWN (BHN BAKU PEWARNA TABLET) COA SH638313\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DWI-BI (BHN BAKU MAKANAN) COA XW92010224\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"DWI-BI (BHN BAKU MAKANAN) COA XW92010224\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0320051316,317,319,320\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0320051316,317,319,320\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219120234\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219120234\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000191533, 0000191813\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000191533, 0000191813\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0032595\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0032595\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C(R) 50, 20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02003025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C(R) 50, 20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02003025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92009073,,XW92009074\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92009073,,XW92009074\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX, 25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0919030009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX, 25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0919030009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0820010214\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0820010214\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02002804, TL02002805\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02002804, TL02002805\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF20164001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF20164001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH637976\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH637976\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH638009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH638009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH637977\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH637977\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY BROWN (BHN BAKU PEWARNA TABLET) COA SH637970\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY BROWN (BHN BAKU PEWARNA TABLET) COA SH637970\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL -EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH638598\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL -EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH638598\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH637991\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH637991\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE(BHN BAKU PEWARNA TABLET) COA SH637992\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE(BHN BAKU PEWARNA TABLET) COA SH637992\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH637704\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH637704\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH637972\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH637972\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH637968\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH637968\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH637700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH637700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA 200601052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA 200601052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 1,3-BUTYLENE GLYCOL, COSMETIC QUALITY(BHN BAKU KOSMETIK) COA P0620O01BC\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"1,3-BUTYLENE GLYCOL, COSMETIC QUALITY(BHN BAKU KOSMETIK) COA P0620O01BC\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA201105\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA201105\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) COA OLVH201104-ENBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) COA OLVH201104-ENBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) COA OLVH201205-ENBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) COA OLVH201205-ENBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS200301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS200301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO201002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO201002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GARLIC EXTRACT (BHN BAKU OBAT) COA BNPGE201110C106601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"GARLIC EXTRACT (BHN BAKU OBAT) COA BNPGE201110C106601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METOCLOPRAMIDE HYDROCHLORIDE BP (BHN BAKU OBAT) COA M-2012411\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"METOCLOPRAMIDE HYDROCHLORIDE BP (BHN BAKU OBAT) COA M-2012411\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RANITIDINE HCL USP (BHN BAKU OBAT) COA RH 769 12 20\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29321900\", \"uraian\": \"RANITIDINE HCL USP (BHN BAKU OBAT) COA RH 769 12 20\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA MTP35320\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA MTP35320\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA MTP22620,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA MTP22620,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (B.BAKU SUPLEMEN) COA MTP26820,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (B.BAKU SUPLEMEN) COA MTP26820,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH638678\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH638678\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH638586\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH638586\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE ( BHN BAKU PEWARNA TABLET) COA SH638711\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE ( BHN BAKU PEWARNA TABLET) COA SH638711\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH638675\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH638675\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH638677\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH638677\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ADSORB AFLA (BHN BAKU UNTUK PAKAN TERNAK) COA 165\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25081000\", \"uraian\": \"ADSORB AFLA (BHN BAKU UNTUK PAKAN TERNAK) COA 165\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NOREPINEPHRINE BITARTRATE (NORADRENALINE TARTRATE)BHN BAKU OBAT, COA 600104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29379010\", \"uraian\": \"NOREPINEPHRINE BITARTRATE (NORADRENALINE TARTRATE)BHN BAKU OBAT, COA 600104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 03/19GL4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 03/19GL4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 03/19GL4,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 03/19GL4,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA 181151\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELUCIRE 44/14 (BHN BAKU OBAT) COA 181151\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELEOL MONO AND DIGLYCERIDES NF (BHN BAKU OBAT) COA 20E2004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELEOL MONO AND DIGLYCERIDES NF (BHN BAKU OBAT) COA 20E2004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK COA B021120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK COA B021120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B021120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B021120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB031120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB031120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB031120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB031120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG281120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG281120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 121020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25070000\", \"uraian\": \"KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 121020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRASIL DM300 000 A2 (BHN BAKU KOSMETIK) COA 2050F5011D\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100090\", \"uraian\": \"MIRASIL DM300 000 A2 (BHN BAKU KOSMETIK) COA 2050F5011D\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SCHISANDRA EXTRACT ( BAHAN BAKU OBAT ) COA SCE03-20081701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SCHISANDRA EXTRACT ( BAHAN BAKU OBAT ) COA SCE03-20081701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-200405\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-200405\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNEBUSTERS ( BHN BAKU KOSMETIK), COA 202319\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNEBUSTERS ( BHN BAKU KOSMETIK), COA 202319\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SOAPNUT EXTRACT POWDER (BHN BAKU KOSMETIK) COA 201983\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SOAPNUT EXTRACT POWDER (BHN BAKU KOSMETIK) COA 201983\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPRINGMINT (BHN BAKU KOSMETIK) COA 201280\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SPRINGMINT (BHN BAKU KOSMETIK) COA 201280\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EMALEX GWIS-320 (BHN BAKU KOSMETIK), COA 1-1046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34021310\", \"uraian\": \"EMALEX GWIS-320 (BHN BAKU KOSMETIK), COA 1-1046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EMALEX PEIS-10EX (BHN BAKU KOSMETIK), COA 2010-09\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34021310\", \"uraian\": \"EMALEX PEIS-10EX (BHN BAKU KOSMETIK), COA 2010-09\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK),COA 201904\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK),COA 201904\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK),COA 201052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"MANDARINCLEAR (BHN BAKU KOSMETIK),COA 201052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTO COLLAGE B (N) BHN BAKU KOSMETIK, COA 202079\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHYTO COLLAGE B (N) BHN BAKU KOSMETIK, COA 202079\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIOBENEFITY (BHN BAKU KOSMETIK) COA 201575\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BIOBENEFITY (BHN BAKU KOSMETIK) COA 201575\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 201146\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 201146\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 201501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 201501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIOCELLACT CHAMOMILLA BD (BHN BAKU KOSMETIK) COA 201575\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BIOCELLACT CHAMOMILLA BD (BHN BAKU KOSMETIK) COA 201575\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERRIC PYROPHOSPHATE,APPROX 25PCT FE (BHN BAKU MAKANAN) COA 3090451\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28353990\", \"uraian\": \"FERRIC PYROPHOSPHATE,APPROX 25PCT FE (BHN BAKU MAKANAN) COA 3090451\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MOXIFLOXACIN HCL (BHN BAKU OBAT) COA MP0081120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334990\", \"uraian\": \"MOXIFLOXACIN HCL (BHN BAKU OBAT) COA MP0081120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MOXIFLOXACIN HCL ( BHN BAKU OBAT) COA MP0070820\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334990\", \"uraian\": \"MOXIFLOXACIN HCL ( BHN BAKU OBAT) COA MP0070820\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 2012043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"ACESULFAME K (BHN BAKU OBAT) COA 2012043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INOSITOL (BHN BAKU OBAT) COA 202012045 S/D 202012047\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"INOSITOL (BHN BAKU OBAT) COA 202012045 S/D 202012047\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG201204\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG201204\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SURELEASE ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA IN542674\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"SURELEASE ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA IN542674\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SURELEASE ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA IN542874\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"SURELEASE ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA IN542874\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SURELEASE ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA IN542778\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"SURELEASE ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA IN542778\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANNOGEM (R) XL OPAL SPRAY DRIED MANNITOL USP/EP (BHN BAKU OBAT) COA 122000023,122000024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054300\", \"uraian\": \"MANNOGEM (R) XL OPAL SPRAY DRIED MANNITOL USP/EP (BHN BAKU OBAT) COA 122000023,122000024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 121910046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28365010\", \"uraian\": \"VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 121910046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LUBRIPHARM (R) SSF NF/EP/JP SODIUM STEARYL FUMARATE(BHN BAKU OBAT) COA 122000663\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"LUBRIPHARM (R) SSF NF/EP/JP SODIUM STEARYL FUMARATE(BHN BAKU OBAT) COA 122000663\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEPPERMINT ORGANIC FROM FRANCE DISTILLATE (BHN BAKU KOSMETIK) COA MEPD201002-BIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PEPPERMINT ORGANIC FROM FRANCE DISTILLATE (BHN BAKU KOSMETIK) COA MEPD201002-BIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO201001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO201001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIE201002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIE201002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO201002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO201002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS200301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS200301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20201119\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20201119\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NATURAL SOURCE MIXED TOCOPHEROLS (BHN BAKU KOSMETIK) COA 201206M001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"NATURAL SOURCE MIXED TOCOPHEROLS (BHN BAKU KOSMETIK) COA 201206M001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 3107407\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 3107407\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 201023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 201023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 200815,200818\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33012990\", \"uraian\": \"AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 200815,200818\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIME PEARL TM AF(BHN BAKU KOSMETIK) COA 201025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"LIME PEARL TM AF(BHN BAKU KOSMETIK) COA 201025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 200911\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"OILESS'CITY TM (BHN BAKU KOSMETIK) COA 200911\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 200625\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061900\", \"uraian\": \"MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 200625\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 201217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33012990\", \"uraian\": \"AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 201217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA 8MT2012136\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30032000\", \"uraian\": \"STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA 8MT2012136\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP2010/USP42 (BHN BAKU OBAT) COA NED200818,NED201005,NED200804\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP2010/USP42 (BHN BAKU OBAT) COA NED200818,NED201005,NED200804\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISONE USP42 (BHN BAKU OBA) COA NPD 200934\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISONE USP42 (BHN BAKU OBA) COA NPD 200934\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA RBA3362000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA RBA3362000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANNOGEM (R) XL OPAL SPRAY DRIED MANNITOL...(B BAKU OBAT)COA122000023,SAMPLE NOCOMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054300\", \"uraian\": \"MANNOGEM (R) XL OPAL SPRAY DRIED MANNITOL...(B BAKU OBAT)COA122000023,SAMPLE NOCOMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE CRYSTAL E/ ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0218624\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"TUBE CRYSTAL E/ ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0218624\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE CRYSTAL INOCULUM BROTH (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0231561\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"TUBE CRYSTAL INOCULUM BROTH (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0231561\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0139933\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0139933\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0308542\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0308542\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9323677\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9323677\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MIDDLEBROOK 7H9 BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0112178\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MIDDLEBROOK 7H9 BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0112178\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0335417\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0335417\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0097116\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0097116\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0286434\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0286434\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0268454,0287614..\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0268454,0287614..\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0282615\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0282615\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0315052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0315052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161680\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161680\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0275956\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0275956\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0280297\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0280297\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0286357\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0286357\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0007272\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0007272\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0315710\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MYCOPLASMA BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0315710\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEMOGLOBIN FREEZE DIED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0252083\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEMOGLOBIN FREEZE DIED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0252083\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CHROMAGAR CANDIDA 500GM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0238375\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE CHROMAGAR CANDIDA 500GM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0238375\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9015557\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9015557\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0265212\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0265212\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIADIS MSRV 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0063501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIADIS MSRV 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0063501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0308018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0308018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST CARBON BASE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0038689\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE YEAST CARBON BASE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0038689\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0224851\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0224851\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0343129\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0343129\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0280159\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0280159\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0307318\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0307318\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0183124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0183124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0287484\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0287484\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0133432\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0133432\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0254273,0268735\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0254273,0268735\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TREHALOSE 10G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0294315\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TREHALOSE 10G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0294315\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000191813,0000191537,0000191887\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000191813,0000191537,0000191887\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0032595\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0032595\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01908640\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01908640\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT20090030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT20090030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ00610736\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ00610736\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20070119\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20070119\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030049\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030049\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT20050198\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT20050198\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030068, WB20030076\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030068, WB20030076\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT20060124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT20060124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20040027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20040027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20080207\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20080207\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20090010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20090010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12007021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12007021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20090010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20090010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT20070119\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT20070119\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT20090030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT20090030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT20080026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT20080026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12007021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12007021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL02007087\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL02007087\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ00610736, UQ00610738\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ00610736, UQ00610738\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20070119\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20070119\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT19100220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT19100220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHASEOLUS VULGARIS DRY EXTRACT (BHN BAKU SUPLEMEN) SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"PHASEOLUS VULGARIS DRY EXTRACT (BHN BAKU SUPLEMEN) SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEUCOCYANIDINS (BHN BAKU SUPLEMEN) SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"LEUCOCYANIDINS (BHN BAKU SUPLEMEN) SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0293664\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0293664\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0276571\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0276571\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0277779\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0277779\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GLICLAZIDE (BHN BAKU OBAT) COA 2040001414\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"GLICLAZIDE (BHN BAKU OBAT) COA 2040001414\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2020101003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2020101003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-003-X\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-003-X\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN542261\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN542261\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000294, 122000361\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000294, 122000361\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED GRADE A)BHN BAKU OBAT,COA M533258,M533090,M533260,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED GRADE A)BHN BAKU OBAT,COA M533258,M533090,M533260,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000047423\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000047423\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA P112 180 (BHN BAKU OBAT) COA 0000047926\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA P112 180 (BHN BAKU OBAT) COA 0000047926\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-201030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-201030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA FEB\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA FEB\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA FKF\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) COA FKF\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMITOSE R (BHN BAKU KOSMETIK) COA FHD\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AMITOSE R (BHN BAKU KOSMETIK) COA FHD\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA FKB\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROTESIL LH (BHN BAKU KOSMETIK) COA FKB\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE ,25KG BOX(BHN BAKU MAKANAN) COA TL02011164,TL02011169\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE ,25KG BOX(BHN BAKU MAKANAN) COA TL02011164,TL02011169\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX(B. BAKU MAKANAN), COA TL02011131,11138,11142,11154,11164\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25KG BOX(B. BAKU MAKANAN), COA TL02011131,11138,11142,11154,11164\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 201023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 201023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 200815,200818\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33012990\", \"uraian\": \"AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 200815,200818\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIME PEARL TM AF(BHN BAKU KOSMETIK) COA 201025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"LIME PEARL TM AF(BHN BAKU KOSMETIK) COA 201025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 200911\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"OILESS'CITY TM (BHN BAKU KOSMETIK) COA 200911\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 200625\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061900\", \"uraian\": \"MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 200625\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 201217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33012990\", \"uraian\": \"AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 201217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0049504\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0049504\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AC091KF FUCOGEL 1.5P 25 KG (BHN BAKU KOSMETIK) COA 0050733\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AC091KF FUCOGEL 1.5P 25 KG (BHN BAKU KOSMETIK) COA 0050733\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP833129\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP833129\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU PEWARNA TABLET) COA WP833403: BA4808\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU PEWARNA TABLET) COA WP833403: BA4808\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT ... (BHN BAKU PEWARNA TABLET) COA WP831854:BA3821\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"D AND C YELLOW #10 AL 15PCT-20PCT ... (BHN BAKU PEWARNA TABLET) COA WP831854:BA3821\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW... (BHN BAKU PEWARNA TABLET) COA WP830532:BA3278\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #6/SUNSET YELLOW... (BHN BAKU PEWARNA TABLET) COA WP830532:BA3278\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL...(BHN BAKU PEWARNA TABLET) COA WP822863:BA0318\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #5/TARTRAZINE AL...(BHN BAKU PEWARNA TABLET) COA WP822863:BA0318\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C RED #40/ALLURA RED AC AL... (BHN BAKU PEWARNA TABLET) COA WP835343:BA5318\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C RED #40/ALLURA RED AC AL... (BHN BAKU PEWARNA TABLET) COA WP835343:BA5318\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW... (BHN BAKU PEWARNA TABLET) COA WP830995:BA3413\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C YELLOW #6/SUNSET YELLOW... (BHN BAKU PEWARNA TABLET) COA WP830995:BA3413\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT A PALM 1.0M+VIT.D3 100'000 (BHN BAKU MAKANAN) COA UT20110105\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VIT A PALM 1.0M+VIT.D3 100'000 (BHN BAKU MAKANAN) COA UT20110105\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO (R)LUTEIN 20PCT SAF, 1KG ALUF (BHN BAKU SUPLEMEN) COA UE02007035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO (R)LUTEIN 20PCT SAF, 1KG ALUF (BHN BAKU SUPLEMEN) COA UE02007035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT20110052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT20110052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ00617016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ00617016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE TM PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) COA 702028515I\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ABYSSINE TM PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) COA 702028515I\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785018206L\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785018206L\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782018475L\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK) COA 782018475L\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN TM (BHN BAKU KOSMETIK) COA 828018409L\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"NEUTRAZEN TM (BHN BAKU KOSMETIK) COA 828018409L\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784027993K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784027993K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ISOFLAVONES 150 BDF - 10KG (BHN BAKU KOSMETIK) COA 9484766\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ISOFLAVONES 150 BDF - 10KG (BHN BAKU KOSMETIK) COA 9484766\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRO-LIPO TM NEO -5KG (BHN BAKU KOSMETIK) COA 2029001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PRO-LIPO TM NEO -5KG (BHN BAKU KOSMETIK) COA 2029001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM -5KG (BHN BAKU KOSMETIK) COA 2032305\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM -5KG (BHN BAKU KOSMETIK) COA 2032305\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOHAIR TM -5KG (BHN BAKU KOSMETIK) COA 2023577\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNFLOHAIR TM -5KG (BHN BAKU KOSMETIK) COA 2023577\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSALITY TM -5KG (BHN BAKU KOSMETIK) COA 2033901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROSALITY TM -5KG (BHN BAKU KOSMETIK) COA 2033901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL201228\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29094900\", \"uraian\": \"MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL201228\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE (MMW) (BHN BAKU KOSMETIK)COA CHP1201214\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND BIO-SODIUM HYALURONATE (MMW) (BHN BAKU KOSMETIK)COA CHP1201214\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK)COA BAG-010340\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK)COA BAG-010340\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-032980,GSK-K-041410\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-032980,GSK-K-041410\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE 1PCT SOLUTION (BHN BAKU KOSMETIK) COA HASC-522680\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND BIO-SODIUM HYALURONATE 1PCT SOLUTION (BHN BAKU KOSMETIK) COA HASC-522680\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK)COA OHA-070910\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK)COA OHA-070910\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-022420\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-022420\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-321900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-321900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-021380\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-021380\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-060900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-060900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-022420\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-022420\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-211980\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-211980\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-010340\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-010340\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT(BHN BAKU KOSMETIK) COA GSC-K-041410,GSC-K-032980\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND GRAPE SEED EXTRACT(BHN BAKU KOSMETIK) COA GSC-K-041410,GSC-K-032980\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND GREEN TEA SEED OIL (BHN BAKU KOSMETIK) COA CSSO-030640\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND GREEN TEA SEED OIL (BHN BAKU KOSMETIK) COA CSSO-030640\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-070910\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-070910\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-461710\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-461710\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 122220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 122220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-020700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-020700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DICLOFENAC SODIUM USP (BHN BAKU OBAT) COA DFS/10100410,DFS/10120479,DFS/10120480\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"DICLOFENAC SODIUM USP (BHN BAKU OBAT) COA DFS/10100410,DFS/10120479,DFS/10120480\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CINNARIZINE (BHN BAKU OBAT) COA CIN2012183\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"CINNARIZINE (BHN BAKU OBAT) COA CIN2012183\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0265643\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0265643\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0182358\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0182358\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO MALT EXTRACT 500G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0035108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO MALT EXTRACT 500G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0035108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0182358\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0182358\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0322536\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0322536\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT 10X10ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0226664\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"TUBE EGG YOLK ENRICHMENT 50PCT 10X10ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0226664\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0275398\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0275398\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0037326\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0037326\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037338\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037338\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0128385\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0128385\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0282558\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0282558\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0097374\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0097374\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065943\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065943\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LETHEEN BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0280045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LETHEEN BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0280045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0114639\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS POLY 3ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0114639\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL NOVOBIOCIN SUPPLEMENT 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0262841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL NOVOBIOCIN SUPPLEMENT 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0262841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0328195\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0328195\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0328875\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0328875\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0259350\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0259350\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP C (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0170321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL N MENINGITIDIS ANTISERUM GRP C (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0170321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0300807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0300807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202101-002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35040000\", \"uraian\": \"SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202101-002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL ...(BHN BAKU PEWARNA TABLET)COA D180K36002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM HYDROXYPROPYL ...(BHN BAKU PEWARNA TABLET)COA D180K36002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D180K36002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D180K36002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0049484\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0049484\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COPPER SULFATE, POWDER, PH.EUR.10.ED (BHN BAKU SUPLEMEN) COA 3094288\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332500\", \"uraian\": \"COPPER SULFATE, POWDER, PH.EUR.10.ED (BHN BAKU SUPLEMEN) COA 3094288\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PGLCP 102KC RSPO MB (BHN BAKU KOSMETIK) COA 201120204\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34021390\", \"uraian\": \"PGLCP 102KC RSPO MB (BHN BAKU KOSMETIK) COA 201120204\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 110320,100320,070720,080720,090320\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 110320,100320,070720,080720,090320\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-210 (16KG) BHN BAKU KOSMETIK, COA 009669\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSG-210 (16KG) BHN BAKU KOSMETIK, COA 009669\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6048 (16KG) BHN BAKU KOSMETIK, COA 012025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6048 (16KG) BHN BAKU KOSMETIK, COA 012025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MILD TALCUM MOD1 FM2 (BHN BAKU KOSMETIK) COA 10300220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"MILD TALCUM MOD1 FM2 (BHN BAKU KOSMETIK) COA 10300220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACTIPONE (R) CAMU CAMU ET (BHN BAKU KOSMETIK) COA 10300019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"ACTIPONE (R) CAMU CAMU ET (BHN BAKU KOSMETIK) COA 10300019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHARMAKAOLIN B 860 X (BHN BAKU KOSMETIK) COA 23.10.19\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25070000\", \"uraian\": \"PHARMAKAOLIN B 860 X (BHN BAKU KOSMETIK) COA 23.10.19\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANGANESE GLUCONATE 2-HYDRATE ( BHN BAKU MAKANAN) SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"MANGANESE GLUCONATE 2-HYDRATE ( BHN BAKU MAKANAN) SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COPPER SULFATE , POWDER, PH EUR 10 ED (BHN BAKU MAKANAN) SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332500\", \"uraian\": \"COPPER SULFATE , POWDER, PH EUR 10 ED (BHN BAKU MAKANAN) SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRICALCIUM CITRATE 4-HYDRATE ( BHN BAKU MAKANAN) SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181590\", \"uraian\": \"TRICALCIUM CITRATE 4-HYDRATE ( BHN BAKU MAKANAN) SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 INF OIL, 25KG MDR (BHN BAKU SUPLEMEN) COA TS00015753\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 INF OIL, 25KG MDR (BHN BAKU SUPLEMEN) COA TS00015753\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COPPER SULFATE, POWDER, PH.EUR.10.ED (BHN BAKU SUPLEMEN) SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332500\", \"uraian\": \"COPPER SULFATE, POWDER, PH.EUR.10.ED (BHN BAKU SUPLEMEN) SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PGLCP 102KC RSPO MB (BHN BAKU KOSMETIK) COA 201120204\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34021390\", \"uraian\": \"PGLCP 102KC RSPO MB (BHN BAKU KOSMETIK) COA 201120204\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FEF CETRIMIDE PH EUR (BHN BAKU KOSMETIK) COA KX0C679\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"FEF CETRIMIDE PH EUR (BHN BAKU KOSMETIK) COA KX0C679\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIGELINE (BHN BAKU KOSMETIK)COA KA200904-B\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KIGELINE (BHN BAKU KOSMETIK)COA KA200904-B\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANGANESE (II)-SULFATE 1-HYDRATE ( BHN BAKU OBAT) SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"MANGANESE (II)-SULFATE 1-HYDRATE ( BHN BAKU OBAT) SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0032595\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0032595\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF20164001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF20164001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02004001, UE02004003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE02004001, UE02004003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0320051320, 51321,51322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0320051320, 51321,51322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT20060063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT20060063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02005013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE02005013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C(R) 50, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UE02002019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C(R) 50, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UE02002019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE,20KG BOX (BHN BAKU MAKANAN) COA QZ11200920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE,20KG BOX (BHN BAKU MAKANAN) COA QZ11200920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12007021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12007021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00502880,UQ00502881\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00502880,UQ00502881\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12007021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12007021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL-ACETATE, 20KG JUG (BHN BAKU SUPLEMEN) COA XH20200401\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL-ACETATE, 20KG JUG (BHN BAKU SUPLEMEN) COA XH20200401\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT20070119\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT20070119\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT20040196,197,198\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT20040196,197,198\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL02008093\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL02008093\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA DOC3562021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"SODIUM CARBONATE IPH (BHN BAKU OBAT) COA DOC3562021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA RBA0012100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA RBA0012100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 194924\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 194924\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIFE'S DHA (TM) S35-O300, 5KG ALUF (BHN BAKU SUPLEMEN) COA VY00382802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"LIFE'S DHA (TM) S35-O300, 5KG ALUF (BHN BAKU SUPLEMEN) COA VY00382802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II ( BHN BAKU KOSMETIK), COA 201146\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II ( BHN BAKU KOSMETIK), COA 201146\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 201904\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 201904\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 210029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNEBUSTERS (BHN BAKU KOSMETIK) COA 210029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IZAYOI (BHN BAKU KOSMETIK),COA 202320\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"IZAYOI (BHN BAKU KOSMETIK),COA 202320\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIOCELLACT CHAMOMILLA BD(BHN BAKU KOSMETIK),COA 210091\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BIOCELLACT CHAMOMILLA BD(BHN BAKU KOSMETIK),COA 210091\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABSORAGE (BHN BAKU KOSMETIK), COA 200264\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ABSORAGE (BHN BAKU KOSMETIK), COA 200264\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE A PELLETS (BHN BAKU OBAT) COA 20E4106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE A PELLETS (BHN BAKU OBAT) COA 20E4106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 985-L-MENTHOL CRYSTALS INDIAN NATURAL (BHN BAKU KOSMETIK) COA NFPL-MEN-20-22\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"985-L-MENTHOL CRYSTALS INDIAN NATURAL (BHN BAKU KOSMETIK) COA NFPL-MEN-20-22\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYPROTERONE ACETATE MICRONIZED (BHN BAKU OBAT) COA NA3473M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"CYPROTERONE ACETATE MICRONIZED (BHN BAKU OBAT) COA NA3473M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSUVASTATIN CALCIUM (BHN BAKU OBAT) COA M325187\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"ROSUVASTATIN CALCIUM (BHN BAKU OBAT) COA M325187\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA EXTRACT 95PCT ( BHN BAKU KOSMETIK), COA GKP 20095 EOU\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"CENTELLA ASIATICA EXTRACT 95PCT ( BHN BAKU KOSMETIK), COA GKP 20095 EOU\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAMANOL BIO IL (BHN BAKU KOSMETIK) COA CIN191107-ILBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"TAMANOL BIO IL (BHN BAKU KOSMETIK) COA CIN191107-ILBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KAPILARINE (BHN BAKU KOSMETIK) COA KAP2008L2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KAPILARINE (BHN BAKU KOSMETIK) COA KAP2008L2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROMAN CHAMOMILLE ORGANIC DISTILLATE 1:1 (BHN BAKU KOSMETIK) COA ANN2006L2-DBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROMAN CHAMOMILLE ORGANIC DISTILLATE 1:1 (BHN BAKU KOSMETIK) COA ANN2006L2-DBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPIRULINA HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA ARP2002E1-GS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SPIRULINA HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA ARP2002E1-GS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO200401\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO200401\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) COA ANT2012L3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) COA ANT2012L3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2008722967\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2008722967\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WITCH HAZEL ORGANIC DISTILLATE 1:10 (BHN BAKU KOSMETIK) COA HAVD201012-BIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"WITCH HAZEL ORGANIC DISTILLATE 1:10 (BHN BAKU KOSMETIK) COA HAVD201012-BIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-200802-GS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-200802-GS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-201003-GS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-201003-GS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-201004-GS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-201004-GS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO210101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO210101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) COA EG543-200905\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) COA EG543-200905\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO210101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO210101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM201201-PGH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM201201-PGH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TICAGRELOR (BHN BAKU OBAT) COA, TG2M027112\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29091900\", \"uraian\": \"TICAGRELOR (BHN BAKU OBAT) COA, TG2M027112\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT), COA ASGP/12/251220,261220,271220,281220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT), COA ASGP/12/251220,261220,271220,281220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE BP (BHN BAKU OBAT) COA ASG/12/201220, ASG/12/261220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE BP (BHN BAKU OBAT) COA ASG/12/201220, ASG/12/261220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JAGUAR HP 105 SGI, 25KG CARDBOARD CARTON (BHN BAKU KOSMETIK) COA H2009167E\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"JAGUAR HP 105 SGI, 25KG CARDBOARD CARTON (BHN BAKU KOSMETIK) COA H2009167E\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIROXICAM (BAHAN BAKU OBAT ) COA PRX2020009M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"PIROXICAM (BAHAN BAKU OBAT ) COA PRX2020009M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/19090404\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/19090404\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH638885\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH638885\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH638883\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH638883\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH638968\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH638968\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH638129\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH638129\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH638879\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH638879\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH638905\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH638905\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH638884\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH638884\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH638906\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH638906\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH639055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH639055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH638900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH638900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH639514\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH639514\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 BROWN (BHN BAKU PEWARNA TABLET) COA SH638881\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 BROWN (BHN BAKU PEWARNA TABLET) COA SH638881\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH636146\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH636146\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BLACK (BHN BAKU PEWARNA TABLET) COA SH638904\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BLACK (BHN BAKU PEWARNA TABLET) COA SH638904\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH637368\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH637368\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH638897\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH638897\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH638911\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH638911\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH639210\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH639210\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH638910\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH638910\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH638678\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH638678\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH639514\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH639514\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH637368\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH637368\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH638586\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH638586\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH638899\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH638899\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAFFEINE BP/EP/USP (BHN BAKU OBAT) COA 2101098\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29393000\", \"uraian\": \"CAFFEINE BP/EP/USP (BHN BAKU OBAT) COA 2101098\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU SUPLEMEN), COA UJ047 ,UJ048\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU SUPLEMEN), COA UJ047 ,UJ048\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FEF CETRIMIDE PH EUR (BHN BAKU KOSMETIK) COA KX0C767\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"FEF CETRIMIDE PH EUR (BHN BAKU KOSMETIK) COA KX0C767\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for UNICERT YELLOW K7164-J (BHN BAKU KOSMETIK) COA.1103341\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041290\", \"uraian\": \"UNICERT YELLOW K7164-J (BHN BAKU KOSMETIK) COA.1103341\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK)COA HMVBD-020700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK)COA HMVBD-020700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM CARBONATE ,HEAVY POWDER, FCC 12 (BHN BAKU MAKANAN) COA 3058760\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25174100\", \"uraian\": \"CALCIUM CARBONATE ,HEAVY POWDER, FCC 12 (BHN BAKU MAKANAN) COA 3058760\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PERMETHRIN (PHARMA GRADE) BHN BAKU OBAT COA 205046005, 205046006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29163990\", \"uraian\": \"PERMETHRIN (PHARMA GRADE) BHN BAKU OBAT COA 205046005, 205046006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLOPURINOL USP (BHN BAKU OBAT) COA 20061AY3ARII\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"ALLOPURINOL USP (BHN BAKU OBAT) COA 20061AY3ARII\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ISDN 25PCT-LACTOSE 450 75PCT DILUTED (BHN BAKU OBAT)COA 2100026,2100027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"ISDN 25PCT-LACTOSE 450 75PCT DILUTED (BHN BAKU OBAT)COA 2100026,2100027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-210112\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-210112\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID 325 MESH,20KGBOALPO (BAHAN BAKU SUPLEMEN)COA HPD2012066,2070,2074,2081,2090...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID 325 MESH,20KGBOALPO (BAHAN BAKU SUPLEMEN)COA HPD2012066,2070,2074,2081,2090...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWER FORM CATCOL C 135(L) GRADE(B.BAKU KOSMETIK) COA 062/21\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GUAR GUM TREATED AND PULVERISED IN POWER FORM CATCOL C 135(L) GRADE(B.BAKU KOSMETIK) COA 062/21\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEG 400 (BAHAN BAKU KOSMETIK) COA.AKW0001593\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39072010\", \"uraian\": \"PEG 400 (BAHAN BAKU KOSMETIK) COA.AKW0001593\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BRB DM 2, DRUM 180 KG ( BHN BAKU KOSMETIK) COA B079014, B083095\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100020\", \"uraian\": \"BRB DM 2, DRUM 180 KG ( BHN BAKU KOSMETIK) COA B079014, B083095\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP-101 (15KG) (BHN BAKU KOSMETIK), COA 012369\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSP-101 (15KG) (BHN BAKU KOSMETIK), COA 012369\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113534\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113534\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113520\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113520\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHERRY TREE FLOWER JAPAN OILY EXTRACT (BHN BAKU KOSMETIK) COA PRS210101-H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHERRY TREE FLOWER JAPAN OILY EXTRACT (BHN BAKU KOSMETIK) COA PRS210101-H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-201102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-201102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RICE MILK AQUEOUS EXTRACT (SB) (BHN BAKU KOSMETIK) COA ORSL210101-AQ\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"RICE MILK AQUEOUS EXTRACT (SB) (BHN BAKU KOSMETIK) COA ORSL210101-AQ\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SEABUCKTHORN HYDROGLYCOLIC EXTRACT (BG) (BHN BAKU KOSMETIK) COA HIR210101-B\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SEABUCKTHORN HYDROGLYCOLIC EXTRACT (BG) (BHN BAKU KOSMETIK) COA HIR210101-B\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) COA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) COA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) COA EG543-210201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) COA EG543-210201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) COA EG543-210101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) COA EG543-210101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) COA EG543-210101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) COA EG543-210101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FEF CETRIMIDE PH EUR (BHN BAKU KOSMETIK) COA KX0C775\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"FEF CETRIMIDE PH EUR (BHN BAKU KOSMETIK) COA KX0C775\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN), COA WB20070532\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN), COA WB20070532\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 20B003800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 20B003800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 20B0090600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 20B0090600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 20B0090700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 20B0090700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 20B0090800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 20B0090800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 20B0090900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 20B0090900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PASSION FLOWER D.H.E.>4PCT (BHN BAKU SUPLEMEN) COA 20B0079600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PASSION FLOWER D.H.E.>4PCT (BHN BAKU SUPLEMEN) COA 20B0079600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A PALMITATE TYPE 325 CWS/A, 20KG BA (BHN BAKU MAKANAN) COA WB20080532,533,534\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A PALMITATE TYPE 325 CWS/A, 20KG BA (BHN BAKU MAKANAN) COA WB20080532,533,534\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COSME-PHYTAMI LOTUS FL 5KG(BAHAN BAKU KOSMETIK) COA AM087001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"COSME-PHYTAMI LOTUS FL 5KG(BAHAN BAKU KOSMETIK) COA AM087001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COSME-PHYT PEPPERMINT 5KG(BAHAN BAKU KOSMETIK) COA AM082638\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"COSME-PHYT PEPPERMINT 5KG(BAHAN BAKU KOSMETIK) COA AM082638\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000533, 122000534\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000533, 122000534\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000533\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000533\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY RED (BHN BAKU PEWARNA TABLET) COA SH639899\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY RED (BHN BAKU PEWARNA TABLET) COA SH639899\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW ( BHN BAKU PEWARNA TABLET) COA SH639243\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW ( BHN BAKU PEWARNA TABLET) COA SH639243\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BLUE (BHN BAKU PEWARNA TABLET) COA SH639934\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BLUE (BHN BAKU PEWARNA TABLET) COA SH639934\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JAGUAR C162 SGI, CARDBOARD BOX 25KG (BHN BAKU KOSMETIK) COA MJAC20353A\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"JAGUAR C162 SGI, CARDBOARD BOX 25KG (BHN BAKU KOSMETIK) COA MJAC20353A\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK)COA 7766026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"YUZU LEMON EXTRACT (BHN BAKU KOSMETIK)COA 7766026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG201211, MCVG201224\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG201211, MCVG201224\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CATHECHINS (SUNPHENON 90D) BHN BAKU TAMBAHAN PANGAN, COA 101111\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CATHECHINS (SUNPHENON 90D) BHN BAKU TAMBAHAN PANGAN, COA 101111\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB20100022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28352510\", \"uraian\": \"DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB20100022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC 208 20 T\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101990\", \"uraian\": \"SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC 208 20 T\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTABIO ARV-S (BHN BAKU OBAT) COA.1903231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"ASTABIO ARV-S (BHN BAKU OBAT) COA.1903231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALAMINE, POWDER, BP2021 (BHN BAKU OBAT) COA 3092304\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28369990\", \"uraian\": \"CALAMINE, POWDER, BP2021 (BHN BAKU OBAT) COA 3092304\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETAMETHASONE VALERATE (BHN BAKU OBAT) COA X21-200802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"BETAMETHASONE VALERATE (BHN BAKU OBAT) COA X21-200802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP21014542, XP21014543\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP21014542, XP21014543\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH640547\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH640547\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512050\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47069200\", \"uraian\": \"SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512050\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II ( BHN BAKU KOSMETIK), COA 210098\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II ( BHN BAKU KOSMETIK), COA 210098\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 210029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNEBUSTERS (BHN BAKU KOSMETIK) COA 210029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANDARIN CLEAR (BHN BAKU KOSMETIK) COA 201576\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"MANDARIN CLEAR (BHN BAKU KOSMETIK) COA 201576\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIOBENEFITY (BHN BAKU KOSMETIK),COA 201003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BIOBENEFITY (BHN BAKU KOSMETIK),COA 201003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK),COA 202079\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK),COA 202079\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTANPI LIQUID B ( BHN BAKU KOSMETIK), COA 201501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BOTANPI LIQUID B ( BHN BAKU KOSMETIK), COA 201501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AP GRIT (ROUND)G #60-80 (BHN BAKU KOSMETIK) COA 200019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AP GRIT (ROUND)G #60-80 (BHN BAKU KOSMETIK) COA 200019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AQUACOAT ECD-30 ETHYLCELLULOSE AQUEOUS... (BHN BAKU PEWARNA TABLET) COA 2173764333\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"AQUACOAT ECD-30 ETHYLCELLULOSE AQUEOUS... (BHN BAKU PEWARNA TABLET) COA 2173764333\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D180K1N022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D180K1N022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180J8D022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180J8D022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D011JBPL02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D011JBPL02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180J8D022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180J8D022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TREHALOSE (BHN BAKU MAKANAN) COA 2020121821\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29400000\", \"uraian\": \"TREHALOSE (BHN BAKU MAKANAN) COA 2020121821\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE USP (NIACINAMIDE USP/EP) BHN BAKU KOSMETIK,COA 20-21/NMD(P)/00390 S/D 00393\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE USP (NIACINAMIDE USP/EP) BHN BAKU KOSMETIK,COA 20-21/NMD(P)/00390 S/D 00393\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SAC\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SAC\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA FKF\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) COA FKF\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMITOSE R (BHN BAKU KOSMETIK) COA FHD\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AMITOSE R (BHN BAKU KOSMETIK) COA FHD\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS SILK-1000 (BHN BAKU KOSMETIK) COA FLA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS SILK-1000 (BHN BAKU KOSMETIK) COA FLA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER(MMW) (BHN BAKU KOSMETIK)COA CHP1210113\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER(MMW) (BHN BAKU KOSMETIK)COA CHP1210113\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE 1PCT SOLUTION (BHN BAKU KOSMETIK)COA HASC-562800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND BIO-SODIUM HYALURONATE 1PCT SOLUTION (BHN BAKU KOSMETIK)COA HASC-562800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND HASU LIQUID (BHN BAKU KOSMETIK) COA NFH-011311\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND HASU LIQUID (BHN BAKU KOSMETIK) COA NFH-011311\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-012040, HOXB-020920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-012040, HOXB-020920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK)COA 011421\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK)COA 011421\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 011421\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 011421\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-011411\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-011411\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-011020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-011020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-031720\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-031720\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND RHODIOLA EXTRACT (BHN BAKU KOSMETIK) COA FRR-012650\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND RHODIOLA EXTRACT (BHN BAKU KOSMETIK) COA FRR-012650\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-461710\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-461710\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-010340\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-010340\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (B) (BHN BAKU KOSMETIK) COA AMIBD-061060\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND AMINO ACID COMPLEX (B) (BHN BAKU KOSMETIK) COA AMIBD-061060\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND NEWAPLE (BHN BAKU KOSMETIK) COA NWPB-042890\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND NEWAPLE (BHN BAKU KOSMETIK) COA NWPB-042890\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-051900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-051900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFIBER AG (BHN BAKU MAKANAN), COA 907011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SUNFIBER AG (BHN BAKU MAKANAN), COA 907011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOCUSATE SODIUM (BHN BAKU OBAT), COA SD0071533\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"DOCUSATE SODIUM (BHN BAKU OBAT), COA SD0071533\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID PPL-600 (BHN BAKU OBAT) COA 577200-2200228/003-004 (2)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232010\", \"uraian\": \"LIPOID PPL-600 (BHN BAKU OBAT) COA 577200-2200228/003-004 (2)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP21014770, XP21014771\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP21014770, XP21014771\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 2150079, 2150094\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"PARACETAMOL (BHN BAKU OBAT) COA 2150079, 2150094\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERRIC PYROPHOSPHATE,24-26PCT FE POWDER,FCC12 (BHN BAKU SUPLEMEN) COA 3095514\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28353990\", \"uraian\": \"FERRIC PYROPHOSPHATE,24-26PCT FE POWDER,FCC12 (BHN BAKU SUPLEMEN) COA 3095514\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0043912\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0043912\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335663\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335663\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0315982\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0315982\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL UNIVERSAL VIRAL TRANSPORT (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH N03081700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL UNIVERSAL VIRAL TRANSPORT (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH N03081700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0307318,031002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0307318,031002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0183124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0183124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0244908\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0244908\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0294089\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0294089\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0293259\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0293259\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161680\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161680\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0294337\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0294337\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0007272\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0007272\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0273380\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0273380\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE STANDARD METHODS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0062547\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE STANDARD METHODS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0062547\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0062865\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0062865\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0350960\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0350960\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9280662\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9280662\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01C337M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01C337M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0280159\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0280159\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0237250\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0237250\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0300164\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"POUCH GASPAK EZ ANAEROBE SYSTEM(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0300164\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0300129\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0300129\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0268232\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0268232\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0301070\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0301070\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0308542\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0308542\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DERMATOPHYTE TEST MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0322911\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DERMATOPHYTE TEST MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0322911\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0322101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0322101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 27/50 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA MTP32620\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 27/50 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA MTP32620\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2020101003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2020101003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNTHEANINE (L-THEANINE) BHN BAKU MAKANAN, COA 101191\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SUNTHEANINE (L-THEANINE) BHN BAKU MAKANAN, COA 101191\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785018790L\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785018790L\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) COA 2030316\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTENSO TM (BHN BAKU KOSMETIK) COA 2030316\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830017750K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL TM (BHN BAKU KOSMETIK) COA 830017750K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785018478L\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785018478L\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CS-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785018790L\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CS-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785018790L\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN TM (BHN BAKU KOSMETIK) COA 828018409L\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"NEUTRAZEN TM (BHN BAKU KOSMETIK) COA 828018409L\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN TM (BHN BAKU KOSMETIK) COA 828018638L\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"NEUTRAZEN TM (BHN BAKU KOSMETIK) COA 828018638L\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) COA 2020816\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTENSO TM (BHN BAKU KOSMETIK) COA 2020816\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785018790L\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785018790L\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TICAGRELOR (BHN BAKU OBAT) COA, TG2M027112\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29091900\", \"uraian\": \"TICAGRELOR (BHN BAKU OBAT) COA, TG2M027112\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC SODIUM ASCORBATE REGULAR, 25KG BAL (BAHAN BAKU MAKANAN) COA HPN2101155, 1156, 1159 S/D1163\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC SODIUM ASCORBATE REGULAR, 25KG BAL (BAHAN BAKU MAKANAN) COA HPN2101155, 1156, 1159 S/D1163\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID 325 MESH, 20KG BOAIPO (BAHAN BAKU SUPLEMEN) COA HPD2012130,135,139,144, ...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID 325 MESH, 20KG BOAIPO (BAHAN BAKU SUPLEMEN) COA HPD2012130,135,139,144, ...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID REGULAR ,25KG BAL(BHN BAKU MAKANAN) COA HPB2012201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID REGULAR ,25KG BAL(BHN BAKU MAKANAN) COA HPB2012201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID REGULAR, 25KG BAL (BHN BAKU MAKANAN) COA HPB2012040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID REGULAR, 25KG BAL (BHN BAKU MAKANAN) COA HPB2012040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0328976\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0328976\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0300807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0300807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FOLIC AOAC MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9141510\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE FOLIC AOAC MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9141510\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0282558\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0282558\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0324108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0324108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0300807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0300807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0282558\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0282558\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0097374\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0097374\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065943\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065943\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0328875,0329828\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0328875,0329828\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0259350\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0259350\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0272043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0272043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0280045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0280045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105715019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200H (BHN BAKU OBAT) COA L105715019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLOWLAC(R) 100H (BHN BAKU OBAT) COA L105810520,L105814919,L105810720\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"FLOWLAC(R) 100H (BHN BAKU OBAT) COA L105810520,L105814919,L105810720\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104314220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104314220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103863220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103863220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 70 (BHN BAKU OBAT) COA L101842620\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 70 (BHN BAKU OBAT) COA L101842620\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY EZ CLEAR (BHN BAKU PEWARNA TABLET) COA SH640548\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY EZ CLEAR (BHN BAKU PEWARNA TABLET) COA SH640548\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH640552\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH640552\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE ( BHN BAKU PEWARNA TABLET) COA SH640549\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE ( BHN BAKU PEWARNA TABLET) COA SH640549\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY YELLOW (BHN BAKU PEWARNA TABLET) COA SH640546\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY YELLOW (BHN BAKU PEWARNA TABLET) COA SH640546\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH639730\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH639730\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II BROWN (BHN BAKU PEWARNA TABLET) COA SH640551\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II BROWN (BHN BAKU PEWARNA TABLET) COA SH640551\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE AM PELLETS (BHN BAKU OBAT) COA 20E2404\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE AM PELLETS (BHN BAKU OBAT) COA 20E2404\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB20090235\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB20090235\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB20100270\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB20100270\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB20090235\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB20090235\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB20100270\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB20100270\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB20090235\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB20090235\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO(R)LUTEIN 20PCT SAF, 1KG ALUF (BHN BAKU SUPLEMEN) COA UE02007035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO(R)LUTEIN 20PCT SAF, 1KG ALUF (BHN BAKU SUPLEMEN) COA UE02007035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GENIVIDA (TM)TG, 1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT19060004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"GENIVIDA (TM)TG, 1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT19060004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 1PCT SD (BHN BAKU SUPLEMEN) COA UT20110022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 1PCT SD (BHN BAKU SUPLEMEN) COA UT20110022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50361\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061100\", \"uraian\": \"MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50361\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SORBITOL SPECIAL TM MDF 85,(BHN BAKU OBAT) COAM20003,SAMPLE NOCOMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"SORBITOL SPECIAL TM MDF 85,(BHN BAKU OBAT) COAM20003,SAMPLE NOCOMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 399976 ACTIPONE (R) CAMU CAMU GW (BHN BAKU KOSMETIK) COA 10300014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"399976 ACTIPONE (R) CAMU CAMU GW (BHN BAKU KOSMETIK) COA 10300014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTIZOXIME SODIUM (BHN BAKU OBAT) COA T601000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTIZOXIME SODIUM (BHN BAKU OBAT) COA T601000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543281\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543281\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543283\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543283\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543282\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543282\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543284\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543284\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA.MLAH0040121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29341000\", \"uraian\": \"MELOXICAM BP (BHN BAKU OBAT) COA.MLAH0040121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RANITIDINE HYDROCHLORIDE USP (DC GRADE) (BHN BAKU OBAT) COA RH 041 01 21\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29321900\", \"uraian\": \"RANITIDINE HYDROCHLORIDE USP (DC GRADE) (BHN BAKU OBAT) COA RH 041 01 21\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILDENAFIL CITRATE USP (BHN BAKU OBAT) COA SLC 020 01 21\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"SILDENAFIL CITRATE USP (BHN BAKU OBAT) COA SLC 020 01 21\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-96A-6CS (16KG) BHN BAKU KOSMETIK, COA 101131\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-96A-6CS (16KG) BHN BAKU KOSMETIK, COA 101131\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-7312J (18KG) BHN BAKU KOSMETIK, COA 101850\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-7312J (18KG) BHN BAKU KOSMETIK, COA 101850\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20040030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20040030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20040051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20040051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX FOR FERMENTED MILK (BHN BAKU MAKANAN) COA XW92012184\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX FOR FERMENTED MILK (BHN BAKU MAKANAN) COA XW92012184\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0220040005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0220040005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00650554, VE00652698\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"AMPHISOL K (BHN BAKU KOSMETIK) COA VE00650554, VE00652698\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02002805\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02002805\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX (TM) ,5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF20164001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"BEAUPLEX (TM) ,5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF20164001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708200089,98,100,101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708200089,98,100,101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES2007437\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"ALLANTOIN (BHN BAKU KOSMETIK) COA ES2007437\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02005013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE02005013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0720010029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0720010029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX, 25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0919030009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX, 25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0919030009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C(R)50, 20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02003026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C(R)50, 20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02003026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET), COA DT711639\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX RED (BHN BAKU PEWARNA TABLET), COA DT711639\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX MAROON (BHN BAKU PEWARNA TABLET), COA DT711640\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX MAROON (BHN BAKU PEWARNA TABLET), COA DT711640\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE BLACK (BHN BAKU PEWARNA TABLET) COA DT711636\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE BLACK (BHN BAKU PEWARNA TABLET) COA DT711636\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPASPRAY YELLOW (BHN BAKU PEWARNA OBAT) COA DT711728\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPASPRAY YELLOW (BHN BAKU PEWARNA OBAT) COA DT711728\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP21013310/XP21013312, XP21013311/XP21013313\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP21013310/XP21013312, XP21013311/XP21013313\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2008763065\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2008763065\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWDER FORM CATCOL C135(L) GRADE(B.BAKU KOSMETIK) COA 124/21\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GUAR GUM TREATED AND PULVERISED IN POWDER FORM CATCOL C135(L) GRADE(B.BAKU KOSMETIK) COA 124/21\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LUBRIPHARM (R) SSF NF/EP/JP SODIUM STEARYL FUMARATE (B.BAKU OBAT) COA 122100855\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"LUBRIPHARM (R) SSF NF/EP/JP SODIUM STEARYL FUMARATE (B.BAKU OBAT) COA 122100855\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU OBAT) COA 202000292\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"AL HYD WET GEL VAC 20 (BHN BAKU OBAT) COA 202000292\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE WHITE (BHN BAKU PEWARNA TABLET) COA WP837267\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE WHITE (BHN BAKU PEWARNA TABLET) COA WP837267\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 10 PREMIUM (BHN BAKU PEWARNA TABLET)COA D184J7V021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 10 PREMIUM (BHN BAKU PEWARNA TABLET)COA D184J7V021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV (BHN BAKU PEWARNA TABLET) COA D011K3TL02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV (BHN BAKU PEWARNA TABLET) COA D011K3TL02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM CR (BHN BAKU PEWARNA TABLET)COA D180K2O002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM CR (BHN BAKU PEWARNA TABLET)COA D180K2O002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM (BHN BAKU PEWARNA TABLET)COA D180K3E002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM (BHN BAKU PEWARNA TABLET)COA D180K3E002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM LV (BHN BAKU PEWARNA TABLET) COA D180K3B001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM LV (BHN BAKU PEWARNA TABLET) COA D180K3B001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM (BHN BAKU UTK PEWARNA TABLET) COA D180JCH001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM (BHN BAKU UTK PEWARNA TABLET) COA D180JCH001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM (BHN BAKU PEWARNA TABLET) COA D180JCF002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM (BHN BAKU PEWARNA TABLET) COA D180JCF002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM (BHN BAKU PEWARNA TABLET) COA D180K5C004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM (BHN BAKU PEWARNA TABLET) COA D180K5C004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E4M PREMIUM (BHN BAKU PEWARNA TABLET) COA D180J8S013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E4M PREMIUM (BHN BAKU PEWARNA TABLET) COA D180J8S013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100 PREMIUM LVCR (BHN BAKU PEWARNA TABLET) COA D180KCM022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100 PREMIUM LVCR (BHN BAKU PEWARNA TABLET) COA D180KCM022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100 PREMIUM LVCR (BHN BAKU PEWARNA TABLET) COA D180KCU021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100 PREMIUM LVCR (BHN BAKU PEWARNA TABLET) COA D180KCU021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 194924\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 194924\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYDROCORTISONE ACETATE EP7/USP42 (BHN BAKU OBAT) COA NEHAC210103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"HYDROCORTISONE ACETATE EP7/USP42 (BHN BAKU OBAT) COA NEHAC210103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISONE USP42 (BHN BAKU OBAT) COA NPD200934\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISONE USP42 (BHN BAKU OBAT) COA NPD200934\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEONY P118 182 (BHN BAKU KOSMETIK) COA 3116474\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"PEONY P118 182 (BHN BAKU KOSMETIK) COA 3116474\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 3118264\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 3118264\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIPERONYL BUTOXIDE (BHN BAKU OBAT PAKAN TERNAK) COA 20210110\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"PIPERONYL BUTOXIDE (BHN BAKU OBAT PAKAN TERNAK) COA 20210110\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUCRALOSE (BHN BAKU OBAT) COA 20120301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29321400\", \"uraian\": \"SUCRALOSE (BHN BAKU OBAT) COA 20120301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA031215\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA031215\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KANEKA Q10 UBIDECARENONE 5KG JP (BHN BAKU KOSMETIK) COA FA01-4323\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29146200\", \"uraian\": \"KANEKA Q10 UBIDECARENONE 5KG JP (BHN BAKU KOSMETIK) COA FA01-4323\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CETRIMIDE POWDER (BHN BAKU KOSMETIK) COA 320CAA0026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CETRIMIDE POWDER (BHN BAKU KOSMETIK) COA 320CAA0026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CETRIMIDE POWDER (BHN BAKU KOSMETIK) COA 320CAA0026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CETRIMIDE POWDER (BHN BAKU KOSMETIK) COA 320CAA0026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JOJOBA OIL VIRGIN LOW ODOUR (BHN BAKU KOSMETIK) COA 155586\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15159011\", \"uraian\": \"JOJOBA OIL VIRGIN LOW ODOUR (BHN BAKU KOSMETIK) COA 155586\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 155594\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15159011\", \"uraian\": \"AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 155594\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK COA B291220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK COA B291220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B291220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B291220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB040121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB040121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB040121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB040121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB040121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB040121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT GREEN GLOBEADS L(70-120) BHN BAKU KOSMETIK, COA LG230121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT GREEN GLOBEADS L(70-120) BHN BAKU KOSMETIK, COA LG230121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 201025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 201025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 200911\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"OILESS'CITY TM (BHN BAKU KOSMETIK) COA 200911\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 201217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33012990\", \"uraian\": \"AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 201217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 201215\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 201215\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 210109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"OILESS'CITY TM (BHN BAKU KOSMETIK) COA 210109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED)BHN BAKU OBAT,COA M533445,446,448,444\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED)BHN BAKU OBAT,COA M533445,446,448,444\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COPPER SULPHATE PENTAHYDRATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA 031,032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332500\", \"uraian\": \"COPPER SULPHATE PENTAHYDRATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA 031,032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02011124, TL02011125\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02011124, TL02011125\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REFINED GRAPESEED OIL (BHN BAKU KOSMETIK) COA.B2000294\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15152919\", \"uraian\": \"REFINED GRAPESEED OIL (BHN BAKU KOSMETIK) COA.B2000294\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for P.GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 20S0004000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"P.GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 20S0004000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 32347/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 32347/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BILBERRY (V.MYRTILLUS) ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 20S0241102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BILBERRY (V.MYRTILLUS) ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 20S0241102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN), COA XW92101217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN), COA XW92101217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MINERAL PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92101227\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"MINERAL PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92101227\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT20110023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT20110023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT20120050\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT20120050\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT20090059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT20090059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02008089,UE02008090,UE02008091\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02008089,UE02008090,UE02008091\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT20100029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT20100029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT20120050\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT20120050\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT20100046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT20100046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT20100029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT20100029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT20110023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT20110023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT20120050\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT20120050\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT20090059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT20090059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT20100046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT20100046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105715019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200H (BHN BAKU OBAT) COA L105715019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105715019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200H (BHN BAKU OBAT) COA L105715019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN542261\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN542261\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E4M PREMIUM CR HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D180K3D011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E4M PREMIUM CR HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D180K3D011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH639735\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH639735\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND GREEN (BHN BAKU PEWARNA TABLET) COA SH639742\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND GREEN (BHN BAKU PEWARNA TABLET) COA SH639742\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH639731\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH639731\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH639733\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH639733\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH639748\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH639748\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH639747\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH639747\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH639750\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH639750\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH639751\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH639751\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH638576\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH638576\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH639741\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH639741\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH639743\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH639743\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE PURPLE (BHN BAKU PEWARNA TABLET) COA SH639825\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE PURPLE (BHN BAKU PEWARNA TABLET) COA SH639825\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLOZAPINE (BHN BAKU OBAT) COA 890106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"CLOZAPINE (BHN BAKU OBAT) COA 890106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIAMCINOLONE ACETONIDE MICRONIZED (BHN BAKU OBAT) COA NA3399M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"TRIAMCINOLONE ACETONIDE MICRONIZED (BHN BAKU OBAT) COA NA3399M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRANTEL PAMOATE (BHN BAKU OBAT) COA 117221005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"PYRANTEL PAMOATE (BHN BAKU OBAT) COA 117221005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHARMACEUTICAL CASTOR OIL E.P (BHN BAKU KOSMETIK) COA 0000035987,35988\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15152919\", \"uraian\": \"PHARMACEUTICAL CASTOR OIL E.P (BHN BAKU KOSMETIK) COA 0000035987,35988\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIRGIN SWEET ALMOND OIL CONFORM TO THE EUR PH (BHN BAKU KOSMETIK) COA 0000035734\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15152919\", \"uraian\": \"VIRGIN SWEET ALMOND OIL CONFORM TO THE EUR PH (BHN BAKU KOSMETIK) COA 0000035734\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA R7002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29225090\", \"uraian\": \"TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA R7002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA R7043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29225090\", \"uraian\": \"TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA R7043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAFFEINE BP/EP/USP (BHN BAKU OBAT) COA 2101098,2101100,2101101,2101110...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29393000\", \"uraian\": \"CAFFEINE BP/EP/USP (BHN BAKU OBAT) COA 2101098,2101100,2101101,2101110...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX ANTI PESPIRANT (BHN BAKU KOSMETIK) COA ANTS200903\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX ANTI PESPIRANT (BHN BAKU KOSMETIK) COA ANTS200903\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIGELINE (BHN BAKU KOSMETIK) COA KA210201-B\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KIGELINE (BHN BAKU KOSMETIK) COA KA210201-B\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROMAN CHAMOMILLE ORGANIC DISTILLATE 1:1 (SB) (BHN BAKU KOSMETIK) COA ANND201202-BIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROMAN CHAMOMILLE ORGANIC DISTILLATE 1:1 (SB) (BHN BAKU KOSMETIK) COA ANND201202-BIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO201002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO201002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS200301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS200301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRAPE SEED ORGANIC OIL C00031 (BHN BAKU KOSMETIK) COA RPM201003-ENBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GRAPE SEED ORGANIC OIL C00031 (BHN BAKU KOSMETIK) COA RPM201003-ENBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-210101-GS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-210101-GS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAFFLOWER REFINED OIL (BHN BAKU KOSMETIK) COA CARHR201105-DW\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SAFFLOWER REFINED OIL (BHN BAKU KOSMETIK) COA CARHR201105-DW\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000048605\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000048605\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NECTAR DE MATCHA FEMA P114 6 (BHN BAKU OBAT) COA 0000049825\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"NECTAR DE MATCHA FEMA P114 6 (BHN BAKU OBAT) COA 0000049825\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 19LNC1008SQ637\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101990\", \"uraian\": \"NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 19LNC1008SQ637\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 19LNC1008SQ637\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101990\", \"uraian\": \"NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 19LNC1008SQ637\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D011K1QL02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D011K1QL02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180K78001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180K78001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 INF OIL, 25KG MDR (BHN BAKU SUPLEMEN) COA TS00016073\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 INF OIL, 25KG MDR (BHN BAKU SUPLEMEN) COA TS00016073\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANTOPRAZOLE SODIUM (BHN BAKU OBAT) COA PSFP20012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"PANTOPRAZOLE SODIUM (BHN BAKU OBAT) COA PSFP20012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM REGULAR GRADE(BHN BAKU OBAT) COA 20121626,20121627,20121629,2101053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331900\", \"uraian\": \"METAMIZOLE SODIUM REGULAR GRADE(BHN BAKU OBAT) COA 20121626,20121627,20121629,2101053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POTASSIUM L.ASPARTATE 0,5-HYDRATE (BHN BAKU SUPLEMEN) COA 3097106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"POTASSIUM L.ASPARTATE 0,5-HYDRATE (BHN BAKU SUPLEMEN) COA 3097106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POTASSIUM L.ASPARTATE 0.5-HYDRATE (BHN BAKU SUPLEMEN) COA 3097106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"POTASSIUM L.ASPARTATE 0.5-HYDRATE (BHN BAKU SUPLEMEN) COA 3097106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM GLYCEROPHOSPHATE CRYST.,PH FRANC X(BHN BAKU SUPLEMEN) COA 3073900-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29199000\", \"uraian\": \"SODIUM GLYCEROPHOSPHATE CRYST.,PH FRANC X(BHN BAKU SUPLEMEN) COA 3073900-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARACETAMOL USP (BHN BAKU OBAT) COA 2150195,196,197\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"PARACETAMOL USP (BHN BAKU OBAT) COA 2150195,196,197\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARACETAMOL USP (BHN BAKU OBAT) COA 2150197,2150204, 2150205\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"PARACETAMOL USP (BHN BAKU OBAT) COA 2150197,2150204, 2150205\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACETAMINOPHEN (PARACETAMOL).(BAHAN BAKU PAKAN TERNAK ), COA 202101070A,202101071A\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"ACETAMINOPHEN (PARACETAMOL).(BAHAN BAKU PAKAN TERNAK ), COA 202101070A,202101071A\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 FOOD OIL, 25KG MDR (BHN BAKU SUPLEMEN) COA TS00016166\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 FOOD OIL, 25KG MDR (BHN BAKU SUPLEMEN) COA TS00016166\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103154520\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103154520\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000192804\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000192804\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0320051617,51768,51769\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0320051617,51768,51769\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES2007437, ES2007442\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"ALLANTOIN (BHN BAKU KOSMETIK) COA ES2007437, ES2007442\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0520060021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0520060021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA 0519030065\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA 0519030065\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) BHN BAKU SUPLEMEN,COA UT20050198\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G(TOCO) BHN BAKU SUPLEMEN,COA UT20050198\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) BHN BAKU MAKANAN COA UT20050198\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G(TOCO) BHN BAKU MAKANAN COA UT20050198\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT PREMIX MI AI (BHN BAKU MAKANAN) COA XW92101174\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VIT PREMIX MI AI (BHN BAKU MAKANAN) COA XW92101174\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO)BHN BAKU MAKANAN, COA UT200500198, UT20050199\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G(TOCO)BHN BAKU MAKANAN, COA UT200500198, UT20050199\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829018390L\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"B-WHITE (BHN BAKU KOSMETIK) COA 829018390L\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GREYVERSE TM (BHN BAKU KOSMETIK) COA 833018113L\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GREYVERSE TM (BHN BAKU KOSMETIK) COA 833018113L\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN TM (BHN BAKU KOSMETIK) COA 828018638L\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"NEUTRAZEN TM (BHN BAKU KOSMETIK) COA 828018638L\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROGELINE TM (BHN BAKU KOSMETIK) COA 820058691L\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROGELINE TM (BHN BAKU KOSMETIK) COA 820058691L\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785018790L\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785018790L\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN TM (BHN BAKU KOSMETIK) COA 828018638L\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"NEUTRAZEN TM (BHN BAKU KOSMETIK) COA 828018638L\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782018592M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK) COA 782018592M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP836930\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP836930\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP836904\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP836904\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD&C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP830191:BA3144\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD&C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP830191:BA3144\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD & C YELLOW #5/TARTRAZINE AL (BHN BAKU PEWARNA TABLET) COA WP833403:BA4808\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD & C YELLOW #5/TARTRAZINE AL (BHN BAKU PEWARNA TABLET) COA WP833403:BA4808\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D & C YELLOW #10 AL 15PCT-20PCT (BHN BAKU PEWARNA TABLET) COA WP831857:BA3854\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"D & C YELLOW #10 AL 15PCT-20PCT (BHN BAKU PEWARNA TABLET) COA WP831857:BA3854\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D & C YELLOW #10 AL 15PCT-20PCT(BHN BAKU PEWARNA TABLET) COA WP831855:BA3823\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"D & C YELLOW #10 AL 15PCT-20PCT(BHN BAKU PEWARNA TABLET) COA WP831855:BA3823\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD & C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP830191:BA3144\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD & C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP830191:BA3144\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD & C YELLOW #5/TARTRAZINE AL (BHN BAKU PEWARNA TABLET) COA WP822863:BA0318\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD & C YELLOW #5/TARTRAZINE AL (BHN BAKU PEWARNA TABLET) COA WP822863:BA0318\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD&C RED #40/ALLURA RED AC AL...(BHN BAKU UTK PEWARNA TABLET) COA WP835348:BA5453\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD&C RED #40/ALLURA RED AC AL...(BHN BAKU UTK PEWARNA TABLET) COA WP835348:BA5453\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PI21010004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349920\", \"uraian\": \"PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PI21010004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PI21010004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349920\", \"uraian\": \"PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PI21010004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROPYPHENAZONE (ST) (BHN BAKU OBAT) COA 2011211,213,217,224,248\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331100\", \"uraian\": \"PROPYPHENAZONE (ST) (BHN BAKU OBAT) COA 2011211,213,217,224,248\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20210207\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20210207\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA E01271UP\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA E01271UP\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20080123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20080123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT20080032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT20080032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIN PREMIX MI A2 (BHN BAKU MAKANAN) COA XW92101175\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"MIN PREMIX MI A2 (BHN BAKU MAKANAN) COA XW92101175\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT20080032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT20080032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ00502890\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ00502890\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B MIX -SPREAD (BHN BAKU MAKANAN) COA XW92101105\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN B MIX -SPREAD (BHN BAKU MAKANAN) COA XW92101105\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20040030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20040030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20100265\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20100265\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE02005013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE02005013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030178\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030178\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL02009653\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL02009653\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE(BHN BAKU SUPLEMEN) COA TL02008096\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE(BHN BAKU SUPLEMEN) COA TL02008096\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20040051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20040051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12007021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12007021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT20080123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT20080123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2004045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2004045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2004045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2004045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00602917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00602917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2004047\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2004047\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT20080032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT20080032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS(BHN BAKU SUPLEMEN) COA UT20090010, UT20090011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS(BHN BAKU SUPLEMEN) COA UT20090010, UT20090011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S(BHN BAKU SUPLEMEN) COA UT20120082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S(BHN BAKU SUPLEMEN) COA UT20120082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20120082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20120082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT20070120,UT20080123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT20070120,UT20080123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT20080123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT20080123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90502890\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90502890\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92101219, XW92101220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"V003400 (BHN BAKU MAKANAN) COA XW92101219, XW92101220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92101207\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92101207\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-012111\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-012111\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK)COA MUB-031720\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK)COA MUB-031720\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-021380\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-021380\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-061490\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-061490\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK)COA HMVBD-011411\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK)COA HMVBD-011411\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 012821\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 012821\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-BLACK PEARL POWDER(BHN BAKU KOSMETIK) COA PDEG-010221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND BIO-BLACK PEARL POWDER(BHN BAKU KOSMETIK) COA PDEG-010221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AESTHEFILL (POLYLACTIC ACID) ,COA AF201123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"AESTHEFILL (POLYLACTIC ACID) ,COA AF201123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ADSORB AFLA (BHN BAKU UNTUK PAKAN TERNAK) COA 175\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25081000\", \"uraian\": \"ADSORB AFLA (BHN BAKU UNTUK PAKAN TERNAK) COA 175\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROCATEROL HCL HEMIHYDRATE MICRONIZED (BHN BAKU OBAT) COA 8601219M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29337900\", \"uraian\": \"PROCATEROL HCL HEMIHYDRATE MICRONIZED (BHN BAKU OBAT) COA 8601219M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC 04 21 T\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101990\", \"uraian\": \"SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC 04 21 T\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA.0000073895\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA.0000073895\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA.0000073896\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA.0000073896\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000073897,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000073897,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H103 43PCT (BHN BAKU KOSMETIK) COA 0000073898, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H103 43PCT (BHN BAKU KOSMETIK) COA 0000073898, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK), COA 0000073899,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK), COA 0000073899,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH641025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH641025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFADROXIL MONOHYDRATE POWDER (PURIDROX POWDER) BHN BAKU OBAT, COA B334722,B334723,B334724\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFADROXIL MONOHYDRATE POWDER (PURIDROX POWDER) BHN BAKU OBAT, COA B334722,B334723,B334724\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-221220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334910\", \"uraian\": \"DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-221220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINC SULFATE 1-HYDRATE,POWDER, USP 43 (BHN BAKU OBAT) COA 3095116\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"ZINC SULFATE 1-HYDRATE,POWDER, USP 43 (BHN BAKU OBAT) COA 3095116\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHISOPRINOL (BHN BAKU OBAT) COA MTP1020064\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"METHISOPRINOL (BHN BAKU OBAT) COA MTP1020064\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECOSLIM TM-5KG (BHN BAKU KOSMETIK) COA 2032102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ECOSLIM TM-5KG (BHN BAKU KOSMETIK) COA 2032102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECOGEL TM-5KG (BHN BAKU KOSMETIK) COA 2101204\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ECOGEL TM-5KG (BHN BAKU KOSMETIK) COA 2101204\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM- 5KG (BHN BAKU KOSMETIK) COA 2032306,2101006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM- 5KG (BHN BAKU KOSMETIK) COA 2032306,2101006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSALITY TM- 5KG (BHN BAKU KOSMETIK) COA 2100901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROSALITY TM- 5KG (BHN BAKU KOSMETIK) COA 2100901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMISOL TRIO TM-5KG (BHN BAKU KOSMETIK) COA 2021114\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AMISOL TRIO TM-5KG (BHN BAKU KOSMETIK) COA 2021114\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0328558\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0328558\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0358288\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0358288\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20120022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20120022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JAGUAR C162 SGI, CARDBOARD BOX 25KG (BHN BAKU KOSMETIK) COA MJAC20353A\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"JAGUAR C162 SGI, CARDBOARD BOX 25KG (BHN BAKU KOSMETIK) COA MJAC20353A\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA 2012402107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA 2012402107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-001-Y\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-001-Y\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COPPER SULPHATE PENTAHYDRATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA 054,055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332500\", \"uraian\": \"COPPER SULPHATE PENTAHYDRATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA 054,055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANNOGEM (R) XL OPAL SPRAY DRIED MANNITOL USP/EP (B BAKU OBAT)COA122000605\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054300\", \"uraian\": \"MANNOGEM (R) XL OPAL SPRAY DRIED MANNITOL USP/EP (B BAKU OBAT)COA122000605\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HUILE DE COPRAH RAFF GV 24/26 (BHN BAKU KOSMETIK)COA 21F0601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15131910\", \"uraian\": \"HUILE DE COPRAH RAFF GV 24/26 (BHN BAKU KOSMETIK)COA 21F0601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 092220/006591\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 092220/006591\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 2102EF9012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"L-ARGININE LO (BHN BAKU KOSMETIK),COA 2102EF9012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TADALAFIL USP (BHN BAKU OBAT) COA TAD/0519007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"TADALAFIL USP (BHN BAKU OBAT) COA TAD/0519007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTO COLLAGE B (N) ( BHN BAKU KOSMETIK), COA 2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHYTO COLLAGE B (N) ( BHN BAKU KOSMETIK), COA 2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SWERTIANIN-P (BHN BAKU KOSMETIK) COA 202179\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SWERTIANIN-P (BHN BAKU KOSMETIK) COA 202179\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSE HIPS LIQUID B (BHN BAKU KOSMETIK) COA 200964\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ROSE HIPS LIQUID B (BHN BAKU KOSMETIK) COA 200964\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK),COA 202189\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNEBUSTERS (BHN BAKU KOSMETIK),COA 202189\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK),COA 210098\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK),COA 210098\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IZAYOI ( BHN BAKU KOSMETIK), COA 210453\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"IZAYOI ( BHN BAKU KOSMETIK), COA 210453\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA008216,8214,8216,009217,010217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA008216,8214,8216,009217,010217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID S 67 F (BHN BAKU OBAT) COA 576200-2210034/001--006(6),576200-2210034/007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232010\", \"uraian\": \"LIPOID S 67 F (BHN BAKU OBAT) COA 576200-2210034/001--006(6),576200-2210034/007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 100 CN -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1559931\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 100 CN -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1559931\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010-CN- 200KG FA (BHN BAKU KOSMETIK) COA 1557150,1558832\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010-CN- 200KG FA (BHN BAKU KOSMETIK) COA 1557150,1558832\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010-CN- 10KG KA (BHN BAKU KOSMETIK) COA 1559619\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010-CN- 10KG KA (BHN BAKU KOSMETIK) COA 1559619\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 903 -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1556807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 903 -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1556807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 720 -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1558389\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 720 -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1558389\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 200KG DR (BHN BAKU KOSMETIK) COA 1557501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 200KG DR (BHN BAKU KOSMETIK) COA 1557501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFISIN LA NATURAL SAMPLE 100ML FL(B.BAKU KOSMETIK)COA 1559237, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EFFISIN LA NATURAL SAMPLE 100ML FL(B.BAKU KOSMETIK)COA 1559237, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL ECO 910 SAMPLE 100ML FL (B.BAKU KOSMETIK)COA 1552570, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL ECO 910 SAMPLE 100ML FL (B.BAKU KOSMETIK)COA 1552570, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 120 SAMPLE 100ML FL (BHN BAKU KOSMETIK) COA 1557976, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 120 SAMPLE 100ML FL (BHN BAKU KOSMETIK) COA 1557976, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 340 MUSTER 100ML FL (BHN BAKU KOSMETIK) COA 1556172 , SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 340 MUSTER 100ML FL (BHN BAKU KOSMETIK) COA 1556172 , SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 700 SAMPLE 100ML FL (BHN BAKU KOSMETIK) COA 1552454, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 700 SAMPLE 100ML FL (BHN BAKU KOSMETIK) COA 1552454, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 720 SAMPLE 100ML FL (BHN BAKU KOSMETIK) COA 1556433 SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 720 SAMPLE 100ML FL (BHN BAKU KOSMETIK) COA 1556433 SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 703 SAMPLE 100ML FL (BHN BAKU KOSMETIK) COA 1559236,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 703 SAMPLE 100ML FL (BHN BAKU KOSMETIK) COA 1559236,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 712 SAMPLE 100 ML FL (BHN BAKU KOSMETIK) COA 1560234 SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 712 SAMPLE 100 ML FL (BHN BAKU KOSMETIK) COA 1560234 SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 720 SAMPLE 100ML FL (BHN BAKU KOSMETIK) COA 1545188,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 720 SAMPLE 100ML FL (BHN BAKU KOSMETIK) COA 1545188,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 900 (SAMPLE)100ML FL (BHN BAKU KOSMETIK) COA 1558250 SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 900 (SAMPLE)100ML FL (BHN BAKU KOSMETIK) COA 1558250 SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 940 (SAMPLE) 100ML FL (BHN BAKU KOSMETIK) COA 1556173, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 940 (SAMPLE) 100ML FL (BHN BAKU KOSMETIK) COA 1556173, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 SAMPLE(S) 100ML FL (BHN BAKU KOSMETIK) COA 1557830, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 SAMPLE(S) 100ML FL (BHN BAKU KOSMETIK) COA 1557830, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIDIN DO SAMPLE 100ML FL (BHN BAKU KOSMETIK) COA 1551993, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIDIN DO SAMPLE 100ML FL (BHN BAKU KOSMETIK) COA 1551993, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA PA 20 SAMPLE(S) 100ML FL (BHN BAKU KOSMETIK) COA 1550653 SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA PA 20 SAMPLE(S) 100ML FL (BHN BAKU KOSMETIK) COA 1550653 SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA PA 30ML SAMPLE 100ML FL (BHN BAKU KOSMETIK) COA 1560735,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA PA 30ML SAMPLE 100ML FL (BHN BAKU KOSMETIK) COA 1560735,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 SAMPLE(S) 100ML FL (BHN BAKU KOSMETIK) COA 1559235,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 SAMPLE(S) 100ML FL (BHN BAKU KOSMETIK) COA 1559235,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 340 -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1558219, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 340 -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1558219, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACTIPONE (R) CAMU CAMU ET (BHN BAKU KOSMETIK) COA 10300020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"ACTIPONE (R) CAMU CAMU ET (BHN BAKU KOSMETIK) COA 10300020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 00280121,03620221,03280221...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 00280121,03620221,03280221...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 03280221,03370221,03430221...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 03280221,03370221,03430221...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT20100029, UT20100030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT20100029, UT20100030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH640498\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH640498\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE ( BHN BAKU PEWARNA TABLET) COA SH640505\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE ( BHN BAKU PEWARNA TABLET) COA SH640505\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH641550\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH641550\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103154520\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103154520\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-012111\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-012111\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND APRICOT EXTRACT (BHN BAKU KOSMETIK)COA PAS-011980\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND APRICOT EXTRACT (BHN BAKU KOSMETIK)COA PAS-011980\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-010511\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-010511\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-071300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-071300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-011411\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-011411\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-211980\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-211980\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-082900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-082900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND NEWAPLE (BHN BAKU KOSMETIK) COA NWPB-042890\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND NEWAPLE (BHN BAKU KOSMETIK) COA NWPB-042890\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6028 (16KG) BHN BAKU KOSMETIK, COA 009245\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6028 (16KG) BHN BAKU KOSMETIK, COA 009245\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-710 (16KG) BHN BAKU KOSMETIK, COA 012391\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSG-710 (16KG) BHN BAKU KOSMETIK, COA 012391\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 8035700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 8035700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SORBITOL SOLUTION 70PCT CRYSTALLIZING (BHN BAKU OBAT) COA 2021P548\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054400\", \"uraian\": \"SORBITOL SOLUTION 70PCT CRYSTALLIZING (BHN BAKU OBAT) COA 2021P548\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLOTRIMAZOLE MICRONIZED (BHN BAKU OBAT ) COA 202101260250\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"CLOTRIMAZOLE MICRONIZED (BHN BAKU OBAT ) COA 202101260250\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL210201,218,204,125,215\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29094900\", \"uraian\": \"MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL210201,218,204,125,215\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KRONOS 1171 EX CANADA (BHN BAKU OBAT) COA 0019370\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28230000\", \"uraian\": \"KRONOS 1171 EX CANADA (BHN BAKU OBAT) COA 0019370\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C(R)50, 20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02003026, UE02010036\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C(R)50, 20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02003026, UE02010036\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIAMI SCG(S) (BHN BAKU KOSMETIK),COA 21021355\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34021190\", \"uraian\": \"MIAMI SCG(S) (BHN BAKU KOSMETIK),COA 21021355\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRUM PACKING RING WITH SEAL (DRUM KOSONG) SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"48192000\", \"uraian\": \"DRUM PACKING RING WITH SEAL (DRUM KOSONG) SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47069200\", \"uraian\": \"SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FENTACARE 2231 EF 25KG PAPER BOX (BHN BAKU KOSMETIK )COA ZH21A3101,ZH21B0201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34029019\", \"uraian\": \"FENTACARE 2231 EF 25KG PAPER BOX (BHN BAKU KOSMETIK )COA ZH21A3101,ZH21B0201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 20LNC0927SQ880\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101990\", \"uraian\": \"NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 20LNC0927SQ880\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VP DN03 (BHN BAKU MAKANAN), COA XW92102304\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VP DN03 (BHN BAKU MAKANAN), COA XW92102304\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX FOR FERMENTED MILK (BHN BAKU MAKANAN) COA XW92102258\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX FOR FERMENTED MILK (BHN BAKU MAKANAN) COA XW92102258\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNEBUSTERS ( BHN BAKU KOSMETIK), COA 210113\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNEBUSTERS ( BHN BAKU KOSMETIK), COA 210113\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIOBENEFITY (BHN BAKU KOSMETIK) COA 210200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BIOBENEFITY (BHN BAKU KOSMETIK) COA 210200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 210177\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 210177\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK), COA 210276\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK), COA 210276\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOKUDAMI LIQUID B (BHN BAKU KOSMETIK), COA 202395\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"DOKUDAMI LIQUID B (BHN BAKU KOSMETIK), COA 202395\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK),COA 202302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK),COA 202302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE -II (BHN BAKU KOSMETIK),COA 210098\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE -II (BHN BAKU KOSMETIK),COA 210098\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB BHN BAKU KOSMETIK, COA 210177\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB BHN BAKU KOSMETIK, COA 210177\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPRINGMINT (BHN BAKU KOSMETIK) COA 210575\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SPRINGMINT (BHN BAKU KOSMETIK) COA 210575\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIOBENEFITY (BHN BAKU KOSMETIK) COA 210200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BIOBENEFITY (BHN BAKU KOSMETIK) COA 210200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 210113\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNEBUSTERS (BHN BAKU KOSMETIK) COA 210113\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AP GRIT (ROUND)G #60-80 (BHN BAKU KOSMETIK) COA 200019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AP GRIT (ROUND)G #60-80 (BHN BAKU KOSMETIK) COA 200019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IONOL (R) CP (BHN BAKU OBAT), COA 01131220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29071900\", \"uraian\": \"IONOL (R) CP (BHN BAKU OBAT), COA 01131220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 200625\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061900\", \"uraian\": \"MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 200625\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 210109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"OILESS'CITY TM (BHN BAKU KOSMETIK) COA 210109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 201209\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 201209\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA 210102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA 210102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM CR (BHN BAKU PEWARNA TABLET)COA D180K2O002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM CR (BHN BAKU PEWARNA TABLET)COA D180K2O002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR (BHN BAKU PEWARNA TABLET) COA D180K78001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR (BHN BAKU PEWARNA TABLET) COA D180K78001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR (BHN BAKU PEWARNA TABLET)COA D0180K37002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR (BHN BAKU PEWARNA TABLET)COA D0180K37002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR (BHN BAKU PEWARNA TABLET)COA D180K75001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR (BHN BAKU PEWARNA TABLET)COA D180K75001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR (BHN BAKU PEWARNA TABLET) COA D180K76001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR (BHN BAKU PEWARNA TABLET) COA D180K76001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM (BHN BAKU UTK PEWARNA TABLET) COA D180K4J001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM (BHN BAKU UTK PEWARNA TABLET) COA D180K4J001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000536, 122100700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000536, 122100700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELOIL SC (BHN BAKU OBAT) COA 184015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELOIL SC (BHN BAKU OBAT) COA 184015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELUCIRE 48/16 PELLETS (BHN BAKU OBAT) COA 178335\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELUCIRE 48/16 PELLETS (BHN BAKU OBAT) COA 178335\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LABRAFIL M 1944 CS BF (BAHAN BAKU OBAT) COA 181824\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LABRAFIL M 1944 CS BF (BAHAN BAKU OBAT) COA 181824\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LABRAFIL M 1944 CS BF (BAHAN BAKU OBAT) COA 182720\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LABRAFIL M 1944 CS BF (BAHAN BAKU OBAT) COA 182720\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IPRATROPIUM BROMIDE (BHN BAKU OBAT) COA 2050002970\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"IPRATROPIUM BROMIDE (BHN BAKU OBAT) COA 2050002970\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IPRATROPIUM BROMIDE (BHN BAKU OBAT) COA 2050002970\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"IPRATROPIUM BROMIDE (BHN BAKU OBAT) COA 2050002970\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METRONIDAZOLE BP (BHN BAKU OBAT) COA MTZ/0111788\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"METRONIDAZOLE BP (BHN BAKU OBAT) COA MTZ/0111788\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453829590\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453829590\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMIKACIN SULFATE (BHN BAKU OBAT) COA VW0004A\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"AMIKACIN SULFATE (BHN BAKU OBAT) COA VW0004A\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANTOPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT, COA APSS20006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"PANTOPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT, COA APSS20006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NORIT SX SUPER E 153 (BHN BAKU KOSMETIK) COA 4978845\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38021000\", \"uraian\": \"NORIT SX SUPER E 153 (BHN BAKU KOSMETIK) COA 4978845\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 7690186571\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHRONOLINE TM (BHN BAKU KOSMETIK) COA 7690186571\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782018592M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK) COA 782018592M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) COA 2020816\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTENSO TM (BHN BAKU KOSMETIK) COA 2020816\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN TM (BHN BAKU KOSMETIK) COA 828018638L\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"NEUTRAZEN TM (BHN BAKU KOSMETIK) COA 828018638L\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 7690186571\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHRONOLINE TM (BHN BAKU KOSMETIK) COA 7690186571\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-CARNITINE (EP GRADE)(BHN BAKU KOSMETIK)COA 10100120210112\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29239000\", \"uraian\": \"L-CARNITINE (EP GRADE)(BHN BAKU KOSMETIK)COA 10100120210112\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEONY P118 182 (BHN BAKU KOSMETIK) COA 3127497\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"PEONY P118 182 (BHN BAKU KOSMETIK) COA 3127497\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 720-C08- 10KG KA (BHN BAKU KOSMETIK) COA 1565663\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 720-C08- 10KG KA (BHN BAKU KOSMETIK) COA 1565663\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0261346\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0261346\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0261346\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0261346\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0237310\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0237310\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER INDOLE (MEDIA UTK PNGEMBANGAN MIKROORGANISME) BATCH B03C335M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER INDOLE (MEDIA UTK PNGEMBANGAN MIKROORGANISME) BATCH B03C335M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0357150\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0357150\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0310783\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0310783\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0357150\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0357150\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1014021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1014021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1025338\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1025338\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH0315905,0365874\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH0315905,0365874\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT(MEDIA U/PENGEMBANGKAN MIKRO ORGANISME)BATCH0310783,0338317\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT(MEDIA U/PENGEMBANGKAN MIKRO ORGANISME)BATCH0310783,0338317\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0350958\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0350958\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0097374\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0097374\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065943\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065943\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0128384\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0128384\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0329828\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0329828\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0259350\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0259350\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037338\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037338\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0128385\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0128385\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0237250\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0237250\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH B01D025M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH B01D025M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01D028M 90011569\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01D028M 90011569\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0286434\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0286434\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0063472\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0063472\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0220229\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0220229\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0097350,0217346\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0097350,0217346\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0335617\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0335617\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0048055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0048055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0365816\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0365816\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0315052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0315052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0140282\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0140282\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0283842\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0283842\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0280297\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0280297\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9337678\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9337678\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0335663\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0335663\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0350025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0350025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MED 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9112920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MED 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9112920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HINTON AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0294294\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MUELLER HINTON AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0294294\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MICRO ASSAY CULTURE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335689\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MICRO ASSAY CULTURE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335689\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0343129\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0343129\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PSEUDOMONAS ISOLATION AG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9129525\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PSEUDOMONAS ISOLATION AG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9129525\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RHAMNOSE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0265844\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RHAMNOSE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0265844\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0352348\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0352348\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0352348\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0352348\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BORDET GENGOU AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0272029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BORDET GENGOU AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0272029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SYSTEM GASPAK 100 SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0268611\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SYSTEM GASPAK 100 SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0268611\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1020437\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1020437\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0035732\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0035732\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01D025M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01D025M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0328272\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0328272\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-PA-C AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0351056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M-PA-C AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0351056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0315698\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0315698\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM...(MEDIA U/PENGEMBANGAN MIKRO ORGANISME)BATCH1020740,1025909\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE STERILE RODAC EMPTY 65X15MM...(MEDIA U/PENGEMBANGAN MIKRO ORGANISME)BATCH1020740,1025909\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1019596\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1019596\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1025909\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE STERILE RODAC EMPTY 65X15MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1025909\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTYN 65X15MM ..(MEDIA U/PENGEMBANGAN MIKRO ORGANISME)BATCH1020740,1025909\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE STERILE RODAC EMPTYN 65X15MM ..(MEDIA U/PENGEMBANGAN MIKRO ORGANISME)BATCH1020740,1025909\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0280975\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0280975\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC CALCIUM ASCORBATE DC, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPT2101001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC CALCIUM ASCORBATE DC, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPT2101001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC CALCIUM ASCORBATE DC, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPT2011024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC CALCIUM ASCORBATE DC, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPT2011024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN ) COA MTP04621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN ) COA MTP04621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA MTP04521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA MTP04521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXCIPIENT 0/13 SODIUM BICARBONATE(B.BAKU SUPLEMEN)COA MTP26820,SAMPLE NOCOMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXCIPIENT 0/13 SODIUM BICARBONATE(B.BAKU SUPLEMEN)COA MTP26820,SAMPLE NOCOMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINC BISGLYCINATE, POWDER,FOR USE IN FOOD SUPPLEMENTS(BHN BAKU OBAT) COA 3095364\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"ZINC BISGLYCINATE, POWDER,FOR USE IN FOOD SUPPLEMENTS(BHN BAKU OBAT) COA 3095364\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM CARBONATE, HEAVY POWDER, PH EUR.10.ED (BHN BAKU OBAT) COA 3091607\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28369990\", \"uraian\": \"MAGNESIUM CARBONATE, HEAVY POWDER, PH EUR.10.ED (BHN BAKU OBAT) COA 3091607\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SELOHVITA C SODIUM SELENITE... (BHN BAKU OBAT) COA 3091753\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28429010\", \"uraian\": \"SELOHVITA C SODIUM SELENITE... (BHN BAKU OBAT) COA 3091753\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 21T0008700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 21T0008700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA 8MT2102166\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30032000\", \"uraian\": \"STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA 8MT2102166\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47069200\", \"uraian\": \"SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512050, G02512103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47069200\", \"uraian\": \"SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512050, G02512103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA L202103-002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35040000\", \"uraian\": \"SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA L202103-002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-210202-GS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-210202-GS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO210101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO210101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-C0210302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-C0210302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO201002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO201002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO201202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO201202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIGELINE (BHN BAKU KOSMETIK) COA KA210201-B\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KIGELINE (BHN BAKU KOSMETIK) COA KA210201-B\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG543 ( BHN BAKU KOSMETIK) COA EG543-210102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG543 ( BHN BAKU KOSMETIK) COA EG543-210102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA201105\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA201105\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA201105\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA201105\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA201105\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA201105\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WITCH HAZEL ORGANIC DISTILLATE 1:10 (BHN BAKU KOSMETIK) COA HAVD201113-BIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"WITCH HAZEL ORGANIC DISTILLATE 1:10 (BHN BAKU KOSMETIK) COA HAVD201113-BIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARTAB DIRECTLY COMPRESSIBLE STRACH(BHN BAKU PEWARNA TABLET) COA WP837778\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARTAB DIRECTLY COMPRESSIBLE STRACH(BHN BAKU PEWARNA TABLET) COA WP837778\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH641796\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH641796\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED ( BHN BAKU PEWARNA TABLET) COA SH641795\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED ( BHN BAKU PEWARNA TABLET) COA SH641795\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH641850\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH641850\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRAYPHOS MKP FG (BHN BAKU KOSMETIK) COA 2023301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PRAYPHOS MKP FG (BHN BAKU KOSMETIK) COA 2023301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122100700, 122100705\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122100700, 122100705\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SALICYLIC ACID PHARMACEUTICAL (BHN BAKU KOSMETIK) COA RAS2027500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29182100\", \"uraian\": \"SALICYLIC ACID PHARMACEUTICAL (BHN BAKU KOSMETIK) COA RAS2027500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) GINSENG (BHN BAKU KOSMETIK) COA 10300038\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"EXTRAPONE (R) GINSENG (BHN BAKU KOSMETIK) COA 10300038\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) SEA EXTRACTS N (BHN BAKU KOSMETIK) COA 10300030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"EXTRAPONE (R) SEA EXTRACTS N (BHN BAKU KOSMETIK) COA 10300030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SHEA BUTTER REFINED (BHN BAKU KOSMETIK) COA 156042\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15159011\", \"uraian\": \"SHEA BUTTER REFINED (BHN BAKU KOSMETIK) COA 156042\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRAYPHOS DKP FG 25KG BG (BHN BAKU KOSMETIK) COA 2101932\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28352400\", \"uraian\": \"PRAYPHOS DKP FG 25KG BG (BHN BAKU KOSMETIK) COA 2101932\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE ,25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ01016100,UQ01016101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE ,25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ01016100,UQ01016101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT20100046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT20100046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02008093\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02008093\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL02101679\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL02101679\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT20120057,UT21010002,UT21010003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT20120057,UT21010002,UT21010003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT20100117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT20100117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMBROXOL HYDROCHLORIDE POWDER (BHN BAKU OBAT) COA AHM/21012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"AMBROXOL HYDROCHLORIDE POWDER (BHN BAKU OBAT) COA AHM/21012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GLIMEPIRIDE USP (BHN BAKU OBAT) COA GLI/21002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"GLIMEPIRIDE USP (BHN BAKU OBAT) COA GLI/21002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS FUMARATE (BHN BAKU OBAT) COA.2021/69\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"FERROUS FUMARATE (BHN BAKU OBAT) COA.2021/69\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFADROXIL MONOHYDRATE POWDER (PURIDROX COMPACTED) BHN BAKU OBAT, COA B340241,B340240,B340244\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFADROXIL MONOHYDRATE POWDER (PURIDROX COMPACTED) BHN BAKU OBAT, COA B340241,B340240,B340244\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFADROXIL MONOHYDRATE POWDER (PURIDROX COMPACTED) BHN BAKU OBAT, COA B340252,B340253,B340254\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFADROXIL MONOHYDRATE POWDER (PURIDROX COMPACTED) BHN BAKU OBAT, COA B340252,B340253,B340254\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE02002007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"RONOXAN A (BHN BAKU MAKANAN) COA UE02002007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 204005 (BHN BAKU MAKANAN) COA XW92101249\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 204005 (BHN BAKU MAKANAN) COA XW92101249\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX BALITA (BHN BAKU MAKANAN) COA XW92102006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX BALITA (BHN BAKU MAKANAN) COA XW92102006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12007039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12007039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT20100290,UT20120323\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT20100290,UT20120323\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU MAKANAN) COA UE02002010, UE02002011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU MAKANAN) COA UE02002010, UE02002011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT20110036\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT20110036\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL ACETATE, 20KG JUG (BHN BAKU SUPLEMEN) COA XH20200401\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL ACETATE, 20KG JUG (BHN BAKU SUPLEMEN) COA XH20200401\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20040030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20040030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030076\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030076\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE02005013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE02005013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20040050\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20040050\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCTBHN BAKU SUPLEMEN) COA WB20030076\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCTBHN BAKU SUPLEMEN) COA WB20030076\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12007039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12007039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02009412\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02009412\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ00703525\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ00703525\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01911652\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01911652\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0220040041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0220040041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0320051770,0320051771,0320051772\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 (BHN BAKU KOSMETIK) COA 0320051770,0320051771,0320051772\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU SUPLEMEN) COA AVD0034088\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL, 10KG PAIL PE (BHN BAKU SUPLEMEN) COA AVD0034088\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL 75L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01909355\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL 75L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01909355\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00652698\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"AMPHISOL K (BHN BAKU KOSMETIK) COA VE00652698\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0820010214,215,339,340\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0820010214,215,339,340\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708200101,0708200110,0708200113,0708200114\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708200101,0708200110,0708200113,0708200114\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0520060029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0520060029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES2007442\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"ALLANTOIN (BHN BAKU KOSMETIK) COA ES2007442\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02008103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02008103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RANITIDINE HCL USP (BHN BAKU OBAT) COA RH/21/064,RH/21/065.RH/21/066\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29321900\", \"uraian\": \"RANITIDINE HCL USP (BHN BAKU OBAT) COA RH/21/064,RH/21/065.RH/21/066\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED GRADE A)BHN BAKU OBAT,COA M533589,590,591,594,595,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED GRADE A)BHN BAKU OBAT,COA M533589,590,591,594,595,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0051887\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0051887\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH642604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH642604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE ( BHN BAKU PEWARNA TABLET) COA SH642339\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE ( BHN BAKU PEWARNA TABLET) COA SH642339\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH642353\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH642353\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH642535\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH642535\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY ( BHN BAKU PEWARNA TABLET) COA SH642533\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY ( BHN BAKU PEWARNA TABLET) COA SH642533\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH640900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH640900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113549\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113549\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02002806, TL02002807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02002806, TL02002807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C(R)50, 20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02010036\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C(R)50, 20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02010036\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GLUCOSAMINE SULFATE 2KCL (BHN BAKU OBAT) COA JSTK210305\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"GLUCOSAMINE SULFATE 2KCL (BHN BAKU OBAT) COA JSTK210305\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-200705\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-200705\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM VALPROATE (BAHAN BAKU OBAT) COA 454854 (V6590)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29159090\", \"uraian\": \"SODIUM VALPROATE (BAHAN BAKU OBAT) COA 454854 (V6590)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID DC 97PCT,25KG BAL( BAHAN BAKU SUPLEMEN)COA HPG2101008,1009,1010,2003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID DC 97PCT,25KG BAL( BAHAN BAKU SUPLEMEN)COA HPG2101008,1009,1010,2003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA U/PENGEMBANGAN MIKRO ORGANISME)BATCH0338176,0338178\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA U/PENGEMBANGAN MIKRO ORGANISME)BATCH0338176,0338178\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASAMINO ACIDS TECHNICAL 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1012628\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASAMINO ACIDS TECHNICAL 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1012628\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIFCO BEEF EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0182357\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DIFCO BEEF EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0182357\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2248533\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2248533\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2248533\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2248533\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0265643\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0265643\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0265643\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0265643\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9296104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9296104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE02010106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE02010106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT21010003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT21010003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202103-011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35040000\", \"uraian\": \"SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202103-011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO210302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO210302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-210102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-210102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO201002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO201002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO201202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO201202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTABIO AR10 (ASTAXANTHIN OIL 10PCT) BHN BAKU OBAT, COA.2012091\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"ASTABIO AR10 (ASTAXANTHIN OIL 10PCT) BHN BAKU OBAT, COA.2012091\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB20090234\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB20090234\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB21020738\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB21020738\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E ACETATE 950NS (BHN BAKU SUPLEMEN) COA WB21020738\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E ACETATE 950NS (BHN BAKU SUPLEMEN) COA WB21020738\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB20120277\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB20120277\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB21020738\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB21020738\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB21020738\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB21020738\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB20090239\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB20090239\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB21020738\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB21020738\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB20120278\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB20120278\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM FEREDETATE, POWDER, BP2021 (BHN BAKU OBAT) COA 3082860-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"SODIUM FEREDETATE, POWDER, BP2021 (BHN BAKU OBAT) COA 3082860-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POTASSIUM L-ASPARTATE 0.5-HYDRATE (BHN BAKU OBAT) COA 3097106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"POTASSIUM L-ASPARTATE 0.5-HYDRATE (BHN BAKU OBAT) COA 3097106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRICALCIUM CITRATE 4-HYDRATE (BHN BAKU OBAT) COA 3097610\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181590\", \"uraian\": \"TRICALCIUM CITRATE 4-HYDRATE (BHN BAKU OBAT) COA 3097610\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINC SULFATE 7-HYDRATE,CRYST,PH EUR.10.ED (BHN BAKU OBAT) COA 3095383\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"ZINC SULFATE 7-HYDRATE,CRYST,PH EUR.10.ED (BHN BAKU OBAT) COA 3095383\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINC SULFATE 1-HYDRATE, POWDER,USP 43 (BHN BAKU OBAT) COA 3095123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"ZINC SULFATE 1-HYDRATE, POWDER,USP 43 (BHN BAKU OBAT) COA 3095123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM CARBONATE, HEAVY (BHN BAKU OBAT) COA 3091896\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28369990\", \"uraian\": \"MAGNESIUM CARBONATE, HEAVY (BHN BAKU OBAT) COA 3091896\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM ACETATE POWDER,PURITY ACC TO E263 (BHN BAKU OBAT) COA 3092122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29152910\", \"uraian\": \"CALCIUM ACETATE POWDER,PURITY ACC TO E263 (BHN BAKU OBAT) COA 3092122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLUOROMETHOLONE MICRONISED USP BP JP (BHN BAKU OBAT) COA 2001454818,2001454818\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"FLUOROMETHOLONE MICRONISED USP BP JP (BHN BAKU OBAT) COA 2001454818,2001454818\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA 201126042\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA 201126042\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SERASENSE SF CM5 (BAHAN BAKU KOSMETIK) COA PA10302036,PA10302044,PA10302046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29319049\", \"uraian\": \"SERASENSE SF CM5 (BAHAN BAKU KOSMETIK) COA PA10302036,PA10302044,PA10302046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SAC\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SAC\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA SAH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) COA SAH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP836905\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP836905\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP834328\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP834328\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD&C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP831236:BA3424\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD&C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP831236:BA3424\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D & C YELLOW #10 AL 15PCT-20PCT (BHN BAKU PEWARNA TABLET) COA WP831857:BA3854\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"D & C YELLOW #10 AL 15PCT-20PCT (BHN BAKU PEWARNA TABLET) COA WP831857:BA3854\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD & C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP831242:BA3659\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD & C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP831242:BA3659\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY ORANGE (BHN BAKU PEWARNA TABLET) COA GA686695\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY ORANGE (BHN BAKU PEWARNA TABLET) COA GA686695\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II GREEN (BHN BAKU PEWARNA TABLET) COA SH640572\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II GREEN (BHN BAKU PEWARNA TABLET) COA SH640572\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II PINK (BHN BAKU PEWARNA TABLET) COA SH640500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II PINK (BHN BAKU PEWARNA TABLET) COA SH640500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH640497\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH640497\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY YELLOW (BHN BAKU PEWARNA TABLET) COA SH640546\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY YELLOW (BHN BAKU PEWARNA TABLET) COA SH640546\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH640504\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH640504\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH641024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH641024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH641025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH641025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH641358\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH641358\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH639147\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH639147\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH640499\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH640499\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH640485\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH640485\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH640490\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH640490\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB MAROON (BHN BAKU PEWARNA TABLET) COA SH640488\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB MAROON (BHN BAKU PEWARNA TABLET) COA SH640488\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH642194\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH642194\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH642195\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH642195\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH640503\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH640503\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH640487\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH640487\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH640652\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH640652\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMBROXOL HYDROCHLORIDE EP (BHN BAKU OBAT) COA CEPABX 004 H 20\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"AMBROXOL HYDROCHLORIDE EP (BHN BAKU OBAT) COA CEPABX 004 H 20\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ISONIAZID USP (BHN BAKU OBAT) COA21025/INH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333910\", \"uraian\": \"ISONIAZID USP (BHN BAKU OBAT) COA21025/INH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2020101003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2020101003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA006214\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA006214\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED (BHN BAKU UTK PAKAN TERNAK) COA ROA1021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED (BHN BAKU UTK PAKAN TERNAK) COA ROA1021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 19LNC1010SQ638\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101990\", \"uraian\": \"NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 19LNC1010SQ638\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MILD TALCUM MOD1 FM2 (BHN BAKU KOSMETIK) COA 10300225\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"MILD TALCUM MOD1 FM2 (BHN BAKU KOSMETIK) COA 10300225\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9 USP (BHN BAKU OBAT) COA 102102002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"BARCROFT TM AL HYD GEL VISCO-9 USP (BHN BAKU OBAT) COA 102102002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CATECHINS TEAVIGO 1KG (BHN BAKU KOSMETIK), COA 101191\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"CATECHINS TEAVIGO 1KG (BHN BAKU KOSMETIK), COA 101191\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CATECHINS TEAVIGO (BHN BAKU KOSMETIK) COA 101191\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"CATECHINS TEAVIGO (BHN BAKU KOSMETIK) COA 101191\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CATECHINS TEAVIGO (BHN BAKU KOSMETIK) COA 101191\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"CATECHINS TEAVIGO (BHN BAKU KOSMETIK) COA 101191\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINKGO LEAVES EXTRACT (BHN BAKU KOSMETIK) COA 21030187\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"GINKGO LEAVES EXTRACT (BHN BAKU KOSMETIK) COA 21030187\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GREEN TEA FAIRTRADE DISTILLATE (BHN BAKU KOSMETIK) COA 21010286\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GREEN TEA FAIRTRADE DISTILLATE (BHN BAKU KOSMETIK) COA 21010286\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 100KG FIT (BHN BAKU SUPLEMEN) COA WB21019065\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT GRANULATION, 100KG FIT (BHN BAKU SUPLEMEN) COA WB21019065\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GREEN TEA DRY DEC.EX./PHOSPHOL (BHN BAKU SUPLEMEN) COA 19S0269701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"GREEN TEA DRY DEC.EX./PHOSPHOL (BHN BAKU SUPLEMEN) COA 19S0269701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 32347/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 32347/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA/PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 20S0317200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA/PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 20S0317200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 20S0203200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 20S0203200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SERENOA REPENS PURIFIED EXT (BHN BAKU SUPLEMEN) COA 20S0245600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SERENOA REPENS PURIFIED EXT (BHN BAKU SUPLEMEN) COA 20S0245600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 20S0203200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 20S0203200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for P.GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 20S0004000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"P.GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 20S0004000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SERENOA REPENS PURIFIED EXT(BHN BAKU SUPLEMEN) COA 20S0245600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SERENOA REPENS PURIFIED EXT(BHN BAKU SUPLEMEN) COA 20S0245600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 211120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25070000\", \"uraian\": \"KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 211120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S366/20, S61/21\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S366/20, S61/21\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB040121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB040121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B291220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B291220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB040121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB040121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B291220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B291220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL (BHN BAKU UTK PEWARNA TABLET) COA D011K1QL02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV HYDROXYPROPYL (BHN BAKU UTK PEWARNA TABLET) COA D011K1QL02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL (BHN BAKU UTK PEWARNA TABLET) COA D180KCT003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL (BHN BAKU UTK PEWARNA TABLET) COA D180KCT003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20210305\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20210305\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP21034451, XP21034452\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP21034451, XP21034452\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA R7043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29225090\", \"uraian\": \"TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA R7043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA R7044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29225090\", \"uraian\": \"TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA R7044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOCUSATE SODIUM BP (BHN BAKU OBAT) COA DSW1004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"DOCUSATE SODIUM BP (BHN BAKU OBAT) COA DSW1004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20100129\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20100129\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2004047\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2004047\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL02008098\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL02008098\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030164\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030164\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT20060124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT20060124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00602917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00602917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00502883\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00502883\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00502883\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00502883\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00502883,2888,2889\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00502883,2888,2889\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2004047,UEB2005054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2004047,UEB2005054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL-ACETATE, 20KG JUG (BHN BAKU SUPLEMEN) COA XH20200401\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL-ACETATE, 20KG JUG (BHN BAKU SUPLEMEN) COA XH20200401\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20090011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20090011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20090017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20090017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT20100129\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT20100129\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12007039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12007039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT(BHN BAKU SUPLEMEN) COA WB20040050\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT(BHN BAKU SUPLEMEN) COA WB20040050\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL-ACETATE ,20KG JUG (BHN BAKU SUPLEMEN) COA XH20200401, XH0200703\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL-ACETATE ,20KG JUG (BHN BAKU SUPLEMEN) COA XH20200401, XH0200703\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030157\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030157\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT20050199\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT20050199\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW92102298\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW92102298\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20100129\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20100129\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000194008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000194008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50, 20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02010036, UE02010037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50, 20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02010036, UE02010037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL02008098\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL02008098\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE ,20KG BOX (BHN BAKU MAKANAN) COA QZ11210107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE ,20KG BOX (BHN BAKU MAKANAN) COA QZ11210107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02010422\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02010422\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT20060124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT20060124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ00910748\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ00910748\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12007039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12007039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12007039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12007039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE FCC, 25KG BOX (BHN BAKU MAKANAN) COA 0000193588\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE FCC, 25KG BOX (BHN BAKU MAKANAN) COA 0000193588\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE ,20KG BOX (BHN BAKU MAKANAN) COA QZ11210107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE ,20KG BOX (BHN BAKU MAKANAN) COA QZ11210107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMINN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02010422\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMINN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02010422\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA 0000050301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA 0000050301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLAISANCE P116808 (BHN BAKU OBAT) COA 0000050302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"PLAISANCE P116808 (BHN BAKU OBAT) COA 0000050302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000049261\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000049261\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JAGUAR HP 105 SGI, 25KG CARDBOARD CARTON (BHN BAKU KOSMETIK) COA H2009167H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"JAGUAR HP 105 SGI, 25KG CARDBOARD CARTON (BHN BAKU KOSMETIK) COA H2009167H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED (BHN BAKU UTK PAKAN TERNAK) COA ROA1021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED (BHN BAKU UTK PAKAN TERNAK) COA ROA1021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9 USP (BHN BAKU OBAT) COA 102102002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"BARCROFT TM AL HYD GEL VISCO-9 USP (BHN BAKU OBAT) COA 102102002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP(BHN BAKU OBAT) COA102002043,102102001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"BARCROFT TM AL HYD GEL VISCO-9, USP(BHN BAKU OBAT) COA102002043,102102001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M-31.0PCT (BHN BAKU OBAT) COA 102129006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MG HYD PASTE USP TYPE M-31.0PCT (BHN BAKU OBAT) COA 102129006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIENOGEST MICRONIZED (BHN BAKU OBAT) COA NA2936M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"DIENOGEST MICRONIZED (BHN BAKU OBAT) COA NA2936M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA.MLAH0090221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29341000\", \"uraian\": \"MELOXICAM BP (BHN BAKU OBAT) COA.MLAH0090221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILDENAFIL CITRATE (BHN BAKU OBAT) COA SLC/03/21/001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"SILDENAFIL CITRATE (BHN BAKU OBAT) COA SLC/03/21/001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OMEPRAZOLE SODIUM STERILE (BAHAN BAKU OBAT), COA SI/OPZ/00080321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"OMEPRAZOLE SODIUM STERILE (BAHAN BAKU OBAT), COA SI/OPZ/00080321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANTOPRAZOLE SODIUM STERILE (BHN BAKU OBAT) COA SI/PPZ/00190221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"PANTOPRAZOLE SODIUM STERILE (BHN BAKU OBAT) COA SI/PPZ/00190221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC7521T\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101990\", \"uraian\": \"SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC7521T\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 155917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15159011\", \"uraian\": \"AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 155917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEVOFLOXACIN HEMIHYDRATE USP (BHN BAKU OBAT) COA LF20100039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"LEVOFLOXACIN HEMIHYDRATE USP (BHN BAKU OBAT) COA LF20100039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS (KOSHER-PASSOVER)BHN BAKU MAKANAN, COA UJ107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS (KOSHER-PASSOVER)BHN BAKU MAKANAN, COA UJ107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRISODIUMCITRATE DIHYDRATE FINE GRANULAR (BHN BAKU MAKANAN), COA UJ104, UJ105\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"TRISODIUMCITRATE DIHYDRATE FINE GRANULAR (BHN BAKU MAKANAN), COA UJ104, UJ105\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET), COA DT713232\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX RED (BHN BAKU PEWARNA TABLET), COA DT713232\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET), COA DT713233\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX RED (BHN BAKU PEWARNA TABLET), COA DT713233\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX MAROON (BHN BAKU PEWARNA TABLET) COA DT713234\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX MAROON (BHN BAKU PEWARNA TABLET) COA DT713234\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPASPRAY YELLOW (BHN BAKU UTK PEWARNA TABLET) COA DT713235\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPASPRAY YELLOW (BHN BAKU UTK PEWARNA TABLET) COA DT713235\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH641865\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH641865\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE ( BHN BAKU PEWARNA TABLET) COA SH641983\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE ( BHN BAKU PEWARNA TABLET) COA SH641983\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH641984\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH641984\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP(BHN BAKU OBAT) COA 102002043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"BARCROFT TM AL HYD GEL VISCO-9, USP(BHN BAKU OBAT) COA 102002043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHISOPRINOL (BHN BAKU OBAT) COA MTP1020082, MTP1030126\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"METHISOPRINOL (BHN BAKU OBAT) COA MTP1020082, MTP1030126\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CARBAZOCHROME SODIUM SULFONATE ORAL G (BHN BAKU OBAT)COA AC10101/10304\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"CARBAZOCHROME SODIUM SULFONATE ORAL G (BHN BAKU OBAT)COA AC10101/10304\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEG 400 (BAHAN BAKU KOSMETIK) COA.AKW0001975\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39072010\", \"uraian\": \"PEG 400 (BAHAN BAKU KOSMETIK) COA.AKW0001975\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A, 20KG BA(BHN BAKU MAKANAN)COA WB20080546,20110547,110548\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A, 20KG BA(BHN BAKU MAKANAN)COA WB20080546,20110547,110548\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95,20KG JUG (BHN BAKU MAKANAN) COA XH20200403\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95,20KG JUG (BHN BAKU MAKANAN) COA XH20200403\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95,20KG JUG (BHN BAKU MAKANAN) COA XH20200403\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95,20KG JUG (BHN BAKU MAKANAN) COA XH20200403\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYPROHEPTADINE HCL (BHN BAKU OBAT) COA CYP/11201021, CYP/01211004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"CYPROHEPTADINE HCL (BHN BAKU OBAT) COA CYP/11201021, CYP/01211004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2248533\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2248533\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0265643\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0265643\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0281167\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0281167\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASAMINO ACIDS TECHNICAL 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1046639\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASAMINO ACIDS TECHNICAL 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1046639\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0182358\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0182358\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0216774\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0216774\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0216774\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0216774\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02011131\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02011131\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C(R)50, 20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02010037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C(R)50, 20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02010037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C(R)50, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UE02010030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C(R)50, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UE02010030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C(R) 50, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UE02010030,UE02002019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C(R) 50, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UE02010030,UE02002019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0520060030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0520060030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000194009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000194009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02005013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE02005013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT20100286,287,327\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT20100286,287,327\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02005013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE02005013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL (R)HS, 20KG BOX (BHN BAKU KOSMETIK) COA HS1230620,HS1240620\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL (R)HS, 20KG BOX (BHN BAKU KOSMETIK) COA HS1230620,HS1240620\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL (R)HS, 20KG BOX (BHN BAKU KOSMETIK) COA HS1240620\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL (R)HS, 20KG BOX (BHN BAKU KOSMETIK) COA HS1240620\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC,25KG BOX (BHN BAKU KOSMETIK) COA 0000194009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC,25KG BOX (BHN BAKU KOSMETIK) COA 0000194009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708200114,115,116\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708200114,115,116\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02009113\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02009113\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20090125\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20090125\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL02009106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL02009106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11210107,QZ11210108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11210107,QZ11210108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12007039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12007039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU MAKANAN) COA UE02002011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU MAKANAN) COA UE02002011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU MAKANAN) COA UT20060003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU MAKANAN) COA UT20060003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030157\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030157\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20060039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20060039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD(BHN BAKU SUPLEMEN) COA UT20060003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD(BHN BAKU SUPLEMEN) COA UT20060003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT20060003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT20060003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT(BHN BAKU SUPLEMEN) COA WB20030057\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT(BHN BAKU SUPLEMEN) COA WB20030057\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20060039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20060039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02101623\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02101623\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19120107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19120107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19120107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19120107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED (BHN BAKU UTK PAKAN TERNAK ) COA MTP00921\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED (BHN BAKU UTK PAKAN TERNAK ) COA MTP00921\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE IPH (BHN BAKU OBAT) COA RBA05621BB\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE IPH (BHN BAKU OBAT) COA RBA05621BB\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M-31.0PCT (BHN BAKU OBAT) COA 102129006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MG HYD PASTE USP TYPE M-31.0PCT (BHN BAKU OBAT) COA 102129006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M-31.0PCT (BHN BAKU OBAT) COA 102129006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MG HYD PASTE USP TYPE M-31.0PCT (BHN BAKU OBAT) COA 102129006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 210205\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 210205\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 210109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"OILESS'CITY TM (BHN BAKU KOSMETIK) COA 210109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 201217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33012990\", \"uraian\": \"AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 201217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MONENDOX 200 BMP (BHN BAKU UTK PAKAN TERNAK) COA 2102251\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"MONENDOX 200 BMP (BHN BAKU UTK PAKAN TERNAK) COA 2102251\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN ) COA MTP07621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN ) COA MTP07621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED (BHN BAKU UTK PAKAN TERNAK ) COA MTP01121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED (BHN BAKU UTK PAKAN TERNAK ) COA MTP01121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40 BRIX )BAHAN BAKU KOSMETIK, COA 01/20GL4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40 BRIX )BAHAN BAKU KOSMETIK, COA 01/20GL4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40 BRIX)BAHAN BAKU KOSMETIK) COA 01/20GL4,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40 BRIX)BAHAN BAKU KOSMETIK) COA 01/20GL4,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRANSCUTOL P (BHN BAKU OBAT) COA 182962\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TRANSCUTOL P (BHN BAKU OBAT) COA 182962\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TEFOSE 63 (BAHAN BAKU OBAT) COA 182255\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TEFOSE 63 (BAHAN BAKU OBAT) COA 182255\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TEFOSE 63 (BHN BAKU OBAT) COA 183568\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TEFOSE 63 (BHN BAKU OBAT) COA 183568\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABCOAT TC WHITE (BHN BAKU PEWARNA TABLET) COA GA686229\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"TABCOAT TC WHITE (BHN BAKU PEWARNA TABLET) COA GA686229\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY SGR TRANSLUCENT (BHN BAKU PEWARNA TABLET) COA GA686455\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY SGR TRANSLUCENT (BHN BAKU PEWARNA TABLET) COA GA686455\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY SGR TRANSLUCENT (BHN BAKU PEWARNA TABLET) COA GA686455\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY SGR TRANSLUCENT (BHN BAKU PEWARNA TABLET) COA GA686455\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY SGR RED (BHN BAKU PEWARNA TABLET) COA GA686603\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY SGR RED (BHN BAKU PEWARNA TABLET) COA GA686603\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY SGR RED (BHN BAKU UTK PEWARNA TABLET) COA GA686602\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY SGR RED (BHN BAKU UTK PEWARNA TABLET) COA GA686602\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC SODIUM ASCORBATE REGULAR, 25KG BAL (BAHAN BAKU MAKANAN) COA HPN2101220 ,2228,2291,3226,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC SODIUM ASCORBATE REGULAR, 25KG BAL (BAHAN BAKU MAKANAN) COA HPN2101220 ,2228,2291,3226,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU MAKANAN) COA HPB2103033\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU MAKANAN) COA HPB2103033\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID REGULAR ,25KG BAL(BHN BAKU MAKANAN) COA HPB2103030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID REGULAR ,25KG BAL(BHN BAKU MAKANAN) COA HPB2103030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU MAKANAN) COA HPB2103105, HPD2103054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU MAKANAN) COA HPB2103105, HPD2103054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC SODIUM ASCORBATE REGULAR, 25KG BAL (BAHAN BAKU MAKANAN) COA HPN2103251, HPN2103269\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC SODIUM ASCORBATE REGULAR, 25KG BAL (BAHAN BAKU MAKANAN) COA HPN2103251, HPN2103269\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC SODIUM ASCORBATE REGULAR ,25KG BAL(BHN BAKU MAKANAN) COA HPN2103258 S/D 3263\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC SODIUM ASCORBATE REGULAR ,25KG BAL(BHN BAKU MAKANAN) COA HPN2103258 S/D 3263\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 3020 EE P OIL,190KG MEF (BHN BAKU SUPLEMEM) COA TS00016096 -\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 3020 EE P OIL,190KG MEF (BHN BAKU SUPLEMEM) COA TS00016096 -\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105715019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200H (BHN BAKU OBAT) COA L105715019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210304\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210304\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210304\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210304\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK) COA EG209-201102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK) COA EG209-201102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (BHN BAKU KOSMETIK) COA ROSD210101-BIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (BHN BAKU KOSMETIK) COA ROSD210101-BIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WITCH HAZEL ORGANIC DISTILLATE 1:10 (BHN BAKU KOSMETIK) COA HAVD210101-BIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"WITCH HAZEL ORGANIC DISTILLATE 1:10 (BHN BAKU KOSMETIK) COA HAVD210101-BIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO201202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO201202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO201202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO201202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO210301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO210301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210303\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210303\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210303\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210303\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210303\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210303\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210303\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210303\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SAC\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SAC\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SAC\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SAC\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA SBJ\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) COA SBJ\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA SAD\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROTESIL LH (BHN BAKU KOSMETIK) COA SAD\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID PPL-600 (BHN BAKU OBAT) COA 577200-2210229/001--003(3)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232010\", \"uraian\": \"LIPOID PPL-600 (BHN BAKU OBAT) COA 577200-2210229/001--003(3)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOPAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 21100115\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29222900\", \"uraian\": \"DOPAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 21100115\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOROLAC TROMETHAMOL/TROMETHAMINE (BHN BAKU OBAT) COA 20100664\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"KETOROLAC TROMETHAMOL/TROMETHAMINE (BHN BAKU OBAT) COA 20100664\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRETINOIN ( BAHAN BAKU OBAT ) COA TRER-20201103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"TRETINOIN ( BAHAN BAKU OBAT ) COA TRER-20201103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SCHISANDRA EXTRACT (BHN BAKU OBAT) COA SCE03-21021701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SCHISANDRA EXTRACT (BHN BAKU OBAT) COA SCE03-21021701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEOMYCIN SULPHATE (BHN BAKU OBAT) COA 202103005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NEOMYCIN SULPHATE (BHN BAKU OBAT) COA 202103005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHONDROITIN SULPHATE SODIUM (BHN BAKU OBAT) COA HS2103073\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"CHONDROITIN SULPHATE SODIUM (BHN BAKU OBAT) COA HS2103073\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103860221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103860221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104310221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104310221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLOWLAC (R) 100H (BHN BAKU OBAT) COA L105810921\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"FLOWLAC (R) 100H (BHN BAKU OBAT) COA L105810921\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 70 (BHN BAKU OBAT) COA L101844820\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 70 (BHN BAKU OBAT) COA L101844820\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E15 PREMIUM LV HYDROXYPROPYL (BHN BAKU UTK PEWARNA TABLET) COA D011K3JL02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E15 PREMIUM LV HYDROXYPROPYL (BHN BAKU UTK PEWARNA TABLET) COA D011K3JL02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL (BHN BAKU UTK PEWARNA TABLET) COA D180K2O002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM CR HYDROXYPROPYL (BHN BAKU UTK PEWARNA TABLET) COA D180K2O002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 10 PREMIUM ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET)COA D184K9A021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 10 PREMIUM ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET)COA D184K9A021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU UTK PAKAN TERNAK) COA 202100007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"AL HYD WET GEL VAC 20 (BHN BAKU UTK PAKAN TERNAK) COA 202100007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECODIAR POWDER (HERACLEOTICUM)B. BAKU UTK OBAT UTK PAKAN TERNAK, COA P0118032021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"ECODIAR POWDER (HERACLEOTICUM)B. BAKU UTK OBAT UTK PAKAN TERNAK, COA P0118032021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOKUDAMI LIQUID B (BHN BAKU KOSMETIK), COA 210655\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"DOKUDAMI LIQUID B (BHN BAKU KOSMETIK), COA 210655\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DERMAVEIL (BHN BAKU KOSMETIK), COA 210101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"DERMAVEIL (BHN BAKU KOSMETIK), COA 210101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNE BUSTERS (BHN BAKU KOSMETIK),COA 210113\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNE BUSTERS (BHN BAKU KOSMETIK),COA 210113\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE -II (BHN BAKU KOSMETIK),COA 210098\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE -II (BHN BAKU KOSMETIK),COA 210098\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IZAYOI (BHN BAKU KOSMETIK), COA 210453\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"IZAYOI (BHN BAKU KOSMETIK), COA 210453\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 202302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 202302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 210177\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 210177\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSE HIPS LIQUID B (BHN BAKU KOSMETIK) COA 210171\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ROSE HIPS LIQUID B (BHN BAKU KOSMETIK) COA 210171\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122100858\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122100858\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMMUNITY BISCUIT PREMIX (BHN BAKU MAKANAN), COA XW92102276\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"IMMUNITY BISCUIT PREMIX (BHN BAKU MAKANAN), COA XW92102276\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTIBOND TG-AK (BAHAN BAKU MAKANAN) COA AK21031102, AK21031103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069091\", \"uraian\": \"PROTIBOND TG-AK (BAHAN BAKU MAKANAN) COA AK21031102, AK21031103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK)COA MSEEC-031210\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK)COA MSEEC-031210\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK)COA GSC-K-041410,GSC-K-010231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK)COA GSC-K-041410,GSC-K-010231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) BHN BAKU KOSMETIK,COA CHP1210315\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) BHN BAKU KOSMETIK,COA CHP1210315\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND COMPAREX (BHN BAKU KOSMETIK) COA COEX-022800,COEX-020331\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND COMPAREX (BHN BAKU KOSMETIK) COA COEX-022800,COEX-020331\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND GLA-40 (BHN BAKU KOSMETIK) COA GLCP-061110\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND GLA-40 (BHN BAKU KOSMETIK) COA GLCP-061110\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK)COA OHA-032321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK)COA OHA-032321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-011411,HMVBD-020331\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-011411,HMVBD-020331\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 021821\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 021821\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSFAC-011690\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSFAC-011690\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-021531\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-021531\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-BLACK PEARL POWDER (BHN BAKU KOSMETIK) COA PDEG-010221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND BIO-BLACK PEARL POWDER (BHN BAKU KOSMETIK) COA PDEG-010221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-011020, KFB-L-012621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-011020, KFB-L-012621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SURELEASE ETHYLCELLULOSE...(BHN BAKU PEWARNA TABLET), COA IN543988\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"SURELEASE ETHYLCELLULOSE...(BHN BAKU PEWARNA TABLET), COA IN543988\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH641224\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH641224\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH641225\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH641225\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH641227\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH641227\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH641226\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH641226\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH641666\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH641666\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH640875\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH640875\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH641359\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH641359\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH640626\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH640626\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH640872\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH640872\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH641501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH641501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH640490\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH640490\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH641860\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH641860\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BLUE (BHN BAKU PEWARNA TABLET) COA SH642611\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BLUE (BHN BAKU PEWARNA TABLET) COA SH642611\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH640901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH640901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH640702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH640702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II PURPLE (BHN BAKU PEWARNA TABLET) COA SH640902\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II PURPLE (BHN BAKU PEWARNA TABLET) COA SH640902\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH640873\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH640873\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANNOGEM (R) XL OPAL SPRAY DRIED MANNITOL USP/EP (BHN BAKU OBAT) COA 122000605\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054300\", \"uraian\": \"MANNOGEM (R) XL OPAL SPRAY DRIED MANNITOL USP/EP (BHN BAKU OBAT) COA 122000605\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R)12 (BHN BAKU OBAT) COA 122100859\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R)12 (BHN BAKU OBAT) COA 122100859\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122100718\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054300\", \"uraian\": \"MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122100718\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 8035700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 8035700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX POWDER)BHN BAKU OBAT,COA M485256,M485266\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE (PURIMOX POWDER)BHN BAKU OBAT,COA M485256,M485266\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED) COA M533712,M533725,M533726\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED) COA M533712,M533725,M533726\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for XANTHAN FFPC (BHN BAKU OBAT), COA 83360405\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"XANTHAN FFPC (BHN BAKU OBAT), COA 83360405\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTABIO AR10 (ASTAXANTHIN OIL 10PCT)BHN BAKU OBAT, COA.2012091\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"ASTABIO AR10 (ASTAXANTHIN OIL 10PCT)BHN BAKU OBAT, COA.2012091\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTABIO AW1 (ASTAXANTHIN WATER SOLUBLE 1)BHN BAKU OBAT, COA 2101261\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"ASTABIO AW1 (ASTAXANTHIN WATER SOLUBLE 1)BHN BAKU OBAT, COA 2101261\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEFENAMIC ACID POWDER (BHN BAKU OBAT) COA MA2103245 S/D MA2103254\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"MEFENAMIC ACID POWDER (BHN BAKU OBAT) COA MA2103245 S/D MA2103254\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CETIRIZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA 20030CZ6RII\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"CETIRIZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA 20030CZ6RII\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID DC 97PCT, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG2102002, 2003,3001,3002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID DC 97PCT, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG2102002, 2003,3001,3002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERRIC PYROPHOSPHATE,APPROX.25PCT FE (BHN BAKU MAKANAN) COA 3096453\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28353990\", \"uraian\": \"FERRIC PYROPHOSPHATE,APPROX.25PCT FE (BHN BAKU MAKANAN) COA 3096453\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD&C BLUE #2/INDIGO CARMINE AL... (BHN BAKU PEWARNA TABLET) COA WP837617:BA6892\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD&C BLUE #2/INDIGO CARMINE AL... (BHN BAKU PEWARNA TABLET) COA WP837617:BA6892\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD & C YELLOW #6/SUNSET YELLOW... (BHN BAKU PEWARNA TABLET) COA WP831241:BA3595\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD & C YELLOW #6/SUNSET YELLOW... (BHN BAKU PEWARNA TABLET) COA WP831241:BA3595\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD & C YELLOW #6/SUNSET YELLOW... (BHN BAKU PEWARNA TABLET) COA WP831241:BA3594\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD & C YELLOW #6/SUNSET YELLOW... (BHN BAKU PEWARNA TABLET) COA WP831241:BA3594\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829018830L\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"B-WHITE (BHN BAKU KOSMETIK) COA 829018830L\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782018592M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK) COA 782018592M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN TM (BHN BAKU KOSMETIK) COA 828019134M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"NEUTRAZEN TM (BHN BAKU KOSMETIK) COA 828019134M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829018830L\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"B-WHITE TM (BHN BAKU KOSMETIK) COA 829018830L\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANACHRYS 2B PF (PRESERVATIVE) (BHN BAKU KOSMETIK) COA 793058829L\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LANACHRYS 2B PF (PRESERVATIVE) (BHN BAKU KOSMETIK) COA 793058829L\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM CHLORIDE 6-HYDRATE CRYST (BHN BAKU SUPLEMEN) COA 3085903\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28273100\", \"uraian\": \"MAGNESIUM CHLORIDE 6-HYDRATE CRYST (BHN BAKU SUPLEMEN) COA 3085903\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0051950\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0051950\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0052167\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0052167\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK)COA 202237\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SAKURA EXTRACT B (BHN BAKU KOSMETIK)COA 202237\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2010022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28352510\", \"uraian\": \"DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2010022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1021690\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1021690\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1050113\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1050113\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1050113\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1050113\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1050022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1050022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0220040024, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0220040024, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2108850011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2108850011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122100859 , 122100860\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122100859 , 122100860\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA L122100860\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA L122100860\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH643281\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH643281\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY YELLOW ( BHN BAKU PEWARNA TABLET) COA SH643311\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY YELLOW ( BHN BAKU PEWARNA TABLET) COA SH643311\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BIGGY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1047463\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BIGGY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1047463\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1025909\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE STERILE RODAC EMPTY 65X15MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1025909\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0272801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0272801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0322946\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0322946\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283842,1005238\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283842,1005238\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0343334\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0343334\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0183144\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0183144\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0063472\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0063472\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0282615\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0282615\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1047444\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1047444\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0140282\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0140282\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0321060\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0321060\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RHAMNOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0182029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RHAMNOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0182029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B03C343M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B03C343M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1019596\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1019596\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0286434\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0286434\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1026705\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1026705\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283868\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283868\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335617\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335617\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0335781\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0335781\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIK MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0293248\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIK MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0293248\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0365805\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0365805\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0294089\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0294089\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1026614\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1026614\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0272801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0272801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1005238\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1005238\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0280297\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0280297\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1026627\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1026627\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0286355\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0286355\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1007107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1007107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1040275\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1040275\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0322897\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0322897\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0282615\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0282615\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1047444\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1047444\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0300743\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LAURYL TRYPROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0300743\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0365816\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0365816\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0350031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0350031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1042590\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1042590\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9337678\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9337678\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0343861\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0343861\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NITRATE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1019625\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NITRATE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1019625\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0272335\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0272335\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YPD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1020471\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE YPD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1020471\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01D034M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01D034M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MARINE BROTH 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0272398\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MARINE BROTH 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0272398\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BORDET GENGOU AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1026784\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BORDET GENGOU AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1026784\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1020442\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1020442\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0365704\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0365704\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1025737\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1025737\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02D068M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02D068M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR STRIPS GASPAK DRY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0328272\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"INDICATOR STRIPS GASPAK DRY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0328272\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0336852\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0336852\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU OBAT ) COA MTP07821\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU OBAT ) COA MTP07821\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE IPH (BHN BAKU OBAT) COA RBA0832100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE IPH (BHN BAKU OBAT) COA RBA0832100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 210223062\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 210223062\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A PALMITATE 250 S/N-B (BHN BAKU MAKANAN) COA WB20120489, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A PALMITATE 250 S/N-B (BHN BAKU MAKANAN) COA WB20120489, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLCOBALAMINE JP (BHN BAKU OBAT) COA SLL/MCI/0620004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"METHYLCOBALAMINE JP (BHN BAKU OBAT) COA SLL/MCI/0620004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102069010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102069010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ISOLATE SOY PROTEINSSPRO-90G (BHN BAKU MAKANAN) COA 202103-040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35040000\", \"uraian\": \"ISOLATE SOY PROTEINSSPRO-90G (BHN BAKU MAKANAN) COA 202103-040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP21034044, XP21034045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP21034044, XP21034045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 985-L-MENTHOL CRYSTALS INDIAN NATURAL (BHN BAKU KOSMETIK) COA NFPL-MEN-20-22/63270\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"985-L-MENTHOL CRYSTALS INDIAN NATURAL (BHN BAKU KOSMETIK) COA NFPL-MEN-20-22/63270\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK)COA SFP-N-010231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK)COA SFP-N-010231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK),COA CLHW-022231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK),COA CLHW-022231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-021531\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-021531\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-032321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-032321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-010231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-010231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK), COA 031021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK), COA 031021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) BHN BAKU KOSMETIK) COA CHP1210325\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) BHN BAKU KOSMETIK) COA CHP1210325\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 031021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 031021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-021380\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-021380\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-030941\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-030941\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-051900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-051900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-020711\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-020711\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-010231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-010231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND NEWAPLE (BHN BAKU KOSMETIK) COA NWPB-042890\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND NEWAPLE (BHN BAKU KOSMETIK) COA NWPB-042890\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-022231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-022231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-020711\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-020711\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG210310, MCVG210305\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG210310, MCVG210305\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABCOAT TC WHITE (BHN BAKU PEWARNA TABLET) COA GA685115\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"TABCOAT TC WHITE (BHN BAKU PEWARNA TABLET) COA GA685115\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYDROCORTISONE ACETATE EP7/USP42 (BHN BAKU OBAT) COA NEHAC210103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"HYDROCORTISONE ACETATE EP7/USP42 (BHN BAKU OBAT) COA NEHAC210103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP2010/USP41 (BHN BAKU OBAT) COA NED210407\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP2010/USP41 (BHN BAKU OBAT) COA NED210407\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE EP6/USP42 (BHN BAKU OBAT) COA NEDNA210309\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE SODIUM PHOSPHATE EP6/USP42 (BHN BAKU OBAT) COA NEDNA210309\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX2103050, 3AX2103051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX2103050, 3AX2103051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) LICORICE GW P(BHN BAKU KOSMETIK) COA 10300009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EXTRAPONE (R) LICORICE GW P(BHN BAKU KOSMETIK) COA 10300009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) GINSENG (BHN BAKU KOSMETIK) COA 10300039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EXTRAPONE (R) GINSENG (BHN BAKU KOSMETIK) COA 10300039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300049\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300049\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) CUCUMBER GW (BHN BAKU KOSMETIK) COA 10300022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EXTRAPONE (R) CUCUMBER GW (BHN BAKU KOSMETIK) COA 10300022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEO EXTRAPONE (R) LEMON (BHN BAKU KOSMETIK) COA 10300015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"NEO EXTRAPONE (R) LEMON (BHN BAKU KOSMETIK) COA 10300015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for C47-051 SUNCROMA TITANIUM DIOXIDE (BHN BAKU KOSMETIK) COA 2830740100101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"C47-051 SUNCROMA TITANIUM DIOXIDE (BHN BAKU KOSMETIK) COA 2830740100101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02D043M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02D043M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B02D060M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B02D060M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER INDOLE (MEDIA UTK PNGEMBANGAN MIKROORGANISME) BATCH B02D043M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER INDOLE (MEDIA UTK PNGEMBANGAN MIKROORGANISME) BATCH B02D043M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL E COLI H ANTISERUM H7 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0212196\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL E COLI H ANTISERUM H7 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0212196\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1032197\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1032197\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEMOGLOBIN SOL 2PCT 100ML 10EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1035231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEMOGLOBIN SOL 2PCT 100ML 10EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1035231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0037326\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0037326\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0097374\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0097374\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0065943\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0065943\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0114639\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0114639\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS GRP B FLR 1/4/5/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0205165\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS GRP B FLR 1/4/5/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0205165\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0219127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0219127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL E COLL O ANTISERUM O157 SEROL TEST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0094884\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL E COLL O ANTISERUM O157 SEROL TEST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0094884\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1021723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1021723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0328195\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0328195\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTISERUM B 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0240783\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL H ANTISERUM B 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0240783\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTISERUM C 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1029886\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL H ANTISERUM C 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1029886\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0329828\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0329828\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0336719\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M-GREEN YEAST AND MOLD BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0336719\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0336719\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0336719\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROMAN CHAMOMILLE ORGANIC DISTILLATE 1:1 (SB) (BHN BAKU KOSMETIK)COA ANND210201-BIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROMAN CHAMOMILLE ORGANIC DISTILLATE 1:1 (SB) (BHN BAKU KOSMETIK)COA ANND210201-BIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (SB) (BHN BAKU KOSMETIK)COA ROSD210101-BIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (SB) (BHN BAKU KOSMETIK)COA ROSD210101-BIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS210101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS210101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO210301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO210301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SERASENSE SF CM5 (BAHAN BAKU SUPLEMEN) COA PA10315017,PA10326011,PA10326013,6025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29319049\", \"uraian\": \"SERASENSE SF CM5 (BAHAN BAKU SUPLEMEN) COA PA10315017,PA10326011,PA10326013,6025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM VALPROATE (BAHAN BAKU OBAT) COA 455286 (V6661)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29159090\", \"uraian\": \"SODIUM VALPROATE (BAHAN BAKU OBAT) COA 455286 (V6661)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 1400/1700 SUGLETS 1400/1700 (12/14 MESH) BHN BAKU PEWARNA TABLET) COA ST516178\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"1400/1700 SUGLETS 1400/1700 (12/14 MESH) BHN BAKU PEWARNA TABLET) COA ST516178\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) BAHAN BAKU KOSMETIK, COA 01/20GL4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40 BRIX) BAHAN BAKU KOSMETIK, COA 01/20GL4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK,COA 01/20GL4, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK,COA 01/20GL4, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122100705, 122100858\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122100705, 122100858\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIAMI SCG(S) (BHN BAKU KOSMETIK),COA 21040155\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34021190\", \"uraian\": \"MIAMI SCG(S) (BHN BAKU KOSMETIK),COA 21040155\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS FUMARATE,FINE POWDER (BHN BAKU MAKANAN) COA 3097618\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"FERROUS FUMARATE,FINE POWDER (BHN BAKU MAKANAN) COA 3097618\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS GLUCONATE (BHN BAKU OBAT) COA 3089082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"FERROUS GLUCONATE (BHN BAKU OBAT) COA 3089082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS GLUCONATE POWDER,PH EUR 10.ED (BHN BAKU OBAT) COA 3096140\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"FERROUS GLUCONATE POWDER,PH EUR 10.ED (BHN BAKU OBAT) COA 3096140\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM OXIDE, LIGHT POWDER BP2021(BHN BAKU OBAT) COA 1104435\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25199010\", \"uraian\": \"MAGNESIUM OXIDE, LIGHT POWDER BP2021(BHN BAKU OBAT) COA 1104435\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS SULFATE DRIED,POWDER,USP43 (BHN BAKU OBAT) COA 3096689/3087912\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"FERROUS SULFATE DRIED,POWDER,USP43 (BHN BAKU OBAT) COA 3096689/3087912\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM ACETATE, POWDER, PURITY ACC.TO E263(BHN BAKU OBAT) COA 3092322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29152910\", \"uraian\": \"CALCIUM ACETATE, POWDER, PURITY ACC.TO E263(BHN BAKU OBAT) COA 3092322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA.MLAH0150321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29341000\", \"uraian\": \"MELOXICAM BP (BHN BAKU OBAT) COA.MLAH0150321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA 21100155\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29391900\", \"uraian\": \"PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA 21100155\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 20 PREMIUM ETHYLCELLULOSE (DOW) (BHN BAKU PEWARNA TABLET) COA D184KBI021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 20 PREMIUM ETHYLCELLULOSE (DOW) (BHN BAKU PEWARNA TABLET) COA D184KBI021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 20 PREMIUM ETHYLCELLULOSE (DOW) (BHN BAKU PEWARNA TABLET) COA D184K4R021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 20 PREMIUM ETHYLCELLULOSE (DOW) (BHN BAKU PEWARNA TABLET) COA D184K4R021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIPERONYL BUTOXIDE (BHN BAKU UTK PAKAN TERNAK) COA 20210328\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"PIPERONYL BUTOXIDE (BHN BAKU UTK PAKAN TERNAK) COA 20210328\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUCRALOSE(JKSS00) BHN BAKU OBAT, COA 21031402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29321400\", \"uraian\": \"SUCRALOSE(JKSS00) BHN BAKU OBAT, COA 21031402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POVIDONE K-25 (BHN BAKU OBAT) COA PK25-210120F11\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"POVIDONE K-25 (BHN BAKU OBAT) COA PK25-210120F11\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IRBESARTAN (BHN BAKU OBAT) COA C5055-20-059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"IRBESARTAN (BHN BAKU OBAT) COA C5055-20-059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITICOLINE SODIUM (AT25KG) BHN BAKU OBAT) COA 210216\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"CITICOLINE SODIUM (AT25KG) BHN BAKU OBAT) COA 210216\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEVOFLOXACIN HEMIHYDRATE (FREE ALKALINE)BHN BAKU OBAT, COA C008-2003107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"LEVOFLOXACIN HEMIHYDRATE (FREE ALKALINE)BHN BAKU OBAT, COA C008-2003107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SIMVASTATIN (BHN BAKU OBAT) COA DK40-2102104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29322090\", \"uraian\": \"SIMVASTATIN (BHN BAKU OBAT) COA DK40-2102104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CROSPOVIDONE XL (BHN BAKU OBAT), COA PP210121XL\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"CROSPOVIDONE XL (BHN BAKU OBAT), COA PP210121XL\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM SELENITE IN CARRIER (BHN BAKU SUPLEMEN) COA 3086606\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28429010\", \"uraian\": \"SODIUM SELENITE IN CARRIER (BHN BAKU SUPLEMEN) COA 3086606\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINC OXIDE, POWDER, PH EUR.10.ED (BHN BAKU SUPLEMEN) COA 3093480\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28170010\", \"uraian\": \"ZINC OXIDE, POWDER, PH EUR.10.ED (BHN BAKU SUPLEMEN) COA 3093480\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRASIL DM300 000 A2 (BHN BAKU KOSMETIK) COA 2050F501XD\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100090\", \"uraian\": \"MIRASIL DM300 000 A2 (BHN BAKU KOSMETIK) COA 2050F501XD\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRC ACID MONOHYDRATE (CAM) GRIEB 8-80 MESH E330 (BHN BAKU KOSMETIK) COA THY2011022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRC ACID MONOHYDRATE (CAM) GRIEB 8-80 MESH E330 (BHN BAKU KOSMETIK) COA THY2011022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM REGULAR GRADE(BHN BAKU OBAT) COA 2103370,2103371,2103372,2103378\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331900\", \"uraian\": \"METAMIZOLE SODIUM REGULAR GRADE(BHN BAKU OBAT) COA 2103370,2103371,2103372,2103378\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOCUSATE SODIUM (BHN BAKU OBAT), COA SD0071533\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"DOCUSATE SODIUM (BHN BAKU OBAT), COA SD0071533\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU SUPLEMEN), COA UJ111\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU SUPLEMEN), COA UJ111\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 25022021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25081000\", \"uraian\": \"BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 25022021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000194009, 0000194010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000194009, 0000194010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM AL HYD GEL VISC0-9, USP (BHN BAKU OBAT) COA 102102007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"BARCROFT TM AL HYD GEL VISC0-9, USP (BHN BAKU OBAT) COA 102102007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M.31.0PCT (BHN BAKU OBAT) COA 102129006,102129013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MG HYD PASTE USP TYPE M.31.0PCT (BHN BAKU OBAT) COA 102129006,102129013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 21E0801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 21E0801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105710721\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200H (BHN BAKU OBAT) COA L105710721\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB21030542, WB21030543\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB21030542, WB21030543\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB21030542\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB21030542\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SCD\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SCD\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS HYDROMILK (BHN BAKU KOSMETIK) COA SDN\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS HYDROMILK (BHN BAKU KOSMETIK) COA SDN\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA SCL\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) COA SCL\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA SAD\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROTESIL LH (BHN BAKU KOSMETIK) COA SAD\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH643377\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH643377\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 21E0105\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 21E0105\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2008070971,2108890141\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2008070971,2108890141\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO)BHN BAKU MAKANAN, COA UT21031046, UT21031047\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO)BHN BAKU MAKANAN, COA UT21031046, UT21031047\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1056808\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1056808\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FENTACARE 2231 EF 25KG PAPER BOX (BHN BAKU KOSMETIK )COA ZH21C1401, ZH21C1502\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34029019\", \"uraian\": \"FENTACARE 2231 EF 25KG PAPER BOX (BHN BAKU KOSMETIK )COA ZH21C1401, ZH21C1502\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM-5KG (BHN BAKU KOSMETIK) COA 2100503, 2108806\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM-5KG (BHN BAKU KOSMETIK) COA 2100503, 2108806\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMISOL TRIO TM -5KG (BHN BAKU KOSMETIK) COA 2103114\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AMISOL TRIO TM -5KG (BHN BAKU KOSMETIK) COA 2103114\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECOGEL TM- 5KG (BHN BAKU KOSMETIK) COA 2105102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ECOGEL TM- 5KG (BHN BAKU KOSMETIK) COA 2105102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM- 20KG (BHN BAKU KOSMETIK) COA 2108805\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM- 20KG (BHN BAKU KOSMETIK) COA 2108805\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSALITY TM-5KG (BHN BAKU KOSMETIK) COA 2100901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROSALITY TM-5KG (BHN BAKU KOSMETIK) COA 2100901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0220040042\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0220040042\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000194296, 0000194375\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000194296, 0000194375\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 103093-A (BHN BAKU MAKANAN) COA XW92103125\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 103093-A (BHN BAKU MAKANAN) COA XW92103125\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 103047-D (BHN BAKU MAKANAN) COA XW92103124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 103047-D (BHN BAKU MAKANAN) COA XW92103124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE FCC, 25KG BOX (BHN BAKU MAKANAN) COA 0000194012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE FCC, 25KG BOX (BHN BAKU MAKANAN) COA 0000194012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE BHN BAKU MAKANAN) COA UT20110206\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE BHN BAKU MAKANAN) COA UT20110206\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT20060041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT20060041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11210108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11210108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20090125\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20090125\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT20100044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT20100044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ01110814\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ01110814\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02010448\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02010448\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02010448\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02010448\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW92103133\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 C (BHN BAKU MAKANAN) COA XW92103133\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MINERAL PREMIX HBS08022019 (BHN BAKU MAKANAN) COA XW92103126\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"MINERAL PREMIX HBS08022019 (BHN BAKU MAKANAN) COA XW92103126\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE02005013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE02005013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12007039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12007039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT(BHN BAKU SUPLEMEN) COA WB20040050\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT(BHN BAKU SUPLEMEN) COA WB20040050\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030067\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030067\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT20110036\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT20110036\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT20100193\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT20100193\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT20090125\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT20090125\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL02009114\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL02009114\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT20090125\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT20090125\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ01110814\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ01110814\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL02009114\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL02009114\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00813458\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00813458\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02012930\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02012930\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL(BHN BAKU SUPLEMEN) COA UQ01110814\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL(BHN BAKU SUPLEMEN) COA UQ01110814\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX(BHN BAKU SUPLEMEN) COA TL02012930\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE ,25KG BOX(BHN BAKU SUPLEMEN) COA TL02012930\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20090017, UT20120026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20090017, UT20120026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00813470\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00813470\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2005054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2005054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN)COA UQ00813470\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN)COA UQ00813470\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2005054, 55\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2005054, 55\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VP DN03 (BHN BAKU MAKANAN) COA XW92103155\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VP DN03 (BHN BAKU MAKANAN) COA XW92103155\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT20040087\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT20040087\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE FCC, 25KG BOX (BHN BAKU MAKANAN) COA 0000194012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE FCC, 25KG BOX (BHN BAKU MAKANAN) COA 0000194012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT20120200, UT20050199\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT20120200, UT20050199\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL02012930\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL02012930\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ00602914\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ00602914\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02010448\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02010448\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT20040087\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT20040087\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP21033316, XP21033317\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP21033316, XP21033317\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1069992\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1069992\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA DOC0672121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"SODIUM CARBONATE IPH (BHN BAKU OBAT) COA DOC0672121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYMARIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 20B0079000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILYMARIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 20B0079000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VALERIAN D.H.E> 0.8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 20B0124900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VALERIAN D.H.E> 0.8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 20B0124900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PASSION FLOWER D.H.E>4PCT (BAHAN BAKU SUPLEMEN) COA 20B0079600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PASSION FLOWER D.H.E>4PCT (BAHAN BAKU SUPLEMEN) COA 20B0079600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0010500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILYBIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0010500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VALERIAN D.H.E >0,8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 20B0124900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VALERIAN D.H.E >0,8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 20B0124900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PASSION FLOWER D.H.E>4PCT (BHN BAKU SUPLEMEN) COA 20B0157300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PASSION FLOWER D.H.E>4PCT (BHN BAKU SUPLEMEN) COA 20B0157300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NYSTATIN POWDER ROW (BHN BAKU OBAT) COA C114492\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NYSTATIN POWDER ROW (BHN BAKU OBAT) COA C114492\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000194376, 0000194377\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000194376, 0000194377\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0520060053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0520060053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0321050277,278,279\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0321050277,278,279\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708200116,117,118,119\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708200116,117,118,119\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50, 20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02011039, UE02101010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50, 20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02011039, UE02101010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN),COA UQ00602915\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN),COA UQ00602915\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1906088, UEB1906089\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1906088, UEB1906089\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92103200, XW92103201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"V003400 (BHN BAKU MAKANAN) COA XW92103200, XW92103201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE02005016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE02005016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA MTP09821\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA MTP09821\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VEEGUM K 20K BAG(BHN BAKU KOSMETIK) COA 81713473\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25081000\", \"uraian\": \"VEEGUM K 20K BAG(BHN BAKU KOSMETIK) COA 81713473\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RUGENER DREINKRONEN HEILKREIDE 25K BAG (BHN BAKU KOSMETIK) COA 81713381\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25090000\", \"uraian\": \"RUGENER DREINKRONEN HEILKREIDE 25K BAG (BHN BAKU KOSMETIK) COA 81713381\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2248533\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2248533\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2248533\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2248533\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2248533\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2248533\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTONE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0314230\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTONE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0314230\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0220040024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0220040024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL 75L ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01909355\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL 75L ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01909355\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C(R) 50, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UE02010030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C(R) 50, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UE02010030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50, 20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02010037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50, 20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02010037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK),COA TL02011131\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK),COA TL02011131\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX (TM) 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF20164020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"BEAUPLEX (TM) 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF20164020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU MAKANAN) COA XW92103205, XW92103206\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"2VIT PREMIX BEAUPLEX H0501 (BHN BAKU MAKANAN) COA XW92103205, XW92103206\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LUBRIPHARM (R) SSF NF/EP/JP SODIUM STEARYL FUMARATE (B.BAKU OBAT) COA 122100855\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"LUBRIPHARM (R) SSF NF/EP/JP SODIUM STEARYL FUMARATE (B.BAKU OBAT) COA 122100855\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 4 PREMIUM (BHN BAKU PEWARNA TABLET) COA D184K7D021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 4 PREMIUM (BHN BAKU PEWARNA TABLET) COA D184K7D021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH642454\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH642454\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH642454\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH642454\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH641359\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH641359\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH642521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH642521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH641667\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH641667\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH642519\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH642519\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH642354\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH642354\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB MAROON (BHN BAKU PEWARNA TABLET) COA SH642291\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB MAROON (BHN BAKU PEWARNA TABLET) COA SH642291\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH642342\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH642342\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH642322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH642322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH642341\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH642341\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA SH642344\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA SH642344\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH643538\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH643538\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH641983\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH641983\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GRAY (BHN BAKU PEWARNA TABLET) COA SH642292\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GRAY (BHN BAKU PEWARNA TABLET) COA SH642292\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH642290\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH642290\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH642343\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH642343\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY GREEN (BHN BAKU PEWARNA TABLET) COA SH642293\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY GREEN (BHN BAKU PEWARNA TABLET) COA SH642293\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH642454\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH642454\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH642792\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH642792\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH642787\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH642787\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH642788\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH642788\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH641983\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH641983\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH643538\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH643538\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH643539\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH643539\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH642749\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH642749\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH642729\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH642729\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH641819\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH641819\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH642749\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH642749\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH642732\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH642732\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH642751\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH642751\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY EZ CLEAR (BHN BAKU PEWARNA TABLET) COA SH643072\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY EZ CLEAR (BHN BAKU PEWARNA TABLET) COA SH643072\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH642752\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH642752\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH642758\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH642758\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH643251\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH643251\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II CLEAR (BHN BAKU PEWARNA TABLET) COA SH642466\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II CLEAR (BHN BAKU PEWARNA TABLET) COA SH642466\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH641948\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH641948\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH641945\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH641945\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH643233\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH643233\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH638108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH638108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH641819\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH641819\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH642788\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH642788\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH642787\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH642787\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH641227\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH641227\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH641226\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH641226\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH641954\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH641954\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH641859\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH641859\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH641816\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH641816\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH641018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH641018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH641860\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH641860\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH641817\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH641817\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH641818\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH641818\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II CLEAR (BHN BAKU PEWARNA TABLET) COA SH641854\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II CLEAR (BHN BAKU PEWARNA TABLET) COA SH641854\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYIL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH641857\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYIL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH641857\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH641856\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH641856\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH641864\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH641864\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH641954\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH641954\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH641853\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH641853\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH641815\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH641815\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH642014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH642014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH641998\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH641998\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH641984\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH641984\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA SH641987\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA SH641987\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH641816\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH641816\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH641983\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH641983\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH641988\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH641988\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH642012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH642012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND GREEN (BHN BAKU PEWARNA TABLET) COA SH641997\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND GREEN (BHN BAKU PEWARNA TABLET) COA SH641997\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH642707\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH642707\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREEN (BHN BAKU PEWARNA TABLET) COA SH642005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREEN (BHN BAKU PEWARNA TABLET) COA SH642005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH642004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH642004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH641985\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH641985\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BLUE (BHN BAKU PEWARNA TABLET) COA SH642611\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BLUE (BHN BAKU PEWARNA TABLET) COA SH642611\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIDOCAINE BASE (BHN BAKU OBAT) COA. 197248\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"LIDOCAINE BASE (BHN BAKU OBAT) COA. 197248\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROSPIRENONE MICRONIZED (BHN BAKU OBAT) COA NA3345M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"DROSPIRENONE MICRONIZED (BHN BAKU OBAT) COA NA3345M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ONDANSETRON HCL USP (BHN BAKU OBAT) COA 21OS001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"ONDANSETRON HCL USP (BHN BAKU OBAT) COA 21OS001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 27/50 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA MTP09721,MTP09621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 27/50 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA MTP09721,MTP09621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTABIO AR10 (ASTAXANTHIN OIL 10PCT) BHN BAKU OBAT, COA.2104021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"ASTABIO AR10 (ASTAXANTHIN OIL 10PCT) BHN BAKU OBAT, COA.2104021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 21290005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 21290005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLOPURINOL USP (BHN BAKU OBAT) COA 20051AY3ARIIX\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"ALLOPURINOL USP (BHN BAKU OBAT) COA 20051AY3ARIIX\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FEF CETRIMIDE PH EUR (BHN BAKU KOSMETIK) COA LX0D279\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"FEF CETRIMIDE PH EUR (BHN BAKU KOSMETIK) COA LX0D279\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABSORAGE (BHN BAKU KOSMETIK), COA 202322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ABSORAGE (BHN BAKU KOSMETIK), COA 202322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIOBENEFITY (BHN BAKU KOSMETIK) COA 210200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BIOBENEFITY (BHN BAKU KOSMETIK) COA 210200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 202302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 202302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IZAYOI (BHN BAKU KOSMETIK), COA 210453\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"IZAYOI (BHN BAKU KOSMETIK), COA 210453\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANDARIN INCLEAR (BHN BAKU KOSMETIK), COA 210641\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"MANDARIN INCLEAR (BHN BAKU KOSMETIK), COA 210641\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK),COA 210386\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNEBUSTERS (BHN BAKU KOSMETIK),COA 210386\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EMALEX GWIS-320 (BHN BAKU KOSMETIK),COA 1-1048\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34021310\", \"uraian\": \"EMALEX GWIS-320 (BHN BAKU KOSMETIK),COA 1-1048\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EMALEX PEIS-10EX (BHN BAKU KOSMETIK) COA 2104-15\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34021310\", \"uraian\": \"EMALEX PEIS-10EX (BHN BAKU KOSMETIK) COA 2104-15\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 210276\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 210276\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AP GRIT (BHN BAKU KOSMETIK) COA 210617\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AP GRIT (BHN BAKU KOSMETIK) COA 210617\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 210377\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 210377\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785018790L\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785018790L\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785018917M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785018917M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE TM PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) COA 702028969M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ABYSSINE TM PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) COA 702028969M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILDENAFIL CITRATE USP (BHN BAKU OBAT) COA SLC 043 04 21\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"SILDENAFIL CITRATE USP (BHN BAKU OBAT) COA SLC 043 04 21\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY SGR RED (BHN BAKU PEWARNA TABLET) COA GA687593\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY SGR RED (BHN BAKU PEWARNA TABLET) COA GA687593\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY SGR RED (BHN BAKU PEWARNA TABLET) COA GA687592\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY SGR RED (BHN BAKU PEWARNA TABLET) COA GA687592\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543617\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543617\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543615\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543615\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543313\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543313\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543614\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543614\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP(BHN BAKU OBAT) COA 102102007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"BARCROFT TM AL HYD GEL VISCO-9, USP(BHN BAKU OBAT) COA 102102007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M-31.0PCT (BHN BAKU OBAT) COA 102129013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MG HYD PASTE USP TYPE M-31.0PCT (BHN BAKU OBAT) COA 102129013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU MAKANAN) COA HPB2103251, HPD2103120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU MAKANAN) COA HPB2103251, HPD2103120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID DC 97PCT, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG2103002, HPG2103005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID DC 97PCT, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG2103002, HPG2103005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU MAKANAN) COA HPB2103249, HPD2103115,HPD2103118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU MAKANAN) COA HPB2103249, HPD2103115,HPD2103118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID 325 MESH, 20KGBOA1PO(BAHAN BAKU SUPLEMEN)COA HPD2104043,4032,4026,4021,4015...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID 325 MESH, 20KGBOA1PO(BAHAN BAKU SUPLEMEN)COA HPD2104043,4032,4026,4021,4015...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC SODIUM ASCORBATE REGULAR, 25KG BAL (BHN BAKU MAKANAN)COA HPN2103508,3509,3510,4005,4006,4007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC SODIUM ASCORBATE REGULAR, 25KG BAL (BHN BAKU MAKANAN)COA HPN2103508,3509,3510,4005,4006,4007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2% COLOR (BHN BAKU SUPLEMEN) COA 20B0090900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2% COLOR (BHN BAKU SUPLEMEN) COA 20B0090900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2% COLOR (BHN BAKU SUPLEMEN) COA 20B0176100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2% COLOR (BHN BAKU SUPLEMEN) COA 20B0176100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2% COLOR (BHN BAKU SUPLEMEN) COA 20B0176200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2% COLOR (BHN BAKU SUPLEMEN) COA 20B0176200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2% COLOR (BHN BAKU SUPLEMEN) COA 20B0176300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2% COLOR (BHN BAKU SUPLEMEN) COA 20B0176300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2% COLOR (BHN BAKU SUPLEMEN) COA 20B0176400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2% COLOR (BHN BAKU SUPLEMEN) COA 20B0176400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFADROXIL MONOHYDRATE (PURIDROX COMPACTED) BHN BAKU OBAT, COA B340269,B340270,B340268\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFADROXIL MONOHYDRATE (PURIDROX COMPACTED) BHN BAKU OBAT, COA B340269,B340270,B340268\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543752\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543752\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543235\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543235\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SELENIUM SULFIDE EP/USP (MICRONIZED) (BHN BAKU OBAT) COA SS008D21\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28309010\", \"uraian\": \"SELENIUM SULFIDE EP/USP (MICRONIZED) (BHN BAKU OBAT) COA SS008D21\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOL SODIUM (BHN BAKU UTK PAKAN TERNAK) COA 2104534\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331900\", \"uraian\": \"METAMIZOL SODIUM (BHN BAKU UTK PAKAN TERNAK) COA 2104534\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISONE USP42 (BHN BAKU OBAT) COA NPD210201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISONE USP42 (BHN BAKU OBAT) COA NPD210201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT A PALM 1.0 M+VIT D3 100'000 (BHN BAKU MAKANAN) COA UT21030115\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VIT A PALM 1.0 M+VIT D3 100'000 (BHN BAKU MAKANAN) COA UT21030115\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT21020001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT21020001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO(R) LUTEIN 20PCT SAF, 1KG ALUF (BHN BAKU SUPLEMEN) COA UE02007035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO(R) LUTEIN 20PCT SAF, 1KG ALUF (BHN BAKU SUPLEMEN) COA UE02007035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-210402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-210402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH643478\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH643478\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH643523\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH643523\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH643479\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH643479\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED(BHN BAKU PEWARNA TABLET) COA SH643480\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED(BHN BAKU PEWARNA TABLET) COA SH643480\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH642908\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH642908\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH643481\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH643481\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA SH643519\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA SH643519\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II WHITE(BHN BAKU PEWARNA TABLET) COA SH643377\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II WHITE(BHN BAKU PEWARNA TABLET) COA SH643377\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH643517\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH643517\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH643695\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH643695\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH643175\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH643175\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH643819\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH643819\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH643478\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH643478\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH643188\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH643188\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH643168\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH643168\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH643538\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH643538\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH643539\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH643539\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH643709\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH643709\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH643170\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH643170\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH643171\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH643171\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH643172\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH643172\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH643173\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH643173\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH642749\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH642749\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY RED (BHN BAKU PEWARNA TABLET) COA SH643174\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY RED (BHN BAKU PEWARNA TABLET) COA SH643174\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH643210\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH643210\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH643175\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH643175\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH643201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH643201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH643216\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH643216\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY PURPLE (BHN BAKU PEWARNA TABLET) COA SH643176\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY PURPLE (BHN BAKU PEWARNA TABLET) COA SH643176\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH642290\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH642290\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH643178\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH643178\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH643236\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH643236\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH643211\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH643211\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH643212\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH643212\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH643213\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH643213\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH641666\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH641666\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122100861\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122100861\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLONIDINE HCL (BHN BAKU OBAT) COA 189447\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"CLONIDINE HCL (BHN BAKU OBAT) COA 189447\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113578\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113578\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113550\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113550\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARACETAMOL USP (BHN BAKU OBAT) COA 2110040,2110047,2150600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"PARACETAMOL USP (BHN BAKU OBAT) COA 2110040,2110047,2150600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HA00291\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34029099\", \"uraian\": \"MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HA00291\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT21011030,UT21021031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT21011030,UT21021031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL02101756\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL02101756\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02010105\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02010105\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02010105\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02010105\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT20100028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT20100028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02010105, UE02010106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02010105, UE02010106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ10110545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ10110545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT20100030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT20100030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02010106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02010106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02010106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02010106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM)'10'N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT21010003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM)'10'N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT21010003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT20070098\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT20070098\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ01116113,6119\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ01116113,6119\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02012135,136\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02012135,136\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT20100120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT20100120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02006812\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02006812\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GARCINIA CAMBOGIA 60PCT CA-K SALT - 5KGS(BHN BAKU OBAT) COA FGC2104003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"GARCINIA CAMBOGIA 60PCT CA-K SALT - 5KGS(BHN BAKU OBAT) COA FGC2104003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 CN 200KG FA (BHN BAKU KOSMETIK) COA 1565304, 1566287\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 CN 200KG FA (BHN BAKU KOSMETIK) COA 1565304, 1566287\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010-C08- 200KG FA (BHN BAKU KOSMETIK) COA 1566749\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010-C08- 200KG FA (BHN BAKU KOSMETIK) COA 1566749\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 900 -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1563420\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 900 -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1563420\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IONOL (R) CP (BHN BAKU OBAT), COA 01128920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29071900\", \"uraian\": \"IONOL (R) CP (BHN BAKU OBAT), COA 01128920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102123003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102123003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM AL HYD GEL LV13, USP (BHN BAKU OBAT) COA 102113037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"BARCROFT TM AL HYD GEL LV13, USP (BHN BAKU OBAT) COA 102113037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM AL HYD GEL LV13, USP (BHN BAKU OBAT) SHIPMENT SAMPLE, NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"BARCROFT TM AL HYD GEL LV13, USP (BHN BAKU OBAT) SHIPMENT SAMPLE, NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 20 PREMIUM ETHYLCELLULOSE (DOW) (BHN BAKU PEWARNA TABLET) COA D184KB9021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 20 PREMIUM ETHYLCELLULOSE (DOW) (BHN BAKU PEWARNA TABLET) COA D184KB9021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 20 PREMIUM ETHYLCELLULOSE (DOW) (BHN BAKU PEWARNA TABLET) COA D184K9M021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 20 PREMIUM ETHYLCELLULOSE (DOW) (BHN BAKU PEWARNA TABLET) COA D184K9M021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 20 PREMIUM ETHYLCELLULOSE (DOW)BHN BAKU PEWARNA TABLET, COA D184L1J021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 20 PREMIUM ETHYLCELLULOSE (DOW)BHN BAKU PEWARNA TABLET, COA D184L1J021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COSME-PHYTAMI LOTUS FL 5KG(BAHAN BAKU KOSMETIK) COA AM087578\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"COSME-PHYTAMI LOTUS FL 5KG(BAHAN BAKU KOSMETIK) COA AM087578\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METRONIDAZOLE BP (BHN BAKU OBAT) COA MTZ/1010021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"METRONIDAZOLE BP (BHN BAKU OBAT) COA MTZ/1010021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NOREPINEPHRINE BITARTRATE (NORADRENALINE TARTRATE)BHN BAKU OBAT, COA 650104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29379010\", \"uraian\": \"NOREPINEPHRINE BITARTRATE (NORADRENALINE TARTRATE)BHN BAKU OBAT, COA 650104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN542460\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN542460\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95, 20KG JUG (BHN BAKU MAKANAN) COA XH2020061\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95, 20KG JUG (BHN BAKU MAKANAN) COA XH2020061\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95, 20KG JUG (BHN BAKU MAKANAN) COA XH2020061\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95, 20KG JUG (BHN BAKU MAKANAN) COA XH2020061\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A,20KG BA (BHN BAKU MAKANAN) COA WB20110552,553,554\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A,20KG BA (BHN BAKU MAKANAN) COA WB20110552,553,554\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 100KG FIT (BHN BAKU SUPLEMEN) COA WB21019065\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT GRANULATION, 100KG FIT (BHN BAKU SUPLEMEN) COA WB21019065\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95, 20KG JUG (BHN BAKU MAKANAN) COA XH20200601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95, 20KG JUG (BHN BAKU MAKANAN) COA XH20200601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) (BAHAN BAKU KOSMETIK) COA B-180321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) (BAHAN BAKU KOSMETIK) COA B-180321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB210221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB210221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB210221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB210221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG230121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG230121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GREENSIL (BHN BAKU KOSMETIK) COA EG209-201102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GREENSIL (BHN BAKU KOSMETIK) COA EG209-201102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210303\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210303\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SEABUCKTHORN HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HIR210101-B\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SEABUCKTHORN HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HIR210101-B\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM201201-PGH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM201201-PGH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK) COA EG209-201102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK) COA EG209-201102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO210301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO210301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO210301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO210301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT21020204,205,206\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT21020204,205,206\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT EM YELLOW (BHN BAKU SUPLEMEN) COA UT21020001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT EM YELLOW (BHN BAKU SUPLEMEN) COA UT21020001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT21010006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT21010006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT21010004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT21010004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT21010005, UT21010006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT21010005, UT21010006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT20090059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT20090059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE02010107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE02010107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT21010006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT21010006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT21031043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT21031043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ10213048\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ10213048\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50373\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061100\", \"uraian\": \"MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50373\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 21T0008700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 21T0008700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 21T0008700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 21T0008700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2008803264\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2008803264\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SORBITOL SOLUTION 70PCT CRYSTALLIZING (BHN BAKU OBAT) COA 2122P033\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054400\", \"uraian\": \"SORBITOL SOLUTION 70PCT CRYSTALLIZING (BHN BAKU OBAT) COA 2122P033\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED (BHN BAKU UTK PAKAN TERNAK) COA ROA1621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED (BHN BAKU UTK PAKAN TERNAK) COA ROA1621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GABAPENTIN USP (BHN BAKU OBAT) COA CGBU210178\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"GABAPENTIN USP (BHN BAKU OBAT) COA CGBU210178\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RANITIDINE HCL USP (BHN BAKU OBAT) COA RH 235 04 21, 234 04 21\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29321900\", \"uraian\": \"RANITIDINE HCL USP (BHN BAKU OBAT) COA RH 235 04 21, 234 04 21\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX POWDER)BHN BAKU OBAT,COA M485324,M485329\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE (PURIMOX POWDER)BHN BAKU OBAT,COA M485324,M485329\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED GRADE P) COA M597684\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED GRADE P) COA M597684\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED GRADE A) BHN BAKU OBAT, COA M533870,M533881,M533869\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED GRADE A) BHN BAKU OBAT, COA M533870,M533881,M533869\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 2150588,50598,10040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"PARACETAMOL (BHN BAKU OBAT) COA 2150588,50598,10040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 19102020, 24032021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25081000\", \"uraian\": \"BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 19102020, 24032021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT), COA ASG/04/120421, 150421,160421,170421,180421\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT), COA ASG/04/120421, 150421,160421,170421,180421\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW MONO YRN27-03 (ALAT KESEHATAN) COA MO2760N0420\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30061010\", \"uraian\": \"STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW MONO YRN27-03 (ALAT KESEHATAN) COA MO2760N0420\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW MONO YRN29-02 (ALAT KESEHATAN) COA MO2938N0420\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30061010\", \"uraian\": \"STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW MONO YRN29-02 (ALAT KESEHATAN) COA MO2938N0420\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW MONO YRN29-03 (ALAT KESEHATAN) COA MO2950N0420\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30061010\", \"uraian\": \"STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW MONO YRN29-03 (ALAT KESEHATAN) COA MO2950N0420\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW MONO YRN30-01(ALAT KESEHATAN) COA MO3025N0420\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30061010\", \"uraian\": \"STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW MONO YRN30-01(ALAT KESEHATAN) COA MO3025N0420\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW SCREW YRS27-03(ALAT KESEHATAN) COA SC2760N0420\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30061010\", \"uraian\": \"STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW SCREW YRS27-03(ALAT KESEHATAN) COA SC2760N0420\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW SCREW YRS29-02 (ALAT KESEHATAN) COASC2938N0420\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30061010\", \"uraian\": \"STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW SCREW YRS29-02 (ALAT KESEHATAN) COASC2938N0420\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW SCREW YRS29-03 (ALAT KESEHATAN)COA SC2950N0420\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30061010\", \"uraian\": \"STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW SCREW YRS29-03 (ALAT KESEHATAN)COA SC2950N0420\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC 6D YRPN19-84-L(AKL) COA 6D19100L0420\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30061010\", \"uraian\": \"STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC 6D YRPN19-84-L(AKL) COA 6D19100L0420\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC 6D YRPN21-70-L (AKL) COA 6D2190L0420\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30061010\", \"uraian\": \"STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC 6D YRPN21-70-L (AKL) COA 6D2190L0420\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW DC DUAL ARM YRDN-FE-CI-01(AKL)COA DA21300N0420\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30061010\", \"uraian\": \"STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW DC DUAL ARM YRDN-FE-CI-01(AKL)COA DA21300N0420\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW DC DUAL ARM YRDN-FE-CI-02(AKL)COA DA21420N0420\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30061010\", \"uraian\": \"STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW DC DUAL ARM YRDN-FE-CI-02(AKL)COA DA21420N0420\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC ULTRA+ YRPN25-113, COA UP2560N0420\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30061010\", \"uraian\": \"STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC ULTRA+ YRPN25-113, COA UP2560N0420\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC ULTRA+ YRPN25-115,COA UP2590N0420\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30061010\", \"uraian\": \"STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC ULTRA+ YRPN25-115,COA UP2590N0420\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW MC HEART LIFTING YRPN19-126-W,COA HL19100U0420\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30061010\", \"uraian\": \"STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW MC HEART LIFTING YRPN19-126-W,COA HL19100U0420\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILA POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW MC HEART LIFTING YRPN19-126-L,COA HL19100L0420\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30061010\", \"uraian\": \"STERILA POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW MC HEART LIFTING YRPN19-126-L,COA HL19100L0420\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC HI RHINO YRPN19-103-L, COA HR1938L0420\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30061010\", \"uraian\": \"STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC HI RHINO YRPN19-103-L, COA HR1938L0420\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC HI RHINO YRPN19-105L, COA HR1960L0420\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30061010\", \"uraian\": \"STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC HI RHINO YRPN19-105L, COA HR1960L0420\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OCTENINDINE DIHYDROCHLORIDE (BHN BAKU KOSMETIK) COA OTD-00010121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"OCTENINDINE DIHYDROCHLORIDE (BHN BAKU KOSMETIK) COA OTD-00010121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-030941\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-030941\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK),COA GTB-082900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK),COA GTB-082900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-040641\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-040641\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-032321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-032321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-010231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-010231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-050231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-050231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-021531\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-021531\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND JEJU TANGERINE EXTRACT (BHN BAKU KOSMETIK) COA GTUP-T-021910\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND JEJU TANGERINE EXTRACT (BHN BAKU KOSMETIK) COA GTUP-T-021910\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-012621,KFB-L-022241\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-012621,KFB-L-022241\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER(BHN BAKU KOSMETIK) COA MUP-021380\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND MULBERRY ROOT POWDER(BHN BAKU KOSMETIK) COA MUP-021380\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-050231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-050231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-020431\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-020431\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-56A (18KG) BHN BAKU KOSMETIK, COA 103008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-56A (18KG) BHN BAKU KOSMETIK, COA 103008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6028 (16KG) BHN BAKU KOSMETIK, COA 102253\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6028 (16KG) BHN BAKU KOSMETIK, COA 102253\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP-100 (10KG) BHN BAKU KOSMETIK, COA 012843\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSP-100 (10KG) BHN BAKU KOSMETIK, COA 012843\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX MENGNIU UHT MILK (BHN BAKU MAKANAN), COA XW92104270\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX MENGNIU UHT MILK (BHN BAKU MAKANAN), COA XW92104270\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 2AX2104053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 2AX2104053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEVOFLOXACIN HEMIHYDRATE (BHN BAKU OBAT) COA DK21-2104174\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"LEVOFLOXACIN HEMIHYDRATE (BHN BAKU OBAT) COA DK21-2104174\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA 2101402124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA 2101402124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH644311\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH644311\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ISONIAZID USP (BHN BAKU OBAT) COA 21031/INH,21032/INH,21045/INH...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333910\", \"uraian\": \"ISONIAZID USP (BHN BAKU OBAT) COA 21031/INH,21032/INH,21045/INH...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NOREPINEPHRINE BITARTRATE (NORADRENALINE TARTRATE)BHN BAKU OBAT, COA 650104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29379010\", \"uraian\": \"NOREPINEPHRINE BITARTRATE (NORADRENALINE TARTRATE)BHN BAKU OBAT, COA 650104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DULSE PHYTELENE EG745 (BHN BAKU KOSMETIK) COA EG745-210302-GS-B\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"DULSE PHYTELENE EG745 (BHN BAKU KOSMETIK) COA EG745-210302-GS-B\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSEMARY OILY EXTRACT (BHN BAKU KOSMETIK) COA ROO210101-H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROSEMARY OILY EXTRACT (BHN BAKU KOSMETIK) COA ROO210101-H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX ANTI PESPIRANT (BHN BAKU KOSMETIK) COA ANTS200903\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX ANTI PESPIRANT (BHN BAKU KOSMETIK) COA ANTS200903\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIE191102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIE191102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-210202-GS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-210202-GS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-201102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-201102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210303\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210303\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210304\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210304\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210304\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210304\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202104-042\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35040000\", \"uraian\": \"SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202104-042\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512116\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47069200\", \"uraian\": \"SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512116\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW92103407\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 C (BHN BAKU MAKANAN) COA XW92103407\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G(BHN BAKU MAKANAN) COA UT20090126\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G(BHN BAKU MAKANAN) COA UT20090126\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL ,20KG PAIL PE(BHN BAKU MAKANAN) COA TL02009114\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL ,20KG PAIL PE(BHN BAKU MAKANAN) COA TL02009114\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12102024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12102024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2005055,UEB2005063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2005055,UEB2005063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) BHN BAKU SUPLEMEN, COA UT21010203\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G(TOCO) BHN BAKU SUPLEMEN, COA UT21010203\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL02009114\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL02009114\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92103202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"V003400 (BHN BAKU MAKANAN) COA XW92103202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20090126\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20090126\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT21010203\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT21010203\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM REGULAR GRADE(BHN BAKU OBAT) COA 2103378,3310,4458,4487,4534\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331900\", \"uraian\": \"METAMIZOLE SODIUM REGULAR GRADE(BHN BAKU OBAT) COA 2103378,3310,4458,4487,4534\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB21010283\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB21010283\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE DOLCE (BHN BAKU KOSMETIK) COA S344/19\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE DOLCE (BHN BAKU KOSMETIK) COA S344/19\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE 11T (BHN BAKU KOSMETIK) COA S336/20, S50/21\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE 11T (BHN BAKU KOSMETIK) COA S336/20, S50/21\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE (R) VELLUTO (BHN BAKU KOSMETIK) COA S294/19\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE (R) VELLUTO (BHN BAKU KOSMETIK) COA S294/19\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 270121,091020,161020,130121,141020,150121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 270121,091020,161020,130121,141020,150121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 00318, 00319,00325,00331,00402,00415\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 00318, 00319,00325,00331,00402,00415\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC19321T\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101990\", \"uraian\": \"SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC19321T\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 100-C08-10KG KA 10KG KA (BHN BAKU KOSMETIK) COA 1565217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 100-C08-10KG KA 10KG KA (BHN BAKU KOSMETIK) COA 1565217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 120 -CO8- 10KG KA (BHN BAKU KOSMETIK) COA 1564902\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 120 -CO8- 10KG KA (BHN BAKU KOSMETIK) COA 1564902\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 940-C08- 10KG KA (BHN BAKU KOSMETIK) COA 1560341\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 940-C08- 10KG KA (BHN BAKU KOSMETIK) COA 1560341\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010-C08-10KG KA (BHN BAKU KOSMETIK) COA 1566741\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010-C08-10KG KA (BHN BAKU KOSMETIK) COA 1566741\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIDIN DO-C08-10 KG KA (BHN BAKU KOSMETIK) COA 1561276\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIDIN DO-C08-10 KG KA (BHN BAKU KOSMETIK) COA 1561276\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 10-C08-10KG KA (BHN BAKU KOSMETIK) COA 1566737\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 10-C08-10KG KA (BHN BAKU KOSMETIK) COA 1566737\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50-C07- 10KG KA (BHN BAKU KOSMETIK) COA 1565251\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50-C07- 10KG KA (BHN BAKU KOSMETIK) COA 1565251\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50-C07-10KG KA (BHN BAKU KOSMETIK) COA 1565251\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50-C07-10KG KA (BHN BAKU KOSMETIK) COA 1565251\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 720-C08- 10KG KA (BHN BAKU KOSMETIK) COA 1565775\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 720-C08- 10KG KA (BHN BAKU KOSMETIK) COA 1565775\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1075077\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1075077\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2248533\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2248533\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2248533\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2248533\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2260443\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2260443\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0314230\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0314230\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0281167\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0281167\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0216774\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0216774\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0281167\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0281167\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0281167\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0281167\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-A-0100221, S-A-0200421\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334910\", \"uraian\": \"DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-A-0100221, S-A-0200421\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0034088\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0034088\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-PANTHENOL 50L ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02006633\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL-PANTHENOL 50L ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02006633\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE0666638,VE00697476,VE00697477\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"AMPHISOL K (BHN BAKU KOSMETIK) COA VE0666638,VE00697476,VE00697477\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02002807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02002807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50,20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02101010, UE02101011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50,20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02101010, UE02101011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02010119\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02010119\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02002807,TL02006812\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02002807,TL02006812\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02010119\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02010119\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX, 25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0919030010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX, 25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0919030010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INOSITOL (BHN BAKU OBAT) COA 202104060, 202104061, 202104062\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"INOSITOL (BHN BAKU OBAT) COA 202104060, 202104061, 202104062\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 2104007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"ACESULFAME K (BHN BAKU OBAT) COA 2104007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LISINOPRIL DIHYDRATE (BHN BAKU OBAT) COA C5170-21-004R\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"LISINOPRIL DIHYDRATE (BHN BAKU OBAT) COA C5170-21-004R\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA 8MT2104120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30032000\", \"uraian\": \"STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA 8MT2104120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP(BHN BAKU OBAT) COA 102102012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"BARCROFT TM AL HYD GEL VISCO-9, USP(BHN BAKU OBAT) COA 102102012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 121910046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28365010\", \"uraian\": \"VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 121910046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET), COA DT715593\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX RED (BHN BAKU PEWARNA TABLET), COA DT715593\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET), COA DT715591\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPAGLOS WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET), COA DT715591\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE BLACK (BHN BAKU PEWARNA TABLET) COA DT714962\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE BLACK (BHN BAKU PEWARNA TABLET) COA DT714962\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE ,25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ10116003, UQ10116004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE ,25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ10116003, UQ10116004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02010107,UE02102010,UE02102011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02010107,UE02102010,UE02102011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT21020053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT21020053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20100030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20100030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT21031044,45,46\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT21031044,45,46\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT21010006, UT21010007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT21010006, UT21010007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYPOL 980 (20KG) BAHAN BAKU KOSMETIK, COA 11521001,11521002,11521003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39069099\", \"uraian\": \"ACRYPOL 980 (20KG) BAHAN BAKU KOSMETIK, COA 11521001,11521002,11521003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FEF CETRIMIDE PH EUR (BHN BAKU KOSMETIK) COA LX0D327\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"FEF CETRIMIDE PH EUR (BHN BAKU KOSMETIK) COA LX0D327\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0336852\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0336852\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0293259\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0293259\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1067935,1102066\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1067935,1102066\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0343102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0343102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1074504\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1074504\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT EXTRACT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1081466\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALT EXTRACT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1081466\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1068716\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MYCOPLASMA BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1068716\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0322946\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0322946\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0273380\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SIMMONS CITRATE AGAR BBL 500G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0273380\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0335663\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0335663\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0062865\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0062865\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0287286\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0287286\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0350960\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0350960\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0272335\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0272335\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST CARBON BASE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0038689\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE YEAST CARBON BASE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0038689\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1061373\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1061373\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01D034M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01D034M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0315100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0315100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1042613\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1042613\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MARINE BROTH 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1074489\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MARINE BROTH 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1074489\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0280297\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0280297\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218592\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218592\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1033932\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1033932\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0286355\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0286355\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1019596\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1019596\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0315698\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0315698\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0286434\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0286434\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1026705\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1026705\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1007102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1007102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1007107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1007107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0283759\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0283759\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1040275\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1040275\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0063472,1033190\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0063472,1033190\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1067935\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1067935\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283868\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283868\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0350026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0350026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1047444\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1047444\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0300743\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0300743\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0335781\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0335781\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1068134,1081518\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1068134,1081518\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0343102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0343102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0365805\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0365805\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1026614\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1026614\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0282579\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0282579\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0293747\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0293747\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0350031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0350031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0286569\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0286569\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0350990\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0350990\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0322946\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0322946\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1007134\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1007134\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1005238,1074483\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1005238,1074483\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1026627\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1026627\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFER PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0322897\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BUFFER PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0322897\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0282615\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0282615\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0293248\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0293248\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1042590\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1042590\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RVS SOY BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1068885\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RVS SOY BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1068885\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1025909\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE STERILE RODAC EMPTY 65X15 MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1025909\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0315698\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0315698\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1068885\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1068885\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1025115\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1025115\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1033932\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE STERILE RODAC EMPTY 65X15 MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1033932\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02D083M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02D083M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2106836\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2106836\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-PA-C AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0351056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M-PA-C AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0351056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000050455\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000050455\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA P112 180 (BHN BAKU OBAT) COA 0000050455, 456\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA P112 180 (BHN BAKU OBAT) COA 0000050455, 456\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NECTAR DE MATCHA FEMA P114 6 (BHN BAKU KOSMETIK) COA 0000051589\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"NECTAR DE MATCHA FEMA P114 6 (BHN BAKU KOSMETIK) COA 0000051589\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L GLUTATHIONE REDUCED (BHN BAKU MAKANAN) COA B210218\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"L GLUTATHIONE REDUCED (BHN BAKU MAKANAN) COA B210218\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 110920/006689\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 110920/006689\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL210513, MCCPOL210517)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29094900\", \"uraian\": \"MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL210513, MCCPOL210517)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP837544\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP837544\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP837540\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP837540\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD&C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP839968:BA7461\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD&C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP839968:BA7461\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D & C YELLOW #10 AL 15PCT-20PCT (BHN BAKU PEWARNA TABLET) COA WP831857:BA3853\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"D & C YELLOW #10 AL 15PCT-20PCT (BHN BAKU PEWARNA TABLET) COA WP831857:BA3853\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD & C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP839968:BA7461\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD & C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP839968:BA7461\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD & C BLUE #1/BRILLIANT BLUE (BHN BAKU PEWARNA TABLET) COA WP840329:BA7694\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD & C BLUE #1/BRILLIANT BLUE (BHN BAKU PEWARNA TABLET) COA WP840329:BA7694\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL (BHN BAKU UTK PEWARNA TABLET) COA D011K4QL01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV HYDROXYPROPYL (BHN BAKU UTK PEWARNA TABLET) COA D011K4QL01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELOIL SC (BHN BAKU OBAT) COA 184015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELOIL SC (BHN BAKU OBAT) COA 184015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRANSCUTOL P (BHN BAKU OBAT) COA 184290\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TRANSCUTOL P (BHN BAKU OBAT) COA 184290\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELUCIRE 48/16 PELLETS (BAHAN BAKU OBAT) COA 185000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELUCIRE 48/16 PELLETS (BAHAN BAKU OBAT) COA 185000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HG34130,HG34273,HG34322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34029099\", \"uraian\": \"MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HG34130,HG34273,HG34322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GLICLAZIDE (BHN BAKU OBAT) COA 2040001414, 2140000857\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"GLICLAZIDE (BHN BAKU OBAT) COA 2040001414, 2140000857\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TREHALOSE (BHN BAKU MAKANAN) COA 20210429\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29400000\", \"uraian\": \"TREHALOSE (BHN BAKU MAKANAN) COA 20210429\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP21043214/XP21044670, XP21043215/XP21044671\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP21043214/XP21044670, XP21043215/XP21044671\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 2130037, 2150638, 2150725\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"PARACETAMOL (BHN BAKU OBAT) COA 2130037, 2150638, 2150725\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEFENAMIC ACID POWDER (BHN BAKU OBAT) COA MA2105007 S/D MA2105016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"MEFENAMIC ACID POWDER (BHN BAKU OBAT) COA MA2105007 S/D MA2105016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 21S0080501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 21S0080501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 21S0080501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 21S0080501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 32347/M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 32347/M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GREEN TEA DRY DEC.EX/PHOSPHOL (BHN BAKU SUPLEMEN) COA 19S0269705\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"GREEN TEA DRY DEC.EX/PHOSPHOL (BHN BAKU SUPLEMEN) COA 19S0269705\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH643962\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH643962\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH643963\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH643963\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE PURPLE (BHN BAKU PEWARNA TABLET) COA SH643973\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE PURPLE (BHN BAKU PEWARNA TABLET) COA SH643973\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH643974\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH643974\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH643990\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH643990\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH643975\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH643975\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH644001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH644001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH643991\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH643991\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH643976\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH643976\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH644437\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH644437\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH643992\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH643992\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH644520\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH644520\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA065214,064217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA065214,064217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA ROA063217, ROA063216,064212,059216\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA ROA063217, ROA063216,064212,059216\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID 325MESH, 20KG BOAIPO (BAHAN BAKU SUPLEMEN)COA HPD2104048,62,68,74,80,83,89...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID 325MESH, 20KG BOAIPO (BAHAN BAKU SUPLEMEN)COA HPD2104048,62,68,74,80,83,89...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID DC 97PCT, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG2104001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID DC 97PCT, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG2104001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT MINERAL PREMIX FOR MATERNAL BISCUIT (BHN BAKU MAKANAN), COA XW92104279\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VIT MINERAL PREMIX FOR MATERNAL BISCUIT (BHN BAKU MAKANAN), COA XW92104279\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MINERAL PREMIX MILK POWDER FOR ADULTS V2 (BHN BAKU MAKANAN) COA XW92104280\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"MINERAL PREMIX MILK POWDER FOR ADULTS V2 (BHN BAKU MAKANAN) COA XW92104280\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FOLIC AOAC MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9141510\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE FOLIC AOAC MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9141510\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FOLIC ACID ASSAY MEDIUM 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1097843\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE FOLIC ACID ASSAY MEDIUM 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1097843\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD81 FITC JS-81 100TST (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0349337\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD81 FITC JS-81 100TST (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0349337\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD63 PE H5C6 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065061\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD63 PE H5C6 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065061\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD9 PERCP-CY5.5 M-L13 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1075165\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD9 PERCP-CY5.5 M-L13 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1075165\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU SOLBI PTEIN CBA BUF KIT 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1019589\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU SOLBI PTEIN CBA BUF KIT 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1019589\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU TGF BTA1 CBA FLEX SET B6 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0353298\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU TGF BTA1 CBA FLEX SET B6 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0353298\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU IL-8 CBA FLEX SET A9 100TST (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0115228\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU IL-8 CBA FLEX SET A9 100TST (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0115228\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU G-CSF CBA FLEX SET C8 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0169301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU G-CSF CBA FLEX SET C8 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0169301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU ANGIOGENIN CBA FLEX SET C4 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0101829\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU ANGIOGENIN CBA FLEX SET C4 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0101829\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU VEGF CBA FLEX SET B8 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0188486\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU VEGF CBA FLEX SET B8 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0188486\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU BASIC FGF CBA FLEX SET C5 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1055901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU BASIC FGF CBA FLEX SET C5 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1055901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU IL-10 CBA FLEX SET B7 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0136247\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU IL-10 CBA FLEX SET B7 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0136247\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU IL-6 CBA FLEX SET A7 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0234057-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU IL-6 CBA FLEX SET A7 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0234057-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU TH1/TH2/TH17 CBA KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0209267\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU TH1/TH2/TH17 CBA KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0209267\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FOLIC AOAC MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9141510\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE FOLIC AOAC MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9141510\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0226415\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0226415\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0128385\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS OGAWA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0128385\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1069001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1069001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL ISOVILATEX ENRICHMENT 10ML 5 EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1100739\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL ISOVILATEX ENRICHMENT 10ML 5 EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1100739\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTISERUM FACTOR 12 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0240788\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTISERUM FACTOR 12 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0240788\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTISERUM FACTOR 9 GROUP D (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0156280\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTISERUM FACTOR 9 GROUP D (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0156280\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTISERUM D 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0122003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL H ANTISERUM D 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0122003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0128384\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0128384\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0219127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0219127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0328195\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0328195\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0259332,1097818\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PANTOTHENATE ASSAY MED 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0259332,1097818\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1014897\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1014897\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0037338\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0037338\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1040296\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1040296\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 107114\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 107114\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1021706\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1021706\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1069019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1069019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FOLIC ACID ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1097843\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE FOLIC ACID ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1097843\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0282558,1048171\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0282558,1048171\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0097374\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0097374\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065943\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065943\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122100906, 122100907\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122100906, 122100907\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARACETAMOL USP (BHN BAKU OBAT) COA 2130044,2130047,2150699\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"PARACETAMOL USP (BHN BAKU OBAT) COA 2130044,2130047,2150699\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHAMBUTOL (BHN BAKU OBAT) COA N1020460,461,579,580,882 S/D886,1021148,149,150,433,434,435\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221910\", \"uraian\": \"ETHAMBUTOL (BHN BAKU OBAT) COA N1020460,461,579,580,882 S/D886,1021148,149,150,433,434,435\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 020221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25070000\", \"uraian\": \"KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 020221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNE BUSTERS (BHN BAKU KOSMETIK),COA 210386\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNE BUSTERS (BHN BAKU KOSMETIK),COA 210386\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK),COA 210884\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK),COA 210884\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IZAYOI (BHN BAKU KOSMETIK), COA 210640\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"IZAYOI (BHN BAKU KOSMETIK), COA 210640\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONO CHARDY (BHN BAKU KOSMETIK) COA 210561\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"CHRONO CHARDY (BHN BAKU KOSMETIK) COA 210561\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 210442\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 210442\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DICLOFENAC SODIUM USP (BHN BAKU OBAT) COA DFS/11030108,117 S/D 123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"DICLOFENAC SODIUM USP (BHN BAKU OBAT) COA DFS/11030108,117 S/D 123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DICLOFENAC POTASSIUM BP (BHN BAKU OBAT) COA DFK/11020072\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"DICLOFENAC POTASSIUM BP (BHN BAKU OBAT) COA DFK/11020072\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT21010007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT21010007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT21020012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT21020012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO(R) LUTEIN 20PCT SAF,1KG ALUF (BHN BAKU SUPLEMEN) COA UE02007035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO(R) LUTEIN 20PCT SAF,1KG ALUF (BHN BAKU SUPLEMEN) COA UE02007035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT21040054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT21040054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE02104025, 4026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE02104025, 4026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT21030060\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT21030060\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HA00328\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34029099\", \"uraian\": \"MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HA00328\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIFE'S DHA (TM) S35-O100, 5KG ALUF (BHN BAKU SUPLEMEN) COA VY00383107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"LIFE'S DHA (TM) S35-O100, 5KG ALUF (BHN BAKU SUPLEMEN) COA VY00383107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BRB SILICONE OIL DM 100 EP, DRUM 200 KG ( BHN BAKU KOSMETIK) COA B089574\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100020\", \"uraian\": \"BRB SILICONE OIL DM 100 EP, DRUM 200 KG ( BHN BAKU KOSMETIK) COA B089574\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE WHITE (BHN BAKU PEWARNA TABLET) COA WP841862\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE WHITE (BHN BAKU PEWARNA TABLET) COA WP841862\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL A15 PREMIUM LV (BHN BAKU PEWARNA TABLET)COA D180K57021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL A15 PREMIUM LV (BHN BAKU PEWARNA TABLET)COA D180K57021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E5 PREMIUM LV (BHN BAKU PEWARNA TABLET) COA D011K73L01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E5 PREMIUM LV (BHN BAKU PEWARNA TABLET) COA D011K73L01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR (BHN BAKU PEWARNA TABLET)COA D18OKCT003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR (BHN BAKU PEWARNA TABLET)COA D18OKCT003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM (BHN BAKU PEWARNA TABLET)COA D180K2Q001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM (BHN BAKU PEWARNA TABLET)COA D180K2Q001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM CR (BHN BAKU PEWARNA TABLET) COA D180K4K003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM CR (BHN BAKU PEWARNA TABLET) COA D180K4K003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM (BHN BAKU UTK PEWARNA TABLET) COA D180KCJ003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM (BHN BAKU UTK PEWARNA TABLET) COA D180KCJ003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15 PREMIUM CR (BHN BAKU PEWARNA TABLET) COA D180KCT002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15 PREMIUM CR (BHN BAKU PEWARNA TABLET) COA D180KCT002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E15 PREMIUM LV (BHN BAKU PEWARNA TABLET) COA D011K4RL02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E15 PREMIUM LV (BHN BAKU PEWARNA TABLET) COA D011K4RL02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR (BHN BAKU PEWARNA TABLET) COA D180K3O001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR (BHN BAKU PEWARNA TABLET) COA D180K3O001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101851321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA L101851321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103860721\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103860721\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104310821\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104310821\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103150821\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103150821\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLOWLAC (R) 100H (BHN BAKU OBAT) COA L105810921\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"FLOWLAC (R) 100H (BHN BAKU OBAT) COA L105810921\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC(R) 200H (BHN BAKU OBAT) COA L105715019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC(R) 200H (BHN BAKU OBAT) COA L105715019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID S 67 F (BHN BAKU OBAT) COA 576200-2210035/001-006 (6), 576200-2210035/007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232010\", \"uraian\": \"LIPOID S 67 F (BHN BAKU OBAT) COA 576200-2210035/001-006 (6), 576200-2210035/007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFADROXIL MONOHYDRATE (PURIDROX COMPACTED) BHN BAKU OBAT, COA B334726,B334743,B334759\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFADROXIL MONOHYDRATE (PURIDROX COMPACTED) BHN BAKU OBAT, COA B334726,B334743,B334759\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSALITY TM- 1KG (BHN BAKU KOSMETIK) COA 2110201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROSALITY TM- 1KG (BHN BAKU KOSMETIK) COA 2110201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMISOL TRIO TM - 5KG (BHN BAKU KOSMETIK) COA 2030514\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AMISOL TRIO TM - 5KG (BHN BAKU KOSMETIK) COA 2030514\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRO-LIPO TM NEO -5KG (BHN BAKU KOSMETIK) COA 2111902\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PRO-LIPO TM NEO -5KG (BHN BAKU KOSMETIK) COA 2111902\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRO-LIPO TM NEO- 5KG (BHN BAKU KOSMETIK) COA 2109501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PRO-LIPO TM NEO- 5KG (BHN BAKU KOSMETIK) COA 2109501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 210318\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 210318\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 210205\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 210205\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 210302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 210302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 210226\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"OILESS'CITY TM (BHN BAKU KOSMETIK) COA 210226\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 210215\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33012990\", \"uraian\": \"AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 210215\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 210226, 210324\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"OILESS'CITY TM (BHN BAKU KOSMETIK) COA 210226, 210324\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 20210511\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25081000\", \"uraian\": \"BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 20210511\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 11052021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25081000\", \"uraian\": \"BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 11052021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU KOSMETIK) COA QZ11201204\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU KOSMETIK) COA QZ11201204\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02008637\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02008637\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0321050319,320,321,322,323\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0321050319,320,321,322,323\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0220040045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0220040045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21020044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21020044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0220040045, 61\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0220040045, 61\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21020044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21020044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001594056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SLX (BHN BAKU KOSMETIK) COA 0001594056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02006812\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02006812\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES2007442, ES2008443\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"ALLANTOIN (BHN BAKU KOSMETIK) COA ES2007442, ES2008443\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF21004047\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF21004047\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001594056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SLX (BHN BAKU KOSMETIK) COA 0001594056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0221040010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0221040010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL (R)HS, 20KG BOX (BHN BAKU KOSMETIK) COA HS5800321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL (R)HS, 20KG BOX (BHN BAKU KOSMETIK) COA HS5800321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DURALAC H ,25KH BOX (BHN BAKU OBAT) COA LC 008-21-805\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"DURALAC H ,25KH BOX (BHN BAKU OBAT) COA LC 008-21-805\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799038785M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799038785M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830018825M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL TM (BHN BAKU KOSMETIK) COA 830018825M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769018735M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769018735M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANACHRYS 2B PF (BHN BAKU KOSMETIK) COA 793058829L\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LANACHRYS 2B PF (BHN BAKU KOSMETIK) COA 793058829L\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANACHRYS 2B PF (BHN BAKU KOSMETIK) COA 793058976M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LANACHRYS 2B PF (BHN BAKU KOSMETIK) COA 793058976M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MINIPORYL TM (BHN BAKU KOSMETIK) COA 832018916M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MINIPORYL TM (BHN BAKU KOSMETIK) COA 832018916M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) COA 2020816\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTENSO TM (BHN BAKU KOSMETIK) COA 2020816\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) COA 2021116\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTENSO TM (BHN BAKU KOSMETIK) COA 2021116\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769018914M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769018914M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782018592M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK) COA 782018592M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799038785M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799038785M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GREYVERSE TM (BHN BAKU KOSMETIK) COA 833018113L\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GREYVERSE TM (BHN BAKU KOSMETIK) COA 833018113L\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP21054003/XP21054005, XP21054004/XP21054006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP21054003/XP21054005, XP21054004/XP21054006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFADROXIL MONOHYDRATE (PURIDROX COMPACTED) BHN BAKU OBAT, COA B340278, B340279\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFADROXIL MONOHYDRATE (PURIDROX COMPACTED) BHN BAKU OBAT, COA B340278, B340279\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFADROXIL MONOHYDRATE (PURIDROX POWDER) COA B334749\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFADROXIL MONOHYDRATE (PURIDROX POWDER) COA B334749\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN ) COA MTP12221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN ) COA MTP12221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXCIPIENT 0/13 SODIUM BICARBONATE(B.BAKU SUPLEMEN)COA MTP06621,SAMPLE NOCOMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXCIPIENT 0/13 SODIUM BICARBONATE(B.BAKU SUPLEMEN)COA MTP06621,SAMPLE NOCOMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (B.BAKU SUPLEMEN) COA MTP07821,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA API 0/13 SODIUM BICARBONATE (B.BAKU SUPLEMEN) COA MTP07821,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT20090059,UT21030060\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT20090059,UT21030060\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU MAKANAN) COA UT21030207\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU MAKANAN) COA UT21030207\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT21030207, UT21030208\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT21030207, UT21030208\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT21031052, UT21031053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT21031052, UT21031053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02102011, 2012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02102011, 2012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02103169\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02103169\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE02102011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE02102011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT21020011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT21020011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT20090059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT20090059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT21020053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT21020053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA EXTRACT 95PCT ( BHN BAKU KOSMETIK), COA GKP 21023 EOU\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"CENTELLA ASIATICA EXTRACT 95PCT ( BHN BAKU KOSMETIK), COA GKP 21023 EOU\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NORIT SX SUPER E 153 (BHN BAKU KOSMETIK) COA 4978845\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38021000\", \"uraian\": \"NORIT SX SUPER E 153 (BHN BAKU KOSMETIK) COA 4978845\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWDER FORM CATCOL C135(L) GRADE(B.BAKU KOSMETIK) COA 299/21\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GUAR GUM TREATED AND PULVERISED IN POWDER FORM CATCOL C135(L) GRADE(B.BAKU KOSMETIK) COA 299/21\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20120026, UT20120027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20120026, UT20120027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20120027, UT20120029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20120027, UT20120029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20120082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20120082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE ,25KG BOX(BHN BAKU SUPLEMEN) COA TL02011055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE ,25KG BOX(BHN BAKU SUPLEMEN) COA TL02011055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02011055, TL02011063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02011055, TL02011063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02012939\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02012939\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN), COA UQ01110816\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN), COA UQ01110816\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT20090126\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT20090126\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE02002011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE02002011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT20100039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT20100039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT20100006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT20100006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL02009114\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL02009114\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN), COA UQ00913475\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN), COA UQ00913475\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB21020014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB21020014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB21020014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB21020014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ01213535\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ01213535\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20090126\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20090126\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ00702010, UQ00702011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ00702010, UQ00702011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D011K2JL01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D011K2JL01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM HYDROXYPROPYL (BHN BAKU UTK PEWARNA TABLET) COA D180KCJ003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM HYDROXYPROPYL (BHN BAKU UTK PEWARNA TABLET) COA D180KCJ003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL (BHN BAKU PEWARNA TABLET)COA D180KCP002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM HYDROXYPROPYL (BHN BAKU PEWARNA TABLET)COA D180KCP002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D180K36002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D180K36002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20110309,UT20120343\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20110309,UT20120343\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ01110816,UQ10110501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ01110816,UQ10110501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE02005016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE02005016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ10110507\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ10110507\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ10110501, UQ10110507\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ10110501, UQ10110507\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE02005016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE02005016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN), COA UT20100006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN), COA UT20100006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ10110507\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ10110507\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00702010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00702010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT21020039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT21020039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL-ACETATE, 20KG JUG (BHN BAKU SUPLEMEN) COA XH20201101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL-ACETATE, 20KG JUG (BHN BAKU SUPLEMEN) COA XH20201101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL-ACETATE, 20KG JUG (BHN BAKU SUPLEMEN) COA XH20201101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL-ACETATE, 20KG JUG (BHN BAKU SUPLEMEN) COA XH20201101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN), COA UQ01213535\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN), COA UQ01213535\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL-ACETATE, 20KG JUG (BHN BAKU SUPLEMEN) COA XH20201101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL-ACETATE, 20KG JUG (BHN BAKU SUPLEMEN) COA XH20201101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL-ACETATE,20KG JUG (BHN BAKU SUPLEMEN) COA XH20201101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL-ACETATE,20KG JUG (BHN BAKU SUPLEMEN) COA XH20201101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU MAKANAN) COA UT20120343\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU MAKANAN) COA UT20120343\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11210115\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11210115\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20090126, UT20100127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20090126, UT20100127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92104205, XW92104206\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"V003400 (BHN BAKU MAKANAN) COA XW92104205, XW92104206\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU MAKANAN) COA UT20110309\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU MAKANAN) COA UT20110309\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20100127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20100127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL02009114\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL02009114\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL02009114\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL02009114\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT20100045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT20100045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11201204\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11201204\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN), COA UT20100115\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN), COA UT20100115\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20110309\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20110309\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030067\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030067\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) BHN BAKU SUPLEMEN, COA UT21010203\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G(TOCO) BHN BAKU SUPLEMEN, COA UT21010203\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20040050\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20040050\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20090065,UT20120082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20090065,UT20120082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN), COA UEB2005063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN), COA UEB2005063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00702010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00702010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ01110816\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ01110816\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00813472\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00813472\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20060041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20060041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB2003005427\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB2003005427\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20060041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20060041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00813472\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00813472\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12102024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12102024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT21010203\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT21010203\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20060041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20060041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00913475\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00913475\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT21010009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT21010009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ10110511\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ10110511\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02012937,939,944,952\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02012937,939,944,952\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02012952\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02012952\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE 25KG BOX (BHN BAKU SUPLEMN) COA TL02012952\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE 25KG BOX (BHN BAKU SUPLEMN) COA TL02012952\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325CWS/A (BHN BAKU SUPLEMEN) COA UT21010009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325CWS/A (BHN BAKU SUPLEMEN) COA UT21010009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT21020039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT21020039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU MAKANAN) COA UT20120343\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU MAKANAN) COA UT20120343\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ10110507\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ10110507\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL02012952\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL02012952\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL02012952\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL02012952\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VINH WELLNESS COLLAGEN (FISH COLLAGEN PEPTIDES) BHN BAKU MAKANAN,COA 0281\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35040000\", \"uraian\": \"VINH WELLNESS COLLAGEN (FISH COLLAGEN PEPTIDES) BHN BAKU MAKANAN,COA 0281\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2104001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28352510\", \"uraian\": \"DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2104001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AESTHEFILL V200 (POLYLACTIC ACID) ,COA AF210403\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"AESTHEFILL V200 (POLYLACTIC ACID) ,COA AF210403\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AESTHEFILL V200 (POLYLASTIC ACID) COA AF210403, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"AESTHEFILL V200 (POLYLASTIC ACID) COA AF210403, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RANITIDINE HCL USP (BHN BAKU OBAT) COA RH 302 04 21\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29321900\", \"uraian\": \"RANITIDINE HCL USP (BHN BAKU OBAT) COA RH 302 04 21\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DICLOFENAC SODIUM USP (BHN BAKU OBAT) COA DFS/11040130\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"DICLOFENAC SODIUM USP (BHN BAKU OBAT) COA DFS/11040130\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METOCLOPRAMIDE HCL (BHN BAKU OBAT) COA M-2103413\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"METOCLOPRAMIDE HCL (BHN BAKU OBAT) COA M-2103413\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SOYA LECITHIN (BHN BAKU MAKANAN) COA TY2210428-20\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232010\", \"uraian\": \"SOYA LECITHIN (BHN BAKU MAKANAN) COA TY2210428-20\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA133217,ROA138212\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA133217,ROA138212\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH644523\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH644523\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH644516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH644516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH644525\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH644525\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH643475\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH643475\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH644517\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH644517\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH644518\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH644518\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH644519\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH644519\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH644520\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH644520\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH644524\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH644524\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH644049\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH644049\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH644546\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH644546\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB RED (BHN BAKU PEWARNA TABLET) COA SH644545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB RED (BHN BAKU PEWARNA TABLET) COA SH644545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH644526\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH644526\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH642167\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH642167\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH644522\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH644522\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND GREEN (BHN BAKU PEWARNA TABLET) COA SH644527\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND GREEN (BHN BAKU PEWARNA TABLET) COA SH644527\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH644544\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH644544\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH644598\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH644598\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0321050325, 0321050326\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0321050325, 0321050326\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU KOSMETIK) COA QZ11201205\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU KOSMETIK) COA QZ11201205\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0321050326,327,328\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0321050326,327,328\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000194526, 194527\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000194526, 194527\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT21021018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT21021018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA 0519070225\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA 0519070225\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA 0519070225\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA 0519070225\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02006812\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02006812\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA 0519070225\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA 0519070225\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02005016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE02005016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0720010029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0720010029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001594056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SLX (BHN BAKU KOSMETIK) COA 0001594056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL (R)HS, 20KG BOX (BHN BAKU KOSMETIK) COA HS5800321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL (R)HS, 20KG BOX (BHN BAKU KOSMETIK) COA HS5800321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0821010124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0821010124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92104191\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92104191\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA SEN\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) COA SEN\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS KR-30 (BHN BAKU KOSMETIK) COA SDE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS KR-30 (BHN BAKU KOSMETIK) COA SDE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK-GB (BHN BAKU KOSMETIK) COA SDF\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK-GB (BHN BAKU KOSMETIK) COA SDF\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SCD\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SCD\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6028 (16KG) BHN BAKU KOSMETIK, COA 103254, 103254\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6028 (16KG) BHN BAKU KOSMETIK, COA 103254, 103254\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP-100 (10KG) BHN BAKU KOSMETIK, COA 101851\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSP-100 (10KG) BHN BAKU KOSMETIK, COA 101851\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN VIRGIN COLD PRESSED DEODORISED ORGANIC OIL XNE112(B.BAKU KOSMETIK) COA ARHVD210503-SICBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ARGAN VIRGIN COLD PRESSED DEODORISED ORGANIC OIL XNE112(B.BAKU KOSMETIK) COA ARHVD210503-SICBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210304\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210304\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210505\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210505\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210304\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210304\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL02104385\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL02104385\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ10217005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ10217005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 1AX2105029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 1AX2105029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2021040501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2021040501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2021040501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2021040501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453829622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453829622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M-31.0PCT (BHN BAKU OBAT) COA 102129026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MG HYD PASTE USP TYPE M-31.0PCT (BHN BAKU OBAT) COA 102129026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BRB SILICONE OIL DM 100 EP ( BHN BAKU KOSMETIK) COA B089574\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100020\", \"uraian\": \"BRB SILICONE OIL DM 100 EP ( BHN BAKU KOSMETIK) COA B089574\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOPROFEN (BHN BAKU OBAT) COA.197729\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29183000\", \"uraian\": \"KETOPROFEN (BHN BAKU OBAT) COA.197729\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 11520521,11540521,11560521,11610521..\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 11520521,11540521,11560521,11610521..\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLOPURINOL USP (BHN BAKU OBAT) COA 20100AY3ARII, 21024AY3ARII\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"ALLOPURINOL USP (BHN BAKU OBAT) COA 20100AY3ARII, 21024AY3ARII\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANTOPRAZOLE SODIUM (STERILE) BAHAN BAKU OBAT, COA SI/PPZ/00500521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"PANTOPRAZOLE SODIUM (STERILE) BAHAN BAKU OBAT, COA SI/PPZ/00500521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OMEPRAZOLE SODIUM STERILE (BAHAN BAKU OBAT), COA SI/OPZ/00090521,00100521,00110521,00120521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"OMEPRAZOLE SODIUM STERILE (BAHAN BAKU OBAT), COA SI/OPZ/00090521,00100521,00110521,00120521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID PPL-600 (BHN BAKU OBAT) COA 577200-2210229/005-006(2)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232010\", \"uraian\": \"LIPOID PPL-600 (BHN BAKU OBAT) COA 577200-2210229/005-006(2)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYPROHEPTADINE HCL (BHN BAKU OBAT) COA CYP/03201003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"CYPROHEPTADINE HCL (BHN BAKU OBAT) COA CYP/03201003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP(BHN BAKU OBAT) COA 102102012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"BARCROFT TM AL HYD GEL VISCO-9, USP(BHN BAKU OBAT) COA 102102012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M-31.0PCT (BHN BAKU OBAT) COA 102129026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MG HYD PASTE USP TYPE M-31.0PCT (BHN BAKU OBAT) COA 102129026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0010700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILYBIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0010700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VALERIAN D.H.E> 0.8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 21B0032600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VALERIAN D.H.E> 0.8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 21B0032600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IVY DRY HYDR EXTR 10PCT HPLC (BAHAN BAKU SUPLEMEN) COA 20B0128900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"IVY DRY HYDR EXTR 10PCT HPLC (BAHAN BAKU SUPLEMEN) COA 20B0128900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PASSION FLOWER D.H.E 4PCT (BAHAN BAKU SUPLEMEN) COA 21B0049900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PASSION FLOWER D.H.E 4PCT (BAHAN BAKU SUPLEMEN) COA 21B0049900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 20B0176400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 20B0176400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 20B0176500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 20B0176500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0039000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0039000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0039100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0039100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) COA 2103116\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTENSO TM (BHN BAKU KOSMETIK) COA 2103116\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) COA 2021116\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTENSO TM (BHN BAKU KOSMETIK) COA 2021116\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT TM 09 (BHN BAKU KOSMETIK) COA 784019061M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"TYROSTAT TM 09 (BHN BAKU KOSMETIK) COA 784019061M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 702018037K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ABYSSINE 657 (BHN BAKU KOSMETIK) COA 702018037K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829018970M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"B-WHITE TM (BHN BAKU KOSMETIK) COA 829018970M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 3383001-P1K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL TM (BHN BAKU KOSMETIK) COA 3383001-P1K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019143M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019143M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708200063, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708200063, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL ZX, 0,500 KG PAIL (BHN BAKU KOSMETIK) COA 191211012,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL ZX, 0,500 KG PAIL (BHN BAKU KOSMETIK) COA 191211012,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTIZOXIME SODIUM (BHN BAKU OBAT) COA A600100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTIZOXIME SODIUM (BHN BAKU OBAT) COA A600100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTAZIDIME BUFFERED (BHN BAKU OBAT) COA A200200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTAZIDIME BUFFERED (BHN BAKU OBAT) COA A200200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0293259\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0293259\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0272801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0272801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0280297\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0280297\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B02D014M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B02D014M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0314278\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0314278\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G(MEDIA U/PENGEMBANGAN MIKRO ORGANISME)BATCH0343334,1026627\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G(MEDIA U/PENGEMBANGAN MIKRO ORGANISME)BATCH0343334,1026627\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0286434\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE AGAR 500G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0286434\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1007107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1007107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1040275\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1040275\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0063472,0335092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0063472,0335092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0220229\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0220229\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0335781\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0335781\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1042590\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1042590\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1005238\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1005238\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1026705\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1026705\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0322897\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0322897\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335617\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335617\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0282615\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0282615\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0300743\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0300743\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0293248\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0293248\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1068161\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1068161\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0365805\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0365805\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0294089\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0294089\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1026614\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1026614\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0282579\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0282579\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0140282,0350031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0140282,0350031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0272801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0272801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1026627\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1026627\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1040275\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1040275\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1081599\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1081599\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1097255\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1097255\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2106836\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2106836\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA U/PENGEMBANGAN MIKRO ORGANISME)BATCH 0336852,0365693\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA U/PENGEMBANGAN MIKRO ORGANISME)BATCH 0336852,0365693\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR STRIPS GASPAK DRY ABAEROBIC(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1078783\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"INDICATOR STRIPS GASPAK DRY ABAEROBIC(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1078783\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH1020444,1025115\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH1020444,1025115\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1081599\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1081599\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0280297\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0280297\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1026705\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1026705\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0365805\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0365805\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0220229\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0220229\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0217346\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0217346\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0322897\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0322897\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0365816\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0365816\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0293259\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0293259\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0293747\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0293747\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1081535\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1081535\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1078740\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1078740\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1025737\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1025737\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEPTOSPIRA MED BASE EMJH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1097873\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LEPTOSPIRA MED BASE EMJH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1097873\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA BROTH BASE FREY 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9353217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MYCOPLASMA BROTH BASE FREY 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9353217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0350031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0350031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1068885\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1068885\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1007102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1007102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1047444\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1047444\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0365716\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0365716\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1081510\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1081510\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MIO MEDIUM 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0091372\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MIO MEDIUM 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0091372\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 0280297\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 0280297\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1074496\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1074496\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BIGGY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1047463\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BIGGY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1047463\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1048209\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1048209\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0343861\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0343861\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MED 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9112920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MED 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9112920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0272335\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0272335\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1111035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1111035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0294367\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0294367\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PSEUDOMONAS AGAR F 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0048042\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PSEUDOMONAS AGAR F 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0048042\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE KF STREPTOCOCCUS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0321982\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE KF STREPTOCOCCUS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0321982\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GASPAK EZ LARGE INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7358630010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"GASPAK EZ LARGE INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7358630010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE STARCH AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037569\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DEXTROSE STARCH AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037569\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0315100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0315100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ISP MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0063474\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ISP MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0063474\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ISP MEDIUM 4 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239308\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ISP MEDIUM 4 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239308\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PSEUDOMONAS ISOLATION AG 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9129525\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PSEUDOMONAS ISOLATION AG 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9129525\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1026113\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1026113\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1089773\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1089773\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1071350\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1071350\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA U/PENGEMBANGAN MIKROORGANISME)BATCH1098990,1111790\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA U/PENGEMBANGAN MIKROORGANISME)BATCH1098990,1111790\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 1089767\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 1089767\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE ,25KG BOX/ALU (BHN BAKU MAKANAN MANUSIA) COA UQ10216026, UQ10216027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE ,25KG BOX/ALU (BHN BAKU MAKANAN MANUSIA) COA UQ10216026, UQ10216027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN MANUSIA) COA UT21010004,UT21030025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN MANUSIA) COA UT21010004,UT21030025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G(TOCO) (BHN BAKU MAKANAN MANUSIA) COA UT21031053, UT21031054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G(TOCO) (BHN BAKU MAKANAN MANUSIA) COA UT21031053, UT21031054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN MANUSIA) COA UQ10216027, UQ10216028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN MANUSIA) COA UQ10216027, UQ10216028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN MANUSIA, COA UT21041057,58,59\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN MANUSIA, COA UT21041057,58,59\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SHEA BUTTHER REFINED (BHN BAKU KOSMETIK) COA 156995\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15159011\", \"uraian\": \"SHEA BUTTHER REFINED (BHN BAKU KOSMETIK) COA 156995\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 156497\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15159011\", \"uraian\": \"AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 156497\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK)COA 042221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK)COA 042221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK),COA BAG-021531\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK),COA BAG-021531\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-011151\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-011151\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-050231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-050231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-461710\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-461710\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012711\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012711\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-030941\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-030941\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND CARBAMIDE (BHN BAKU KOSMETIK) COA U210517\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND CARBAMIDE (BHN BAKU KOSMETIK) COA U210517\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-050231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-050231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-080261\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-080261\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-030941\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-030941\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-030261\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-030261\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-022631\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-022631\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-010411,GTB-082900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-010411,GTB-082900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND YUZU EXTRACT (BHN BAKU KOSMETIK) COA CJUBD-010511\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND YUZU EXTRACT (BHN BAKU KOSMETIK) COA CJUBD-010511\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-030941\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-030941\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0349743\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0349743\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2260443\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2260443\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0281167\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0281167\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1040254\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1040254\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2316462\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2316462\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2316462\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2316462\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2316462\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2316462\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2316462\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2316462\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2316462\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2316462\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2316462\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2316462\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0022270\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0022270\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIFCO YEAST EXTRAC,UF 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2183859\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DIFCO YEAST EXTRAC,UF 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2183859\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102069010,102169004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102069010,102169004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT ) COA MTP12321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT ) COA MTP12321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA MTP15321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA MTP15321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA 183227\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELUCIRE 44/14 (BHN BAKU OBAT) COA 183227\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA 183227\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELUCIRE 44/14 (BHN BAKU OBAT) COA 183227\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA 183228\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELUCIRE 44/14 (BHN BAKU OBAT) COA 183228\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY ORANGE (BHN BAKU PEWARNA TABLET) COA GA6912911\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY ORANGE (BHN BAKU PEWARNA TABLET) COA GA6912911\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA GA691292\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA GA691292\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 FOOD OIL, 25KG MDR (BHN BAKU MAKANAN) COA TS00016910\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 FOOD OIL, 25KG MDR (BHN BAKU MAKANAN) COA TS00016910\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 FOOD OIL, 25KG MDR (BHN BAKU MAKANAN) COA TS00016748\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 FOOD OIL, 25KG MDR (BHN BAKU MAKANAN) COA TS00016748\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1064629\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1064629\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1069040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1069040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1048171\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1048171\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0097374\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0097374\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065943\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065943\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1074476\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1074476\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0226415\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0226415\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0037326\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0037326\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0037326\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0037326\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0097374\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0097374\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065943\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065943\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1110880\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1110880\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1007619\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1007619\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL ISOVITALEX ENRICHMENT 2ML 5EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1068356\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL ISOVITALEX ENRICHMENT 2ML 5EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1068356\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9256006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9256006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SHIGELLA ANTIS POLY A1 LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1035135\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SHIGELLA ANTIS POLY A1 LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1035135\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTISERUM FACTOR 9 GROUP D (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0275790\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTISERUM FACTOR 9 GROUP D (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0275790\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTISERUM D 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0122003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL H ANTISERUM D 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0122003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1063164\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1063164\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SHIGELLA ANTIS POLY D LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9172946\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SHIGELLA ANTIS POLY D LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9172946\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTISERUM GRP A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0212181\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTISERUM GRP A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0212181\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTISERUM GRP C1 FTR 6/7 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0281783\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTISERUM GRP C1 FTR 6/7 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0281783\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0328195,0343796\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0328195,0343796\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE B12 ASAAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1110880\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE B12 ASAAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1110880\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SHIGELLA ANTIS POLY A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0198678\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SHIGELLA ANTIS POLY A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0198678\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0037338\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0037338\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105712021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200H (BHN BAKU OBAT) COA L105712021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL02009115\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL02009115\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU MAKANAN) COA UT21010022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU MAKANAN) COA UT21010022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE,5KG PE PAIL (BHN BAKU MAKANAN) COA UT21010022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE,5KG PE PAIL (BHN BAKU MAKANAN) COA UT21010022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT21010006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT21010006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU MAKANAN) COA UEB2005064\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU MAKANAN) COA UEB2005064\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2006072\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2006072\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN), COA UEB2005064\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN), COA UEB2005064\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2006073\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2006073\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL ACETATE ,20KG JUG(BHN BAKU SUPLEMEN) COA XH20201101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL ACETATE ,20KG JUG(BHN BAKU SUPLEMEN) COA XH20201101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE,5KG PE PAIL BHN BAKU SUPLEMEN, COA UT21010022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE,5KG PE PAIL BHN BAKU SUPLEMEN, COA UT21010022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20040050\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20040050\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU SUPLEMEN) COA UT21010203\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU SUPLEMEN) COA UT21010203\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN), COA WB20030067\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN), COA WB20030067\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ01213535\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ01213535\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT21010203\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT21010203\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL ACETATE, 20KG JUG (BHN BAKU SUPLEMEN) COA XH20201101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL ACETATE, 20KG JUG (BHN BAKU SUPLEMEN) COA XH20201101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL(BHN BAKU SUPLEMEN) COA UT21010022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL(BHN BAKU SUPLEMEN) COA UT21010022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE02005016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPLEMEN) COA UE02005016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030157,169\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030157,169\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL02009115\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL ,20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL02009115\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS(BHN BAKU SUPLEMEN) COA UT20120055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS(BHN BAKU SUPLEMEN) COA UT20120055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL ,20KG PAIL ( BHN BAKU SUPLEMEN), COA TL02011128\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL ,20KG PAIL ( BHN BAKU SUPLEMEN), COA TL02011128\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL02011128\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL ,20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL02011128\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2006073, UEB2006074\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2006073, UEB2006074\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00802045, UQ00802046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00802045, UQ00802046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00802046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00802046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT(BHN BAKU SUPLEMEN) COA WB20040050\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT(BHN BAKU SUPLEMEN) COA WB20040050\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030067\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030067\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92105045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92105045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92105030, XW92105031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"V003400 (BHN BAKU MAKANAN) COA XW92105030, XW92105031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT20040087\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT20040087\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ01113625\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ01113625\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02012561\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02012561\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA087214,217,85213,85214\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA087214,217,85213,85214\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MILD TALCUM MOD1 FM2 (BHN BAKU KOSMETIK) COA 10300227\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"MILD TALCUM MOD1 FM2 (BHN BAKU KOSMETIK) COA 10300227\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILVERION 2400 (BHN BAKU KOSMETIK) COA 20-05294\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILVERION 2400 (BHN BAKU KOSMETIK) COA 20-05294\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT21030008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT21030008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02104025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02104025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU MAKANAN) COA UT21030060\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU MAKANAN) COA UT21030060\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE02104025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE02104025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCTV CWS/S-TG (BHN BAKU SUPLEMEN) COA UT21020012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCTV CWS/S-TG (BHN BAKU SUPLEMEN) COA UT21020012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT21040054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT21040054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE02104025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE02104025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT21040054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT21040054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT21030060\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT21030060\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG(BHN BAKU SUPLEMEN) COA UT21020012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S-TG(BHN BAKU SUPLEMEN) COA UT21020012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19060003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19060003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT21020009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT21020009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19060003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19060003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT21030060\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT21030060\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT21020009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT21020009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02104362\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02104362\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE02103001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"RONOXAN A (BHN BAKU MAKANAN) COA UE02103001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL02104385\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL02104385\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G(TOCO) BHN BAKU MAKANAN, COA UT21041063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G(TOCO) BHN BAKU MAKANAN, COA UT21041063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ10216039 ,6040,6041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ10216039 ,6040,6041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT21040029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT21040029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM ACETATE,POWDER,PURITY ACC (BHN BAKU SUPLEMEN) COA 3102204\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29152910\", \"uraian\": \"CALCIUM ACETATE,POWDER,PURITY ACC (BHN BAKU SUPLEMEN) COA 3102204\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLCOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/122046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"METHYLCOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/122046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYDROCORTISONE ACETATE EP7/USP42 (BHN BAKU OBAT) COA NEHAC210411\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"HYDROCORTISONE ACETATE EP7/USP42 (BHN BAKU OBAT) COA NEHAC210411\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISONE USP42 (BHN BAKU OBAT) COA NPD210404,NPD210307\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISONE USP42 (BHN BAKU OBAT) COA NPD210404,NPD210307\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122100910\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122100910\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2003484579\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2003484579\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANTOPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT, COA APSS21001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"PANTOPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT, COA APSS21001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAFFEINE BP/EP/USP (BHN BAKU OBAT) COA 2105729,735,736,737,738,750\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29393000\", \"uraian\": \"CAFFEINE BP/EP/USP (BHN BAKU OBAT) COA 2105729,735,736,737,738,750\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE BP (BHN BAKU OBAT) COA 12010521,12030521,1205021,1060521...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE BP (BHN BAKU OBAT) COA 12010521,12030521,1205021,1060521...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EMPTY FIBER DRUMS ,FREE OF COST NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"48192000\", \"uraian\": \"EMPTY FIBER DRUMS ,FREE OF COST NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0220040056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0220040056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0220040056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0220040056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0221040010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0221040010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0520060055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0520060055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0321050323,325,328\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0321050323,325,328\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0321050328,329,428,429\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0321050328,329,428,429\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRET (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 01/20GL4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRET (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 01/20GL4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRET (LEMON 40 BRIX) B.BAKU KOSMETIK,COA 01/20GL4,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRET (LEMON 40 BRIX) B.BAKU KOSMETIK,COA 01/20GL4,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EMULCIRE 61 WL 2659 (BHN BAKU OBAT) COA 181959\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"EMULCIRE 61 WL 2659 (BHN BAKU OBAT) COA 181959\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EMULCIRE 61 WL 2659 (BHN BAKU OBAT) COA 181959\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"EMULCIRE 61 WL 2659 (BHN BAKU OBAT) COA 181959\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ISOLATE SOY PROTEIN (BHN BAKU MAKANAN) COA SL202105-042\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35040000\", \"uraian\": \"ISOLATE SOY PROTEIN (BHN BAKU MAKANAN) COA SL202105-042\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM SALICYLATE BP2005 (BHN BAKU KOSMETIK)COA 202006005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29182100\", \"uraian\": \"SODIUM SALICYLATE BP2005 (BHN BAKU KOSMETIK)COA 202006005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIDIN DO CAN 10KG (BHN BAKU KOSMETIK) COA 1554435,1557007,1561276\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIDIN DO CAN 10KG (BHN BAKU KOSMETIK) COA 1554435,1557007,1561276\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIOBENEFITY (BHN BAKU KOSMETIK) COA 211041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BIOBENEFITY (BHN BAKU KOSMETIK) COA 211041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMFREY LIQUID B (BHN BAKU KOSMETIK), COA 210890\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"COMFREY LIQUID B (BHN BAKU KOSMETIK), COA 210890\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK), COA 210884\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK), COA 210884\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK),COA 211238\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNEBUSTERS (BHN BAKU KOSMETIK),COA 211238\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 201330\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 201330\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIOBENEFITY (BHN BAKU KOSMETIK) COA 211041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BIOBENEFITY (BHN BAKU KOSMETIK) COA 211041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SOAPNUT EXTRACT POWDER (BHN BAKU KOSMETIK) COA 211309\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SOAPNUT EXTRACT POWDER (BHN BAKU KOSMETIK) COA 211309\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.21100300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29391900\", \"uraian\": \"PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.21100300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA 21100300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29391900\", \"uraian\": \"PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA 21100300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTABIO AR10 (ASTAXANTHIN OIL 10PCT) BHN BAKU OBAT,COA.2104021,2011101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"ASTABIO AR10 (ASTAXANTHIN OIL 10PCT) BHN BAKU OBAT,COA.2104021,2011101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2260443\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2260443\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0335766\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0335766\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0335766\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0335766\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0335766\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0335766\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0335766\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0335766\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0335766\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0335766\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1004958\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1004958\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIFCO TC YEASTOLATE UF 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2294858\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DIFCO TC YEASTOLATE UF 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2294858\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIFCO PHYTONE ULTRA TERED (UF) EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2321260\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DIFCO PHYTONE ULTRA TERED (UF) EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2321260\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SOY PEPTONE 100 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2246454\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SOY PEPTONE 100 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2246454\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRANOL ULTRA C-32 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP105354R\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34029099\", \"uraian\": \"MIRANOL ULTRA C-32 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP105354R\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 2108370637\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29322090\", \"uraian\": \"SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 2108370637\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MOXIFLOXACIN HYDROCHLORIDE(BHN BAKU OBAT) COA MP0040421\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334990\", \"uraian\": \"MOXIFLOXACIN HYDROCHLORIDE(BHN BAKU OBAT) COA MP0040421\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH645608\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH645608\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AQUACOAT CPD-30 CELLULOSE (BHN BAKU PEWARNA TABLET), COA 2173804237\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"AQUACOAT CPD-30 CELLULOSE (BHN BAKU PEWARNA TABLET), COA 2173804237\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA082213\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA082213\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB21010283\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB21010283\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB21020738\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB21020738\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2108890141\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2108890141\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512116\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47069200\", \"uraian\": \"SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512116\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A, 20KG BA (BHN BAKU MAKANAN) COA WB21030564,566,568\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A, 20KG BA (BHN BAKU MAKANAN) COA WB21030564,566,568\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A, 20KG BA (BHN BAKU MAKANAN) COA WB21030568,570,572\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A, 20KG BA (BHN BAKU MAKANAN) COA WB21030568,570,572\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02D043M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02D043M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SELENITE CYSTINE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0076951\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SELENITE CYSTINE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0076951\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO(R) LUTEIN 20PCT SAF, 1KG ALUF (BHN BAKU SUPLEMEN) COA UE02007035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO(R) LUTEIN 20PCT SAF, 1KG ALUF (BHN BAKU SUPLEMEN) COA UE02007035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG210310, MCVG210510\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG210310, MCVG210510\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FEF CETRIMIDE PH EUR (BHN BAKU KOSMETIK) COA LX0D319\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"FEF CETRIMIDE PH EUR (BHN BAKU KOSMETIK) COA LX0D319\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FEF CETRIMIDE PH EUR (BHN BAKU KOSMETIK) COA LX0D343\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"FEF CETRIMIDE PH EUR (BHN BAKU KOSMETIK) COA LX0D343\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE (BHN BAKU KOSMETIK) COA OLVH2106R2-ENBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OLIVE ORGANIC VIRGIN OIL XNE (BHN BAKU KOSMETIK) COA OLVH2106R2-ENBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-2106R1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-2106R1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM201201-PGH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM201201-PGH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO210402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO210402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210603\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210603\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA DOC1582121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"SODIUM CARBONATE IPH (BHN BAKU OBAT) COA DOC1582121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLOWER ACIDS (BHN BAKU KOSMETIK) COA HS2106R1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"FLOWER ACIDS (BHN BAKU KOSMETIK) COA HS2106R1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH644929\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH644929\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH644930\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH644930\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH644955\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH644955\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH644931\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH644931\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH644956\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH644956\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH645305\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH645305\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH644932\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH644932\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH644933\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH644933\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH644935\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH644935\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH644957\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH644957\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH644936\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH644936\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH644963\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH644963\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH644964\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH644964\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II PURPLE (BHN BAKU PEWARNA TABLET) COA SH644965\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II PURPLE (BHN BAKU PEWARNA TABLET) COA SH644965\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 BROWN (BHN BAKU PEWARNA TABLET) COA SH644962\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 BROWN (BHN BAKU PEWARNA TABLET) COA SH644962\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II CLEAR (BHN BAKU PEWARNA TABLET) COA SH644958\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II CLEAR (BHN BAKU PEWARNA TABLET) COA SH644958\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY YELLOW (BHN BAKU PEWARNA TABLET) COA SH644937\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY YELLOW (BHN BAKU PEWARNA TABLET) COA SH644937\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH645561\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH645561\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH645562\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH645562\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ENROFLOXACIN BASE CVP2015 (BHN BAKU PAKAN TERNAK) COA 210526-5, 210527-4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334990\", \"uraian\": \"ENROFLOXACIN BASE CVP2015 (BHN BAKU PAKAN TERNAK) COA 210526-5, 210527-4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00902089\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00902089\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00902089\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00902089\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00902089, UQ00902090\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00902089, UQ00902090\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02012659\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02012659\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21040124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21040124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX(BHN BAKU KOSMETIK) COA QZ11210434\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE, 20KG BOX(BHN BAKU KOSMETIK) COA QZ11210434\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02011128\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02011128\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF21004047\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF21004047\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21040124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21040124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT20120055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT20120055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL02011107,TL02011115\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL02011107,TL02011115\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12105003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12105003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT20100006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT20100006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT20100006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT20100006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT21020039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT21020039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02103654\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02103654\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ01112120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ01112120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF21004047\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF21004047\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS, 25KG PC (BHN BAKU KOSMETIK) COA 0420040039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HMS, 25KG PC (BHN BAKU KOSMETIK) COA 0420040039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0821010125\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0821010125\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ01112120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ01112120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11210401\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11210401\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL02011128\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL02011128\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ01113625\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ01113625\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20120055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20120055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ01112120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ01112120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ01112120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ01112120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL02102638, TL02103654\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL02102638, TL02103654\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL 75L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01911370\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL 75L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01911370\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0221040010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0221040010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0720010029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0720010029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0520060060\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0520060060\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001594056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SLX (BHN BAKU KOSMETIK) COA 0001594056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02006812\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02006812\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0321050429, 30,31\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0321050429, 30,31\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0821010125\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0821010125\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D&C GREEN NO.5 C.I.61570 FDA CERTIFIED (BHN BAKU KOSMETIK) COA 10300036\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"D&C GREEN NO.5 C.I.61570 FDA CERTIFIED (BHN BAKU KOSMETIK) COA 10300036\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300050, 10300051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300050, 10300051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KANEKA Q10 UBIDECARENONE 5KG JP (BHN BAKU KOSMETIK) COA FA01-4426\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29146200\", \"uraian\": \"KANEKA Q10 UBIDECARENONE 5KG JP (BHN BAKU KOSMETIK) COA FA01-4426\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA E01641UP\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA E01641UP\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRTOGENOL (BHN BAKU SUPLEMEN) COA 21S0115800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MIRTOGENOL (BHN BAKU SUPLEMEN) COA 21S0115800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GREEN TEA DRY DEC.EX/PHOSPHOL (BHN BAKU SUPLEMEN) COA 19S0269705\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"GREEN TEA DRY DEC.EX/PHOSPHOL (BHN BAKU SUPLEMEN) COA 19S0269705\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP2010/USP41 (BHN BAKU OBAT) COA NED210601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP2010/USP41 (BHN BAKU OBAT) COA NED210601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MONOCALCIUM PHOSPHATE FEED GRADE GRANULE@25KG (BHN BAKU PAKAN TERNAK) COA 20210507115\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28352600\", \"uraian\": \"MONOCALCIUM PHOSPHATE FEED GRADE GRANULE@25KG (BHN BAKU PAKAN TERNAK) COA 20210507115\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GRAY (BHN BAKU PEWARNA TABLET) COA SH645907\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GRAY (BHN BAKU PEWARNA TABLET) COA SH645907\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105712021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200H (BHN BAKU OBAT) COA L105712021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000195039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000195039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT20110047, UT20110048\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT20110047, UT20110048\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20120091, UT20120092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20120091, UT20120092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU MAKANAN) COA UT21030084\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU MAKANAN) COA UT21030084\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT21030084\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT21030084\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ01213536\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ01213536\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI20030009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI20030009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI20030009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI20030009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT MINERAL PREMIX FOR MATERNAL BISCUIT(BHN BAKU MAKANAN) COA XW92105344\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VIT MINERAL PREMIX FOR MATERNAL BISCUIT(BHN BAKU MAKANAN) COA XW92105344\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHISOPRINOL (BHN BAKU OBAT) COA MTP1050273\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"METHISOPRINOL (BHN BAKU OBAT) COA MTP1050273\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-210521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-210521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE AM PELLETS (BHN BAKU OBAT) COA 21E1001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE AM PELLETS (BHN BAKU OBAT) COA 21E1001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP21053155/XP21054401/XP21054665, XP21053156/XP21054402/...4666\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP21053155/XP21054401/XP21054665, XP21053156/XP21054402/...4666\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA.0000075635\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA.0000075635\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA.0000075636\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA.0000075636\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H105 83PCT (BHN BAKU KOSMETIK) COA 0000075637\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H105 83PCT (BHN BAKU KOSMETIK) COA 0000075637\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for UBIDECARENONE (COENZYM Q10 FERMENTATIVE) BHN BAKU KOSMETIK) COA 51-2011127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29146200\", \"uraian\": \"UBIDECARENONE (COENZYM Q10 FERMENTATIVE) BHN BAKU KOSMETIK) COA 51-2011127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK)COA SFP-N-041251\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK)COA SFP-N-041251\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-041251\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-041251\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND CACTUS EXTRACT (BHN BAKU KOSMETIK) COA CAB-020321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND CACTUS EXTRACT (BHN BAKU KOSMETIK) COA CAB-020321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND DERMABIOTICS HDB1196 GN (BHN BAKU KOSMETIK) COA DGN1196210611\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND DERMABIOTICS HDB1196 GN (BHN BAKU KOSMETIK) COA DGN1196210611\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND GREEN TEA SEED OIL (BHN BAKU KOSMETIK)COA CSSO-051300, CSSO-011541\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND GREEN TEA SEED OIL (BHN BAKU KOSMETIK)COA CSSO-051300, CSSO-011541\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-080261\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-080261\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND TURMERIC ROOT EXTRACT (BHN BAKU KOSMETIK) COA WRGC-013151\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND TURMERIC ROOT EXTRACT (BHN BAKU KOSMETIK) COA WRGC-013151\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-BLACK PEARL POWDER (BHN BAKU KOSMETIK) COA PDEG-010221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND BIO-BLACK PEARL POWDER (BHN BAKU KOSMETIK) COA PDEG-010221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-031051,SFP-N-041251\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-031051,SFP-N-041251\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2021040501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2021040501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM REGULAR GRADE(BHN BAKU OBAT) COA 2105676,6791,6794,6795,6796,6797\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331900\", \"uraian\": \"METAMIZOLE SODIUM REGULAR GRADE(BHN BAKU OBAT) COA 2105676,6791,6794,6795,6796,6797\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMLODIPINE BESYLATE BP/EP (BHN BAKU OBAT) COA AMB/093/05/21, AMB/094/05/21\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"AMLODIPINE BESYLATE BP/EP (BHN BAKU OBAT) COA AMB/093/05/21, AMB/094/05/21\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 1AX2106005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 1AX2106005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 1AX2106002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 1AX2106002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH645548\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH645548\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH645455\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH645455\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH645680\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH645680\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH645682\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH645682\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB MAROON (BHN BAKU PEWARNA TABLET) COA SH645549\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB MAROON (BHN BAKU PEWARNA TABLET) COA SH645549\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH645550\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH645550\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH645551\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH645551\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH645553\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH645553\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH645554\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH645554\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH645555\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH645555\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH645556\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH645556\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH645566\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH645566\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH645557\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH645557\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH645570\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH645570\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH645571\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH645571\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH645572\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH645572\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH644934\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH644934\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SCD\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SCD\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SFE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SFE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMITOSE HGA (BHN BAKU KOSMETIK) COA SCD\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AMITOSE HGA (BHN BAKU KOSMETIK) COA SCD\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA SFA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) COA SFA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA SCF\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROTESIL LH (BHN BAKU KOSMETIK) COA SCF\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6028 (16KG) BHN BAKU KOSMETIK, COA 106255\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6028 (16KG) BHN BAKU KOSMETIK, COA 106255\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP-100 (10KG) BHN BAKU KOSMETIK, COA 104859\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSP-100 (10KG) BHN BAKU KOSMETIK, COA 104859\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-56A (18KG) BHN BAKU KOSMETIK, COA 104020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-56A (18KG) BHN BAKU KOSMETIK, COA 104020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS SULFATE,DRIED, POWDER, USP43 (BHN BAKU SUPLEMEN) COA 3090130\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"FERROUS SULFATE,DRIED, POWDER, USP43 (BHN BAKU SUPLEMEN) COA 3090130\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RANITIDINE HCL USP (BHN BAKU OBAT) COA RH 237 06 21\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29321900\", \"uraian\": \"RANITIDINE HCL USP (BHN BAKU OBAT) COA RH 237 06 21\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREGABALIN (BHN BAKU OBAT) COA PU2611019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"PREGABALIN (BHN BAKU OBAT) COA PU2611019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIOGLITAZONE HYDROCHLORIDE (BHN BAKU OBAT) COA, PG0250321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29341000\", \"uraian\": \"PIOGLITAZONE HYDROCHLORIDE (BHN BAKU OBAT) COA, PG0250321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BRB 1740,DRUM 190KG ( BHN BAKU KOSMETIK) COA B087973, B088280\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100020\", \"uraian\": \"BRB 1740,DRUM 190KG ( BHN BAKU KOSMETIK) COA B087973, B088280\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200H (BHN BAKU SUPPLEMEN) COA L105712121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200H (BHN BAKU SUPPLEMEN) COA L105712121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM CHLORIDE 6-HYDRATE,CRYST.,USP43 (BHN BAKU KOSMETIK) COA 3092579\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28273100\", \"uraian\": \"MAGNESIUM CHLORIDE 6-HYDRATE,CRYST.,USP43 (BHN BAKU KOSMETIK) COA 3092579\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABCOAT TC WHITE (BHN BAKU PEWARNA TABLET) COA GA691890\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"TABCOAT TC WHITE (BHN BAKU PEWARNA TABLET) COA GA691890\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY SGR RED (BHN BAKU PEWARNA TABLET) COA GA691894\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY SGR RED (BHN BAKU PEWARNA TABLET) COA GA691894\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122100871\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054300\", \"uraian\": \"MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122100871\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERSCRUB 400P AMBER (BHN BAKU KOSMETIK) COA PL19TA1601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERSCRUB 400P AMBER (BHN BAKU KOSMETIK) COA PL19TA1601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG210611\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG210611\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000052993\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000052993\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NECTAR DE MATCHA FEMA P114 6 (BHN BAKU KOSMETIK) COA 0000054405\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"NECTAR DE MATCHA FEMA P114 6 (BHN BAKU KOSMETIK) COA 0000054405\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512116\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47069200\", \"uraian\": \"SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512116\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POTASSIUM GLYCEROPHOSPHATE SOLUTION (BHN BAKU SUPLEMEN) COA 3102777\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29199000\", \"uraian\": \"POTASSIUM GLYCEROPHOSPHATE SOLUTION (BHN BAKU SUPLEMEN) COA 3102777\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO210402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO210402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK) COA EG209-2106R1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK) COA EG209-2106R1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM210602-PGH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM210602-PGH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO210302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO210302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO210603\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO210603\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM SALICYLATE (BHN BAKU KOSMETIK)COA NO2104011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29182300\", \"uraian\": \"SODIUM SALICYLATE (BHN BAKU KOSMETIK)COA NO2104011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED (BHN BAKU UTK PAKAN TERNAK) COA ROA2421\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED (BHN BAKU UTK PAKAN TERNAK) COA ROA2421\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFADROXIL MONOHYDRATE (PURIDROX COMPACTED) BHN BAKU OBAT, COA B340289,B340300,B340304\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFADROXIL MONOHYDRATE (PURIDROX COMPACTED) BHN BAKU OBAT, COA B340289,B340300,B340304\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID S 67 F(BHN BAKU OBAT) COA 576200-2210036/001-008 (8), 576200-2210036/009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232010\", \"uraian\": \"LIPOID S 67 F(BHN BAKU OBAT) COA 576200-2210036/001-008 (8), 576200-2210036/009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0054100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0054100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VALERIAN D.H.E> 0.8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 21B0032600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VALERIAN D.H.E> 0.8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 21B0032600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VALERIAN D.H.E >0.8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 21B0032700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VALERIAN D.H.E >0.8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 21B0032700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYMARIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 21B0071700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SILYMARIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 21B0071700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NABUMETONE USP (BAHAN BAKU OBAT) COA.H-0590421\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29145000\", \"uraian\": \"NABUMETONE USP (BAHAN BAKU OBAT) COA.H-0590421\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2003565686\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2003565686\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 8285400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 8285400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122100908\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122100908\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS GLUCONATE (BHN BAKU OBAT) COA 3100451\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"FERROUS GLUCONATE (BHN BAKU OBAT) COA 3100451\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIPOTASSIUM CITRATE 1-HYDRATE, CRYST.,PH.EUR.10 ED.USP43 (BHN BAKU OBAT) COA 3100616\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"TRIPOTASSIUM CITRATE 1-HYDRATE, CRYST.,PH.EUR.10 ED.USP43 (BHN BAKU OBAT) COA 3100616\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINC SULFATE 1-HYDRATE, POWDER,USP43 (BHN BAKU OBAT) COA 3102213\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"ZINC SULFATE 1-HYDRATE, POWDER,USP43 (BHN BAKU OBAT) COA 3102213\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS SULFATE, DRIED, POWDER, USP 43(BHN BAKU OBAT) COA 3101792\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"FERROUS SULFATE, DRIED, POWDER, USP 43(BHN BAKU OBAT) COA 3101792\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 2106EF0910\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"L-ARGININE LO (BHN BAKU KOSMETIK),COA 2106EF0910\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1138784\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1138784\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WHEAT 100 UF EACH EA (MEDIA U/PENGEMBANGAN MIKRO ORGANISME)BATCH210118002,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"WHEAT 100 UF EACH EA (MEDIA U/PENGEMBANGAN MIKRO ORGANISME)BATCH210118002,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2260443\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2260443\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2260443\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2260443\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2260443\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2260443\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2316462\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2316462\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1004958\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1004958\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0022270\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0022270\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0156235\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0156235\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0335766\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0335766\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0335766\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0335766\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0335766\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0335766\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0335766\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0335766\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 2108370637\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29322090\", \"uraian\": \"SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 2108370637\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOPAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 21100302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29222900\", \"uraian\": \"DOPAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 21100302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VIT.A PALMITATE TYPE 250 CWS/F (BHN BAKU SUPLEMEN) COA UT21010004,SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VIT.A PALMITATE TYPE 250 CWS/F (BHN BAKU SUPLEMEN) COA UT21010004,SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT20110049, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT20110049, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UE02010440, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UE02010440, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA QZ11200510, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA QZ11200510, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID REGULAR (BHN BAKU SUPLEMEN) COA HPD2105066, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID REGULAR (BHN BAKU SUPLEMEN) COA HPD2105066, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID REGULAR (BHN BAKU SUPLEMEN) COA HPD2105072 SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID REGULAR (BHN BAKU SUPLEMEN) COA HPD2105072 SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC SODIUM ASCORBATE REGULAR (BHN BAKU SUPLEMEN) COA HPN2002010, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC SODIUM ASCORBATE REGULAR (BHN BAKU SUPLEMEN) COA HPN2002010, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 1PCT CWS/M (BHN BAKU SUPLEMEN) COA UT20020011, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 1PCT CWS/M (BHN BAKU SUPLEMEN) COA UT20020011, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT EMULSION RED(BHN BAKU SUPLEMEN) COA UE02104009, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT EMULSION RED(BHN BAKU SUPLEMEN) COA UE02104009, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT EM YELLOW (BHN BAKU SUPLEMEN) COA UT21020001,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT EM YELLOW (BHN BAKU SUPLEMEN) COA UT21020001,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT A PALM. 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT20020192,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VIT A PALM. 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT20020192,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G... (BHN BAKU SUPLEMEN) COA UT20111005,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G... (BHN BAKU SUPLEMEN) COA UT20111005,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT20100006,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT20100006,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 CRYST FOOD GRADE(BHN BAKU SUPLEMEN) COA D012004019,7046, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 CRYST FOOD GRADE(BHN BAKU SUPLEMEN) COA D012004019,7046, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 210429\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33012990\", \"uraian\": \"AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 210429\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 210324\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"OILESS'CITY TM (BHN BAKU KOSMETIK) COA 210324\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ML0975-SE0981 CUSTOM BLENDING VEGETABLES BLEND B (BHN BAKU OBAT) COA L-11513\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"ML0975-SE0981 CUSTOM BLENDING VEGETABLES BLEND B (BHN BAKU OBAT) COA L-11513\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ML0973-SE0979 CUSTOM BLENDING FRUITS BLEND B (BHN BAKU OBAT) COA L-11512\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"ML0973-SE0979 CUSTOM BLENDING FRUITS BLEND B (BHN BAKU OBAT) COA L-11512\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRANOL ULTRA C-32 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP105354R\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34021990\", \"uraian\": \"MIRANOL ULTRA C-32 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP105354R\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21040031, 32\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21040031, 32\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT21040002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT21040002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02104026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02104026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT21051066,67,68\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT21051066,67,68\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT21040054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT21040054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT19060003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT19060003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPPLEMEN) COA UT21030060\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPPLEMEN) COA UT21030060\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02104026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02104026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM (BHN BAKU UTK PAKAN TERNAK) COA 2106797\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331900\", \"uraian\": \"METAMIZOLE SODIUM (BHN BAKU UTK PAKAN TERNAK) COA 2106797\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA2105294 S/D 5296,6201 S/D 6207\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"MEFENAMIC ACID (BHN BAKU OBAT) COA MA2105294 S/D 5296,6201 S/D 6207\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20210619\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20210619\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOPROFEN (BHN BAKU OBAT) COA. 197748\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29183000\", \"uraian\": \"KETOPROFEN (BHN BAKU OBAT) COA. 197748\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB21030293\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB21030293\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB21020738\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB21020738\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB20090242\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB20090242\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPPLEMEN) COA TL02105535\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPPLEMEN) COA TL02105535\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT21020009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT21020009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPPLEMEN) COA TL02104446,TL02105560\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPPLEMEN) COA TL02104446,TL02105560\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT21050041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT21050041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21040002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21040002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL02105535,5618,5646,5653\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL02105535,5618,5646,5653\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL02104446\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL02104446\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103861821\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103861821\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104311321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104311321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLOWLAC (R) 100H (BHN BAKU OBAT) COA L105812121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"FLOWLAC (R) 100H (BHN BAKU OBAT) COA L105812121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R)200H (BHN BAKU OBAT) COA L105712121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R)200H (BHN BAKU OBAT) COA L105712121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY ORANGE (BHN BAKU PEWARNA TABLET) COA GA691291\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY ORANGE (BHN BAKU PEWARNA TABLET) COA GA691291\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA GA691292\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA GA691292\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY SGR RED (BHN BAKU PEWARNA TABLET) COA GA691313\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY SGR RED (BHN BAKU PEWARNA TABLET) COA GA691313\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for XANTHAN FFPC (BHN BAKU OBAT), COA 83423001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"XANTHAN FFPC (BHN BAKU OBAT), COA 83423001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK),COA 211404\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK),COA 211404\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSE HIPS LIQUID B (BHN BAKU KOSMETIK),COA 210171\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ROSE HIPS LIQUID B (BHN BAKU KOSMETIK),COA 210171\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIROXICAM (BAHAN BAKU OBAT ) COA PRX2021003M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"PIROXICAM (BAHAN BAKU OBAT ) COA PRX2021003M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0220040056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0220040056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000195040,195042,195043,195877,195878\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000195040,195042,195043,195877,195878\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C(R)50, 20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02101007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C(R)50, 20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02101007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF21004047\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF21004047\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0821010127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0821010127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX, 25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0919040013,0921020003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX, 25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0919040013,0921020003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0720010029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0720010029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS, 25KG PC (BHN BAKU KOSMETIK) COA 0421040014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HMS, 25KG PC (BHN BAKU KOSMETIK) COA 0421040014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0720010029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0720010029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0221040010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0221040010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS, 25KG PC (BHN BAKU KOSMETIK) COA 0421040014, 0421040024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HMS, 25KG PC (BHN BAKU KOSMETIK) COA 0421040014, 0421040024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0821010127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0821010127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0221040010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0221040010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 24052021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25081000\", \"uraian\": \"BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 24052021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIACEREIN EP (BHN BAKU OBAT) COA DCE/40241220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"DIACEREIN EP (BHN BAKU OBAT) COA DCE/40241220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX MAROON (BHN BAKU PEWARNA TABLET), COA DT717552\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX MAROON (BHN BAKU PEWARNA TABLET), COA DT717552\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET) COA DT717559\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPAGLOS WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET) COA DT717559\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPASPRAY YELLOW (BHN BAKU PEWARNA TABLET) COA DT717553\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPASPRAY YELLOW (BHN BAKU PEWARNA TABLET) COA DT717553\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY TF GREEN (BHN BAKU PEWARNA TABLET) COA DT717554\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY TF GREEN (BHN BAKU PEWARNA TABLET) COA DT717554\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTIOXIDANT PREMIX FOR GUMMY (BHN BAKU MAKANAN) COA XW92106154\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"ANTIOXIDANT PREMIX FOR GUMMY (BHN BAKU MAKANAN) COA XW92106154\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ01110805, UQ01110806\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ01110805, UQ01110806\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11210402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11210402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE02101102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE02101102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20120092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20120092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20120092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20120092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92106034, XW92106035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"V003400 (BHN BAKU MAKANAN) COA XW92106034, XW92106035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92106035, XW92106036\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"V003400 (BHN BAKU MAKANAN) COA XW92106035, XW92106036\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02006024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE02006024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02006024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE02006024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DICLOFENAC POTASSIUM BP (BHN BAKU OBAT) COA DFK/11020072\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"DICLOFENAC POTASSIUM BP (BHN BAKU OBAT) COA DFK/11020072\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DICLOFENAC SODIUM USP (BHN BAKU OBAT) COA DFS/11060212,11060213,11060214, 204,211,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"DICLOFENAC SODIUM USP (BHN BAKU OBAT) COA DFS/11060212,11060213,11060214, 204,211,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH646736\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH646736\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AQUACOAT CPD-30 ETHYLCELLULOSE AQUEOUS... (BHN BAKU PEWARNA TABLET) COA 2173804237\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"AQUACOAT CPD-30 ETHYLCELLULOSE AQUEOUS... (BHN BAKU PEWARNA TABLET) COA 2173804237\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH646882\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH646882\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH646574\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH646574\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GRAY (BHN BAKU PEWARNA TABLET) COA SH646550\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GRAY (BHN BAKU PEWARNA TABLET) COA SH646550\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK)COA SFP-N-041251\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK)COA SFP-N-041251\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT), COA ASG/06/070621,ASG/06/070621-1,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT), COA ASG/06/070621,ASG/06/070621-1,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/06/040621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123100\", \"uraian\": \"CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/06/040621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CROSCARMELLOSE SODIUM USP-NF (BHN BAKU OBAT) COA ACRMC/06/090621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39129090\", \"uraian\": \"CROSCARMELLOSE SODIUM USP-NF (BHN BAKU OBAT) COA ACRMC/06/090621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE BP (BHN BAKU OBAT), COA ASGP/05/270521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE BP (BHN BAKU OBAT), COA ASGP/05/270521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/06/040621, ASG/06/040621-1,ASG/06/050621...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/06/040621, ASG/06/040621-1,ASG/06/050621...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SORBITOL SOLUTION 70PCT CRYSTALLIZING (BHN BAKU OBAT) COA 2122P122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054400\", \"uraian\": \"SORBITOL SOLUTION 70PCT CRYSTALLIZING (BHN BAKU OBAT) COA 2122P122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU KOSMETIK) COA 02/19GAAK\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT KIWI (BAHAN BAKU KOSMETIK) COA 02/19GAAK\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK)COA 02/19GAAK, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK)COA 02/19GAAK, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT21050006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT21050006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2109291397\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2109291397\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB020521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB020521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B140621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B140621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG240621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG240621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 260421,270421\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25070000\", \"uraian\": \"KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 260421,270421\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK)COA BAG-032861\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK)COA BAG-032861\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND CACTUS EXTRACT (BHN BAKU KOSMETIK),COA CAB-020321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND CACTUS EXTRACT (BHN BAKU KOSMETIK),COA CAB-020321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND CAMELLIA JAPONICA FLOWER EXTRACT (BHN BAKU KOSMETIK) COA CJE-012320\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND CAMELLIA JAPONICA FLOWER EXTRACT (BHN BAKU KOSMETIK) COA CJE-012320\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-010231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-010231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-091371\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-091371\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK), COA HMVBD-020331, HMVBD-030651\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK), COA HMVBD-020331, HMVBD-030651\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND YUZU EXTRACT BHN BAKU KOSMETIK) COA CJUBD-021061\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND YUZU EXTRACT BHN BAKU KOSMETIK) COA CJUBD-021061\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-612120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-612120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 062821\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 062821\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND KIWI EXTRACT(BHN BAKU KOSMETIK) COA KFB-L-030261\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND KIWI EXTRACT(BHN BAKU KOSMETIK) COA KFB-L-030261\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-091371\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-091371\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-090161\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-090161\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-051851\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-051851\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 062821\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 062821\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113557\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113557\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TILAMAR (R) PDO WITH NOOVISTA#, 25KG PAIL (BHN BAKU KOSMETIK) COA PC210623\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"TILAMAR (R) PDO WITH NOOVISTA#, 25KG PAIL (BHN BAKU KOSMETIK) COA PC210623\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GENIVIDA (TM) TG, 1KG BAG ALU(BHN BAKU SUPLEMEN) COA UT19040001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"GENIVIDA (TM) TG, 1KG BAG ALU(BHN BAKU SUPLEMEN) COA UT19040001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG(BHN BAKU SUPLEMEN) COA UT21050003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG(BHN BAKU SUPLEMEN) COA UT21050003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT A PALM 1.0M+VIT D3 100'000 (BHN BAKU MAKANAN) COA UT21030118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VIT A PALM 1.0M+VIT D3 100'000 (BHN BAKU MAKANAN) COA UT21030118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512116\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47069200\", \"uraian\": \"SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512116\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE EP/USP (BHN BAKU OBAT) COA NEDNA200704\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE SODIUM PHOSPHATE EP/USP (BHN BAKU OBAT) COA NEDNA200704\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP2010/USP42 (BHN BAKU OBAT) COA NED210713, NED210714\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP2010/USP42 (BHN BAKU OBAT) COA NED210713, NED210714\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISONE USP42 (BHN BAKU OBAT) COA NPD201213\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISONE USP42 (BHN BAKU OBAT) COA NPD201213\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC28621T\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101990\", \"uraian\": \"SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC28621T\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK)COA 7766034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"YUZU LEMON EXTRACT (BHN BAKU KOSMETIK)COA 7766034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA MTP16021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA MTP16021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA MTP17421\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA MTP17421\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA MTP17421\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA MTP17421\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU OBAT) COA MTP14321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU OBAT) COA MTP14321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID 325MESH, 20KG BOA1PO (BAHAN BAKU SUPLEMEN)COA HPD2103051, HPD2104119\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID 325MESH, 20KG BOA1PO (BAHAN BAKU SUPLEMEN)COA HPD2103051, HPD2104119\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID 325MESH, 20KG BOA1PO (BAHAN BAKU SUPLEMEN) COA HPD2104119,4122,4128,4132...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID 325MESH, 20KG BOA1PO (BAHAN BAKU SUPLEMEN) COA HPD2104119,4122,4128,4132...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH647429\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH647429\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP843159\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP843159\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP839155\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP839155\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D&C YELLOW #10 AL 15PCT-20PCT (BHN BAKU PEWARNA TABLET) COA WP831858:BA3992\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"D&C YELLOW #10 AL 15PCT-20PCT (BHN BAKU PEWARNA TABLET) COA WP831858:BA3992\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD & C YELLOW #6/SUNSET YELLOW... (BHN BAKU PEWARNA TABLET) COA WP839962:BA7342\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD & C YELLOW #6/SUNSET YELLOW... (BHN BAKU PEWARNA TABLET) COA WP839962:BA7342\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD & C YELLOW #5/TARTRAZINE AL... (BHN BAKU PEWARNA TABLET) COA WP833401:BA4911\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD & C YELLOW #5/TARTRAZINE AL... (BHN BAKU PEWARNA TABLET) COA WP833401:BA4911\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU PEWARNA TABLET) COA WP822178:1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"ERYTHROSINE AL 38PCT-42PCT (BHN BAKU PEWARNA TABLET) COA WP822178:1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD AND C BLUE #2/INDIGO CARMINE AL...(BHN BAKU UTK PEWARNA TABLET) COA WP837618:BA6893\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD AND C BLUE #2/INDIGO CARMINE AL...(BHN BAKU UTK PEWARNA TABLET) COA WP837618:BA6893\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS FUMARATE USP/FCC/PH.EUR (BHN BAKU OBAT) COA 2021/196\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"FERROUS FUMARATE USP/FCC/PH.EUR (BHN BAKU OBAT) COA 2021/196\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DAPRACARE P6000 DSHV MB (BHN BAKU KOSMETIK) COA 2106230115\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39072090\", \"uraian\": \"DAPRACARE P6000 DSHV MB (BHN BAKU KOSMETIK) COA 2106230115\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 2104221214\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 2104221214\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 2104221214\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 2104221214\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ISONIAZID USP (BHN BAKU OBAT) COA 21103/INH,21147/INH, 21149/INH,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333910\", \"uraian\": \"ISONIAZID USP (BHN BAKU OBAT) COA 21103/INH,21147/INH, 21149/INH,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITICOLINE SODIUM (BHN BAKU OBAT) COA Y210524\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"CITICOLINE SODIUM (BHN BAKU OBAT) COA Y210524\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEVOFLOXACIN HEMIHYDRATE (FREE ALKALINE)BHN BAKU OBAT, COA C008-2105606\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"LEVOFLOXACIN HEMIHYDRATE (FREE ALKALINE)BHN BAKU OBAT, COA C008-2105606\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POVIDONE K-25 (BHN BAKU OBAT), COA PK25-210510F31\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"POVIDONE K-25 (BHN BAKU OBAT), COA PK25-210510F31\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOXYCYCLINE HYCLATE (BHN BAKU PAKAN TERNAK) COA DH-2106059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29413000\", \"uraian\": \"DOXYCYCLINE HYCLATE (BHN BAKU PAKAN TERNAK) COA DH-2106059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUCRALOSE (BHN BAKU OBAT) COA 21062702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29321400\", \"uraian\": \"SUCRALOSE (BHN BAKU OBAT) COA 21062702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE CRYSTAL E/ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1110353\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"TUBE CRYSTAL E/ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1110353\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1081546\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1081546\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-PA-C AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1138796\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M-PA-C AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1138796\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1095256\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1095256\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1081546\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1081546\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 1078793\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 1078793\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 202758900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CULTURESWAB PLUS AMIES W/O CHARC SINGLE(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 202758900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02D119M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02D119M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0322946\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0322946\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1103638\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1103638\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0335617\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0335617\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0294287\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0294287\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1103638\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1103638\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0321060\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0321060\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0314278,1123327\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0314278,1123327\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335617\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335617\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1007116,1033190\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1007116,1033190\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1103638\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1103638\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1111132\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1111132\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1081518\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1081518\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1132546\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1132546\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1068161\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1068161\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1040269\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1040269\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1123067\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1123067\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YPD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0286513\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE YPD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0286513\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TSN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0126959\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TSN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0126959\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1132512\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1132512\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1068716\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MYCOPLASMA BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1068716\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0273380\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0273380\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0272792\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0272792\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0062865\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTOSE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0062865\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR NOBLE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1048168\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR NOBLE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1048168\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LOOPS INOCULATING 10/TUBE 10 MICROLITER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2008440\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"LOOPS INOCULATING 10/TUBE 10 MICROLITER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2008440\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0294294\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0294294\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1133939\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1133939\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0350960\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0350960\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1097237\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1097237\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST CARBON BASE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0038689\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE YEAST CARBON BASE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0038689\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1111035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1111035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1068956\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EE BROTH MOSSEL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1068956\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01D091M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01D091M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1103647\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1103647\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TODD HEWITT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335708\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TODD HEWITT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335708\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MS CD4 PERCP RM4-5 25UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065978\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"MS CD4 PERCP RM4-5 25UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065978\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MS CD56 (NCAM-1) BUV615 809220 50UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1187003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"MS CD56 (NCAM-1) BUV615 809220 50UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1187003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1097144\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1097144\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1035143\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1035143\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0114639\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0114639\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTISERUM FACTOR 12 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0240788\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTISERUM FACTOR 12 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0240788\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0219127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0219127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 1139986\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 1139986\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 10978180\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PANTOTHENATE ASSAY MED 100G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 10978180\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP W135 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1092251\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL N MENINGITIDIS ANTISERUM GRP W135 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1092251\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1110880\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE B12 ASSAY MEDIUM USP 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1110880\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0226415\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0226415\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0336719\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0336719\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0097374\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0097374\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FOLIC AOAC MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1133929\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE FOLIC AOAC MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1133929\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1069992,1139984\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1069992,1139984\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTISERUM A 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1090463\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL H ANTISERUM A 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1090463\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MS CD8A FITC 53-6.7 25UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9346132\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"MS CD8A FITC 53-6.7 25UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9346132\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARACETAMOL USP (BHN BAKU OBAT) COA 2110022, 2130026, 2110058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"PARACETAMOL USP (BHN BAKU OBAT) COA 2110022, 2130026, 2110058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC CALCIUM ASCORBATE DC, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPT2105019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC CALCIUM ASCORBATE DC, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPT2105019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP(BHN BAKU OBAT) COA 102102024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"BARCROFT TM AL HYD GEL VISCO-9, USP(BHN BAKU OBAT) COA 102102024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENTRY POLYOX WSR 303 LEO NF (DUPONT/IFF) BHN BAKU PEWARNA TABLET) COA D682L1IRR6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"SENTRY POLYOX WSR 303 LEO NF (DUPONT/IFF) BHN BAKU PEWARNA TABLET) COA D682L1IRR6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENTRY POLYOX WSR 1105 LEO NF (DUPONT/IFF) BHN BAKU PEWARNA TABLET, COA D682K5KRD1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"SENTRY POLYOX WSR 1105 LEO NF (DUPONT/IFF) BHN BAKU PEWARNA TABLET, COA D682K5KRD1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BAYPURE CX 100 SOLID G !25K BAG (BHN BAKU KOSMETIK) COA CHASMY0052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"BAYPURE CX 100 SOLID G !25K BAG (BHN BAKU KOSMETIK) COA CHASMY0052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL210715, MCCPOL210719\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29094900\", \"uraian\": \"MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL210715, MCCPOL210719\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 110920/006689\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 110920/006689\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIO VINACCIOLI RAFFINATO (BHN BAKU KOSMETIK) COA.B2100178\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15152919\", \"uraian\": \"OLIO VINACCIOLI RAFFINATO (BHN BAKU KOSMETIK) COA.B2100178\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIO MANDORLE DOLCI RAFF.EU PH (BHN BAKU KOSMETIK) COA B21000180\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15152919\", \"uraian\": \"OLIO MANDORLE DOLCI RAFF.EU PH (BHN BAKU KOSMETIK) COA B21000180\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYCLOPENTASILOXANE CM5 L (BHN BAKU KOSMETIK) COA 2128WKQ315\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29319049\", \"uraian\": \"CYCLOPENTASILOXANE CM5 L (BHN BAKU KOSMETIK) COA 2128WKQ315\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY SGR RED (BHN BAKU PEWARNA TABLET) COA GA692531\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY SGR RED (BHN BAKU PEWARNA TABLET) COA GA692531\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NG 5 PCT-1,2 PROPYLENGLYCOLE 95% (BAHAN BAKU OBAT) COA 2109232\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"NG 5 PCT-1,2 PROPYLENGLYCOLE 95% (BAHAN BAKU OBAT) COA 2109232\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105712021, L105712121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200H (BHN BAKU OBAT) COA L105712021, L105712121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH646435\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH646435\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH646437\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH646437\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH646379\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH646379\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH646380\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH646380\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH646802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH646802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH646439\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH646439\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH646434\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH646434\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH646382\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH646382\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH646442\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH646442\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH642544\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH642544\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GRAY (BHN BAKU PEWARNA TABLET) COA SH646550\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GRAY (BHN BAKU PEWARNA TABLET) COA SH646550\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH646385\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH646385\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH646431\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH646431\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH646386\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH646386\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH646387\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH646387\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH646422\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH646422\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH646562\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH646562\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH646561\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH646561\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II BLUE (BHN BAKU PEWARNA TABLET) COA SH646459\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II BLUE (BHN BAKU PEWARNA TABLET) COA SH646459\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II BLUE (BHN BAKU PEWARNA TABLET) COA SH646458\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II BLUE (BHN BAKU PEWARNA TABLET) COA SH646458\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH646417\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH646417\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH646418\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH646418\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH646432\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH646432\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY YELLOW (BHN BAKU PEWARNA TABLET) COA SH646389\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY YELLOW (BHN BAKU PEWARNA TABLET) COA SH646389\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRYAMB YELLOW (BHN BAKU PEWARNA TABLET) COASH646445\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRYAMB YELLOW (BHN BAKU PEWARNA TABLET) COASH646445\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY RED (BHN BAKU PEWARNA TABLET) COA SH646390\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY RED (BHN BAKU PEWARNA TABLET) COA SH646390\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH646441\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH646441\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY BLUE (BHN BAKU PEWARNA TABLET) COA SH646424\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY BLUE (BHN BAKU PEWARNA TABLET) COA SH646424\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH646430\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH646430\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND BROWN (BHN BAKU PEWARNA TABLET) SH646423\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND BROWN (BHN BAKU PEWARNA TABLET) SH646423\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR ( BHN BAKU PEWARNA TABLET) COA SH646442\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR ( BHN BAKU PEWARNA TABLET) COA SH646442\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH646433\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH646433\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH646436\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH646436\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S168/21\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S168/21\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 040221,010321,030321,040321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 040221,010321,030321,040321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 103093-A (BHN BAKU MAKANAN) COA XW92106187\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 103093-A (BHN BAKU MAKANAN) COA XW92106187\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT20120055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT20120055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT20120055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT20120055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL02011130, TL02101001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL02011130, TL02101001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 204005 (BHN BAKU MAKANAN) COA XW92106421\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 204005 (BHN BAKU MAKANAN) COA XW92106421\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02104029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02104029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKAKAN) COA UT21010003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKAKAN) COA UT21010003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11210404\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11210404\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ01212140\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ01212140\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE FCC, 25KG BOX (BHN BAKU MAKANAN) COA 0000195880\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE FCC, 25KG BOX (BHN BAKU MAKANAN) COA 0000195880\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE FCC, 25KG BOX (BHN BAKU MAKANAN) COA 0000195880\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE FCC, 25KG BOX (BHN BAKU MAKANAN) COA 0000195880\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT21030025, UT21040028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT21030025, UT21040028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ01112120, UQ01112126\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ01112120, UQ01112126\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT20120092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT20120092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT20120055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT20120055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT20120028, 20029,40007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT20120028, 20029,40007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21020039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21020039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21020039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21020039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21020039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21020039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21020039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21020039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2007090\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2007090\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB20040051, 52\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB20040051, 52\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ01110813\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ01110813\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB20030067\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB20030067\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ10113538\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ10113538\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPPLEMEN) COA TL02103655,TL02103673\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPPLEMEN) COA TL02103655,TL02103673\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL(BHN BAKU SUPPLEMEN) COA UT21030084\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL(BHN BAKU SUPPLEMEN) COA UT21030084\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ01212140\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ01212140\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ10113538\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ10113538\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB20040052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB20040052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB20030067\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB20030067\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU SUPPLEMEN) COA UT21020206\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU SUPPLEMEN) COA UT21020206\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE,5KG PE PAIL (BHN BAKU SUPPLEMEN)COA UT21030084\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE,5KG PE PAIL (BHN BAKU SUPPLEMEN)COA UT21030084\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL-ACETATE, 20KG JUG (BHN BAKU SUPPLEMEN) COA XH20201101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL-ACETATE, 20KG JUG (BHN BAKU SUPPLEMEN) COA XH20201101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12105003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12105003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12105003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12105003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT21020040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT21020040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN), COA UT20100006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN), COA UT20100006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT20100006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT20100006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL02103655\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL02103655\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11210404\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11210404\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ10210551\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ10210551\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE FCC, 25KG BOX (BHN BAKU MAKANAN) COA 0000195880\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE FCC, 25KG BOX (BHN BAKU MAKANAN) COA 0000195880\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM REGULAR GRADE(BHN BAKU OBAT) COA 2106797,2106936,2106937,2106801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331900\", \"uraian\": \"METAMIZOLE SODIUM REGULAR GRADE(BHN BAKU OBAT) COA 2106797,2106936,2106937,2106801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019141M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019141M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECOGEL TM (BHN BAKU KOSMETIK) COA 2105102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ECOGEL TM (BHN BAKU KOSMETIK) COA 2105102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXO-P TM (BHN BAKU KOSMETIK) COA 715038112L\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EXO-P TM (BHN BAKU KOSMETIK) COA 715038112L\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019143M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019143M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROGELINE TM (BHN BAKU KOSMETIK) COA 211580\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROGELINE TM (BHN BAKU KOSMETIK) COA 211580\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769019139M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769019139M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANACHRYS 2B PF (BHN BAKU KOSMETIK) COA 793058976M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LANACHRYS 2B PF (BHN BAKU KOSMETIK) COA 793058976M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT TM 09 (BHN BAKU KOSMETIK) COA 784019061M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"TYROSTAT TM 09 (BHN BAKU KOSMETIK) COA 784019061M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MILD TALCUM MOD1 FM2 (BHN BAKU KOSMETIK) COA 10300228\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"MILD TALCUM MOD1 FM2 (BHN BAKU KOSMETIK) COA 10300228\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 197129\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 197129\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIDOCAINE HCL (BHN BAKU OBAT) COA 195759\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"LIDOCAINE HCL (BHN BAKU OBAT) COA 195759\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NONIVAMIDE (SYNTHETIC CAPSAICIN) BHN BAKU KOSMETIK, COA.20210630\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29241990\", \"uraian\": \"NONIVAMIDE (SYNTHETIC CAPSAICIN) BHN BAKU KOSMETIK, COA.20210630\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IONOL (R) CP (BHN BAKU KOSMETIK), COA 01131820\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29071900\", \"uraian\": \"IONOL (R) CP (BHN BAKU KOSMETIK), COA 01131820\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACARBOSE (BHN BAKU KOSMETIK) COA ACAP21020A\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"ACARBOSE (BHN BAKU KOSMETIK) COA ACAP21020A\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103151521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103151521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ONDANSETRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA 21OS002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"ONDANSETRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA 21OS002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB21060550\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB21060550\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFIBER AG (BHN BAKU MAKANAN), COA 003141\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SUNFIBER AG (BHN BAKU MAKANAN), COA 003141\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH647366\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH647366\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH647377\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH647377\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92106377\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92106377\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MINERAL PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92106463\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"MINERAL PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92106463\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0321050487, 0321050488\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0321050487, 0321050488\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0220040061\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0220040061\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0720010064\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHS, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0720010064\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001594056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SLX (BHN BAKU KOSMETIK) COA 0001594056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789, 20 KG BOX (BHN BAKU KOSMETIK) COA 0321050488, 0321050489\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789, 20 KG BOX (BHN BAKU KOSMETIK) COA 0321050488, 0321050489\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES2010464\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"ALLANTOIN (BHN BAKU KOSMETIK) COA ES2010464\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0520060060\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0520060060\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL02101008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL02101008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11210404\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11210404\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT21020009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT21020009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPPLEMEN) COA UQ10313120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPPLEMEN) COA UQ10313120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT20120092, UT21040020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT20120092, UT21040020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21040020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21040020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21040020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21040020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT21040018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT21040018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92106254\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92106254\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW92106376\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW92106376\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ10313120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ10313120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 2151045,2151048,2151055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"PARACETAMOL (BHN BAKU OBAT) COA 2151045,2151048,2151055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALAMINE , POWDER, BP 2021 (BHN BAKU SUPLEMEN) COA 3092304\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28369990\", \"uraian\": \"CALAMINE , POWDER, BP 2021 (BHN BAKU SUPLEMEN) COA 3092304\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA 8MT2107132\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30032000\", \"uraian\": \"STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA 8MT2107132\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 2AX2106057\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 2AX2106057\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2021040501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2021040501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1148193\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1148193\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1160733\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1160733\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SFE, SHF\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SFE, SHF\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA SGB\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) COA SGB\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1068182\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1068182\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01D154M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01D154M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) COA B01D154M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) COA B01D154M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERRIC PYROPHOSPHATE,APPROX 25PCT... (POST BORDER) COA 3101653\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28353990\", \"uraian\": \"FERRIC PYROPHOSPHATE,APPROX 25PCT... (POST BORDER) COA 3101653\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210603\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210603\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM21060-PGH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM21060-PGH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO210603\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO210603\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP-100 (10KG) BHN BAKU KOSMETIK, COA 105865\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSP-100 (10KG) BHN BAKU KOSMETIK, COA 105865\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP-101 (15KG) BHN BAKU KOSMETIK, COA 106404\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSP-101 (15KG) BHN BAKU KOSMETIK, COA 106404\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-54HV (18KG) BHN BAKU KOSMETIK, COA 007040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-54HV (18KG) BHN BAKU KOSMETIK, COA 007040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 14360621, 14290621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 14360621, 14290621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 15040621,15050621,15060621...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 15040621,15050621,15060621...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB21030293\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB21030293\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOPROFEN (BHN BAKU OBAT) COA. 197921\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29183000\", \"uraian\": \"KETOPROFEN (BHN BAKU OBAT) COA. 197921\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROPYPHENAZONE (ST) (BHN BAKU OBAT UTK PEWARNA TABLET) COA 2105066,5070,5071,5072,5073\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331100\", \"uraian\": \"PROPYPHENAZONE (ST) (BHN BAKU OBAT UTK PEWARNA TABLET) COA 2105066,5070,5071,5072,5073\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM CARBONATE DC TYPE CS90 PHARMA (BHN BAKU SUPPLEMEN) COA 202100181\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28365010\", \"uraian\": \"CALCIUM CARBONATE DC TYPE CS90 PHARMA (BHN BAKU SUPPLEMEN) COA 202100181\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA 183228\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELUCIRE 44/14 (BHN BAKU OBAT) COA 183228\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPRITOL 888 ATO (BHN BAKU OBAT) COA 185235\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"COMPRITOL 888 ATO (BHN BAKU OBAT) COA 185235\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABSORAGE (BHN BAKU KOSMETIK), COA 202322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ABSORAGE (BHN BAKU KOSMETIK), COA 202322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 211412\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNEBUSTERS (BHN BAKU KOSMETIK) COA 211412\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIOBENEFITY (BHN BAKU KOSMETIK), COA 211041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BIOBENEFITY (BHN BAKU KOSMETIK), COA 211041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIOCELLACT CHAMOMILLA BD (BHN BAKU KOSMETIK),COA 210382\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BIOCELLACT CHAMOMILLA BD (BHN BAKU KOSMETIK),COA 210382\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK),COA 211404\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK),COA 211404\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 211215\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 211215\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANDARIN CLEAR (BHN BAKU KOSMETIK) COA 211240\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"MANDARIN CLEAR (BHN BAKU KOSMETIK) COA 211240\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 211021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 211021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AP GRIT (ROUND)G 60-80 (BHN BAKU KOSMETIK) COA 210617\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AP GRIT (ROUND)G 60-80 (BHN BAKU KOSMETIK) COA 210617\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA DOC1812121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"SODIUM CARBONATE IPH (BHN BAKU OBAT) COA DOC1812121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA RBA1992100,RBA1942100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA RBA1992100,RBA1942100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-0210421, S-A-0210422, S-A-0210423\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334910\", \"uraian\": \"DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-0210421, S-A-0210422, S-A-0210423\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-091371\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-091371\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for YUZU EXTRACT (BHN BAKU KOSMETIK) COA CJUBD-021061,CJUBD-031271\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"YUZU EXTRACT (BHN BAKU KOSMETIK) COA CJUBD-021061,CJUBD-031271\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAMELLIA JAPONICA SEED OIL (BHN BAKU KOSMETIK) COA CJSO-021241\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAMELLIA JAPONICA SEED OIL (BHN BAKU KOSMETIK) COA CJSO-021241\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HOCOX (BHN BAKU KOSMETIK) COA HOXB-040641\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HOCOX (BHN BAKU KOSMETIK) COA HOXB-040641\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-622320\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-622320\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM HYALURONATE 1PCT SOLUTION (BHN BAKU KOSMETIK) COA HASC-130841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SODIUM HYALURONATE 1PCT SOLUTION (BHN BAKU KOSMETIK) COA HASC-130841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-030651\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-030651\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-030261\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-030261\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 720 (BHN BAKU KOSMETIK) COA 1570630\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 720 (BHN BAKU KOSMETIK) COA 1570630\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PI21060010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349920\", \"uraian\": \"PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PI21060010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE 99% TG (BHN BAKU SUPPLEMEN) COA WB210705960\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE 99% TG (BHN BAKU SUPPLEMEN) COA WB210705960\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CETIRIZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA 21016CZ6RII\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"CETIRIZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA 21016CZ6RII\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID S 20 (POST BORDER) COA 572000-2210137/037-049\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232010\", \"uraian\": \"LIPOID S 20 (POST BORDER) COA 572000-2210137/037-049\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIMOX POWDER (BHN BAKU OBAT) COA M485459\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"PURIMOX POWDER (BHN BAKU OBAT) COA M485459\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M534233,M534234,M534235,M534190,M534245\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M534233,M534234,M534235,M534190,M534245\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPRITOL 888 ATO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"COMPRITOL 888 ATO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TSPL-30-ID (BHN BAKU KOSMETIK) COA 002012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"TSPL-30-ID (BHN BAKU KOSMETIK) COA 002012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SHIN ETSU SILICONE KP-561P (BHN BAKU KOSMETIK) COA 104137\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SHIN ETSU SILICONE KP-561P (BHN BAKU KOSMETIK) COA 104137\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-7312K (BHN BAKU KOSMETIK) COA 105189\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-7312K (BHN BAKU KOSMETIK) COA 105189\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KP-545 (BHN BAKU KOSMETIK) COA 102932,105933\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KP-545 (BHN BAKU KOSMETIK) COA 102932,105933\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-15 (BHN BAKU KOSMETIK) COA 101512\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSG-15 (BHN BAKU KOSMETIK) COA 101512\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-16 (BHN BAKU KOSMETIK) COA 106370\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSG-16 (BHN BAKU KOSMETIK) COA 106370\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-18A (BHN BAKU KOSMETIK) COA 105045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSG-18A (BHN BAKU KOSMETIK) COA 105045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-19 (BHN BAKU KOSMETIK) COA 105095\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSG-19 (BHN BAKU KOSMETIK) COA 105095\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-016F (BHN BAKU KOSMETIK) COA 107449\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSG-016F (BHN BAKU KOSMETIK) COA 107449\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-41A (BHN BAKU KOSMETIK) COA 008014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSG-41A (BHN BAKU KOSMETIK) COA 008014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-43 (BHN BAKU KOSMETIK) COA 005094\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSG-43 (BHN BAKU KOSMETIK) COA 005094\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-44 (BHN BAKU KOSMETIK) COA 101094\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSG-44 (BHN BAKU KOSMETIK) COA 101094\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-045Z (BHN BAKU KOSMETIK) COA 104021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSG-045Z (BHN BAKU KOSMETIK) COA 104021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-048Z (BHN BAKU KOSMETIK) COA 102009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSG-048Z (BHN BAKU KOSMETIK) COA 102009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for X-21-5595 (BHN BAKU KOSMETIK) COA 105152\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"X-21-5595 (BHN BAKU KOSMETIK) COA 105152\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NBN-30-ID (BHN BAKU KOSMETIK) COA 008056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"NBN-30-ID (BHN BAKU KOSMETIK) COA 008056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TSPL-30-ID (BHN BAKU KOSMETIK) COA 002012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"TSPL-30-ID (BHN BAKU KOSMETIK) COA 002012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for X-21-5616 (BHN BAKU KOSMETIK) COA 006023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"X-21-5616 (BHN BAKU KOSMETIK) COA 006023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-9021-ID (BHN BAKU KOSMETIK) COA 011001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-9021-ID (BHN BAKU KOSMETIK) COA 011001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-042Z (BHN BAKU KOSMETIK) COA 106013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSG-042Z (BHN BAKU KOSMETIK) COA 106013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-42A (BHN BAKU KOSMETIK) COA 107013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSG-42A (BHN BAKU KOSMETIK) COA 107013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MOXIFLOXACIN HYDROCHLORIDE (BHN BAKU OBAT) COA MP0040421\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334990\", \"uraian\": \"MOXIFLOXACIN HYDROCHLORIDE (BHN BAKU OBAT) COA MP0040421\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 14 PREMIUM (BHN BAKU OBAT) COA D184L5P021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 14 PREMIUM (BHN BAKU OBAT) COA D184L5P021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISONE USP42 (BHN BAKU OBAT) COA NPD210708\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISONE USP42 (BHN BAKU OBAT) COA NPD210708\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYPROHEPTADINE HCL (BHN BAKU OBAT) COA CYP/07211022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"CYPROHEPTADINE HCL (BHN BAKU OBAT) COA CYP/07211022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG210702, MCVG210709\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG210702, MCVG210709\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (POST BORDER) COA MTP19021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (POST BORDER) COA MTP19021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (POST BORDER) COA MTP19021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (POST BORDER) COA MTP19021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (POST BORDER) COA MTP17421,MTP18921\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA API 0/13 SODIUM BICARBONATE (POST BORDER) COA MTP17421,MTP18921\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 21290005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 21290005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 21290005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 21290005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 21290005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 21290005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 21290005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 21290005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 21290005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 21290005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 21290005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 21290005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 21290005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 21290005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFADROXIL MONOHYDRATE COMPACTED (BHN BAKU OBAT) COA B340303, B340305, B340309\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFADROXIL MONOHYDRATE COMPACTED (BHN BAKU OBAT) COA B340303, B340305, B340309\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (POST BORDER) COA 2109331509\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (POST BORDER) COA 2109331509\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M534309,323,324,310,317,308,332\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M534309,323,324,310,317,308,332\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544479\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544479\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544594\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544594\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544575\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544575\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544585\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544585\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELOXICAM BP/EP (BHN BAKU OBAT) COA HMXCPP003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29341000\", \"uraian\": \"MELOXICAM BP/EP (BHN BAKU OBAT) COA HMXCPP003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MC-GLUCAN (BHN BAKU KOSMETIK) COA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"MC-GLUCAN (BHN BAKU KOSMETIK) COA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT21040018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT21040018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12105030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12105030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT21020008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT21020008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT21020008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT21020008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW92107069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 C (BHN BAKU MAKANAN) COA XW92107069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 - C3 (BHN BAKU MAKANAN) COA XW92107304,XW92107305\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 - C3 (BHN BAKU MAKANAN) COA XW92107304,XW92107305\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT21030084\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT21030084\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11210406\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11210406\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT21030067\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT21030067\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12105030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12105030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12105030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12105030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPPLEMEN) COA UQ10209504\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN TABLET GRADE (BHN BAKU SUPPLEMEN) COA UQ10209504\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02104690\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02104690\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ10113538\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ10113538\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3% (BHN BAKU SUPPLEMEN) COA WB20030074\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3% (BHN BAKU SUPPLEMEN) COA WB20030074\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU SUPPLEMEN) COA UT21020204\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU SUPPLEMEN) COA UT21020204\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT21030084\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT21030084\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ10210551, UQ10210553, UQ10210554\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ10210551, UQ10210553, UQ10210554\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3 PCT (BHN BAKU SUPPLEMEN) COA WB20040052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3 PCT (BHN BAKU SUPPLEMEN) COA WB20040052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ10213560\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ10213560\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3 PCT (BHN BAKU SUPPLEMEN) COA WB20040052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3 PCT (BHN BAKU SUPPLEMEN) COA WB20040052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ10210554\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ10210554\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ10210554\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ10210554\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VP DN03 (BHN BAKU MAKANAN) COA XW92106435\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VP DN03 (BHN BAKU MAKANAN) COA XW92106435\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21030135\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21030135\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02104690, TL02104693\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02104690, TL02104693\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11210406\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11210406\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ10112038\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ10112038\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0060521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0060521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (POST BORDER) COA 2109361604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (POST BORDER) COA 2109361604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH647890\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH647890\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH646694\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH646694\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 19072021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25081000\", \"uraian\": \"BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 19072021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 20210719\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25081000\", \"uraian\": \"BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 20210719\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90% GRANULATION (BHN BAKU SUPPLEMEN) COA WB21049079, WB21049084\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90% GRANULATION (BHN BAKU SUPPLEMEN) COA WB21049079, WB21049084\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90% GRANULATION (BHN BAKU SUPPLEMEN) COA WB21019035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90% GRANULATION (BHN BAKU SUPPLEMEN) COA WB21019035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20210503\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20210503\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20210503\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20210503\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM CARBONATE IPH (BHN BAKU SUPPLEMEN) COA DOC1582121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"SODIUM CARBONATE IPH (BHN BAKU SUPPLEMEN) COA DOC1582121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA RBA1962100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA RBA1962100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 985-L-MENTHOL CRYSTALS INDIAN NATURAL (BHN BAKU KOSMETIK) COA NFPL-MEN-20-23\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"985-L-MENTHOL CRYSTALS INDIAN NATURAL (BHN BAKU KOSMETIK) COA NFPL-MEN-20-23\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (POST BORDER) COA MTP19021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (POST BORDER) COA MTP19021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JAGUAR HP 105 SGI (BHN BAKU KOSMETIK) COA H2103045A\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"JAGUAR HP 105 SGI (BHN BAKU KOSMETIK) COA H2103045A\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210603\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210603\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WITCH HAZEL ORGANIC DISTILLATE 1:10 (SB) (BHN BAKU KOSMETIK) COA HAVD210705-BIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"WITCH HAZEL ORGANIC DISTILLATE 1:10 (SB) (BHN BAKU KOSMETIK) COA HAVD210705-BIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSE OILY EXTRACT (BHN BAKU KOSMETIK) COA ROS210703-H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROSE OILY EXTRACT (BHN BAKU KOSMETIK) COA ROS210703-H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 210318\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 210318\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OILESS CITY TM (BHN BAKU KOSMETIK) COA 210324\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"OILESS CITY TM (BHN BAKU KOSMETIK) COA 210324\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1131086\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1131086\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0226415\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0226415\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0097374,1053886\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0097374,1053886\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065943\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065943\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0226415\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0226415\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 1063138\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 1063138\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 9256006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 9256006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1053886\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1053886\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30 ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1131086\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30 ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1131086\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1139984\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1139984\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0114639\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0114639\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1063164\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1063164\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1110880\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1110880\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH1097818,1153205\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH1097818,1153205\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY FX YELLOW (BHN BAKU PEWARNA TABLET) COA GA694355\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY FX YELLOW (BHN BAKU PEWARNA TABLET) COA GA694355\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY SGR TRANSLUCENT (BHN BAKU PEWARNA TABLET) COA GA694365\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY SGR TRANSLUCENT (BHN BAKU PEWARNA TABLET) COA GA694365\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY SGR TRANSLUCENT (BHN BAKU PEWARNA TABLET) COA GA694365\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY SGR TRANSLUCENT (BHN BAKU PEWARNA TABLET) COA GA694365\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY SGR CLEAR (BHN BAKU PEWARNA TABLET) COA GA694366\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY SGR CLEAR (BHN BAKU PEWARNA TABLET) COA GA694366\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BODY 3 COMPLEX (BHN BAKU KOSMETIK) COA B3C020421\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"BODY 3 COMPLEX (BHN BAKU KOSMETIK) COA B3C020421\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MINIPORYL TM (BHN BAKU KOSMETIK) COA 832019418M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MINIPORYL TM (BHN BAKU KOSMETIK) COA 832019418M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B WHITE (BHN BAKU KOSMETIK) COA 829018970M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"B WHITE (BHN BAKU KOSMETIK) COA 829018970M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019141M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019141M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834019444M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834019444M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECOGEL TM (BHN BAKU KOSMETIK), COA 2113702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ECOGEL TM (BHN BAKU KOSMETIK), COA 2113702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK), COA 2105706\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK), COA 2105706\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK), COA 782019143M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK), COA 782019143M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MINIPORYL TM (BHN BAKU KOSMETIK), COA 832019418M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MINIPORYL TM (BHN BAKU KOSMETIK), COA 832019418M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSALITY TM (BHN BAKU KOSMETIK), COA 2012801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROSALITY TM (BHN BAKU KOSMETIK), COA 2012801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSALITY TM (BHN BAKU KOSMETIK), COA 2033901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROSALITY TM (BHN BAKU KOSMETIK), COA 2033901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSALITY TM (BHN BAKU KOSMETIK) COA 2100901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROSALITY TM (BHN BAKU KOSMETIK) COA 2100901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029189M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029189M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029189M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029189M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH647079\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH647079\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH647078\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH647078\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH647076\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH647076\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH647080\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH647080\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01D154M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01D154M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-210521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-210521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM \nHYDROXYPROPYL METHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D18L3U001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM \nHYDROXYPROPYL METHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D18L3U001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544539\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544539\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544544\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544544\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543744\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543744\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1148193\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1148193\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1140816\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1140816\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASAMINO ACIDS TECHNICAL 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1118056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASAMINO ACIDS TECHNICAL 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1118056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASAMINO ACIDS TECHNICAL 10KG EA (MEDIA U/PENGEMBANGAN MIKRO ORGANISME)BATCH 1118056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASAMINO ACIDS TECHNICAL 10KG EA (MEDIA U/PENGEMBANGAN MIKRO ORGANISME)BATCH 1118056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASAMINO ACIDS TECHNICAL 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1095082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASAMINO ACIDS TECHNICAL 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1095082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASAMINO ACIDS TECHNICAL 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1118056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASAMINO ACIDS TECHNICAL 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1118056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2260443\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2260443\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2260443\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2260443\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2316462\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2316462\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2316462\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2316462\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1004958\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1004958\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0022270\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0022270\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0335766\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0335766\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 00343138\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 00343138\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 00343138\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 00343138\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0365879\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0365879\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO LACTALBUMIN HYDROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0349743\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO LACTALBUMIN HYDROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0349743\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-CARNITINE (EP GRADE)(BHN BAKU KOSMETIK)COA 10100120210529\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29239000\", \"uraian\": \"L-CARNITINE (EP GRADE)(BHN BAKU KOSMETIK)COA 10100120210529\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2A AGAR 500 G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335617\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE R2A AGAR 500 G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335617\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1068148\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1068148\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0286569\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0286569\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTERIOLOGICAL 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283868\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTERIOLOGICAL 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283868\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0217346\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D SORBITOL 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0217346\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1047444\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1047444\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POLYSORBATE 80 100G 1 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1161396\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POLYSORBATE 80 100G 1 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1161396\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1140042\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1140042\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1165835\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1165835\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRAIN HEART INFUSION BBL 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1159375\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRAIN HEART INFUSION BBL 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1159375\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST NITROGEN BASE W/O AA 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1097792\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE YEAST NITROGEN BASE W/O AA 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1097792\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1081408\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1081408\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01D091M,B01D130M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01D091M,B01D130M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GELATIN 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1102066\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GELATIN 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1102066\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1096296\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1096296\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1111125\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1111125\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1007102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOSE BROTH 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1007102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1068148\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1068148\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2A AGAR 500 G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335617\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE R2A AGAR 500 G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335617\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1047444\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1047444\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335781,110\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335781,110\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0350002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EC MEDIUM 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0350002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0365716\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE BROTH 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0365716\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1040269\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1040269\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500 GR(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1026614\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500 GR(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1026614\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1081510\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1081510\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1048461\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1048461\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MIO MEDIUM 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0091372\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MIO MEDIUM 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0091372\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR TECHNICAL 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1088540\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR TECHNICAL 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1088540\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1007102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOSE BROTH 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1007102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283759\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283759\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1068148\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1068148\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B02D119M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B02D119M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1117783\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1117783\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01D095M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01D095M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2A AGAR 500 G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335617\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE R2A AGAR 500 G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335617\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500 GR )(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0322946\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500 GR )(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0322946\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283759\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283759\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GELATIN 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1102066\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GELATIN 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1102066\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283868\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR BACTERIOLOGICAL 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283868\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1081578\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1081578\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1068148\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1068148\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0293248\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0293248\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1042590\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1042590\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 035002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EC MEDIUM 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 035002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0244908,1081408\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0244908,1081408\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST NITROGEN BASE W/O AA 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1097792\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE YEAST NITROGEN BASE W/O AA 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1097792\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BLOOD AGAR BASE 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0286355\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BLOOD AGAR BASE 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0286355\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0273380\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SIMMONS CITRATE AGAR BBL 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0273380\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0272792\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LYSINE DECARBOXYLASE BROTH 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0272792\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE OF BASAL MEDIUM 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1082936\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE OF BASAL MEDIUM 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1082936\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M ENDO AGAR LES 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1042613\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M ENDO AGAR LES 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1042613\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50 PCT CWS/S (BHN BAKU MAKANAN) COA UE02105079\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50 PCT CWS/S (BHN BAKU MAKANAN) COA UE02105079\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21040141\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21040141\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12105031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12105031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU MAKANAN) COA UT21020042\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU MAKANAN) COA UT21020042\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU MAKANAN) COA UT21020042\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU MAKANAN) COA UT21020042\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU MAKANAN) COA UT21020042\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU MAKANAN) COA UT21020042\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU MAKANAN) COA UT21020042\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU MAKANAN) COA UT21020042\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50 PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21040012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50 PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21040012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA QZ11210406\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA QZ11210406\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT20120030, UT21040007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT20120030, UT21040007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02102012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02102012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2009106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2009106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50 PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21040012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50 PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21040012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02006024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02006024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21040007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21040007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT20040087\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT20040087\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT20040087\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT20040087\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21040141\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21040141\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50 PCT CWS/S (BHN BAKU MAKANAN) COA UE02105079\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50 PCT CWS/S (BHN BAKU MAKANAN) COA UE02105079\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ10413153\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ10413153\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21050139\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21050139\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21050139\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21050139\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21050139\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21050139\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0721010014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHS (BHN BAKU KOSMETIK) COA 0721010014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21050139\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21050139\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0721010014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHS (BHN BAKU KOSMETIK) COA 0721010014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0421040024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HMS (BHN BAKU KOSMETIK) COA 0421040024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL02105696\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL02105696\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT21060051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT21060051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30 PCT FS (BHN BAKU MAKANAN) COA UE02105040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30 PCT FS (BHN BAKU MAKANAN) COA UE02105040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GENIVIDA(TM) TG (BHN BAKU SUPPLEMEN) COA UT19040001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"GENIVIDA(TM) TG (BHN BAKU SUPPLEMEN) COA UT19040001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) (LYCOPENE) 10 PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT21050003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"REDIVIVO (R) (LYCOPENE) 10 PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT21050003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1 PCT WS (BHN BAKU MAKANAN) COA UT20100059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1 PCT WS (BHN BAKU MAKANAN) COA UT20100059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5 PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT21020013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5 PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT21020013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30 PCT FS (BHN BAKU SUPLEMEN) COA UE02105040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30 PCT FS (BHN BAKU SUPLEMEN) COA UE02105040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) (LYCOPENE) 10 PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT21050003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"REDIVIVO (R) (LYCOPENE) 10 PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT21050003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) (LYCOPENE) 10 PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT21050003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"REDIVIVO (R) (LYCOPENE) 10 PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT21050003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) (LYCOPENE) 10 PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT21050003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"REDIVIVO (R) (LYCOPENE) 10 PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT21050003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21040003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21040003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT21050039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT21050039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GUAIFENESIN USP 42 (B. BAKU OBAT) COA GGE-2106083 - GGE-2107095,GGE-2105080\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29094900\", \"uraian\": \"GUAIFENESIN USP 42 (B. BAKU OBAT) COA GGE-2106083 - GGE-2107095,GGE-2105080\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CARBAZOCHROME SODIUM SULFONATE ORAL G (BHN BAKU OBAT)COA AC10601/10623\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"CARBAZOCHROME SODIUM SULFONATE ORAL G (BHN BAKU OBAT)COA AC10601/10623\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARACETAMOL USP (BHN BAKU OBAT) COA 2110058, 21100640, 2130036\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"PARACETAMOL USP (BHN BAKU OBAT) COA 2110058, 21100640, 2130036\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX POWDER (BHN BAKU OBA) COA B334758,B334760,B334761,B334765\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX POWDER (BHN BAKU OBA) COA B334758,B334760,B334761,B334765\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POTASSIUM L-ASPARTATE 0.5-HYDRATE (BHN BAKU OBAT) COA 3097106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"POTASSIUM L-ASPARTATE 0.5-HYDRATE (BHN BAKU OBAT) COA 3097106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS SULFATE,DRIED, POWDER, USP43 (BHN BAKU SUPLEMEN) COA 3103276,3090743\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"FERROUS SULFATE,DRIED, POWDER, USP43 (BHN BAKU SUPLEMEN) COA 3103276,3090743\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM CARBONATE, HEAVY (BHN BAKU OBAT) COA 3091896,1104812\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28369990\", \"uraian\": \"MAGNESIUM CARBONATE, HEAVY (BHN BAKU OBAT) COA 3091896,1104812\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SELOHVITA C (BHN BAKU OBAT) COA 3103151\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28429010\", \"uraian\": \"SELOHVITA C (BHN BAKU OBAT) COA 3103151\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM GLYCEROPHOSPHATE CRYST.,PH FRANC X(BHN BAKU SUPLEMEN) COA 3084920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29199000\", \"uraian\": \"SODIUM GLYCEROPHOSPHATE CRYST.,PH FRANC X(BHN BAKU SUPLEMEN) COA 3084920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINC SULFATE 7-HYDRATE, CRYST, PH.EUR.10.ED (BHN BAKU OBAT) COA 3101060\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"ZINC SULFATE 7-HYDRATE, CRYST, PH.EUR.10.ED (BHN BAKU OBAT) COA 3101060\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050489, 0321050490, 0321050491, 0321050492\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050489, 0321050490, 0321050491, 0321050492\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050492, 0321050493, 0321050494\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050492, 0321050493, 0321050494\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000196754, 0000196755\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000196754, 0000196755\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF21092004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF21092004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MONENDOX 200 BMP (BHN BAKU UTK PAKAN TERNAK) COA 2107121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"MONENDOX 200 BMP (BHN BAKU UTK PAKAN TERNAK) COA 2107121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90 PCT GRANULATION (BHN BAKU SUPPLEMEN) COA WB21049096\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90 PCT GRANULATION (BHN BAKU SUPPLEMEN) COA WB21049096\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL A15 PREMIUM LV METHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D180K57021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL A15 PREMIUM LV METHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D180K57021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E5 PREMIUM LV HYDROXYPROPYL METHYLCELLULOSE(BHN BAKU PEWARNA TABLET)COA D011K4HE02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E5 PREMIUM LV HYDROXYPROPYL METHYLCELLULOSE(BHN BAKU PEWARNA TABLET)COA D011K4HE02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM HYDROXYPROPYL METHYLCELLULOSE(BHN BAKU PEWARNA TABLET)COA D180KCJ003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM HYDROXYPROPYL METHYLCELLULOSE(BHN BAKU PEWARNA TABLET)COA D180KCJ003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL METHYLCELLULOSE(BHN BAKU PEWARNA TABLET)COA D180L1I001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM HYDROXYPROPYL METHYLCELLULOSE(BHN BAKU PEWARNA TABLET)COA D180L1I001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL METHYLCELLULOSE(BHN BAKU PEWARNA TABLET)COA D180L1J001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM HYDROXYPROPYL METHYLCELLULOSE(BHN BAKU PEWARNA TABLET)COA D180L1J001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E50 PREMIUM LV HYDROXYPROPYL METHYLCELLULOSE(BHN BAKU PEWARNA TABLET)COAD011K4EL02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E50 PREMIUM LV HYDROXYPROPYL METHYLCELLULOSE(BHN BAKU PEWARNA TABLET)COAD011K4EL02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL METHYLCELLULOSE(BHN BAKU PEWARNA TABLET)COAD011K72L01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV HYDROXYPROPYL METHYLCELLULOSE(BHN BAKU PEWARNA TABLET)COAD011K72L01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL METHYLCELLULOSE(BHN BAKU PEWARNA TABLET)COAD180K5T003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM CR HYDROXYPROPYL METHYLCELLULOSE(BHN BAKU PEWARNA TABLET)COAD180K5T003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL METHYLCELLULOSE(BHN BAKU PEWARNA TABLET) COAD180J9O003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM HYDROXYPROPYL METHYLCELLULOSE(BHN BAKU PEWARNA TABLET) COAD180J9O003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E15 PREMIUM LV HYDROXYPROPYL METHYLCELLULOSE(BHN BAKU PEWARNA TABLET)COAD011K5SL02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E15 PREMIUM LV HYDROXYPROPYL METHYLCELLULOSE(BHN BAKU PEWARNA TABLET)COAD011K5SL02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANTOPRAZOLE SODIUM (STERILE) BAHAN BAKU OBAT SI/PPZ/01090721\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"PANTOPRAZOLE SODIUM (STERILE) BAHAN BAKU OBAT SI/PPZ/01090721\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA SH647139\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA SH647139\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA SH647138\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA SH647138\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH647107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH647107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH647108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH647108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH647109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH647109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH647110\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH647110\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH647130\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH647130\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH647136\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH647136\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH647111\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH647111\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH647359\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH647359\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH645305\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH645305\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH647113\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH647113\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH647137\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH647137\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH647114\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH647114\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH647115\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH647115\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH647116\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH647116\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY YELLOW (BHN BAKU PEWARNA TABLET) COA SH647117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY YELLOW (BHN BAKU PEWARNA TABLET) COA SH647117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH647700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH647700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH647134\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH647134\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH647133\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH647133\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH646694\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH646694\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH647135\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH647135\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH647294\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH647294\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH647133\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH647133\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 2109371648\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 2109371648\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 1400/1700 SUGLETS 1400/1700 (12/14 MESH) BHN BAKU PEWARNA TABLET) COA ST516915\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"1400/1700 SUGLETS 1400/1700 (12/14 MESH) BHN BAKU PEWARNA TABLET) COA ST516915\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH647477\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH647477\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH648241\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH648241\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 14 PREMIUM ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D184L5P021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 14 PREMIUM ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D184L5P021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122101134,122101135\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122101134,122101135\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122100910\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122100910\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122100909\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122100909\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R)12 (BHN BAKU OBAT) COA 122100927\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R)12 (BHN BAKU OBAT) COA 122100927\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122100871\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054300\", \"uraian\": \"MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122100871\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122100871\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054300\", \"uraian\": \"MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122100871\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANNITOL POWDER USP/EP - MANNO (POST BORDER) COA 302106305\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054300\", \"uraian\": \"MANNITOL POWDER USP/EP - MANNO (POST BORDER) COA 302106305\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122100927\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122100927\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122100871\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054300\", \"uraian\": \"MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122100871\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122100871\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054300\", \"uraian\": \"MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122100871\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B WHITE TM (BHN BAKU KOSMETIK) COA 829019351M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"B WHITE TM (BHN BAKU KOSMETIK) COA 829019351M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B WHITE TM (BHN BAKU KOSMETIK) COA 829019351M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"B WHITE TM (BHN BAKU KOSMETIK) COA 829019351M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769019139M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769019139M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANACHRYS 2B PF (PRESERVATIVE) (BHN BAKU KOSMETIK) COA 793059142M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LANACHRYS 2B PF (PRESERVATIVE) (BHN BAKU KOSMETIK) COA 793059142M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK), COA 784029189M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"TYROSTAT TM 11 (BHN BAKU KOSMETIK), COA 784029189M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5 PCT CLEAR (BHN BAKU KOSMETIK), COA 785019289M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5 PCT CLEAR (BHN BAKU KOSMETIK), COA 785019289M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) COA 321CAA0002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CETRIMIDE (BHN BAKU KOSMETIK) COA 321CAA0002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R)12 (BHN BAKU OBAT) COA 122101134\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R)12 (BHN BAKU OBAT) COA 122101134\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-022631\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-022631\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-021820\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-021820\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CARBAMIDE (BHN BAKU KOSMETIK) COA U210805\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CARBAMIDE (BHN BAKU KOSMETIK) COA U210805\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPAREX (BHN BAKU KOSMETIK) COA COEX-031181\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPAREX (BHN BAKU KOSMETIK) COA COEX-031181\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PF CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSSBD-011351\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PF CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSSBD-011351\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RUBUS IDAEUS FRUIT EXTRACT (BHN BAKU KOSMETIK) COA RCFW-020720\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"RUBUS IDAEUS FRUIT EXTRACT (BHN BAKU KOSMETIK) COA RCFW-020720\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-041281\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-041281\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD&C BLUE 2/INDIGO CARMINE AL 11 PCT - 14 PCT (BHN BAKU PEWARNA TABLET) COA WP837604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD&C BLUE 2/INDIGO CARMINE AL 11 PCT - 14 PCT (BHN BAKU PEWARNA TABLET) COA WP837604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D&C YELLOW 10 AL 15 PCT - 20 PCT (BHN BAKU PEWARNA TABLET) COA WP831856\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"D&C YELLOW 10 AL 15 PCT - 20 PCT (BHN BAKU PEWARNA TABLET) COA WP831856\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD&C YELLOW 6/SUNSET YELLOW... (BHN BAKU PEWARNA TABLET) COA WP839965\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD&C YELLOW 6/SUNSET YELLOW... (BHN BAKU PEWARNA TABLET) COA WP839965\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD&C YELLOW 5/TARTRAZINE AL... (BHN BAKU PEWARNA TABLET) COA WP833409\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD&C YELLOW 5/TARTRAZINE AL... (BHN BAKU PEWARNA TABLET) COA WP833409\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERYTHROSINE AL 38 PCT - 42 PCT (BHN BAKU UTK PEWARNA TABLET) COA WP824673\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"ERYTHROSINE AL 38 PCT - 42 PCT (BHN BAKU UTK PEWARNA TABLET) COA WP824673\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D&C YELLOW 10 AL 15 PCT - 20 PCT (BHN BAKU PEWARNA TABLET) COA WP831856\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"D&C YELLOW 10 AL 15 PCT - 20 PCT (BHN BAKU PEWARNA TABLET) COA WP831856\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MATCHA ( BHN BAKU KOSMETIK), COA CSP 21003 EOU\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MATCHA ( BHN BAKU KOSMETIK), COA CSP 21003 EOU\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00699076, VE00699077\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"AMPHISOL K (BHN BAKU KOSMETIK) COA VE00699076, VE00699077\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT21031049\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT21031049\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT21040018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT21040018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92107260, XW92107261\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"V003400 (BHN BAKU MAKANAN) COA XW92107260, XW92107261\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000195881\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000195881\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL02101747, TL02101752, TL02101762\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL02101747, TL02101752, TL02101762\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWDER FORM CATCOL C135(L) GRADE(B.BAKU KOSMETIK) COA 371/21\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GUAR GUM TREATED AND PULVERISED IN POWDER FORM CATCOL C135(L) GRADE(B.BAKU KOSMETIK) COA 371/21\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHAMBUTOL (BHN BAKU OBAT) COA N1037533,N1041088-N1041095,N1042458-N1042461,....\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221910\", \"uraian\": \"ETHAMBUTOL (BHN BAKU OBAT) COA N1037533,N1041088-N1041095,N1042458-N1042461,....\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLOPURINOL USP (BHN BAKU OBAT) COA 20042AY3ARIIX\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"ALLOPURINOL USP (BHN BAKU OBAT) COA 20042AY3ARIIX\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID PPL-600 (BHN BAKU SUPPLEMEN) COA 57200-2210229\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232010\", \"uraian\": \"LIPOID PPL-600 (BHN BAKU SUPPLEMEN) COA 57200-2210229\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METOCLOPRAMIDE HYDROCHLORIDE USP (BHN BAKU OBAT) COA 21005M4RII\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"METOCLOPRAMIDE HYDROCHLORIDE USP (BHN BAKU OBAT) COA 21005M4RII\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METOCLOPRAMIDE HYDROCHLORIDE BP (BHN BAKU OBAT) COA M-2107415\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"METOCLOPRAMIDE HYDROCHLORIDE BP (BHN BAKU OBAT) COA M-2107415\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIAMI SCG(S) (BHN BAKU KOSMETIK) COA 21060455,21080555\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34021190\", \"uraian\": \"MIAMI SCG(S) (BHN BAKU KOSMETIK) COA 21060455,21080555\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD&C RED 40/ALLURA RED AC AL38 PCT- 42 PCT (BHN BAKU PEWARNA TABLET) COA WP835349\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD&C RED 40/ALLURA RED AC AL38 PCT- 42 PCT (BHN BAKU PEWARNA TABLET) COA WP835349\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP - PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP843157\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP - PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP843157\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP - PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP843515\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP - PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP843515\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP - PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP843152\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP - PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP843152\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD&C YELLOW 5/TARTRAZINE AL 36 PCT - 39 PCT (BHN BAKU PEWARNA TABLET) COA WP833410\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD&C YELLOW 5/TARTRAZINE AL 36 PCT - 39 PCT (BHN BAKU PEWARNA TABLET) COA WP833410\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD&C YELLOW 6/SUNSET YELLOWFCF AL 38 PCT- 42 PCT (BHN BAKU PEWARNA TABLET) COA WP839969\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD&C YELLOW 6/SUNSET YELLOWFCF AL 38 PCT- 42 PCT (BHN BAKU PEWARNA TABLET) COA WP839969\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D&C YELLOW 10 AL 15 PCT - 20 PCT (BHN BAKU PEWARNA TABLET) COA WP831856\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"D&C YELLOW 10 AL 15 PCT - 20 PCT (BHN BAKU PEWARNA TABLET) COA WP831856\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERYTHROSINE AL 38 PCT -42 PCT (BHN BAKU PEWARNA TABLET) COA WP822182\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"ERYTHROSINE AL 38 PCT -42 PCT (BHN BAKU PEWARNA TABLET) COA WP822182\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIOBENEFITY (BHN BAKU KOSMETIK) COA 211041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BIOBENEFITY (BHN BAKU KOSMETIK) COA 211041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMFREY LIQUID B (BHN BAKU KOSMETIK), COA 210890\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"COMFREY LIQUID B (BHN BAKU KOSMETIK), COA 210890\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK), COA 210884\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK), COA 210884\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK),COA 211238\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNEBUSTERS (BHN BAKU KOSMETIK),COA 211238\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 201330\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 201330\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIOBENEFITY (BHN BAKU KOSMETIK) COA 211041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BIOBENEFITY (BHN BAKU KOSMETIK) COA 211041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SOAPNUT EXTRACT POWDER (BHN BAKU KOSMETIK) COA 211309\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SOAPNUT EXTRACT POWDER (BHN BAKU KOSMETIK) COA 211309\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM REGULAR GRADE(BHN BAKU OBAT) COA 21071134,21081214,1215,1216,1217,1219,1220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331900\", \"uraian\": \"METAMIZOLE SODIUM REGULAR GRADE(BHN BAKU OBAT) COA 21071134,21081214,1215,1216,1217,1219,1220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IBUPROFEN (BHN BAKU OBAT) COA 21087493\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29163990\", \"uraian\": \"IBUPROFEN (BHN BAKU OBAT) COA 21087493\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for C47-051 SUNCROMA TITANIUM DIOXIDE (BHN BAKU KOSMETIK) COA D0NT17\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"C47-051 SUNCROMA TITANIUM DIOXIDE (BHN BAKU KOSMETIK) COA D0NT17\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOTAXIME SODIUM STERILE USP (BHN BAKU OBAT) COA A200300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOTAXIME SODIUM STERILE USP (BHN BAKU OBAT) COA A200300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA A201000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA A201000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COPPER SULFATE, POWDER, PH.EUR.10.ED (BHN BAKU SUPLEMEN) COA 3099671\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332500\", \"uraian\": \"COPPER SULFATE, POWDER, PH.EUR.10.ED (BHN BAKU SUPLEMEN) COA 3099671\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 10715,10716\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 10715,10716\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 08-05-21\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25070000\", \"uraian\": \"KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 08-05-21\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 3192764\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 3192764\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CATECHINS TEAVIGO 1KG (BHN BAKU KOSMETIK), COA 105161\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"CATECHINS TEAVIGO 1KG (BHN BAKU KOSMETIK), COA 105161\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISONE USP42 (BHN BAKU OBAT) COA NPD210830\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISONE USP42 (BHN BAKU OBAT) COA NPD210830\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE EP9/USP43 (BHN BAKU OBAT) COA NEDNA210801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE SODIUM PHOSPHATE EP9/USP43 (BHN BAKU OBAT) COA NEDNA210801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA EDS/CA14507\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"ERDOSTEINE (BAHAN BAKU OBAT) COA EDS/CA14507\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOSWELLIA SERRATA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 21T0040100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"BOSWELLIA SERRATA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 21T0040100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R)12 (BHN BAKU OBAT) COA 122101136\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R)12 (BHN BAKU OBAT) COA 122101136\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH648472\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH648472\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH648473\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH648473\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL A15 PREMIUM LV (BHN BAKU PEWARNA TABLET) COA D180K57021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL A15 PREMIUM LV (BHN BAKU PEWARNA TABLET) COA D180K57021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D180K3O001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D180K3O001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYLMETHYLCELLUL(BHN BAKU PEWARNA TABLET) COA D180KBO002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR HYDROXYPROPYLMETHYLCELLUL(BHN BAKU PEWARNA TABLET) COA D180KBO002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 20 PREMIUM (BHN BAKU PEWARNA TABLET) COA D184L1J021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 20 PREMIUM (BHN BAKU PEWARNA TABLET) COA D184L1J021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 20 PREMIUM (BHN BAKU PEWARNA TABLET) COA D184L1J021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 20 PREMIUM (BHN BAKU PEWARNA TABLET) COA D184L1J021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 20 PREMIUM (BHN BAKU PEWARNA TABLET) COA D184L1J021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 20 PREMIUM (BHN BAKU PEWARNA TABLET) COA D184L1J021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D180L51022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D180L51022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D011K72L01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D011K72L01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D011K4PL02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D011K4PL02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D180K61001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM CR HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D180K61001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 10 PREMIUM (BHN BAKU PEWARNA TABLET) COA D184L3B021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 10 PREMIUM (BHN BAKU PEWARNA TABLET) COA D184L3B021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 10 PREMIUM (BHN BAKU PEWARNA TABLET) COA D184K9A021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 10 PREMIUM (BHN BAKU PEWARNA TABLET) COA D184K9A021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP20221, MTP20321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP20221, MTP20321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT21040012, UT21040013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT21040012, UT21040013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT21040032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT21040032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30 PCT FS (BHN BAKU MAKANAN) COA UE02105041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30 PCT FS (BHN BAKU MAKANAN) COA UE02105041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT21060018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT21060018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30 PCT FS (BHN BAKU MAKANAN) COA UE02105041,UE02105042\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30 PCT FS (BHN BAKU MAKANAN) COA UE02105041,UE02105042\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ10316049,UQ10316050,UQ10316051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ10316049,UQ10316050,UQ10316051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT21060018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT21060018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT21060018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT21060018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL02105566\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU MAKANAN) COA TL02105566\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02105566\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02105566\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT21070033\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT21070033\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1 PCT WS (BHN BAKU SUPPLEMEN) COA UT20100060,UT20100061\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1 PCT WS (BHN BAKU SUPPLEMEN) COA UT20100060,UT20100061\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT21061085\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT21061085\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30 PCT FS (BHN BAKU SUPPLEMEN) COA UE02105042\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30 PCT FS (BHN BAKU SUPPLEMEN) COA UE02105042\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5 PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT21020013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5 PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT21020013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTISHARP (ZEAXANTHIN) 5 PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT18100002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"OPTISHARP (ZEAXANTHIN) 5 PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT18100002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NORFLOXACIN (BHN BAKU PAKAN HEWAN) COA 210327,210328\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"NORFLOXACIN (BHN BAKU PAKAN HEWAN) COA 210327,210328\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH648757\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH648757\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH648763\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH648763\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2 PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0039100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2 PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0039100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2 PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0039200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2 PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0039200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2 PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0052600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2 PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0052600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2 PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0052700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2 PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0052700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334752\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX POWDER (BHN BAKU OBAT) COA B334752\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340310, B340311,B340312\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX COMPACTED (BHN BAKU OBAT) COA B340310, B340311,B340312\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG210723,MCVG210730\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG210723,MCVG210730\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANNOGEM (R) XL OPAL SPRAY DRIED MANNITOL USP/EP (BHN BAKU OBAT) COA 122101074\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054300\", \"uraian\": \"MANNOGEM (R) XL OPAL SPRAY DRIED MANNITOL USP/EP (BHN BAKU OBAT) COA 122101074\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP - PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP843718\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP - PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP843718\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP - PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP843719\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP - PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP843719\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD&C YELLOW 6/SUNSET YELLOW FCF AL 38 PCT- 42 PCT (BHN BAKU PEWARNA TABLET) COA WP831242\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD&C YELLOW 6/SUNSET YELLOW FCF AL 38 PCT- 42 PCT (BHN BAKU PEWARNA TABLET) COA WP831242\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D&C YELLOW 10 AL 15 PCT - 20 PCT (BHN BAKU PEWARNA TABLET) COA WP844748\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"D&C YELLOW 10 AL 15 PCT - 20 PCT (BHN BAKU PEWARNA TABLET) COA WP844748\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D&C YELLOW 10 AL 15 PCT - 20 PCT (BHN BAKU PEWARNA TABLET) COA WP844748\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"D&C YELLOW 10 AL 15 PCT - 20 PCT (BHN BAKU PEWARNA TABLET) COA WP844748\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD&C YELLOW 5/TARTRAZINE AL36 PCT - 39 PCT (BHN BAKU PEWARNA TABLET) COA WP833409\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD&C YELLOW 5/TARTRAZINE AL36 PCT - 39 PCT (BHN BAKU PEWARNA TABLET) COA WP833409\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD&C BLUE 2/INDIGO CARMINE AL30 PCT- 36 PCT (BHN BAKU PEWARNA TABLET) COA WP837609\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD&C BLUE 2/INDIGO CARMINE AL30 PCT- 36 PCT (BHN BAKU PEWARNA TABLET) COA WP837609\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERYTHROSINE AL 38 PCT-42 PCT (BHN BAKU PEWARNA TABLET) COA WP822181\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"ERYTHROSINE AL 38 PCT-42 PCT (BHN BAKU PEWARNA TABLET) COA WP822181\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 107164\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 107164\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-210 (16KG) (BHN BAKU KOSMETIK) COA 104950\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSG-210 (16KG) (BHN BAKU KOSMETIK) COA 104950\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-710 (16KG) (BHN BAKU KOSMETIK) COA 105425\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSG-710 (16KG) (BHN BAKU KOSMETIK) COA 105425\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP-101 (15KG) (BHN BAKU KOSMETIK) COA 106405\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSP-101 (15KG) (BHN BAKU KOSMETIK) COA 106405\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) COA 105025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-56A (18KG) (BHN BAKU KOSMETIK) COA 105025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KP-561P (16KG) (BHN BAKU KOSMETIK) COA 104138\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KP-561P (16KG) (BHN BAKU KOSMETIK) COA 104138\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) COA 107873\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSP-100 (10KG) (BHN BAKU KOSMETIK) COA 107873\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1148199\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1148199\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1160739\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1160739\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1160733\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1160733\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1182004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1182004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CHROMAGAR CANDIDA 500GM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1097086\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE CHROMAGAR CANDIDA 500GM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1097086\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM(MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1117839,48,1167524,830\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"POUCH GASPAK EZ ANAEROBE SYSTEM(MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1117839,48,1167524,830\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BORDET GENGOU AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0272029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BORDET GENGOU AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0272029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1201394\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1201394\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283759\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283759\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1188932\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1188932\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1159422\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1159422\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1140190\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1140190\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1047444\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1047444\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GLYCEROL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1181694\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GLYCEROL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1181694\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1046365\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE STERILE RODAC EMPTY 65X15MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1046365\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1124600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1124600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BLOOD AGAR BASE 500 G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0286355\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BLOOD AGAR BASE 500 G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0286355\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEVINE EMB AGAR 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 1019596\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LEVINE EMB AGAR 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 1019596\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0315698\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0315698\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0286434\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0286434\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTLE LYSINE DECARBOXYLASE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0272792\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTLE LYSINE DECARBOXYLASE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0272792\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1081408\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1081408\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1133957\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1133957\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1179332\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1179332\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1033190\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1033190\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283868\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283868\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1188932\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1188932\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1103628\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1103628\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335617\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335617\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1111027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1111027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1138027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1138027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1103638\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1103638\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1111132\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1111132\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1081518\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1081518\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1042590\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1042590\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1132546\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1132546\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1166778\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 19 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1166778\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1074280\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 9 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1074280\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1097917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1097917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500 G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1081510\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500 G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1081510\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0293747\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTOSE BROTH 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0293747\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1048461\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1048461\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1019484\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRILLIANT GREEN 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1019484\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1097054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1097054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0350990,1145029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0350990,1145029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0322946\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0322946\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1047444\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1047444\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1042865\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1042865\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT EXTRACT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1138882\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALT EXTRACT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1138882\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKIROORGANISME) BATCH 0273380\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKIROORGANISME) BATCH 0273380\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0062865\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0062865\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL BACTO AGAR 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1131476\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PAIL BACTO AGAR 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1131476\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MED 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9112920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MED 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9112920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BORDET GENGOU AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1172498\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BORDET GENGOU AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1172498\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1082936\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1082936\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1042613\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1042613\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1166546\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1166546\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MICRO INOCULUM BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1075951\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MICRO INOCULUM BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1075951\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1046365\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE STERILE RODAC EMPTY 65X15MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1046365\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1019596\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1019596\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1188932\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1188932\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1103628\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1103628\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1103638\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1103638\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1042590\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1042590\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1097917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1097917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1097054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1097054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BIGGY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1166930\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BIGGY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1166930\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHENOL RED LACTOSE BR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1081551\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PHENOL RED LACTOSE BR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1081551\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218592\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218592\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTLE LYSINE DECARBOXYLASE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0272792\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTLE LYSINE DECARBOXYLASE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0272792\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0062865\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0062865\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1040332\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1040332\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0294294\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0294294\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1111035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1111035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1068956\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EE BROTH MOSSEL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1068956\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1042613\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1042613\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1068885\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1068885\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1201123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1201123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1208830\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1208830\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335617\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335617\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MECOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/0721031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"MECOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/0721031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS SULFATE, DRIED, POWDER, USP 43(BHN BAKU OBAT) COA 3092988\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"FERROUS SULFATE, DRIED, POWDER, USP 43(BHN BAKU OBAT) COA 3092988\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SALBUTAMOL SULFATE BP (BHN BAKU OBAT) COA 021F051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29225090\", \"uraian\": \"SALBUTAMOL SULFATE BP (BHN BAKU OBAT) COA 021F051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1048171\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1048171\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SHIGELLA ANTIS POLY C1 LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0345561\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SHIGELLA ANTIS POLY C1 LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0345561\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTISERUM B 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0240783\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL H ANTISERUM B 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0240783\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SHIGELLA ANTIS POLY A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0198678\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SHIGELLA ANTIS POLY A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0198678\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SHIGELLA ANTIS POLY D LYOPHILIZE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9172946\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SHIGELLA ANTIS POLY D LYOPHILIZE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9172946\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS GRP B FTR 1/4/5/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0205165\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS GRP B FTR 1/4/5/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0205165\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTISERUM GRP C1 FTR 6/7 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0281783\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTISERUM GRP C1 FTR 6/7 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0281783\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL E COLI O ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0094884\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL E COLI O ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0094884\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1145576\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1145576\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1110880\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1110880\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1131086\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1131086\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1131086\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1131086\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL E COLI H ANTISERUM H7 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0212196\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL E COLI H ANTISERUM H7 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0212196\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1145576\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1145576\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1063145\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1063145\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1221115\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1221115\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1098974,110...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1098974,110...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1063145\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1063145\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1126127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1126127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1070093\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1070093\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1053886\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1053886\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065943,112322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065943,112322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1126127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1126127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLOMIPHENE CITRATE USP/EP (BHN BAKU OBAT ) COA 202107190216\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"CLOMIPHENE CITRATE USP/EP (BHN BAKU OBAT ) COA 202107190216\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2510721\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29391900\", \"uraian\": \"HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2510721\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH648099\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH648099\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH648100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH648100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH648065\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH648065\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH647842\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH647842\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH648073\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH648073\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH648072\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH648072\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH648069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH648069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH648071\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH648071\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH648067\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH648067\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH648059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH648059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH648166\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH648166\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH647522\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH647522\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH648068\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH648068\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH648050\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH648050\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY RED (BHN BAKU PEWARNA TABLET) COA SH648051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY RED (BHN BAKU PEWARNA TABLET) COA SH648051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH648052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH648052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH648074\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH648074\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB RED (BHN BAKU PEWARNA TABLET) COA SH648079\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB RED (BHN BAKU PEWARNA TABLET) COA SH648079\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH648075\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH648075\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRASIL DM 5 L (BHN BAKU KOSMETIK) COA 2132FF2615,21092PN115,2132FF2315\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100090\", \"uraian\": \"MIRASIL DM 5 L (BHN BAKU KOSMETIK) COA 2132FF2615,21092PN115,2132FF2315\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105712321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200H (BHN BAKU OBAT) COA L105712321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105712321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200H (BHN BAKU OBAT) COA L105712321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (SB) (BHN BAKU KOSMETIK)COA ROSD210603-BIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (SB) (BHN BAKU KOSMETIK)COA ROSD210603-BIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DANDRILYS (NAT) (BHN BAKU KOSMETIK) COA DAN210604-Z\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"DANDRILYS (NAT) (BHN BAKU KOSMETIK) COA DAN210604-Z\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210603\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210603\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210603\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210603\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIV201202-BGBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIV201202-BGBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIGELINE (BHN BAKU KOSMETIK)COA KA210504-B\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KIGELINE (BHN BAKU KOSMETIK)COA KA210504-B\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LICORICE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA GLG210301-BGBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LICORICE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA GLG210301-BGBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK)COA EG138-19060\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK)COA EG138-19060\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK)COA EG138-191002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK)COA EG138-191002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO210703\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO210703\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA210201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA210201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GREENSIL (BHN BAKU KOSMETIK) GS210702-I\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GREENSIL (BHN BAKU KOSMETIK) GS210702-I\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GREENSIL (BHN BAKU KOSMETIK) GS210703-I\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GREENSIL (BHN BAKU KOSMETIK) GS210703-I\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIVE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA OLE2108R1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OLIVE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA OLE2108R1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 210695\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 210695\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1068182\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1068182\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1138838\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1138838\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CINNARIZINE (BHN BAKU OBAT) COA CIN2108101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"CINNARIZINE (BHN BAKU OBAT) COA CIN2108101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 2109431763\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 2109431763\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 2109331509\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 2109331509\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMETHAZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA HPHCPP023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29343000\", \"uraian\": \"PROMETHAZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA HPHCPP023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIOBENEFITY (BHN BAKU KOSMETIK) COA 211519\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BIOBENEFITY (BHN BAKU KOSMETIK) COA 211519\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 211404\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 211404\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CUREPASSION (BHN BAKU KOSMETIK) COA 210905\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"CUREPASSION (BHN BAKU KOSMETIK) COA 210905\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 211215\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 211215\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 211349\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"MANDARINCLEAR (BHN BAKU KOSMETIK) COA 211349\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIOBENEFITY (BHN BAKU KOSMETIK) COA 211519\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BIOBENEFITY (BHN BAKU KOSMETIK) COA 211519\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 210550\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 210550\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 211412\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNEBUSTERS (BHN BAKU KOSMETIK) COA 211412\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 211095\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"IZAYOI (BHN BAKU KOSMETIK) COA 211095\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 211773\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 211773\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NICLOSAMIDE (BHN BAKU PAKAN HEWAN) COA 20210808\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"NICLOSAMIDE (BHN BAKU PAKAN HEWAN) COA 20210808\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POVIDONE K-25 (BHN BAKU OBAT), COA PK25-210513F32\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"POVIDONE K-25 (BHN BAKU OBAT), COA PK25-210513F32\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CROSPOVIDONE XL-10 (BHN BAKU OBAT), COA PP210622XL-10\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"CROSPOVIDONE XL-10 (BHN BAKU OBAT), COA PP210622XL-10\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EMPTY FIBRE DRUM, FREE OF COST SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"48192000\", \"uraian\": \"EMPTY FIBRE DRUM, FREE OF COST SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2021040501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2021040501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH648361\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH648361\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH648362\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH648362\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH648363\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH648363\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH648423\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH648423\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH648364\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH648364\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH648512\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH648512\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH648071\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH648071\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH648067\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH648067\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH648366\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH648366\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH648372\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH648372\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GRAY (BHN BAKU PEWARNA TABLET) COA SH648367\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GRAY (BHN BAKU PEWARNA TABLET) COA SH648367\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH648375\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH648375\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH648368\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH648368\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II CLEAR (BHN BAKU PEWARNA TABLET) COA SH648373\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II CLEAR (BHN BAKU PEWARNA TABLET) COA SH648373\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB MAROON (BHN BAKU PEWARNA TABLET) COA SH648369\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB MAROON (BHN BAKU PEWARNA TABLET) COA SH648369\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LABRAFIL M 1944 CS BF (BAHAN BAKU OBAT) COA 184833\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LABRAFIL M 1944 CS BF (BAHAN BAKU OBAT) COA 184833\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 185845\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 185845\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRECIROL ATO 5 (BAHAN BAKU OBAT) COA 184931\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"PRECIROL ATO 5 (BAHAN BAKU OBAT) COA 184931\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELOIL SC (BHN BAKU OBAT) COA 185392\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELOIL SC (BHN BAKU OBAT) COA 185392\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300013,10300014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300013,10300014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D&C GREEN NO.5 C.I.61570 FDA CERTIFIED (BHN BAKU KOSMETIK) COA 10300039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"D&C GREEN NO.5 C.I.61570 FDA CERTIFIED (BHN BAKU KOSMETIK) COA 10300039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN544228\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN544228\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (POST BORDER) COA QZ11210435\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (POST BORDER) COA QZ11210435\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (POST BORDER) COA 0000197488,0000197489\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (POST BORDER) COA 0000197488,0000197489\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (POST BORDER) COA UT21050139,UT21050150,UT21070205\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (POST BORDER) COA UT21050139,UT21050150,UT21070205\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (POST BORDER) COA 0000197488\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (POST BORDER) COA 0000197488\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (POST BORDER) COA UT21050139\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (POST BORDER) COA UT21050139\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF21092004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF21092004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINKGO LEAVES EXTRACT (BHN BAKU KOSMETIK) COA 21070747\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"GINKGO LEAVES EXTRACT (BHN BAKU KOSMETIK) COA 21070747\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (POST BORDER) COA UT21040137\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (POST BORDER) COA UT21040137\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (POST BORDER) COA UT21040137\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (POST BORDER) COA UT21040137\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX MILK POWDER FOR ADULTS (POST BORDER) COA XW92107434\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX MILK POWDER FOR ADULTS (POST BORDER) COA XW92107434\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 204005 (POST BORDER) COA XW92107435\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 204005 (POST BORDER) COA XW92107435\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (POST BORDER) COA QZ11210407,QZ11210434\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (POST BORDER) COA QZ11210407,QZ11210434\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (POST BORDER) COA UT21040141\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (POST BORDER) COA UT21040141\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (POST BORDER) COA UT21040141\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (POST BORDER) COA UT21040141\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (POST BORDER) COA UT21040141\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (POST BORDER) COA UT21040141\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10 PCT CWS (POST BORDER) COA UT20120055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10 PCT CWS (POST BORDER) COA UT20120055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (POST BORDER) COA UT21040099\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (POST BORDER) COA UT21040099\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (POST BORDER) COA UT21020013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (POST BORDER) COA UT21020013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (POST BORDER) COA SI21040009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (POST BORDER) COA SI21040009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3 PCT (POST BORDER) COA WB20030171\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3 PCT (POST BORDER) COA WB20030171\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL-ACETATE (POST BORDER) COA XH20210401\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL-ACETATE (POST BORDER) COA XH20210401\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (POST BORDER) COA QZ11210435\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (POST BORDER) COA QZ11210435\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (POST BORDER) COA OP12107007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (POST BORDER) COA OP12107007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3 PCT (POST BORDER) COA WB20030074\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3 PCT (POST BORDER) COA WB20030074\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (POST BORDER) COA TL02102028,TL02102036\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (POST BORDER) COA TL02102028,TL02102036\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (POST BORDER) COA TL02103186\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (POST BORDER) COA TL02103186\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50 PCT CWS/S (POST BORDER) COA UT21040012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50 PCT CWS/S (POST BORDER) COA UT21040012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (POST BORDER) COA TL02102012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (POST BORDER) COA TL02102012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE FCC (POST BORDER) COA 0000195881\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE FCC (POST BORDER) COA 0000195881\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX FOR FERMENTED MILK (POST BORDER) COA XW92108022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX FOR FERMENTED MILK (POST BORDER) COA XW92108022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX MENGNIU UHT MILK (POST BORDER) COA XW92108115\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX MENGNIU UHT MILK (POST BORDER) COA XW92108115\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105712321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200H (BHN BAKU OBAT) COA L105712321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARLAC (R) (BHN BAKU OBAT) COA L104265320\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"STARLAC (R) (BHN BAKU OBAT) COA L104265320\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SORBOLAC (R) 400 (BHN BAKU OBAT) COA L103842621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"SORBOLAC (R) 400 (BHN BAKU OBAT) COA L103842621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH648757\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH648757\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH648423\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH648423\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH648777\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH648777\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122101211\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054300\", \"uraian\": \"MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122101211\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU UTK PAKAN TERNAK) COA 202100544\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"AL HYD WET GEL VAC 20 (BHN BAKU UTK PAKAN TERNAK) COA 202100544\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-032861\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-032861\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SOPHORA ROOT POWDER (BHN BAKU KOSMETIK)COA SFP-N-051851\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SOPHORA ROOT POWDER (BHN BAKU KOSMETIK)COA SFP-N-051851\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-030651,HMVBD-042481\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-030651,HMVBD-042481\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CACTUS EXTRACT (BHN BAKU KOSMETIK) COA CAB-020321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CACTUS EXTRACT (BHN BAKU KOSMETIK) COA CAB-020321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 081321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 081321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012711,BHA-021781\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012711,BHA-021781\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LICORICE EXTRACT (BHN BAKU KOSMETIK) COA GGB-011641\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LICORICE EXTRACT (BHN BAKU KOSMETIK) COA GGB-011641\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) 081321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) 081321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRANEXAMIC ACID (BHN BAKU KOSMETIK) COA AC210601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"TRANEXAMIC ACID (BHN BAKU KOSMETIK) COA AC210601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HOCOX (BHN BAKU KOSMETIK) COA HOXB-072081\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HOCOX (BHN BAKU KOSMETIK) COA HOXB-072081\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-021781\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-021781\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-011151\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-011151\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIGO-HA (BHN BAKU KOSMETIK)COA OHA-113081\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OLIGO-HA (BHN BAKU KOSMETIK)COA OHA-113081\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-021081\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-021081\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 083021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 083021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 082421\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 082421\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO (R) LUTEIN 20 PCT SAF (POST BORDER) COA UE02106008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO (R) LUTEIN 20 PCT SAF (POST BORDER) COA UE02106008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID 325 MESH (POST BORDER) COA HPD2105074,065,058,052,037,033,027,025,023,..\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID 325 MESH (POST BORDER) COA HPD2105074,065,058,052,037,033,027,025,023,..\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID 325 MESH (POST BORDER) COA HPD2105074,088,101,111,116,121,123,126,127,..\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID 325 MESH (POST BORDER) COA HPD2105074,088,101,111,116,121,123,126,127,..\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 702018037K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ABYSSINE 657 (BHN BAKU KOSMETIK) COA 702018037K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799039054M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799039054M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 2021114\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 2021114\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019186M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019186M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019287M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019287M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5 PCT CLEAR (BHN BAKU KOSMETIK) COA 785019289M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5 PCT CLEAR (BHN BAKU KOSMETIK) COA 785019289M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019143M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019143M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROGELINE TM (BHN BAKU KOSMETIK) COA 203149R\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROGELINE TM (BHN BAKU KOSMETIK) COA 203149R\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BODY_3 COMPLEX TM (BHN BAKU KOSMETIK) COA B3C020421\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"BODY_3 COMPLEX TM (BHN BAKU KOSMETIK) COA B3C020421\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769019234M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769019234M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECOSLIM TM (BHN BAKU KOSMETIK) COA 2114201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ECOSLIM TM (BHN BAKU KOSMETIK) COA 2114201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MINIPORYL TM (BHN BAKU KOSMETIK) COA 832019290M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MINIPORYL TM (BHN BAKU KOSMETIK) COA 832019290M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) COA 2103116\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTENSO TM (BHN BAKU KOSMETIK) COA 2103116\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029189M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029189M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT TM (BHN BAKU KOSMETIK) COA 784029189M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"TYROSTAT TM (BHN BAKU KOSMETIK) COA 784029189M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP(BHN BAKU OBAT) COA 102102033\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"BARCROFT TM AL HYD GEL VISCO-9, USP(BHN BAKU OBAT) COA 102102033\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE A PELLETS (BHN BAKU OBAT) COA 21E1705\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE A PELLETS (BHN BAKU OBAT) COA 21E1705\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 21E0801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 21E0801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 21E1110\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 21E1110\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CANDESARTAN (BAHAN BAKU OBAT ) COA 5668-20-437\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"CANDESARTAN (BAHAN BAKU OBAT ) COA 5668-20-437\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE BP (BHN BAKU OBAT) COA 20060821,20100821\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE BP (BHN BAKU OBAT) COA 20060821,20100821\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 19970821,20030821,19990821,20050821,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 19970821,20030821,19990821,20050821,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO (R) LUTEIN 20 PCT SAF (POST BORDER) COA UE02106008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO (R) LUTEIN 20 PCT SAF (POST BORDER) COA UE02106008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP19021,MTP20321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP19021,MTP20321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP19721\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP19721\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1083193\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1083193\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2260443\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2260443\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2260443\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2260443\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2242841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2242841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2242841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2242841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1004958\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1004958\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1004958\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1004958\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0022270\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0022270\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0175474\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0175474\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0343138\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0343138\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0343138\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0343138\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0343138\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0343138\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105712421\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200H (BHN BAKU OBAT) COA L105712421\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103150821\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103150821\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122101135\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122101135\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1 PCT WS (BHN BAKU SUPPLEMEN) COA UT20100061\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1 PCT WS (BHN BAKU SUPPLEMEN) COA UT20100061\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT21060019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT21060019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10 PCT EM YELLOW (BHN BAKU MAKANAN) COA UT21020002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10 PCT EM YELLOW (BHN BAKU MAKANAN) COA UT21020002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT21061087\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT21061087\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30 PCT FS (BHN BAKU SUPPLEMEN) COA UE02105042\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30 PCT FS (BHN BAKU SUPPLEMEN) COA UE02105042\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5 PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT21020013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5 PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT21020013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20 PCT S (BHN BAKU SUPPLEMEN) COA UT21050013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20 PCT S (BHN BAKU SUPPLEMEN) COA UT21050013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122100927\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122100927\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122100871\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054300\", \"uraian\": \"MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122100871\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122100871\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054300\", \"uraian\": \"MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122100871\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RANITIDINE HCL USP (BHN BAKU OBAT) COA RH558 08 21, RH559 08 21\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29321900\", \"uraian\": \"RANITIDINE HCL USP (BHN BAKU OBAT) COA RH558 08 21, RH559 08 21\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RANITIDINE HCL USP (BHN BAKU OBAT) COA RH560 08 21,RH565 08 21\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29321900\", \"uraian\": \"RANITIDINE HCL USP (BHN BAKU OBAT) COA RH560 08 21,RH565 08 21\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RANITIDINE HCL USP (BHN BAKU OBAT) COA RH613 08 21,RH614 08 21,RH615 08 21\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29321900\", \"uraian\": \"RANITIDINE HCL USP (BHN BAKU OBAT) COA RH613 08 21,RH614 08 21,RH615 08 21\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRISODIUMCITRATE DIHYDRATE FINE GRANULAR (BHN BAKU MAKANAN) COA UJ125,UJ126\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"TRISODIUMCITRATE DIHYDRATE FINE GRANULAR (BHN BAKU MAKANAN) COA UJ125,UJ126\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (BHN BAKU KOSMETIK) COA ROSD210603-BIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (BHN BAKU KOSMETIK) COA ROSD210603-BIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (BHN BAKU KOSMETIK) COA ROSD210704-BIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (BHN BAKU KOSMETIK) COA ROSD210704-BIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA210802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA210802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA VIV201202-BGBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA VIV201202-BGBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV (BHN BAKU PEWARNA TABLET) COA D011L3IL02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV (BHN BAKU PEWARNA TABLET) COA D011L3IL02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM (BHN BAKU PEWARNA TABLET) COA D180L4K001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM (BHN BAKU PEWARNA TABLET) COA D180L4K001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC CALCIUM ASCORBATE DC (POST BORDER) COA HPT2105028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC CALCIUM ASCORBATE DC (POST BORDER) COA HPT2105028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX MAROON (BHN BAKU PEWARNA TABLET) COA DT719099\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX MAROON (BHN BAKU PEWARNA TABLET) COA DT719099\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET) COA DT717312\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPAGLOS WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET) COA DT717312\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE GOLD (BHN BAKU PEWARNA TABLET) COA DT719053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE GOLD (BHN BAKU PEWARNA TABLET) COA DT719053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SHF\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SHF\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA SGC\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) COA SGC\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS SILK-1000 (BHN BAKU KOSMETIK) COA SFC\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS SILK-1000 (BHN BAKU KOSMETIK) COA SFC\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NYSTATIN POWDER ROW GRADE (BHN BAKU OBAT) COA C114532\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NYSTATIN POWDER ROW GRADE (BHN BAKU OBAT) COA C114532\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0217346\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0217346\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1047444\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1047444\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1081578\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1081578\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1216783\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1216783\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1216783\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1216783\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1200358\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1200358\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2111335\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2111335\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ CO2 CONTAINER, BATCH 1208821\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ CO2 CONTAINER, BATCH 1208821\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 210030900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 210030900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTISHARP NAT ZEA 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA EW21025003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"OPTISHARP NAT ZEA 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA EW21025003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) (LYCOPENE) 10 PCT FS (BHN BAKU SUPPLEMEN) COA UE02104002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"REDIVIVO (R) (LYCOPENE) 10 PCT FS (BHN BAKU SUPPLEMEN) COA UE02104002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT21040032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT21040032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT21070034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT21070034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-002-Y\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-002-Y\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX POWDER (BHN BAKU OBA) COA B334774,B334775,B334777\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX POWDER (BHN BAKU OBA) COA B334774,B334775,B334777\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 210324\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"OILESS'CITY TM (BHN BAKU KOSMETIK) COA 210324\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 210602,210618\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 210602,210618\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PERMETHRIN (PHARMA GRADE) BHN BAKU OBAT COA 215046008,215046009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29163990\", \"uraian\": \"PERMETHRIN (PHARMA GRADE) BHN BAKU OBAT COA 215046008,215046009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AZITHROMYCIN (BHN BAKU OBAT) COA 129-210612-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"AZITHROMYCIN (BHN BAKU OBAT) COA 129-210612-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CROSPOVIDONE XL (BHN BAKU OBAT), COA PP210415XL\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"CROSPOVIDONE XL (BHN BAKU OBAT), COA PP210415XL\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-200607\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-200607\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 2110189Z\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"PARACETAMOL (BHN BAKU OBAT) COA 2110189Z\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISONE USP42 (BHN BAKU OBAT) COA NPD210814\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISONE USP42 (BHN BAKU OBAT) COA NPD210814\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE EP9/USP43 (BHN BAKU OBAT) COA NEDNA210805\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE SODIUM PHOSPHATE EP9/USP43 (BHN BAKU OBAT) COA NEDNA210805\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM FEREDETATE, POWDER, BP2021 (BHN BAKU OBAT) COA 3100051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"SODIUM FEREDETATE, POWDER, BP2021 (BHN BAKU OBAT) COA 3100051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERRIC PYROPHOSPHATE,24.0-26.0 PCT FE (BHN BAKU MAKANAN) COA 3101651\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28353990\", \"uraian\": \"FERRIC PYROPHOSPHATE,24.0-26.0 PCT FE (BHN BAKU MAKANAN) COA 3101651\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TREHALOSE (BHN BAKU MAKANAN) COA 20210905\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29400000\", \"uraian\": \"TREHALOSE (BHN BAKU MAKANAN) COA 20210905\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY FX YELLOW (BHN BAKU PEWARNA OBAT) COA GA695798\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY FX YELLOW (BHN BAKU PEWARNA OBAT) COA GA695798\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY SGR TRANSLUCENT (BHN BAKU PEWARNA TABLET) COA GA695796\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY SGR TRANSLUCENT (BHN BAKU PEWARNA TABLET) COA GA695796\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY SGR CLEAR (BHN BAKU PEWARNA TABLET) COA GA695797\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY SGR CLEAR (BHN BAKU PEWARNA TABLET) COA GA695797\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY FX YELLOW (BHN BAKU PEWARNA OBAT) COA GA695798\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY FX YELLOW (BHN BAKU PEWARNA OBAT) COA GA695798\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-002-Y\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-002-Y\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SURELEASE ETHYLCELLULOSE DISPERSION TYPE B NF CLEAR (BHN BAKU PEWARNA TABLET) COA IN545428\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"SURELEASE ETHYLCELLULOSE DISPERSION TYPE B NF CLEAR (BHN BAKU PEWARNA TABLET) COA IN545428\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512130\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47069200\", \"uraian\": \"SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512130\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINC GLYCINATE (BHN BAKU UTK PAKAN TERNAK) COA 62039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"ZINC GLYCINATE (BHN BAKU UTK PAKAN TERNAK) COA 62039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANGANESE GLYCINATE (BHN BAKU UTK PAKAN TERNAK) COA 62040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"MANGANESE GLYCINATE (BHN BAKU UTK PAKAN TERNAK) COA 62040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) COA 1571128\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) COA 1571128\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 10 CAN 10 KG (BHN BAKU KOSMETIK) COA 1571322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 10 CAN 10 KG (BHN BAKU KOSMETIK) COA 1571322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) COA 1571186,1571422,1571403\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) COA 1571186,1571422,1571403\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT21040032,UT21070033\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT21040032,UT21070033\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE S-1-277005 BLACK (BHN BAKU PEWARNA TABLET) COA TKL58703\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE S-1-277005 BLACK (BHN BAKU PEWARNA TABLET) COA TKL58703\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 030221/006855\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 030221/006855\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEONY P118 182 (BHN BAKU KOSMETIK) COA 3192765\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"PEONY P118 182 (BHN BAKU KOSMETIK) COA 3192765\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA MLAH0510721\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29341000\", \"uraian\": \"MELOXICAM BP (BHN BAKU OBAT) COA MLAH0510721\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CURCUMA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 21S0176508\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"CURCUMA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 21S0176508\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOSWELLIA SERRATA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 21T0029500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BOSWELLIA SERRATA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 21T0029500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT21040099,UT21050145\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT21040099,UT21050145\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02102019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02102019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU MAKANAN) COA UT21020204,UT21020206\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU MAKANAN) COA UT21020204,UT21020206\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL 75 L (BHN BAKU KOSMETIK) COA TL02105318\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL 75 L (BHN BAKU KOSMETIK) COA TL02105318\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0421040024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HMS (BHN BAKU KOSMETIK) COA 0421040024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0821010129\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0821010129\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02101008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02101008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02105006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE02105006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX VMP JELLY (BHN BAKU MAKANAN) COA XW92108005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX VMP JELLY (BHN BAKU MAKANAN) COA XW92108005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3 PCT (BHN BAKU SUPPLEMEN) COA WB21050185\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3 PCT (BHN BAKU SUPPLEMEN) COA WB21050185\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3 PCT (BHN BAKU SUPPLEMEN) COA WB21050185\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3 PCT (BHN BAKU SUPPLEMEN) COA WB21050185\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21040007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21040007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21050103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21050103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21050103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21050103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPPLEMEN) COA UQ10513180\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPPLEMEN) COA UQ10513180\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21050103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21050103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02105006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02105006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21050103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21050103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02105006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02105006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK) COA 8483300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACB FRUIT MIX OR (BHN BAKU KOSMETIK) COA 8483300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH648910\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH648910\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH648899\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH648899\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH648913\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH648913\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH648900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH648900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH648518\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH648518\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH648902\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH648902\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH648164\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH648164\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH649393\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH649393\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH648904\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH648904\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH648905\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH648905\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH648914\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH648914\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH648906\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH648906\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH648960\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH648960\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH648960\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH648960\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 BROWN (BHN BAKU PEWARNA TABLET) COA SH648954\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 BROWN (BHN BAKU PEWARNA TABLET) COA SH648954\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH648955\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH648955\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP(BHN BAKU OBAT) COA 102102033,102102035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"BARCROFT TM AL HYD GEL VISCO-9, USP(BHN BAKU OBAT) COA 102102033,102102035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POTASSIUM IODIDE AND CARRIER (BHN BAKU OBAT) COA 3104535\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28276000\", \"uraian\": \"POTASSIUM IODIDE AND CARRIER (BHN BAKU OBAT) COA 3104535\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHOLINE L-BITARTRATE (BAHAN BAKU OBAT) COA 3023195\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29231000\", \"uraian\": \"CHOLINE L-BITARTRATE (BAHAN BAKU OBAT) COA 3023195\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021940\", \"uraian\": \"EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACTIPONE (R) CAMU CAMU ET (BHN BAKU KOSMETIK) COA 10300023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"ACTIPONE (R) CAMU CAMU ET (BHN BAKU KOSMETIK) COA 10300023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG210813,MCVG210820\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG210813,MCVG210820\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-0450621,S-A-0460621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334910\", \"uraian\": \"DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-0450621,S-A-0460621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS GLUCONATE, POWDER, PH.EUR.10.ED. (BHN BAKU OBAT) COA 3100740\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"FERROUS GLUCONATE, POWDER, PH.EUR.10.ED. (BHN BAKU OBAT) COA 3100740\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET) COA DT719212\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX RED (BHN BAKU PEWARNA TABLET) COA DT719212\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPASPRAY YELLOW (BHN BAKU PEWARNA TABLET) COA DT718563\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPASPRAY YELLOW (BHN BAKU PEWARNA TABLET) COA DT718563\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY TF GREEN (BHN BAKU PEWARNA TABLET) COA DT719213\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY TF GREEN (BHN BAKU PEWARNA TABLET) COA DT719213\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AQUACOAT ECD-30 ETHYLCELLULOSE AQUEOUS... (BHN BAKU PEWARNA TABLET) COA 2173877225\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"AQUACOAT ECD-30 ETHYLCELLULOSE AQUEOUS... (BHN BAKU PEWARNA TABLET) COA 2173877225\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102169005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102169005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIAMI SCG(S) (BHN BAKU KOSMETIK) COA 21080555,21092155\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34021190\", \"uraian\": \"MIAMI SCG(S) (BHN BAKU KOSMETIK) COA 21080555,21092155\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK) COA 2108EF4511\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"L-ARGININE LO (BHN BAKU KOSMETIK) COA 2108EF4511\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIFE'S DHA(TM) S35-O300 (BHN BAKU SUPLEMEN) COA VY00428508\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"LIFE'S DHA(TM) S35-O300 (BHN BAKU SUPLEMEN) COA VY00428508\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIFE'S DHA S35-O100 (BHN BAKU SUPLEMEN) COA VY00383107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"LIFE'S DHA S35-O100 (BHN BAKU SUPLEMEN) COA VY00383107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANNOGEM (R) XL OPAL SPRAY DRIED MANNITOL USP/EP (BHN BAKU OBAT) COA 122101075\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054300\", \"uraian\": \"MANNOGEM (R) XL OPAL SPRAY DRIED MANNITOL USP/EP (BHN BAKU OBAT) COA 122101075\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SURELEASE ETHYLCELLULOSE DISPERSION TYPE B NF CLEAR (BHN BAKU PEWARNA TABLET) COA IN545428\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"SURELEASE ETHYLCELLULOSE DISPERSION TYPE B NF CLEAR (BHN BAKU PEWARNA TABLET) COA IN545428\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-042481\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-042481\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-042481\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-042481\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-140191\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-140191\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND NEWAPLE (BHN BAKU KOSMETIK) COA NWPB-020681\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND NEWAPLE (BHN BAKU KOSMETIK) COA NWPB-020681\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012781\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012781\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SENAS (BHN BAKU KOSMETIK) COA NASB-011441,NASB-031281\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND SENAS (BHN BAKU KOSMETIK) COA NASB-011441,NASB-031281\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE 1 PCT SOLUTION (BHN BAKU KOSMETIK) COA HASC-130841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND BIO-SODIUM HYALURONATE 1 PCT SOLUTION (BHN BAKU KOSMETIK) COA HASC-130841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-042481\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-042481\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK)COA BAG-032861\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK)COA BAG-032861\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND NEWAPLE (BHN BAKU KOSMETIK) COA NWPB-020681\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND NEWAPLE (BHN BAKU KOSMETIK) COA NWPB-020681\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-072081\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-072081\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-120891\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-120891\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH647897\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH647897\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA SH647139\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA SH647139\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA SH647665\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA SH647665\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH647293\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH647293\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH647583\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH647583\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH647584\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH647584\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH648277\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH648277\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH648277\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH648277\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH647586\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH647586\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH646139\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH646139\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH647230\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH647230\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH647619\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH647619\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH647620\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH647620\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH647587\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH647587\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH647588\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH647588\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH647589\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH647589\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH647591\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH647591\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH647592\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH647592\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II CLEAR (BHN BAKU PEWARNA TABLET) COA SH647621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II CLEAR (BHN BAKU PEWARNA TABLET) COA SH647621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH647137\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH647137\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH647593\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH647593\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH647594\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH647594\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH646416\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH646416\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH647700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH647700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II PURPLE (BHN BAKU PEWARNA TABLET) COA SH647634\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II PURPLE (BHN BAKU PEWARNA TABLET) COA SH647634\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY PURPLE (BHN BAKU PEWARNA TABLET) COA SH647595\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY PURPLE (BHN BAKU PEWARNA TABLET) COA SH647595\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH647596\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH647596\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY YELLOW (BHN BAKU PEWARNA TABLET) COA SH647117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY YELLOW (BHN BAKU PEWARNA TABLET) COA SH647117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH647115\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH647115\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH647624\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH647624\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH647599\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH647599\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY YELLOW (BHN BAKU PEWARNA TABLET) COA SH647600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY YELLOW (BHN BAKU PEWARNA TABLET) COA SH647600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BLACK (BHN BAKU PEWARNA TABLET) COA SH647626\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BLACK (BHN BAKU PEWARNA TABLET) COA SH647626\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH647627\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH647627\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH647633\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH647633\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH647107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH647107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH647601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH647601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB180721\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB180721\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B140621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B140621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B140621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B140621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB180721\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB180721\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LG240621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LG240621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0057767\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0057767\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 06092021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25081000\", \"uraian\": \"BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 06092021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK)COA 0708200129,0708200176 SD 0708200180,0708210001 SD 0708210002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK)COA 0708200129,0708200176 SD 0708200180,0708210001 SD 0708210002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21070210\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21070210\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0921020004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX (BHN BAKU KOSMETIK) COA 0921020004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92108197\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92108197\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MINERAL PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92108198\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"MINERAL PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92108198\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50 PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21040020,UT21040021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50 PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21040020,UT21040021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21040007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21040007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21040007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21040007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12107007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12107007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92108257,XW92108258\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"V003400 (BHN BAKU MAKANAN) COA XW92108257,XW92108258\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA 20210911\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17023010\", \"uraian\": \"DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA 20210911\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1123046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1123046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1123046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1123046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1166662\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1166662\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2260443\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2260443\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2355402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2355402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2242841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2242841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2305551\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2305551\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1004958\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1004958\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1004958\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1004958\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0175474\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0175474\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0343138\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0343138\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0343138\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0343138\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1046607\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1046607\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1046607\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1046607\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1046607\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1046607\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0365879\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0365879\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIFCO BEEF EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0182357\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DIFCO BEEF EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0182357\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH649742\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH649742\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH649125\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH649125\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTABIO ARV-S (BHN BAKU OBAT) COA 2108041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"ASTABIO ARV-S (BHN BAKU OBAT) COA 2108041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SORBITOL SOLUTION 70PCT CRYSTALLIZING (BHN BAKU KOSMETIK) COA 2122P332\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054400\", \"uraian\": \"SORBITOL SOLUTION 70PCT CRYSTALLIZING (BHN BAKU KOSMETIK) COA 2122P332\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SORBITOL SOLUTION 70PCT CRYSTALLIZING (BHN BAKU KOSMETIK) COA 2122P332\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054400\", \"uraian\": \"SORBITOL SOLUTION 70PCT CRYSTALLIZING (BHN BAKU KOSMETIK) COA 2122P332\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102169005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102169005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102169005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102169005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500 AF (BHN BAKU SUPLEMEN) COA WB21070044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500 AF (BHN BAKU SUPLEMEN) COA WB21070044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500 AF (BHN BAKU SUPLEMEN) COA WB21070035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500 AF (BHN BAKU SUPLEMEN) COA WB21070035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500 AF (BHN BAKU SUPLEMEN) COA WB21070035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500 AF (BHN BAKU SUPLEMEN) COA WB21070035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB21020738,WB21080755\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB21020738,WB21080755\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTISHARP NAT. ZEA. 14 PCT SAFF. (BHN BAKU SUPLEMEN) COA 2107108366\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"OPTISHARP NAT. ZEA. 14 PCT SAFF. (BHN BAKU SUPLEMEN) COA 2107108366\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 900 (BHN BAKU KOSMETIK) COA 1571128\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 900 (BHN BAKU KOSMETIK) COA 1571128\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50397\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061100\", \"uraian\": \"MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50397\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019287M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019287M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5 PCT CLEAR (BHN BAKU KOSMETIK) COA 785019479M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5 PCT CLEAR (BHN BAKU KOSMETIK) COA 785019479M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXO-P TM (BHN BAKU KOSMETIK) COA 715038112L\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EXO-P TM (BHN BAKU KOSMETIK) COA 715038112L\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2105706\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) COA 2105706\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROGELINE TM (BHN BAKU KOSMETIK) COA 203149R\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROGELINE TM (BHN BAKU KOSMETIK) COA 203149R\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799039054M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799039054M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BODY_3 COMPLEX TM (BHN BAKU KOSMETIK) COA B3C030721\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"BODY_3 COMPLEX TM (BHN BAKU KOSMETIK) COA B3C030721\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769019234M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769019234M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5 PCT CLEAR (BHN BAKU KOSMETIK) COA 785019479M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5 PCT CLEAR (BHN BAKU KOSMETIK) COA 785019479M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA EDS/CA14606\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"ERDOSTEINE (BAHAN BAKU OBAT) COA EDS/CA14606\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS SULFATE,DRIED, POWDER, USP43 (BHN BAKU SUPLEMEN) COA 3081610\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"FERROUS SULFATE,DRIED, POWDER, USP43 (BHN BAKU SUPLEMEN) COA 3081610\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINC SULFATE 7-HYDRATE, POWDER, USP 43 (BHN BAKU OBAT) COA 3102250\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"ZINC SULFATE 7-HYDRATE, POWDER, USP 43 (BHN BAKU OBAT) COA 3102250\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM CARBONATE, HEAVY (BHN BAKU OBAT) COA 1104812\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28369990\", \"uraian\": \"MAGNESIUM CARBONATE, HEAVY (BHN BAKU OBAT) COA 1104812\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM L-HYDROGENASPARTATE 2-HYDRATE (BHN BAKU OBAT) COA 3083564-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"MAGNESIUM L-HYDROGENASPARTATE 2-HYDRATE (BHN BAKU OBAT) COA 3083564-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINC SULFATE 1-HYDRATE, POWDER,USP 43 (BHN BAKU OBAT) COA 3102250\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"ZINC SULFATE 1-HYDRATE, POWDER,USP 43 (BHN BAKU OBAT) COA 3102250\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS GLUCONATE, POWDER, USP 43 (BHN BAKU OBAT) COA 3091589\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"FERROUS GLUCONATE, POWDER, USP 43 (BHN BAKU OBAT) COA 3091589\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 21290019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 21290019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 21290019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 21290019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHISOPRINOL (BHN BAKU OBAT) COA MTP1080390,MTP1090420\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"METHISOPRINOL (BHN BAKU OBAT) COA MTP1080390,MTP1090420\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103152821\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103152821\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544753\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544753\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544733\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544733\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544773\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544773\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544835\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544835\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HA00989,HA01033\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34021990\", \"uraian\": \"MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HA00989,HA01033\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP24621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP24621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122101178,122101179\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122101178,122101179\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LINAGLIPTIN (BHN BAKU OBAT) COA LG0080621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"LINAGLIPTIN (BHN BAKU OBAT) COA LG0080621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 1400/1700 SUGLETS 1400/1700 (12/14 MESH) BHN BAKU PEWARNA TABLET) COA ST516916\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"1400/1700 SUGLETS 1400/1700 (12/14 MESH) BHN BAKU PEWARNA TABLET) COA ST516916\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PGLCP 102KC RSPO MB (BHN BAKU KOSMETIK) COA 210710201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34021390\", \"uraian\": \"PGLCP 102KC RSPO MB (BHN BAKU KOSMETIK) COA 210710201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122101180\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122101180\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/07/290721,ASG/08/280821,ASG/09/020921,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/07/290721,ASG/08/280821,ASG/09/020921,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CROSCARMELLOSE SODIUM USP-NF (BHN BAKU OBAT) COA ACRMC/09/040921\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39129090\", \"uraian\": \"CROSCARMELLOSE SODIUM USP-NF (BHN BAKU OBAT) COA ACRMC/09/040921\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LINAGLIPTIN (BHN BAKU OBAT) COA LG0080621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"LINAGLIPTIN (BHN BAKU OBAT) COA LG0080621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) COA 1573252\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) COA 1573252\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK) COA LDC34521T\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101990\", \"uraian\": \"SAVONOL 16 (BAHAN BAKU KOSMETIK) COA LDC34521T\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA E00971UP\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA E00971UP\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105712321,L105712421\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200H (BHN BAKU OBAT) COA L105712321,L105712421\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) COA 321CAA0003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CETRIMIDE (BHN BAKU KOSMETIK) COA 321CAA0003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SORBITOL SPECIAL TM MDF 85 (BHN BAKU OBAT) COA M21003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054400\", \"uraian\": \"SORBITOL SPECIAL TM MDF 85 (BHN BAKU OBAT) COA M21003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSUVASTATIN CALSIUM (BHN BAKU OBAT) COA M325189\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"ROSUVASTATIN CALSIUM (BHN BAKU OBAT) COA M325189\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PERMETHRIN (PHARMA GRADE) BHN BAKU OBAT COA PMT/008/2021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29163990\", \"uraian\": \"PERMETHRIN (PHARMA GRADE) BHN BAKU OBAT COA PMT/008/2021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000076788\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000076788\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000076789\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000076789\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H105 83PCT (BHN BAKU KOSMETIK) COA 0000076790\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H105 83PCT (BHN BAKU KOSMETIK) COA 0000076790\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA EDSB200006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"ERDOSTEINE (BAHAN BAKU OBAT) COA EDSB200006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) (BHN BAKU OBAT) COA 4453829622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"XANTHAN 80 (PHARMACEUTICAL GRADE) (BHN BAKU OBAT) COA 4453829622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-210903\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-210903\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID S 20 (BHN BAKU SUPPLEMEN) COA 572000-2210138/001-020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232010\", \"uraian\": \"LIPOID S 20 (BHN BAKU SUPPLEMEN) COA 572000-2210138/001-020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINC GLUCONATE POWDER USP 43 (BHN BAKU OBAT) COA 3107385\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"ZINC GLUCONATE POWDER USP 43 (BHN BAKU OBAT) COA 3107385\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP24621,MTP24621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP24621,MTP24621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122101141\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054300\", \"uraian\": \"MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122101141\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MC-GLUCAN (BHN BAKU KOSMETIK) COA MCGL210906\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"MC-GLUCAN (BHN BAKU KOSMETIK) COA MCGL210906\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GALAXY 610 EHS MB (ETHYLENE GLYCOL DISTEARATE) (BHN BAKU KOSMETIK) COA 728011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34049090\", \"uraian\": \"GALAXY 610 EHS MB (ETHYLENE GLYCOL DISTEARATE) (BHN BAKU KOSMETIK) COA 728011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHENOXY ETHANOL PR (BHN BAKU KOSMETIK) COA 728616,728616,727745\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29094900\", \"uraian\": \"PHENOXY ETHANOL PR (BHN BAKU KOSMETIK) COA 728616,728616,727745\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105712021,L105712421\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200H (BHN BAKU OBAT) COA L105712021,L105712421\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122101181\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122101181\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANNOGEM (R) XL OPAL SPRAY DRIED MANNITOL (BHN BAKU OBAT) COA 122101241\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054300\", \"uraian\": \"MANNOGEM (R) XL OPAL SPRAY DRIED MANNITOL (BHN BAKU OBAT) COA 122101241\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHARMABURST (R) C1 (BHN BAKU OBAT) COA 122100929\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069099\", \"uraian\": \"PHARMABURST (R) C1 (BHN BAKU OBAT) COA 122100929\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122101211\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054300\", \"uraian\": \"MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122101211\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40 BRIX ) (BAHAN BAKU KOSMETIK) COA 01/20GL4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40 BRIX ) (BAHAN BAKU KOSMETIK) COA 01/20GL4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40 BRIX ) (BAHAN BAKU KOSMETIK) COA 01/21GL4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40 BRIX ) (BAHAN BAKU KOSMETIK) COA 01/21GL4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40 BRIX ) (BAHAN BAKU KOSMETIK) COA 01/20GL4, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40 BRIX ) (BAHAN BAKU KOSMETIK) COA 01/20GL4, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40 BRIX ) (BAHAN BAKU KOSMETIK) COA 01/21GL4, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40 BRIX ) (BAHAN BAKU KOSMETIK) COA 01/21GL4, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX MAROON (BHN BAKU PEWARNA TABLET) COA DT719926\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX MAROON (BHN BAKU PEWARNA TABLET) COA DT719926\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET) COA DT719912\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPAGLOS WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET) COA DT719912\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE BLACK (BHN BAKU PEWARNA TABLET) COA DT718996\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE BLACK (BHN BAKU PEWARNA TABLET) COA DT718996\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRAMIPEXOLE DI HCL MONOHYDRATE (BHN BAKU OBAT) COA PP0100821\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29342000\", \"uraian\": \"PRAMIPEXOLE DI HCL MONOHYDRATE (BHN BAKU OBAT) COA PP0100821\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISOLONE BP2018/USP42 (BHN BAKU OBAT) COA NPL210918\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISOLONE BP2018/USP42 (BHN BAKU OBAT) COA NPL210918\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIAMCINOLONE EP9.0 (BHN BAKU OBAT) COA NTL210901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"TRIAMCINOLONE EP9.0 (BHN BAKU OBAT) COA NTL210901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYDROCORTISONE ACETATE EP7/USP42 (BHN BAKU OBAT) COA NEHAC210305\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"HYDROCORTISONE ACETATE EP7/USP42 (BHN BAKU OBAT) COA NEHAC210305\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113681\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113681\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113653,M113656\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113653,M113656\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHARMACEUTICAL CASTOR OIL E.P (BHN BAKU KOSMETIK) COA 0000037362\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15152919\", \"uraian\": \"PHARMACEUTICAL CASTOR OIL E.P (BHN BAKU KOSMETIK) COA 0000037362\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) 0000076486\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) 0000076486\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) 0000076487\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) 0000076487\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000076488,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000076488,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H103 43PCT (BHN BAKU KOSMETIK) COA 0000076489, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H103 43PCT (BHN BAKU KOSMETIK) COA 0000076489, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK), COA 0000076490,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK), COA 0000076490,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H105 83 PCT (BHN BAKU KOSMETIK), COA 0000076491,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H105 83 PCT (BHN BAKU KOSMETIK), COA 0000076491,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H100L 80 PCT (BHN BAKU KOSMETIK), COA 0000076492,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H100L 80 PCT (BHN BAKU KOSMETIK), COA 0000076492,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NOREPINEPHRINE BITARTRATE (NORADRENALINE TARTRATE) (BHN BAKU OBAT) COA 690104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29379010\", \"uraian\": \"NOREPINEPHRINE BITARTRATE (NORADRENALINE TARTRATE) (BHN BAKU OBAT) COA 690104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NOREPINEPHRINE BITARTRATE (NORADRENALINE TARTRATE) (BHN BAKU OBAT) COA 690104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29379010\", \"uraian\": \"NOREPINEPHRINE BITARTRATE (NORADRENALINE TARTRATE) (BHN BAKU OBAT) COA 690104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFIXIME COMPACTED USP (BHN BAKU OBAT) COA CFEC210531,CFEC210532\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFIXIME COMPACTED USP (BHN BAKU OBAT) COA CFEC210531,CFEC210532\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFIXIME COMPACTED USP (BHN BAKU OBAT) COA CFEC210531,CFEC210532\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFIXIME COMPACTED USP (BHN BAKU OBAT) COA CFEC210531,CFEC210532\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINC SULFATE 1-HYDRATE, POWDER, USP FCC 12 (BHN BAKU MAKANAN) COA 3095829-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"ZINC SULFATE 1-HYDRATE, POWDER, USP FCC 12 (BHN BAKU MAKANAN) COA 3095829-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH649432\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH649432\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH649187\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH649187\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH649187\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH649187\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH649172\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH649172\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH649190\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH649190\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH649173\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH649173\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH649627\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH649627\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH649176\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH649176\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH648913\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH648913\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH649177\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH649177\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH649194\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH649194\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH649396\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH649396\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH649184\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH649184\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH648904\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH648904\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH649180\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH649180\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH648906\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH648906\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH649195\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH649195\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH649193\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH649193\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH649185\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH649185\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND BROWN (BHN BAKU PEWARNA TABLET) SH649486\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND BROWN (BHN BAKU PEWARNA TABLET) SH649486\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY VIOLET (BHN BAKU PEWARNA TABLET) COA SH649182\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY VIOLET (BHN BAKU PEWARNA TABLET) COA SH649182\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY PURPLE (BHN BAKU PEWARNA TABLET) COA SH649257\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY PURPLE (BHN BAKU PEWARNA TABLET) COA SH649257\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH648483\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH648483\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH649529\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH649529\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-PANTHENOL 50 L (BHN BAKU KOSMETIK) COA TL02103605\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL-PANTHENOL 50 L (BHN BAKU KOSMETIK) COA TL02103605\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA QZ11210436\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA QZ11210436\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0038007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0038007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92108130\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92108130\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000198172\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000198172\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0721010014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHS (BHN BAKU KOSMETIK) COA 0721010014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES2105544\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"ALLANTOIN (BHN BAKU KOSMETIK) COA ES2105544\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0721010013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHS (BHN BAKU KOSMETIK) COA 0721010013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0821010129,0821010130,0821010281\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0821010129,0821010130,0821010281\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0421040024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HMS (BHN BAKU KOSMETIK) COA 0421040024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0921020014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX (BHN BAKU KOSMETIK) COA 0921020014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF21092005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF21092005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF21092005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF21092005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21070210\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21070210\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0921020014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX (BHN BAKU KOSMETIK) COA 0921020014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN MINERAL PREMIX (BHN BAKU MAKANAN) COA XW92109042\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN MINERAL PREMIX (BHN BAKU MAKANAN) COA XW92109042\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02101102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02101102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90 PCT GRANULATION (BHN BAKU SUPPLEMEN) COA WB21049089\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90 PCT GRANULATION (BHN BAKU SUPPLEMEN) COA WB21049089\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARACETAMOL USP (BHN BAKU OBAT) COA 21505530,21505350\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"PARACETAMOL USP (BHN BAKU OBAT) COA 21505530,21505350\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-200607\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-200607\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LINCOMYCIN HYDROCHLORIDE (BHN BAKU OBAT) COA 2106006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"LINCOMYCIN HYDROCHLORIDE (BHN BAKU OBAT) COA 2106006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO210603\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO210603\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO210603\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO210603\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210603\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210603\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO210703\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO210703\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WITCH HAZEL ORGANIC DISTILLATE 1:10 (SB) (BHN BAKU KOSMETIK) COA HAVD210806-BIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"WITCH HAZEL ORGANIC DISTILLATE 1:10 (SB) (BHN BAKU KOSMETIK) COA HAVD210806-BIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO210603\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO210603\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM210602-PGH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM210602-PGH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210306\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210306\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LOTUS FROM VIETNAM ORGANIC OILY EXTRACT (BHN BAKU KOSMETIK) COA NEN210401-HBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LOTUS FROM VIETNAM ORGANIC OILY EXTRACT (BHN BAKU KOSMETIK) COA NEN210401-HBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SEABUCKTHORN HYDROGLYCOLIC EXTRACT (BG) (BHN BAKU KOSMETIK) COA HIR210101-B\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SEABUCKTHORN HYDROGLYCOLIC EXTRACT (BG) (BHN BAKU KOSMETIK) COA HIR210101-B\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ACETATE ANHYDROUS (BHN BAKU SUPPLEMEN) COA 3098999\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29152910\", \"uraian\": \"SODIUM ACETATE ANHYDROUS (BHN BAKU SUPPLEMEN) COA 3098999\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 712 CAN 10 KG (BHN BAKU KOSMETIK) COA 1570683\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 712 CAN 10 KG (BHN BAKU KOSMETIK) COA 1570683\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 720 CAN 10 KG (BHN BAKU KOSMETIK) COA 1570630,1570829\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 720 CAN 10 KG (BHN BAKU KOSMETIK) COA 1570630,1570829\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) COA 1570866\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) COA 1570866\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 903 CAN 10 KG (BHN BAKU KOSMETIK) COA 1568847\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 903 CAN 10 KG (BHN BAKU KOSMETIK) COA 1568847\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) COA 1570860\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) COA 1570860\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA PA 40 CAN 10 KG (BHN BAKU KOSMETIK) COA 1565784\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA PA 40 CAN 10 KG (BHN BAKU KOSMETIK) COA 1565784\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VISTANOL GDHR (BHN BAKU KOSMETIK) COA SIC\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"VISTANOL GDHR (BHN BAKU KOSMETIK) COA SIC\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK-F (BHN BAKU KOSMETIK) COA SIG\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK-F (BHN BAKU KOSMETIK) COA SIG\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA SHI\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROTESIL LH (BHN BAKU KOSMETIK) COA SHI\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMITOSE R (BHN BAKU KOSMETIK) COA SHG\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AMITOSE R (BHN BAKU KOSMETIK) COA SHG\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SHF\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SHF\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN544621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN544621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038(16KG) (BHN BAKU KOSMETIK) COA 108262\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038(16KG) (BHN BAKU KOSMETIK) COA 108262\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-210 (16KG) (BHN BAKU KOSMETIK) COA 105983\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSG-210 (16KG) (BHN BAKU KOSMETIK) COA 105983\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) COA 110060\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-56A (18KG) (BHN BAKU KOSMETIK) COA 110060\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETORICOXIB (BHN BAKU OBAT) COA ERBPC21006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"ETORICOXIB (BHN BAKU OBAT) COA ERBPC21006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 211404,212280\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 211404,212280\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 211021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 211021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 21T0030100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 21T0030100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1203881\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1203881\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1182011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1182011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01D214M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01D214M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GRAM SAFRANIN 250ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1117588\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GRAM SAFRANIN 250ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1117588\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1074549\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1074549\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 210811022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 210811022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1242374\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1242374\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME) BATCH 1053886,12011851\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME) BATCH 1053886,12011851\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1123223\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1123223\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1242374\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1242374\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1123223\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1123223\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0114639\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0114639\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0294317\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0294317\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1195933\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1195933\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 1153205\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PANTOTHENATE ASSAY MED 100G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 1153205\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1187757\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1187757\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1223997\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1223997\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU ANAPHYLATOXIN CBA KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1222136\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU ANAPHYLATOXIN CBA KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1222136\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1102066\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1102066\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1133939\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1133939\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1111035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1111035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1159790\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1159790\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01D200M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01D200M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER LACTOPHENOL COTTON BLUE STAIN (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01D110M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER LACTOPHENOL COTTON BLUE STAIN (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01D110M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YPD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0286513\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE YPD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0286513\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC /NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1200358\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ENTERIC /NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1200358\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1007107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1007107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283868\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283868\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LOOPS INOCULATING 10/TUBE 10 MICROLITER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2110427\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"LOOPS INOCULATING 10/TUBE 10 MICROLITER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2110427\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0286434\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE AGAR 500G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0286434\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1081408\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1081408\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1047444\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1047444\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1068885\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1068885\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1215037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1215037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GRAM CRYSTAL VIOLET 250ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1117569\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GRAM CRYSTAL VIOLET 250ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1117569\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1167834\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1167834\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2111335\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2111335\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1188089\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1188089\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GRAM IODINE STABILIZED 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1020480\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GRAM IODINE STABILIZED 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1020480\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISONE USP42 (BHN BAKU OBAT) COA NPD210915\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISONE USP42 (BHN BAKU OBAT) COA NPD210915\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIAMCINOLONE EP9.0 (BHN BAKU OBAT) COA NTL210902\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"TRIAMCINOLONE EP9.0 (BHN BAKU OBAT) COA NTL210902\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM HYDROXYPROPYL METHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D180L3M001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM HYDROXYPROPYL METHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D180L3M001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL METHYL... (BHN BAKU PEWARNA TABLET) COA D180KCT002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL METHYL... (BHN BAKU PEWARNA TABLET) COA D180KCT002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL METHYL... (BHN BAKU PEWARNA TABLET) COA D180L7P001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL METHYL... (BHN BAKU PEWARNA TABLET) COA D180L7P001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544879\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544879\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL02108107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL02108107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL02108107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL02108107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL02108107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL02108107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL02108107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU MAKANAN) COA TL02108107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINC GLYCINATE (BHN BAKU UTK PAKAN TERNAK) COA 62058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"ZINC GLYCINATE (BHN BAKU UTK PAKAN TERNAK) COA 62058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP26321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP26321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH650237\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH650237\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GALAXY 610 EHS MB (ETHYLENE GLYCOL DISTEARATE) (BHN BAKU KOSMETIK) COA 728011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34049090\", \"uraian\": \"GALAXY 610 EHS MB (ETHYLENE GLYCOL DISTEARATE) (BHN BAKU KOSMETIK) COA 728011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHENOXY ETHANOL PR (BHN BAKU KOSMETIK) COA 729129\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29094900\", \"uraian\": \"PHENOXY ETHANOL PR (BHN BAKU KOSMETIK) COA 729129\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM (BHN BAKU UTK PAKAN TERNAK) COA 21081220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331900\", \"uraian\": \"METAMIZOLE SODIUM (BHN BAKU UTK PAKAN TERNAK) COA 21081220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA2109137 S/D 138,MA2110003 S/D 004,MA2110010,MA2110013,....\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"MEFENAMIC ACID (BHN BAKU OBAT) COA MA2109137 S/D 138,MA2110003 S/D 004,MA2110010,MA2110013,....\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH650660\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH650660\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210603\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210603\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) COA ANTS210201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) COA ANTS210201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLOWER ACIDS (BHN BAKU KOSMETIK) COA HS210703\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"FLOWER ACIDS (BHN BAKU KOSMETIK) COA HS210703\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0058527\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0058527\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0220040027, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0220040027, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) COA 7766037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) COA 7766037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALUMINIUM HYDROXIDE ACETATE POWDER, DAC 2011 (BHN BAKU SUPLEMEN) COA 3016131-4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29152990\", \"uraian\": \"ALUMINIUM HYDROXIDE ACETATE POWDER, DAC 2011 (BHN BAKU SUPLEMEN) COA 3016131-4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS GLUCONATE (BHN BAKU OBAT) COA 3106520\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"FERROUS GLUCONATE (BHN BAKU OBAT) COA 3106520\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM L-HYDROGENASPARTATE 2-HYDRATE POWDER, PH.EUR.10.ED. (BHN BAKU OBAT) COA 3106187\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"MAGNESIUM L-HYDROGENASPARTATE 2-HYDRATE POWDER, PH.EUR.10.ED. (BHN BAKU OBAT) COA 3106187\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM SELENITE IN CARRIER (BHN BAKU OBAT) COA 3106231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28429010\", \"uraian\": \"SODIUM SELENITE IN CARRIER (BHN BAKU OBAT) COA 3106231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512133\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47069200\", \"uraian\": \"SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512133\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512133\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47069200\", \"uraian\": \"SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512133\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS SULFATE,DRIED, POWDER, USP43 (BHN BAKU SUPLEMEN) COA 3103702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"FERROUS SULFATE,DRIED, POWDER, USP43 (BHN BAKU SUPLEMEN) COA 3103702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEARL ESSENCES 35031MJ (BHN BAKU KOSMETIK) COA D1381006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32061910\", \"uraian\": \"PEARL ESSENCES 35031MJ (BHN BAKU KOSMETIK) COA D1381006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEARL ESSENCES 35031MJ (BHN BAKU KOSMETIK) COA D1320220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32061910\", \"uraian\": \"PEARL ESSENCES 35031MJ (BHN BAKU KOSMETIK) COA D1320220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO (R) LUTEIN 20 % SAF (BHN BAKU SUPPLEMEN) COA UE02106008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO (R) LUTEIN 20 % SAF (BHN BAKU SUPPLEMEN) COA UE02106008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02101013,UE02102022,UE02102023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02101013,UE02102022,UE02102023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BRB 1740, DRUM 190KG ( BHN BAKU KOSMETIK) COA B095086\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100020\", \"uraian\": \"BRB 1740, DRUM 190KG ( BHN BAKU KOSMETIK) COA B095086\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ10713228\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ10713228\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTISHARP (ZEAXANTHIN) 5 PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT19060004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"OPTISHARP (ZEAXANTHIN) 5 PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT19060004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT21040013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT21040013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT21070072\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT21070072\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT21061088,UT21061089,UT21061090\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT21061088,UT21061089,UT21061090\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPPLEMEN) COA UT21070061\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPPLEMEN) COA UT21070061\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPPLEMEN) COA UQ10713249\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPPLEMEN) COA UQ10713249\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1 PCT WS (BHN BAKU SUPPLEMEN) COA UT20100059,UT20100061\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1 PCT WS (BHN BAKU SUPPLEMEN) COA UT20100059,UT20100061\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340314,B340318,B340320\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX COMPACTED (BHN BAKU OBAT) COA B340314,B340318,B340320\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334781\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX POWDER (BHN BAKU OBAT) COA B334781\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334763\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX POWDER (BHN BAKU OBAT) COA B334763\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP26421\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP26421\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP26421\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP26421\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050109,0321050110,0321050112,0321050113,0321050114,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050109,0321050110,0321050112,0321050113,0321050114,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050107,0321050108,0321050109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050107,0321050108,0321050109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544799\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544799\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544815\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544815\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544770\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544770\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544776\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544776\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE PURPLE (BHN BAKU PEWARNA TABLET) COA SH649630\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE PURPLE (BHN BAKU PEWARNA TABLET) COA SH649630\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH649626\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH649626\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH649631\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH649631\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH649627\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH649627\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH649660\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH649660\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH649661\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH649661\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH649628\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH649628\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH649194\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH649194\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH649632\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH649632\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH649633\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH649633\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND GREEN (BHN BAKU PEWARNA TABLET) COA SH649634\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND GREEN (BHN BAKU PEWARNA TABLET) COA SH649634\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH649636\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH649636\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BLUE (BHN BAKU PEWARNA TABLET) COA SH649637\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BLUE (BHN BAKU PEWARNA TABLET) COA SH649637\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH649635\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH649635\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH649629\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH649629\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND YELLOW (BHN BAKU UTK PEWARNA TABLET) COA SH649659\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND YELLOW (BHN BAKU UTK PEWARNA TABLET) COA SH649659\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MONOCALCIUM PHOSPHATE FEED GRADE MICROGRANULAR (BHN BAKU PAKAN TERNAK) COA 20210928028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28352600\", \"uraian\": \"MONOCALCIUM PHOSPHATE FEED GRADE MICROGRANULAR (BHN BAKU PAKAN TERNAK) COA 20210928028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA270211,ROA271213\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA270211,ROA271213\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH650146\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH650146\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH650134\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH650134\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH650135\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH650135\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH650166\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH650166\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH650148\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH650148\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH650136\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH650136\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH650635\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH650635\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH650137\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH650137\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH650158\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH650158\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH650138\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH650138\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH650164\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH650164\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH650154\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH650154\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND GREEN (BHN BAKU PEWARNA TABLET) COA SH650149\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND GREEN (BHN BAKU PEWARNA TABLET) COA SH650149\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH650155\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH650155\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH650150\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH650150\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY YELLOW (BHN BAKU PEWARNA TABLET) COA SH650139\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY YELLOW (BHN BAKU PEWARNA TABLET) COA SH650139\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 H (BHN BAKU OBAT) COA L105713621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 H (BHN BAKU OBAT) COA L105713621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104312821\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104312821\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP846871\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP846871\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP846870\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP846870\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP - PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP846853\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP - PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP846853\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD&C YELLOW #6/SUNSET YELLOW FCF AL ... (BHN BAKU PEWARNA TABLET) COA WP839971:BA7547\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD&C YELLOW #6/SUNSET YELLOW FCF AL ... (BHN BAKU PEWARNA TABLET) COA WP839971:BA7547\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD&C YELLOW #5/TARTRAZINE AL ... (BHN BAKU PEWARNA TABLET) COA WP844301:BA9667\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD&C YELLOW #5/TARTRAZINE AL ... (BHN BAKU PEWARNA TABLET) COA WP844301:BA9667\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D&C YELLOW #10 AL 15 PCT - 20 PCT ... (BHN BAKU PEWARNA TABLET) COA WP844755:BA9949\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"D&C YELLOW #10 AL 15 PCT - 20 PCT ... (BHN BAKU PEWARNA TABLET) COA WP844755:BA9949\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D&C YELLOW #10 AL 15 PCT - 20 PCT ... (BHN BAKU PEWARNA TABLET) COA WP844755:BA9949\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"D&C YELLOW #10 AL 15 PCT - 20 PCT ... (BHN BAKU PEWARNA TABLET) COA WP844755:BA9949\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD&C YELLOW #6/SUNSET YELLOW FCF AL ... (BHN BAKU PEWARNA TABLET) COA WP839971:BA7547\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD&C YELLOW #6/SUNSET YELLOW FCF AL ... (BHN BAKU PEWARNA TABLET) COA WP839971:BA7547\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD&C RED #40/ALLURA RED AC AL 38 PCT- 42 PCT.. (BHN BAKU PEWARNA TABLET) COA WP841246:BA8625\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD&C RED #40/ALLURA RED AC AL 38 PCT- 42 PCT.. (BHN BAKU PEWARNA TABLET) COA WP841246:BA8625\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERYTHROSINE AL 38 PCT - 42 PCT... (BHN BAKU PEWARNA TABLET) COA WP844564:1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"ERYTHROSINE AL 38 PCT - 42 PCT... (BHN BAKU PEWARNA TABLET) COA WP844564:1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINC CITRATE, POWDER, USP 43 (DIETARY SUPPL.) (BHN BAKU SUPPLEMEN) COA 3094704-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181590\", \"uraian\": \"ZINC CITRATE, POWDER, USP 43 (DIETARY SUPPL.) (BHN BAKU SUPPLEMEN) COA 3094704-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NABUMETONE USP (BAHAN BAKU OBAT) COA.H-0690421\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29145000\", \"uraian\": \"NABUMETONE USP (BAHAN BAKU OBAT) COA.H-0690421\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ONDANSETRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA 20015OH2RII\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"ONDANSETRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA 20015OH2RII\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM CARBONATE IPH (BHN BAKU SUPPLEMEN) COA DOC2632121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"SODIUM CARBONATE IPH (BHN BAKU SUPPLEMEN) COA DOC2632121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DICLOFENAC SODIUM USP 43 (BHN BAKU OBAT) COA DFS/11090382 - 11090387,11090390,11090394 ...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"DICLOFENAC SODIUM USP 43 (BHN BAKU OBAT) COA DFS/11090382 - 11090387,11090390,11090394 ...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS FUMARATE (BHN BAKU OBAT) COA 2021/320\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"FERROUS FUMARATE (BHN BAKU OBAT) COA 2021/320\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEVOFLOXACIN HEMIHYDRATE (BHN BAKU OBAT) COA C008-2106507\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"LEVOFLOXACIN HEMIHYDRATE (BHN BAKU OBAT) COA C008-2106507\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NORIT SX SUPER E 153 (BHN BAKU KOSMETIK) COA 4978845\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38021000\", \"uraian\": \"NORIT SX SUPER E 153 (BHN BAKU KOSMETIK) COA 4978845\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90 PCT GRANULATION (BHN BAKU SUPPLEMEN) COA WB21049093,WB21049094\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90 PCT GRANULATION (BHN BAKU SUPPLEMEN) COA WB21049093,WB21049094\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20210702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20210702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2021091803\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2021091803\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 170321,180321,190321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 170321,180321,190321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-051851,SFP-N-061391\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-051851,SFP-N-061391\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-051851,SFP-N-061391\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-051851,SFP-N-061391\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND NEWAPLE (BHN BAKU KOSMETIK) COA NWPD-020681\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND NEWAPLE (BHN BAKU KOSMETIK) COA NWPD-020681\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (B) (BHN BAKU KOSMETIK) COA AMIBD-081761\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND AMINO ACID COMPLEX (B) (BHN BAKU KOSMETIK) COA AMIBD-081761\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-010231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-010231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND JEJU TANGERINE EXTRACT (BHN BAKU KOSMETIK) COA GTUP-T-021910\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND JEJU TANGERINE EXTRACT (BHN BAKU KOSMETIK) COA GTUP-T-021910\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUP-011851\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUP-011851\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) BHN BAKU KOSMETIK) COA CHP1210913\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) BHN BAKU KOSMETIK) COA CHP1210913\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA H HMVBD-042481\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA H HMVBD-042481\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-163091\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-163091\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MINIPORYL TM (BHN BAKU KOSMETIK) COA 832019610M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MINIPORYL TM (BHN BAKU KOSMETIK) COA 832019610M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5 PCT CLEAR (BHN BAKU KOSMETIK) COA 785019611M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5 PCT CLEAR (BHN BAKU KOSMETIK) COA 785019611M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 702018037K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ABYSSINE 657 (BHN BAKU KOSMETIK) COA 702018037K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769019234M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769019234M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769019234M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769019234M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2119406\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) COA 2119406\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MINIPORYL TM (BHN BAKU KOSMETIK) COA 832019610M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MINIPORYL TM (BHN BAKU KOSMETIK) COA 832019610M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU KOSMETIK) COA 02/19GAAK\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT KIWI (BAHAN BAKU KOSMETIK) COA 02/19GAAK\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK)COA 02/19GAAK, SAMPLE NO COMM VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK)COA 02/19GAAK, SAMPLE NO COMM VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 185845\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 185845\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102102035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102102035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M -31.0 PCT (BHN BAKU OBAT) COA 102129041,102129045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MG HYD PASTE USP TYPE M -31.0 PCT (BHN BAKU OBAT) COA 102129041,102129045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M534658 S/D M534662,M534657\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M534658 S/D M534662,M534657\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M534586,M534643,M534655 S/D M534657,M534654\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M534586,M534643,M534655 S/D M534657,M534654\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50 PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21050024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50 PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21050024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT21090026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT21090026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT21090026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT21090026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL02105701,TL02105708\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL02105701,TL02105708\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT21060188\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT21060188\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW92109285\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 C (BHN BAKU MAKANAN) COA XW92109285\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12108030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12108030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL211011,MCCPOL211026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29094900\", \"uraian\": \"MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL211011,MCCPOL211026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) COA 1573747\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) COA 1573747\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-061391\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-061391\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IONOL (R) CP (BHN BAKU KOSMETIK), COA 01141420\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29071900\", \"uraian\": \"IONOL (R) CP (BHN BAKU KOSMETIK), COA 01141420\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA210802,HEA211003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA210802,HEA211003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA210802,HEA211003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA210802,HEA211003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA210802,HEA211003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA210802,HEA211003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA210802,HEA211003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA210802,HEA211003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET) COA DT721117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX RED (BHN BAKU PEWARNA TABLET) COA DT721117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-010411\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-010411\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011851\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011851\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-021820\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-021820\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND CARBAMIDE (BHN BAKU KOSMETIK) COA U211027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND CARBAMIDE (BHN BAKU KOSMETIK) COA U211027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-010231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-010231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-072081\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-072081\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE 1PCT SOLUTION (BHN BAKU KOSMETIK) COA HASC-130841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND BIO-SODIUM HYALURONATE 1PCT SOLUTION (BHN BAKU KOSMETIK) COA HASC-130841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND TEA TREE EXTRACT (BHN BAKU KOSMETIK) COA MASL-031381\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND TEA TREE EXTRACT (BHN BAKU KOSMETIK) COA MASL-031381\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (VLMW) (BHN BAKU KOSMETIK)COA CHP1211007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (VLMW) (BHN BAKU KOSMETIK)COA CHP1211007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-051501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-051501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 102121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 102121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011851\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011851\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-173091\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-173091\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (LMW) (BHN BAKU KOSMETIK)COA CHP1210927\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (LMW) (BHN BAKU KOSMETIK)COA CHP1210927\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-061391\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-061391\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND KIWI EXTRACT(BHN BAKU KOSMETIK) COA KFB-L-041281\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND KIWI EXTRACT(BHN BAKU KOSMETIK) COA KFB-L-041281\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0050521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0050521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METOCLOPRAMIDE HYDROCHLORIDE BP (BHN BAKU OBAT) COA M-2109418\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"METOCLOPRAMIDE HYDROCHLORIDE BP (BHN BAKU OBAT) COA M-2109418\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DESONIDE MICRONIZED (BHN BAKU OBAT) COA NB2195M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"DESONIDE MICRONIZED (BHN BAKU OBAT) COA NB2195M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SELOHVITA C (BHN BAKU SUPPLEMEN) COA 3105597,3105469\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28429010\", \"uraian\": \"SELOHVITA C (BHN BAKU SUPPLEMEN) COA 3105597,3105469\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SELOHVITA C (BHN BAKU SUPPLEMEN) COA 3107175\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28429010\", \"uraian\": \"SELOHVITA C (BHN BAKU SUPPLEMEN) COA 3107175\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS LACTATE 2-HYDRATE, POWDER (BHN BAKU MAKANAN) COA 3107161\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181200\", \"uraian\": \"FERROUS LACTATE 2-HYDRATE, POWDER (BHN BAKU MAKANAN) COA 3107161\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20210919\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20210919\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 2120606\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNEBUSTERS (BHN BAKU KOSMETIK) COA 2120606\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 212280\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 212280\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AP GRIT (ROUND)G #60-80 (BHN BAKU KOSMETIK) COA 211205\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AP GRIT (ROUND)G #60-80 (BHN BAKU KOSMETIK) COA 211205\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 211752\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 211752\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-56A(18KG) (BHN BAKU KOSMETIK) COA 110060\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-56A(18KG) (BHN BAKU KOSMETIK) COA 110060\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) COA 109262\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6028 (16KG) (BHN BAKU KOSMETIK) COA 109262\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038(16KG) (BHN BAKU KOSMETIK) COA 108262\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038(16KG) (BHN BAKU KOSMETIK) COA 108262\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6017(17KG) (BHN BAKU KOSMETIK) COA 109167\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6017(17KG) (BHN BAKU KOSMETIK) COA 109167\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) COA 109889\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSP-100 (10KG) (BHN BAKU KOSMETIK) COA 109889\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP-101 (15KG) (BHN BAKU KOSMETIK) COA 105401\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSP-101 (15KG) (BHN BAKU KOSMETIK) COA 105401\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0821010281\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0821010281\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02102015,UE02102021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02102015,UE02102021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00717409\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"AMPHISOL K (BHN BAKU KOSMETIK) COA VE00717409\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21070210\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21070210\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES2106548\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"ALLANTOIN (BHN BAKU KOSMETIK) COA ES2106548\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0421040024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HMS (BHN BAKU KOSMETIK) COA 0421040024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0821010281\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0821010281\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0921020014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX (BHN BAKU KOSMETIK) COA 0921020014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92109282\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92109282\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02011038,UE02101012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02011038,UE02101012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50 PCT CWS/S (BHN BAKU MAKANAN) COA UE02105102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50 PCT CWS/S (BHN BAKU MAKANAN) COA UE02105102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10 PCT CWS (BHN BAKU MAKANAN) COA UT21050015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10 PCT CWS (BHN BAKU MAKANAN) COA UT21050015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21040137\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21040137\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02105006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02105006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3 PCT (BHN BAKU SUPPLEMEN) COA WB20040052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3 PCT (BHN BAKU SUPPLEMEN) COA WB20040052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5 PCT SD (BHN BAKU SUPPLEMEN) COA UT20060003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5 PCT SD (BHN BAKU SUPPLEMEN) COA UT20060003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50 PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21040021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50 PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21040021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5 PCT SD (BHN BAKU SUPPLEMEN) COA UT20060003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5 PCT SD (BHN BAKU SUPPLEMEN) COA UT20060003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT21060188\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT21060188\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50 PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21040021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50 PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21040021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50 PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21040021,UT21050024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50 PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21040021,UT21050024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT21040137\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT21040137\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT21040137\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT21040137\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT21040140\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT21040140\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT21040140,UT21040141\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT21040140,UT21040141\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21040007,UT21040011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21040007,UT21040011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT21040137\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT21040137\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21040011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21040011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202110-008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35040000\", \"uraian\": \"SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202110-008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SOYA LECITHIN (BHN BAKU MAKANAN) COA TY2210706-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232010\", \"uraian\": \"SOYA LECITHIN (BHN BAKU MAKANAN) COA TY2210706-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 210415\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"OILESS'CITY TM (BHN BAKU KOSMETIK) COA 210415\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 200625\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061900\", \"uraian\": \"MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 200625\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 210711\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 210711\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 210415\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"OILESS'CITY TM (BHN BAKU KOSMETIK) COA 210415\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 210618\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 210618\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1123046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1123046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2355402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2355402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2305551\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2305551\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1004958\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1004958\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0175474\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0175474\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1046607\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1046607\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0365879\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0365879\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM CARBONATE, HEAVY (BHN BAKU OBAT) COA 3095827\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28369990\", \"uraian\": \"MAGNESIUM CARBONATE, HEAVY (BHN BAKU OBAT) COA 3095827\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAPROTILINE HCL (BHN BAKU OBAT) COA 2150002151\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29214900\", \"uraian\": \"MAPROTILINE HCL (BHN BAKU OBAT) COA 2150002151\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH650452\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH650452\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH650517\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH650517\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH650515\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH650515\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH650495\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH650495\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH650518\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH650518\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH650516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH650516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH650429\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH650429\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH650635\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH650635\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH650431\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH650431\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH650432\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH650432\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH650158\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH650158\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 20S0252500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 20S0252500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 20S0252500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 20S0252500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 21S0233301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 21S0233301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRTOGENOL (R) (BHN BAKU SUPLEMEN) COA 21S0115800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"MIRTOGENOL (R) (BHN BAKU SUPLEMEN) COA 21S0115800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA/PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 20S0317200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"CENTELLA ASIATICA/PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 20S0317200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SERENOA REPENS PURIFIED EXT (BHN BAKU SUPLEMEN) COA 20S0245600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SERENOA REPENS PURIFIED EXT (BHN BAKU SUPLEMEN) COA 20S0245600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRTOGENOL (R) (BHN BAKU SUPLEMEN) COA 21S0115800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"MIRTOGENOL (R) (BHN BAKU SUPLEMEN) COA 21S0115800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECHINACEA ANG.DRY PURIF.EX (BHN BAKU SUPLEMEN) COA 20S0173900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ECHINACEA ANG.DRY PURIF.EX (BHN BAKU SUPLEMEN) COA 20S0173900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 21S0231200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 21S0231200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for P.GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 20S0004000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"P.GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 20S0004000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for P.GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 20S0004000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"P.GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 20S0004000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIROXICAM (BAHAN BAKU OBAT ) COA PRX2021002M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"PIROXICAM (BAHAN BAKU OBAT ) COA PRX2021002M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ISDN 25PCT-LACTOSE 450 75PCT DILUTED (BHN BAKU OBAT) COA 2111770\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"ISDN 25PCT-LACTOSE 450 75PCT DILUTED (BHN BAKU OBAT) COA 2111770\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIMETHOPRIM POWDER BP (BHN BAKU PAKAN TERNAK) COA A-20112110019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"TRIMETHOPRIM POWDER BP (BHN BAKU PAKAN TERNAK) COA A-20112110019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CROSPOVIDONE XL (BHN BAKU OBAT) COA PP210609XL\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"CROSPOVIDONE XL (BHN BAKU OBAT) COA PP210609XL\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POVIDONE K-25 (BHN BAKU OBAT) COA PK25-210628F31\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"POVIDONE K-25 (BHN BAKU OBAT) COA PK25-210628F31\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARACETAMOL USP (BHN BAKU OBAT) COA 2130798,2110003,2150092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"PARACETAMOL USP (BHN BAKU OBAT) COA 2130798,2110003,2150092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEVOFLOXACIN HEMIHYDRATE (FREE ALKALINE) (BHN BAKU OBAT) COA C008-2106507\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"LEVOFLOXACIN HEMIHYDRATE (FREE ALKALINE) (BHN BAKU OBAT) COA C008-2106507\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYPOL 980 (20KG) (BAHAN BAKU KOSMETIK) COA 11521029,11521030,11521031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39069099\", \"uraian\": \"ACRYPOL 980 (20KG) (BAHAN BAKU KOSMETIK) COA 11521029,11521030,11521031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for UBIDECARENONE (COENZYM Q10 FERMENTATIVE) BHN BAKU KOSMETIK) COA 51-2105150\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29146200\", \"uraian\": \"UBIDECARENONE (COENZYM Q10 FERMENTATIVE) BHN BAKU KOSMETIK) COA 51-2105150\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VALERIAN D.H.E> 0.8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 21B0041700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VALERIAN D.H.E> 0.8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 21B0041700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IVY DRY HYDR EXTR 10PCT HPLC (BAHAN BAKU SUPLEMEN) COA 21B0077400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"IVY DRY HYDR EXTR 10PCT HPLC (BAHAN BAKU SUPLEMEN) COA 21B0077400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PASSION FLOWER D.H.E 4PCT (BAHAN BAKU SUPLEMEN) COA 21B0099700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PASSION FLOWER D.H.E 4PCT (BAHAN BAKU SUPLEMEN) COA 21B0099700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HAWTHORN DRY HYDR. EXTR (BHN BAKU SUPLEMEN) COA 20B0127300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HAWTHORN DRY HYDR. EXTR (BHN BAKU SUPLEMEN) COA 20B0127300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BUTCHERBROOM DRY HYDR EX.9-11 (BHN BAKU SUPLEMEN) COA 20B0175500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BUTCHERBROOM DRY HYDR EX.9-11 (BHN BAKU SUPLEMEN) COA 20B0175500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYMARIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 21B0087300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SILYMARIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 21B0087300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0107000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0107000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0107000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0107000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0086000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0086000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E4M PREMIUM HYDROXYPROPYL METHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D180K3B013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E4M PREMIUM HYDROXYPROPYL METHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D180K3B013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL METHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D180K6T003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM HYDROXYPROPYL METHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D180K6T003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL METHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D180K2Q001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM CR HYDROXYPROPYL METHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D180K2Q001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL METHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D180K4K002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM CR HYDROXYPROPYL METHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D180K4K002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D180L52021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D180L52021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM HYDROXYPROPYL METHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D180KCJ002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM HYDROXYPROPYL METHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D180KCJ002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL METHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D011L3HL01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV HYDROXYPROPYL METHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D011L3HL01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019668M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019668M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5 PCT CLEAR (BHN BAKU KOSMETIK) COA 785019611M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5 PCT CLEAR (BHN BAKU KOSMETIK) COA 785019611M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834019745M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834019745M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019668M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019668M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GREYVERSE TM (BHN BAKU KOSMETIK) COA 833019576M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"GREYVERSE TM (BHN BAKU KOSMETIK) COA 833019576M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2119406\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) COA 2119406\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSALITY TM (BHN BAKU KOSMETIK) COA 2033901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROSALITY TM (BHN BAKU KOSMETIK) COA 2033901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-0470621,S-A-0480621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334910\", \"uraian\": \"DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-0470621,S-A-0480621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE BM PELLETS (BHN BAKU OBAT) COA 20E4703\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE BM PELLETS (BHN BAKU OBAT) COA 20E4703\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE AM PELLETS (BHN BAKU OBAT) COA 21E3701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE AM PELLETS (BHN BAKU OBAT) COA 21E3701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG211008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG211008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIUSID VET POWDER @1 KG (PAKAN IKAN BERBENTUK BUBUK) COA X-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"VIUSID VET POWDER @1 KG (PAKAN IKAN BERBENTUK BUBUK) COA X-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE WHITE (BHN BAKU PEWARNA TABLET) COA WP848554\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE WHITE (BHN BAKU PEWARNA TABLET) COA WP848554\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPPLEMEN) COA WB21030293\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPPLEMEN) COA WB21030293\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340324,B340325\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX COMPACTED (BHN BAKU OBAT) COA B340324,B340325\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334784\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX POWDER (BHN BAKU OBAT) COA B334784\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ10917011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ10917011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO (R) LUTEIN 20 PCT SAF (BHN BAKU SUPPLEMEN) COA UE02109022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO (R) LUTEIN 20 PCT SAF (BHN BAKU SUPPLEMEN) COA UE02109022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIO VINACCIOLI RAFFINATO (BHN BAKU KOSMETIK) COA B2100275\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15152919\", \"uraian\": \"OLIO VINACCIOLI RAFFINATO (BHN BAKU KOSMETIK) COA B2100275\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIO MANDORLE DOLCI RAFF.EU PH (BHN BAKU KOSMETIK) COA B2100216\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15152919\", \"uraian\": \"OLIO MANDORLE DOLCI RAFF.EU PH (BHN BAKU KOSMETIK) COA B2100216\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0294317\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0294317\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1195933\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1195933\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1244192\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1244192\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1063145\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1063145\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1201851\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1201851\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1123223\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1123223\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1221115\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1221115\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1126127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1126127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL ISOVILATEX ENRICHMENT 10ML 5 EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1286863\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL ISOVILATEX ENRICHMENT 10ML 5 EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1286863\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1271802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1271802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1271802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1271802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1271802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1271802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1271802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1271802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LABRAFIL M 1944 CS BF (BAHAN BAKU OBAT) COA 186122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LABRAFIL M 1944 CS BF (BAHAN BAKU OBAT) COA 186122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LABRASOL BF (BHN BAKU OBAT) COA 186053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LABRASOL BF (BHN BAKU OBAT) COA 186053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELEOL MONO AND DIGLYCERIDES NF (BAHAN BAKU OBAT) COA 21E3603\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELEOL MONO AND DIGLYCERIDES NF (BAHAN BAKU OBAT) COA 21E3603\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EMULCIRE 61 WL 2659 (BHN BAKU OBAT) COA 185819\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"EMULCIRE 61 WL 2659 (BHN BAKU OBAT) COA 185819\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPRITOL 888 PELLETS (BAHAN BAKU OBAT) COA 20E4902\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"COMPRITOL 888 PELLETS (BAHAN BAKU OBAT) COA 20E4902\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02103038\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02103038\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ10816068,UQ10816069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ10816068,UQ10816069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20 PCT S (BHN BAKU SUPPLEMEN) COA UT21080014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20 PCT S (BHN BAKU SUPPLEMEN) COA UT21080014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20 PCT S (BHN BAKU SUPPLEMEN) COA UT21080014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20 PCT S (BHN BAKU SUPPLEMEN) COA UT21080014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20 PCT S (BHN BAKU SUPPLEMEN) COA UT21080014,UT21090024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20 PCT S (BHN BAKU SUPPLEMEN) COA UT21080014,UT21090024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02108192\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02108192\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPPLEMEN) COA UT21070061\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPPLEMEN) COA UT21070061\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT21060056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT21060056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20 PCT S (BHN BAKU SUPPLEMEN) COA UT21090024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20 PCT S (BHN BAKU SUPPLEMEN) COA UT21090024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1 PCT WS (BHN BAKU SUPPLEMEN) COA UT21020013,UT21070019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1 PCT WS (BHN BAKU SUPPLEMEN) COA UT21020013,UT21070019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20 PCT S (BHN BAKU SUPPLEMEN) COA UT21090024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20 PCT S (BHN BAKU SUPPLEMEN) COA UT21090024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20 PCT S (BHN BAKU SUPPLEMEN) COA UT21090024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20 PCT S (BHN BAKU SUPPLEMEN) COA UT21090024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU SUPPLEMEN) COA UT21040032,UT21070034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU SUPPLEMEN) COA UT21040032,UT21070034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30 PCT FS (BHN BAKU MAKANAN) COA UE02107051,UE02107052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30 PCT FS (BHN BAKU MAKANAN) COA UE02107051,UE02107052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30 PCT FS (BHN BAKU MAKANAN) COA UE02107052,UE02107053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30 PCT FS (BHN BAKU MAKANAN) COA UE02107052,UE02107053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT21040014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT21040014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01D260M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01D260M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1204081\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1204081\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1081578\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1081578\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0217346,1188932\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0217346,1188932\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1047444\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1047444\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1204081\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1204081\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01D216M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01D216M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1201798\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1201798\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1231054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1231054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1221531\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1221531\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BIGGY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1166930\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BIGGY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1166930\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 4 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1176291\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 4 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1176291\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE CITRATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9247669\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DESOXYCHOLATE CITRATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9247669\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1103652\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1103652\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0002110\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0002110\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01D245M,B03D253M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01D245M,B03D253M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1042613\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1042613\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1019654\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1019654\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YPD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1188444\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE YPD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1188444\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1231054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1231054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B03D253M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B03D253M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1231054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1231054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 1243173\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 1243173\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1242029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1242029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01D216M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01D216M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GRAM CRYSTAL VIOLET 250ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1213772\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GRAM CRYSTAL VIOLET 250ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1213772\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1257090\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1257090\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GRAM IODINE STABILIZED 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1180501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GRAM IODINE STABILIZED 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1180501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1231182\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1231182\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1252369\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1252369\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1277944\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1277944\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/11100532\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/11100532\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COPPER SULFATE, POWDER, PH.EUR.10.ED (BHN BAKU SUPLEMEN) COA 3104865\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332500\", \"uraian\": \"COPPER SULFATE, POWDER, PH.EUR.10.ED (BHN BAKU SUPLEMEN) COA 3104865\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RUGENER DREIKRONEN HEILKREIDE 25K (BHN BAKU KOSMETIK) COA 8022125400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25090000\", \"uraian\": \"RUGENER DREIKRONEN HEILKREIDE 25K (BHN BAKU KOSMETIK) COA 8022125400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01D270M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01D270M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1243442\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1243442\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GRAM SAFRANIN 250ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1243435\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GRAM SAFRANIN 250ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1243435\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01D270M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01D270M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CATECHINS TEAVIGO 1KG (BHN BAKU KOSMETIK), COA 105161\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"CATECHINS TEAVIGO 1KG (BHN BAKU KOSMETIK), COA 105161\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OCTENINDINE DIHYDROCHLORIDE (BHN BAKU KOSMETIK) COA OTD-00051021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"OCTENINDINE DIHYDROCHLORIDE (BHN BAKU KOSMETIK) COA OTD-00051021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP846881\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP846881\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP846884\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP846884\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD&C YELLOW #6/SUNSET YELLOW FCF AL ... (BHN BAKU PEWARNA TABLET) COA WP839971:BA7547\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD&C YELLOW #6/SUNSET YELLOW FCF AL ... (BHN BAKU PEWARNA TABLET) COA WP839971:BA7547\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D&C YELLOW #10 AL 15 PCT - 20 PCT D&C YELLOW...(BHN BAKU PEWARNA TABLET) COA WP844750:BA9967\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"D&C YELLOW #10 AL 15 PCT - 20 PCT D&C YELLOW...(BHN BAKU PEWARNA TABLET) COA WP844750:BA9967\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD&C YELLOW #6/SUNSET YELLOW FCF AL ... (BHN BAKU PEWARNA TABLET) COA WP839971:BA7547\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD&C YELLOW #6/SUNSET YELLOW FCF AL ... (BHN BAKU PEWARNA TABLET) COA WP839971:BA7547\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE GOLD (BHN BAKU PEWARNA TABLET) COA WP849115\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE GOLD (BHN BAKU PEWARNA TABLET) COA WP849115\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB21080245,WB21080248\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB21080245,WB21080248\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY SGR TRANSLUCENT (BHN BAKU PEWARNA TABLET) COA GA696991\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY SGR TRANSLUCENT (BHN BAKU PEWARNA TABLET) COA GA696991\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY SGR CLEAR (BHN BAKU PEWARNA TABLET) COA GA697125\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY SGR CLEAR (BHN BAKU PEWARNA TABLET) COA GA697125\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRASIL CM 5 L (BHN BAKU KOSMETIK) COA 2143WKQ415\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29319049\", \"uraian\": \"MIRASIL CM 5 L (BHN BAKU KOSMETIK) COA 2143WKQ415\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRASIL DM 5 L (BHN BAKU KOSMETIK) COA 2133FF2415,2132FF2615\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100090\", \"uraian\": \"MIRASIL DM 5 L (BHN BAKU KOSMETIK) COA 2133FF2415,2132FF2615\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID 325 MESH (BHN BAKU SUPLEMEN) COA HPD2110053,HPD2110052,HPD2110051,HPD....\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID 325 MESH (BHN BAKU SUPLEMEN) COA HPD2110053,HPD2110052,HPD2110051,HPD....\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA EDS/CB00809\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"ERDOSTEINE (BAHAN BAKU OBAT) COA EDS/CB00809\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 21100419,21100420\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29395900\", \"uraian\": \"DIMENHYDRINATE (BHN BAKU OBAT) COA 21100419,21100420\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIVAROXABAN EP (BHN BAKU OBAT) COA BAN500121,BAN500621,BAN500821,BAN501221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"RIVAROXABAN EP (BHN BAKU OBAT) COA BAN500121,BAN500621,BAN500821,BAN501221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02105011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE02105011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21060182\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21060182\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21060182\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21060182\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-PANTHENOL 50 L (BHN BAKU KOSMETIK) COA TL02104620\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL-PANTHENOL 50 L (BHN BAKU KOSMETIK) COA TL02104620\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02102021,UE02103035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02102021,UE02103035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0421040024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HMS (BHN BAKU KOSMETIK) COA 0421040024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0821010284\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0821010284\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02010815,TL02010816\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02010815,TL02010816\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES2106548\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"ALLANTOIN (BHN BAKU KOSMETIK) COA ES2106548\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COAXW92110028,XW92110029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COAXW92110028,XW92110029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0921020014,0921020016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX (BHN BAKU KOSMETIK) COA 0921020014,0921020016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA QZ11210440\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA QZ11210440\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02103036\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02103036\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210002,0708210003,0708210016,0708210017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210002,0708210003,0708210016,0708210017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF21092005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF21092005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW92109286\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 C (BHN BAKU MAKANAN) COA XW92109286\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 - C3 (BHN BAKU MAKANAN) COA XW92109291,XW92109292\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 - C3 (BHN BAKU MAKANAN) COA XW92109291,XW92109292\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 - C3 (BHN BAKU MAKANAN) COA XW92109292,XW92109293\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 - C3 (BHN BAKU MAKANAN) COA XW92109292,XW92109293\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN MINERAL PREMIX WFP RICE KERNEL (BHN BAKU MAKANAN) COA XW92110189\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN MINERAL PREMIX WFP RICE KERNEL (BHN BAKU MAKANAN) COA XW92110189\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT21090026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT21090026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12108030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12108030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT21030022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT21030022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50 PCT CWS/S (BHN BAKU MAKANAN) COA UE02105081\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50 PCT CWS/S (BHN BAKU MAKANAN) COA UE02105081\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10 PCT CWS (BHN BAKU MAKANAN) COA UT21050015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10 PCT CWS (BHN BAKU MAKANAN) COA UT21050015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12108033,OP12109001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12108033,OP12109001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ10310580\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ10310580\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12108030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12108030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ10310580\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ10310580\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2101008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2101008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ10412162,UQ10412166\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ10412162,UQ10412166\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92109294,XW92109295\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"V003400 (BHN BAKU MAKANAN) COA XW92109294,XW92109295\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH650921\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH650921\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH650920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH650920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH650922\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH650922\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH650888\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH650888\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB MAROON (BHN BAKU PEWARNA TABLET) COA SH650889\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB MAROON (BHN BAKU PEWARNA TABLET) COA SH650889\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH650890\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH650890\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH650911\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH650911\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH650891\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH650891\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH649661\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH649661\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH650443\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH650443\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH650912\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH650912\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH650892\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH650892\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH650893\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH650893\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB RED (BHN BAKU PEWARNA TABLET) COA SH650894\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB RED (BHN BAKU PEWARNA TABLET) COA SH650894\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND BROWN (BHN BAKU PEWARNA TABLET) COA SH650913\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND BROWN (BHN BAKU PEWARNA TABLET) COA SH650913\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH650919\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH650919\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BLUE (BHN BAKU PEWARNA TABLET) COA SH650923\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BLUE (BHN BAKU PEWARNA TABLET) COA SH650923\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH650736\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH650736\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0058979\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0058979\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0058979\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0058979\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50411\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061100\", \"uraian\": \"MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50411\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEARL ESSENCES 35031MJ (BHN BAKU KOSMETIK) COA D1390252\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32061910\", \"uraian\": \"PEARL ESSENCES 35031MJ (BHN BAKU KOSMETIK) COA D1390252\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEONY P118 182 (BHN BAKU KOSMETIK) COA 3215925\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"PEONY P118 182 (BHN BAKU KOSMETIK) COA 3215925\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTIBOND TG-AK (BAHAN BAKU MAKANAN) COA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069091\", \"uraian\": \"PROTIBOND TG-AK (BAHAN BAKU MAKANAN) COA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102102039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102102039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM CARBONATE DC TYPE CS90 PHARMA (BHN BAKU SUPPLEMEN) COA 202100523\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28365010\", \"uraian\": \"CALCIUM CARBONATE DC TYPE CS90 PHARMA (BHN BAKU SUPPLEMEN) COA 202100523\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL211108,MCCPOL211112\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29094900\", \"uraian\": \"MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL211108,MCCPOL211112\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0107200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0107200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYMARIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 21B0087300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SILYMARIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 21B0087300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID S 67 F (BHN BAKU SUPPLEMEN) COA 576200-2210037/001-006,007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232010\", \"uraian\": \"LIPOID S 67 F (BHN BAKU SUPPLEMEN) COA 576200-2210037/001-006,007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA 8MT2109179\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30032000\", \"uraian\": \"STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA 8MT2109179\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEBIVOLOL HYDROCHLORIDE (BHN BAKU OBAT) COA NHM0170621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"NEBIVOLOL HYDROCHLORIDE (BHN BAKU OBAT) COA NHM0170621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX ANTI PESPIRANT (BHN BAKU KOSMETIK) COA ANTS210201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX ANTI PESPIRANT (BHN BAKU KOSMETIK) COA ANTS210201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GREENSIL (BHN BAKU KOSMETIK) COA GS210803-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GREENSIL (BHN BAKU KOSMETIK) COA GS210803-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RICE MILK AQUEOUS EXTRACT (SB) (BHN BAKU KOSMETIK) COA ORSL201101-AQ\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"RICE MILK AQUEOUS EXTRACT (SB) (BHN BAKU KOSMETIK) COA ORSL201101-AQ\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RICE MILK AQUEOUS EXTRACT (SB) (BHN BAKU KOSMETIK) COA ORSL201101-AQ,ORSL211102-AQ\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"RICE MILK AQUEOUS EXTRACT (SB) (BHN BAKU KOSMETIK) COA ORSL201101-AQ,ORSL211102-AQ\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (SB) (BHN BAKU KOSMETIK)COA ROSD210905-BIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (SB) (BHN BAKU KOSMETIK)COA ROSD210905-BIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK) COA 2111EF3812\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"L-ARGININE LO (BHN BAKU KOSMETIK) COA 2111EF3812\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000199653\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000199653\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000198941,0000199653\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000198941,0000199653\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000199653\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000199653\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT21090026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT21090026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE FCC (BAHAN BAKU MAKANAN) COA 0000198933\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE FCC (BAHAN BAKU MAKANAN) COA 0000198933\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BAHAN BAKU MAKANAN) COA UT21060051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BAHAN BAKU MAKANAN) COA UT21060051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BAHAN BAKU SUPPLEMEN) COA UE02101004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BAHAN BAKU SUPPLEMEN) COA UE02101004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BAHAN BAKU SUPPLEMEN) COA UT21090026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BAHAN BAKU SUPPLEMEN) COA UT21090026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V003400 (BAHAN BAKU MAKANAN) COA XW92110218, XW92110219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"V003400 (BAHAN BAKU MAKANAN) COA XW92110218, XW92110219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V003400 (BAHAN BAKU MAKANAN) COA XW92110219,XW92110220,XW92110221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"V003400 (BAHAN BAKU MAKANAN) COA XW92110219,XW92110220,XW92110221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2355402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2355402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2355402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2355402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1004958\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1004958\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1046610\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1046610\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1046610\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1046610\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1123046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1123046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2355402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2355402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2355402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2355402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2305551\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2305551\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2305551\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2305551\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1004958\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1004958\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0175474\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0175474\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1046610\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1046610\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD SUPREME FPM 500 GRAMS EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2348881\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD SUPREME FPM 500 GRAMS EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2348881\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEPTONE STARTER PAK NO 1... (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 210412001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PEPTONE STARTER PAK NO 1... (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 210412001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103152821\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103152821\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104312921\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104312921\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105713621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200H (BHN BAKU OBAT) COA L105713621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLOWLAC (R) 100H (BHN BAKU OBAT) COA L105812121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"FLOWLAC (R) 100H (BHN BAKU OBAT) COA L105812121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CELLACTOSE (R) 80 (BHN BAKU OBAT) COA L100462721\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"CELLACTOSE (R) 80 (BHN BAKU OBAT) COA L100462721\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105713621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200H (BHN BAKU OBAT) COA L105713621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M534820,M534821,M534822,M534823,M534824,M534819\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M534820,M534821,M534822,M534823,M534824,M534819\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FRENCH MARITIME PINE BARK EXTRACT (BAHAN BAKU OBAT) COA X/7630\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FRENCH MARITIME PINE BARK EXTRACT (BAHAN BAKU OBAT) COA X/7630\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OXOMEMAZINE HYDROCHLORIDE (BHN BAKU OBAT) COA HXHCPP001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29343000\", \"uraian\": \"OXOMEMAZINE HYDROCHLORIDE (BHN BAKU OBAT) COA HXHCPP001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-021781\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-021781\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-010231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-010231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-010411\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-010411\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011851\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011851\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-120891\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-120891\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 111921\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 111921\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-061391\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-061391\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND TEA TREE EXTRACT (BHN BAKU KOSMETIK) COA MASL-031381\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND TEA TREE EXTRACT (BHN BAKU KOSMETIK) COA MASL-031381\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK), COA HMVBD-051501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK), COA HMVBD-051501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-010971,APB-R-022481\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-010971,APB-R-022481\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK) COA LCD44821T\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101990\", \"uraian\": \"SAVONOL 16 (BAHAN BAKU KOSMETIK) COA LCD44821T\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP27721\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP27721\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP28121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP28121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10% EM YELLOW (BHN BAKU MAKANAN) COA UT21090004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10% EM YELLOW (BHN BAKU MAKANAN) COA UT21090004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT. A PALM. 1.0 M + VIT. D3 100'000 (BHN BAKU MAKANAN) COA UT21060126\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VIT. A PALM. 1.0 M + VIT. D3 100'000 (BHN BAKU MAKANAN) COA UT21060126\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SHF\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SHF\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA SIJ\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROTESIL LH (BHN BAKU KOSMETIK) COA SIJ\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS EF-1118(IS) (BHN BAKU KOSMETIK) COA SHB\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS EF-1118(IS) (BHN BAKU KOSMETIK) COA SHB\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA SKG\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) COA SKG\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA SHI\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROTESIL LH (BHN BAKU KOSMETIK) COA SHI\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD&C YELLOW #6/SUNSET YELLOW FCF AL ... (BHN BAKU PEWARNA TABLET) COA WP839971:BA7546\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD&C YELLOW #6/SUNSET YELLOW FCF AL ... (BHN BAKU PEWARNA TABLET) COA WP839971:BA7546\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FENTACARE 2231 EF 25KG PAPER BOX (BHN BAKU KOSMETIK )COA ZH21J2201,ZH21K1004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34029019\", \"uraian\": \"FENTACARE 2231 EF 25KG PAPER BOX (BHN BAKU KOSMETIK )COA ZH21J2201,ZH21K1004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JAGUAR C 162 CARDBOARD BOX 25 KG (BHN BAKU KOSMETIK) COA MJAC21292A\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"JAGUAR C 162 CARDBOARD BOX 25 KG (BHN BAKU KOSMETIK) COA MJAC21292A\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA GA698164\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA GA698164\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340332,B340333\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX COMPACTED (BHN BAKU OBAT) COA B340332,B340333\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334780,B334785\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX POWDER (BHN BAKU OBAT) COA B334780,B334785\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRANOL ULTRA C-32 MB 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP110624MB\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34021990\", \"uraian\": \"MIRANOL ULTRA C-32 MB 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP110624MB\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACETAMINOPHEN (PARACETAMOL) (BHN BAKU OBAT) COA 202109007A,202109008A\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"ACETAMINOPHEN (PARACETAMOL) (BHN BAKU OBAT) COA 202109007A,202109008A\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH651577\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH651577\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH650888\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH650888\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH650892\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH650892\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH651436\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH651436\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH651579\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH651579\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH651580\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH651580\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH651245\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH651245\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH651581\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH651581\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH651582\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH651582\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH651583\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH651583\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH651615\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH651615\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH651601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH651601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH651612\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH651612\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH651602\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH651602\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH652198\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH652198\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY BROWN (BHN BAKU PEWARNA TABLET) COA SH651616\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY BROWN (BHN BAKU PEWARNA TABLET) COA SH651616\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH651628\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH651628\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH651238\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH651238\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK) COA 2111EF6811\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"L-ARGININE LO (BHN BAKU KOSMETIK) COA 2111EF6811\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM CARBONATE, EXTRA LIGHT, POWDER (BHN BAKU OBAT) COA 3103621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28369990\", \"uraian\": \"MAGNESIUM CARBONATE, EXTRA LIGHT, POWDER (BHN BAKU OBAT) COA 3103621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN545344\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN545344\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN545336\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN545336\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN545370\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN545370\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN545355\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN545355\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ONDANSETRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA 21OS002,21OS003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"ONDANSETRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA 21OS002,21OS003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHARMABURST (R) C1 (BHN BAKU OBAT) COA 122100929\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069099\", \"uraian\": \"PHARMABURST (R) C1 (BHN BAKU OBAT) COA 122100929\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHARMABURST (R) 500 (BHN BAKU OBAT) COA 122100954\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069099\", \"uraian\": \"PHARMABURST (R) 500 (BHN BAKU OBAT) COA 122100954\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122101178,122101182\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122101178,122101182\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122101212\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054300\", \"uraian\": \"MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122101212\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SHF,SJG\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SHF,SJG\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA SKH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) COA SKH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL211112,MCCPOL211115\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29094900\", \"uraian\": \"MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL211112,MCCPOL211115\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMLODIPINE BESYLATE BP/EP (BHN BAKU OBAT) COA AMB/158/10/21,AMB/159/10/21\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"AMLODIPINE BESYLATE BP/EP (BHN BAKU OBAT) COA AMB/158/10/21,AMB/159/10/21\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 212280,212924\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 212280,212924\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTO COLLAGE B(N) (BAHAN BAKU KOSMETIK) COA 211021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHYTO COLLAGE B(N) (BAHAN BAKU KOSMETIK) COA 211021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 212073\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 212073\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 212202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"IZAYOI (BHN BAKU KOSMETIK) COA 212202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALPINIAWHITE (BAHAN BAKU KOSMETIK) COA 212418\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ALPINIAWHITE (BAHAN BAKU KOSMETIK) COA 212418\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 3241995\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 3241995\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512130,G02512137\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47069200\", \"uraian\": \"SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512130,G02512137\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512133,G02512137\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47069200\", \"uraian\": \"SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512133,G02512137\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERRIC PYROPHOSPHATE (BHN BAKU MAKANAN) COA 3101653\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28353990\", \"uraian\": \"FERRIC PYROPHOSPHATE (BHN BAKU MAKANAN) COA 3101653\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS SULFATE, DRIED, POWDER, USP 43 (BHN BAKU MAKANAN) COA 3107512\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"FERROUS SULFATE, DRIED, POWDER, USP 43 (BHN BAKU MAKANAN) COA 3107512\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-15(900 G) (BHN BAKU KOSMETIK) COA 104517\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSG-15(900 G) (BHN BAKU KOSMETIK) COA 104517\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 20LNC0927SQ880\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101990\", \"uraian\": \"NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 20LNC0927SQ880\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 20LNC1020SQ901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101990\", \"uraian\": \"NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 20LNC1020SQ901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN)COA ROA273214,ROA276216,ROA277213,ROA...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN)COA ROA273214,ROA276216,ROA277213,ROA...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113603\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113603\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) COA 1573747\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) COA 1573747\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX FOR ENERGY DRINK (BHN BAKU MAKANAN) COA XW92110437\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX FOR ENERGY DRINK (BHN BAKU MAKANAN) COA XW92110437\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NYSTATIN POWDER ROW GRADE (BHN BAKU OBAT) COA C114566\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NYSTATIN POWDER ROW GRADE (BHN BAKU OBAT) COA C114566\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HERBAL EXTRACTS (GARCINIA CAMBOGIA 60 PCT) (BAHAN BAKU KOSMETIK) COA FGC2104003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HERBAL EXTRACTS (GARCINIA CAMBOGIA 60 PCT) (BAHAN BAKU KOSMETIK) COA FGC2104003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO210904\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO210904\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO210603\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO210603\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210603\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210603\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS211004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS211004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK) COA EG209-210701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK) COA EG209-210701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RICE MILK AQUEOUS EXTRACT (SB) (BHN BAKU KOSMETIK) COA ORSL211102-AQ\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"RICE MILK AQUEOUS EXTRACT (SB) (BHN BAKU KOSMETIK) COA ORSL211102-AQ\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RICE MILK AQUEOUS EXTRACT (SB) (BHN BAKU KOSMETIK) COA ORSL211103-AQ\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"RICE MILK AQUEOUS EXTRACT (SB) (BHN BAKU KOSMETIK) COA ORSL211103-AQ\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COACFM210602-PGH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COACFM210602-PGH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIVE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA OLE2108R1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OLIVE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA OLE2108R1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIGELINE (BHN BAKU KOSMETIK) COA KA210605-B\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KIGELINE (BHN BAKU KOSMETIK) COA KA210605-B\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-031691\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-031691\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011851\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011851\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-120891\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-120891\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-021081\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-021081\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 111921\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 111921\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-042781\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-042781\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-032861\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-032861\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIOCTP-500 (BHN BAKU KOSMETIK) COA BOPN-022381\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND BIOCTP-500 (BHN BAKU KOSMETIK) COA BOPN-022381\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1211119\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1211119\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000199654\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000199654\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000199654,0000199655\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000199654,0000199655\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0721010014,0721010030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHS (BHN BAKU KOSMETIK) COA 0721010014,0721010030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-PANTHENOL 50 L (BHN BAKU KOSMETIK) COA TL02104620\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL-PANTHENOL 50 L (BHN BAKU KOSMETIK) COA TL02104620\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210017,0708210018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210017,0708210018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21060182\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21060182\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21060182,UT21070210,UT21090291\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21060182,UT21070210,UT21090291\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0038007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0038007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0721010015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHS (BHN BAKU KOSMETIK) COA 0721010015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001624169\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SLX (BHN BAKU KOSMETIK) COA 0001624169\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000199655\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000199655\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE BP (BHN BAKU OBAT) COA 25311121,25331121,25351121,25371121,25391121,254....\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE BP (BHN BAKU OBAT) COA 25311121,25331121,25351121,25371121,25391121,254....\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CETIRIZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA 21006CZ6RII\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"CETIRIZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA 21006CZ6RII\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM REGULAR GRADE(BHN BAKU OBAT) COA 21111670,21111671,21111672,21111716\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331900\", \"uraian\": \"METAMIZOLE SODIUM REGULAR GRADE(BHN BAKU OBAT) COA 21111670,21111671,21111672,21111716\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAFFEINE BP/EP/USP (BHN BAKU OBAT) COA 21101664-667,21101747,21101751,21111800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29393000\", \"uraian\": \"CAFFEINE BP/EP/USP (BHN BAKU OBAT) COA 21101664-667,21101747,21101751,21111800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELUCIRE 44/14 BF (BAHAN BAKU OBAT) COA 183228\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELUCIRE 44/14 BF (BAHAN BAKU OBAT) COA 183228\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELUCIRE 44/14 BF (BAHAN BAKU OBAT) COA 183398\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELUCIRE 44/14 BF (BAHAN BAKU OBAT) COA 183398\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TEFOSE 63 BF (BAHAN BAKU OBAT) COA 185423\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TEFOSE 63 BF (BAHAN BAKU OBAT) COA 185423\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRANSCUTOL P BF (BAHAN BAKU OBAT) COA 187041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TRANSCUTOL P BF (BAHAN BAKU OBAT) COA 187041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LABRAFAC LIPOPHILE WL 1349 BF (BAHAN BAKU OBAT) COA 186085\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LABRAFAC LIPOPHILE WL 1349 BF (BAHAN BAKU OBAT) COA 186085\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET), COA DT722716\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX RED (BHN BAKU PEWARNA TABLET), COA DT722716\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX PINK (BHN BAKU PEWARNA TABLET), COA DT722759\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX PINK (BHN BAKU PEWARNA TABLET), COA DT722759\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COPPER (II) GLUCONATE, FINE POWDER, USP 43 (BHN BAKU SUPLEMEN) COA 3107840\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"COPPER (II) GLUCONATE, FINE POWDER, USP 43 (BHN BAKU SUPLEMEN) COA 3107840\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NATTOKINASE (BHN BAKU OBAT) COA H185SDK001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35079000\", \"uraian\": \"NATTOKINASE (BHN BAKU OBAT) COA H185SDK001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02110596\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02110596\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU MAKANAN) COA UT21040211\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU MAKANAN) COA UT21040211\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02108192\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02108192\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30 PCT FS (BHN BAKU MAKANAN) COA UE02107055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30 PCT FS (BHN BAKU MAKANAN) COA UE02107055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT21040013,UT21040014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT21040013,UT21040014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21060016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21060016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT21100101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT21100101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02102804,TL02106807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02102804,TL02106807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210076,0708210077,0708210078,0708210079,0708210080\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210076,0708210077,0708210078,0708210079,0708210080\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1264950\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1264950\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOBACILLI AGAR AOAC 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1299409\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOBACILLI AGAR AOAC 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1299409\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1063145\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1063145\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1201851\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1201851\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1126127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1126127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1048171\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1048171\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1175732\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1175732\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1201851\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1201851\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1123223\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1123223\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1126127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1126127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1063138\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1063138\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0128385\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0128385\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL TINSDALE ENRICHMENT 6X15 ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1200461\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL TINSDALE ENRICHMENT 6X15 ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1200461\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1110880,1313171\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE B12 ASSAY MEDIUM USP 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1110880,1313171\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1292716\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1292716\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP Y 1MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1099742\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL N MENINGITIDIS ANTISERUM GRP Y 1MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1099742\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1175732\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1175732\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1257917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1257917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1068161\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1068161\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONT.. (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1214470,124...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONT.. (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1214470,124...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1145029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1145029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1102066\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1102066\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1243871\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EE BROTH MOSSEL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1243871\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MIDDLEBROOK 7H9 BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1081554\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MIDDLEBROOK 7H9 BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1081554\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01D200M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01D200M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1257917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1257917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1173496\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1173496\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHENOL RED BROTH BASE BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0335077\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PHENOL RED BROTH BASE BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0335077\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1229997\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1229997\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9337678\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9337678\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEMOGLOBIN FREEZE DIED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1187642\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEMOGLOBIN FREEZE DIED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1187642\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CHROMAGAR CANDIDA 500GM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1215989\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE CHROMAGAR CANDIDA 500GM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1215989\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1187914\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1187914\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1224924\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1224924\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1292440\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1292440\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0002110\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0002110\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE KF STREPTOCOCCUS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1173803\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE KF STREPTOCOCCUS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1173803\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1061373\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1061373\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER LACTOPHENOL COTTON BLUE STAIN (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B04D215M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER LACTOPHENOL COTTON BLUE STAIN (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B04D215M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1131540\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1131540\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1097873\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1097873\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1272026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1272026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1236639\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1236639\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1292440\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1292440\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1201798\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1201798\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1048461\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1048461\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1188932\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1188932\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1236639\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1236639\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1088540\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1088540\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1272026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1272026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1188932\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1188932\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1061650\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE STERILE RODAC EMPTY 65X15 MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1061650\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LOOPS INOCULATING 10/TUBE 10 MICROLITER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2113830\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"LOOPS INOCULATING 10/TUBE 10 MICROLITER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2113830\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1292440\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1292440\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIFAMPICIN POWDER (BAHAN BAKU OBAT) COA 21B015RF\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"RIFAMPICIN POWDER (BAHAN BAKU OBAT) COA 21B015RF\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL (TM) (BHN BAKU KOSMETIK) COA 830019287M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL (TM) (BHN BAKU KOSMETIK) COA 830019287M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5 PCT CLEAR (BHN BAKU KOSMETIK) COA 785019671M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5 PCT CLEAR (BHN BAKU KOSMETIK) COA 785019671M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5 PCT CLEAR (BHN BAKU KOSMETIK) COA 785019762M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5 PCT CLEAR (BHN BAKU KOSMETIK) COA 785019762M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019668M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019668M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE (TM) PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) COA 702029166M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ABYSSINE (TM) PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) COA 702029166M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE (TM) (BHN BAKU KOSMETIK) COA 829019351M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"B-WHITE (TM) (BHN BAKU KOSMETIK) COA 829019351M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE (TM) (BHN BAKU KOSMETIK) COA 211512\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CHRONOLINE (TM) (BHN BAKU KOSMETIK) COA 211512\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DENDRICLEAR (TM) (BHN BAKU KOSMETIK) COA 834019745M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"DENDRICLEAR (TM) (BHN BAKU KOSMETIK) COA 834019745M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECOGEL (TM) (BHN BAKU KOSMETIK) COA 2125802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ECOGEL (TM) (BHN BAKU KOSMETIK) COA 2125802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL (TM) (BHN BAKU KOSMETIK) COA 2110006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL (TM) (BHN BAKU KOSMETIK) COA 2110006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELANOSTATINE(TM) 5 BG (50PPM) (BHN BAKU KOSMETIK) COA 211497\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MELANOSTATINE(TM) 5 BG (50PPM) (BHN BAKU KOSMETIK) COA 211497\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MINIPORYL (TM) (BHN BAKU KOSMETIK) COA 832019624M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MINIPORYL (TM) (BHN BAKU KOSMETIK) COA 832019624M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSALITY (TM) (BHN BAKU KOSMETIK) COA 2100901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROSALITY (TM) (BHN BAKU KOSMETIK) COA 2100901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILIGEL (TM) (BHN BAKU KOSMETIK) COA 2119602\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILIGEL (TM) (BHN BAKU KOSMETIK) COA 2119602\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB21080246\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB21080246\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB21080246\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB21080246\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21060147\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21060147\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 103093 - A (BHN BAKU MAKANAN) COA XW92110303\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 103093 - A (BHN BAKU MAKANAN) COA XW92110303\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX TRS1 WITHOUT K1 (BHN BAKU MAKANAN) COA XW92110304\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX TRS1 WITHOUT K1 (BHN BAKU MAKANAN) COA XW92110304\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE02105011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU MAKANAN) COA UE02105011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPPLEMEN) COA UQ10409510\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN TABLET GRADE (BHN BAKU SUPPLEMEN) COA UQ10409510\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT21090026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT21090026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT21060147\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT21060147\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50 PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21050024,UT21070034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50 PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21050024,UT21070034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50 PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21070034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50 PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21070034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50 PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21070034,UT21070041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50 PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21070034,UT21070041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21040010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21040010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21040011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21040011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPPLEMEN) COA UQ10713242\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPPLEMEN) COA UQ10713242\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21040011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21040011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5 PCT SD (BHN BAKU SUPPLEMEN) COA UT21050002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5 PCT SD (BHN BAKU SUPPLEMEN) COA UT21050002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5 PCT SD (BHN BAKU SUPPLEMEN) COA UT21050002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5 PCT SD (BHN BAKU SUPPLEMEN) COA UT21050002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ10713242\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ10713242\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92110232\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92110232\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-0570921,S-A-0701121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334910\", \"uraian\": \"DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-0570921,S-A-0701121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANGANESE (II)-SULFATE 1-HYDRATE ( BHN BAKU OBAT) COA 3110084\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"MANGANESE (II)-SULFATE 1-HYDRATE ( BHN BAKU OBAT) COA 3110084\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BUDESONIDE MICRONIZED (BHN BAKU OBAT) COA NB2281M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"BUDESONIDE MICRONIZED (BHN BAKU OBAT) COA NB2281M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MOMETAZONE FUROATE MICRONIZED (BHN BAKU OBAT) COA NB2941M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"MOMETAZONE FUROATE MICRONIZED (BHN BAKU OBAT) COA NB2941M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIAMCINOLONE ACETONIDE MICRONIZED (BHN BAKU OBAT) COA NB2907M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"TRIAMCINOLONE ACETONIDE MICRONIZED (BHN BAKU OBAT) COA NB2907M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/10/211021,221021,281021,011121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/10/211021,221021,281021,011121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/11/021121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123100\", \"uraian\": \"CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/11/021121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE BP (BHN BAKU OBAT) COA ASGP/10/011121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE BP (BHN BAKU OBAT) COA ASGP/10/011121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) (BHN BAKU OBAT) COA 4454035379\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"XANTHAN 80 (PHARMACEUTICAL GRADE) (BHN BAKU OBAT) COA 4454035379\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20211119\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20211119\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MONOPOT PHOS MKP FG 25K BG (PRAYPHOS MKP FG) (BHN BAKU KOSMETIK) COA 21-148-01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"MONOPOT PHOS MKP FG 25K BG (PRAYPHOS MKP FG) (BHN BAKU KOSMETIK) COA 21-148-01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRAYPHOS DKP FG 25KG BG (BHN BAKU KOSMETIK) COA 2025931\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28352400\", \"uraian\": \"PRAYPHOS DKP FG 25KG BG (BHN BAKU KOSMETIK) COA 2025931\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E5 PREMIUM LV HYDROXYPROPYL METHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D011K5BL02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E5 PREMIUM LV HYDROXYPROPYL METHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D011K5BL02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E15 PREMIUM LV HYDROXYPROPYL METHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D011K5NL01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E15 PREMIUM LV HYDROXYPROPYL METHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D011K5NL01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL METHYL... (BHN BAKU PEWARNA TABLET) COA D180L52021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL METHYL... (BHN BAKU PEWARNA TABLET) COA D180L52021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2355402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2355402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1082038\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1082038\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1046610\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1046610\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1046610\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1046610\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1046610\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1046610\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1046610\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1046610\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASAMINO ACIDS TECHNICAL 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1153688\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASAMINO ACIDS TECHNICAL 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1153688\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SOY PEPTONE 100 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2395099\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SOY PEPTONE 100 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2395099\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105713621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200H (BHN BAKU OBAT) COA L105713621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104313121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104313121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105713621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200H (BHN BAKU OBAT) COA L105713621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105713621,L105714621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200H (BHN BAKU OBAT) COA L105713621,L105714621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HA01520\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34021990\", \"uraian\": \"MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HA01520\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUSTAINABLE VIRGIN OLIVE OIL (BHN BAKU KOSMETIK) COA 0000039386\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUSTAINABLE VIRGIN OLIVE OIL (BHN BAKU KOSMETIK) COA 0000039386\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIRGIN SWEET ALMOND OIL (BHN BAKU KOSMETIK) COA 0000038920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15152919\", \"uraian\": \"VIRGIN SWEET ALMOND OIL (BHN BAKU KOSMETIK) COA 0000038920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK) COA NMSP-D-020121,NMSP-D-030121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK) COA NMSP-D-020121,NMSP-D-030121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWDER FORM CATCOL C135(L) GRADE(B.BAKU KOSMETIK) COA 460/21\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GUAR GUM TREATED AND PULVERISED IN POWDER FORM CATCOL C135(L) GRADE(B.BAKU KOSMETIK) COA 460/21\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HA01397,HA01520\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34021990\", \"uraian\": \"MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HA01397,HA01520\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 212953\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 212953\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BAHAN BAKU KOSMETIK) COA 212631\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB (BAHAN BAKU KOSMETIK) COA 212631\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AESTHEFILL V200 (POLYLACTIC ACID) ,COA AF211115\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"AESTHEFILL V200 (POLYLACTIC ACID) ,COA AF211115\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID 325 MESH (BHN BAKU SUPLEMEN) COA HPD2110152,146,145,144,134,133,.132,127,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID 325 MESH (BHN BAKU SUPLEMEN) COA HPD2110152,146,145,144,134,133,.132,127,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SORBITOL SPECIAL TM MDF 85 (BHN BAKU OBAT) COA M21007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054400\", \"uraian\": \"SORBITOL SPECIAL TM MDF 85 (BHN BAKU OBAT) COA M21007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) COA 7766039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) COA 7766039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) COA 7766038\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) COA 7766038\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) LICORICE GWP (BHN BAKU KOSMETIK) COA 10300015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"EXTRAPONE (R) LICORICE GWP (BHN BAKU KOSMETIK) COA 10300015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACTIPONE (R) WHITE TEA GW (BHN BAKU KOSMETIK) COA 10300048\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"ACTIPONE (R) WHITE TEA GW (BHN BAKU KOSMETIK) COA 10300048\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTOCONCENTROLE (R) CAMOMILE (BHN BAKU KOSMETIK) COA 10300044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"PHYTOCONCENTROLE (R) CAMOMILE (BHN BAKU KOSMETIK) COA 10300044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD&C YELLOW NO 6 87 PCT PDR (BHN BAKU KOSMETIK) COA 10300020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"FD&C YELLOW NO 6 87 PCT PDR (BHN BAKU KOSMETIK) COA 10300020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EPERISONE HYDROCHLORIDE SYN-TECH (BHN BAKU OBAT) COA E10-21052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"EPERISONE HYDROCHLORIDE SYN-TECH (BHN BAKU OBAT) COA E10-21052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LABRAFIL M 1944 CS BF (BAHAN BAKU OBAT) COA 186488\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LABRAFIL M 1944 CS BF (BAHAN BAKU OBAT) COA 186488\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CETYL PALMITATE PELLETSCAR (BHN BAKU OBAT) COA 185624\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"CETYL PALMITATE PELLETSCAR (BHN BAKU OBAT) COA 185624\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELUCIRE 48/16 PELLETS CAR (BAHAN BAKU OBAT) COA 185000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELUCIRE 48/16 PELLETS CAR (BAHAN BAKU OBAT) COA 185000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANTOPRAZOLE SODIUM (STERILE) BAHAN BAKU OBAT SI/PPZ/01691021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"PANTOPRAZOLE SODIUM (STERILE) BAHAN BAKU OBAT SI/PPZ/01691021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP846876\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP846876\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP846877\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP846877\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D&C YELLOW #10 AL 15 PCT - 20 PCT... (BHN BAKU PEWARNA TABLET) COA WP844752:BA9879\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"D&C YELLOW #10 AL 15 PCT - 20 PCT... (BHN BAKU PEWARNA TABLET) COA WP844752:BA9879\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD&C YELLOW #5/TARTRAZINE AL 36PCT - 39 PCT... (BHN BAKU PEWARNA TABLET) COA WP844299:BA9550\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD&C YELLOW #5/TARTRAZINE AL 36PCT - 39 PCT... (BHN BAKU PEWARNA TABLET) COA WP844299:BA9550\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERYTHROSINE AL 38 PCT-42 PCT... (BHN BAKU PEWARNA TABLET) COA WP844563:1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"ERYTHROSINE AL 38 PCT-42 PCT... (BHN BAKU PEWARNA TABLET) COA WP844563:1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D&C YELLOW #10 AL 15 PCT - 20 PCT... (BHN BAKU PEWARNA TABLET) COA WP844749:BA9877\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"D&C YELLOW #10 AL 15 PCT - 20 PCT... (BHN BAKU PEWARNA TABLET) COA WP844749:BA9877\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD&C BLUE #1/BRILLIANT BLUE FCF AL ... (BHN BAKU PEWARNA TABLET) COA WP840330:BA7714\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD&C BLUE #1/BRILLIANT BLUE FCF AL ... (BHN BAKU PEWARNA TABLET) COA WP840330:BA7714\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD&C YELLOW #6/SUNSET YELLOW FCF AL ... (BHN BAKU PEWARNA TABLET) COA WP839971:BA7546\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD&C YELLOW #6/SUNSET YELLOW FCF AL ... (BHN BAKU PEWARNA TABLET) COA WP839971:BA7546\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERYTHROSINE AL 38 PCT-42 PCT (JECFA, GB) ERYTHROSINE...(BHN BAKU PEWARNA TABLET) COA WP844563:1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"ERYTHROSINE AL 38 PCT-42 PCT (JECFA, GB) ERYTHROSINE...(BHN BAKU PEWARNA TABLET) COA WP844563:1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD&C YELLOW #5/TARTRAZINE AL36 PCT - 39 PCT.. (BHN BAKU PEWARNA TABLET) COA WP844299:BA9550\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD&C YELLOW #5/TARTRAZINE AL36 PCT - 39 PCT.. (BHN BAKU PEWARNA TABLET) COA WP844299:BA9550\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD&C BLUE #1/BRILLIANT BLUE FCF AL 28PCT-31PCT... (BHN BAKU PEWARNA TABLET) COA WP846602:BB1029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD&C BLUE #1/BRILLIANT BLUE FCF AL 28PCT-31PCT... (BHN BAKU PEWARNA TABLET) COA WP846602:BB1029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTIZOXIME SODIUM (BHN BAKU OBAT) COA A100300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTIZOXIME SODIUM (BHN BAKU OBAT) COA A100300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2021091803\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2021091803\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID PPL-600 (BHN BAKU SUPPLEMEN) COA 577200-2210231/005--007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232010\", \"uraian\": \"LIPOID PPL-600 (BHN BAKU SUPPLEMEN) COA 577200-2210231/005--007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 2109361604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 2109361604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 2109361604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 2109361604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA S7227\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29225090\", \"uraian\": \"TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA S7227\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000200344,0000200381\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000200344,0000200381\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000199655,0000199656,0000199657,0000200344\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000199655,0000199656,0000199657,0000200344\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERLIE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW MONO YRN29-03 (ALAT KESEHATAN) COA MO2950N1210\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30061010\", \"uraian\": \"STERLIE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW MONO YRN29-03 (ALAT KESEHATAN) COA MO2950N1210\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC6D YRPN19...(ALAT KESEHATAN)COA 6D19100L1210\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30061010\", \"uraian\": \"STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC6D YRPN19...(ALAT KESEHATAN)COA 6D19100L1210\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC6D YRPN21..(ALAT KESEHATAN)COA 6D2190L1210\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30061010\", \"uraian\": \"STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC6D YRPN21..(ALAT KESEHATAN)COA 6D2190L1210\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW MC HEART...(ALAT KESEHATAN) COA HL19100L1210\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30061010\", \"uraian\": \"STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW MC HEART...(ALAT KESEHATAN) COA HL19100L1210\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW MC HEART.. (ALAT KESEHATAN) COA HL19100U1210\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30061010\", \"uraian\": \"STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW MC HEART.. (ALAT KESEHATAN) COA HL19100U1210\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC HI RHINO.(ALAT KESEHATAN) COA HR1938L1210\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30061010\", \"uraian\": \"STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC HI RHINO.(ALAT KESEHATAN) COA HR1938L1210\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC HI RHINO.. (ALAT KESEHATAN) COA HR1960L1210\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30061010\", \"uraian\": \"STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC HI RHINO.. (ALAT KESEHATAN) COA HR1960L1210\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW DC DUAL... (ALAT KESEHATAN) COA DA21110N1210\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30061010\", \"uraian\": \"STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW DC DUAL... (ALAT KESEHATAN) COA DA21110N1210\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW DC DUAL... (ALAT KESEHATAN) COA DA21110N1210\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30061010\", \"uraian\": \"STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW DC DUAL... (ALAT KESEHATAN) COA DA21110N1210\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 09112021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25081000\", \"uraian\": \"BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 09112021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ESOMEPRAZOLE MAGNESIUMUSP (BHN BAKU OBAT) COA ESM/2111567\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"ESOMEPRAZOLE MAGNESIUMUSP (BHN BAKU OBAT) COA ESM/2111567\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETAHISTINE MESILATE EP/BP (BHN BAKU OBAT) COA EDBHM21003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"BETAHISTINE MESILATE EP/BP (BHN BAKU OBAT) COA EDBHM21003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 100 CAN 10 KG (BHN BAKU KOSMETIK) COA 1569539\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 100 CAN 10 KG (BHN BAKU KOSMETIK) COA 1569539\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 120 CAN 10 KG (BHN BAKU KOSMETIK) COA 1570700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 120 CAN 10 KG (BHN BAKU KOSMETIK) COA 1570700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) COA 1573368\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) COA 1573368\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) COA 1570953\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) COA 1570953\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIDIN DO CAN 10 KG (BHN BAKU KOSMETIK) COA 1570026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIDIN DO CAN 10 KG (BHN BAKU KOSMETIK) COA 1570026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) COA 1573368\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) COA 1573368\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) COA 1574318\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) COA 1574318\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FENTACARE 1631 25 MB 200KG PLAS DR (BHN BAKU KOSMETIK ) COA ZH21I1404M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29239000\", \"uraian\": \"FENTACARE 1631 25 MB 200KG PLAS DR (BHN BAKU KOSMETIK ) COA ZH21I1404M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) XH20210704\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) XH20210704\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90 PCT GRANULATION (BHN BAKU SUPPLEMEN) WB21109004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90 PCT GRANULATION (BHN BAKU SUPPLEMEN) WB21109004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) WB20060516,WB21030580,WB21090584,WB21090586\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) WB20060516,WB21030580,WB21090584,WB21090586\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20210901,XH20211001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20210901,XH20211001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 30 N-3 INF OIL (BHN BAKU SUPPLEMEN) COA TS00018399\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 30 N-3 INF OIL (BHN BAKU SUPPLEMEN) COA TS00018399\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2003565686\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2003565686\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-CARNITINE (EP GRADE)(BHN BAKU KOSMETIK)COA 10100120211037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29239000\", \"uraian\": \"L-CARNITINE (EP GRADE)(BHN BAKU KOSMETIK)COA 10100120211037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HA01397\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34021990\", \"uraian\": \"MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HA01397\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHOLINE CHLORIDE 60 PCT (BHN BAKU PAKAN HEWAN) COA YF60Y202111020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHOLINE CHLORIDE 60 PCT (BHN BAKU PAKAN HEWAN) COA YF60Y202111020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BROMELAINE 1600 GDU (BHN BAKU OBAT) COA 223.777\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35079000\", \"uraian\": \"BROMELAINE 1600 GDU (BHN BAKU OBAT) COA 223.777\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GLIMEPIRIDE USP 43 (BHN BAKU OBAT) COA GLM/042/10/21\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"GLIMEPIRIDE USP 43 (BHN BAKU OBAT) COA GLM/042/10/21\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M598040,M598041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M598040,M598041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M534956 S/D M534962\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M534956 S/D M534962\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0058979\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0058979\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20211127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20211127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CATECHINS TEAVIGO 4 KG (BHN BAKU KOSMETIK), COA 109101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"CATECHINS TEAVIGO 4 KG (BHN BAKU KOSMETIK), COA 109101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0126700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0126700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0126800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0126800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0126800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0126800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0126900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0126900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/12/051221,061221,071221,081221,091221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/12/051221,061221,071221,081221,091221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEOSTIGMINE METHYL SULPHATE (BHN BAKU OBAT) COA NMS0220004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211100\", \"uraian\": \"NEOSTIGMINE METHYL SULPHATE (BHN BAKU OBAT) COA NMS0220004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FENTACARE 2231 EF 25KG PAPER BOX (BHN BAKU KOSMETIK )COA ZH21L0404,ZH21L0904\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34029019\", \"uraian\": \"FENTACARE 2231 EF 25KG PAPER BOX (BHN BAKU KOSMETIK )COA ZH21L0404,ZH21L0904\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) COA 321CAA0012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CETRIMIDE (BHN BAKU KOSMETIK) COA 321CAA0012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ10613218\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ10613218\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21060146\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21060146\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ10613218\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ10613218\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ10612206\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ10612206\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21040010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21040010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3 PCT (BHN BAKU SUPPLEMEN) COA WB21050060\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3 PCT (BHN BAKU SUPPLEMEN) COA WB21050060\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX VMP JELLY (BHN BAKU MAKANAN) COA XW92111021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX VMP JELLY (BHN BAKU MAKANAN) COA XW92111021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92111038\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92111038\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MINERAL PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92111019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"MINERAL PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92111019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIN PREMIX MI A2 (BHN BAKU MAKANAN) COA XW92111020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"MIN PREMIX MI A2 (BHN BAKU MAKANAN) COA XW92111020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT PREMIX MI A1 (BHN BAKU MAKANAN) COA XW92111039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VIT PREMIX MI A1 (BHN BAKU MAKANAN) COA XW92111039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12110019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12110019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5 PCT SD (BHN BAKU MAKANAN) COA UT21050002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5 PCT SD (BHN BAKU MAKANAN) COA UT21050002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12110019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12110019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11210901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11210901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11210901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11210901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11210901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11210901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRASIL CM5 L (BHN BAKU KOSMETIK) COA 2149WKQ515\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29319049\", \"uraian\": \"MIRASIL CM5 L (BHN BAKU KOSMETIK) COA 2149WKQ515\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VALERIAN D.H.E 0.8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 21B0128500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VALERIAN D.H.E 0.8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 21B0128500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VALERIAN D.H.E 0.8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 21B0128500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VALERIAN D.H.E 0.8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 21B0128500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M534977,978,989,990,991,992\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M534977,978,989,990,991,992\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RANITIDINE HCL USP ( BAHAN BAKU OBAT ) COA RH 825 10 21,RH 826 10 21,RH 824 10 21\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29321900\", \"uraian\": \"RANITIDINE HCL USP ( BAHAN BAKU OBAT ) COA RH 825 10 21,RH 826 10 21,RH 824 10 21\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METOCLOPRAMIDE HYDROCHLORIDE BP ( BAHAN BAKU OBAT ) COA M-2111419\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"METOCLOPRAMIDE HYDROCHLORIDE BP ( BAHAN BAKU OBAT ) COA M-2111419\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLUNARIZINE DIHYDROCHLORIDE BP ( BAHAN BAKU OBAT ) COA FLU/08211033\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"FLUNARIZINE DIHYDROCHLORIDE BP ( BAHAN BAKU OBAT ) COA FLU/08211033\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CINNARIZINE BP/EP( BAHAN BAKU OBAT ) COA CIN/11211143\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"CINNARIZINE BP/EP( BAHAN BAKU OBAT ) COA CIN/11211143\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RANITIDINE HYDROCHLORIDE( BAHAN BAKU OBAT ) COA RH 993 12 21\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29321900\", \"uraian\": \"RANITIDINE HYDROCHLORIDE( BAHAN BAKU OBAT ) COA RH 993 12 21\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RANITIDINE HYDROCHLORIDE( BAHAN BAKU OBAT ) COA RH 291 04 21\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29321900\", \"uraian\": \"RANITIDINE HYDROCHLORIDE( BAHAN BAKU OBAT ) COA RH 291 04 21\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH652270\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH652270\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE PURPLE (BHN BAKU PEWARNA TABLET) COA SH652289\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE PURPLE (BHN BAKU PEWARNA TABLET) COA SH652289\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH652271\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH652271\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH652286\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH652286\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH650443\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH650443\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH652272\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH652272\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH652273\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH652273\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB RED (BHN BAKU PEWARNA TABLET) COA SH652274\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB RED (BHN BAKU PEWARNA TABLET) COA SH652274\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GRAY (BHN BAKU PEWARNA TABLET) COA SH652275\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GRAY (BHN BAKU PEWARNA TABLET) COA SH652275\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH652345\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH652345\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH652276\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH652276\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH652277\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH652277\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH652288\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH652288\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH652595\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH652595\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH652302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH652302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102123012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102123012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102102039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102102039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102123012, SAMPLE NO COMMERCIAL..\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102123012, SAMPLE NO COMMERCIAL..\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM 0600 AHMC (BHN BAKU OBAT) COA 102114002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM 0600 AHMC (BHN BAKU OBAT) COA 102114002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102123012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102123012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM AL HYD GEL LV13, USP (BHN BAKU OBAT) COA 102113125\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"BARCROFT TM AL HYD GEL LV13, USP (BHN BAKU OBAT) COA 102113125\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102123012, SAMPLE NO COMMERCIAL..\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102123012, SAMPLE NO COMMERCIAL..\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM AL HYD GEL LV13, USP (BHN BAKU OBAT) COA 102113125, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"BARCROFT TM AL HYD GEL LV13, USP (BHN BAKU OBAT) COA 102113125, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 199196\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 199196\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL ZX (BHN BAKU KOSMETIK) COA 201008012, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL ZX (BHN BAKU KOSMETIK) COA 201008012, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040021, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040021, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ESOMEPRAZOLE MAGNESIUM USP (BHN BAKU OBAT) COA ESM/2111567\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"ESOMEPRAZOLE MAGNESIUM USP (BHN BAKU OBAT) COA ESM/2111567\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP34021,MTP34021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP34021,MTP34021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340323,B340328,B340342\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX COMPACTED (BHN BAKU OBAT) COA B340323,B340328,B340342\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334786,B334790,B334791\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX POWDER (BHN BAKU OBAT) COA B334786,B334790,B334791\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROPYPHENAZONE (ST) (BHN BAKU OBAT UTK PEWARNA TABLET) COA 2010190\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331100\", \"uraian\": \"PROPYPHENAZONE (ST) (BHN BAKU OBAT UTK PEWARNA TABLET) COA 2010190\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP2010/USP41 (BHN BAKU OBAT) COA NED220101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP2010/USP41 (BHN BAKU OBAT) COA NED220101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP31121,MTP32121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP31121,MTP32121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUCRALOSE (BHN BAKU OBAT) COA 21082101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29321400\", \"uraian\": \"SUCRALOSE (BHN BAKU OBAT) COA 21082101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DICLAZURIL (BHN BAKU PAKAN HEWAN) COA 210601-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"DICLAZURIL (BHN BAKU PAKAN HEWAN) COA 210601-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-TARTARIC ACID (BHN BAKU MAKANAN) COA RS01565\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181200\", \"uraian\": \"DL-TARTARIC ACID (BHN BAKU MAKANAN) COA RS01565\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIMETHOPRIM (BHN BAKU PAKAN HEWAN) COA A-20112111049\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"TRIMETHOPRIM (BHN BAKU PAKAN HEWAN) COA A-20112111049\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-MALIC ACID (BHN BAKU MAKANAN) COA CS11986\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181900\", \"uraian\": \"L-MALIC ACID (BHN BAKU MAKANAN) COA CS11986\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CROSPOVIDONE XL-10 (BHN BAKU OBAT) COA PP211114XL-10\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"CROSPOVIDONE XL-10 (BHN BAKU OBAT) COA PP211114XL-10\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA MLAH0741021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29341000\", \"uraian\": \"MELOXICAM BP (BHN BAKU OBAT) COA MLAH0741021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202112-006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35040000\", \"uraian\": \"SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202112-006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM CARBONATE, EXTRA LIGHT (BHN BAKU MAKANAN) COA 3103621,3107043,3109372-01,3106064\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28369990\", \"uraian\": \"MAGNESIUM CARBONATE, EXTRA LIGHT (BHN BAKU MAKANAN) COA 3103621,3107043,3109372-01,3106064\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM CARBONATE IPH (BHN BAKU SUPPLEMEN) COA DOC3312121,DOC3152121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"SODIUM CARBONATE IPH (BHN BAKU SUPPLEMEN) COA DOC3312121,DOC3152121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSUVASTATIN CALSIUM (BHN BAKU OBAT) COA M325269\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"ROSUVASTATIN CALSIUM (BHN BAKU OBAT) COA M325269\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RANITIDINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA RHP 061 12 21; RHP 062 12 21\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29321900\", \"uraian\": \"RANITIDINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA RHP 061 12 21; RHP 062 12 21\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM VALPROATE (BAHAN BAKU OBAT) COA 455931 (V6812)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29159090\", \"uraian\": \"SODIUM VALPROATE (BAHAN BAKU OBAT) COA 455931 (V6812)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN545806\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN545806\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN545797\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN545797\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1314223\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1314223\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1314223\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1314223\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1287225\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1287225\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID REGULAR (BHN BAKU SUPLEMEN) COA HPD2111135,HPD2112002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID REGULAR (BHN BAKU SUPLEMEN) COA HPD2111135,HPD2112002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID DC 97 PCT (BHN BAKU SUPLEMEN) COA HPG2111004,HPG2111005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID DC 97 PCT (BHN BAKU SUPLEMEN) COA HPG2111004,HPG2111005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID REGULAR (BHN BAKU SUPLEMEN) COA HPB2111233\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID REGULAR (BHN BAKU SUPLEMEN) COA HPB2111233\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIROXICAM (BAHAN BAKU OBAT ) COA PRX2021008M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"PIROXICAM (BAHAN BAKU OBAT ) COA PRX2021008M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHENYLEPHRINE HCL USP (BHN BAKU OBAT) COA 2-IL-D-1441221,2-IL-D-1451221,2-IL-D-1461221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29225090\", \"uraian\": \"PHENYLEPHRINE HCL USP (BHN BAKU OBAT) COA 2-IL-D-1441221,2-IL-D-1451221,2-IL-D-1461221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM CARBONATE, HEAVY (BHN BAKU SUPLEMEN) COA 1104215,1104545,1104717\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28369990\", \"uraian\": \"MAGNESIUM CARBONATE, HEAVY (BHN BAKU SUPLEMEN) COA 1104215,1104545,1104717\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SELOHVITA C (BHN BAKU OBAT) COA 3105469\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28429010\", \"uraian\": \"SELOHVITA C (BHN BAKU OBAT) COA 3105469\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POTASSIUM L-ASPARTATE 0,5 HYDRATE (BHN BAKU OBAT) COA 3097136\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"POTASSIUM L-ASPARTATE 0,5 HYDRATE (BHN BAKU OBAT) COA 3097136\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM GLYCEROPHOSPHATE (BHN BAKU OBAT) COA 3084920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29199000\", \"uraian\": \"SODIUM GLYCEROPHOSPHATE (BHN BAKU OBAT) COA 3084920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM OXIDE, LIGHT, POWDER (BHN BAKU OBAT) COA 1104624\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25199010\", \"uraian\": \"MAGNESIUM OXIDE, LIGHT, POWDER (BHN BAKU OBAT) COA 1104624\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SELOHVITA C (BHN BAKU OBAT) COA 3109781\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28429010\", \"uraian\": \"SELOHVITA C (BHN BAKU OBAT) COA 3109781\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM CARBONATE, HEAVY (BHN BAKU OBAT) COA 3109046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28369990\", \"uraian\": \"MAGNESIUM CARBONATE, HEAVY (BHN BAKU OBAT) COA 3109046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERRIC PYROPHOSPHATE 24 - 26 PCT FE (BHN BAKU OBAT) COA 3101624\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28353990\", \"uraian\": \"FERRIC PYROPHOSPHATE 24 - 26 PCT FE (BHN BAKU OBAT) COA 3101624\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM CARBONATE, HEAVY (BHN BAKU OBAT) COA 3103805-1,3109046,1104215\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28369990\", \"uraian\": \"MAGNESIUM CARBONATE, HEAVY (BHN BAKU OBAT) COA 3103805-1,3109046,1104215\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT21120037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT21120037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA EDS/CB0210B\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"ERDOSTEINE (BAHAN BAKU OBAT) COA EDS/CB0210B\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 BROWN (BHN BAKU PEWARNA TABLET) COA SH653550\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 BROWN (BHN BAKU PEWARNA TABLET) COA SH653550\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH653549\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH653549\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH652992\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH652992\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH653058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH653058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH652936\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH652936\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH652937\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH652937\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH652938\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH652938\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH652939\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH652939\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH652940\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH652940\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH652984\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH652984\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH653800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH653800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH653446\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH653446\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II CLEAR (BHN BAKU PEWARNA TABLET) COA SH653270\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II CLEAR (BHN BAKU PEWARNA TABLET) COA SH653270\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY RED (BHN BAKU PEWARNA TABLET) COA SH652943\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY RED (BHN BAKU PEWARNA TABLET) COA SH652943\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH652985\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH652985\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BLUE (BHN BAKU PEWARNA TABLET) COA SH652991\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BLUE (BHN BAKU PEWARNA TABLET) COA SH652991\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH652944\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH652944\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND BROWN (BHN BAKU PEWARNA TABLET) COA SH652983\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND BROWN (BHN BAKU PEWARNA TABLET) COA SH652983\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY GREEN (BHN BAKU PEWARNA TABLET) COA SH652945\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY GREEN (BHN BAKU PEWARNA TABLET) COA SH652945\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH652990\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH652990\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH652939\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH652939\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-021781\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-021781\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1211208\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1211208\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-131791\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-131791\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE 1 PCT SOLUTION (BHN BAKU KOSMETIK) COA HASC-141341\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND BIO-SODIUM HYALURONATE 1 PCT SOLUTION (BHN BAKU KOSMETIK) COA HASC-141341\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 120821\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 120821\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-051501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-051501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-050211\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-050211\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-032861\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-032861\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-011151\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-011151\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011851\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011851\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-173011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-173011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 120821\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 120821\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-061911\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-061911\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20211130\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20211130\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PERMETHRIN (PHARMA GRADE) BHN BAKU OBAT COA 215046012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29163990\", \"uraian\": \"PERMETHRIN (PHARMA GRADE) BHN BAKU OBAT COA 215046012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABSORAGE (BAHAN BAKU KOSMETIK) COA 212642\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ABSORAGE (BAHAN BAKU KOSMETIK) COA 212642\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 212953\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 212953\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 212631\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 212631\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 211752\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 211752\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNE BUSTERS (BHN BAKU KOSMETIK) COA 212711\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNE BUSTERS (BHN BAKU KOSMETIK) COA 212711\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNE BUSTERS (BHN BAKU KOSMETIK) COA 212711\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNE BUSTERS (BHN BAKU KOSMETIK) COA 212711\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNE BUSTERS (BHN BAKU KOSMETIK) COA 210386\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNE BUSTERS (BHN BAKU KOSMETIK) COA 210386\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 212953\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 212953\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSE HIPS LIQUID B (BHN BAKU KOSMETIK) COA 211392\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ROSE HIPS LIQUID B (BHN BAKU KOSMETIK) COA 211392\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO210904\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO210904\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILIA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO210603\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILIA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO210603\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS211004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS211004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HONEY OILY EXTRACT (BHN BAKU KOSMETIK) COA MIE200101-H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HONEY OILY EXTRACT (BHN BAKU KOSMETIK) COA MIE200101-H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO210904\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO210904\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILIA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO210603\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILIA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO210603\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS211004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS211004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SEABUCKTHORN HYDROGLYCOLIC EXTRACT(BHN BAKU KOSMETIK) COA HIR210101-B\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SEABUCKTHORN HYDROGLYCOLIC EXTRACT(BHN BAKU KOSMETIK) COA HIR210101-B\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA GINSENG PHYTELENE EG 209\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA GINSENG PHYTELENE EG 209\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) COA 1576221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) COA 1576221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113603\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113603\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FIXABLE VIABILITY STAIN 510 100UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0345532\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"FIXABLE VIABILITY STAIN 510 100UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0345532\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU IFN-GMA BV421 B27 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1110349\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU IFN-GMA BV421 B27 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1110349\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU IL-2 PE MQ1-17H12 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1180913\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU IL-2 PE MQ1-17H12 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1180913\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU IL-4 APC 8D4-8 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1083846,1173686\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU IL-4 APC 8D4-8 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1083846,1173686\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD8 APC-CY7 SK1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1221667\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD8 APC-CY7 SK1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1221667\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD3 FITC HIT3A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0328919\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD3 FITC HIT3A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0328919\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYTOFIX/CYTOPERM SOLN KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1215119\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CYTOFIX/CYTOPERM SOLN KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1215119\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD28 NALE CD28.2 500UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1050152,1050153\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD28 NALE CD28.2 500UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1050152,1050153\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU TH1/TH2/TH17 CBA KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1232545,1232692\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU TH1/TH2/TH17 CBA KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1232545,1232692\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD4 PERCP-CY5.5 SK3 RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1294299\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD4 PERCP-CY5.5 SK3 RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1294299\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD CST BEADS KIT 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 12948\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BD CST BEADS KIT 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 12948\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK) COA LDC44921T\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101990\", \"uraian\": \"SAVONOL 16 (BAHAN BAKU KOSMETIK) COA LDC44921T\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) COA 112080\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-56A (18KG) (BHN BAKU KOSMETIK) COA 112080\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-15 (16KG) (BHN BAKU KOSMETIK) COA 111529\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSG-15 (16KG) (BHN BAKU KOSMETIK) COA 111529\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 111170\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 111170\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) COA 111266,111267\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (16KG) (BHN BAKU KOSMETIK) COA 111266,111267\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) COA 1574774,1575273\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) COA 1574774,1575273\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 720 CAN 10 KG (BHN BAKU KOSMETIK) COA 1573611,1575272\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 720 CAN 10 KG (BHN BAKU KOSMETIK) COA 1573611,1575272\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MONOCALCIUM PHOSPHATE FEED GRADE MICROGRANULAR (BHN BAKU PAKAN TERNAK) COA 202111010125\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28352600\", \"uraian\": \"MONOCALCIUM PHOSPHATE FEED GRADE MICROGRANULAR (BHN BAKU PAKAN TERNAK) COA 202111010125\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2510921\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29391900\", \"uraian\": \"HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2510921\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP21124133 S/D XP21124138\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP21124133 S/D XP21124138\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP21123082 S/D XP21123087\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP21123082 S/D XP21123087\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JOJOBA OIL VIRGIN LOW ODOUR (BHN BAKU KOSMETIK) COA 158779\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15159011\", \"uraian\": \"JOJOBA OIL VIRGIN LOW ODOUR (BHN BAKU KOSMETIK) COA 158779\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DENDRICLEAR (TM) (BHN BAKU KOSMETIK) COA 834019745M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"DENDRICLEAR (TM) (BHN BAKU KOSMETIK) COA 834019745M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMISOL TRIO (TM) (BHN BAKU KOSMETIK) COA 2100014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AMISOL TRIO (TM) (BHN BAKU KOSMETIK) COA 2100014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL (TM) (BHN BAKU KOSMETIK) COA 830019573M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL (TM) (BHN BAKU KOSMETIK) COA 830019573M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL (TM) (BHN BAKU KOSMETIK) COA 830019573M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL (TM) (BHN BAKU KOSMETIK) COA 830019573M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5 PCT CLEAR (BHN BAKU KOSMETIK) COA 785019762M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5 PCT CLEAR (BHN BAKU KOSMETIK) COA 785019762M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5 PCT CLEAR (BHN BAKU KOSMETIK) COA 785019762M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5 PCT CLEAR (BHN BAKU KOSMETIK) COA 785019762M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL (TM) (BHN BAKU KOSMETIK) COA 2125202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL (TM) (BHN BAKU KOSMETIK) COA 2125202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT (TM) 11 (BHN BAKU KOSMETIK) COA 784029189M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"TYROSTAT (TM) 11 (BHN BAKU KOSMETIK) COA 784029189M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WORLEE ALOE PURE BALANCE IF 200X FD (BAHAN BAKU KOSMETIK) COA 512070\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"WORLEE ALOE PURE BALANCE IF 200X FD (BAHAN BAKU KOSMETIK) COA 512070\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB191121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB191121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB191121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB191121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B261121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B261121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B261121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B261121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 29491221,29511221,29541221,29561221,.....\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 29491221,29511221,29541221,29561221,.....\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-211211\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-211211\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALAMINE , POWDER, BP 2021 (BHN BAKU SUPLEMEN) COA 3106872\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28369990\", \"uraian\": \"CALAMINE , POWDER, BP 2021 (BHN BAKU SUPLEMEN) COA 3106872\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) SJG\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) SJG\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA SLI\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) COA SLI\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POTASSIUM IODIDE AND CARRIER (BHN BAKU OBAT) COA 3108569\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28276000\", \"uraian\": \"POTASSIUM IODIDE AND CARRIER (BHN BAKU OBAT) COA 3108569\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA ROA275217,ROA275211,ROA272216\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA ROA275217,ROA275211,ROA272216\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEUCOCYANIDINS (BHN BAKU SUPLEMEN) COA 1104/7, SAMPLE NO COMMERCIAL INVOICE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"LEUCOCYANIDINS (BHN BAKU SUPLEMEN) COA 1104/7, SAMPLE NO COMMERCIAL INVOICE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040019,0221040059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040019,0221040059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050133,0321050134,0321050136,0321050137,0321050138\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050133,0321050134,0321050136,0321050137,0321050138\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210021,0708210022,0708210023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210021,0708210022,0708210023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS5840321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS5840321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0921020002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX (BHN BAKU KOSMETIK) COA 0921020002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1273554\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1273554\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1273553\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1273553\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1273553\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1273553\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1273554\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1273554\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1309612\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1309612\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1309612\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1309612\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 1285558,1313328\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG L&P80 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 1285558,1313328\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1123223\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1123223\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0219127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0219127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL E COLI O ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0094884\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL E COLI O ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0094884\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1313171\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE B12 ASSAY MEDIUM USP 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1313171\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE B12 INOCULUM BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1195933\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE B12 INOCULUM BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1195933\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1244192\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D/E NEUTRALIZING BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1244192\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1273553\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1273553\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1182099\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1182099\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1182099\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1182099\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FOLIC AOAC MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1133929\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE FOLIC AOAC MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1133929\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1182099\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1182099\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TSA TM WLP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1327989\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"TSA TM WLP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1327989\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA PENGEMBANGAN MIKROORGANISME) BATCH 1335274\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA PENGEMBANGAN MIKROORGANISME) BATCH 1335274\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1335298\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1335298\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-002-Y\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-002-Y\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL METHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D011L3OL01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV HYDROXYPROPYL METHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D011L3OL01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD&C YELLOW #6/SUNSET YELLOW FCF.... (BHN BAKU PEWARNA TABLET) COA WP839962:BA7341\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD&C YELLOW #6/SUNSET YELLOW FCF.... (BHN BAKU PEWARNA TABLET) COA WP839962:BA7341\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD&C YELLOW #5/TARTRAZINE AL36PCT - 39PCT.... (BHN BAKU PEWARNA TABLET) COA WP844301:BA9667\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD&C YELLOW #5/TARTRAZINE AL36PCT - 39PCT.... (BHN BAKU PEWARNA TABLET) COA WP844301:BA9667\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD&C YELLOW #5/TARTRAZINE AL 36PCT - 39PCT... (BHN BAKU PEWARNA TABLET) COA WP833410:BA4890\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD&C YELLOW #5/TARTRAZINE AL 36PCT - 39PCT... (BHN BAKU PEWARNA TABLET) COA WP833410:BA4890\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERYTHROSINE AL 38PCT - 42PCT... (BHN BAKU PEWARNA TABLET) COA WP835192:1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"ERYTHROSINE AL 38PCT - 42PCT... (BHN BAKU PEWARNA TABLET) COA WP835192:1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD&C RED #40/ALLURA RED AC AL 38PCT- 42PCT... (BHN BAKU PEWARNA TABLET) COA WP841246:BA8625\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD&C RED #40/ALLURA RED AC AL 38PCT- 42PCT... (BHN BAKU PEWARNA TABLET) COA WP841246:BA8625\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D&C YELLOW #10 AL 15PCT - 20PCT... (BHN BAKU PEWARNA TABLET) COA WP844755:BA9949\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"D&C YELLOW #10 AL 15PCT - 20PCT... (BHN BAKU PEWARNA TABLET) COA WP844755:BA9949\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD&C YELLOW #6/SUNSET YELLOW FCF... (BHN BAKU PEWARNA TABLET) COA WP848263:BB2196\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD&C YELLOW #6/SUNSET YELLOW FCF... (BHN BAKU PEWARNA TABLET) COA WP848263:BB2196\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) LICORICE GWP (BHN BAKU KOSMETIK) COA 10300017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"EXTRAPONE (R) LICORICE GWP (BHN BAKU KOSMETIK) COA 10300017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2103661117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2103661117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D011L3OL01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D011L3OL01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL A15 PREMIUM LV METHYLCELLULOSE... (BHN BAKU PEWARNA TABLET) COA D180L6S021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL A15 PREMIUM LV METHYLCELLULOSE... (BHN BAKU PEWARNA TABLET) COA D180L6S021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180K61001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM CR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180K61001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180L51022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180L51022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E15 PREMIUM LV HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D011K5SL02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E15 PREMIUM LV HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D011K5SL02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D011L3OL01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D011L3OL01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D180L2Q002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D180L2Q002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 21E1309\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 21E1309\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 21E1607\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 21E1607\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE A PELLETS (BHN BAKU OBAT) COA 21E4308\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE A PELLETS (BHN BAKU OBAT) COA 21E4308\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK) COA 8705000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACB FRUIT MIX OR (BHN BAKU KOSMETIK) COA 8705000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1228035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1228035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1215964\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1215964\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1215964\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1215964\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2355402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2355402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2305552\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2305552\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2305552\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2305552\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1082038\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1082038\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1082038\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1082038\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0175474\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0175474\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1153097\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1153097\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1046610\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1046610\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1046610\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1046610\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1046610\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1046610\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0216774\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0216774\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY PREGELATINIZED.... (BHN BAKU PEWARNA TABLET) COA IN545319\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY PREGELATINIZED.... (BHN BAKU PEWARNA TABLET) COA IN545319\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEVOFLOXACIN HEMIHYDRATE (FREE ALKALINE) (BHN BAKU OBAT) COA C008-2111603\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"LEVOFLOXACIN HEMIHYDRATE (FREE ALKALINE) (BHN BAKU OBAT) COA C008-2111603\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LINCOMYCIN HYDROCHLORIDE (BHN BAKU OBAT) COA 2107002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"LINCOMYCIN HYDROCHLORIDE (BHN BAKU OBAT) COA 2107002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-201107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-201107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340331,B340336,B340337\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX COMPACTED (BHN BAKU OBAT) COA B340331,B340336,B340337\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M535067,M535069 S/D M535072,M535074 ,M535075\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M535067,M535069 S/D M535072,M535074 ,M535075\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYDROCORTISONE ACETATE EP7/USP42 (BHN BAKU OBAT) COA NEHAC211203\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"HYDROCORTISONE ACETATE EP7/USP42 (BHN BAKU OBAT) COA NEHAC211203\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE (BHN BAKU OBAT) COA NED220107,NED220110,NED211113\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE (BHN BAKU OBAT) COA NED220107,NED220110,NED211113\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE (BHN BAKU OBAT) COA NEDNA211007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE SODIUM PHOSPHATE (BHN BAKU OBAT) COA NEDNA211007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARACETAMOL USP (BHN BAKU OBAT) COA 2210005,2210009,2210010,2151953\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"PARACETAMOL USP (BHN BAKU OBAT) COA 2210005,2210009,2210010,2151953\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TSPL-30-ID (BHN BAKU KOSMETIK) COA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"TSPL-30-ID (BHN BAKU KOSMETIK) COA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX MILK POWDER FOR ADULTS (BHN BAKU MAKANAN) COA XW92111022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX MILK POWDER FOR ADULTS (BHN BAKU MAKANAN) COA XW92111022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MINERAL PREMIX MILK POWDER FOR ADULTS V2 (BHN BAKU MAKANAN) COA XW92111092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"MINERAL PREMIX MILK POWDER FOR ADULTS V2 (BHN BAKU MAKANAN) COA XW92111092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21060146,UT21070149\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21060146,UT21070149\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11210902,QZ11210903\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11210902,QZ11210903\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3 PCT (BHN BAKU SUPPLEMEN) COA WB21060056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3 PCT (BHN BAKU SUPPLEMEN) COA WB21060056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ10713265\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ10713265\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21070149\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21070149\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30 PCT FS (BHN BAKU MAKANAN) COA UE02104027,UE02105040,UE02105042\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30 PCT FS (BHN BAKU MAKANAN) COA UE02104027,UE02105040,UE02105042\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50(BHN BAKU KOSMETIK) COA UE02101013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50(BHN BAKU KOSMETIK) COA UE02101013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0921020016,0921020022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX (BHN BAKU KOSMETIK) COA 0921020016,0921020022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040083\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040083\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0421040061\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HMS (BHN BAKU KOSMETIK) COA 0421040061\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21100362\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21100362\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21100362\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21100362\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060047,0521060058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060047,0521060058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL ZX (BHN BAKU KOSMETIK) COA 190927012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL ZX (BHN BAKU KOSMETIK) COA 190927012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA303217,ROA305212,ROA300212,....\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA303217,ROA305212,ROA300212,....\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0060661\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0060661\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 211897,213035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 211897,213035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1229957\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1229957\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1272545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1272545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1314313\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1314313\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CLED AGAR BBL (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1299286\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE CLED AGAR BBL (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1299286\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1061650\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE STERILE RODAC EMPTY 65X15 MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1061650\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1131505\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1131505\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1257220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1257220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1173496\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1173496\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1188089\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1188089\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1D19654\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1D19654\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1188932\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1188932\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1188091\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1188091\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1222962\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1222962\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1007102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1007102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1071063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE STERILE RODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1071063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1145029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLD AGAR 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1145029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1071109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1071109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT EXTRACT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1138882\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALT EXTRACT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1138882\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MICRO INOCULUM BROTH 500 G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1075951\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MICRO INOCULUM BROTH 500 G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1075951\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MIL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283882\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MIL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283882\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 5 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1236415\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 5 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1236415\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ISP MEDIUM 4 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1133635\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ISP MEDIUM 4 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1133635\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL UNIVERSAL VIRAL TRANSPORT(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH N10157500,N10347800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL UNIVERSAL VIRAL TRANSPORT(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH N10157500,N10347800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1278413\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1278413\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1242041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1242041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1244312,1272570\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1244312,1272570\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B03D284M,B01D301M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B03D284M,B01D301M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1272545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1272545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1327503\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1327503\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1278675,82\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1278675,82\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1306190\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1306190\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1201174\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE AGAR 500G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1201174\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283868\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283868\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1173666\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1173666\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1068161,1257917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1068161,1257917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1201798\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1201798\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1173496\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1173496\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1188089\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1188089\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1048461\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1048461\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1187601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1187601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1019654\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1019654\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1188932\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1188932\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1144373\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1144373\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0322946\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0322946\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1201174\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE AGAR 500G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1201174\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1201798\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1201798\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1019654\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1019654\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1188932\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1188932\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1327503\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1327503\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1292440\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1292440\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1215037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1215037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1155513,....\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1155513,....\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EOSIN METHYLENE BLUE AG HHT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1223549\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EOSIN METHYLENE BLUE AG HHT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1223549\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1229997\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1229997\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTLE LYSINE DECARBOXYLASE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1096987\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTLE LYSINE DECARBOXYLASE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1096987\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9337678\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9337678\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1187914\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1187914\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0350960\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0350960\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE WL DIFFERENTIAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1188436\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE WL DIFFERENTIAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1188436\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1061373\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1061373\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01D341M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01D341M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1312204\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1312204\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M ENDO BROTH MF 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0282594\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M ENDO BROTH MF 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0282594\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1159790\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1159790\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1111035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1111035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1279386,1181266,1102066\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1279386,1181266,1102066\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1314313,....\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1314313,....\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1319643\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1319643\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE STANDARD METHODS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1244342\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE STANDARD METHODS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1244342\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP32021,MTP34621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP32021,MTP34621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXCIPIENT 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN)COA MTP32121,SAMPLE NO VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXCIPIENT 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN)COA MTP32121,SAMPLE NO VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-070921\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-070921\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRASIL CM5 L (BHN BAKU KOSMETIK) COA 2202WKQ215\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29319049\", \"uraian\": \"MIRASIL CM5 L (BHN BAKU KOSMETIK) COA 2202WKQ215\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY ORANGE (BHN BAKU PEWARNA TABLET) COA GA700396\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY ORANGE (BHN BAKU PEWARNA TABLET) COA GA700396\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA GA700397\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA GA700397\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABCOAT TC WHITE (BHN BAKU PEWARNA TABLET) COA GA700398\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"TABCOAT TC WHITE (BHN BAKU PEWARNA TABLET) COA GA700398\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTAZIDIME BUFFERED (BHN BAKU OBAT) COA A200200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTAZIDIME BUFFERED (BHN BAKU OBAT) COA A200200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040019,0221040059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040019,0221040059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050133,0321050134,0321050136,0321050137,0321050138\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050133,0321050134,0321050136,0321050137,0321050138\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210021,0708210022,0708210023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210021,0708210022,0708210023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS5840321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS5840321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0921020002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX (BHN BAKU KOSMETIK) COA 0921020002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105714621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200H (BHN BAKU OBAT) COA L105714621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104314021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104314021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MICROBIO M3D AUTOSCANNER EN (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH AS0149\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"MICROBIO M3D AUTOSCANNER EN (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH AS0149\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM REGULAR GRADE(BHN BAKU OBAT) COA 21121929,21121930,21121934,21121935\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331900\", \"uraian\": \"METAMIZOLE SODIUM REGULAR GRADE(BHN BAKU OBAT) COA 21121929,21121930,21121934,21121935\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED (BHN BAKU PAKAN HEWAN) COA MTP05221,MTP00122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED (BHN BAKU PAKAN HEWAN) COA MTP05221,MTP00122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MONOPOT PHOS MKP FG 25K BG (PRAYPHOS MKP FG) (BHN BAKU KOSMETIK) COA 21-244-01,21-148-01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"MONOPOT PHOS MKP FG 25K BG (PRAYPHOS MKP FG) (BHN BAKU KOSMETIK) COA 21-244-01,21-148-01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRAYPHOS DKP FG 25KG BG (BHN BAKU KOSMETIK) COA 2116831,2025931\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28352400\", \"uraian\": \"PRAYPHOS DKP FG 25KG BG (BHN BAKU KOSMETIK) COA 2116831,2025931\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS211004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS211004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS211004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS211004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SEABUCKTHORN HYDROGLYCOLIC EXTRACT(BHN BAKU KOSMETIK) COA HIR210101-B\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SEABUCKTHORN HYDROGLYCOLIC EXTRACT(BHN BAKU KOSMETIK) COA HIR210101-B\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HEBELYS (BHN BAKU KOSMETIK) COA SPHC210402-Z100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HEBELYS (BHN BAKU KOSMETIK) COA SPHC210402-Z100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 12-03-21,19-03-21,17-09-21,03-09-21,01-07-21,....\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 12-03-21,19-03-21,17-09-21,03-09-21,01-07-21,....\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHENOXY ETHANOL PR (BHN BAKU KOSMETIK) COA 744267,744112\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29094900\", \"uraian\": \"PHENOXY ETHANOL PR (BHN BAKU KOSMETIK) COA 744267,744112\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COOLACT 10 (BHN BAKU KOSMETIK) COA T008444\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29094900\", \"uraian\": \"COOLACT 10 (BHN BAKU KOSMETIK) COA T008444\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AVEMIX DUAL (BHN PAKAN TERNAK) COA 0000012738, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35079000\", \"uraian\": \"AVEMIX DUAL (BHN PAKAN TERNAK) COA 0000012738, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 210415\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"OILESS'CITY TM (BHN BAKU KOSMETIK) COA 210415\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 210618\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 210618\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 210918\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 210918\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 211111\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061900\", \"uraian\": \"MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 211111\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 211010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"OILESS'CITY TM (BHN BAKU KOSMETIK) COA 211010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 210618\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 210618\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 210803,211014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 210803,211014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNE BUSTERS (BHN BAKU KOSMETIK) COA 212711\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNE BUSTERS (BHN BAKU KOSMETIK) COA 212711\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 212953\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 212953\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 212202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"IZAYOI (BHN BAKU KOSMETIK) COA 212202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 211808\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"IZAYOI (BHN BAKU KOSMETIK) COA 211808\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEACH LEAF LIQUID B (BHN BAKU KOSMETIK) COA 212954\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PEACH LEAF LIQUID B (BHN BAKU KOSMETIK) COA 212954\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 211752\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 211752\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALTHEA LIQUID (BHN BAKU KOSMETIK) COA 212339\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ALTHEA LIQUID (BHN BAKU KOSMETIK) COA 212339\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIO-PGA SOLUTION HB (BHN BAKU KOSMETIK) COA 212278\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"BIO-PGA SOLUTION HB (BHN BAKU KOSMETIK) COA 212278\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 211349\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"MANDARINCLEAR (BHN BAKU KOSMETIK) COA 211349\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 202079\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 202079\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX MAROON (BHN BAKU PEWARNA TABLET) COA DT724198\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX MAROON (BHN BAKU PEWARNA TABLET) COA DT724198\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPASPRAY YELLOW (BHN BAKU PEWARNA TABLET) COA DT724192\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPASPRAY YELLOW (BHN BAKU PEWARNA TABLET) COA DT724192\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE BLACK (BHN BAKU PEWARNA TABLET) COA DT724193\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE BLACK (BHN BAKU PEWARNA TABLET) COA DT724193\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH654510\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH654510\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH652982\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH652982\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH653768\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH653768\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH653768\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH653768\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH652981\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH652981\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH652978\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH652978\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH652994\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH652994\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK) COA 8714500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACB FRUIT MIX OR (BHN BAKU KOSMETIK) COA 8714500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-070921\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-070921\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND APRICOT EXTRACT (BHN BAKU KOSMETIK) COA PAS-010501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND APRICOT EXTRACT (BHN BAKU KOSMETIK) COA PAS-010501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-072081,HOXB-082821\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-072081,HOXB-082821\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND JEJU TANGERINE EXTRACT (BHN BAKU KOSMETIK) COA GTUP-T-011971\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND JEJU TANGERINE EXTRACT (BHN BAKU KOSMETIK) COA GTUP-T-011971\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011851\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011851\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-032721\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-032721\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE 1 PCT SOLUTION (BHN BAKU KOSMETIK) COA HASC-14134\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND BIO-SODIUM HYALURONATE 1 PCT SOLUTION (BHN BAKU KOSMETIK) COA HASC-14134\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 123021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 123021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-061911\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-061911\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND CACTUS EXTRACT (BHN BAKU KOSMETIK) COA CAB-052921\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND CACTUS EXTRACT (BHN BAKU KOSMETIK) COA CAB-052921\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-032861\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-032861\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL ... (BHN BAKU PEWARNA TABLET) COA D180L52021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL ... (BHN BAKU PEWARNA TABLET) COA D180L52021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E4M PREMIUM HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180L21012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E4M PREMIUM HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180L21012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180KCM022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180KCM022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180K61001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM CR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180K61001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL ... (BHN BAKU PEWARNA TABLET) COA D180L4S022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL ... (BHN BAKU PEWARNA TABLET) COA D180L4S022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 FOOD OIL (BHN BAKU MAKANAN) COA TS00018693\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 FOOD OIL (BHN BAKU MAKANAN) COA TS00018693\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT21090031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT21090031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10 PCT CWS (BHN BAKU SUPPLEMEN) COA UT21050015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10 PCT CWS (BHN BAKU SUPPLEMEN) COA UT21050015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20201101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20201101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12111013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12111013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ10413604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ10413604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ10612206,UQ10312088\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ10612206,UQ10312088\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU SUPPLEMEN) COA UT21020206\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU SUPPLEMEN) COA UT21020206\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ10312088\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ10312088\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ10910762\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ10910762\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPPLEMEN) COA TL02107035,TL02109430,TL02110597\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPPLEMEN) COA TL02107035,TL02109430,TL02110597\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT21061096,UT21061097\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT21061096,UT21061097\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT20040088,UT20050089\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT20040088,UT20050089\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ10612206\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ10612206\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT20050089\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT20050089\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21070149\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21070149\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000201105,0000201106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000201105,0000201106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000201106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000201106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000201106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000201106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050385,0321050386,0321050388,0321050389,0321050390\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050385,0321050386,0321050388,0321050389,0321050390\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000201106,0000201107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000201106,0000201107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF21092005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF21092005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21100362,UT21110383\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21100362,UT21110383\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP33621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP33621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC CALCIUM ASCORBATE DC (BHN BAKU SUPLEMEN) COA HPT2106002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC CALCIUM ASCORBATE DC (BHN BAKU SUPLEMEN) COA HPT2106002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AQUACOAT CPD-30 CELLULOSE .... (BHN BAKU PEWARNA TABLET) COA 2173804237\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"AQUACOAT CPD-30 CELLULOSE .... (BHN BAKU PEWARNA TABLET) COA 2173804237\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENTRY POLYOX WSR 303 LEO NF ... (BHN BAKU PEWARNA TABLET) COA D682L6MRR4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"SENTRY POLYOX WSR 303 LEO NF ... (BHN BAKU PEWARNA TABLET) COA D682L6MRR4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENTRY POLYOX WSR 303 LEO NF ... (BHN BAKU PEWARNA TABLET) COA D682L3TRR5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"SENTRY POLYOX WSR 303 LEO NF ... (BHN BAKU PEWARNA TABLET) COA D682L3TRR5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AQUACOAT CPD-30 CELLULOSE ... (BHN BAKU PEWARNA TABLET) COA 2174048104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"AQUACOAT CPD-30 CELLULOSE ... (BHN BAKU PEWARNA TABLET) COA 2174048104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20211130\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20211130\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP33621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP33621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50428\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061100\", \"uraian\": \"MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50428\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH655356\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH655356\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH654040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH654040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH653656\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH653656\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH649250\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH649250\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH653776\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH653776\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH653607\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH653607\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH654249\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH654249\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH653768\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH653768\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH653067\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH653067\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH653801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH653801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH653549\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH653549\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BLUE (BHN BAKU PEWARNA TABLET) COA SH652991\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BLUE (BHN BAKU PEWARNA TABLET) COA SH652991\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH653825\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH653825\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II PURPLE (BHN BAKU PEWARNA TABLET) COA SH653836\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II PURPLE (BHN BAKU PEWARNA TABLET) COA SH653836\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH653779\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH653779\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH653826\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH653826\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II CLEAR (BHN BAKU PEWARNA TABLET) COA SH653827\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II CLEAR (BHN BAKU PEWARNA TABLET) COA SH653827\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH653780\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH653780\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II BROWN (BHN BAKU PEWARNA TABLET) COA SH653835\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II BROWN (BHN BAKU PEWARNA TABLET) COA SH653835\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH652510\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH652510\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH653838\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH653838\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH653705\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH653705\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 061521/007043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 061521/007043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH655098\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH655098\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH655303\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH655303\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH654419\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH654419\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU UTK PAKAN TERNAK) COA 202100644\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"AL HYD WET GEL VAC 20 (BHN BAKU UTK PAKAN TERNAK) COA 202100644\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN546043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN546043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN546048\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN546048\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN546044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN546044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN546047\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN546047\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113692\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113692\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113692\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113692\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPLEMEN) COA TL02112175\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPLEMEN) COA TL02112175\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB191121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB191121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B241221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B241221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB191121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB191121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LG090122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LG090122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEARL ESSENCES 35031MJ (BHN BAKU KOSMETIK) COA D1390252\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32061910\", \"uraian\": \"PEARL ESSENCES 35031MJ (BHN BAKU KOSMETIK) COA D1390252\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWDER FORM CATCOL C135(L) GRADE(B.BAKU KOSMETIK) COA 090/22\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GUAR GUM TREATED AND PULVERISED IN POWDER FORM CATCOL C135(L) GRADE(B.BAKU KOSMETIK) COA 090/22\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM CARBONATE DC TYPE CS90 PHARMA (BHN BAKU SUPPLEMEN) COA 202100243,202100236\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28365010\", \"uraian\": \"CALCIUM CARBONATE DC TYPE CS90 PHARMA (BHN BAKU SUPPLEMEN) COA 202100243,202100236\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM HYDROXYDE MS90 PHARMA (BHN BAKU SUPPLEMEN) COA 202100545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"MAGNESIUM HYDROXYDE MS90 PHARMA (BHN BAKU SUPPLEMEN) COA 202100545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 21T0112100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 21T0112100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 22122021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25081000\", \"uraian\": \"BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 22122021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MONENDOX 200 BMP (BHN BAKU UTK PAKAN TERNAK) COA 2112202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"MONENDOX 200 BMP (BHN BAKU UTK PAKAN TERNAK) COA 2112202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX TAN (BHN BAKU PEWARNA TABLET) COA DT724789\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX TAN (BHN BAKU PEWARNA TABLET) COA DT724789\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPASPRAY YELLOW (BHN BAKU PEWARNA TABLET) COA DT724790\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPASPRAY YELLOW (BHN BAKU PEWARNA TABLET) COA DT724790\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPASPRAY YELLOW (BHN BAKU PEWARNA TABLET) COA DT724811\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPASPRAY YELLOW (BHN BAKU PEWARNA TABLET) COA DT724811\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET) COA DT724830\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPALUX RED (BHN BAKU PEWARNA TABLET) COA DT724830\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET) COA DT723634\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPAGLOS WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET) COA DT723634\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY TF WHITE (BHN BAKU PEWARNA TABLET) COA DT724822\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPADRY TF WHITE (BHN BAKU PEWARNA TABLET) COA DT724822\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/01/020122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/01/020122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CROSCARMELLOSE SODIUM USP-NF (BHN BAKU OBAT) COA ACRMC/12/181221,211221,261221,271221,091221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39129090\", \"uraian\": \"CROSCARMELLOSE SODIUM USP-NF (BHN BAKU OBAT) COA ACRMC/12/181221,211221,261221,271221,091221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE BP (BHN BAKU OBAT) COA ASGP/12/261221,271221,161221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE BP (BHN BAKU OBAT) COA ASGP/12/261221,271221,161221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM CHLORIDE 6-HYDRATE, CRYST. (BHN BAKU OBAT) COA 3101386\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28273100\", \"uraian\": \"MAGNESIUM CHLORIDE 6-HYDRATE, CRYST. (BHN BAKU OBAT) COA 3101386\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for XANTHAN FFPC (BHN BAKU OBAT) COA 2551113\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"XANTHAN FFPC (BHN BAKU OBAT) COA 2551113\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 702018037K\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ABYSSINE 657 (BHN BAKU KOSMETIK) COA 702018037K\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALDAVINE (TM) 5X (BHN BAKU KOSMETIK) COA 799039730M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALDAVINE (TM) 5X (BHN BAKU KOSMETIK) COA 799039730M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMISOL TRIO (TM) (BHN BAKU KOSMETIK) COA 2100014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AMISOL TRIO (TM) (BHN BAKU KOSMETIK) COA 2100014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL (TM) (BHN BAKU KOSMETIK) COA 830019573M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL (TM) (BHN BAKU KOSMETIK) COA 830019573M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL (TM) (BHN BAKU KOSMETIK) COA 830019573M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL (TM) (BHN BAKU KOSMETIK) COA 830019573M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE (TM) (BHN BAKU KOSMETIK) COA 212000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CHRONOLINE (TM) (BHN BAKU KOSMETIK) COA 212000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5 PCT CLEAR (BHN BAKU KOSMETIK) COA 785019762M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5 PCT CLEAR (BHN BAKU KOSMETIK) COA 785019762M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANABLUE (TM) PARABEN FREE (BHN BAKU KOSMETIK) COA 788029635M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LANABLUE (TM) PARABEN FREE (BHN BAKU KOSMETIK) COA 788029635M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL (TM) (BHN BAKU KOSMETIK) COA 2125201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL (TM) (BHN BAKU KOSMETIK) COA 2125201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019761M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019761M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSALITY (TM) (BHN BAKU KOSMETIK) COA 2110201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROSALITY (TM) (BHN BAKU KOSMETIK) COA 2110201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5 PCT CLEAR (BHN BAKU KOSMETIK) COA 785019762M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5 PCT CLEAR (BHN BAKU KOSMETIK) COA 785019762M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1271142\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1271142\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIPOTASSIUM CITRATE 1-HYDRATE, CRYST.,PH.EUR.10 ED.USP43 (BHN BAKU OBAT) COA 3112151\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"TRIPOTASSIUM CITRATE 1-HYDRATE, CRYST.,PH.EUR.10 ED.USP43 (BHN BAKU OBAT) COA 3112151\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SERENOA REPENS PURIFIED EXT (BHN BAKU SUPLEMEN) COA 21S0078000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SERENOA REPENS PURIFIED EXT (BHN BAKU SUPLEMEN) COA 21S0078000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for P.GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 21S0265500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"P.GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 21S0265500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 20S0326000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 20S0326000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECHINACEA ANG.DRY PURIF.EX (BHN BAKU SUPLEMEN) COA 21S0155200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ECHINACEA ANG.DRY PURIF.EX (BHN BAKU SUPLEMEN) COA 21S0155200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 21S0231200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 21S0231200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHASEOLUS VULGARIS DRY EXTRACT (BHN BAKU SUPLEMEN) COA 21S0215200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"PHASEOLUS VULGARIS DRY EXTRACT (BHN BAKU SUPLEMEN) COA 21S0215200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHASEOLUS VULGARIS DRY EXTRACT (BHN BAKU SUPLEMEN) COA 21S0215200, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"PHASEOLUS VULGARIS DRY EXTRACT (BHN BAKU SUPLEMEN) COA 21S0215200, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CINNARIZINE (BHN BAKU OBAT) COA 021K039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"CINNARIZINE (BHN BAKU OBAT) COA 021K039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT21110015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT21110015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GENIVIDA (TM) TG (BHN BAKU SUPPLEMEN) COA UT21100001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"GENIVIDA (TM) TG (BHN BAKU SUPPLEMEN) COA UT21100001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT21060027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT21060027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT21060027,UT21060028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT21060027,UT21060028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT21060028,UT21060029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT21060028,UT21060029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT21060029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT21060029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT21060029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT21060029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT21120037,UT21120038\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT21120037,UT21120038\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT21120038\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT21120038\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02103041,UE02103042,UE02103043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02103041,UE02103042,UE02103043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ11016107,UQ11016108,UQ11016109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ11016107,UQ11016108,UQ11016109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU MAKANAN) COA UT21110213,UT21110214\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU MAKANAN) COA UT21110213,UT21110214\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU MAKANAN) COA UT21110213,UT21110214,UT21110215\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU MAKANAN) COA UT21110213,UT21110214,UT21110215\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT21050047\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT21050047\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) COA 201267\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6028 (16KG) (BHN BAKU KOSMETIK) COA 201267\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRANOL ULTRA C-32 MB 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP201002MB\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34021990\", \"uraian\": \"MIRANOL ULTRA C-32 MB 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP201002MB\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELOIL SC BF (BAHAN BAKU OBAT) COA 188249\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELOIL SC BF (BAHAN BAKU OBAT) COA 188249\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EMULIUM MELLIFERA MB (BHN BAKU KOSMETIK) COA 187493\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"EMULIUM MELLIFERA MB (BHN BAKU KOSMETIK) COA 187493\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NABUMETONE USP (BAHAN BAKU OBAT) COA H-0690421\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29145000\", \"uraian\": \"NABUMETONE USP (BAHAN BAKU OBAT) COA H-0690421\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 211224052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 211224052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) COA 201195\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) COA 201195\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-210 (16KG) (BHN BAKU KOSMETIK) COA 107050\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSG-210 (16KG) (BHN BAKU KOSMETIK) COA 107050\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) COA 112896\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSP-100 (10KG) (BHN BAKU KOSMETIK) COA 112896\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S191/21\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S191/21\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 11015,11020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 11015,11020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WATERMELON HERBASOL (R) EXTRACT PG UNPRESERVED (BHN BAKU KOSMETIK) COA 121117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"WATERMELON HERBASOL (R) EXTRACT PG UNPRESERVED (BHN BAKU KOSMETIK) COA 121117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRANOL ULTRA C-32 MB 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP201002MB\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34021990\", \"uraian\": \"MIRANOL ULTRA C-32 MB 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP201002MB\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102102045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102102045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for APIFILCAR (BHN BAKU OBAT) COA 183222\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"APIFILCAR (BHN BAKU OBAT) COA 183222\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELUCIRE 44/14 BF (BHN BAKU OBAT) COA 186547\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELUCIRE 44/14 BF (BHN BAKU OBAT) COA 186547\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TEFOSE 63 BF (BHN BAKU OBAT) COA 185821\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TEFOSE 63 BF (BHN BAKU OBAT) COA 185821\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 01/21GL4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 01/21GL4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 01/21GL4, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 01/21GL4, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40\u00b0 BRIX) (BHN BAKU KOSMETIK) COA 01/21GL4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40\u00b0 BRIX) (BHN BAKU KOSMETIK) COA 01/21GL4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40\u00b0 BRIX) (BHN BAKU KOSMETIK) COA 01/21GL4, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40\u00b0 BRIX) (BHN BAKU KOSMETIK) COA 01/21GL4, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT KIWI CSB (BHN BAKU KOSMETIK) COA 01/20GAAK\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT KIWI CSB (BHN BAKU KOSMETIK) COA 01/20GAAK\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT KIWI ECH (BHN BAKU KOSMETIK) COA 01/20GAAK, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT KIWI ECH (BHN BAKU KOSMETIK) COA 01/20GAAK, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO BP (BHN BAKU KOSMETIK) COA 187350\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"VEGETOL GRAPEFRUIT GR403 HYDRO BP (BHN BAKU KOSMETIK) COA 187350\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TEFOSE 63 BF (BHN BAKU OBAT) COA 185821\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TEFOSE 63 BF (BHN BAKU OBAT) COA 185821\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 157743\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15159011\", \"uraian\": \"AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 157743\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) GINSENG (BHN BAKU KOSMETIK) COA 10300045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021940\", \"uraian\": \"EXTRAPONE (R) GINSENG (BHN BAKU KOSMETIK) COA 10300045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEO EXTRAPONE (R) LEMON (BHN BAKU KOSMETIK) COA 10300017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"NEO EXTRAPONE (R) LEMON (BHN BAKU KOSMETIK) COA 10300017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) PEACH (BHN BAKU KOSMETIK) COA 10300035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"EXTRAPONE (R) PEACH (BHN BAKU KOSMETIK) COA 10300035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300057,10300058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300057,10300058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ACID PYROPHOSPHATE FOOD GRADE(BHN BAKU MAKANAN) COA 09220120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28353990\", \"uraian\": \"SODIUM ACID PYROPHOSPHATE FOOD GRADE(BHN BAKU MAKANAN) COA 09220120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORANGE EXTRACT (BHN BAKU KOSMETIK) COA 21120453\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"ORANGE EXTRACT (BHN BAKU KOSMETIK) COA 21120453\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRICKLY PEAR WATER DISTILLATE (BHN BAKU KOSMETIK) COA 21090619\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33019090\", \"uraian\": \"PRICKLY PEAR WATER DISTILLATE (BHN BAKU KOSMETIK) COA 21090619\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINKGO LEAVES EXTRACT (BHN BAKU KOSMETIK) COA 21120513\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"GINKGO LEAVES EXTRACT (BHN BAKU KOSMETIK) COA 21120513\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47063000\", \"uraian\": \"SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47063000\", \"uraian\": \"SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-0781221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334910\", \"uraian\": \"DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-0781221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP22014074,XP22014075,XP22014076,XP22014077\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP22014074,XP22014075,XP22014076,XP22014077\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340330,B340351\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX COMPACTED (BHN BAKU OBAT) COA B340330,B340351\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334793,B334795\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX POWDER (BHN BAKU OBAT) COA B334793,B334795\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1071109,1257805\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1071109,1257805\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1111125\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1111125\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0283759\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0283759\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1103620\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1103620\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1131505\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1131505\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1019654\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1019654\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1188932\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1188932\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1188091\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1188091\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1272847\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1272847\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1236408\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1236408\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1257857\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1257857\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1081518\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1081518\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1159422\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1159422\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1222962\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1222962\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1229880\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1229880\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1048445\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1048445\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1327503\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1327503\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1215026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1215026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1138027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1138027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1088540,1243568\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1088540,1243568\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1306190\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1306190\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1133939\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1133939\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1132546\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1132546\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1243568\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1243568\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1285540\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1285540\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1222962\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1222962\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1278356\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1278356\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME) BATCH 1188091\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME) BATCH 1188091\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1215026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1215026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1341761\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EE BROTH MOSSEL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1341761\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1215026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1215026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1236393\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1236393\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1145029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1145029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1257917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1257917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1145029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1145029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1132546\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1132546\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1257220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1257220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1306190\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1306190\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L GLUTATHIONE REDUCED (BHN BAKU MAKANAN) COA B211173\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"L GLUTATHIONE REDUCED (BHN BAKU MAKANAN) COA B211173\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2355402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2355402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1082038\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1082038\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1082038\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1082038\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1165061\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1165061\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASAMINO ACIDS EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1082049\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASAMINO ACIDS EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1082049\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000201106,0000201107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000201106,0000201107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU KOSMETIK) COA UT21020206\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU KOSMETIK) COA UT21020206\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92112233\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92112233\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0921020022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX (BHN BAKU KOSMETIK) COA 0921020022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02101013,UE02102024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02101013,UE02102024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0921020022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX (BHN BAKU KOSMETIK) COA 0921020022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0721010030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHS (BHN BAKU KOSMETIK) COA 0721010030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050390,0321050394,0321050395\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050390,0321050394,0321050395\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050395,0321050396\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050395,0321050396\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00731034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"AMPHISOL K (BHN BAKU KOSMETIK) COA VE00731034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040062,0221040083\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040062,0221040083\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02010816,TL02102803\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02010816,TL02102803\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL ZX (BHN BAKU KOSMETIK) COA 190927012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL ZX (BHN BAKU KOSMETIK) COA 190927012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 2103114\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 2103114\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829019674N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"B-WHITE TM (BHN BAKU KOSMETIK) COA 829019674N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830011006M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL TM (BHN BAKU KOSMETIK) COA 830011006M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 211965\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CHRONOLINE TM (BHN BAKU KOSMETIK) COA 211965\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2125203\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) COA 2125203\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019761M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019761M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEFENSCALP TM PF (BHN BAKU KOSMETIK) COA 785089070M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"DEFENSCALP TM PF (BHN BAKU KOSMETIK) COA 785089070M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 2103114\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 2103114\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830011006M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL TM (BHN BAKU KOSMETIK) COA 830011006M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 211965\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CHRONOLINE TM (BHN BAKU KOSMETIK) COA 211965\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2125201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) COA 2125201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROGELINE TM (BHN BAKU KOSMETIK) COA 203149R\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"PROGELINE TM (BHN BAKU KOSMETIK) COA 203149R\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSALITY TM (BHN BAKU KOSMETIK) COA 2110201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROSALITY TM (BHN BAKU KOSMETIK) COA 2110201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029189M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029189M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829019674N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"B-WHITE TM (BHN BAKU KOSMETIK) COA 829019674N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-070921,SFP-N-011112\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-070921,SFP-N-011112\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CATECHINS TEAVIGO 1 KG (BHN BAKU KOSMETIK) COA 109101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"CATECHINS TEAVIGO 1 KG (BHN BAKU KOSMETIK) COA 109101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SORBITOL SOLUTION 70 PCT CRYSTALLINE (BHN BAKU KOSMETIK) COA 2122P579\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054400\", \"uraian\": \"SORBITOL SOLUTION 70 PCT CRYSTALLINE (BHN BAKU KOSMETIK) COA 2122P579\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IONOL (R) CP (BHN BAKU KOSMETIK) COA 01115721\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29071900\", \"uraian\": \"IONOL (R) CP (BHN BAKU KOSMETIK) COA 01115721\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU IL-2 PE MQ1-17H12 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1180913\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU IL-2 PE MQ1-17H12 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1180913\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1313171\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE B12 ASSAY MEDIUM USP 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1313171\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LETHEEN BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1074476\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LETHEEN BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1074476\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1313328\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1313328\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1063145\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1063145\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1341497,1341499\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1341497,1341499\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1182099\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1182099\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAIN BUFFER FBS 500ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0301684\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"STAIN BUFFER FBS 500ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0301684\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1201851\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1201851\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1123223\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1123223\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1126127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1126127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB21080247\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB21080247\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500 AF (BHN BAKU SUPLEMEN) COA WB21070034,WB21070043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500 AF (BHN BAKU SUPLEMEN) COA WB21070034,WB21070043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NONIVAMIDE (SYNTHETIC CAPSAICIN) (BHN BAKU KOSMETIK) COA 20220109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29241990\", \"uraian\": \"NONIVAMIDE (SYNTHETIC CAPSAICIN) (BHN BAKU KOSMETIK) COA 20220109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA EDS/CC0090B\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"ERDOSTEINE (BAHAN BAKU OBAT) COA EDS/CC0090B\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20220111\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20220111\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20220111\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20220111\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANGANESE (II)-SULFATE 1-HYDRATE ( BHN BAKU OBAT) COA 3109952\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"MANGANESE (II)-SULFATE 1-HYDRATE ( BHN BAKU OBAT) COA 3109952\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ACETATE ANHYDROUS (BHN BAKU SUPPLEMEN) COA 3109952\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29152910\", \"uraian\": \"SODIUM ACETATE ANHYDROUS (BHN BAKU SUPPLEMEN) COA 3109952\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0053000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0053000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2 PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0095200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2 PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0095200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2 PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0095300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2 PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0095300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2 PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0108900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2 PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0108900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2 PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0109000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2 PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0109000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PERMETHRIN (PHARMA GRADE) BHN BAKU OBAT COA PMT/016/2021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29163990\", \"uraian\": \"PERMETHRIN (PHARMA GRADE) BHN BAKU OBAT COA PMT/016/2021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOPROFEN (BHN BAKU OBAT) COA 199282\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29183000\", \"uraian\": \"KETOPROFEN (BHN BAKU OBAT) COA 199282\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/01/050122,070122,080122,090122,100122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/01/050122,070122,080122,090122,100122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO220101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO220101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) COA ANTS210201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) COA ANTS210201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS220101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS220101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM220101-PGH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM220101-PGH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM210602-PGH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM210602-PGH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WITCH HAZEL ORGANIC DISTILLATE 1:10 (SB) (BHN BAKU KOSMETIK) COA HAVD220101-BIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"WITCH HAZEL ORGANIC DISTILLATE 1:10 (SB) (BHN BAKU KOSMETIK) COA HAVD220101-BIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LOTUS FROM VIETNAM ORGANIC OILY EXTRACT (BHN BAKU KOSMETIK) COA NEN220101-HBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LOTUS FROM VIETNAM ORGANIC OILY EXTRACT (BHN BAKU KOSMETIK) COA NEN220101-HBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIAMI SCG(S) (BHN BAKU KOSMETIK) COA 22012455,22012555\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34021190\", \"uraian\": \"MIAMI SCG(S) (BHN BAKU KOSMETIK) COA 22012455,22012555\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA GAJ\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) COA GAJ\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS EK-118 (IN) (BHN BAKU KOSMETIK) COA GAW\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS EK-118 (IN) (BHN BAKU KOSMETIK) COA GAW\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIDOCAINE BASE (BHN BAKU OBAT) COA 198951\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"LIDOCAINE BASE (BHN BAKU OBAT) COA 198951\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIDOCAINE HCL (BHN BAKU OBAT) COA 198439\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"LIDOCAINE HCL (BHN BAKU OBAT) COA 198439\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) COA 7766043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) COA 7766043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA F00271UP\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA F00271UP\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MATCHA ( BHN BAKU KOSMETIK) COA CSP 21010 EOU\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MATCHA ( BHN BAKU KOSMETIK) COA CSP 21010 EOU\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHENOXY ETHANOL PR (BHN BAKU KOSMETIK) COA 748640,747924\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29094900\", \"uraian\": \"PHENOXY ETHANOL PR (BHN BAKU KOSMETIK) COA 748640,747924\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH655369\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH655369\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH654377\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH654377\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB MAROON (BHN BAKU PEWARNA TABLET) COA SH654378\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB MAROON (BHN BAKU PEWARNA TABLET) COA SH654378\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH654379\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH654379\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH653955\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH653955\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH654380\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH654380\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH654381\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH654381\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH654944\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH654944\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH654945\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH654945\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH653834\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH653834\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH654382\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH654382\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH654423\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH654423\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH654383\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH654383\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH654384\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH654384\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH654385\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH654385\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH654419\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH654419\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH654412\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH654412\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH654386\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH654386\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH654387\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH654387\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH654388\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH654388\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH654421\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH654421\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH654422\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH654422\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH654424\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH654424\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH654390\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH654390\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH654413\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH654413\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND BROWN (BHN BAKU PEWARNA TABLET) COA SH654414\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND BROWN (BHN BAKU PEWARNA TABLET) COA SH654414\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH654415\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH654415\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH654391\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH654391\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND GREEN (BHN BAKU PEWARNA TABLET) COA SH654416\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND GREEN (BHN BAKU PEWARNA TABLET) COA SH654416\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH653834\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH653834\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD&C YELLOW #6/SUNSET YELLOW .... (BHN BAKU PEWARNA TABLET) COA WP850543:BB2569\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD&C YELLOW #6/SUNSET YELLOW .... (BHN BAKU PEWARNA TABLET) COA WP850543:BB2569\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD&C YELLOW #5/TARTRAZINE AL ... (BHN BAKU PEWARNA TABLET) COA WP844301:BA9666\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD&C YELLOW #5/TARTRAZINE AL ... (BHN BAKU PEWARNA TABLET) COA WP844301:BA9666\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D&C YELLOW #10 AL 15 PCT - 20 PCT... (BHN BAKU PEWARNA TABLET) COA WP844757:BB0004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"D&C YELLOW #10 AL 15 PCT - 20 PCT... (BHN BAKU PEWARNA TABLET) COA WP844757:BB0004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D&C YELLOW #10 AL 15 PCT - 20 PCT (BHN BAKU PEWARNA TABLET) COA WP844757:BB0004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"D&C YELLOW #10 AL 15 PCT - 20 PCT (BHN BAKU PEWARNA TABLET) COA WP844757:BB0004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERYTHROSINE AL 38 PCT - 42 PCT (BHN BAKU PEWARNA TABLET) COA WP844563:1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"ERYTHROSINE AL 38 PCT - 42 PCT (BHN BAKU PEWARNA TABLET) COA WP844563:1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH654410\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH654410\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH654941\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH654941\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH654943\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH654943\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 212686\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 212686\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BURGEON-UP (HS) (BAHAN BAKU KOSMETIK) COA 220332\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BURGEON-UP (HS) (BAHAN BAKU KOSMETIK) COA 220332\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 213064\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 213064\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102102045,102102048\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102102045,102102048\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OMEPRAZOLE SODIUM STERILE (BAHAN BAKU OBAT) COA SI/OPZ/00050122,00060122,00070122,00080122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"OMEPRAZOLE SODIUM STERILE (BAHAN BAKU OBAT) COA SI/OPZ/00050122,00060122,00070122,00080122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 2108502980\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29322090\", \"uraian\": \"SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 2108502980\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTIOXIDANT PREMIX FOR GUMMY (BHN BAKU MAKANAN) COA XW92201201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"ANTIOXIDANT PREMIX FOR GUMMY (BHN BAKU MAKANAN) COA XW92201201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIUSID VET POWDER @1 KG (PAKAN IKAN BERBENTUK BUBUK) COA X-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"VIUSID VET POWDER @1 KG (PAKAN IKAN BERBENTUK BUBUK) COA X-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) (BHN BAKU OBAT) COA 4454086968\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"XANTHAN 80 (PHARMACEUTICAL GRADE) (BHN BAKU OBAT) COA 4454086968\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA B200300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA B200300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK) COA LDC2622T\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101990\", \"uraian\": \"SAVONOL 16 (BAHAN BAKU KOSMETIK) COA LDC2622T\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-050211\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-050211\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE (MMW) (BHN BAKU KOSMETIK) COA CHP1220208\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND BIO-SODIUM HYALURONATE (MMW) (BHN BAKU KOSMETIK) COA CHP1220208\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK) COA CPG-020612\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK) COA CPG-020612\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 120821,012022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 120821,012022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 011922\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 011922\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-010322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-010322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND GREEN TEA SEED OIL (BHN BAKU KOSMETIK) COA CSSO-022701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND GREEN TEA SEED OIL (BHN BAKU KOSMETIK) COA CSSO-022701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MONOPROPYLENE GLYCOL (BHN BAKU KOSMETIK) COA PG(S)220116\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"MONOPROPYLENE GLYCOL (BHN BAKU KOSMETIK) COA PG(S)220116\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1271142\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1271142\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01D322M,B01D344M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01D322M,B01D344M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B04D349M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B04D349M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B04D349M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B04D349M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER DMACA INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02D274M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER DMACA INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02D274M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB21120305\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB21120305\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IVY DRY HYDR EXTR 10PCT HPLC (BAHAN BAKU SUPLEMEN) COA 21B0077400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"IVY DRY HYDR EXTR 10PCT HPLC (BAHAN BAKU SUPLEMEN) COA 21B0077400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VALERIAN D.H.E> 0.8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 21B0128700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VALERIAN D.H.E> 0.8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 21B0128700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VALERIAN D.H.E> 0.8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 21B0128700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VALERIAN D.H.E> 0.8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 21B0128700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180LAV001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180LAV001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180LB4002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180LB4002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENTRY POLYOX WSR 303 LEO NF (DUPONT/IFF) BHN BAKU PEWARNA TABLET) COA D682L7ERR3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"SENTRY POLYOX WSR 303 LEO NF (DUPONT/IFF) BHN BAKU PEWARNA TABLET) COA D682L7ERR3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HPA PURE SENSITIVE HALAL P116 13 (BHN BAKU KOSMETIK) COA 3256356\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"HPA PURE SENSITIVE HALAL P116 13 (BHN BAKU KOSMETIK) COA 3256356\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3264337\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3264337\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS220101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS220101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM220101-PGH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM220101-PGH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WITCH HAZEL ORGANIC DISTILLATE 1:10 (BHN BAKU KOSMETIK) COA HAVD220101-BIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"WITCH HAZEL ORGANIC DISTILLATE 1:10 (BHN BAKU KOSMETIK) COA HAVD220101-BIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HEBELYS (BHN BAKU KOSMETIK) COA SPHC210301-Z100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HEBELYS (BHN BAKU KOSMETIK) COA SPHC210301-Z100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INCA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK) COA II211214-AI-D-BIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"INCA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK) COA II211214-AI-D-BIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA211204\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA211204\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAFFLOWER REFINED OIL (BHN BAKU KOSMETIK) COA CARHR211109-DW\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SAFFLOWER REFINED OIL (BHN BAKU KOSMETIK) COA CARHR211109-DW\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLE COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO210603\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLE COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO210603\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLE COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO220202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLE COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO220202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM220101-PGH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM220101-PGH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO220101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO220101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO220202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO220202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO220202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO220202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE S-1-12052 (BHN BAKU PEWARNA TABLET) COA TKL60936, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE S-1-12052 (BHN BAKU PEWARNA TABLET) COA TKL60936, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE S-1-277001 BLACK (BHN BAKU PEWARNA TABLET) COA TKL61044, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE S-1-277001 BLACK (BHN BAKU PEWARNA TABLET) COA TKL61044, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METRONIDAZOLE BENZOATE EP (BHN BAKU OBAT) COA MBO/12010064\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"METRONIDAZOLE BENZOATE EP (BHN BAKU OBAT) COA MBO/12010064\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-TARTARIC ACID (BHN BAKU MAKANAN) COA RS01566\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181200\", \"uraian\": \"DL-TARTARIC ACID (BHN BAKU MAKANAN) COA RS01566\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TITANIUM DIOXIDE 3100 (BHN BAKU MAKANAN) COA 2201216\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32061110\", \"uraian\": \"TITANIUM DIOXIDE 3100 (BHN BAKU MAKANAN) COA 2201216\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CROPOVIDONE XL (BHN BAKU OBAT) COA PP220125XL\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"CROPOVIDONE XL (BHN BAKU OBAT) COA PP220125XL\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POVIDONE K-30 (BHN BAKU OBAT) COA PK30-220120F33\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"POVIDONE K-30 (BHN BAKU OBAT) COA PK30-220120F33\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105714621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200H (BHN BAKU OBAT) COA L105714621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT21070034,UT22010039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT21070034,UT22010039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02201488\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02201488\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02201001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02201001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPPLEMEN) COA UT21120028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPPLEMEN) COA UT21120028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT21100013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT21100013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTISHARP NAT. ZEA. 14PCT SAFF (BHN BAKU SUPPLEMEN) COA 2111101944\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"OPTISHARP NAT. ZEA. 14PCT SAFF (BHN BAKU SUPPLEMEN) COA 2111101944\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SYN(R)-AKE (BHN BAKU KOSMETIK) COA UE02112512\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SYN(R)-AKE (BHN BAKU KOSMETIK) COA UE02112512\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ10917008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ10917008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP01322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP01322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 2AX2202018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 2AX2202018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH655220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH655220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH655220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH655220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA SH655209\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA SH655209\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB21120305\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB21120305\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 20/05/2021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25070000\", \"uraian\": \"KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 20/05/2021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA357213,ROA355216,ROA272216,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA357213,ROA355216,ROA272216,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE 99PCT TG (BHN BAKU SUPLEMEN) COA WB22010568,WB22010571\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE 99PCT TG (BHN BAKU SUPLEMEN) COA WB22010568,WB22010571\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHISOPRINOL (BHN BAKU OBAT) COA MTP220031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"METHISOPRINOL (BHN BAKU OBAT) COA MTP220031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEVOFLOXACIN HEMIHYDRATE USP (BHN BAKU OBAT) COA LF20090029,LF20110044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"LEVOFLOXACIN HEMIHYDRATE USP (BHN BAKU OBAT) COA LF20090029,LF20110044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M -31.0 PCT (BHN BAKU OBAT) COA 102129053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MG HYD PASTE USP TYPE M -31.0 PCT (BHN BAKU OBAT) COA 102129053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II CLEAR (BHN BAKU PEWARNA TABLET) COA SH655212\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II CLEAR (BHN BAKU PEWARNA TABLET) COA SH655212\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656057\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656057\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH656043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH656043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY SGR RED (BHN BAKU PEWARNA TABLET) COA GA703502\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY SGR RED (BHN BAKU PEWARNA TABLET) COA GA703502\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPPLEMEN) COA UT22010003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU SUPPLEMEN) COA UT22010003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT21070181\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT21070181\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11211022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11211022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12111013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12111013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50 PCT CWS/S (BHN BAKU MAKANAN) COA UE02110272\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50 PCT CWS/S (BHN BAKU MAKANAN) COA UE02110272\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12111013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12111013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12111013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12111013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11211022,QZ11211024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11211022,QZ11211024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50 PCT CWS/S (BHN BAKU SUPLEMEN) COA UT21080042\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50 PCT CWS/S (BHN BAKU SUPLEMEN) COA UT21080042\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT21090088\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT21090088\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ10910764,UQ10910765\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ10910764,UQ10910765\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL02108764\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL02108764\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12111013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12111013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ11113682\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ11113682\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3 PCT (BHN BAKU SUPLEMEN) COA WB21050065\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3 PCT (BHN BAKU SUPLEMEN) COA WB21050065\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ10212048\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ10212048\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU SUPLEMEN) COA UT21030210\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU SUPLEMEN) COA UT21030210\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10 PCT CWS (BHN BAKU SUPLEMEN) COA UT21100054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10 PCT CWS (BHN BAKU SUPLEMEN) COA UT21100054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ10212048\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ10212048\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT21050015,UT20120055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT21050015,UT20120055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ11113682\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ11113682\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2103027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2103027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ10913312\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ10913312\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT21100054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT21100054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL02110668\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL02110668\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3 PCT (BHN BAKU SUPLEMEN) COA WB21050082,WB00519051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3 PCT (BHN BAKU SUPLEMEN) COA WB21050082,WB00519051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT21110243\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPLEMEN) COA UT21110243\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3 PCT (BHN BAKU SUPLEMEN) COA WB21060056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3 PCT (BHN BAKU SUPLEMEN) COA WB21060056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT21090031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT21090031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL02111128\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL02111128\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL02111128\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL02111128\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL02111128\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL02111128\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL02111128\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL02111128\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1 PCT WS (BHN BAKU MAKANAN) COA UT21070014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1 PCT WS (BHN BAKU MAKANAN) COA UT21070014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000199646\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000199646\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000200423\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000200423\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02109787,TL02108768,TL02108771\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02109787,TL02108768,TL02108771\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21070150\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21070150\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21070150\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21070150\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92112345\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92112345\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU MAKANAN) COA WB21060056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU MAKANAN) COA WB21060056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3 PCT (BHN BAKU MAKANAN) COA WB21050080,WB21050082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3 PCT (BHN BAKU MAKANAN) COA WB21050080,WB21050082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02109104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02109104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21110383\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21110383\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02103036,UE02103039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02103036,UE02103039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES2109599\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"ALLANTOIN (BHN BAKU KOSMETIK) COA ES2109599\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040083\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040083\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050398,0321050399\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050398,0321050399\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210027,0708210037,0708210038,0708210039,0708210047,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210027,0708210037,0708210038,0708210039,0708210047,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001624174\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SLX (BHN BAKU KOSMETIK) COA 0001624174\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS2100821\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS2100821\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02102803,TL02106807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02102803,TL02106807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02106807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02106807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0421040061\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HMS (BHN BAKU KOSMETIK) COA 0421040061\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0038741\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0038741\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0038741\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0038741\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLCOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/1121053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"METHYLCOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/1121053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBNB220092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBNB220092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAPROTILINE HCL (BHN BAKU OBAT) COA 2150003373\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29214900\", \"uraian\": \"MAPROTILINE HCL (BHN BAKU OBAT) COA 2150003373\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) COA 321CAA0017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CETRIMIDE (BHN BAKU KOSMETIK) COA 321CAA0017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JAGUAR HP 105 SGI (BHN BAKU KOSMETIK) COA H2110217D\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"JAGUAR HP 105 SGI (BHN BAKU KOSMETIK) COA H2110217D\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 201172\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 201172\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) COA 202268\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (16KG) (BHN BAKU KOSMETIK) COA 202268\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-15 (16KG) (BHN BAKU KOSMETIK) COA 112540\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSG-15 (16KG) (BHN BAKU KOSMETIK) COA 112540\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 201172\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 201172\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-15 (16KG) (BHN BAKU KOSMETIK) COA 112542\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSG-15 (16KG) (BHN BAKU KOSMETIK) COA 112542\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL220214,MCCPOL220217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29094900\", \"uraian\": \"MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL220214,MCCPOL220217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 14 PREMIUM ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D184K5S021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 14 PREMIUM ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D184K5S021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 14 PREMIUM ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D184K5S021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 14 PREMIUM ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D184K5S021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SJG\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SJG\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SJG,SHF\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SJG,SHF\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA GAK\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) COA GAK\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WS (BHN BAKU KOSMETIK) COA GAG\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WS (BHN BAKU KOSMETIK) COA GAG\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE BLACK (BHN BAKU PEWARNA TABLET) COA DT724193\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"OPACODE BLACK (BHN BAKU PEWARNA TABLET) COA DT724193\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NUTRAFINISH TIO2 FREE YELLOW (BHN BAKU PEWARNA TABLET) COA DT725355\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"NUTRAFINISH TIO2 FREE YELLOW (BHN BAKU PEWARNA TABLET) COA DT725355\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 22100033,22100038\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 22100033,22100038\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA MTP01322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA MTP01322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED (BHN BAKU PAKAN TERNAK) COA MTP00622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED (BHN BAKU PAKAN TERNAK) COA MTP00622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SERENOA REPENS PURIFIED EXT (BHN BAKU SUPLEMEN) COA 21S0178200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SERENOA REPENS PURIFIED EXT (BHN BAKU SUPLEMEN) COA 21S0178200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CURCUMA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 22S0007005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"CURCUMA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 22S0007005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GREEN TEA DRY DEC.EX./PHOSPHOL (BHN BAKU SUPLEMEN) COA 19S0269705\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"GREEN TEA DRY DEC.EX./PHOSPHOL (BHN BAKU SUPLEMEN) COA 19S0269705\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU KOSMETIK) COA 21S0135500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"CENTELLA ASIATICA TRITERPENES (BHN BAKU KOSMETIK) COA 21S0135500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEFERASIROX (BHN BAKU OBAT) COA DF20122005,DF20122006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"DEFERASIROX (BHN BAKU OBAT) COA DF20122005,DF20122006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE02202002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"RONOXAN A (BHN BAKU MAKANAN) COA UE02202002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTISHARP NAT. ZEA 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA EW21065009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"OPTISHARP NAT. ZEA 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA EW21065009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO(R) LUTEIN 20PCT SAF (BHN BAKU SUPLEMEN) COA UE02112037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO(R) LUTEIN 20PCT SAF (BHN BAKU SUPLEMEN) COA UE02112037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAROCARE NAT. BC 20PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA EW22012005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"CAROCARE NAT. BC 20PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA EW22012005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO (R) LUTEIN 20 PCT SAF (BHN BAKU SUPLEMEN) COA UE02112037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO (R) LUTEIN 20 PCT SAF (BHN BAKU SUPLEMEN) COA UE02112037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT21120058,UT22020059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT21120058,UT22020059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETAMETHASONE VALERATE USP (BHN BAKU OBAT) COA APL/BV/01022/A-22\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"BETAMETHASONE VALERATE USP (BHN BAKU OBAT) COA APL/BV/01022/A-22\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 212642\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ABSORAGE (BHN BAKU KOSMETIK) COA 212642\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNE BUSTERS (BHN BAKU KOSMETIK) COA 213040,220167\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNE BUSTERS (BHN BAKU KOSMETIK) COA 213040,220167\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 212631\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 212631\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 212713\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"MANDARINCLEAR (BHN BAKU KOSMETIK) COA 212713\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOKUDAMI LIQUID B (BHN BAKU KOSMETIK) COA 212754\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"DOKUDAMI LIQUID B (BHN BAKU KOSMETIK) COA 212754\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 220149\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 220149\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 212713\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"MANDARINCLEAR (BHN BAKU KOSMETIK) COA 212713\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 212202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"IZAYOI (BHN BAKU KOSMETIK) COA 212202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNE BUSTERS (BHN BAKU KOSMETIK) COA 220167,220394\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNE BUSTERS (BHN BAKU KOSMETIK) COA 220167,220394\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARACETAMOL USP (BHN BAKU OBAT) COA 202112094A,202112095A,202112096A\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"PARACETAMOL USP (BHN BAKU OBAT) COA 202112094A,202112095A,202112096A\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122101487\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122101487\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 14 PREMIUM ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D184K5S021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 14 PREMIUM ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D184K5S021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRECIROL ATO 5 CAR (BHN BAKU OBAT) COA 187267\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"PRECIROL ATO 5 CAR (BHN BAKU OBAT) COA 187267\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPRITOL 888 ATO CAR (BHN BAKU OBAT) COA 187660\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"COMPRITOL 888 ATO CAR (BHN BAKU OBAT) COA 187660\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELUCIRE 48/16 PELLETS CAR (BHN BAKU OBAT) COA 185000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELUCIRE 48/16 PELLETS CAR (BHN BAKU OBAT) COA 185000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CETYL PALMITATE PELLETS CAR (BHN BAKU OBAT) COA 185624\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"CETYL PALMITATE PELLETS CAR (BHN BAKU OBAT) COA 185624\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EMULCIRE 61 WL 2659 CAR (BHN BAKU OBAT) COA 187386\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"EMULCIRE 61 WL 2659 CAR (BHN BAKU OBAT) COA 187386\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPRITOL 888 PELLETS CAR (BHN BAKU OBAT) COA 21E2404\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"COMPRITOL 888 PELLETS CAR (BHN BAKU OBAT) COA 21E2404\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD&C YELLOW 6/SUNSET YELLOW .... (BHN BAKU PEWARNA TABLET) COA WP848265:BB2299\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD&C YELLOW 6/SUNSET YELLOW .... (BHN BAKU PEWARNA TABLET) COA WP848265:BB2299\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD&C YELLOW 5/TARTRAZINE AL ... (BHN BAKU PEWARNA TABLET) COA WP844301:BA9667\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD&C YELLOW 5/TARTRAZINE AL ... (BHN BAKU PEWARNA TABLET) COA WP844301:BA9667\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D&C YELLOW 10 AL 15 PCT - 20 PCT... (BHN BAKU PEWARNA TABLET) COA WP844757:BB0004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"D&C YELLOW 10 AL 15 PCT - 20 PCT... (BHN BAKU PEWARNA TABLET) COA WP844757:BB0004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD&C BLUE 2/INDIGO CARMINE AL... (BHN BAKU PEWARNA TABLET) COA WP847583:BB1665\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"FD&C BLUE 2/INDIGO CARMINE AL... (BHN BAKU PEWARNA TABLET) COA WP847583:BB1665\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E15 PREMIUM LV HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D011K7KL01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E15 PREMIUM LV HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D011K7KL01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D011L4SL02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D011L4SL02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL A15 PREMIUM LV METHYLCELLULOSE... (BHN BAKU PEWARNA TABLET) COA D180L6S021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL A15 PREMIUM LV METHYLCELLULOSE... (BHN BAKU PEWARNA TABLET) COA D180L6S021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL A15 PREMIUM LV METHYLCELLULOSE...(BHN BAKU PEWARNA TABLET) COA D180L6S021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL A15 PREMIUM LV METHYLCELLULOSE...(BHN BAKU PEWARNA TABLET) COA D180L6S021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL A15 PREMIUM LV METHYLCELLULOSE... (BHN BAKU PEWARNA TABLET) COA D180L4I022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL A15 PREMIUM LV METHYLCELLULOSE... (BHN BAKU PEWARNA TABLET) COA D180L4I022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180K61001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180K61001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D011L4SL02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D011L4SL02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180L96001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180L96001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180KBO002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180KBO002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 03850222,03870222,03900222,03920222,....\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 03850222,03870222,03900222,03920222,....\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MATCHA ( BHN BAKU KOSMETIK) COA CSP 21012 EOU\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MATCHA ( BHN BAKU KOSMETIK) COA CSP 21012 EOU\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-2107125\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29146200\", \"uraian\": \"COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-2107125\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRAYPHOS DKP FG 25K BG (BHN BAKU KOSMETIK) COA 2134631\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28352400\", \"uraian\": \"PRAYPHOS DKP FG 25K BG (BHN BAKU KOSMETIK) COA 2134631\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MONOPOT PHOS MKP FG 25K BG (BHN BAKU KOSMETIK) COA 22-004-01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"MONOPOT PHOS MKP FG 25K BG (BHN BAKU KOSMETIK) COA 22-004-01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISOLONE USP42 (BHN BAKU OBAT) COA XPL220203\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISOLONE USP42 (BHN BAKU OBAT) COA XPL220203\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M598110,M598112\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M598110,M598112\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M535251 S/D M535252,M535255 S/D M535262,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M535251 S/D M535252,M535255 S/D M535262,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT21100378\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT21100378\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ11113366\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ11113366\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW92112204\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 C (BHN BAKU MAKANAN) COA XW92112204\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02102011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02102011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02109790\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02109790\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT21100378\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT21100378\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB21050065\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB21050065\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02102011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02102011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000200423\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000200423\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT21100211\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT21100211\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 204005 (BHN BAKU MAKANAN) COA XW92202066\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 204005 (BHN BAKU MAKANAN) COA XW92202066\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPPLEMEN) COA UT21090088\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU SUPPLEMEN) COA UT21090088\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPPLEMEN) COA UT21090088\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU SUPPLEMEN) COA UT21090088\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2103027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2103027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MINERAL PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92202061\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"MINERAL PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92202061\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MINERAL PREMIX HBS08022019 (BHN BAKU MAKANAN) COA XW92202068\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"MINERAL PREMIX HBS08022019 (BHN BAKU MAKANAN) COA XW92202068\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000201728,0000201729\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000201728,0000201729\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000201729\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000201729\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000201341,0000201726,0000201728\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000201341,0000201726,0000201728\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21100378\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21100378\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF21092006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF21092006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20211111,20211203\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20211111,20211203\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02111078\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02111078\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT21100013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT21100013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL02112207,TL02112215,TL02112226,TL02112234\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL02112207,TL02112215,TL02112226,TL02112234\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02111077\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02111077\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPPLEMEN) COA UT21070071,UT21070072,UT21070076\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU SUPPLEMEN) COA UT21070071,UT21070072,UT21070076\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPPLEMEN) COA TL02112175\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPPLEMEN) COA TL02112175\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (POST BORDER) COA UT21060056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (POST BORDER) COA UT21060056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIFE'S DHA S35-O100 (BHN BAKU SUPLEMEN) COA VY00383114\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"LIFE'S DHA S35-O100 (BHN BAKU SUPLEMEN) COA VY00383114\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIFE'SDHA(TM) S35-O300 (BHN BAKU SUPLEMEN) COA VY00434705\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"LIFE'SDHA(TM) S35-O300 (BHN BAKU SUPLEMEN) COA VY00434705\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 211059200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 211059200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)COA 1103638,1271809\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)COA 1103638,1271809\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1250282\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1250282\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1235731\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1235731\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1264648\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1264648\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1271813\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1271813\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR W/MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0063506\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT AGAR W/MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0063506\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1320085\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1320085\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9337678\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9337678\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0062865\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0062865\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR NOBLE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1223649\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR NOBLE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1223649\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1187914\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1187914\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1181376,1243543\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1181376,1243543\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SODIUM DESOXYCHOLATE 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1110014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SODIUM DESOXYCHOLATE 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1110014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TODD HEWITT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1285594\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TODD HEWITT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1285594\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GASPAK EZ STANDARD INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH7365056010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"GASPAK EZ STANDARD INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH7365056010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1312204\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1312204\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ISP MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1319645\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ISP MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1319645\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1357833\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1357833\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1159422\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1159422\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1285540\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1285540\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1229957\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1229957\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-PA-C AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1306276\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M-PA-C AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1306276\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-PA-C AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1306276\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M-PA-C AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1306276\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2010438\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2010438\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2011124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2011124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0343102,1257917\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0343102,1257917\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1341759\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1341759\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1222962\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1222962\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1173666\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1173666\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0286569\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0286569\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1250282\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1250282\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500 G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1235731,1349644\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500 G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1235731,1349644\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1349557\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1349557\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1320239,1357833\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1320239,1357833\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LOOPS INOCULATING 10/TUBE 10 MICROLITER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2102599\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"LOOPS INOCULATING 10/TUBE 10 MICROLITER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2102599\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POLYSORBATE 80 100G 1 EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 1340021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POLYSORBATE 80 100G 1 EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 1340021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1278356\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1278356\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01E012M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01E012M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 1355318\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 1355318\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1356186\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1356186\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B04D349M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B04D349M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SELENITE CYSTINE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1081607\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SELENITE CYSTINE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1081607\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M598155\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M598155\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M535317,M535340,M535341,M535360,M535362,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M535317,M535340,M535341,M535360,M535362,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU PAKAN TERNAK) COA 202100643\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"AL HYD WET GEL VAC 20 (BHN BAKU PAKAN TERNAK) COA 202100643\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU PAKAN TERNAK) COA 202100644\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"AL HYD WET GEL VAC 20 (BHN BAKU PAKAN TERNAK) COA 202100644\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SORBITOL SOLUTION 70 PCT CRYSTALLINE (BHN BAKU KOSMETIK) COA 2122P654\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054400\", \"uraian\": \"SORBITOL SOLUTION 70 PCT CRYSTALLINE (BHN BAKU KOSMETIK) COA 2122P654\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-220212\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-220212\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHENOXY ETHANOL PR (BHN BAKU KOSMETIK) COA 748640\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29094900\", \"uraian\": \"PHENOXY ETHANOL PR (BHN BAKU KOSMETIK) COA 748640\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GALAXY 610 EHS MB (ETHYLENE GLYCOL DISTEARATE) (BHN BAKU KOSMETIK) COA 748872\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34049090\", \"uraian\": \"GALAXY 610 EHS MB (ETHYLENE GLYCOL DISTEARATE) (BHN BAKU KOSMETIK) COA 748872\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYPOL 980 (20KG) (BAHAN BAKU KOSMETIK) COA 11521062,1151063,11521064\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39069099\", \"uraian\": \"ACRYPOL 980 (20KG) (BAHAN BAKU KOSMETIK) COA 11521062,1151063,11521064\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 170821,010821,200521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25070000\", \"uraian\": \"KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 170821,010821,200521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EMULIUM MELLIFERA MB CAR (BHN BAKU KOSMETIK) COA 187898\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"EMULIUM MELLIFERA MB CAR (BHN BAKU KOSMETIK) COA 187898\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EMULIUM MELLIFERA MB CAR (BHN BAKU KOSMETIK) COA 187898\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"EMULIUM MELLIFERA MB CAR (BHN BAKU KOSMETIK) COA 187898\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LABRAFIL M 1944 CS BF (BHN BAKU SUPPLEMEN) COA 187197\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LABRAFIL M 1944 CS BF (BHN BAKU SUPPLEMEN) COA 187197\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TEFOSE 63 BF (BHN BAKU SUPPLEMEN) COA 185821\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TEFOSE 63 BF (BHN BAKU SUPPLEMEN) COA 185821\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512137\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47069200\", \"uraian\": \"SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512137\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 3020 EE P OIL (BHN BAKU SUPPLEMEN) COA TS00018481\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 3020 EE P OIL (BHN BAKU SUPPLEMEN) COA TS00018481\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GUAIFENESIN USP 42 (B. BAKU OBAT) COA GGE-2201019 S/D GGE-2201023,GGE-2202024 S/D GGE-2202032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29094900\", \"uraian\": \"GUAIFENESIN USP 42 (B. BAKU OBAT) COA GGE-2201019 S/D GGE-2201023,GGE-2202024 S/D GGE-2202032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-020422\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-020422\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-173011,OHA-022122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-173011,OHA-022122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ALOE EXTRACT (BHN BAKU KOSMETIK) COA AAL-CR-061901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND ALOE EXTRACT (BHN BAKU KOSMETIK) COA AAL-CR-061901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND DM 3 COMPLEX (BHN BAKU KOSMETIK) COA ANFE-011401\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND DM 3 COMPLEX (BHN BAKU KOSMETIK) COA ANFE-011401\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-051201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-051201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-042001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-042001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND CACTUS EXTRACT (BHN BAKU KOSMETIK) COA CAB-052921\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND CACTUS EXTRACT (BHN BAKU KOSMETIK) COA CAB-052921\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-082821\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-082821\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 011922\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28331900\", \"uraian\": \"HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 011922\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND TEA TREE EXTRACT (BHN BAKU KOSMETIK) COA MASL-031381\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND TEA TREE EXTRACT (BHN BAKU KOSMETIK) COA MASL-031381\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (B) (BHN BAKU KOSMETIK) COA AMIBD-011012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"HYUNDAI BIOLAND AMINO ACID COMPLEX (B) (BHN BAKU KOSMETIK) COA AMIBD-011012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK) COA NMSP-D-010612\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK) COA NMSP-D-010612\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SENAS (BHN BAKU KOSMETIK) COA NASB-031281,NASB-011122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21022090\", \"uraian\": \"HYUNDAI BIOLAND SENAS (BHN BAKU KOSMETIK) COA NASB-031281,NASB-011122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 012022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28331900\", \"uraian\": \"HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 012022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 011922\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28331900\", \"uraian\": \"HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 011922\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSUVASTATIN CALSIUM (BHN BAKU OBAT) COA M325218\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"ROSUVASTATIN CALSIUM (BHN BAKU OBAT) COA M325218\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB21090600,WB21100603\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB21090600,WB21100603\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TSPL-30-ID (1KG) (BHN BAKU KOSMETIK) COA 106015,202016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"TSPL-30-ID (1KG) (BHN BAKU KOSMETIK) COA 106015,202016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP01522,MTP01322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP01522,MTP01322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP01422\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP01422\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102202002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102202002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102102059,102202002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102102059,102202002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS GLUCONATE, POWDER, USP 43 (BHN BAKU SUPLEMEN) COA 3112011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"FERROUS GLUCONATE, POWDER, USP 43 (BHN BAKU SUPLEMEN) COA 3112011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINC SULFATE 1-HYDRATE, POWDER, USP 43 (BHN BAKU SUPLEMEN) COA 3109231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"ZINC SULFATE 1-HYDRATE, POWDER, USP 43 (BHN BAKU SUPLEMEN) COA 3109231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS SULFATE, DRIED, POWDER, USP 43 (BHN BAKU SUPLEMEN) COA 3110130,3110345\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"FERROUS SULFATE, DRIED, POWDER, USP 43 (BHN BAKU SUPLEMEN) COA 3110130,3110345\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIPOTASSIUM CITRATE 1-HYDRATE (BHN BAKU SUPLEMEN) COA 3112473\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"TRIPOTASSIUM CITRATE 1-HYDRATE (BHN BAKU SUPLEMEN) COA 3112473\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM OXIDE, LIGHT, POWDER, BP 2021 (BHN BAKU SUPLEMEN) COA 3102783-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25199010\", \"uraian\": \"MAGNESIUM OXIDE, LIGHT, POWDER, BP 2021 (BHN BAKU SUPLEMEN) COA 3102783-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINC SULFATE 1-HYDRATE, POWDER, USP 43 (BHN BAKU SUPLEMEN) COA 3111493\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"ZINC SULFATE 1-HYDRATE, POWDER, USP 43 (BHN BAKU SUPLEMEN) COA 3111493\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINC SULFATE 1-HYDRATE, POWDER, USP 43 (BHN BAKU SUPLEMEN) COA 3111493\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"ZINC SULFATE 1-HYDRATE, POWDER, USP 43 (BHN BAKU SUPLEMEN) COA 3111493\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH655370\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH655370\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH655257\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH655257\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH654941\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH654941\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH655239\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH655239\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH655203\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH655203\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH655195\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH655195\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH655471\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH655471\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH655205\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH655205\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH655373\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH655373\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH655314\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH655314\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH655207\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH655207\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH655099\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH655099\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH655221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH655221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH655211\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH655211\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH655211\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH655211\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH655197\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH655197\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II CLEAR (BHN BAKU PEWARNA TABLET) COA SH655212\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II CLEAR (BHN BAKU PEWARNA TABLET) COA SH655212\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH655198\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH655198\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH655199\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH655199\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH655213\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH655213\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH655267\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH655267\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH655214\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH655214\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II BROWN (BHN BAKU PEWARNA TABLET) COA SH655231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II BROWN (BHN BAKU PEWARNA TABLET) COA SH655231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH655230\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH655230\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH655216\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH655216\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH655200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH655200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH655201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH655201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH655205\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH655205\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NABUMETONE USP (BAHAN BAKU OBAT) COA H-0070122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29145000\", \"uraian\": \"NABUMETONE USP (BAHAN BAKU OBAT) COA H-0070122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRANOL ULTRA C-32 MB 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP111689MB\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34021990\", \"uraian\": \"MIRANOL ULTRA C-32 MB 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP111689MB\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1341497,1341499\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1341497,1341499\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1182099\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1182099\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1309681\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1309681\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD3 FITC HIT3A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2019528\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD3 FITC HIT3A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2019528\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU TH1/TH2/TH17 CBA KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1342605\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU TH1/TH2/TH17 CBA KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1342605\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1200457,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1200457,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1313328\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1313328\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1309681,1341499,..\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1309681,1341499,..\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1063138\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1063138\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1153205\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1153205\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0128385\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0128385\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL TTC SOLUTION 1PCT 1X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1315600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL TTC SOLUTION 1PCT 1X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1315600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2417191\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2417191\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1165061\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1165061\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0216774\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0216774\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1228035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1228035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1215964\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1215964\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2417191\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2417191\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2305552\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2305552\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1165061\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1165061\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1153097\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1153097\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1153097\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1153097\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1046610\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1046610\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) COA 321CAA0018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CETRIMIDE (BHN BAKU KOSMETIK) COA 321CAA0018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 27-08-21,23-08-21,25-08-21,27-09-21,26-08-21,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 27-08-21,23-08-21,25-08-21,27-09-21,26-08-21,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT (BHN BAKU SUPLEMEN) COA UT21120028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"BETATAB 20PCT (BHN BAKU SUPLEMEN) COA UT21120028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT22020063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT22020063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPLEMEN) COA TL02201494\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPLEMEN) COA TL02201494\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22020040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22020040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA353215,ROA352213,ROA350216,ROA...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA353215,ROA352213,ROA350216,ROA...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202202-025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35040000\", \"uraian\": \"SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202202-025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POMEGRANATE OF ACORES HYDROGLYCERINED EXTRACT (BHN BAKU KOSMETIK) COA PUGA220102-GL\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"POMEGRANATE OF ACORES HYDROGLYCERINED EXTRACT (BHN BAKU KOSMETIK) COA PUGA220102-GL\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK) COA EG209-220201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK) COA EG209-220201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KELCOGEL CG-HA [E] (BAHAN BAKU KOSMETIK) COA 1C8420A\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KELCOGEL CG-HA [E] (BAHAN BAKU KOSMETIK) COA 1C8420A\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 CAN 10KG (BHN BAKU KOSMETIK) COA 1577257,1577808\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 CAN 10KG (BHN BAKU KOSMETIK) COA 1577257,1577808\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 CAN 10KG (BHN BAKU KOSMETIK) COA 1577808\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 CAN 10KG (BHN BAKU KOSMETIK) COA 1577808\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 100 CAN 10 KG (BHN BAKU KOSMETIK) COA 1570899,1570948\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 100 CAN 10 KG (BHN BAKU KOSMETIK) COA 1570899,1570948\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 712 CAN 10KG (BHN BAKU KOSMETIK) COA 1577056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 712 CAN 10KG (BHN BAKU KOSMETIK) COA 1577056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 CAN 10KG (BHN BAKU KOSMETIK) COA 1576482\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 CAN 10KG (BHN BAKU KOSMETIK) COA 1576482\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIDIN DO CAN 10KG (BHN BAKU KOSMETIK) COA 1572632\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIDIN DO CAN 10KG (BHN BAKU KOSMETIK) COA 1572632\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 720 CAN 10KG (BHN BAKU KOSMETIK) COA 1576441\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 720 CAN 10KG (BHN BAKU KOSMETIK) COA 1576441\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M-31.0PCT (BHN BAKU OBAT) COA 102129053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MG HYD PASTE USP TYPE M-31.0PCT (BHN BAKU OBAT) COA 102129053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN546300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN546300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN546298\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN546298\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN546299\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN546299\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN546284\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN546284\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH656773\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH656773\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH656545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH656545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRISODIUMCITRATE DIHYDRATE FINE GRANULAR (BHN BAKU MAKANAN) COA UJ201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"TRISODIUMCITRATE DIHYDRATE FINE GRANULAR (BHN BAKU MAKANAN) COA UJ201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 080321/007122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 080321/007122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 985-L-MENTHOL CRYSTALS INDIAN NATURAL (BHN BAKU KOSMETIK) COA NFPL/MEN/21/021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061100\", \"uraian\": \"985-L-MENTHOL CRYSTALS INDIAN NATURAL (BHN BAKU KOSMETIK) COA NFPL/MEN/21/021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN545484\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN545484\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M-31.0PCT (BHN BAKU OBAT) COA 102129049\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MG HYD PASTE USP TYPE M-31.0PCT (BHN BAKU OBAT) COA 102129049\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 02/21GL4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 02/21GL4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 02/21GL4, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 02/21GL4, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS GLUCONATE, POWDER, USP 43 (BHN BAKU SUPLEMEN) COA 3089085\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"FERROUS GLUCONATE, POWDER, USP 43 (BHN BAKU SUPLEMEN) COA 3089085\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS GLUCONATE, POWDER, USP 43 (BHN BAKU SUPLEMEN) COA 3114276\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"FERROUS GLUCONATE, POWDER, USP 43 (BHN BAKU SUPLEMEN) COA 3114276\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEARL ESSENCES 35031MJ (BHN BAKU KOSMETIK) COA D2010841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32061910\", \"uraian\": \"PEARL ESSENCES 35031MJ (BHN BAKU KOSMETIK) COA D2010841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2022021502\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2022021502\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2022021502\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2022021502\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT22010002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT22010002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 103093 - A (BHN BAKU MAKANAN) COA XW92202067\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 103093 - A (BHN BAKU MAKANAN) COA XW92202067\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX TRS1 WITHOUT K1 (BHN BAKU MAKANAN) COA XW92202075\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX TRS1 WITHOUT K1 (BHN BAKU MAKANAN) COA XW92202075\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12111015,OP12111016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12111015,OP12111016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12111015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12111015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21100060,UT21100067\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21100060,UT21100067\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPPLEMEN) COA UQ11113356\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPPLEMEN) COA UQ11113356\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT21100037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT21100037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2103027,UEB2103028,UEB2103030,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2103027,UEB2103028,UEB2103030,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPPLEMEN) COA UQ11113356\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPPLEMEN) COA UQ11113356\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT21100037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT21100037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2103031,UEB2103032,UEB2103029,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2103031,UEB2103032,UEB2103029,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX MENGNIU UHT MILK (POST BORDER) COA XW92202044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX MENGNIU UHT MILK (POST BORDER) COA XW92202044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ11010766\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ11010766\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT21100378\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT21100378\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT21100037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT21100037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT21090027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT21090027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT21100058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT21100058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT21100058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT21100058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12111016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12111016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPPLEMEN) COA TL02111883\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPPLEMEN) COA TL02111883\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02109791\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02109791\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB21050065\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB21050065\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21110243\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21110243\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21110243\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21110243\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ11113684\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ11113684\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT21100151\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT21100151\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT21100151\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT21100151\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT21070022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT21070022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92202076\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"V003400 (BHN BAKU MAKANAN) COA XW92202076\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92202079\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92202079\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ11113356\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ11113356\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92202077\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"V003400 (BHN BAKU MAKANAN) COA XW92202077\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX MENGNIU UHT MILK (POST BORDER) COA XW92202044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX MENGNIU UHT MILK (POST BORDER) COA XW92202044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX MENGNIU UHT MILK (BHN BAKU MAKANAN) COA XW92202294\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX MENGNIU UHT MILK (BHN BAKU MAKANAN) COA XW92202294\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050410,0321050411,0321050412,0321050414,0321050604,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050410,0321050411,0321050412,0321050414,0321050604,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02109104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02109104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA QZ11211025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA QZ11211025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00734475\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"AMPHISOL K (BHN BAKU KOSMETIK) COA VE00734475\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02106017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE02106017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02106017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE02106017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0038741\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0038741\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0921020021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX (BHN BAKU KOSMETIK) COA 0921020021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02109104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02109104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02103039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02103039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050606,0321050607,0321050608,0321050609,0321050610,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050606,0321050607,0321050608,0321050609,0321050610,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0921020021,0921020022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX (BHN BAKU KOSMETIK) COA 0921020021,0921020022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210031,0708210049,0708210050,0708210051,0708210052,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210031,0708210049,0708210050,0708210051,0708210052,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21110383\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21110383\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180LB6003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180LB6003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180LB4002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180LB4002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FENTACARE 2231 EF 25KG PAPER BOX (BHN BAKU KOSMETIK )COA ZH22B1205,ZH22B2408\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34029019\", \"uraian\": \"FENTACARE 2231 EF 25KG PAPER BOX (BHN BAKU KOSMETIK )COA ZH22B1205,ZH22B2408\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNTHEANINE (L-THEANINE) (BHN BAKU MAKANAN) COA 111082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SUNTHEANINE (L-THEANINE) (BHN BAKU MAKANAN) COA 111082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180LBS00A\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180LBS00A\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180LBR00C\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180LBR00C\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRASIL CM5 L (BHN BAKU KOSMETIK) COA 2208WKQA15\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29319049\", \"uraian\": \"MIRASIL CM5 L (BHN BAKU KOSMETIK) COA 2208WKQA15\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE ACETATE ANHYDROUS MICRONISED PH.EUR.USP (BHN BAKU OBAT) COA 2104333520\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE ACETATE ANHYDROUS MICRONISED PH.EUR.USP (BHN BAKU OBAT) COA 2104333520\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-0150222,S-A-0160222,S-A-0190222\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334910\", \"uraian\": \"DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-0150222,S-A-0160222,S-A-0190222\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA S7227\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29225090\", \"uraian\": \"TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA S7227\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS220101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS220101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS220202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS220202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK) COA EG138-210901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK) COA EG138-210901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (SB) (BHN BAKU KOSMETIK) COA ROSD220101-BIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (SB) (BHN BAKU KOSMETIK) COA ROSD220101-BIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM220101-PGH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM220101-PGH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RICE MILK AQUEOUS EXTRACT (SB) (BHN BAKU KOSMETIK) COA ORSL210101-AQ\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"RICE MILK AQUEOUS EXTRACT (SB) (BHN BAKU KOSMETIK) COA ORSL210101-AQ\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAPAIN POWDER (BHN BAKU KOSMETIK) COA PAP220101-GC2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PAPAIN POWDER (BHN BAKU KOSMETIK) COA PAP220101-GC2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACTIPONE (R) GINGER JUICE (ORGANIC) GW (BHN BAKU KOSMETIK) COA 10300017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"ACTIPONE (R) GINGER JUICE (ORGANIC) GW (BHN BAKU KOSMETIK) COA 10300017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) MANGO B (BHN BAKU KOSMETIK) COA 10300039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"EXTRAPONE (R) MANGO B (BHN BAKU KOSMETIK) COA 10300039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACTIPONE (R) WHITE TEA GW (BHN BAKU KOSMETIK) COA 10300049\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"ACTIPONE (R) WHITE TEA GW (BHN BAKU KOSMETIK) COA 10300049\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 230 (BHN BAKU OBAT) COA L101875221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 230 (BHN BAKU OBAT) COA L101875221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2417191\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2417191\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1229742\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1229742\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0343138\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0343138\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1046607\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1046607\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0265643\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0265643\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0300725\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0300725\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1071038\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1071038\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1071038\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1071038\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP01322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP01322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP04222,MTP03222\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP04222,MTP03222\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP04222,MTP03222, SAMPLE....\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP04222,MTP03222, SAMPLE....\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM FEREDETATE, POWDER, BP2021 (BHN BAKU OBAT) COA 3111933\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"SODIUM FEREDETATE, POWDER, BP2021 (BHN BAKU OBAT) COA 3111933\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OMEPRAZOLE SODIUM STERILE (BAHAN BAKU OBAT) COA SI/OPZ/00090222,00100222,00110222,00120222\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"OMEPRAZOLE SODIUM STERILE (BAHAN BAKU OBAT) COA SI/OPZ/00090222,00100222,00110222,00120222\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0147800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0147800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYMARIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0131900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SILYMARIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0131900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 21S0317200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 21S0317200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 21S0279100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 21S0279100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP22013208,XP22013209,XP22013210,XP22013211\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP22013208,XP22013209,XP22013210,XP22013211\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH655876\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH655876\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH655877\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH655877\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH655913\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH655913\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH655878\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH655878\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH655328\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH655328\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH656174\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH656174\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH655910\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH655910\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH656509\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH656509\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH655899\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH655899\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH655908\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH655908\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY TF WHITE (BHN BAKU PEWARNA TABLET) COA SH656377\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY TF WHITE (BHN BAKU PEWARNA TABLET) COA SH656377\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP05122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP05122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 27/50 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP06122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 27/50 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP06122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY ORANGE (BHN BAKU PEWARNA TABLET) COA GA703499\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY ORANGE (BHN BAKU PEWARNA TABLET) COA GA703499\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY SGR TRANSLUCENT (BHN BAKU PEWARNA TABLET) COA GA703500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY SGR TRANSLUCENT (BHN BAKU PEWARNA TABLET) COA GA703500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY SGR CLEAR (BHN BAKU PEWARNA TABLET) COA GA703722\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY SGR CLEAR (BHN BAKU PEWARNA TABLET) COA GA703722\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY SGR RED (BHN BAKU PEWARNA TABLET) COA GA703502\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY SGR RED (BHN BAKU PEWARNA TABLET) COA GA703502\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY SGR RED (BHN BAKU PEWARNA TABLET) COA GA704687\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY SGR RED (BHN BAKU PEWARNA TABLET) COA GA704687\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SKINECTURA TM (BHN BAKU KOSMETIK) COA 220222\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SKINECTURA TM (BHN BAKU KOSMETIK) COA 220222\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OILESS CITY TM (BHN BAKU KOSMETIK) COA 211115\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"OILESS CITY TM (BHN BAKU KOSMETIK) COA 211115\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OILESS CITY TM (BHN BAKU KOSMETIK) COA 211115\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"OILESS CITY TM (BHN BAKU KOSMETIK) COA 211115\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELAFRESH TM 96 (BHN BAKU KOSMETIK) COA 220201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061900\", \"uraian\": \"MELAFRESH TM 96 (BHN BAKU KOSMETIK) COA 220201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OILESS CITY TM (BHN BAKU KOSMETIK) COA 211115\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"OILESS CITY TM (BHN BAKU KOSMETIK) COA 211115\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 211014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 211014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB22020312\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB22020312\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB22020312\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB22020312\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB21080247\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB21080247\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NORIT SX SUPER E 153 (BHN BAKU KOSMETIK) COA 5195734\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38021010\", \"uraian\": \"NORIT SX SUPER E 153 (BHN BAKU KOSMETIK) COA 5195734\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02201616\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02201616\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) COA 203110\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-56A (18KG) (BHN BAKU KOSMETIK) COA 203110\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) COA 202269\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (16KG) (BHN BAKU KOSMETIK) COA 202269\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-210 (16KG) (BHN BAKU KOSMETIK) COA 109111\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSG-210 (16KG) (BHN BAKU KOSMETIK) COA 109111\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC SODIUM ASCORBATE REGULAR (BHN BAKU MAKANAN) COA HPN2202018,HPN2202048,HPN2202076,HPN...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC SODIUM ASCORBATE REGULAR (BHN BAKU MAKANAN) COA HPN2202018,HPN2202048,HPN2202076,HPN...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02201001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02201001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02201001,UE02201002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02201001,UE02201002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22010039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22010039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU MAKANAN) COA UT21110215 S/D UT21110218\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU MAKANAN) COA UT21110215 S/D UT21110218\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPPLEMEN) COA UT21100062\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPPLEMEN) COA UT21100062\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT21120058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT21120058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 2AX2203012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 2AX2203012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT21110016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT21110016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02201460\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02201460\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02201001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02201001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT21100013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT21100013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT22011138,UT22011140,UT22011141,..\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT22011138,UT22011140,UT22011141,..\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II CLEAR (BHN BAKU PEWARNA TABLET) COA SH655212\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II CLEAR (BHN BAKU PEWARNA TABLET) COA SH655212\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656171\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656171\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656163\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656163\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656165\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656165\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656167\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656167\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656168\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656168\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656166\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656166\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656169\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656169\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656170\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656170\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE PURPLE (BHN BAKU PEWARNA TABLET) COA SH656173\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE PURPLE (BHN BAKU PEWARNA TABLET) COA SH656173\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH655883\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH655883\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH656174\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH656174\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH655908\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH655908\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH656175\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH656175\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH656176\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH656176\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH656177\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH656177\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BLACK (BHN BAKU PEWARNA TABLET) COA SH656178\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BLACK (BHN BAKU PEWARNA TABLET) COA SH656178\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH656181\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH656181\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II PURPLE (BHN BAKU PEWARNA TABLET) COA SH656179\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II PURPLE (BHN BAKU PEWARNA TABLET) COA SH656179\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/03/140322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123100\", \"uraian\": \"CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/03/140322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAFFEINE BP/EP/USP (BHN BAKU OBAT) COA 2203314,2203322 S/D 2203325,2203331,2203332,2203341\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29393000\", \"uraian\": \"CAFFEINE BP/EP/USP (BHN BAKU OBAT) COA 2203314,2203322 S/D 2203325,2203331,2203332,2203341\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE SOD SUC FOR INJ (LYOPHILISED STERILE BULK) (BHN BAKU OBAT) COA MNS0222003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE SOD SUC FOR INJ (LYOPHILISED STERILE BULK) (BHN BAKU OBAT) COA MNS0222003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE SOD SUC FOR INJ (LYOPHILISED STERILE BULK) (BHN BAKU OBAT) COA MNS0222003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE SOD SUC FOR INJ (LYOPHILISED STERILE BULK) (BHN BAKU OBAT) COA MNS0222003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE SOD SUC FOR INJ (LYOPHILISED STERILE BULK) (BHN BAKU OBAT) COA MNS0222003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE SOD SUC FOR INJ (LYOPHILISED STERILE BULK) (BHN BAKU OBAT) COA MNS0222003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE SOD SUC FOR INJ (LYOPHILISED STERILE BULK) (BHN BAKU OBAT) COA MNS0222003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE SOD SUC FOR INJ (LYOPHILISED STERILE BULK) (BHN BAKU OBAT) COA MNS0222003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE SOD SUC FOR INJ (LYOPHILISED STERILE BULK) (BHN BAKU OBAT) COA MNS0222003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE SOD SUC FOR INJ (LYOPHILISED STERILE BULK) (BHN BAKU OBAT) COA MNS0222003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2011820\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2011820\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2011820\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2011820\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPEX (R) BASSOL C VEGETABLE OIL (BHN BAKU KOSMETIK) COA 0002477552\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15162049\", \"uraian\": \"LIPEX (R) BASSOL C VEGETABLE OIL (BHN BAKU KOSMETIK) COA 0002477552\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-051711\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-051711\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-031691\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-031691\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-010322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-010322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSFAC-011791\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSFAC-011791\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-022791\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-022791\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ROSEMARY EXTRACT (BHN BAKU KOSMETIK) COA RSL-031211\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND ROSEMARY EXTRACT (BHN BAKU KOSMETIK) COA RSL-031211\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-061911,010722,0022322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-061911,010722,0022322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTABIO AR10 (ASTAXANTHIN OIL 10PCT) (BHN BAKU OBAT) COA 2108041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"ASTABIO AR10 (ASTAXANTHIN OIL 10PCT) (BHN BAKU OBAT) COA 2108041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 020221,170821,140921\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25070000\", \"uraian\": \"KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 020221,170821,140921\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M535438,M535439,M535440,M535442,M535443,M535448\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M535438,M535439,M535440,M535442,M535443,M535448\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340361,B340362,B340363\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX COMPACTED (BHN BAKU OBAT) COA B340361,B340362,B340363\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334804,B334805,B334806\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX POWDER (BHN BAKU OBAT) COA B334804,B334805,B334806\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340356,B340357,B340358\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX COMPACTED (BHN BAKU OBAT) COA B340356,B340357,B340358\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH656330\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH656330\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH656717\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH656717\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785019821N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785019821N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRO-LIPO TM NEO (BHN BAKU KOSMETIK) COA 2131002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PRO-LIPO TM NEO (BHN BAKU KOSMETIK) COA 2131002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSALITY TM (BHN BAKU KOSMETIK) COA 2110201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROSALITY TM (BHN BAKU KOSMETIK) COA 2110201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785019821N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785019821N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GREYVERSE TM (BHN BAKU KOSMETIK) COA 833011021N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"GREYVERSE TM (BHN BAKU KOSMETIK) COA 833011021N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELANOSTATINE TM 5 BG (50PPM) (BHN BAKU KOSMETIK) COA 213801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MELANOSTATINE TM 5 BG (50PPM) (BHN BAKU KOSMETIK) COA 213801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 2103114\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 2103114\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019729N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019729N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019447N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019447N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 212000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CHRONOLINE TM (BHN BAKU KOSMETIK) COA 212000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 213799\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CHRONOLINE TM (BHN BAKU KOSMETIK) COA 213799\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2125201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) COA 2125201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019761M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019761M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829019674N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"B-WHITE TM (BHN BAKU KOSMETIK) COA 829019674N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829019674N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"B-WHITE TM (BHN BAKU KOSMETIK) COA 829019674N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019447N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019447N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 213799\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CHRONOLINE TM (BHN BAKU KOSMETIK) COA 213799\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785019821N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785019821N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GREYVERSE TM (BHN BAKU KOSMETIK) COA 833011021N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"GREYVERSE TM (BHN BAKU KOSMETIK) COA 833011021N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019761M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019761M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILIGEL TM (BHN BAKU KOSMETIK) COA 2134602\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILIGEL TM (BHN BAKU KOSMETIK) COA 2134602\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799039730M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799039730M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785019821N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785019821N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2125203\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) COA 2125203\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019761M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019761M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MINIPORYL TM (BHN BAKU KOSMETIK) COA 832019764M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MINIPORYL TM (BHN BAKU KOSMETIK) COA 832019764M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113862\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113862\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113862\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113862\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT MIN MIX IMS FB APAC STDP IMM (BHN BAKU MAKANAN) COA XW92202040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VIT MIN MIX IMS FB APAC STDP IMM (BHN BAKU MAKANAN) COA XW92202040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT21100378,UT21110397\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT21100378,UT21110397\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 1PCT CWS/M (POST BORDER) COA UT21100029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041900\", \"uraian\": \"B-CAROTENE 1PCT CWS/M (POST BORDER) COA UT21100029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000200424\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000200424\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ11010766,UQ20110508\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ11010766,UQ20110508\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ11212414,UQ10312088,UQ10212050\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ11212414,UQ10312088,UQ10212050\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB21060056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB21060056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02102011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02102011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT21120005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT21120005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060075,0521060071\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060075,0521060071\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT21120005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT21120005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPPLEMEN) COA UQ11113361\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPPLEMEN) COA UQ11113361\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2105052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2105052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060071\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060071\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT21070022,UT21070023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT21070022,UT21070023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ11212414\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ11212414\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ11113356\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ11113356\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12111039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12111039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11211026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11211026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ11017014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ11017014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPPLEMEN) COA UQ11209528\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN TABLET GRADE (BHN BAKU SUPPLEMEN) COA UQ11209528\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GENIVIDA(TM) TG (BHN BAKU SUPPLEMEN) COA UT21100002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329990\", \"uraian\": \"GENIVIDA(TM) TG (BHN BAKU SUPPLEMEN) COA UT21100002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT FS (BHN BAKU SUPPLEMEN) COA UE02110004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"REDIVIVO (R) (LYCOPENE) 10PCT FS (BHN BAKU SUPPLEMEN) COA UE02110004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0061802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0061802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0061807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0061807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HA01908,HA02004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34024990\", \"uraian\": \"MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HA01908,HA02004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 21290088\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 21290088\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACETAMINOPHEN (PARACETAMOL) (BHN BAKU OBAT) COA 202203010A,202203011A\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"ACETAMINOPHEN (PARACETAMOL) (BHN BAKU OBAT) COA 202203010A,202203011A\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CROPOVIDONE XL (BHN BAKU OBAT) COA PP220304XL\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"CROPOVIDONE XL (BHN BAKU OBAT) COA PP220304XL\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POVIDONE K-30 (BHN BAKU OBAT) COA PK30-220222F11\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"POVIDONE K-30 (BHN BAKU OBAT) COA PK30-220222F11\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACETAMINOPHEN (PARACETAMOL) (BHN BAKU OBAT) COA 202203011A,202203012A,202203013A\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"ACETAMINOPHEN (PARACETAMOL) (BHN BAKU OBAT) COA 202203011A,202203012A,202203013A\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL220318,MCCPOL220321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29094900\", \"uraian\": \"MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL220318,MCCPOL220321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PALMEROL 1698 CETYL ALCOHOL/MB,PASTILE (BHN BAKU KOSMETIK) COA 1H0042A\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29051700\", \"uraian\": \"PALMEROL 1698 CETYL ALCOHOL/MB,PASTILE (BHN BAKU KOSMETIK) COA 1H0042A\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102169014,102169017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102169014,102169017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102169017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102169017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201529,122201530\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201529,122201530\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GLICLAZIDE (BHN BAKU OBAT) COA 2240000046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"GLICLAZIDE (BHN BAKU OBAT) COA 2240000046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M598201,M598202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M598201,M598202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PALONOSETRON HCL (BHN BAKU OBAT) COA A100200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29337900\", \"uraian\": \"PALONOSETRON HCL (BHN BAKU OBAT) COA A100200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS GLUCONATE, FINE GRAN., ACC. TO PT MI QUALITY (BHN BAKU SUPLEMEN) COA 3107780\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"FERROUS GLUCONATE, FINE GRAN., ACC. TO PT MI QUALITY (BHN BAKU SUPLEMEN) COA 3107780\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2103681184\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2103681184\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512148\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47069200\", \"uraian\": \"SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512148\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512148\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47069200\", \"uraian\": \"SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512148\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID REGULAR (BHN BAKU MAKANAN) COA HPB2202015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID REGULAR (BHN BAKU MAKANAN) COA HPB2202015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GALAXY 610 EHS MB (ETHYLENE GLYCOL DISTEARATE) (BHN BAKU KOSMETIK) COA 748872\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34049090\", \"uraian\": \"GALAXY 610 EHS MB (ETHYLENE GLYCOL DISTEARATE) (BHN BAKU KOSMETIK) COA 748872\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 17022022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25081000\", \"uraian\": \"BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 17022022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 21022022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25081000\", \"uraian\": \"BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 21022022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2510122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2510122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETAMETHASONE VALERATE USP 43 (BHN BAKU OBAT) COA APL/BV/01021/A-22\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"BETAMETHASONE VALERATE USP 43 (BHN BAKU OBAT) COA APL/BV/01021/A-22\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-001-Z\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-001-Z\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROCATEROL HCL HEMIHYDRATE MICRONIZED (BHN BAKU OBAT) COA 8601219M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29337900\", \"uraian\": \"PROCATEROL HCL HEMIHYDRATE MICRONIZED (BHN BAKU OBAT) COA 8601219M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COPPER SULFATE, POWDER, PH.EUR.10.ED (BHN BAKU SUPLEMEN) COA 3104245-01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332500\", \"uraian\": \"COPPER SULFATE, POWDER, PH.EUR.10.ED (BHN BAKU SUPLEMEN) COA 3104245-01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/03/050322,ASG/03/050322-1,ASG/03/060322-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/03/050322,ASG/03/050322-1,ASG/03/060322-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/03/110322,ACMC/03/120322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123100\", \"uraian\": \"CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/03/110322,ACMC/03/120322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE BP (BHN BAKU OBAT) COA ASGP/03/140322,ASGP/03/150322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE BP (BHN BAKU OBAT) COA ASGP/03/140322,ASGP/03/150322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM CHLORIDE 6-HYDRATE, CRYST. (BHN BAKU KOSMETIK) COA 3105684\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28273100\", \"uraian\": \"MAGNESIUM CHLORIDE 6-HYDRATE, CRYST. (BHN BAKU KOSMETIK) COA 3105684\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-220201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-220201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HIBISCUS ORGANIC OILY EXTRACT (SUNFLOWER) (BHN BAKU KOSMETIK) COA HIST210101-HBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HIBISCUS ORGANIC OILY EXTRACT (SUNFLOWER) (BHN BAKU KOSMETIK) COA HIST210101-HBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSE OILY EXTRACT (BHN BAKU KOSMETIK) COA ROS210904-H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROSE OILY EXTRACT (BHN BAKU KOSMETIK) COA ROS210904-H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-220201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-220201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) COA OLVH2203R1-ENBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) COA OLVH2203R1-ENBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SEABUCKTHRON HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HIR210101-B\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SEABUCKTHRON HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HIR210101-B\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPSULAC (R) 60 (BHN BAKU OBAT) COA L100410322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"CAPSULAC (R) 60 (BHN BAKU OBAT) COA L100410322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D011L4SL02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D011L4SL02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180L7R001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180L7R001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180L96001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180L96001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180L3B021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180L3B021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102123023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102123023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102102056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102102056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102123023, SAMPLE NO COMMERCIAL..\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102123023, SAMPLE NO COMMERCIAL..\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102123023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102123023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM AL HYD GEL LV13, USP (BHN BAKU OBAT) COA 102113155\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"BARCROFT TM AL HYD GEL LV13, USP (BHN BAKU OBAT) COA 102113155\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102123023, SAMPLE NO COMMERCIAL..\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102123023, SAMPLE NO COMMERCIAL..\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM AL HYD GEL LV13, USP (BHN BAKU OBAT) COA 102113155, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"BARCROFT TM AL HYD GEL LV13, USP (BHN BAKU OBAT) COA 102113155, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M535460,M535469,M535477,M535481,M535482,M535483\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M535460,M535469,M535477,M535481,M535482,M535483\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 22S0056800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 22S0056800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYMARIN ETHANOLIC/HF (BHN BAKU SUPLEMEN) COA 21S0222804\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SILYMARIN ETHANOLIC/HF (BHN BAKU SUPLEMEN) COA 21S0222804\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 INF OIL (BHN BAKU SUPPLEMEN) COA TS00019152\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 INF OIL (BHN BAKU SUPPLEMEN) COA TS00019152\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201530,122201531\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201530,122201531\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2510122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2510122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB191121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB191121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB240122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB240122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B241221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B241221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LG090122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LG090122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACTIPONE (R) CAMU CAMU ET (BHN BAKU KOSMETIK) COA 10300028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"ACTIPONE (R) CAMU CAMU ET (BHN BAKU KOSMETIK) COA 10300028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG220218,MCVG220303\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG220218,MCVG220303\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102169017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102169017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET) COA DT727767\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPALUX RED (BHN BAKU PEWARNA TABLET) COA DT727767\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NG 5 PCT-1,2 PROPYLENGLYCOLE 95% (BAHAN BAKU OBAT) COA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"NG 5 PCT-1,2 PROPYLENGLYCOLE 95% (BAHAN BAKU OBAT) COA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 157743\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15159011\", \"uraian\": \"AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 157743\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02106017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE02106017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02106017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE02106017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02110124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02110124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060071\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060071\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02106807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02106807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210059,0708210060,0708210061,0708210062,0708210074\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210059,0708210060,0708210061,0708210062,0708210074\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS3821121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS3821121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000202398\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000202398\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92203274\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92203274\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MINERAL PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92203318,XW92203319,XW92203320\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"MINERAL PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92203318,XW92203319,XW92203320\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-010322,BAG-023132\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-010322,BAG-023132\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-040732\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-040732\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-032721\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-032721\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 012022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28331900\", \"uraian\": \"HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 012022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND TEA TREE EXTRACT (BHN BAKU KOSMETIK) COA MASL-031381\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND TEA TREE EXTRACT (BHN BAKU KOSMETIK) COA MASL-031381\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-022322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-022322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-022432\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-022432\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND GREEN TEA SEED OIL (BHN BAKU KOSMETIK) COA CSSO-022701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND GREEN TEA SEED OIL (BHN BAKU KOSMETIK) COA CSSO-022701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IONOL (R) CP (BHN BAKU KOSMETIK) COA 01146120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29071900\", \"uraian\": \"IONOL (R) CP (BHN BAKU KOSMETIK) COA 01146120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NYSTATIN POWDER ROW GRADE (BHN BAKU OBAT) COA C114613,C114619\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NYSTATIN POWDER ROW GRADE (BHN BAKU OBAT) COA C114613,C114619\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NYSTATIN MICRONIZED (BHN BAKU OBAT) COA C131921\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NYSTATIN MICRONIZED (BHN BAKU OBAT) COA C131921\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 01720122,03730222,06940322,06950322,06960322,06970322,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 01720122,03730222,06940322,06950322,06960322,06970322,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201528,122201529\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201528,122201529\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROPYPHENAZONE (CEP) (BHN BAKU OBAT UTK PEWARNA TABLET) COA 2111209\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331100\", \"uraian\": \"PROPYPHENAZONE (CEP) (BHN BAKU OBAT UTK PEWARNA TABLET) COA 2111209\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GENIVIDA(TM) TG (POST BORDER) COA UT21100002,UT21100003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329900\", \"uraian\": \"GENIVIDA(TM) TG (POST BORDER) COA UT21100002,UT21100003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 1PCT SD (POST BORDER) COA UT22010002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 1PCT SD (POST BORDER) COA UT22010002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FRUITFLOW II SD (POST BORDER) COA 21T0102200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"FRUITFLOW II SD (POST BORDER) COA 21T0102200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT. A PALM. 1.0 M + VIT. D3 100'000 (BHN BAKU MAKANAN) COA UT22020137\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VIT. A PALM. 1.0 M + VIT. D3 100'000 (BHN BAKU MAKANAN) COA UT22020137\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22020003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22020003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ20217001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ20217001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02202875\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02202875\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA023222,ROA023222\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA023222,ROA023222\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMITOSE R (BHN BAKU KOSMETIK) COA GAH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AMITOSE R (BHN BAKU KOSMETIK) COA GAH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SJG\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SJG\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SJG,GCH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SJG,GCH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHARMACEUTICAL CASTOR OIL E.P (BHN BAKU KOSMETIK) COA 0000041663\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15152919\", \"uraian\": \"PHARMACEUTICAL CASTOR OIL E.P (BHN BAKU KOSMETIK) COA 0000041663\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 08-05-21,06-03-21\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25070000\", \"uraian\": \"KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 08-05-21,06-03-21\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 14-09-21\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25070000\", \"uraian\": \"KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 14-09-21\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 08-05-21,14-09-21\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25070000\", \"uraian\": \"KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 08-05-21,14-09-21\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21060148\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21060148\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 C (POST BORDER) COA XW92203351,XW92203352\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 C (POST BORDER) COA XW92203351,XW92203352\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 C (POST BORDER) COA XW92203352,XW92203353\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 C (POST BORDER) COA XW92203352,XW92203353\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ20210550\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ20210550\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02106017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02106017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02106017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02106017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02106017,UE02106021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02106017,UE02106021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02106021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02106021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02106021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02106021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (POST BORDER) COA UT22010002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (POST BORDER) COA UT22010002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (POST BORDER) COA UT22010002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (POST BORDER) COA UT22010002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VP DN03 (POST BORDER) COA XW92202353\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VP DN03 (POST BORDER) COA XW92202353\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/03/010422\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123100\", \"uraian\": \"CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/03/010422\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 220149\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 220149\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNE BUSTERS (BHN BAKU KOSMETIK) COA 220394\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNE BUSTERS (BHN BAKU KOSMETIK) COA 220394\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 220149\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 220149\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 220049\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 220049\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 220070\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"MANDARINCLEAR (BHN BAKU KOSMETIK) COA 220070\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CINDERELLACARE (BHN BAKU KOSMETIK) COA 212652\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"CINDERELLACARE (BHN BAKU KOSMETIK) COA 212652\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 220049\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 220049\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 220070\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"MANDARINCLEAR (BHN BAKU KOSMETIK) COA 220070\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMFREY LIQUID B (BHN BAKU KOSMETIK) COA 212834\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"COMFREY LIQUID B (BHN BAKU KOSMETIK) COA 212834\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 212686\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 212686\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KOMENUKA LIQUID BK (BHN BAKU KOSMETIK) COA 212233\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"KOMENUKA LIQUID BK (BHN BAKU KOSMETIK) COA 212233\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLURESSENCE LEMON 5001 BA (BHN BAKU OBAT) COA 795507\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"PLURESSENCE LEMON 5001 BA (BHN BAKU OBAT) COA 795507\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GOTU KOLA EXTRACT (BHN BAKU KOSMETIK) COA 22010386\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"GOTU KOLA EXTRACT (BHN BAKU KOSMETIK) COA 22010386\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000078876\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000078876\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 1806763070\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 1806763070\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 1806763070\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 1806763070\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 14-09-21\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25070000\", \"uraian\": \"KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 14-09-21\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 080321/007122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 080321/007122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) SEA EXTRACTS N (BHN BAKU KOSMETIK) COA 10300034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"EXTRAPONE (R) SEA EXTRACTS N (BHN BAKU KOSMETIK) COA 10300034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) GINSENG (BHN BAKU KOSMETIK) COA 10300046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021940\", \"uraian\": \"EXTRAPONE (R) GINSENG (BHN BAKU KOSMETIK) COA 10300046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWDER FORM CATCOL C135(L) GRADE(B.BAKU KOSMETIK) COA 287/22\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GUAR GUM TREATED AND PULVERISED IN POWDER FORM CATCOL C135(L) GRADE(B.BAKU KOSMETIK) COA 287/22\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM STEARATE POWDER, PH.EUR.10.ED. (BHN BAKU SUPPLEMEN) COA 3097553\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CALCIUM STEARATE POWDER, PH.EUR.10.ED. (BHN BAKU SUPPLEMEN) COA 3097553\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRISODIUM CITRATE ANHYDROUS CRYST. POWDER, USP 43 (BHN BAKU SUPPLEMEN) COA 3106312\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181590\", \"uraian\": \"TRISODIUM CITRATE ANHYDROUS CRYST. POWDER, USP 43 (BHN BAKU SUPPLEMEN) COA 3106312\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM SELENITE IN CARRIER (BHN BAKU SUPPLEMEN) COA 3106230\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28429010\", \"uraian\": \"SODIUM SELENITE IN CARRIER (BHN BAKU SUPPLEMEN) COA 3106230\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM REGULAR GRADE(BHN BAKU OBAT) COA 21121935,2203294,2203297,2203300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331900\", \"uraian\": \"METAMIZOLE SODIUM REGULAR GRADE(BHN BAKU OBAT) COA 21121935,2203294,2203297,2203300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COSME-PHYTAMI LOTUS FL 5KG(BAHAN BAKU KOSMETIK) COA AM093819\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"COSME-PHYTAMI LOTUS FL 5KG(BAHAN BAKU KOSMETIK) COA AM093819\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052201,G05052209\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47063000\", \"uraian\": \"SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052201,G05052209\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 2104303177\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 2104303177\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA/PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 20S0317200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"CENTELLA ASIATICA/PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 20S0317200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 21S0135500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 21S0135500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SERENOA REPENS PURIFIED EXT (BHN BAKU SUPLEMEN) COA 21S0178200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SERENOA REPENS PURIFIED EXT (BHN BAKU SUPLEMEN) COA 21S0178200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 21S0135500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 21S0135500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRTOGENOL (R) (BHN BAKU SUPLEMEN) COA 21S0272800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"MIRTOGENOL (R) (BHN BAKU SUPLEMEN) COA 21S0272800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JAGUAR HP 105 SGI (BHN BAKU KOSMETIK) COA H2110217D\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"JAGUAR HP 105 SGI (BHN BAKU KOSMETIK) COA H2110217D\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 211115\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"OILESS'CITY TM (BHN BAKU KOSMETIK) COA 211115\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 211014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 211014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 210918\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 210918\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 211115\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"OILESS'CITY TM (BHN BAKU KOSMETIK) COA 211115\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 220202,220304\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"OILESS'CITY TM (BHN BAKU KOSMETIK) COA 220202,220304\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 211014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 211014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WILDPLUM HARVEST TM AF (BHN BAKU KOSMETIK) COA 211018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"WILDPLUM HARVEST TM AF (BHN BAKU KOSMETIK) COA 211018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 220211\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 220211\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 211014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 211014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02111128\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02111128\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT21121131,UT21121132,UT21121133\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT21121131,UT21121132,UT21121133\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPPLEMEN) COA UQ10913303\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPPLEMEN) COA UQ10913303\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPPLEMEN) COA UQ10913303\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPPLEMEN) COA UQ10913303\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT21100054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT21100054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT21100054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT21100054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT21100038\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT21100038\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT21100054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT21100054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02111128\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02111128\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02111128\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02111128\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT22010006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT22010006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT22010006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT22010006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT22010004,UT22020066\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT22010004,UT22020066\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ10913303\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ10913303\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF21167003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF21167003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02106021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE02106021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02106021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE02106021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21110396\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21110396\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050616,0321050617,0321050620,0321050652\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050616,0321050617,0321050620,0321050652\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL ZX (BHN BAKU KOSMETIK) COA 191002012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL ZX (BHN BAKU KOSMETIK) COA 191002012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00735148,VE00735366\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"AMPHISOL K (BHN BAKU KOSMETIK) COA VE00735148,VE00735366\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000202399,0000202400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000202399,0000202400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT22011134\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT22011134\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA F00451UG\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA F00451UG\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AHCC-PROFESSIONAL-FG (BHN BAKUOBAT) COA 203FM01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069099\", \"uraian\": \"AHCC-PROFESSIONAL-FG (BHN BAKUOBAT) COA 203FM01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ACETATE ANHYDROUS (BHN BAKU SUPPLEMEN) COA 3099001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29152910\", \"uraian\": \"SODIUM ACETATE ANHYDROUS (BHN BAKU SUPPLEMEN) COA 3099001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) COA 7766047\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) COA 7766047\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M-31.0PCT (BHN BAKU OBAT) COA 102229001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MG HYD PASTE USP TYPE M-31.0PCT (BHN BAKU OBAT) COA 102229001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT KIWI CSB (BHN BAKU OBAT) COA 02/19GAAK\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT KIWI CSB (BHN BAKU OBAT) COA 02/19GAAK\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT KIWI ECH (BHN BAKU OBAT) COA 02/19GAAK, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT KIWI ECH (BHN BAKU OBAT) COA 02/19GAAK, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO BP (BHN BAKU OBAT) COA 187350\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"VEGETOL GRAPEFRUIT GR403 HYDRO BP (BHN BAKU OBAT) COA 187350\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRECIROL ATO 5 CAR (BHN BAKU OBAT) COA 188256\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"PRECIROL ATO 5 CAR (BHN BAKU OBAT) COA 188256\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LABRAFIL M 1944 CS BF (BHN BAKU OBAT) COA 189209\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LABRAFIL M 1944 CS BF (BHN BAKU OBAT) COA 189209\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELUCIRE 48/16 PELLETS CAR (BHN BAKU OBAT) COA 185000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELUCIRE 48/16 PELLETS CAR (BHN BAKU OBAT) COA 185000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRECIFAC 95-3 CAR (BHN BAKU OBAT) COA 186318\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"PRECIFAC 95-3 CAR (BHN BAKU OBAT) COA 186318\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRECIROL ATO 5 CAR (BHN BAKU OBAT) COA 188256\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"PRECIROL ATO 5 CAR (BHN BAKU OBAT) COA 188256\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD&C YELLOW #6/SUNSET YELLOW FCF AL 38PCT-42PCT(BHN BAKU PEWARNA TABLET) COA WP848268:BB2464\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"FD&C YELLOW #6/SUNSET YELLOW FCF AL 38PCT-42PCT(BHN BAKU PEWARNA TABLET) COA WP848268:BB2464\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D&C YELLOW #10 AL 15PCT - 20PCT... (BHN BAKU PEWARNA TABLET) COA WP853297:BB4378\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"D&C YELLOW #10 AL 15PCT - 20PCT... (BHN BAKU PEWARNA TABLET) COA WP853297:BB4378\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERYTHROSINE AL 38PCT-42PCT... (BHN BAKU PEWARNA TABLET) COA WP844565:1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"ERYTHROSINE AL 38PCT-42PCT... (BHN BAKU PEWARNA TABLET) COA WP844565:1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD&C RED #40/ALLURA RED AC AL 38PCT- 42PCT... (BHN BAKU PEWARNA TABLET) COA WP841245:BA8627\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"FD&C RED #40/ALLURA RED AC AL 38PCT- 42PCT... (BHN BAKU PEWARNA TABLET) COA WP841245:BA8627\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERYTHROSINE AL 38PCT-42PCT... (BHN BAKU PEWARNA TABLET) COA WP844564:1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"ERYTHROSINE AL 38PCT-42PCT... (BHN BAKU PEWARNA TABLET) COA WP844564:1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE UREA AGAR BASE BBL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2005602\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE UREA AGAR BASE BBL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2005602\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1279231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1279231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1201851,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1201851,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1243619\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1243619\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL E COIL H ANTISERUM H7 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0212196\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL E COIL H ANTISERUM H7 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0212196\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTISERUM FACTORS 4&5 GRP B (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0142756\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTISERUM FACTORS 4&5 GRP B (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0142756\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1175752\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1175752\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL E COLI O ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0094884\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL E COLI O ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0094884\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2004399\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2004399\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOBACILLLI MRS BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1264636\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOBACILLLI MRS BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1264636\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2033988,..\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2033988,..\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SORBITOL SPECIAL TM MDF 85 (POST BORDER) COA 122201598\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054400\", \"uraian\": \"SORBITOL SPECIAL TM MDF 85 (POST BORDER) COA 122201598\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 27/50 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP07722\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 27/50 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP07722\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02E048M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02E048M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1229930\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1229930\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 11108772\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 11108772\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1242774\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1242774\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HINTON AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1181403\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MUELLER HINTON AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1181403\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1111035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1111035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1159790\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1159790\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1312204\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1312204\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1221531,1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1221531,1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2011054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2011054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTLE LYSINE DECARBOXYLASE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1096987\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTLE LYSINE DECARBOXYLASE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1096987\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LOOPS INOCULATING 10/TUBE 1 MICROLITER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2125885\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"LOOPS INOCULATING 10/TUBE 1 MICROLITER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2125885\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1257929\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1257929\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1159463,2059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1159463,2059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1307340\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1307340\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE WL DIFFERENTIAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1188436\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE WL DIFFERENTIAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1188436\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2040220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2040220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0315100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0315100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2028749\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2028749\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2038179\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2038179\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2038654\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2038654\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1173666\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1173666\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0048007,2011820\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0048007,2011820\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1229880\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1229880\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1173733\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1173733\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0286569\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0286569\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2024545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2024545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0322946\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0322946\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1349644\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1349644\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA U/PENGEMBANGAN MIKROORGANISME)BATCH 2033988\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA U/PENGEMBANGAN MIKROORGANISME)BATCH 2033988\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1222962\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1222962\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2028035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2028035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2024545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2024545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1272026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1272026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1285606\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1285606\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1320580\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1320580\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1071063,.\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE STERILE RODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1071063,.\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1319484,1348587\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1319484,1348587\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1310563,.\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE STERILE RODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1310563,.\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1348749\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1348749\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1173666\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1173666\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2038183\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2038183\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE WHITE (BHN BAKU PEWARNA TABLET) COA WP854882\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPACODE WHITE (BHN BAKU PEWARNA TABLET) COA WP854882\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE GOLD (BHN BAKU PEWARNA TABLET) COA WP854940\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPACODE GOLD (BHN BAKU PEWARNA TABLET) COA WP854940\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYDROCORTISONE ACETATE EP/USP (BHN BAKU OBAT) COA NEHAC211104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"HYDROCORTISONE ACETATE EP/USP (BHN BAKU OBAT) COA NEHAC211104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP/USP (BHN BAKU OBAT) COA NED220303,NED220401,NED220305,NED220402,NED220411,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP/USP (BHN BAKU OBAT) COA NED220303,NED220401,NED220305,NED220402,NED220411,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK) COA 2203EF9011,2203EF9012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"L-ARGININE LO (BHN BAKU KOSMETIK) COA 2203EF9011,2203EF9012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHAMBUTOL (BHN BAKU OBAT) COA N2006634,N2009595 S/D N2009599,N2009675 S/D N2009679\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221910\", \"uraian\": \"ETHAMBUTOL (BHN BAKU OBAT) COA N2006634,N2009595 S/D N2009599,N2009675 S/D N2009679\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 2209970478\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 2209970478\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METRONIDAZOLE BENZOATE EP (BHN BAKU OBAT) COA MBO/12030146\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"METRONIDAZOLE BENZOATE EP (BHN BAKU OBAT) COA MBO/12030146\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYDROSOLUBLE LIVER EXTRACT POWDER HALAL (BHN BAKU OBAT) COA 270122FIP\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"HYDROSOLUBLE LIVER EXTRACT POWDER HALAL (BHN BAKU OBAT) COA 270122FIP\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC6D YRPN19...(ALAT KESEHATAN)COA 6D19100L0408\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30061010\", \"uraian\": \"STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC6D YRPN19...(ALAT KESEHATAN)COA 6D19100L0408\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC HI RHINO.(ALAT KESEHATAN) COA HR1938L0408\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30061010\", \"uraian\": \"STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC HI RHINO.(ALAT KESEHATAN) COA HR1938L0408\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC HI RHINO.. (ALAT KESEHATAN) COA HR1960L0408\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30061010\", \"uraian\": \"STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC HI RHINO.. (ALAT KESEHATAN) COA HR1960L0408\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW DC DUAL... (ALAT KESEHATAN) COA DA21110N0408\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30061010\", \"uraian\": \"STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW DC DUAL... (ALAT KESEHATAN) COA DA21110N0408\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50438\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061100\", \"uraian\": \"MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50438\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SERASENSE SF 2 (BAHAN BAKU KOSMETIK) COA SA20328116\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29319049\", \"uraian\": \"SERASENSE SF 2 (BAHAN BAKU KOSMETIK) COA SA20328116\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE AM PELLETS (BHN BAKU OBAT) COA 22E0409\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE AM PELLETS (BHN BAKU OBAT) COA 22E0409\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 21E4906\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 21E4906\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 21E5003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 21E5003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE BM PELLETS (BHN BAKU OBAT) COA 21E2708\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE BM PELLETS (BHN BAKU OBAT) COA 21E2708\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE BS2X PELLETS (BHN BAKU OBAT) COA 21E2906\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE BS2X PELLETS (BHN BAKU OBAT) COA 21E2906\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANSOPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA LP0222C005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"LANSOPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA LP0222C005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET) COA DT729243\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPALUX RED (BHN BAKU PEWARNA TABLET) COA DT729243\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE BLACK (BHN BAKU PEWARNA TABLET) COA DT729904\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPACODE BLACK (BHN BAKU PEWARNA TABLET) COA DT729904\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA JP517393\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA JP517393\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOSWELLIA SERRATA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 21T0118000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"BOSWELLIA SERRATA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 21T0118000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AZITHROMYCIN (BHN BAKU OBAT) COA 129-210925-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"AZITHROMYCIN (BHN BAKU OBAT) COA 129-210925-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETAMETHASONE VALERATE (BHN BAKU OBAT) COA X21-220302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"BETAMETHASONE VALERATE (BHN BAKU OBAT) COA X21-220302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOTAXIME SODIUM (BHN BAKU OBAT) COA 3042203044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOTAXIME SODIUM (BHN BAKU OBAT) COA 3042203044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334809,B334813\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX POWDER (BHN BAKU OBAT) COA B334809,B334813\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340366,B340367\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX COMPACTED (BHN BAKU OBAT) COA B340366,B340367\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334810,B334811,B334812\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX POWDER (BHN BAKU OBAT) COA B334810,B334811,B334812\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SOYA LECITHIN (BHN BAKU MAKANAN) COA TY2220103-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232011\", \"uraian\": \"SOYA LECITHIN (BHN BAKU MAKANAN) COA TY2220103-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1263533\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1263533\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1263533\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1263533\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1263533\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1263533\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1014859\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1014859\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASAMINO ACIDS EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1082049\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASAMINO ACIDS EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1082049\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE (MMW) (BHN BAKU KOSMETIK) COA CHP1220405\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND BIO-SODIUM HYALURONATE (MMW) (BHN BAKU KOSMETIK) COA CHP1220405\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-040732\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-040732\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 012022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 012022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-022322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-022322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DNACTIVE (DNA-NA) (BHN BAKU KOSMETIK) COA DNANA-21236\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349910\", \"uraian\": \"DNACTIVE (DNA-NA) (BHN BAKU KOSMETIK) COA DNANA-21236\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT22020012,UT22020013,UT22020020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT22020012,UT22020013,UT22020020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE02202001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"RONOXAN A (BHN BAKU MAKANAN) COA UE02202001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22020003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22020003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPPLEMEN) COA UT22020063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPPLEMEN) COA UT22020063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22020003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22020003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02201012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02201012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22020003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22020003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT22031160\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT22031160\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU SUPPLEMEN) COA UT22030042,UT22030043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU SUPPLEMEN) COA UT22030042,UT22030043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO(R) LUTEIN 20 PCT SAF (POST BORDER) COA UE02203001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO(R) LUTEIN 20 PCT SAF (POST BORDER) COA UE02203001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS PH (POST BORDER) COA UT21120003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS PH (POST BORDER) COA UT21120003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (POST BORDER) COA UT22020009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"BETATAB 20PCT S (POST BORDER) COA UT22020009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (POST BORDER) COA UT22010102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A ACETATE 1.5 MIU/G (POST BORDER) COA UT22010102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN546605\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN546605\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN546644\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN546644\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN546643\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN546643\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN546642\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN546642\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) (BHN BAKU OBAT) COA 4454086972\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"XANTHAN 80 (PHARMACEUTICAL GRADE) (BHN BAKU OBAT) COA 4454086972\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 22S0074500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 22S0074500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 22S0074500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 22S0074500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for C47-051 SUNCROMA TITANIUM DIOXIDE (BHN BAKU KOSMETIK) COA D0XT06\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32061110\", \"uraian\": \"C47-051 SUNCROMA TITANIUM DIOXIDE (BHN BAKU KOSMETIK) COA D0XT06\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ADSORB AFLA (BHN BAKU UNTUK PAKAN TERNAK) COA 262,263\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25081000\", \"uraian\": \"ADSORB AFLA (BHN BAKU UNTUK PAKAN TERNAK) COA 262,263\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040051, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040051, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL ZX (BHN BAKU KOSMETIK) COA 201008012, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL ZX (BHN BAKU KOSMETIK) COA 201008012, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 21B010900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 21B010900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0138900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0138900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0139000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0139000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0139100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0139100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 25022022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25081000\", \"uraian\": \"BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 25022022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SORBITOL SOLUTION 70 PCT CRYSTALLINE (BHN BAKU KOSMETIK) COA 2223P027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054400\", \"uraian\": \"SORBITOL SOLUTION 70 PCT CRYSTALLINE (BHN BAKU KOSMETIK) COA 2223P027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TEFOSE 63 BF (BHN BAKU SUPPLEMEN) COA 188933\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TEFOSE 63 BF (BHN BAKU SUPPLEMEN) COA 188933\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-TARTARIC ACID (BHN BAKU OBAT) COA RS01573\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181200\", \"uraian\": \"DL-TARTARIC ACID (BHN BAKU OBAT) COA RS01573\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-MALIC ACID (BHN BAKU OBAT) COA CS12061\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181900\", \"uraian\": \"L-MALIC ACID (BHN BAKU OBAT) COA CS12061\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for N-ACETYL-L-CYSTEINE (BHN BAKU OBAT) COA C103-202201837,202203833,202203834,202203835,202203836\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"N-ACETYL-L-CYSTEINE (BHN BAKU OBAT) COA C103-202201837,202203833,202203834,202203835,202203836\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA AG/03/080322,ASG/04/040422\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA AG/03/080322,ASG/04/040422\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/04/020422,030422,040422\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123100\", \"uraian\": \"CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/04/020422,030422,040422\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE BP (BHN BAKU OBAT) COA ASGP/03/240322,250322,230322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE BP (BHN BAKU OBAT) COA ASGP/03/240322,250322,230322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POTASSIUM GLYCEROPHOSPHATE SOLUTION (BHN BAKU SUPPLEMEN) COA 3115072\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29199000\", \"uraian\": \"POTASSIUM GLYCEROPHOSPHATE SOLUTION (BHN BAKU SUPPLEMEN) COA 3115072\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRASIL D-DML LV A2 (BHN BAKU KOSMETIK) COA 2214HK10XA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100090\", \"uraian\": \"MIRASIL D-DML LV A2 (BHN BAKU KOSMETIK) COA 2214HK10XA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRASIL CM5 L (BHN BAKU KOSMETIK) COA 2215WKQ415\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29319049\", \"uraian\": \"MIRASIL CM5 L (BHN BAKU KOSMETIK) COA 2215WKQ415\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000078604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000078604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000078605\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000078605\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H105 83 PCT (BHN BAKU KOSMETIK) COA 0000078606\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H105 83 PCT (BHN BAKU KOSMETIK) COA 0000078606\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) COA PH07130622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) COA PH07130622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000078459\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000078459\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000078460\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000078460\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000078461\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000078461\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H105 83 PCT (BHN BAKU KOSMETIK) COA 0000078462, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H105 83 PCT (BHN BAKU KOSMETIK) COA 0000078462, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H103 43 PCT (BHN BAKU KOSMETIK) COA 0000078463, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H103 43 PCT (BHN BAKU KOSMETIK) COA 0000078463, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H100 99 PCT (BHN BAKU KOSMETIK) COA 0000078464, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H100 99 PCT (BHN BAKU KOSMETIK) COA 0000078464, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H101 71 PCT (BHN BAKU KOSMETIK) COA 0000078465, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H101 71 PCT (BHN BAKU KOSMETIK) COA 0000078465, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H100 80 PCT (BHN BAKU KOSMETIK) COA 0000078466, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H100 80 PCT (BHN BAKU KOSMETIK) COA 0000078466, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID S 67 F (BHN BAKU SUPPLEMEN) COA 576200-2220039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232011\", \"uraian\": \"LIPOID S 67 F (BHN BAKU SUPPLEMEN) COA 576200-2220039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM (BHN OBAT TERNAK) COA 2204450\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331900\", \"uraian\": \"METAMIZOLE SODIUM (BHN OBAT TERNAK) COA 2204450\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 22100160\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29395900\", \"uraian\": \"DIMENHYDRINATE (BHN BAKU OBAT) COA 22100160\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIMOX POWDER (BHN BAKU OBAT) COA M485930,M485931\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"PURIMOX POWDER (BHN BAKU OBAT) COA M485930,M485931\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M535626 S/D M535631\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M535626 S/D M535631\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB21120254\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB21120254\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB22020313\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB22020313\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB22020313\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB22020313\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-220201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-220201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-210503-GS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-210503-GS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785019980N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785019980N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 702019449N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ABYSSINE 657 (BHN BAKU KOSMETIK) COA 702019449N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2125201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) COA 2125201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2133703\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) COA 2133703\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 702019449N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ABYSSINE 657 (BHN BAKU KOSMETIK) COA 702019449N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 2115314\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 2115314\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829019674N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"B-WHITE TM (BHN BAKU KOSMETIK) COA 829019674N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019763N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019763N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834011019N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834011019N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GREYVERSE TM (BHN BAKU KOSMETIK) COA 833011021N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"GREYVERSE TM (BHN BAKU KOSMETIK) COA 833011021N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019761M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019761M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019447N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019447N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019761M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019761M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029946N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029946N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JAGUAR C 162 CARDBOARD BOX 25 KG (BHN BAKU KOSMETIK) COA MJAC22011B\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"JAGUAR C 162 CARDBOARD BOX 25 KG (BHN BAKU KOSMETIK) COA MJAC22011B\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COPPER(II) GLUCONATE, FINE POWDER, USP 43 (BHN BAKU SUPPLEMEN) COA 3112564\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"COPPER(II) GLUCONATE, FINE POWDER, USP 43 (BHN BAKU SUPPLEMEN) COA 3112564\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINC OXIDE, POWDER, PH.EUR.10.ED. (BHN BAKU SUPPLEMEN) COA 3112821\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28170010\", \"uraian\": \"ZINC OXIDE, POWDER, PH.EUR.10.ED. (BHN BAKU SUPPLEMEN) COA 3112821\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-0450422\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334910\", \"uraian\": \"DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-0450422\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAFFEINE BP/EP/USP/CEP (BHN BAKU OBAT) COA 2203504,2203508 S/D 2203510,2203513,2204548 S/D 49\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29393000\", \"uraian\": \"CAFFEINE BP/EP/USP/CEP (BHN BAKU OBAT) COA 2203504,2203508 S/D 2203510,2203513,2204548 S/D 49\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAFFEINE BP/EP/USP/CEP (BHN BAKU OBAT) COA 2203326, 2204563\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29393000\", \"uraian\": \"CAFFEINE BP/EP/USP/CEP (BHN BAKU OBAT) COA 2203326, 2204563\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAFFEINE BP/EP/USP/CEP (BHN BAKU OBAT) COA 2204550,2204556,2204562\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29393000\", \"uraian\": \"CAFFEINE BP/EP/USP/CEP (BHN BAKU OBAT) COA 2204550,2204556,2204562\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACYCLOVIR MICRONIZED (BHN BAKU OBAT) COA 22100099\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"ACYCLOVIR MICRONIZED (BHN BAKU OBAT) COA 22100099\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPPLEMEN) COA TL02201494\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPPLEMEN) COA TL02201494\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ20116011,UQ20116015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ20116011,UQ20116015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22020041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22020041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU MAKANAN) COA UT22030220,UT22030221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU MAKANAN) COA UT22030220,UT22030221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22020040,UT22020041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22020040,UT22020041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPPLEMEN) COA UQ11209528\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN TABLET GRADE (BHN BAKU SUPPLEMEN) COA UQ11209528\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02201544\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02201544\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT22020060\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT22020060\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPPLEMEN) COA TL02201494\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPPLEMEN) COA TL02201494\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02201002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02201002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB150322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB150322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B020322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B020322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B020322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B020322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LG120422\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LG120422\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB150322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB150322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIAMI SCG(S) (BHN BAKU KOSMETIK) COA 22040855\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34023990\", \"uraian\": \"MIAMI SCG(S) (BHN BAKU KOSMETIK) COA 22040855\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TERGITOL 4 XLT4 SUPPLEMENT 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH SLCM0515\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TERGITOL 4 XLT4 SUPPLEMENT 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH SLCM0515\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2013578\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2013578\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA GDN\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) COA GDN\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA GCH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA GCH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA SKM\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROTESIL LH (BHN BAKU KOSMETIK) COA SKM\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTESIL KR-30(BHN BAKU KOSMETIK) COA GDC\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROTESIL KR-30(BHN BAKU KOSMETIK) COA GDC\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 199244\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 199244\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 199625\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 199625\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 199220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 199220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CATECHINS TEAVIGO 4 KG (BHN BAKU KOSMETIK) COA 203021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"CATECHINS TEAVIGO 4 KG (BHN BAKU KOSMETIK) COA 203021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CATECHINS TEAVIGO 1 KG (BHN BAKU KOSMETIK) COA 203021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"CATECHINS TEAVIGO 1 KG (BHN BAKU KOSMETIK) COA 203021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CONFECTIONERY INK CI-28827 WHITE (BHN BAKU PEWARNA TABLET) COA TKL61838, SAMPLE NO COMMERCIAL..\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32061910\", \"uraian\": \"CONFECTIONERY INK CI-28827 WHITE (BHN BAKU PEWARNA TABLET) COA TKL61838, SAMPLE NO COMMERCIAL..\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 22B0024800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 22B0024800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VALERIAN DRY HYDR. EXTR. (BAHAN BAKU SUPLEMEN) COA 21B0128800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VALERIAN DRY HYDR. EXTR. (BAHAN BAKU SUPLEMEN) COA 21B0128800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYMARIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0131900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SILYMARIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0131900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOPROFEN (BHN BAKU OBAT) COA 199331\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29183000\", \"uraian\": \"KETOPROFEN (BHN BAKU OBAT) COA 199331\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 203173\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 203173\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) COA 203271\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (16KG) (BHN BAKU KOSMETIK) COA 203271\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP-100 (10KG) )BHN BAKU KOSMETIK) COA 203918\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSP-100 (10KG) )BHN BAKU KOSMETIK) COA 203918\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) COA 203271\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (16KG) (BHN BAKU KOSMETIK) COA 203271\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-710 (16KG) BHN BAKU KOSMETIK) COA 112480\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSG-710 (16KG) BHN BAKU KOSMETIK) COA 112480\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 203173\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 203173\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEO EXTRAPONE (R) LEMON (BHN BAKU KOSMETIK) COA 10300017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"NEO EXTRAPONE (R) LEMON (BHN BAKU KOSMETIK) COA 10300017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACTIPONE(R) WHITE TEA GW (BHN BAKU KOSMETIK) COA 10300050\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"ACTIPONE(R) WHITE TEA GW (BHN BAKU KOSMETIK) COA 10300050\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) WILD BERRIES(BHN BAKU KOSMETIK) COA 10300035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"EXTRAPONE (R) WILD BERRIES(BHN BAKU KOSMETIK) COA 10300035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB MAROON (BHN BAKU PEWARNA TABLET) COA SH656804\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB MAROON (BHN BAKU PEWARNA TABLET) COA SH656804\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH656545\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH656545\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656171\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656171\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH652415\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH652415\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH656807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH656807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH656329\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH656329\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH656175\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH656175\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH656330\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH656330\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH656567\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH656567\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH656835\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH656835\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH656820\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH656820\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH656842\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH656842\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH656832\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH656832\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH656816\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH656816\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH652415\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH652415\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II ORANGE (BHN BAKU PEWARNA TABLET) COA SH656836\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II ORANGE (BHN BAKU PEWARNA TABLET) COA SH656836\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH657554\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH657554\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH656182\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH656182\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH657562\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH657562\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH657555\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH657555\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000078886\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000078886\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-011732\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-011732\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-021781\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-021781\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-021421\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-021421\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SENAS (BHN BAKU KOSMETIK) COA NASB-01112\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21022090\", \"uraian\": \"HYUNDAI BIOLAND SENAS (BHN BAKU KOSMETIK) COA NASB-01112\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 011922\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28331900\", \"uraian\": \"HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 011922\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK), COA HMVBD-022322,HMVBD-030742\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK), COA HMVBD-022322,HMVBD-030742\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-031691\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-031691\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK)COA GSC-K-020971\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK)COA GSC-K-020971\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-182822\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-182822\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 012022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28331900\", \"uraian\": \"HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 012022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 042122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28331900\", \"uraian\": \"HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 042122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK), COA HMVBD-030742\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK), COA HMVBD-030742\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND OLIGO-HA 1PCT SOLUTION (BHN BAKU KOSMETIK) COA HCPP-021842\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND OLIGO-HA 1PCT SOLUTION (BHN BAKU KOSMETIK) COA HCPP-021842\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SORBITOL SOLUTION 70 PCT CRYSTALLINE (BHN BAKU KOSMETIK) COA 2223P053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054400\", \"uraian\": \"SORBITOL SOLUTION 70 PCT CRYSTALLINE (BHN BAKU KOSMETIK) COA 2223P053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180L7R001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180L7R001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180L4S022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180L4S022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180K34002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180K34002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E5 PREMIUM LV HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D011LBML01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E5 PREMIUM LV HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D011LBML01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E5 PREMIUM LV HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D011LBKL03\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E5 PREMIUM LV HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D011LBKL03\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT22020066\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT22020066\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 103047 - D (BHN BAKU MAKANAN) COA XW92204005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 103047 - D (BHN BAKU MAKANAN) COA XW92204005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MINERAL PREMIX FOR MILK POWDER (BHN BAKU MAKANAN) COA XW92204006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"MINERAL PREMIX FOR MILK POWDER (BHN BAKU MAKANAN) COA XW92204006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92203292\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92203292\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12111039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12111039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12111039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12111039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12111039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12111039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT21120005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT21120005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPPLEMEN) COA TL02111923\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPPLEMEN) COA TL02111923\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT22020066\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT22020066\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT22010004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT22010004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT22010004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT22010004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ20210551\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ20210551\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU SUPPLEMEN) COA UT22010219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU SUPPLEMEN) COA UT22010219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU SUPPLEMEN) COA UT22010219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU SUPPLEMEN) COA UT22010219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB21050065\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB21050065\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU SUPPLEMEN) COA UT22010219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU SUPPLEMEN) COA UT22010219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02102013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02102013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2107088,UEB2107089\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2107088,UEB2107089\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2107089,UEB2105056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2107089,UEB2105056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92203249,XW92203250\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"V003400 (BHN BAKU MAKANAN) COA XW92203249,XW92203250\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92204160\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92204160\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02106807,TL02109811\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02106807,TL02109811\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU KOSMETIK) COA UT21030210\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU KOSMETIK) COA UT21030210\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92204160\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92204160\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT21070076\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT21070076\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0063101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0063101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0063344\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0063344\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 220691\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 220691\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 220943\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNEBUSTERS (BHN BAKU KOSMETIK) COA 220943\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 220691\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 220691\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 220943\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNEBUSTERS (BHN BAKU KOSMETIK) COA 220943\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 220495\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 220495\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 220332,220991\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 220332,220991\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSE HIPS LIQUID B (BHN BAKU KOSMETIK) COA 220534\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ROSE HIPS LIQUID B (BHN BAKU KOSMETIK) COA 220534\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 220564\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 220564\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 220564\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 220564\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HIBAMATA LIQUID (BHN BAKU KOSMETIK) COA 212385\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HIBAMATA LIQUID (BHN BAKU KOSMETIK) COA 212385\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMFREY LIQUID B (BHN BAKU KOSMETIK) COA 212834\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"COMFREY LIQUID B (BHN BAKU KOSMETIK) COA 212834\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 220691\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 220691\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 220704\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ABSORAGE (BHN BAKU KOSMETIK) COA 220704\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AP GRIT G 40-60 (BHN BAKU KOSMETIK) COA 220103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AP GRIT G 40-60 (BHN BAKU KOSMETIK) COA 220103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 220665\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329900\", \"uraian\": \"K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 220665\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRANOL ULTRA C-32 MB 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP204230MB\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34024990\", \"uraian\": \"MIRANOL ULTRA C-32 MB 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP204230MB\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRANOL ULTRA C-32 MB 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP204230MB\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34024990\", \"uraian\": \"MIRANOL ULTRA C-32 MB 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP204230MB\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG220318,MCVG220325\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG220318,MCVG220325\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH656982\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH656982\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH659121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH659121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH657259\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH657259\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH659124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH659124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH657552\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH657552\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH657566\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH657566\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB II PURPLE (BHN BAKU PEWARNA TABLET) COA SH657567\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB II PURPLE (BHN BAKU PEWARNA TABLET) COA SH657567\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH657652\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH657652\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH656981\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH656981\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH656982\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH656982\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH656806\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH656806\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH659123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH659123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH659123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH659123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH659127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH659127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH659122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH659122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH656806\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH656806\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH656806\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH656806\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH659127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH659127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH658106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH658106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH649540\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH649540\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH659121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH659121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH659122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH659122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH656806\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH656806\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANTOPRAZOLE SODIUM (STERILE) BAHAN BAKU OBAT SI/PPZ/00230222\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"PANTOPRAZOLE SODIUM (STERILE) BAHAN BAKU OBAT SI/PPZ/00230222\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ESOMEPRAZOLE SODIUM STERILE (BAHAN BAKU OBAT) COA SI/EPZ/00010222\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"ESOMEPRAZOLE SODIUM STERILE (BAHAN BAKU OBAT) COA SI/EPZ/00010222\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113906\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113906\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113906\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113906\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-0480422,S-A-0490422\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334910\", \"uraian\": \"DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-0480422,S-A-0490422\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 FOOD OIL (BHN BAKU MAKANAN) COA TS00019390\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 FOOD OIL (BHN BAKU MAKANAN) COA TS00019390\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 27/50 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP11222,MTP11122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 27/50 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP11222,MTP11122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2204001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28352510\", \"uraian\": \"DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2204001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP10322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP10322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP07122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP07122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE WHITE (BHN BAKU PEWARNA TABLET) COA WP856284\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPACODE WHITE (BHN BAKU PEWARNA TABLET) COA WP856284\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK) COA 8924100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACB FRUIT MIX OR (BHN BAKU KOSMETIK) COA 8924100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITICOLINE SODIUM (BHN BAKU OBAT) COA 220202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"CITICOLINE SODIUM (BHN BAKU OBAT) COA 220202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RANITIDINE HCL USP (BAHAN BAKU OBAT) COA RH 258 04 22\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29321900\", \"uraian\": \"RANITIDINE HCL USP (BAHAN BAKU OBAT) COA RH 258 04 22\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLCOBALAMINE JP (BAHAN BAKU OBAT) COA SLL/MC/0322009,SLL/MC/0222007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"METHYLCOBALAMINE JP (BAHAN BAKU OBAT) COA SLL/MC/0322009,SLL/MC/0222007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOCUSATE SODIUM (BHN BAKU OBAT) COA SD1061029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"DOCUSATE SODIUM (BHN BAKU OBAT) COA SD1061029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ISDN 25PCT-LACTOSE 450 75PCT DILUTED (BHN BAKU OBAT) COA 2204853\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329900\", \"uraian\": \"ISDN 25PCT-LACTOSE 450 75PCT DILUTED (BHN BAKU OBAT) COA 2204853\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NG 5 PCT-1,2 PROPYLENGLYCOLE 95PCT (BAHAN BAKU OBAT) COA 2204752\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"NG 5 PCT-1,2 PROPYLENGLYCOLE 95PCT (BAHAN BAKU OBAT) COA 2204752\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 2209970478\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 2209970478\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS GLUCONATE, POWDER, USP 43 (BHN BAKU SUPLEMEN) COA 3114276\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"FERROUS GLUCONATE, POWDER, USP 43 (BHN BAKU SUPLEMEN) COA 3114276\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS GLUCONATE, POWDER, USP 43 (BHN BAKU SUPLEMEN) COA 3114276\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"FERROUS GLUCONATE, POWDER, USP 43 (BHN BAKU SUPLEMEN) COA 3114276\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM OXIDE, LIGHT, POWDER, BP 2021 (BHN BAKU SUPLEMEN) COA 1100366-4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25199010\", \"uraian\": \"MAGNESIUM OXIDE, LIGHT, POWDER, BP 2021 (BHN BAKU SUPLEMEN) COA 1100366-4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1341759,2004477\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1341759,2004477\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1334236\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1334236\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1256652\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MYCOPLASMA BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1256652\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKIROORGANISME) BATCH 2011054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKIROORGANISME) BATCH 2011054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL BACTO AGAR 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1327553\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PAIL BACTO AGAR 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1327553\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR NOBLE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1223649\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR NOBLE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1223649\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MR-VP MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1263575\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MR-VP MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1263575\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1040332\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1040332\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1133939\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1133939\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1061373\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1061373\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0315100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0315100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1229930\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1229930\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2011054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2011054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1356308\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1356308\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1133939\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1133939\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500 G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1349644\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500 G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1349644\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1312204\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1312204\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2103597\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2103597\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN...(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1333996,1348587,2034944\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO TSB CASEIN...(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1333996,1348587,2034944\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1350021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1350021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1176317,2028749\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1176317,2028749\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2011124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2011124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2040220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2040220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1215037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1215037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2038654\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2038654\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1236408\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1236408\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1319633\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1319633\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1188089\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1188089\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1201174\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1201174\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1363655\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1363655\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1264670\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1264670\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1349644\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1349644\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B04D195M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B04D195M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1236408\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1236408\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MICROBIOM3D TOP BOARD FOR SPOT COOLER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"MICROBIOM3D TOP BOARD FOR SPOT COOLER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1310563,1316464,1340967\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE STERILE RODAC... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1310563,1316464,1340967\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2053895\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2053895\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2038183\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2038183\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2060056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2060056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2047738\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2047738\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1341761\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EE BROTH MOSSEL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1341761\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1327368\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1327368\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 1AX2205508\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 1AX2205508\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2022021502\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2022021502\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD&C YELLOW 5/TARTRAZINE AL... (BHN BAKU PEWARNA TABLET) COA WP852899:BB4036\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"FD&C YELLOW 5/TARTRAZINE AL... (BHN BAKU PEWARNA TABLET) COA WP852899:BB4036\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERYTHROSINE AL 38PCT-42PCT... (BHN BAKU PEWARNA TABLET) COA WP844565:1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"ERYTHROSINE AL 38PCT-42PCT... (BHN BAKU PEWARNA TABLET) COA WP844565:1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D&C YELLOW 10 AL 15PCT - 20PCT... (BHN BAKU PEWARNA TABLET) COA WP853299:BB4498\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"D&C YELLOW 10 AL 15PCT - 20PCT... (BHN BAKU PEWARNA TABLET) COA WP853299:BB4498\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERYTHROSINE AL 38PCT-42PCT... (BHN BAKU PEWARNA TABLET) COA WP844565:1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"ERYTHROSINE AL 38PCT-42PCT... (BHN BAKU PEWARNA TABLET) COA WP844565:1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D&C YELLOW 10 AL 15PCT - 20PCT... (BHN BAKU PEWARNA TABLET) COA WP844760:BB0003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"D&C YELLOW 10 AL 15PCT - 20PCT... (BHN BAKU PEWARNA TABLET) COA WP844760:BB0003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD&C BLUE 2/INDIGO CARMINE AL... (BHN BAKU PEWARNA TABLET) COA WP847582:BB1664\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"FD&C BLUE 2/INDIGO CARMINE AL... (BHN BAKU PEWARNA TABLET) COA WP847582:BB1664\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD&C YELLOW 6/SUNSET YELLOW... (BHN BAKU PEWARNA TABLET) COA WP848266:BB2369\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"FD&C YELLOW 6/SUNSET YELLOW... (BHN BAKU PEWARNA TABLET) COA WP848266:BB2369\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERYTHROSINE AL 38PCT-42PCT... (BHN BAKU PEWARNA TABLET) COA WP844563:1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"ERYTHROSINE AL 38PCT-42PCT... (BHN BAKU PEWARNA TABLET) COA WP844563:1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD&C YELLOW 5/TARTRAZINE AL... (BHN BAKU PEWARNA TABLET) COA WP852915:BB4112\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"FD&C YELLOW 5/TARTRAZINE AL... (BHN BAKU PEWARNA TABLET) COA WP852915:BB4112\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FD&C RED 40/ALLURA RED AC AL... (BHN BAKU PEWARNA TABLET) COA WP852270:BB3528\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"FD&C RED 40/ALLURA RED AC AL... (BHN BAKU PEWARNA TABLET) COA WP852270:BB3528\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA GA708010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA GA708010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA GA708009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA GA708009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA GA707632\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA GA707632\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA GA708009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA GA708009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP08822\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP08822\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP10422\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP10422\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP03722\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP03722\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP08322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP08322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN546116\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN546116\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA064226,ROA063223,ROA064226,ROA...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA064226,ROA063223,ROA064226,ROA...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA065224,ROA064226,ROA064223\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA065224,ROA064226,ROA064223\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340368, B340369,B340370\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX COMPACTED (BHN BAKU OBAT) COA B340368, B340369,B340370\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 211021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25070000\", \"uraian\": \"KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 211021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU UTK PAKAN TERNAK) COA 202200065\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"AL HYD WET GEL VAC 20 (BHN BAKU UTK PAKAN TERNAK) COA 202200065\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 2209970478,2209980571\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 2209970478,2209980571\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-220422\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-220422\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-220422\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-220422\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT22020066\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT22020066\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 103093 - A (BHN BAKU MAKANAN) COA XW92204008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 103093 - A (BHN BAKU MAKANAN) COA XW92204008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX FOR MILK POWDER (BHN BAKU MAKANAN) COA XW92204007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX FOR MILK POWDER (BHN BAKU MAKANAN) COA XW92204007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12111039,OP12112022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12111039,OP12112022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11220302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11220302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT22010019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT22010019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT22010002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT22010002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT22010019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT22010019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT22010002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT22010002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPPLEMEN) COA UQ11213382\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPPLEMEN) COA UQ11213382\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT22010002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT22010002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21120023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21120023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ20110510\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ20110510\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ11213700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ11213700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ11213700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ11213700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT21100058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT21100058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT21120069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT21120069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02111128\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02111128\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000201737\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000201737\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0038741\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0038741\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00748404\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"AMPHISOL K (BHN BAKU KOSMETIK) COA VE00748404\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02112145\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02112145\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0922020007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX (BHN BAKU KOSMETIK) COA 0922020007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060086\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060086\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050930,0321050931\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050930,0321050931\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT21100232\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT21100232\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21110243\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21110243\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21110243\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21110243\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT21120005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT21120005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21110243\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21110243\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12112022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12112022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12112022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12112022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02103044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02103044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0922020007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX (BHN BAKU KOSMETIK) COA 0922020007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02102024,UE02102026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02102024,UE02102026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22030042,UT22030043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22030042,UT22030043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS PH (BHN BAKU SUPPLEMEN) COA UT21120003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS PH (BHN BAKU SUPPLEMEN) COA UT21120003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT22031157 S/D UT22031161\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT22031157 S/D UT22031161\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA GA708010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA GA708010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET) COA DT730060\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPALUX RED (BHN BAKU PEWARNA TABLET) COA DT730060\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET) COA DT730061\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPALUX RED (BHN BAKU PEWARNA TABLET) COA DT730061\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE BLACK (BHN BAKU PEWARNA TABLET) COA DT730062\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPACODE BLACK (BHN BAKU PEWARNA TABLET) COA DT730062\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPATINT RED (BHN BAKU PEWARNA TABLET) COA DT730063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPATINT RED (BHN BAKU PEWARNA TABLET) COA DT730063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for XANTHAN FFPC (BHN BAKU OBAT) COA 83676701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"XANTHAN FFPC (BHN BAKU OBAT) COA 83676701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) COA PH06150622,PH09160122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) COA PH06150622,PH09160122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2103661117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2103661117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FRUITFLOW II SD (BHN BAKU SUPPLEMEN) COA 21T0102200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"FRUITFLOW II SD (BHN BAKU SUPPLEMEN) COA 21T0102200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXCHLORPHENIRAMINE MALEATE USP (BHN BAKU OBAT) COA SLL/DC/0522011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"DEXCHLORPHENIRAMINE MALEATE USP (BHN BAKU OBAT) COA SLL/DC/0522011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AQUACOAT CPD-30 CELLULOSE... (BHN BAKU PEWARNA TABLET) COA 2174048104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"AQUACOAT CPD-30 CELLULOSE... (BHN BAKU PEWARNA TABLET) COA 2174048104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E15 PREMIUM LV... (BHN BAKU PEWARNA TABLET) COA D011LCGL01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E15 PREMIUM LV... (BHN BAKU PEWARNA TABLET) COA D011LCGL01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV... (BHN BAKU PEWARNA TABLET) COA D011L9UL01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV... (BHN BAKU PEWARNA TABLET) COA D011L9UL01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR... (BHN BAKU PEWARNA TABLET) COA D180L96001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR... (BHN BAKU PEWARNA TABLET) COA D180L96001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV... (BHN BAKU PEWARNA TABLET) COA D011L9LL03\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV... (BHN BAKU PEWARNA TABLET) COA D011L9LL03\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E15 PREMIUM LV... (BHN BAKU PEWARNA TABLET) COA D011K7KL01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E15 PREMIUM LV... (BHN BAKU PEWARNA TABLET) COA D011K7KL01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM CR... (BHN BAKU PEWARNA TABLET) COA D180K61001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM CR... (BHN BAKU PEWARNA TABLET) COA D180K61001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL A15 PREMIUM LV... (BHN BAKU PEWARNA TABLET) COA D180L7E022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL A15 PREMIUM LV... (BHN BAKU PEWARNA TABLET) COA D180L7E022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100 PREMIUM LVCR... (BHN BAKU PEWARNA TABLET) COA D180L3B021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100 PREMIUM LVCR... (BHN BAKU PEWARNA TABLET) COA D180L3B021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 10 PREMIUM... (BHN BAKU PEWARNA TABLET) COA D184L7P021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 10 PREMIUM... (BHN BAKU PEWARNA TABLET) COA D184L7P021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E4M PREMIUM... (BHN BAKU PEWARNA TABLET) COA D180LAT021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E4M PREMIUM... (BHN BAKU PEWARNA TABLET) COA D180LAT021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR... (BHN BAKU PEWARNA TABLET) COA D180L52021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR... (BHN BAKU PEWARNA TABLET) COA D180L52021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E4M PREMIUM... (BHN BAKU PEWARNA TABLET) COA D180LAT021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E4M PREMIUM... (BHN BAKU PEWARNA TABLET) COA D180LAT021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 101821/007264\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 101821/007264\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FENTACARE 2231 EF 25KG PAPER BOX (BHN BAKU KOSMETIK ) COA ZH22D2201,ZH22E1003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34029019\", \"uraian\": \"FENTACARE 2231 EF 25KG PAPER BOX (BHN BAKU KOSMETIK ) COA ZH22D2201,ZH22E1003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MONOPROPYLENE GLYCOL (BHN BAKU KOSMETIK) COA PG(S)220424\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"MONOPROPYLENE GLYCOL (BHN BAKU KOSMETIK) COA PG(S)220424\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3280873\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3280873\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3302358\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3302358\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HPA82 PURE SENSITIVE (BHN BAKU KOSMETIK) COA 3302683\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"HPA82 PURE SENSITIVE (BHN BAKU KOSMETIK) COA 3302683\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROPYPHENAZONE (CEP) (BHN BAKU OBAT UNTUK PEWARNA TABLET) COA 2111209\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331100\", \"uraian\": \"PROPYPHENAZONE (CEP) (BHN BAKU OBAT UNTUK PEWARNA TABLET) COA 2111209\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2510222\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2510222\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC CALCIUM ASCORBATE DC (BHN BAKU SUPPLEMEN) COA HPT2202005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC CALCIUM ASCORBATE DC (BHN BAKU SUPPLEMEN) COA HPT2202005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTABIO AR10 (ASTAXANTHIN OIL 10PCT) (BHN BAKU OBAT) COA 2108041,2205101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"ASTABIO AR10 (ASTAXANTHIN OIL 10PCT) (BHN BAKU OBAT) COA 2108041,2205101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CINNARIZINE (BHN BAKU OBAT) COA 022C011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"CINNARIZINE (BHN BAKU OBAT) COA 022C011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GLIBENCLAMIDE (BHN BAKU OBAT) COA 22GLB020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"GLIBENCLAMIDE (BHN BAKU OBAT) COA 22GLB020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NYSTATIN POWDER ROW GRADE (BHN BAKU OBAT) COA C131972\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NYSTATIN POWDER ROW GRADE (BHN BAKU OBAT) COA C131972\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20220503\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20220503\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 220211\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 220211\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 211115\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"OILESS'CITY TM (BHN BAKU KOSMETIK) COA 211115\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 220402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 220402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 220211\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 220211\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA EXTRACT 95PCT ( BHN BAKU KOSMETIK) COA GKP 22019 EOU\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"CENTELLA ASIATICA EXTRACT 95PCT ( BHN BAKU KOSMETIK) COA GKP 22019 EOU\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMITOSE R (BHN BAKU KOSMETIK) COA GCI\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AMITOSE R (BHN BAKU KOSMETIK) COA GCI\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA GCH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA GCH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA GEA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) COA GEA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE 99PCT TG (BHN BAKU SUPPLEMEN) COA WB22030580,WB22030584\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE 99PCT TG (BHN BAKU SUPPLEMEN) COA WB22030580,WB22030584\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB21120254\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB21120254\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB21120254\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB21120254\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINC SULFATE 1-HYDRATE, POWDER,USP43 (BHN BAKU OBAT) COA 3111759\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"ZINC SULFATE 1-HYDRATE, POWDER,USP43 (BHN BAKU OBAT) COA 3111759\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS SULFATE DRIED,POWDER,USP43 (BHN BAKU OBAT) COA 3110345\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"FERROUS SULFATE DRIED,POWDER,USP43 (BHN BAKU OBAT) COA 3110345\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM SELENITE IN CARRIER (BHN BAKU SUPPLEMEN) COA 3106230\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28429010\", \"uraian\": \"SODIUM SELENITE IN CARRIER (BHN BAKU SUPPLEMEN) COA 3106230\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINC OXIDE, POWDER, PH.EUR.10ED (BHN BAKU SUPPLEMEN) COA 3112821\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28170010\", \"uraian\": \"ZINC OXIDE, POWDER, PH.EUR.10ED (BHN BAKU SUPPLEMEN) COA 3112821\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POTASSIUM L-ASPARTATE 0,5-HYDRATE (BHN BAKU OBAT) COA 3033229-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"POTASSIUM L-ASPARTATE 0,5-HYDRATE (BHN BAKU OBAT) COA 3033229-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 22S0112800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 22S0112800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 22S0112800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 22S0112800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131... (BHN BAKU PEWARNA TABLET) COA GA707093\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131... (BHN BAKU PEWARNA TABLET) COA GA707093\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03Z59026 CLEAR (BHN BAKU PEWARNA TABLET) COA GA707094\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03Z59026 CLEAR (BHN BAKU PEWARNA TABLET) COA GA707094\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 8552-507-K05 LIPEX (R) 512 VEGETABLE OIL (BHN BAKU KOSMETIK) COA 0002518009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15162049\", \"uraian\": \"8552-507-K05 LIPEX (R) 512 VEGETABLE OIL (BHN BAKU KOSMETIK) COA 0002518009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 8552-507-K05 LIPEX (R) 512 VEGETABLE OIL (BHN BAKU KOSMETIK) COA 0002518009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15162049\", \"uraian\": \"8552-507-K05 LIPEX (R) 512 VEGETABLE OIL (BHN BAKU KOSMETIK) COA 0002518009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 8552-507-K05 LIPEX (R) 512 VEGETABLE OIL (BHN BAKU KOSMETIK) COA 0002518009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15162049\", \"uraian\": \"8552-507-K05 LIPEX (R) 512 VEGETABLE OIL (BHN BAKU KOSMETIK) COA 0002518009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S766/21/A\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S766/21/A\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2027288\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2027288\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1063138\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1063138\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1344136\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1344136\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2060591\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2060591\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0219127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0219127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL E COLL O ANTISERUM O157 SEROL TEST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0094884\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL E COLL O ANTISERUM O157 SEROL TEST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0094884\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2047688\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2047688\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOBACILLI AGAR AOAC 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2032081\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOBACILLI AGAR AOAC 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2032081\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1229938,1243897\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1229938,1243897\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2047688\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2047688\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B04E067M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B04E067M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER DMACA INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01E025M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER DMACA INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01E025M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN546460\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN546460\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN546459\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN546459\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN546091\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN546091\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GLICLAZIDE (BHN BAKU OBAT) COA 2240000894\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"GLICLAZIDE (BHN BAKU OBAT) COA 2240000894\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GLICLAZIDE (BHN BAKU OBAT) COA 2240001150\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"GLICLAZIDE (BHN BAKU OBAT) COA 2240001150\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G630022... (BHN BAKU PEWARNA TABLET) COA SH658672\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G630022... (BHN BAKU PEWARNA TABLET) COA SH658672\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA GA706793\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA GA706793\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 940 CAN 10 KG (BHN BAKU KOSMETIK) COA 1573139\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 940 CAN 10 KG (BHN BAKU KOSMETIK) COA 1573139\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 720 CAN 10 KG (BHN BAKU KOSMETIK) COA 1581472\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 720 CAN 10 KG (BHN BAKU KOSMETIK) COA 1581472\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 940 CAN 10 KG (BHN BAKU KOSMETIK) COA 1573139\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 940 CAN 10 KG (BHN BAKU KOSMETIK) COA 1573139\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA PA 40 CAN 10 KG (BHN BAKU KOSMETIK) COA 1579165\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA PA 40 CAN 10 KG (BHN BAKU KOSMETIK) COA 1579165\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 830 CAN 10 KG (BHN BAKU KOSMETIK) COA 1581540\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 830 CAN 10 KG (BHN BAKU KOSMETIK) COA 1581540\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) COA 1579348\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) COA 1579348\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) COA 1580987\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) COA 1580987\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) COA 1581749\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) COA 1581749\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) COA 1581949\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) COA 1581949\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 720 CAN 10 KG (BHN BAKU KOSMETIK) COA 1581474\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 720 CAN 10 KG (BHN BAKU KOSMETIK) COA 1581474\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) COA 1578645\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) COA 1578645\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) COA 1580173\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) COA 1580173\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) COA 1580173\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) COA 1580173\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FENTACARE 2231 EF 25KG PAPER BOX (BHN BAKU KOSMETIK ) COA ZH22E1003,ZH22E1806\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34029019\", \"uraian\": \"FENTACARE 2231 EF 25KG PAPER BOX (BHN BAKU KOSMETIK ) COA ZH22E1003,ZH22E1806\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-032422\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-032422\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ20217003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ20217003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SYN(R)-AKE (BHN BAKU KOSMETIK) COA UE02204005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SYN(R)-AKE (BHN BAKU KOSMETIK) COA UE02204005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL (R) ID34538P (BHN BAKU PEWARNA TABLET) COA D011LCRL01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL (R) ID34538P (BHN BAKU PEWARNA TABLET) COA D011LCRL01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIVAROXABAN EP (BHN BAKU OBAT) COA BAN500122,BAN500222\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"RIVAROXABAN EP (BHN BAKU OBAT) COA BAN500122,BAN500222\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYPROHEPTADINE HCL (BHN BAKU OBAT) COA CYP/04221009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"CYPROHEPTADINE HCL (BHN BAKU OBAT) COA CYP/04221009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRASIL DM5 L (BHN BAKU KOSMETIK) COA 2216FH3415\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100090\", \"uraian\": \"MIRASIL DM5 L (BHN BAKU KOSMETIK) COA 2216FH3415\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRASIL D-DML LV A2 (BHN BAKU KOSMETIK) COA 2215HK03XA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100090\", \"uraian\": \"MIRASIL D-DML LV A2 (BHN BAKU KOSMETIK) COA 2215HK03XA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRASIL DM5 L (BHN BAKU KOSMETIK) COA 2216FH3415\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100090\", \"uraian\": \"MIRASIL DM5 L (BHN BAKU KOSMETIK) COA 2216FH3415\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47063000\", \"uraian\": \"SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM CARBONATE IPH (BHN BAKU SUPPLEMEN) COA DOC1222221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"SODIUM CARBONATE IPH (BHN BAKU SUPPLEMEN) COA DOC1222221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PERMETHRIN (PHARMA GRADE) (BHN BAKU OBAT) COA 225046004,22504605,225046006,225046006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29163990\", \"uraian\": \"PERMETHRIN (PHARMA GRADE) (BHN BAKU OBAT) COA 225046004,22504605,225046006,225046006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 10760522,10770522,10780522,10930522,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 10760522,10770522,10780522,10930522,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIMETHOPRIM MICRONISED BP (BHN BAKU OBAT) COA TMP22050351,TMP22050354,TMP22040311\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"TRIMETHOPRIM MICRONISED BP (BHN BAKU OBAT) COA TMP22050351,TMP22050354,TMP22040311\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334819,B334820,B334822,B334824,B334825,B334828\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX POWDER (BHN BAKU OBAT) COA B334819,B334820,B334822,B334824,B334825,B334828\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47063000\", \"uraian\": \"SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 19-10-21,29-09-21,30-09-21, 20-10-21\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 19-10-21,29-09-21,30-09-21, 20-10-21\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-2110148\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29146200\", \"uraian\": \"COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-2110148\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 221092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNEBUSTERS (BHN BAKU KOSMETIK) COA 221092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 221256\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 221256\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOKUDAMI LIQUID B (BHN BAKU KOSMETIK) COA 221082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"DOKUDAMI LIQUID B (BHN BAKU KOSMETIK) COA 221082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 221034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 221034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 220991,221275\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 220991,221275\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALPINIAWHITE (BHN BAKU KOSMETIK) COA 220567\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ALPINIAWHITE (BHN BAKU KOSMETIK) COA 220567\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300059 S/D 10300061\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300059 S/D 10300061\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2204001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28352510\", \"uraian\": \"DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2204001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX FOR FERMENTED MILK (BHN BAKU MAKANAN) COA XW92205018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX FOR FERMENTED MILK (BHN BAKU MAKANAN) COA XW92205018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT22020066\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT22020066\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 1PCT CWS/M (BHN BAKU MAKANAN) COA UT21120038\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 1PCT CWS/M (BHN BAKU MAKANAN) COA UT21120038\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02111132\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02111132\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPPLEMEN) COA UQ10913316\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU SUPPLEMEN) COA UQ10913316\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92204312\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92204312\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (POST BORDER) COA UT22010002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (POST BORDER) COA UT22010002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02111132\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02111132\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (POST BORDER) COA 0000203938,0000203940\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (POST BORDER) COA 0000203938,0000203940\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000203940\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000203940\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-PANTHENOL 50 L (BHN BAKU KOSMETIK) COA TL02108642\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL-PANTHENOL 50 L (BHN BAKU KOSMETIK) COA TL02108642\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000203940,0000203941\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000203940,0000203941\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92204461\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92204461\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21110403\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21110403\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS3851121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS3851121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC211108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC211108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202205-015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35040000\", \"uraian\": \"SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202205-015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK) COA LDC19222T\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101990\", \"uraian\": \"SAVONOL 16 (BAHAN BAKU KOSMETIK) COA LDC19222T\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20220509\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20220509\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977 WHITE(BHN BAKU PEWARNA TABLET) COA GA709224\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977 WHITE(BHN BAKU PEWARNA TABLET) COA GA709224\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769011334N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769011334N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SWT-7 TM H (BHN BAKU KOSMETIK) COA 2207403\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SWT-7 TM H (BHN BAKU KOSMETIK) COA 2207403\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 2115314\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 2115314\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2125203\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) COA 2125203\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2133701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) COA 2133701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 702019449N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ABYSSINE 657 (BHN BAKU KOSMETIK) COA 702019449N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019447N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019447N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785019980N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785019980N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834019745M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834019745M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2133701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) COA 2133701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019877N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019877N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) COA 2103116\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTENSO TM (BHN BAKU KOSMETIK) COA 2103116\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROGELINE TM (BHN BAKU KOSMETIK) COA 820059881M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"PROGELINE TM (BHN BAKU KOSMETIK) COA 820059881M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSALITY TM (BHN BAKU KOSMETIK) COA 2116601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROSALITY TM (BHN BAKU KOSMETIK) COA 2116601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122101486\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122101486\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122101486\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122101486\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPPLEMEN) COA WB22010760\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPPLEMEN) COA WB22010760\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPPLEMEN) COA WB22010760\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPPLEMEN) COA WB22010760\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPPLEMEN) COA WB22010760\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPPLEMEN) COA WB22010760\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT GRANULATION (BHN BAKU SUPPLEMEN) COA WB21109021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT GRANULATION (BHN BAKU SUPPLEMEN) COA WB21109021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20220201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20220201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20220201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20220201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT GRANULATION (BHN BAKU SUPPLEMEN) COA WB21109021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT GRANULATION (BHN BAKU SUPPLEMEN) COA WB21109021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22010616\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22010616\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2088865\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2088865\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2012153,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2012153,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2063446\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2063446\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2049503\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2049503\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2113510\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2113510\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 211059200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 211059200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2055028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2055028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2104107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2104107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2104107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2104107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1357822\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1357822\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1223658\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1223658\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2103597\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2103597\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1236551\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1236551\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2034944\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2034944\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1103620\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1103620\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1132546\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1132546\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2004477\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2004477\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2046145,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2046145,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1159790\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1159790\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2049503\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2049503\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2115964\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2115964\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG220429\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG220429\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L GLUTATHIONE REDUCED (BHN BAKU KOSMETIK) COA B220162\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"L GLUTATHIONE REDUCED (BHN BAKU KOSMETIK) COA B220162\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CO ENZYME Q10 (BHN BAKU KOSMETIK) COA 51-2205129\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29146200\", \"uraian\": \"CO ENZYME Q10 (BHN BAKU KOSMETIK) COA 51-2205129\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID REGULAR (BHN BAKU MAKANAN) COA HPB2204045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID REGULAR (BHN BAKU MAKANAN) COA HPB2204045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK) COA LDC20622T\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101990\", \"uraian\": \"SAVONOL 16 (BAHAN BAKU KOSMETIK) COA LDC20622T\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-042001,021152\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-042001,021152\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-060821\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-060821\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-021421\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-021421\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-182822\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-182822\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE 1PCT SOLUTION (BHN BAKU KOSMETIK) COA HASC-402921,070252\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND BIO-SODIUM HYALURONATE 1PCT SOLUTION (BHN BAKU KOSMETIK) COA HASC-402921,070252\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 011922,051222\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28331900\", \"uraian\": \"HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 011922,051222\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-030742\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-030742\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2104978\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2104978\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2034559\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2034559\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 2068623,2068628,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 2068623,2068628,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2067406\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2067406\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2034559\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2034559\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 2046133,2062781,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 2046133,2062781,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2066217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2066217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL ISOVITALEX ENRICHMENT 10ML 5 EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2060136\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL ISOVITALEX ENRICHMENT 10ML 5 EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2060136\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0128385\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0128385\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SHIGELLA ANTIS POLY C1 LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2039015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SHIGELLA ANTIS POLY C1 LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2039015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SHIGELLA ANTIS POLY D LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1084825\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SHIGELLA ANTIS POLY D LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1084825\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0219127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0219127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2067406\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2067406\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1175752\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1175752\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1279394\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1279394\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1243456\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1243456\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1349828\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1349828\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 2053886\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 2053886\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LETHEEN BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1229938\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LETHEEN BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1229938\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 157743\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15159011\", \"uraian\": \"AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 157743\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL COLD PRESSED ORGANIC (BHN BAKU KOSMETIK) COA 159541\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL COLD PRESSED ORGANIC (BHN BAKU KOSMETIK) COA 159541\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 220495\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 220495\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102202004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102202004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBNE220260\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBNE220260\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ20113505\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ20113505\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22010021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22010021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ11212414\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ11212414\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ11212414,UQ11212434\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ11212414,UQ11212434\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT21120005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT21120005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02111132\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02111132\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20220101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20220101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20220101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20220101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20220101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20220101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20220101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20220101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT22010019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT22010019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000201738\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000201738\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12112022,OP12202018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12112022,OP12202018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11220304\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11220304\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE02202001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"RONOXAN A (BHN BAKU MAKANAN) COA UE02202001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000201738\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000201738\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02201004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02201004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00756456\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"AMPHISOL K (BHN BAKU KOSMETIK) COA VE00756456\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0922020007,0922020008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX (BHN BAKU KOSMETIK) COA 0922020007,0922020008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0040349\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0040349\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02201004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02201004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000203943,0000203944\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000203943,0000203944\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02103044,UE02103050,UE02103051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02103044,UE02103050,UE02103051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02106017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE02106017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050932,0321050933\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050932,0321050933\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT22030006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT22030006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22020003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22020003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT22020060\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT22020060\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22020003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22020003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS PH (BHN BAKU SUPPLEMEN) COA UT21120003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS PH (BHN BAKU SUPPLEMEN) COA UT21120003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPPLEMEN) COA UT22020009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPPLEMEN) COA UT22020009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT21110032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT21110032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT22030006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT22030006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT22030006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT22030006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02202020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02202020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPPLEMEN) COA UT22030035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU SUPPLEMEN) COA UT22030035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22030043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22030043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT21080083,UT21090085\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT21080083,UT21090085\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP10322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP10322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP10322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP10322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM REGULAR GRADE (BHN BAKU OBAT) COA 2204450,2205674 S/D 2205676\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331900\", \"uraian\": \"METAMIZOLE SODIUM REGULAR GRADE (BHN BAKU OBAT) COA 2204450,2205674 S/D 2205676\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LABRAFIL M 1944 CS BF (BHN BAKU OBAT) COA 189637\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LABRAFIL M 1944 CS BF (BHN BAKU OBAT) COA 189637\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LACTOFIL MOIST (BHN BAKU OBAT) COA Z13360024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LACTOFIL MOIST (BHN BAKU OBAT) COA Z13360024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPSULAC (R) 60 (BHN BAKU OBAT) COA L100411022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"CAPSULAC (R) 60 (BHN BAKU OBAT) COA L100411022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103860722\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103860722\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104311722\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104311722\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLOWLAC (R) 100H (BHN BAKU OBAT) COA L105812121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"FLOWLAC (R) 100H (BHN BAKU OBAT) COA L105812121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SORBOLAC (R) 400 (BHN BAKU OBAT) COA L103844721\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"SORBOLAC (R) 400 (BHN BAKU OBAT) COA L103844721\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK) COA 2206EF7112\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"L-ARGININE LO (BHN BAKU KOSMETIK) COA 2206EF7112\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OMEPRAZOLE PELLETS -8,5PCT (BHN BAKU OBAT) COA OP8.5/121605121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"OMEPRAZOLE PELLETS -8,5PCT (BHN BAKU OBAT) COA OP8.5/121605121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20220525\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20220525\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2510322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2510322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ACID PYROPHOSPHATE FOOD GRADE (BHN BAKU MAKANAN) COA 0922010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28353990\", \"uraian\": \"SODIUM ACID PYROPHOSPHATE FOOD GRADE (BHN BAKU MAKANAN) COA 0922010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT KIWI CSB (BHN BAKU OBAT) COA 02/19GAAK\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT KIWI CSB (BHN BAKU OBAT) COA 02/19GAAK\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT KIWI ECH (BHN BAKU OBAT) COA 02/19GAAK, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT KIWI ECH (BHN BAKU OBAT) COA 02/19GAAK, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EMULIUM MELLIFERA MB (BHN BAKU OBAT) COA 189793\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"EMULIUM MELLIFERA MB (BHN BAKU OBAT) COA 189793\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU OBAT) COA 187350\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU OBAT) COA 187350\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU OBAT) COA 01/22GL4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU OBAT) COA 01/22GL4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU OBAT) COA 01/22GL4, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU OBAT) COA 01/22GL4, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT KIWI CSB (BHN BAKU OBAT) COA 02/19GAAK\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT KIWI CSB (BHN BAKU OBAT) COA 02/19GAAK\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT KIWI ECH (BHN BAKU OBAT) COA 02/19GAAK, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT KIWI ECH (BHN BAKU OBAT) COA 02/19GAAK, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 220429092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 220429092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA094223,ROA092224,ROA091227\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA094223,ROA092224,ROA091227\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL (R) ID2865 (BHN BAKU PEWARNA TABLET) COA D180M2P001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL (R) ID2865 (BHN BAKU PEWARNA TABLET) COA D180M2P001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL (R) ID2865 (BHN BAKU PEWARNA TABLET) COA D180M2M002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL (R) ID2865 (BHN BAKU PEWARNA TABLET) COA D180M2M002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 200 H (BHN BAKU OBAT) COA L105711822\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 200 H (BHN BAKU OBAT) COA L105711822\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 200 H (BHN BAKU OBAT) COA L105711822\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 200 H (BHN BAKU OBAT) COA L105711822\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POLYOX (R) WATER SOLUBLERESINS ID166227... (BHN BAKU PEWARNA TABLET) COA 2534163994\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"POLYOX (R) WATER SOLUBLERESINS ID166227... (BHN BAKU PEWARNA TABLET) COA 2534163994\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LORATADINE USP (BHN BAKU OBAT) COA BLRD/2205013-M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"LORATADINE USP (BHN BAKU OBAT) COA BLRD/2205013-M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETAMETHASONE VALERATE USP 43 (BHN BAKU OBAT) COA APL/BV/01112/E-22\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"BETAMETHASONE VALERATE USP 43 (BHN BAKU OBAT) COA APL/BV/01112/E-22\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETAMETHASONE VALERATE USP 43 (BHN BAKU OBAT) COA APL/BV/01112/E-22\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"BETAMETHASONE VALERATE USP 43 (BHN BAKU OBAT) COA APL/BV/01112/E-22\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0020122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0020122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ACETATE ANHYDROUS POWDER, USP 43 (BHN BAKU SUPPLEMEN) COA 3109954\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29152910\", \"uraian\": \"SODIUM ACETATE ANHYDROUS POWDER, USP 43 (BHN BAKU SUPPLEMEN) COA 3109954\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS SULFATE 7-HYDRATE, CRYST. (BHN BAKU MAKANAN) COA 3114122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"FERROUS SULFATE 7-HYDRATE, CRYST. (BHN BAKU MAKANAN) COA 3114122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS SULFATE 7-HYDRATE, CRYST. (BHN BAKU MAKANAN) COA 3114122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"FERROUS SULFATE 7-HYDRATE, CRYST. (BHN BAKU MAKANAN) COA 3114122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIMETHOPRIM MICRONISED BP (BHN BAKU OBAT) COA TMP22040311\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"TRIMETHOPRIM MICRONISED BP (BHN BAKU OBAT) COA TMP22040311\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ADSORB AFLA (BHN BAKU UNTUK PAKAN TERNAK) COA 280\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25081000\", \"uraian\": \"ADSORB AFLA (BHN BAKU UNTUK PAKAN TERNAK) COA 280\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM 0501 AL HYD PDR (BHN BAKU SUPPLEMEN) COA 102160002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"BARCROFT TM 0501 AL HYD PDR (BHN BAKU SUPPLEMEN) COA 102160002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 21-10-21\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25070000\", \"uraian\": \"KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 21-10-21\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21100152\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21100152\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21100151,UT21100152\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21100151,UT21100152\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL02111132\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU MAKANAN) COA TL02111132\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL02111132\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU MAKANAN) COA TL02111132\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MINERAL PREMIX MILK POWDER FOR ADULTS V2 (BHN BAKU MAKANAN) COA XW92204459\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"MINERAL PREMIX MILK POWDER FOR ADULTS V2 (BHN BAKU MAKANAN) COA XW92204459\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT21100232,UT21100233\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT21100232,UT21100233\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21100151\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21100151\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P1E02QA000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL TX (BHN BAKU KOSMETIK) COA P1E02QA000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0722010011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHS (BHN BAKU KOSMETIK) COA 0722010011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001643582\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SLX (BHN BAKU KOSMETIK) COA 0001643582\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOTAXIME SODIUM EP (BHN BAKU OBAT) COA B200800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOTAXIME SODIUM EP (BHN BAKU OBAT) COA B200800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSUVASTATIN CALSIUM (BHN BAKU OBAT) COA RVM0860322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"ROSUVASTATIN CALSIUM (BHN BAKU OBAT) COA RVM0860322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2060378\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2060378\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACARBOSE (BHN BAKU SUPPLEMEN) COA ACAP21080D,ACAP21081B\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329900\", \"uraian\": \"ACARBOSE (BHN BAKU SUPPLEMEN) COA ACAP21080D,ACAP21081B\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUCRALOSE (BHN BAKU OBAT) COA 22041302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29321400\", \"uraian\": \"SUCRALOSE (BHN BAKU OBAT) COA 22041302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REFINED GRAPESEED OIL (BHN BAKU KOSMETIK) COA B2200126\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15152919\", \"uraian\": \"REFINED GRAPESEED OIL (BHN BAKU KOSMETIK) COA B2200126\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REFINED SWEET ALMOND OIL EU PH (BHN BAKU KOSMETIK) COA B2200125\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15152919\", \"uraian\": \"REFINED SWEET ALMOND OIL EU PH (BHN BAKU KOSMETIK) COA B2200125\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2022051306\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2022051306\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201531,122201846\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201531,122201846\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201846,122201847\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201846,122201847\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILIGEL TM (BHN BAKU KOSMETIK) COA 2210001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILIGEL TM (BHN BAKU KOSMETIK) COA 2210001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785011118N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785011118N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) COA 2111716\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTENSO TM (BHN BAKU KOSMETIK) COA 2111716\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019729N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019729N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785011118N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785011118N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2133701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) COA 2133701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 702019449N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ABYSSINE 657 (BHN BAKU KOSMETIK) COA 702019449N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 2127414\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 2127414\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019919N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019919N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785011295N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785011295N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029946N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029946N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-003-Z\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-003-Z\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977... (BHN BAKU PEWARNA TABLET) COA SH660275\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977... (BHN BAKU PEWARNA TABLET) COA SH660275\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977... (BHN BAKU PEWARNA TABLET) COA SH660275\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977... (BHN BAKU PEWARNA TABLET) COA SH660275\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359... (BHN BAKU PEWARNA TABLET) COA SH658164\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359... (BHN BAKU PEWARNA TABLET) COA SH658164\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650023...(BHN BAKU PEWARNA TABLET) COA SH658094\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650023...(BHN BAKU PEWARNA TABLET) COA SH658094\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K14834... (BHN BAKU PEWARNA TABLET) COA SH658096\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K14834... (BHN BAKU PEWARNA TABLET) COA SH658096\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILMCOATING SYSTEM YS-1-7040... (BHN BAKU PEWARNA TABLET) COA SH657795\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILMCOATING SYSTEM YS-1-7040... (BHN BAKU PEWARNA TABLET) COA SH657795\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLICENTERIC SYSTEM 93A62337...(BHN BAKU PEWARNA TABLET) COA SH658162\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLICENTERIC SYSTEM 93A62337...(BHN BAKU PEWARNA TABLET) COA SH658162\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F32371... (BHN BAKU PEWARNA TABLET) COA SH658168\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F32371... (BHN BAKU PEWARNA TABLET) COA SH658168\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229... (BHN BAKU PEWARNA TABLET) COA SH658229\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229... (BHN BAKU PEWARNA TABLET) COA SH658229\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55015 RED(BHN BAKU PEWARNA TABLET) COA SH658172\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55015 RED(BHN BAKU PEWARNA TABLET) COA SH658172\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014.. (BHN BAKU PEWARNA TABLET) COA SH658170\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014.. (BHN BAKU PEWARNA TABLET) COA SH658170\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K540033...(BHN BAKU PEWARNA TABLET) COA SH658174\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K540033...(BHN BAKU PEWARNA TABLET) COA SH658174\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B22239... (BHN BAKU PEWARNA TABLET) COA SH658100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03B22239... (BHN BAKU PEWARNA TABLET) COA SH658100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011...(BHN BAKU PEWARNA TABLET) COA SH658171\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011...(BHN BAKU PEWARNA TABLET) COA SH658171\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B82443...(BHN BAKU PEWARNA TABLET) COA SH658101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03B82443...(BHN BAKU PEWARNA TABLET) COA SH658101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILMCOATING SYSTEM YS-1-19025-A... (BHN BAKU PEWARNA TABLET) COA SH657560\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILMCOATING SYSTEM YS-1-19025-A... (BHN BAKU PEWARNA TABLET) COA SH657560\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) COA SH659474\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) COA SH659474\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-22-17515..(BHN BAKU PEWARNA TABLET) COA SH658927\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-22-17515..(BHN BAKU PEWARNA TABLET) COA SH658927\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229... (BHN BAKU PEWARNA TABLET) COA SH659474\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229... (BHN BAKU PEWARNA TABLET) COA SH659474\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) QX QUICK AND FLEXIBLEFILM COATING SYSTEM... (BHN BAKU PEWARNA TABLET) COA SH657556\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) QX QUICK AND FLEXIBLEFILM COATING SYSTEM... (BHN BAKU PEWARNA TABLET) COA SH657556\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET) COA SH658712\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET) COA SH658712\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86674... (BHN BAKU PEWARNA TABLET) COA SH657564\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86674... (BHN BAKU PEWARNA TABLET) COA SH657564\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-22-17515..(BHN BAKU PEWARNA TABLET) COA SH658927\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-22-17515..(BHN BAKU PEWARNA TABLET) COA SH658927\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A62337..(BHN BAKU PEWARNA TABLET) COA SH658960\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A62337..(BHN BAKU PEWARNA TABLET) COA SH658960\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET) COA SH658961\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET) COA SH658961\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET) COA SH659788\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET) COA SH659788\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-22-7719...(BHN BAKU PEWARNA TABLET) COA SH657476\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-22-7719...(BHN BAKU PEWARNA TABLET) COA SH657476\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650018...(BHN BAKU PEWARNA TABLET) COA SH659125\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650018...(BHN BAKU PEWARNA TABLET) COA SH659125\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIROXICAM (BAHAN BAKU OBAT) COA PRX2022002M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"PIROXICAM (BAHAN BAKU OBAT) COA PRX2022002M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CANDESARTAN CILEXETIL (BAHAN BAKU OBAT ) COA 5668-21-148\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"CANDESARTAN CILEXETIL (BAHAN BAKU OBAT ) COA 5668-21-148\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IRBESARTAN (BAHAN BAKU OBAT ) COA C5637-21-060\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"IRBESARTAN (BAHAN BAKU OBAT ) COA C5637-21-060\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEROPENEM TRIHYDRATE WITH SODIUM CARBONATE STERILE (BHN BAKU OBAT ) COA S0820220115\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30032000\", \"uraian\": \"MEROPENEM TRIHYDRATE WITH SODIUM CARBONATE STERILE (BHN BAKU OBAT ) COA S0820220115\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G5122.. (BHN BAKU PEWARNA TABLET) COA GA709228\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G5122.. (BHN BAKU PEWARNA TABLET) COA GA709228\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING... (BHN BAKU PEWARNA TABLET) COA GA708838\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING... (BHN BAKU PEWARNA TABLET) COA GA708838\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977... (BHN BAKU PEWARNA TABLET) COA GA709224\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977... (BHN BAKU PEWARNA TABLET) COA GA709224\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 02F52182... (BHN BAKU PEWARNA TABLET) COA GA709237\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 02F52182... (BHN BAKU PEWARNA TABLET) COA GA709237\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O6317...(BHN BAKU PEWARNA TABLET) COA GA709233\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O6317...(BHN BAKU PEWARNA TABLET) COA GA709233\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86512... (BHN BAKU PEWARNA TABLET) COA GA709232\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86512... (BHN BAKU PEWARNA TABLET) COA GA709232\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET) COA 80W86629\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET) COA 80W86629\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G54002 PINK (BHN BAKU PEWARNA TABLET) COA GA709227\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G54002 PINK (BHN BAKU PEWARNA TABLET) COA GA709227\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B84893 PINK (BHN BAKU PEWARNA TABLET) COA GA708298\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03B84893 PINK (BHN BAKU PEWARNA TABLET) COA GA708298\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B28796 WHITE (BHN BAKU PEWARNA TABLET) COA GA708889\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03B28796 WHITE (BHN BAKU PEWARNA TABLET) COA GA708889\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A... (BHN BAKU PEWARNA TABLET) COA GA708954\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A... (BHN BAKU PEWARNA TABLET) COA GA708954\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G52990... (BHN BAKU PEWARNA TABLET) COA GA709236\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G52990... (BHN BAKU PEWARNA TABLET) COA GA709236\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G54002... (BHN BAKU PEWARNA TABLET) COA GA709227\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G54002... (BHN BAKU PEWARNA TABLET) COA GA709227\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND (R) PB-665012 BROWN (BHN BAKU PEWARNA TABLET) COA GA709225\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"PIGMENT BLEND (R) PB-665012 BROWN (BHN BAKU PEWARNA TABLET) COA GA709225\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G66945... (BHN BAKU PEWARNA TABLET) COA GA709226\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G66945... (BHN BAKU PEWARNA TABLET) COA GA709226\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G52696... (BHN BAKU PEWARNA TABLET) COA GA709131\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G52696... (BHN BAKU PEWARNA TABLET) COA GA709131\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND (R) PB-52366 YELLOW (BHN BAKU PEWARNA TABLET) COA GA709235\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"PIGMENT BLEND (R) PB-52366 YELLOW (BHN BAKU PEWARNA TABLET) COA GA709235\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G62544... (BHN BAKU PEWARNA TABLET) COA GA709230\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G62544... (BHN BAKU PEWARNA TABLET) COA GA709230\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 20325,20408,20429\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 20325,20408,20429\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340355,B340381,B340382\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX COMPACTED (BHN BAKU OBAT) COA B340355,B340381,B340382\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 22B0044700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 22B0044700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VALERIAN DRY HYDR. EXTR. (BAHAN BAKU SUPLEMEN) COA 21B0129000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VALERIAN DRY HYDR. EXTR. (BAHAN BAKU SUPLEMEN) COA 21B0129000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102202007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102202007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M-31,0PCT (BHN BAKU OBAT) COA 102229009,102229010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MG HYD PASTE USP TYPE M-31,0PCT (BHN BAKU OBAT) COA 102229009,102229010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT19060003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT19060003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GENIVIDA(TM) TG (BHN BAKU SUPPLEMEN) COA UT21100003,UT21100004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329900\", \"uraian\": \"GENIVIDA(TM) TG (BHN BAKU SUPPLEMEN) COA UT21100003,UT21100004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HA02900,HA02430\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34024990\", \"uraian\": \"MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HA02900,HA02430\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA GCH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA GCH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA GEB\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) COA GEB\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS KR-30(BHN BAKU KOSMETIK) COA GDD\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS KR-30(BHN BAKU KOSMETIK) COA GDD\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA GBN\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROTESIL LH (BHN BAKU KOSMETIK) COA GBN\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS SILK-1000 (BHN BAKU KOSMETIK) COA GDH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS SILK-1000 (BHN BAKU KOSMETIK) COA GDH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELLAN GUM (GELLANEER LAF) (BHN BAKU MAKANAN) COA 2205L0465\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"GELLAN GUM (GELLANEER LAF) (BHN BAKU MAKANAN) COA 2205L0465\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1251471\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1251471\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1251471\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1251471\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASAMINO ACIDS TECHNICAL 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1207006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASAMINO ACIDS TECHNICAL 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1207006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2024471\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2024471\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2352582\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2352582\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2352583\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2352583\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2352583\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2352583\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1071038\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1071038\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1071038\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1071038\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1071038\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1071038\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2034964\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2034964\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NATURAL SOURCE MIXED TOCOPHEROLS (BHN BAKU KOSMETIK) COA 220505M001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"NATURAL SOURCE MIXED TOCOPHEROLS (BHN BAKU KOSMETIK) COA 220505M001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOCUSATE SODIUM (BHN BAKU OBAT) COA SD1061131\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"DOCUSATE SODIUM (BHN BAKU OBAT) COA SD1061131\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) COA 1579834\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) COA 1579834\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) COA 1580986\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) COA 1580986\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) COA 1583570\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) COA 1583570\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-CARNITINE (EP GRADE)(BHN BAKU KOSMETIK)COA 10100120220173\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29239000\", \"uraian\": \"L-CARNITINE (EP GRADE)(BHN BAKU KOSMETIK)COA 10100120220173\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102202007,102202008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102202007,102202008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M -31.0PCT (BHN BAKU OBAT) COA 102229016,102229019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MG HYD PASTE USP TYPE M -31.0PCT (BHN BAKU OBAT) COA 102229016,102229019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102202008,102202009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102202008,102202009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51469..(BHN BAKU PEWARNA TABLET) COA SH660357\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51469..(BHN BAKU PEWARNA TABLET) COA SH660357\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51469...(BHN BAKU PEWARNA TABLET) COA SH660356\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51469...(BHN BAKU PEWARNA TABLET) COA SH660356\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) COA SH658738\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) COA SH658738\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18509..(BHN BAKU PEWARNA TABLET) COA SH660367\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18509..(BHN BAKU PEWARNA TABLET) COA SH660367\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751... (BHN BAKU PEWARNA TABLET) COA SH657921\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751... (BHN BAKU PEWARNA TABLET) COA SH657921\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55410 RED(BHN BAKU PEWARNA TABLET) COA SH658713\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55410 RED(BHN BAKU PEWARNA TABLET) COA SH658713\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001...(BHN BAKU PEWARNA TABLET) COA SH658676\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001...(BHN BAKU PEWARNA TABLET) COA SH658676\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G60929... (BHN BAKU PEWARNA TABLET) COA SH658706\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G60929... (BHN BAKU PEWARNA TABLET) COA SH658706\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET) COA SH658712\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET) COA SH658712\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014...(BHN BAKU PEWARNA TABLET) COA SH658705\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014...(BHN BAKU PEWARNA TABLET) COA SH658705\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-7027... (BHN BAKU PEWARNA TABLET) COA SH658988\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-7027... (BHN BAKU PEWARNA TABLET) COA SH658988\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-7027...(BHN BAKU PEWARNA TABLET) COA SH660320\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-7027...(BHN BAKU PEWARNA TABLET) COA SH660320\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O63173..(BHN BAKU PEWARNA TABLET) COA SH658843\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O63173..(BHN BAKU PEWARNA TABLET) COA SH658843\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650023..(BHN BAKU PEWARNA TABLET) COA SH658809\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650023..(BHN BAKU PEWARNA TABLET) COA SH658809\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET) COA SH658810\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET) COA SH658810\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359..(BHN BAKU PEWARNA TABLET) COA SH660384\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359..(BHN BAKU PEWARNA TABLET) COA SH660384\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18509..(BHN BAKU PEWARNA TABLET) COA SH660366\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18509..(BHN BAKU PEWARNA TABLET) COA SH660366\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A... (BHN BAKU PEWARNA TABLET) COA SH656823\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A... (BHN BAKU PEWARNA TABLET) COA SH656823\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751... (BHN BAKU PEWARNA TABLET) COA SH660641\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751... (BHN BAKU PEWARNA TABLET) COA SH660641\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F48105 .. (BHN BAKU PEWARNA TABLET) COA SH660642\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F48105 .. (BHN BAKU PEWARNA TABLET) COA SH660642\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011.. (BHN BAKU PEWARNA TABLET) COA SH659019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011.. (BHN BAKU PEWARNA TABLET) COA SH659019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM... (BHN BAKU PEWARNA TABLET) COA SH659103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM... (BHN BAKU PEWARNA TABLET) COA SH659103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET) COA SH660394\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET) COA SH660394\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUSMOISTURE BARRIER COATING.. (BHN BAKU PEWARNA TABLET) COA SH660395\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUSMOISTURE BARRIER COATING.. (BHN BAKU PEWARNA TABLET) COA SH660395\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUSMOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET) COA SH660393\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUSMOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET) COA SH660393\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359...(BHN BAKU PEWARNA TABLET) COA SH660383\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359...(BHN BAKU PEWARNA TABLET) COA SH660383\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359..(BHN BAKU PEWARNA TABLET) COA SH660382\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359..(BHN BAKU PEWARNA TABLET) COA SH660382\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359..(BHN BAKU PEWARNA TABLET) COA SH660381\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359..(BHN BAKU PEWARNA TABLET) COA SH660381\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977..(BHN BAKU PEWARNA TABLET) COA SH658868\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977..(BHN BAKU PEWARNA TABLET) COA SH658868\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM... (BHN BAKU PEWARNA TABLET) COA SH658806\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM... (BHN BAKU PEWARNA TABLET) COA SH658806\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G65197... (BHN BAKU PEWARNA TABLET) COA SH658807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G65197... (BHN BAKU PEWARNA TABLET) COA SH658807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977.. (BHN BAKU PEWARNA TABLET) COA SH660276\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977.. (BHN BAKU PEWARNA TABLET) COA SH660276\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011.. (BHN BAKU PEWARNA TABLET) COA SH658520\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011.. (BHN BAKU PEWARNA TABLET) COA SH658520\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G63147.. (BHN BAKU PEWARNA TABLET) COA SH658521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G63147.. (BHN BAKU PEWARNA TABLET) COA SH658521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE.. (BHN BAKU PEWARNA TABLET) COA SH658563\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE.. (BHN BAKU PEWARNA TABLET) COA SH658563\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001.. (BHN BAKU PEWARNA TABLET) COA SH658522\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001.. (BHN BAKU PEWARNA TABLET) COA SH658522\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND (R) PB-21158 GREEN (BHN BAKU PEWARNA TABLET) COA SH660559\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"PIGMENT BLEND (R) PB-21158 GREEN (BHN BAKU PEWARNA TABLET) COA SH660559\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55384 RED(BHN BAKU PEWARNA TABLET) COA SH658551\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55384 RED(BHN BAKU PEWARNA TABLET) COA SH658551\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 02K19253.. (BHN BAKU PEWARNA TABLET) COA SH658552\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 02K19253.. (BHN BAKU PEWARNA TABLET) COA SH658552\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B84929.. (BHN BAKU PEWARNA TABLET) COA SH658553\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03B84929.. (BHN BAKU PEWARNA TABLET) COA SH658553\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G63147.. (BHN BAKU PEWARNA TABLET) COA SH658521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G63147.. (BHN BAKU PEWARNA TABLET) COA SH658521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G63147.. (BHN BAKU PEWARNA TABLET) COA SH658521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G63147.. (BHN BAKU PEWARNA TABLET) COA SH658521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G63147.. (BHN BAKU PEWARNA TABLET) COA SH658521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G63147.. (BHN BAKU PEWARNA TABLET) COA SH658521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERRIC HYDROXIDE POLYMALTOSE COMPLEX POWDER (BHN BAKU SUPPLEMEN) COA 3116347\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29400000\", \"uraian\": \"FERRIC HYDROXIDE POLYMALTOSE COMPLEX POWDER (BHN BAKU SUPPLEMEN) COA 3116347\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DICLOFENAC POTASSIUM BP 2022 (BHN BAKU OBAT) COA DFK/12040099 S/D 12040100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"DICLOFENAC POTASSIUM BP 2022 (BHN BAKU OBAT) COA DFK/12040099 S/D 12040100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DICLOFENAC SODIUM USP 44 (BHN BAKU OBAT) COA DFS/12030110, 12050182 S/D 12050187\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"DICLOFENAC SODIUM USP 44 (BHN BAKU OBAT) COA DFS/12030110, 12050182 S/D 12050187\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND APRICOT EXTRACT (BHN BAKU KOSMETIK)COA PAS-011352\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND APRICOT EXTRACT (BHN BAKU KOSMETIK)COA PAS-011352\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 2022D1282\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28331900\", \"uraian\": \"HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 2022D1282\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND PEACH EXTRACT (BHN BAKU KOSMETIK)COA PEA-020381\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND PEACH EXTRACT (BHN BAKU KOSMETIK)COA PEA-020381\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND CACTUS EXTRACT (BHN BAKU KOSMETIK) COA CAB-052921\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND CACTUS EXTRACT (BHN BAKU KOSMETIK) COA CAB-052921\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-020971\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-020971\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-051201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-051201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 2022D1282\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28331900\", \"uraian\": \"HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 2022D1282\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-030742,HMVBD-041052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-030742,HMVBD-041052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARBUTIN (BHN BAKU KOSMETIK) COA ARP-012642\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ARBUTIN (BHN BAKU KOSMETIK) COA ARP-012642\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-BLACK PEARL POWDER (BHN BAKU KOSMETIK) COA PDEG-021181\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND BIO-BLACK PEARL POWDER (BHN BAKU KOSMETIK) COA PDEG-021181\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1220607\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1220607\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER(BHN BAKU KOSMETIK) COA MUP-021421\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND MULBERRY ROOT POWDER(BHN BAKU KOSMETIK) COA MUP-021421\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENAS (BHN BAKU KOSMETIK) COA NASB-011122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21022090\", \"uraian\": \"SENAS (BHN BAKU KOSMETIK) COA NASB-011122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 2022D1282\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28331900\", \"uraian\": \"HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 2022D1282\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3319471\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3319471\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA LC 013-22-801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 200 (BHN BAKU OBAT) COA LC 013-22-801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2022051306\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2022051306\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLOTRIMAZOLE MICRONIZED (BHN BAKU OBAT ) COA 202205100104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"CLOTRIMAZOLE MICRONIZED (BHN BAKU OBAT ) COA 202205100104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM (BHN BAKU OBAT) COA M113961\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM (BHN BAKU OBAT) COA M113961\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/05/140522,150522,160522,190522,200522\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/05/140522,150522,160522,190522,200522\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 22E0807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 22E0807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE AM PELLETS (BHN BAKU OBAT) COA 22E1205\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE AM PELLETS (BHN BAKU OBAT) COA 22E1205\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE BM PELLETS (BHN BAKU OBAT) COA 21E2708\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE BM PELLETS (BHN BAKU OBAT) COA 21E2708\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105711822\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200H (BHN BAKU OBAT) COA L105711822\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11220330\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11220330\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ20210554\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ20210554\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ20210554,UQ20310593\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ20210554,UQ20310593\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ20310593\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ20310593\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02201004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02201004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92205167,XW92205169\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"V003400 (BHN BAKU MAKANAN) COA XW92205167,XW92205169\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 221256\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 221256\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 220149\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 220149\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 221111\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 221111\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 221085\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"IZAYOI (BHN BAKU KOSMETIK) COA 221085\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 220495\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 220495\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 221092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNEBUSTERS (BHN BAKU KOSMETIK) COA 221092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 220079\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 220079\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 220495\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 220495\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 220154\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 220154\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JAGUAR HP 105 SGI 25KG CARDBOARD CARTON (BHN BAKU KOSMETIK) COA H2202023C\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"JAGUAR HP 105 SGI 25KG CARDBOARD CARTON (BHN BAKU KOSMETIK) COA H2202023C\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 21LNC0612SQ047\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101990\", \"uraian\": \"NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 21LNC0612SQ047\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU SUPPLEMEN) COA 122201847\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU SUPPLEMEN) COA 122201847\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITASMOOTH (R) 041 (BHN BAKU SUPPLEMEN) COA 122201660\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28365010\", \"uraian\": \"VITASMOOTH (R) 041 (BHN BAKU SUPPLEMEN) COA 122201660\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHARMABURST (R) 500 (BHN BAKU SUPPLEMEN) COA 122101232\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069099\", \"uraian\": \"PHARMABURST (R) 500 (BHN BAKU SUPPLEMEN) COA 122101232\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SORBITOL SPECIAL TM MDF 85 (BHN BAKU SUPPLEMEN) COA 122201598\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054400\", \"uraian\": \"SORBITOL SPECIAL TM MDF 85 (BHN BAKU SUPPLEMEN) COA 122201598\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHARMABURST (R) C1 (BHN BAKU SUPPLEMEN) COA 122201576\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069099\", \"uraian\": \"PHARMABURST (R) C1 (BHN BAKU SUPPLEMEN) COA 122201576\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SORBITOL SPECIAL TM MDF 85 (BHN BAKU SUPPLEMEN) COA 122201598\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054400\", \"uraian\": \"SORBITOL SPECIAL TM MDF 85 (BHN BAKU SUPPLEMEN) COA 122201598\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AQUACOAT ECD-30 ETHYLCELLULOSE... (BHN BAKU PEWARNA TABLET) COA 2173903592\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"AQUACOAT ECD-30 ETHYLCELLULOSE... (BHN BAKU PEWARNA TABLET) COA 2173903592\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AQUACOAT CPD-30 CELLULOSE... (BHN BAKU PEWARNA TABLET) COA 2174048787\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"AQUACOAT CPD-30 CELLULOSE... (BHN BAKU PEWARNA TABLET) COA 2174048787\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE... (BHN BAKU PEWARNA TABLET) COA SH658813\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE... (BHN BAKU PEWARNA TABLET) COA SH658813\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE... (BHN BAKU PEWARNA TABLET) COA SH658814\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE... (BHN BAKU PEWARNA TABLET) COA SH658814\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) KB LOW VISCOSITY FILM COATING SYSTEM... (BHN BAKU PEWARNA TABLET) COA SH658847\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) KB LOW VISCOSITY FILM COATING SYSTEM... (BHN BAKU PEWARNA TABLET) COA SH658847\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET) COA SH659788\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET) COA SH659788\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O665... (BHN BAKU PEWARNA TABLET) COA SH658848\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O665... (BHN BAKU PEWARNA TABLET) COA SH658848\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-22-1751.. (BHN BAKU PEWARNA TABLET) COA SH658820\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-22-1751.. (BHN BAKU PEWARNA TABLET) COA SH658820\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229... (BHN BAKU PEWARNA TABLET) COA SH660681\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229... (BHN BAKU PEWARNA TABLET) COA SH660681\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O92157... (BHN BAKU PEWARNA TABLET) COA SH658875\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O92157... (BHN BAKU PEWARNA TABLET) COA SH658875\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A6233...(BHN BAKU PEWARNA TABLET) COA SH658851\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A6233...(BHN BAKU PEWARNA TABLET) COA SH658851\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229... (BHN BAKU PEWARNA TABLET) COA SH660681\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229... (BHN BAKU PEWARNA TABLET) COA SH660681\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 21K58794... (BHN BAKU PEWARNA TABLET) COA SH658823\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 21K58794... (BHN BAKU PEWARNA TABLET) COA SH658823\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE... (BHN BAKU PEWARNA TABLET) COA SH658871\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE... (BHN BAKU PEWARNA TABLET) COA SH658871\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K580000.. (BHN BAKU PEWARNA TABLET) COA SH658873\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K580000.. (BHN BAKU PEWARNA TABLET) COA SH658873\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-2136... (BHN BAKU PEWARNA TABLET) COA SH658825\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-2136... (BHN BAKU PEWARNA TABLET) COA SH658825\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G65003...(BHN BAKU PEWARNA TABLET) COA SH658826\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G65003...(BHN BAKU PEWARNA TABLET) COA SH658826\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F15789... (BHN BAKU PEWARNA TABLET) COA SH659101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F15789... (BHN BAKU PEWARNA TABLET) COA SH659101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA 0000079486\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA 0000079486\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA 0000079487\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA 0000079487\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYDROCORTISONE ACETATE EP/USP (BHN BAKU OBAT) COA NEHAC220301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"HYDROCORTISONE ACETATE EP/USP (BHN BAKU OBAT) COA NEHAC220301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE EP/USP (BHN BAKU OBAT) COA NMP220411\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE EP/USP (BHN BAKU OBAT) COA NMP220411\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISONE USP (BHN BAKU OBAT) COA NPD211103,NPD220310\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISONE USP (BHN BAKU OBAT) COA NPD211103,NPD220310\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CINNARIZINE BP/EP (BAHAN BAKU OBAT) COA CIN/06221075\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29315990\", \"uraian\": \"CINNARIZINE BP/EP (BAHAN BAKU OBAT) COA CIN/06221075\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RANITIDINE HYDROCHLORIDE USP (BAHAN BAKU OBAT) COA RH4970622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29321900\", \"uraian\": \"RANITIDINE HYDROCHLORIDE USP (BAHAN BAKU OBAT) COA RH4970622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ20317006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ20317006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALUMINIUM HYDROXIDE ACETATE POWDER (BHN BAKU SUPPLEMEN) COA 3119107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29152990\", \"uraian\": \"ALUMINIUM HYDROXIDE ACETATE POWDER (BHN BAKU SUPPLEMEN) COA 3119107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2203901903\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2203901903\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2203901903\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2203901903\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 985-L-MENTHOL CRYSTALS INDIAN NATURAL (BHN BAKU KOSMETIK) COA NFPL.MEN.21.004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061100\", \"uraian\": \"985-L-MENTHOL CRYSTALS INDIAN NATURAL (BHN BAKU KOSMETIK) COA NFPL.MEN.21.004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRISODIUMCITRATE DIHYDRATE FINE GRANULAR (BHN BAKU SUPPLEMEN) COA UJ217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"TRISODIUMCITRATE DIHYDRATE FINE GRANULAR (BHN BAKU SUPPLEMEN) COA UJ217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201847,122201848\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201847,122201848\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201848\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201848\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EMULIUM MELLIFERA MB CAR (BHN BAKU KOSMETIK) COA 190160\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"EMULIUM MELLIFERA MB CAR (BHN BAKU KOSMETIK) COA 190160\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EMULIUM MELLIFERA MB CAR (BHN BAKU KOSMETIK) COA 190223\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"EMULIUM MELLIFERA MB CAR (BHN BAKU KOSMETIK) COA 190223\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP22064032,XP22064033,XP22064034,XP22064035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP22064032,XP22064033,XP22064034,XP22064035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA LC013-22-801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA LC013-22-801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-220423\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-220423\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP16122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP16122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWDER FORM CATCOL C135(L) GRADE(B.BAKU KOSMETIK) COA 462/22\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GUAR GUM TREATED AND PULVERISED IN POWDER FORM CATCOL C135(L) GRADE(B.BAKU KOSMETIK) COA 462/22\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 1,3-BUTYLENE GLYCOL, COSMETIC QUALITY(BHN BAKU KOSMETIK) COA P0622314CC\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"1,3-BUTYLENE GLYCOL, COSMETIC QUALITY(BHN BAKU KOSMETIK) COA P0622314CC\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) COA 7766050\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) COA 7766050\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B090522\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B090522\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB290522\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB290522\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B090522\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B090522\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB290522\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB290522\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LG120422\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LG120422\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE (BHN BAKU OBAT) COA NED220602,NED220603,NED220604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE (BHN BAKU OBAT) COA NED220602,NED220603,NED220604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AESTHEFILL V200 (POLYLACTIC ACID) COA AF220506\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"AESTHEFILL V200 (POLYLACTIC ACID) COA AF220506\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AESTHEFILL V200 (POLYLACTIC ACID) COA AF220506, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"90189090\", \"uraian\": \"AESTHEFILL V200 (POLYLACTIC ACID) COA AF220506, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202206-020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35040000\", \"uraian\": \"SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202206-020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC CALCIUM ASCORBATE DC (BHN BAKU SUPPLEMEN) COA HPT2202005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC CALCIUM ASCORBATE DC (BHN BAKU SUPPLEMEN) COA HPT2202005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JOJOBA OIL VIRGIN LOW ODOUR (BHN BAKU KOSMETIK) COA 159827\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15159011\", \"uraian\": \"JOJOBA OIL VIRGIN LOW ODOUR (BHN BAKU KOSMETIK) COA 159827\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 2210030697\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 2210030697\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO220202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO220202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WITCH HAZEL ORGANIC DISTILLATE 1:10 (BHN BAKU KOSMETIK) COA HAVD220605-BIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"WITCH HAZEL ORGANIC DISTILLATE 1:10 (BHN BAKU KOSMETIK) COA HAVD220605-BIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO220202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO220202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) COA ANTS220301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) COA ANTS220301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK) COA EG209-220602\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK) COA EG209-220602\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HORSECHESNUT PHYTELENE EG 402 (BHN BAKU KOSMETIK) COA EG042-220101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HORSECHESNUT PHYTELENE EG 402 (BHN BAKU KOSMETIK) COA EG042-220101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GREENSIL (BHN BAKU KOSMETIK) COA GS220401-I\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GREENSIL (BHN BAKU KOSMETIK) COA GS220401-I\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS220202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS220202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS220202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS220202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO220202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO220202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) COA ANTS220301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) COA ANTS220301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS220202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS220202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GREENSIL (BHN BAKU KOSMETIK) COA GS220401-I\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GREENSIL (BHN BAKU KOSMETIK) COA GS220401-I\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIE220401\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIE220401\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIE220602\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIE220602\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIGELINE (BHN BAKU KOSMETIK) COA KAF220402-B\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KIGELINE (BHN BAKU KOSMETIK) COA KAF220402-B\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (BHN BAKU KOSMETIK) COA ROSD220202-BIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (BHN BAKU KOSMETIK) COA ROSD220202-BIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KALE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA BOV2206R1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KALE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA BOV2206R1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAMANOL BIO IL (BHN BAKU KOSMETIK) COA CIN210701-ALMBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"TAMANOL BIO IL (BHN BAKU KOSMETIK) COA CIN210701-ALMBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRASIL CM5 L (BHN BAKU KOSMETIK) COA 2226WKQ615\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29319049\", \"uraian\": \"MIRASIL CM5 L (BHN BAKU KOSMETIK) COA 2226WKQ615\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D011L9UL01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D011L9UL01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180K61001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM CR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180K61001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180M1S001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180M1S001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180L3B021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180L3B021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180K61001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM CR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180K61001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180L51022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180L51022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180K61001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM CR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180K61001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN546900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN546900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) COA 1581270\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) COA 1581270\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) COA 1583382\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) COA 1583382\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 220202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"OILESS'CITY TM (BHN BAKU KOSMETIK) COA 220202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 220211\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 220211\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02202018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02202018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0922020004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX (BHN BAKU KOSMETIK) COA 0922020004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-PANTHENOL 50 L (BHN BAKU KOSMETIK) COA TL02109649\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL-PANTHENOL 50 L (BHN BAKU KOSMETIK) COA TL02109649\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92205383\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92205383\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0040349\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0040349\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT21070076,UT21090088,UT22010002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT21070076,UT21090088,UT22010002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21120414,UT22020065\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21120414,UT22020065\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001643582\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SLX (BHN BAKU KOSMETIK) COA 0001643582\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS3851121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS3851121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02109811\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02109811\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050963 S/D 0321050968,0321050986,0321050994,0321050995\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050963 S/D 0321050968,0321050986,0321050994,0321050995\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0922020004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX (BHN BAKU KOSMETIK) COA 0922020004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050995,0321051168,0321051169\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050995,0321051168,0321051169\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX COMPACTED CEFADROXIL (BHN BAKU OBAT) COA B340382,B340384,B340386\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX COMPACTED CEFADROXIL (BHN BAKU OBAT) COA B340382,B340384,B340386\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP16122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP16122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA 21100709,21100710\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29391900\", \"uraian\": \"PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA 21100709,21100710\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HEXYLENE GLYCOL (BHN BAKU KOSMETIK) COA 20040103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053900\", \"uraian\": \"HEXYLENE GLYCOL (BHN BAKU KOSMETIK) COA 20040103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FENTACARE 1631 25 MB 200KG PLAS DR (BHN BAKU KOSMETIK ) COA ZH22E1602M,ZH22F1803M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29239000\", \"uraian\": \"FENTACARE 1631 25 MB 200KG PLAS DR (BHN BAKU KOSMETIK ) COA ZH22E1602M,ZH22F1803M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPAGLOS (R) TABLET CORESEALANT PRODUCT OPAGLOS... (BHN BAKU PEWARNA TABLET) COA DT732553\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPAGLOS (R) TABLET CORESEALANT PRODUCT OPAGLOS... (BHN BAKU PEWARNA TABLET) COA DT732553\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPATINT (R) CONCENTRATED COLOR DISPERSION G-50659 BLUE (BHN BAKU PEWARNA TABLET) COA DT732525\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPATINT (R) CONCENTRATED COLOR DISPERSION G-50659 BLUE (BHN BAKU PEWARNA TABLET) COA DT732525\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPATINT (R) CONCENTRATED COLOR DISPERSION G-12021.. (BHN BAKU PEWARNA TABLET) COA DT732526\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPATINT (R) CONCENTRATED COLOR DISPERSION G-12021.. (BHN BAKU PEWARNA TABLET) COA DT732526\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE (R) MONOGRAMMING INK S-1-277001 BLACK (BHN BAKU PEWARNA TABLET) COA DT733199\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPACODE (R) MONOGRAMMING INK S-1-277001 BLACK (BHN BAKU PEWARNA TABLET) COA DT733199\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX (R) OPAQUE COLOR COATING CONCENTRATE... (BHN BAKU PEWARNA TABLET) COA DT733258\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPALUX (R) OPAQUE COLOR COATING CONCENTRATE... (BHN BAKU PEWARNA TABLET) COA DT733258\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP16122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP16122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM (BHN BAKU OBAT) COA M113962\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM (BHN BAKU OBAT) COA M113962\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM (BHN BAKU OBAT) COA M113961\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM (BHN BAKU OBAT) COA M113961\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977... (BHN BAKU PEWARNA TABLET) COA GA709377\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977... (BHN BAKU PEWARNA TABLET) COA GA709377\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET) COA GA709938\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET) COA GA709938\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229... (BHN BAKU PEWARNA TABLET) COA GA709864\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229... (BHN BAKU PEWARNA TABLET) COA GA709864\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55015... (BHN BAKU PEWARNA TABLET) COA GA709942\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55015... (BHN BAKU PEWARNA TABLET) COA GA709942\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC... (BHN BAKU PEWARNA TABLET) COA GA709958\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC... (BHN BAKU PEWARNA TABLET) COA GA709958\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET) COA GA709939\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET) COA GA709939\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SERASENSE SF CM5 (BAHAN BAKU SUPLEMEN) COA SA20616032,SA20616033\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100090\", \"uraian\": \"SERASENSE SF CM5 (BAHAN BAKU SUPLEMEN) COA SA20616032,SA20616033\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330... (BHN BAKU SUPLEMEN) COA 2AX2206040,2AX2207003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS BP2009/E330... (BHN BAKU SUPLEMEN) COA 2AX2206040,2AX2207003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA173223\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA173223\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) COA 321CAA0023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CETRIMIDE (BHN BAKU KOSMETIK) COA 321CAA0023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-2206128\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29146200\", \"uraian\": \"COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-2206128\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2004477\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2004477\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2046556\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2046556\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1188932\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1188932\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1272847\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1272847\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1229930\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1229930\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02E073M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02E073M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 1357822\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TETRATHIONATE BROTH BASE 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 1357822\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEMOGLOBIN FREEZE DRIED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2046463\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEMOGLOBIN FREEZE DRIED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2046463\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIADIS MSRV 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2097356\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIADIS MSRV 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2097356\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1133939\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1133939\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2038852\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2038852\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST CARBON BASE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1348724\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE YEAST CARBON BASE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1348724\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1307340\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1307340\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02E073M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02E073M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1264672\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1264672\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2060432\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2060432\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2067201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2067201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ENTEROCOCCOSEL AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2082306\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ENTEROCOCCOSEL AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2082306\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2060510\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2060510\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE PHOSPHATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2053882\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTOSE PHOSPHATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2053882\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2060544\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2060544\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2124239\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2124239\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2124239\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2124239\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2038654\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2038654\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2004477\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2004477\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1173733\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1173733\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2034944\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2034944\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1334236\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1334236\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT EXTRACT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2059951\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALT EXTRACT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2059951\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 153552\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 153552\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1096987\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1096987\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTONE GLUCOSE EXT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2060588\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTONE GLUCOSE EXT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2060588\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST CARBON BASE 100 G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1348724\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE YEAST CARBON BASE 100 G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1348724\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1307340\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1307340\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02E073M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02E073M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE OF BASAL MEDIUM 500GR(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1223658\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE OF BASAL MEDIUM 500GR(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1223658\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1216783\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1216783\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2028750\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2028750\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CHROMAGAR CANDIDA 500GM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2032975\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE CHROMAGAR CANDIDA 500GM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2032975\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2031326\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2031326\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2118764\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2118764\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-PA-C AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2066339\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M-PA-C AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2066339\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2124239\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2124239\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2130569\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2130569\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01E013M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01E013M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL ENTERIC /NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2068621,..\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL ENTERIC /NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2068621,..\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052209,G05052217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47063000\", \"uraian\": \"SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052209,G05052217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C YELLOW ...(BHN BAKU PEWARNA TABLET) COA WP848266:BB2368\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5287 FD&C YELLOW ...(BHN BAKU PEWARNA TABLET) COA WP848266:BB2368\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C YELLOW...(BHN BAKU PEWARNA TABLET) COA WP848266:BB2368\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5287 FD&C YELLOW...(BHN BAKU PEWARNA TABLET) COA WP848266:BB2368\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5396 ERYTHROSINE ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP844565:1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5396 ERYTHROSINE ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP844565:1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5177 FD&C YELLOW...(BHN BAKU PEWARNA TABLET) COA WP852905:BB3911\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5177 FD&C YELLOW...(BHN BAKU PEWARNA TABLET) COA WP852905:BB3911\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5627 FD&C BLUE...(BHN BAKU PEWARNA TABLET) COA WP855382:BB5688\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5627 FD&C BLUE...(BHN BAKU PEWARNA TABLET) COA WP855382:BB5688\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT (R) 6010 D&C YELLOW...(BHN BAKU PEWARNA TABLET) COA WP853294:BB4295\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT (R) 6010 D&C YELLOW...(BHN BAKU PEWARNA TABLET) COA WP853294:BB4295\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5406 FD&C RED...(BHN BAKU PEWARNA TABLET) COA WP851883:BB3825\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5406 FD&C RED...(BHN BAKU PEWARNA TABLET) COA WP851883:BB3825\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT (R) 6010 D&C YELLOW...(BHN BAKU PEWARNA TABLET) COA WP853294:BB4295\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT (R) 6010 D&C YELLOW...(BHN BAKU PEWARNA TABLET) COA WP853294:BB4295\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHTHALAVIN (R) ENTERIC COATING POLYMER...(BHN BAKU PEWARNA TABLET) COA WP853883\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PHTHALAVIN (R) ENTERIC COATING POLYMER...(BHN BAKU PEWARNA TABLET) COA WP853883\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830011016N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL TM (BHN BAKU KOSMETIK) COA 830011016N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785011118N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785011118N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HELIOGEL TM (BHN BAKU KOSMETIK) COA 2133001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HELIOGEL TM (BHN BAKU KOSMETIK) COA 2133001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HELIOGEL TM (BHN BAKU KOSMETIK) COA 2201402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HELIOGEL TM (BHN BAKU KOSMETIK) COA 2201402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANABLUE TM PARABEN FREE (BHN BAKU KOSMETIK) COA 788021070N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LANABLUE TM PARABEN FREE (BHN BAKU KOSMETIK) COA 788021070N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANACHRYS 2B PF (BHN BAKU KOSMETIK) COA 793059577N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LANACHRYS 2B PF (BHN BAKU KOSMETIK) COA 793059577N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834011019N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834011019N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 702019449N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ABYSSINE 657 (BHN BAKU KOSMETIK) COA 702019449N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799039934N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799039934N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOREALINE (R) AURORA (BHN BAKU KOSMETIK) COA BX1220017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"BOREALINE (R) AURORA (BHN BAKU KOSMETIK) COA BX1220017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 213916\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"CHRONOLINE TM (BHN BAKU KOSMETIK) COA 213916\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEFENSCALP TM (BHN BAKU KOSMETIK) COA 785071018N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"DEFENSCALP TM (BHN BAKU KOSMETIK) COA 785071018N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECOGEL TM (BHN BAKU KOSMETIK) COA 2207101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ECOGEL TM (BHN BAKU KOSMETIK) COA 2207101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2133703\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) COA 2133703\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029946N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029946N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000203944,0000203945,0000203950\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000203944,0000203945,0000203950\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000203950,0000203951\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000203950,0000203951\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000203950\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000203950\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210126 S/D 0708210129\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210126 S/D 0708210129\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000203951,0000204555,0000204556\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000203951,0000204555,0000204556\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT22040131\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT22040131\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0722010011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHS (BHN BAKU KOSMETIK) COA 0722010011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX MILK POWDER FOR ADULTS (BHN BAKU MAKANAN) COA XW92206118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX MILK POWDER FOR ADULTS (BHN BAKU MAKANAN) COA XW92206118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MINERAL PREMIX MILK POWDER FOR ADULTS V2 (BHN BAKU MAKANAN) COA XW92206119,XW92206120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"MINERAL PREMIX MILK POWDER FOR ADULTS V2 (BHN BAKU MAKANAN) COA XW92206119,XW92206120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02112843\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02112843\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02112843\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02112843\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI22040013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI22040013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS GLUCONATE, POWDER, USP 43 (BHN BAKU SUPPLEMEN) COA 3118317\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"FERROUS GLUCONATE, POWDER, USP 43 (BHN BAKU SUPPLEMEN) COA 3118317\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COPPER(II) GLUCONATE, FINE POWDER, USP 43 (BHN BAKU SUPPLEMEN) COA 3112568\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"COPPER(II) GLUCONATE, FINE POWDER, USP 43 (BHN BAKU SUPPLEMEN) COA 3112568\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA158227,ROA157227\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA158227,ROA157227\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA161227,ROA164226\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA161227,ROA164226\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE EGG YOLK ENRICHMENT50PCT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2103717\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"TUBE EGG YOLK ENRICHMENT50PCT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2103717\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SHIGELLA ANTIS POLY A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0198678\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SHIGELLA ANTIS POLY A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0198678\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2109248\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2109248\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1279394\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1279394\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2095202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2095202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2104103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2104103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2034559,..\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2034559,..\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2101523\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2101523\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU NAIVE/MEM T CELL PANEL 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2049693\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU NAIVE/MEM T CELL PANEL 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2049693\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2101523\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2101523\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU IL-4 APC 8D4-8 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1173686\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU IL-4 APC 8D4-8 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1173686\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD8 APC-CY7 SK1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2087793\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD8 APC-CY7 SK1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2087793\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD3 FITC HIT3A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2019528\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD3 FITC HIT3A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2019528\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYTOFIX/CYTOPER SOLN KIT (MEDIA TUK PENGEMBANGAN MIKRO ORGANISME), BATCH 2004703\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CYTOFIX/CYTOPER SOLN KIT (MEDIA TUK PENGEMBANGAN MIKRO ORGANISME), BATCH 2004703\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD28 NALE CD28.2 500UG (MEDIA TUK PENGEMBANGAN MIKRO ORGANISME), BATCH 1256634\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD28 NALE CD28.2 500UG (MEDIA TUK PENGEMBANGAN MIKRO ORGANISME), BATCH 1256634\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAIN BUFFER FBS 500ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1308379\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"STAIN BUFFER FBS 500ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1308379\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2088418\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2088418\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SHIGELLA ANTIS POLY C2 LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1308737\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SHIGELLA ANTIS POLY C2 LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1308737\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SHIGELLA ANTIS POLY B LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1217555\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SHIGELLA ANTIS POLY B LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1217555\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SHIGELLA ANTIS POLY C LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2021558\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SHIGELLA ANTIS POLY C LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2021558\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MS CD4 PERCP-CY.5 SK3 RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1294299\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"MS CD4 PERCP-CY.5 SK3 RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1294299\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0219127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0219127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2060591\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2060591\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2109248\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE B12 ASSAY MEDIUM USP 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2109248\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B04E067M,B05E111M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B04E067M,B05E111M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM CARBONATE IPH (BHN BAKU SUPPLEMEN) COA DOC1572221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"SODIUM CARBONATE IPH (BHN BAKU SUPPLEMEN) COA DOC1572221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINC SULFATE 1-HYDRATE, CRYST., PH.EUR.10.ED (BHN BAKU OBAT) COA 3117179\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"ZINC SULFATE 1-HYDRATE, CRYST., PH.EUR.10.ED (BHN BAKU OBAT) COA 3117179\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SORBITOL SOLUTION 70 PCT CRYSTALLINE (BHN BAKU KOSMETIK) COA 2223P191\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054400\", \"uraian\": \"SORBITOL SOLUTION 70 PCT CRYSTALLINE (BHN BAKU KOSMETIK) COA 2223P191\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 2210030697\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 2210030697\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRASIL CM5 L (BHN BAKU KOSMETIK) COA 2227WKQ115\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29319049\", \"uraian\": \"MIRASIL CM5 L (BHN BAKU KOSMETIK) COA 2227WKQ115\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2520422\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2520422\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) COA PH12160222\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) COA PH12160222\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ESOMEPRAZOLE MAGNESIUM TRIHYDRATE (BAHAN BAKU OBAT) COA B900100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"ESOMEPRAZOLE MAGNESIUM TRIHYDRATE (BAHAN BAKU OBAT) COA B900100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM 0501 AL HYD PDR (BHN BAKU SUPPLEMEN) COA 102160002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"BARCROFT TM 0501 AL HYD PDR (BHN BAKU SUPPLEMEN) COA 102160002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2203901903\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2203901903\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG220527,MCVG220607\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG220527,MCVG220607\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ISOFLAVONES 150 BDF - 10KG (BHN BAKU KOSMETIK) COA 0663878\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ISOFLAVONES 150 BDF - 10KG (BHN BAKU KOSMETIK) COA 0663878\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 220665,221726\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329900\", \"uraian\": \"K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 220665,221726\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALPINIAWHITE (BHN BAKU KOSMETIK) COA 221080\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ALPINIAWHITE (BHN BAKU KOSMETIK) COA 221080\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS (BHN BAKU SUPLEMEN) COA 3AX2206021,3AX2206018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS (BHN BAKU SUPLEMEN) COA 3AX2206021,3AX2206018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM CARBONATE, EXTRA LIGHT, POWDER (BHN BAKU OBAT) COA 3118231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28369990\", \"uraian\": \"MAGNESIUM CARBONATE, EXTRA LIGHT, POWDER (BHN BAKU OBAT) COA 3118231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NICLOSAMIDE ANHYDROUS (BHN BAKU PAKAN HEWAN) COA 20220310,20220308,\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"NICLOSAMIDE ANHYDROUS (BHN BAKU PAKAN HEWAN) COA 20220310,20220308,\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL02202021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU MAKANAN) COA TL02202021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22010021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22010021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22010021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22010021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12202018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12202018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11220326\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11220326\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V003400 (POST BORDER) COA XW92206283\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"V003400 (POST BORDER) COA XW92206283\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11220331,QZ11220332\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11220331,QZ11220332\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MINERAL PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92205553,XW92205554,XW92205555\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"MINERAL PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92205553,XW92205554,XW92205555\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92205552\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92205552\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92206283,XW92206284\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"V003400 (BHN BAKU MAKANAN) COA XW92206283,XW92206284\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060087\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060087\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00765702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"AMPHISOL K (BHN BAKU KOSMETIK) COA VE00765702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00765702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"AMPHISOL K (BHN BAKU KOSMETIK) COA VE00765702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321051227 S/D 0321051231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321051227 S/D 0321051231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060087\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060087\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02202021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02202021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACTIPONE(R) WHITE TEA GW (BHN BAKU KOSMETIK) COA 10300051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"ACTIPONE(R) WHITE TEA GW (BHN BAKU KOSMETIK) COA 10300051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LOTUS FROM VIETNAM ORGANIC OILY EXTRACT (BHN BAKU KOSMETIK) COA NEN220503-HBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LOTUS FROM VIETNAM ORGANIC OILY EXTRACT (BHN BAKU KOSMETIK) COA NEN220503-HBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM220602-PGH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM220602-PGH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM220602-PGH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM220602-PGH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) COA ANTS220301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) COA ANTS220301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DULSE PHYTELENE EG 745 (BHN BAKU KOSMETIK) COA EG745-211003-GS-B\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"DULSE PHYTELENE EG 745 (BHN BAKU KOSMETIK) COA EG745-211003-GS-B\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA VIV211201-BGBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA VIV211201-BGBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM220101-PGH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM220101-PGH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROPOLIS HYDROGLYCERINED EXTRACT 80 (BHN BAKU KOSMETIK) COA PRO211103-GL80\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PROPOLIS HYDROGLYCERINED EXTRACT 80 (BHN BAKU KOSMETIK) COA PRO211103-GL80\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WITCH HAZEL ORGANIC DISTILLATE 1:10 (SB) (BHN BAKU KOSMETIK) COA HAVD220605-BIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"WITCH HAZEL ORGANIC DISTILLATE 1:10 (SB) (BHN BAKU KOSMETIK) COA HAVD220605-BIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) COA 205274\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6028 (16KG) (BHN BAKU KOSMETIK) COA 205274\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 207176\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 207176\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 207176\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 207176\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) COA 206276\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6028 (16KG) (BHN BAKU KOSMETIK) COA 206276\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IRON GLYCINATE (BHN BAKU UTK PAKAN TERNAK) COA 62142\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"IRON GLYCINATE (BHN BAKU UTK PAKAN TERNAK) COA 62142\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANGANESE GLYCINATE (BHN BAKU UTK PAKAN TERNAK) COA 62143\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"MANGANESE GLYCINATE (BHN BAKU UTK PAKAN TERNAK) COA 62143\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINC GLYCINATE (BHN BAKU UTK PAKAN TERNAK) COA 62140\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"ZINC GLYCINATE (BHN BAKU UTK PAKAN TERNAK) COA 62140\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 30 N-3 INF OIL (BHN BAKU SUPPLEMEN) COA TS00019942\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 30 N-3 INF OIL (BHN BAKU SUPPLEMEN) COA TS00019942\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 21-12-21,22-12-21\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25070000\", \"uraian\": \"KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 21-12-21,22-12-21\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340388,B340389,B340397\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX COMPACTED (BHN BAKU OBAT) COA B340388,B340389,B340397\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS SULFATE, DRIED, POWDER, USP43 (BHN BAKU OBAT) COA 3116119\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"FERROUS SULFATE, DRIED, POWDER, USP43 (BHN BAKU OBAT) COA 3116119\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERRIC PYROPHOSPHATE,24-26PCT FE POWDER,FCC12 (BHN BAKU MAKANAN) COA 3117765\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28353990\", \"uraian\": \"FERRIC PYROPHOSPHATE,24-26PCT FE POWDER,FCC12 (BHN BAKU MAKANAN) COA 3117765\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINC BISGLYCINATE POWDER,FOR THE USE IN FOOD SUPPLEMENTS (BHN BAKU SUPLEMEN) COA 3116220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"ZINC BISGLYCINATE POWDER,FOR THE USE IN FOOD SUPPLEMENTS (BHN BAKU SUPLEMEN) COA 3116220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOPROFEN (BHN BAKU OBAT) COA 200597\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29183000\", \"uraian\": \"KETOPROFEN (BHN BAKU OBAT) COA 200597\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02203028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02203028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPPLEMEN) COA UT22020009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPPLEMEN) COA UT22020009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22020011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22020011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPPLEMEN) COA UT22020009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPPLEMEN) COA UT22020009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22020011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22020011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPPLEMEN) COA UT22040064\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPPLEMEN) COA UT22040064\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPPLEMEN) COA UT22020009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPPLEMEN) COA UT22020009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPPLEMEN) COA UT22020009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPPLEMEN) COA UT22020009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPPLEMEN) COA UT22040064\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPPLEMEN) COA UT22040064\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT22020015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT22020015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPPLEMEN) COA UT22020009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPPLEMEN) COA UT22020009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPPLEMEN) COA UT22040064\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPPLEMEN) COA UT22040064\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02203036,UE02205050\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02203036,UE02205050\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT21090085\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT21090085\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN547191\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN547191\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN547192\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN547192\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN547193\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN547193\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN547194\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN547194\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRASIL DM5 L (BHN BAKU KOSMETIK) COA 2224FF2615,2222FF2515\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100090\", \"uraian\": \"MIRASIL DM5 L (BHN BAKU KOSMETIK) COA 2224FF2615,2222FF2515\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRASIL D-DML LV A2 (BHN BAKU KOSMETIK) COA 2226HK07XA,2226HK06XA,2226HK01XA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100090\", \"uraian\": \"MIRASIL D-DML LV A2 (BHN BAKU KOSMETIK) COA 2226HK07XA,2226HK06XA,2226HK01XA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2206001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28352510\", \"uraian\": \"DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2206001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50467\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061100\", \"uraian\": \"MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50467\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0210622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0210622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MOXIFLOXACIN HYDROCHLORIDE (BHN BAKU OBAT) COA MP0070921\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334990\", \"uraian\": \"MOXIFLOXACIN HYDROCHLORIDE (BHN BAKU OBAT) COA MP0070921\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-002-Z,JUVE-004-Z\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-002-Z,JUVE-004-Z\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK)COA CHP1220607\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK)COA CHP1220607\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (VLMW) (BHN BAKU KOSMETIK)COA CHP2220620\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (VLMW) (BHN BAKU KOSMETIK)COA CHP2220620\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK)COA GSC-K-050921\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK)COA GSC-K-050921\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK)COA OSLP-070172\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK)COA OSLP-070172\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK)COA HMVBD-041052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK)COA HMVBD-041052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK)COA NMSP-D-010612\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK)COA NMSP-D-010612\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND GLA-40 (BHN BAKU KOSMETIK) COA GLCP-020252\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND GLA-40 (BHN BAKU KOSMETIK) COA GLCP-020252\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK)COA CPG-142832\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK)COA CPG-142832\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND TEA TREE EXTRACT (BHN BAKU KOSMETIK)COA MASL-042221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND TEA TREE EXTRACT (BHN BAKU KOSMETIK)COA MASL-042221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK)COA AACN-021152\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK)COA AACN-021152\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK)COA GSC-K-050921\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK)COA GSC-K-050921\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK)COA OSLP-070172\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK)COA OSLP-070172\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK)COA BHA-050411\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK)COA BHA-050411\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP22063331 S/D XP22063334\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP22063331 S/D XP22063334\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM L-HYDROGENASPARTATE 2-HYDRATE (BHN BAKU OBAT) COA 3117361\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"MAGNESIUM L-HYDROGENASPARTATE 2-HYDRATE (BHN BAKU OBAT) COA 3117361\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AQUACOAT ECD-30 ETHYLCELLULOSE... (BHN BAKU PEWARNA TABLET) COA 2174083830\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"AQUACOAT ECD-30 ETHYLCELLULOSE... (BHN BAKU PEWARNA TABLET) COA 2174083830\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA LC 014-22-801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA LC 014-22-801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA LC014-22-801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA LC014-22-801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIMETHOPRIM MICRONISED BP (BHN BAKU OBAT) COA TMP22070503\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"TRIMETHOPRIM MICRONISED BP (BHN BAKU OBAT) COA TMP22070503\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02202021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02202021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT21120005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT21120005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02102013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02102013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000202239\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000202239\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02202148\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02202148\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA QZ11220332\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA QZ11220332\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN MINERAL PREMIX FOR BISCUIT (BHN BAKU MAKANAN) COA XW92206071\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN MINERAL PREMIX FOR BISCUIT (BHN BAKU MAKANAN) COA XW92206071\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02202146\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02202146\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ20412084\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ20412084\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT22050094\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT22050094\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT21120073\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT21120073\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT22050094\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT22050094\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ20412083\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ20412083\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ20412083\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ20412083\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000205201,0000205217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000205201,0000205217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0040349\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0040349\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0040349\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0040349\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA GCH,GGI\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA GCH,GGI\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA GGI\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA GGI\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS SILK-1000 (BHN BAKU KOSMETIK) COA GFI\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS SILK-1000 (BHN BAKU KOSMETIK) COA GFI\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA GFC\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) COA GFC\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA GDA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROTESIL LH (BHN BAKU KOSMETIK) COA GDA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL ZX (BHN BAKU KOSMETIK) COA 200212012, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL ZX (BHN BAKU KOSMETIK) COA 200212012, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD45RA BV510 HI100 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1292082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD45RA BV510 HI100 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1292082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU IFN-GMA BV421 B27 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1303289\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU IFN-GMA BV421 B27 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1303289\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU IL-2 PE MQ1-17H12 100TST (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1271086\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU IL-2 PE MQ1-17H12 100TST (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1271086\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU IL-4 APC 8D4-8 50TST (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2059272\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU IL-4 APC 8D4-8 50TST (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2059272\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD4 PERCP-CY5.5 SK3 RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2038970\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD4 PERCP-CY5.5 SK3 RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2038970\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD45RA BV510 HI100 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1292082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD45RA BV510 HI100 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1292082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H101 71 PCT (BHN BAKU KOSMETIK) COA 0000079481\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H101 71 PCT (BHN BAKU KOSMETIK) COA 0000079481\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000079482\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000079482\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000079483\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000079483\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS FUMARATE (BHN BAKU OBAT) COA 2022/175\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"FERROUS FUMARATE (BHN BAKU OBAT) COA 2022/175\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DESONIDE MICRONIZED (BHN BAKU OBAT) COA NB3339M,NC0506M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"DESONIDE MICRONIZED (BHN BAKU OBAT) COA NB3339M,NC0506M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIAMCINOLONE ACETONIDE MICRONIZED (BHN BAKU OBAT) COA NC1602M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"TRIAMCINOLONE ACETONIDE MICRONIZED (BHN BAKU OBAT) COA NC1602M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIPROLIDINE HCL USP (BHN BAKU OBAT) COA 2-KI-0011120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"TRIPROLIDINE HCL USP (BHN BAKU OBAT) COA 2-KI-0011120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METOCLOPRAMIDE HYDROCHLORIDE USP (BHN BAKU OBAT) COA 22007MARII\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"METOCLOPRAMIDE HYDROCHLORIDE USP (BHN BAKU OBAT) COA 22007MARII\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLCOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/0622017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"METHYLCOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/0622017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HEXYLENE GLYCOL (BHN BAKU KOSMETIK) COA 20040108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053900\", \"uraian\": \"HEXYLENE GLYCOL (BHN BAKU KOSMETIK) COA 20040108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180M3N002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180M3N002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180M3O001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180M3O001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18509...(BHN BAKU PEWARNA TABLET) COA SH66145\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18509...(BHN BAKU PEWARNA TABLET) COA SH66145\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O6650...(BHN BAKU PEWARNA TABLET) COA SH661414\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O6650...(BHN BAKU PEWARNA TABLET) COA SH661414\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O63000..(BHN BAKU PEWARNA TABLET) COA SH661408\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O63000..(BHN BAKU PEWARNA TABLET) COA SH661408\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751.. (BHN BAKU PEWARNA TABLET) COA SH661409\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751.. (BHN BAKU PEWARNA TABLET) COA SH661409\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET) COA SH661424\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET) COA SH661424\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51469... (BHN BAKU PEWARNA TABLET) COA SH661423\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51469... (BHN BAKU PEWARNA TABLET) COA SH661423\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55410 RED(BHN BAKU PEWARNA TABLET) COA SH661427\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55410 RED(BHN BAKU PEWARNA TABLET) COA SH661427\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55410 RED(BHN BAKU PEWARNA TABLET) COA SH661428\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55410 RED(BHN BAKU PEWARNA TABLET) COA SH661428\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202207-010,\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35040000\", \"uraian\": \"SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202207-010,\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF (BHN BAKU SUPPLEMEN) COA UE02206017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO (R) LUTEIN 20PCT SAF (BHN BAKU SUPPLEMEN) COA UE02206017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02205051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02205051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ20217004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ20217004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ20317007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ20317007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ20217004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ20217004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO MALT EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1103512\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO MALT EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1103512\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PEPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2053079\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PEPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2053079\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1263533\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1263533\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2352583\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2352583\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1285442\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1285442\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2034964\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2034964\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2034964\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2034964\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2034963\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2034963\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1075037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1075037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD SUPREME FSM 500GR EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2400756\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD SUPREME FSM 500GR EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2400756\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-54HV (18KG) (BHN BAKU KOSMETIK) COA 207044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-54HV (18KG) (BHN BAKU KOSMETIK) COA 207044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) COA 206151\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-56A (18KG) (BHN BAKU KOSMETIK) COA 206151\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) COA 206276\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6028 (16KG) (BHN BAKU KOSMETIK) COA 206276\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) COA 206277\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (16KG) (BHN BAKU KOSMETIK) COA 206277\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-210 (16KG) (BHN BAKU KOSMETIK) COA 204248\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSG-210 (16KG) (BHN BAKU KOSMETIK) COA 204248\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) COA 207233\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) COA 207233\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SWERTIANIN-P (BHN BAKU KOSMETIK) COA 220433\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SWERTIANIN-P (BHN BAKU KOSMETIK) COA 220433\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229... (BHN BAKU PEWARNA TABLET) COA GA713132\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229... (BHN BAKU PEWARNA TABLET) COA GA713132\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229... (BHN BAKU PEWARNA TABLET) COA GA713132\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229... (BHN BAKU PEWARNA TABLET) COA GA713132\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE... (BHN BAKU PEWARNA TABLET) COA GA713432\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE... (BHN BAKU PEWARNA TABLET) COA GA713432\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751... (BHN BAKU PEWARNA TABLET) COA GA713473\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751... (BHN BAKU PEWARNA TABLET) COA GA713473\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751... (BHN BAKU PEWARNA TABLET) COA GA713473\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751... (BHN BAKU PEWARNA TABLET) COA GA713473\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID S 20 (BHN BAKU SUPPLEMEN) COA 572000-2220140\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232011\", \"uraian\": \"LIPOID S 20 (BHN BAKU SUPPLEMEN) COA 572000-2220140\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIAMI SCG(S) (BHN BAKU KOSMETIK) COA 220712A5,220723A5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34023990\", \"uraian\": \"MIAMI SCG(S) (BHN BAKU KOSMETIK) COA 220712A5,220723A5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 200881\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 200881\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMWITOR (R) GMIS (BAHAN BAKU KOSMETIK) COA 202085,203087\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"IMWITOR (R) GMIS (BAHAN BAKU KOSMETIK) COA 202085,203087\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA MLAH0280522\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29341000\", \"uraian\": \"MELOXICAM BP (BHN BAKU OBAT) COA MLAH0280522\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 21290063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 21290063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEFENSCALP TM PF (BHN BAKU KOSMETIK) COA 785081244N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"DEFENSCALP TM PF (BHN BAKU KOSMETIK) COA 785081244N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 702019449N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ABYSSINE 657 (BHN BAKU KOSMETIK) COA 702019449N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799031197N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799031197N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEFENSCALP TM PF (BHN BAKU KOSMETIK) COA 785081244N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"DEFENSCALP TM PF (BHN BAKU KOSMETIK) COA 785081244N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2133701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) COA 2133701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2133702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) COA 2133702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029946N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029946N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829011015N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"B-WHITE TM (BHN BAKU KOSMETIK) COA 829011015N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799031197N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799031197N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AL HYD WET GEL VAC 20 (BHN PAKAN HEWAN TERNAK) COA 202200130,202200109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"AL HYD WET GEL VAC 20 (BHN PAKAN HEWAN TERNAK) COA 202200130,202200109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RUGENER DREIKRONEN HEILKREIDE 25K (BHN BAKU KOSMETIK) COA 6102125400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25090000\", \"uraian\": \"RUGENER DREIKRONEN HEILKREIDE 25K (BHN BAKU KOSMETIK) COA 6102125400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPD-Z5 (1KG) (BHN BAKU KOSMETIK) COA 110695\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SPD-Z5 (1KG) (BHN BAKU KOSMETIK) COA 110695\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02203640,TL02203641\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02203640,TL02203641\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ20310597,UQ20410642\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ20310597,UQ20410642\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI22040013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI22040013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ20412084\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ20412084\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT22010154\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT22010154\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20220303\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20220303\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ20310597\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ20310597\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL02202021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU MAKANAN) COA TL02202021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT22050094\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT22050094\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ11213382,UQ11213383\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ11213382,UQ11213383\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ11213383\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ11213383\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000204551,0000204552,0000205217,0000205397\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000204551,0000204552,0000205217,0000205397\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321051231 S/D 0321051233\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321051231 S/D 0321051233\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-PANTHENOL 50 L (BHN BAKU KOSMETIK) COA TL02109649\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL-PANTHENOL 50 L (BHN BAKU KOSMETIK) COA TL02109649\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02204031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02204031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00765703\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"AMPHISOL K (BHN BAKU KOSMETIK) COA VE00765703\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0420040043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HMS (BHN BAKU KOSMETIK) COA 0420040043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02201004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02201004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060088\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060088\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (POST BORDER) COA TL02201004,TL02202021,TL02204031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (POST BORDER) COA TL02201004,TL02202021,TL02204031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF21239005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF21239005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (POST BORDER) COA UT22040131\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (POST BORDER) COA UT22040131\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF21239005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF21239005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321051233 S/D 0321051235\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321051233 S/D 0321051235\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS3851121,HS5840222\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS3851121,HS5840222\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50 (POST BORDER) COA UE02201006,UE02202012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50 (POST BORDER) COA UE02201006,UE02202012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CATECHINS TEAVIGO 4 KG (BHN BAKU KOSMETIK) COA 207201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"CATECHINS TEAVIGO 4 KG (BHN BAKU KOSMETIK) COA 207201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ML0974-SE0980 CUSTOM BLENDING VEGETABLES BLEND A (BHN BAKU OBAT) COAL-12712\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"ML0974-SE0980 CUSTOM BLENDING VEGETABLES BLEND A (BHN BAKU OBAT) COAL-12712\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIDOCAINE BASE (BHN BAKU OBAT) COA 200181\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"LIDOCAINE BASE (BHN BAKU OBAT) COA 200181\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIDOCAINE HCL (BHN BAKU OBAT) COA 200304\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"LIDOCAINE HCL (BHN BAKU OBAT) COA 200304\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HEXYLENE GLYCOL (BHN BAKU KOSMETIK) COA 20040115\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053900\", \"uraian\": \"HEXYLENE GLYCOL (BHN BAKU KOSMETIK) COA 20040115\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 26-10-21147,11-01-22,25-10-21\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 26-10-21147,11-01-22,25-10-21\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000079834\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000079834\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000079835\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000079835\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000079836\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000079836\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H105 83 PCT (BHN BAKU KOSMETIK) COA 0000079837\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H105 83 PCT (BHN BAKU KOSMETIK) COA 0000079837\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H105 83 PCT (BHN BAKU KOSMETIK) COA 0000079838,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H105 83 PCT (BHN BAKU KOSMETIK) COA 0000079838,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H103 43 PCT (BHN BAKU KOSMETIK) COA 0000079839, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H103 43 PCT (BHN BAKU KOSMETIK) COA 0000079839, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H100 99 PCT (BHN BAKU KOSMETIK) COA 0000079840, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H100 99 PCT (BHN BAKU KOSMETIK) COA 0000079840, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H101 71 PCT (BHN BAKU KOSMETIK) COA 0000079841, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H101 71 PCT (BHN BAKU KOSMETIK) COA 0000079841, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H100L 80 PCT (BHN BAKU KOSMETIK) COA 0000079842, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H100L 80 PCT (BHN BAKU KOSMETIK) COA 0000079842, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ISDN 10PCT IN NACL (DISPERSION) (BHN BAKU OBAT) COA 2208915\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"ISDN 10PCT IN NACL (DISPERSION) (BHN BAKU OBAT) COA 2208915\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM VALPROATE (BAHAN BAKU OBAT) COA 457306(968)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29159090\", \"uraian\": \"SODIUM VALPROATE (BAHAN BAKU OBAT) COA 457306(968)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2104103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2104103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2053886\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2053886\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL ISOVITALEX ENRICHMENT 2ML 5EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2081927,....\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL ISOVITALEX ENRICHMENT 2ML 5EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2081927,....\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2060591\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2060591\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0219127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0219127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2109248\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE B12 ASSAY MEDIUM USP 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2109248\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU IFN-GMA BV421 B27 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1303289\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU IFN-GMA BV421 B27 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1303289\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU IL-2 PE MQ1-17H12 100TST (MEDIA UTK (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1271086\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU IL-2 PE MQ1-17H12 100TST (MEDIA UTK (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1271086\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD8 APC-CY7 SK1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2087793\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD8 APC-CY7 SK1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2087793\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD3 FITC HIT3A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2019528\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD3 FITC HIT3A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2019528\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD28 NALE CD28.2 500NG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1256634\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD28 NALE CD28.2 500NG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1256634\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD45RA BV510 HI100 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH1292082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD45RA BV510 HI100 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH1292082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02205050\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02205050\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT22020015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT22020015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT22051179\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT22051179\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT22051179,UT22051180\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT22051179,UT22051180\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02205050,UE02205051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02205050,UE02205051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT22050004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT22050004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT22020015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT22020015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22030043,UT22030044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22030043,UT22030044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPPLEMEN) COA TL02205693\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPPLEMEN) COA TL02205693\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GENIVIDA(TM) TG (BHN BAKU SUPPLEMEN) COA UT21100003,UT21100004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329900\", \"uraian\": \"GENIVIDA(TM) TG (BHN BAKU SUPPLEMEN) COA UT21100003,UT21100004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK)COA OHA-082572\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK)COA OHA-082572\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND GLA-40 (BHN BAKU KOSMETIK) COA GLCP-030172\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND GLA-40 (BHN BAKU KOSMETIK) COA GLCP-030172\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK)COA CHP1220719\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK)COA CHP1220719\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND JEJU TANGERINE EXTRACT (BHN BAKU KOSMETIK) COA GTUP-T-033052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND JEJU TANGERINE EXTRACT (BHN BAKU KOSMETIK) COA GTUP-T-033052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK)COA MUP-021421\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK)COA MUP-021421\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SENAS (BHN BAKU KOSMETIK)COA NASB-011122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21022090\", \"uraian\": \"HYUNDAI BIOLAND SENAS (BHN BAKU KOSMETIK)COA NASB-011122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK)COA HMVBD-041052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK)COA HMVBD-041052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP20022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP20022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP17822,MTP17122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP17822,MTP17122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP18522\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP18522\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1348303\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1348303\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR NOBLE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2074166\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR NOBLE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2074166\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2165877\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2165877\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEGIONELLA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0112510\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LEGIONELLA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0112510\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLT4 AGAR BASE 500 G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCHA. 1216783\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLT4 AGAR BASE 500 G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCHA. 1216783\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SODIUM DESOXYCHOLATE 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1279594\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SODIUM DESOXYCHOLATE 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1279594\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2060506\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2060506\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2088727\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2088727\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2095371\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2095371\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2082495\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2082495\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TODD HEWITT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2060551\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TODD HEWITT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2060551\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MIDDLEBROOK 7H10 BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2046511\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MIDDLEBROOK 7H10 BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2046511\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DNASE TEST AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1236633\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DNASE TEST AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1236633\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 8 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2090369\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 8 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2090369\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M ENDO BROTH MF 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2068110\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M ENDO BROTH MF 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2068110\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0314278\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0314278\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2143788\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2143788\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2172773\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2172773\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1306233\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1306233\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2083009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2083009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2123997\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2123997\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1348303\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1348303\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1224924\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1224924\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2053778\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2053778\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2143788\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2143788\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1292710\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1292710\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 2096996\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EE BROTH MOSSEL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 2096996\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1350021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1350021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2011124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2011124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2067201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2067201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2104097\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2104097\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR NOBLE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2074166\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR NOBLE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2074166\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2104107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2104107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1188089\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1188089\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2067270\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2067270\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2026294\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2026294\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2088708\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2088708\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2047633\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2047633\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1347249\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1347249\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2066085\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2066085\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2038654\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2038654\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2067270\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2067270\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1319633,.\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1319633,.\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1188089\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1188089\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1272665\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1272665\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0350990,2060316\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0350990,2060316\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1285556\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1285556\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500 G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1349644,2038183,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500 G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1349644,2038183,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2117655\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2117655\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2088865\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE AGAR 500G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2088865\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2038654\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2038654\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2103834\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2103834\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1236443\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1236443\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2123358\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2123358\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BILE SALTS NO 3 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1243829\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BILE SALTS NO 3 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1243829\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ CAMPY CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2055003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ CAMPY CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2055003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 2152330\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 2152330\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2088277\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2088277\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LOOPS INOCULATING 10/TUBE 1 MICROLITER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2128977\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"LOOPS INOCULATING 10/TUBE 1 MICROLITER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2128977\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2124082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2124082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2158967\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2158967\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 2152330\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 2152330\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2158967\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2158967\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 2152330,217...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 2152330,217...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 120621/007343,080321/007122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 120621/007343,080321/007122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2022051306\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2022051306\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201892,122201893\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201892,122201893\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) COA WP860741\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) COA WP860741\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) COA WP860742\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) COA WP860742\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE NA PELLETS CAR (BHN BAKU SUPPLEMEN) COA 22E1907\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE NA PELLETS CAR (BHN BAKU SUPPLEMEN) COA 22E1907\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE NA PELLETS CAR (BHN BAKU SUPPLEMEN) COA 22E2009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE NA PELLETS CAR (BHN BAKU SUPPLEMEN) COA 22E2009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE A PELLETS CAR (BHN BAKU SUPPLEMEN) COA 22E0607\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE A PELLETS CAR (BHN BAKU SUPPLEMEN) COA 22E0607\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE BM PELLETS CAR (BHN BAKU SUPPLEMEN) COA 21E5008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE BM PELLETS CAR (BHN BAKU SUPPLEMEN) COA 21E5008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 02F52182...(BHN BAKU PEWARNA TABLET) COA GA711622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 02F52182...(BHN BAKU PEWARNA TABLET) COA GA711622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA710197\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA710197\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA710197\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA710197\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B54445 PINK (BHN BAKU PEWARNA TABLET) COA GA710198\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03B54445 PINK (BHN BAKU PEWARNA TABLET) COA GA710198\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) KB LOW VISCOSITY FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA710199\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) KB LOW VISCOSITY FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA710199\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) COA 80W68912\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) COA 80W68912\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G62343...(BHN BAKU PEWARNA TABLET) COA GA711593\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G62343...(BHN BAKU PEWARNA TABLET) COA GA711593\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A...(BHN BAKU PEWARNA TABLET) COA GA712174\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A...(BHN BAKU PEWARNA TABLET) COA GA712174\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131...(BHN BAKU PEWARNA TABLET) COA GA710557\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131...(BHN BAKU PEWARNA TABLET) COA GA710557\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA711948\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA711948\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA711948\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA711948\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03Z59026...(BHN BAKU PEWARNA TABLET) COA GA710559\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03Z59026...(BHN BAKU PEWARNA TABLET) COA GA710559\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA711693\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA711693\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340392,B340393\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX COMPACTED (BHN BAKU OBAT) COA B340392,B340393\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334826,B334832\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX POWDER (BHN BAKU OBAT) COA B334826,B334832\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M114027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M114027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M114027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M114027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP20022,MTP18722\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP20022,MTP18722\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PEPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2053079\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PEPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2053079\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PEPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2053079\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PEPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2053079\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1263533\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1263533\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2352582\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2352582\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1285442\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1285442\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1075037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1075037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1075037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1075037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1251471\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1251471\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5287 FD&CYELLOW 6/SUN ...(BHN BAKU PEWARNA TABLET) COA WP848267:BB2370\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5287 FD&CYELLOW 6/SUN ...(BHN BAKU PEWARNA TABLET) COA WP848267:BB2370\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5177 FD&CYELLOW #5/TAR ...(BHN BAKU PEWARNA TABLET) COA WP844300:BA9551\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5177 FD&CYELLOW #5/TAR ...(BHN BAKU PEWARNA TABLET) COA WP844300:BA9551\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5396 ERYTHROSINE ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP844563\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5396 ERYTHROSINE ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP844563\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT (R) 6010 D&CYELLOW 10 ALUMIN...(BHN BAKU PEWARNA TABLET) COA WP853290:BB4289\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT (R) 6010 D&CYELLOW 10 ALUMIN...(BHN BAKU PEWARNA TABLET) COA WP853290:BB4289\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5287 FD&CYELLOW 6/SUN...(BHN BAKU PEWARNA TABLET) COA WP848267:BB2370\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5287 FD&CYELLOW 6/SUN...(BHN BAKU PEWARNA TABLET) COA WP848267:BB2370\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5627 FD&CBLUE 2/INDIGO...(BHN BAKU PEWARNA TABLET) COA WP855383:BB5689\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5627 FD&CBLUE 2/INDIGO...(BHN BAKU PEWARNA TABLET) COA WP855383:BB5689\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS220703\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS220703\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS220202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS220202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS220703\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS220703\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LICORICE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA GLG220701-BGBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LICORICE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA GLG220701-BGBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LICORICE ORGANIC OILY EXTRACT (SUNFLOWER OIL) (BHN BAKU KOSMETIK) COA GLGT2207R1-HBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LICORICE ORGANIC OILY EXTRACT (SUNFLOWER OIL) (BHN BAKU KOSMETIK) COA GLGT2207R1-HBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU SUPPLEMEN) COA 102202009,102202024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU SUPPLEMEN) COA 102202009,102202024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201849,122201850\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201849,122201850\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRANOL ULTRA C-32 MB 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP207392MB\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34024990\", \"uraian\": \"MIRANOL ULTRA C-32 MB 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP207392MB\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NABUMETONE USP (BAHAN BAKU OBAT) COA H-0080122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29145000\", \"uraian\": \"NABUMETONE USP (BAHAN BAKU OBAT) COA H-0080122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC SODIUM ASCORBATE REGULAR (BHN BAKU MAKANAN) COA HPN2203170,HPN2204158,HPN2204163 S/D HPN2204\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC SODIUM ASCORBATE REGULAR (BHN BAKU MAKANAN) COA HPN2203170,HPN2204158,HPN2204163 S/D HPN2204\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 220202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"OILESS'CITY TM (BHN BAKU KOSMETIK) COA 220202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 220402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 220402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 220211\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 220211\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 220215\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 220215\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 220202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"OILESS'CITY TM (BHN BAKU KOSMETIK) COA 220202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA711754\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA711754\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA713159\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA713159\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA711755\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA711755\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA712222\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA712222\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA712223\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA712223\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER...(BHN BAKU PEWARNA TABLET) COA GA711819\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER...(BHN BAKU PEWARNA TABLET) COA GA711819\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA712218\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA712218\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51469...(BHN BAKU PEWARNA TABLET) COA GA712219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51469...(BHN BAKU PEWARNA TABLET) COA GA712219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55410...(BHN BAKU PEWARNA TABLET) COA GA712220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55410...(BHN BAKU PEWARNA TABLET) COA GA712220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA711008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA711008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA711008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA711008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B62323...(BHN BAKU PEWARNA TABLET) COA GA713030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03B62323...(BHN BAKU PEWARNA TABLET) COA GA713030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359..(BHN BAKU PEWARNA TABLET) COA GA711560\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359..(BHN BAKU PEWARNA TABLET) COA GA711560\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359...(BHN BAKU PEWARNA TABLET) COA GA711560\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359...(BHN BAKU PEWARNA TABLET) COA GA711560\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001...(BHN BAKU PEWARNA TABLET) COA GA711029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001...(BHN BAKU PEWARNA TABLET) COA GA711029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O92157..(BHN BAKU PEWARNA TABLET) COA GA711030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O92157..(BHN BAKU PEWARNA TABLET) COA GA711030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O92157...(BHN BAKU PEWARNA TABLET) COA GA711030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O92157...(BHN BAKU PEWARNA TABLET) COA GA711030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA711008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA711008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA711008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA711008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA711751\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA711751\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001...(BHN BAKU PEWARNA TABLET) COA SH661839\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001...(BHN BAKU PEWARNA TABLET) COA SH661839\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) COA SH661840\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) COA SH661840\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE BARRIER ...(BHN BAKU PEWARNA TABLET) COA SH661848\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE BARRIER ...(BHN BAKU PEWARNA TABLET) COA SH661848\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA SH661849\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA SH661849\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA SH661847\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA SH661847\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA SH661846\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA SH661846\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) COA SH661841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) COA SH661841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA SH661842\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA SH661842\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) COA SH661845\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) COA SH661845\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-22-7719...(BHN BAKU PEWARNA TABLET) COA SH661838\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-22-7719...(BHN BAKU PEWARNA TABLET) COA SH661838\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-7027...(BHN BAKU PEWARNA TABLET) COA SH661843\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-7027...(BHN BAKU PEWARNA TABLET) COA SH661843\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETORIXOCIB (BHN BAKU OBAT) COA ETC-P/22004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"ETORIXOCIB (BHN BAKU OBAT) COA ETC-P/22004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FENTACARE 2231 EF 25KG PAPER BOX (BHN BAKU KOSMETIK ) COA ZH22G2402,ZH22G2602\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34029019\", \"uraian\": \"FENTACARE 2231 EF 25KG PAPER BOX (BHN BAKU KOSMETIK ) COA ZH22G2402,ZH22G2602\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS SULFATE, DRIED, POWDER, USP43 (BHN BAKU MAKANAN) COA 3107512\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"FERROUS SULFATE, DRIED, POWDER, USP43 (BHN BAKU MAKANAN) COA 3107512\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM FEREDETATE, POWDER, BP 2021 (BHN BAKU SUPPLEMEN) COA 3119807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"SODIUM FEREDETATE, POWDER, BP 2021 (BHN BAKU SUPPLEMEN) COA 3119807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM SELENITE IN CARRIER (BHN BAKU MAKANAN) COA 3106231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28429010\", \"uraian\": \"SODIUM SELENITE IN CARRIER (BHN BAKU MAKANAN) COA 3106231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYDROCORTISONE ACETATE EP/USP (BHN BAKU OBAT) COA NEHAC220410\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"HYDROCORTISONE ACETATE EP/USP (BHN BAKU OBAT) COA NEHAC220410\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISOLONE BP/USP (BHN BAKU OBAT) COA NPL220207\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISOLONE BP/USP (BHN BAKU OBAT) COA NPL220207\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BISOPROLOL FUMARATE USP(BAHAN BAKU OBAT)COA LT-OBFA/003/21-22\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"BISOPROLOL FUMARATE USP(BAHAN BAKU OBAT)COA LT-OBFA/003/21-22\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CCR7 (CD197) PE-CY7 2-L1-A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2161787\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CCR7 (CD197) PE-CY7 2-L1-A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2161787\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL TTC SOLUTION 1 PCT 1X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2137380\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL TTC SOLUTION 1 PCT 1X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2137380\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55041...(BHN BAKU PEWARNA TABLET) COA GA714430\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55041...(BHN BAKU PEWARNA TABLET) COA GA714430\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (POST BORDER) COA UT21120073\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 10PCT CWS (POST BORDER) COA UT21120073\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11220332\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11220332\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT22050024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT22050024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU MAKANAN) COA UT22030003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU MAKANAN) COA UT22030003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT21120073\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT21120073\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02202021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02202021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92207064,XW92207065\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92207064,XW92207065\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040056,0222040076\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040056,0222040076\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040012,0222040043,0222040074\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040012,0222040043,0222040074\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210129,0708210130,0708210138,0708210140,0708210141\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210129,0708210130,0708210138,0708210140,0708210141\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O66912..(BHN BAKU PEWARNA TABLET) COA GA714514\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O66912..(BHN BAKU PEWARNA TABLET) COA GA714514\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2097342\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2097342\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM CARBONATE IPH (BHN BAKU SUPPLEMEN) COA DOC1852221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"SODIUM CARBONATE IPH (BHN BAKU SUPPLEMEN) COA DOC1852221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201849\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201849\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MATCHA ( BHN BAKU KOSMETIK) COA CSP 22003 EOU\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MATCHA ( BHN BAKU KOSMETIK) COA CSP 22003 EOU\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE USP (NIACINAMIDE USP/EP) (BHN BAKU KOSMETIK)COA 22-23/NMD(P)/00117 S/D 00125\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE USP (NIACINAMIDE USP/EP) (BHN BAKU KOSMETIK)COA 22-23/NMD(P)/00117 S/D 00125\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0066373\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0066373\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0066375\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0066375\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0067079\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0067079\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0067672\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0067672\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0067675\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0067675\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANNITOL POWDER USP/EP-MANNO (BHN BAKU SUPPLEMEN) COA 302205034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054300\", \"uraian\": \"MANNITOL POWDER USP/EP-MANNO (BHN BAKU SUPPLEMEN) COA 302205034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOTAXIME SODIUM (BAHAN BAKU OBAT ) COA3042203058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOTAXIME SODIUM (BAHAN BAKU OBAT ) COA3042203058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LISINOPRIL DIHYDRATE USP (BAHAN BAKU OBAT ) COA C5170-22-146\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"LISINOPRIL DIHYDRATE USP (BAHAN BAKU OBAT ) COA C5170-22-146\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM REGULAR GRADE (BHN BAKU OBAT) COA 2206751,2206820,2206823,2206863\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331900\", \"uraian\": \"METAMIZOLE SODIUM REGULAR GRADE (BHN BAKU OBAT) COA 2206751,2206820,2206823,2206863\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IBUPROFEN (BHN BAKU OBAT) COA 22067333\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29163990\", \"uraian\": \"IBUPROFEN (BHN BAKU OBAT) COA 22067333\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M598406,M598407,M598414,M598415\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M598406,M598407,M598414,M598415\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LINAGLIPTIN (BHN BAKU OBAT) COA LG0140622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"LINAGLIPTIN (BHN BAKU OBAT) COA LG0140622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETORIXOCIB (BHN BAKU OBAT) COA ETC-P/22004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"ETORIXOCIB (BHN BAKU OBAT) COA ETC-P/22004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYPOL 980 (20KG) (BAHAN BAKU KOSMETIK) COA 11522009,11522010,11522011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39069099\", \"uraian\": \"ACRYPOL 980 (20KG) (BAHAN BAKU KOSMETIK) COA 11522009,11522010,11522011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/07/100722-1,170722,180722,190722\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/07/100722-1,170722,180722,190722\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE BP (BHN BAKU OBAT) COA ASGP/07/150722,170722\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE BP (BHN BAKU OBAT) COA ASGP/07/150722,170722\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-1280822,S-A-1290822\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334910\", \"uraian\": \"DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-1280822,S-A-1290822\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) COA WP858555\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) COA WP858555\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX TRS1 WITHOUT K1 (BHN BAKU MAKANAN) COA XW92207129\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX TRS1 WITHOUT K1 (BHN BAKU MAKANAN) COA XW92207129\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02204194\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02204194\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060087\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060087\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL ZX (BHN BAKU KOSMETIK) COA 191002012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL ZX (BHN BAKU KOSMETIK) COA 191002012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060087\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060087\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22030098\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22030098\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P1F03QA000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL TX (BHN BAKU KOSMETIK) COA P1F03QA000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92207238\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92207238\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92207239\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92207239\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JAGUAR C 162 SGI CARDBOARD BOX 25 KG (BHN BAKU KOSMETIK) COA MJAC22171B\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"JAGUAR C 162 SGI CARDBOARD BOX 25 KG (BHN BAKU KOSMETIK) COA MJAC22171B\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA M8B115\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA M8B115\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOTAXIME SODIUM STERILE USP (BAHAN BAKU OBAT) COA B200200,B200300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOTAXIME SODIUM STERILE USP (BAHAN BAKU OBAT) COA B200200,B200300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIACEREIN EP (BHN BAKU OBAT) COA DCE/40020722\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"DIACEREIN EP (BHN BAKU OBAT) COA DCE/40020722\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTABIO AR10 (ASTAXANTHIN OIL 10PCT) (BHN BAKU OBAT) COA 2205101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"ASTABIO AR10 (ASTAXANTHIN OIL 10PCT) (BHN BAKU OBAT) COA 2205101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-004-Z\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-004-Z\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SOYA LECITHIN (POST BORDER) COA TY2220712-16\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232011\", \"uraian\": \"SOYA LECITHIN (POST BORDER) COA TY2220712-16\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02206506\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02206506\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE, TYPE 100 (BHN BAKU SUPPLEMEN) COA UT22040064\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE, TYPE 100 (BHN BAKU SUPPLEMEN) COA UT22040064\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FRUITFLOW II SD (BHN BAKU SUPPLEMEN) COA 22T0027700,22T0027800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"FRUITFLOW II SD (BHN BAKU SUPPLEMEN) COA 22T0027700,22T0027800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02203641\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02203641\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ20412085\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ20412085\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02203641\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02203641\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02202021,TL02204039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02202021,TL02204039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ20412085\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ20412085\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02204039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02204039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02203641\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02203641\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0922020029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX (BHN BAKU KOSMETIK) COA 0922020029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0922020029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX (BHN BAKU KOSMETIK) COA 0922020029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000205403\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000205403\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000205403,0000205404\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000205403,0000205404\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000205404\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000205404\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000205404,0000205405\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000205404,0000205405\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000205405\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000205405\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321051238,0321051239\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321051238,0321051239\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CETIRIZINE HYDROCHLORIDE (BHN BAKU OBAT) COA 21038CZ6RII\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29315990\", \"uraian\": \"CETIRIZINE HYDROCHLORIDE (BHN BAKU OBAT) COA 21038CZ6RII\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340395,B340396,B340398\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX COMPACTED (BHN BAKU OBAT) COA B340395,B340396,B340398\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRISODIUMCITRATE DIHYDRATE FINE GRANULAR (BHN BAKU SUPPLEMEN) COA UJ224\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"TRISODIUMCITRATE DIHYDRATE FINE GRANULAR (BHN BAKU SUPPLEMEN) COA UJ224\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA EXTRACT 95PCT ( BHN BAKU KOSMETIK) COA GKP 22068 EOU\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"CENTELLA ASIATICA EXTRACT 95PCT ( BHN BAKU KOSMETIK) COA GKP 22068 EOU\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 8552-507-K05 LIPEX 512 VEGETABLE OIL (BHN BAKU KOSMETIK) COA 0002530077\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15162049\", \"uraian\": \"8552-507-K05 LIPEX 512 VEGETABLE OIL (BHN BAKU KOSMETIK) COA 0002530077\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 608-1,609-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34024990\", \"uraian\": \"MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 608-1,609-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS GLUCONATE,POWDER,USP 43 (BHN BAKU OBAT) COA 3118067\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"FERROUS GLUCONATE,POWDER,USP 43 (BHN BAKU OBAT) COA 3118067\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS FUMARATE, FINE POWDER (BHN BAKU OBAT) COA 3119505\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"FERROUS FUMARATE, FINE POWDER (BHN BAKU OBAT) COA 3119505\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM FEREDETATE,POWDER,BP 2021 (BHN BAKU OBAT) COA 3119499\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"SODIUM FEREDETATE,POWDER,BP 2021 (BHN BAKU OBAT) COA 3119499\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIPOTASSIUM PHOSPHATE POWDER (BHN BAKU OBAT) COA 3117153,3117154\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28352400\", \"uraian\": \"DIPOTASSIUM PHOSPHATE POWDER (BHN BAKU OBAT) COA 3117153,3117154\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SELOHVITA C (BHN BAKU OBAT) COA 3117740\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28429010\", \"uraian\": \"SELOHVITA C (BHN BAKU OBAT) COA 3117740\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM L-HYDROGENASPARTATE 2-HYDRATE (BHN BAKU OBAT) COA 3117277\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"MAGNESIUM L-HYDROGENASPARTATE 2-HYDRATE (BHN BAKU OBAT) COA 3117277\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS GLUCONATE HYDRATE, POWDER, PH.EUR.10.ED (BHN BAKU OBAT) COA 3119329\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"FERROUS GLUCONATE HYDRATE, POWDER, PH.EUR.10.ED (BHN BAKU OBAT) COA 3119329\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052225\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47063000\", \"uraian\": \"SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052225\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052225\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47063000\", \"uraian\": \"SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052225\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG220729\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG220729\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA GFC\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) COA GFC\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA GGI\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA GGI\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA GGI\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA GGI\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA GDA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROTESIL LH (BHN BAKU KOSMETIK) COA GDA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA GDA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROTESIL LH (BHN BAKU KOSMETIK) COA GDA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SORBOLAC (R) 400 (BHN BAKU OBAT) COA L103840822\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"SORBOLAC (R) 400 (BHN BAKU OBAT) COA L103840822\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DANDRILYS (BHN BAKU KOSMETIK) COA DAN220602-Z\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"DANDRILYS (BHN BAKU KOSMETIK) COA DAN220602-Z\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INCA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK) COA II220806-AI-D-BIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"INCA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK) COA II220806-AI-D-BIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-210503-GS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-210503-GS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WITCH HAZEL ORGANIC DISTILLATE 1:10 (SB) (BHN BAKU KOSMETIK) COA HAVD220706-BIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"WITCH HAZEL ORGANIC DISTILLATE 1:10 (SB) (BHN BAKU KOSMETIK) COA HAVD220706-BIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO220202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO220202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK)COA EG543-220702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK)COA EG543-220702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-210503-GS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-210503-GS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM220602-PGH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM220602-PGH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220803\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220803\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JAGUAR HP 105 SGI 25KG CARDBOARD CARTON (BHN BAKU KOSMETIK) COA H2205090H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"JAGUAR HP 105 SGI 25KG CARDBOARD CARTON (BHN BAKU KOSMETIK) COA H2205090H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20220501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20220501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT GRANULATION (BHN BAKU SUPPLEMEN) COA WB22019030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT GRANULATION (BHN BAKU SUPPLEMEN) COA WB22019030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22010622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22010622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22010633,WB22010634\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22010633,WB22010634\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU SUPPLEMEN) COA 102202024,102202025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU SUPPLEMEN) COA 102202024,102202025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M -31.0PCT (BHN BAKU SUPPLEMEN) COA 102229022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MG HYD PASTE USP TYPE M -31.0PCT (BHN BAKU SUPPLEMEN) COA 102229022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201893,122201894\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201893,122201894\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHARMABURST (R) C1 (BHN BAKU OBAT) COA 122201577\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069099\", \"uraian\": \"PHARMABURST (R) C1 (BHN BAKU OBAT) COA 122201577\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 122201660\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28365010\", \"uraian\": \"VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 122201660\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHARMABURST (R) 500 (BHN BAKU OBAT) COA 122201691\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069099\", \"uraian\": \"PHARMABURST (R) 500 (BHN BAKU OBAT) COA 122201691\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201850\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201850\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) COA 208161\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-56A (18KG) (BHN BAKU KOSMETIK) COA 208161\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6017(17KG) (BHN BAKU KOSMETIK) COA 207177\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6017(17KG) (BHN BAKU KOSMETIK) COA 207177\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) COA 208280\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6028 (16KG) (BHN BAKU KOSMETIK) COA 208280\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) COA 208280\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (16KG) (BHN BAKU KOSMETIK) COA 208280\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP21122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP21122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROCATEROL HCL HEMIHYDRATE MICRONIZED (BHN BAKU OBAT) COA 8600119M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29337900\", \"uraian\": \"PROCATEROL HCL HEMIHYDRATE MICRONIZED (BHN BAKU OBAT) COA 8600119M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A18597..(BHN BAKU PEWARNA TABLET) COA GA714888\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A18597..(BHN BAKU PEWARNA TABLET) COA GA714888\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2208001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28352510\", \"uraian\": \"DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2208001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIOCELLACT CHAMOMILLA BD (BHN BAKU KOSMETIK) COA 212370\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BIOCELLACT CHAMOMILLA BD (BHN BAKU KOSMETIK) COA 212370\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DERMAVEIL (BHN BAKU KOSMETIK) COA 221122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"DERMAVEIL (BHN BAKU KOSMETIK) COA 221122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for YUZU CERAMIDE B (BHN BAKU KOSMETIK) COA 221416\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"YUZU CERAMIDE B (BHN BAKU KOSMETIK) COA 221416\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOKUDAMI LIQUID B (BHN BAKU KOSMETIK) COA 221082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"DOKUDAMI LIQUID B (BHN BAKU KOSMETIK) COA 221082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 221769\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ABSORAGE (BHN BAKU KOSMETIK) COA 221769\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2138670\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2138670\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2067255\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2067255\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 1349557\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 1349557\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2088708\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2088708\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2123358\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2123358\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2026294\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2026294\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2097346\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2097346\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2103834\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2103834\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2046187\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2046187\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1188089\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1188089\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1236443,2005526\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1236443,2005526\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2060544\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2060544\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ CAMPY CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2055003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ CAMPY CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2055003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2138670\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2138670\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYP AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2208037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MYP AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2208037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D-MANNITOL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2179301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D-MANNITOL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2179301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2104133\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2104133\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2104109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2104109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GLYCEROL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2173051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GLYCEROL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2173051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2173788\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2173788\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-PA-C AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2179375\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M-PA-C AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2179375\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2118793\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2118793\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2145135\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2145135\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-PA-C AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2179375\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M-PA-C AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2179375\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2097346\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2097346\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE KF STREPTOCOCCUS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2214351\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE KF STREPTOCOCCUS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2214351\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1229930\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1229930\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2074843\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2074843\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1216783\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1216783\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 5 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1236415\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 5 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1236415\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2053778\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2053778\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2082495\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2082495\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST CARBON BASE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2137773\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE YEAST CARBON BASE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2137773\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1307340\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1307340\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1188089\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1188089\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2117655\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2117655\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 2034966\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 2034966\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD AGAR MODIFIED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2060412\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD AGAR MODIFIED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2060412\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B04E123M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B04E123M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2053778\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2053778\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0245118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0245118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL R2A AGAR 2KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1243543\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PAIL R2A AGAR 2KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1243543\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR W/MUG 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2088655\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT AGAR W/MUG 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2088655\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID PPL-600 (BHN BAKU SUPPLEMEN) COA 577200-2210231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232011\", \"uraian\": \"LIPOID PPL-600 (BHN BAKU SUPPLEMEN) COA 577200-2210231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E15 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D011M2NL03\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E15 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D011M2NL03\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464164938\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464164938\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL A15 PREMIUM LV METHYLCELLULOSE...(BHN BAKU PEWARNA TABLET) COA D180L7E022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL A15 PREMIUM LV METHYLCELLULOSE...(BHN BAKU PEWARNA TABLET) COA D180L7E022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180M27003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180M27003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA712347\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA712347\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA713836\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA713836\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA712349\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA712349\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA713827\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA713827\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) COA GA713777\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) COA GA713777\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA712351\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA712351\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G54002..(BHN BAKU PEWARNA TABLET) COA GA712352\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G54002..(BHN BAKU PEWARNA TABLET) COA GA712352\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) COA GA713970\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) COA GA713970\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND (R) PB-665012 BROWN (BHN BAKU PEWARNA TABLET) COA GA713767\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"PIGMENT BLEND (R) PB-665012 BROWN (BHN BAKU PEWARNA TABLET) COA GA713767\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA712353\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA712353\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA713990\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA713990\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA712354\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA712354\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA713768\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA713768\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA713768\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA713768\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA714475\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA714475\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA713867\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA713867\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA712355\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA712355\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA GA714154\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA GA714154\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA713764\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA713764\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA GA713988\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA GA713988\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA713989\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA713989\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND (R) PB-52153 YELLOW (BHN BAKU PEWARNA TABLET) COA GA714028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"PIGMENT BLEND (R) PB-52153 YELLOW (BHN BAKU PEWARNA TABLET) COA GA714028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM ...(BHN BAKU PEWARNA TABLET) COA GA712357\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM ...(BHN BAKU PEWARNA TABLET) COA GA712357\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA714427\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA714427\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE02202003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"RONOXAN A (BHN BAKU MAKANAN) COA UE02202003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTIOXIDANT PREMIX FOR GUMMY (BHN BAKU MAKANAN) COA XW92208221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"ANTIOXIDANT PREMIX FOR GUMMY (BHN BAKU MAKANAN) COA XW92208221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060087,0522060048\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060087,0522060048\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060048\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060048\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060048\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060048\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREGABALIN (BHN BAKU OBAT) COA PU3310921\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"PREGABALIN (BHN BAKU OBAT) COA PU3310921\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBNH220342\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBNH220342\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND COMPAREX (BHN BAKU KOSMETIK) COA COEX-041301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND COMPAREX (BHN BAKU KOSMETIK) COA COEX-041301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND TEA TREE EXTRACT (BHN BAKU KOSMETIK) COA MASL-042221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND TEA TREE EXTRACT (BHN BAKU KOSMETIK) COA MASL-042221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1220803\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1220803\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-041052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-041052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND TUMERIC ROOT EXTRACT (BHN BAKU KOSMETIK) COA WRGC-011682\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND TUMERIC ROOT EXTRACT (BHN BAKU KOSMETIK) COA WRGC-011682\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND CUCURBITA EXTRACT (BHN BAKU KOSMETIK) COA CMB-013042\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND CUCURBITA EXTRACT (BHN BAKU KOSMETIK) COA CMB-013042\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-050411\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-050411\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND CACTUS EXTRACT (BHN BAKU KOSMETIK) COA CAB-012752\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND CACTUS EXTRACT (BHN BAKU KOSMETIK) COA CAB-012752\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-023132\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-023132\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSFAC-011982\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSFAC-011982\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-050921\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-050921\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-012322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-012322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND NEWAPLE (BHN BAKU KOSMETIK) COA NWPB-032421\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND NEWAPLE (BHN BAKU KOSMETIK) COA NWPB-032421\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SENAS (POST BORDER) COA NASB-01112\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21022090\", \"uraian\": \"HYUNDAI BIOLAND SENAS (POST BORDER) COA NASB-01112\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS SULFATE, DRIED, POWDER, USP43 (BHN BAKU OBAT) COA 3115661\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"FERROUS SULFATE, DRIED, POWDER, USP43 (BHN BAKU OBAT) COA 3115661\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPPLEMEN) COA WB22030330\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPPLEMEN) COA WB22030330\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYTOFIX/CYTOPERM SOLN KIT (MEDIA TUK PENGEMBANGAN MIKRO ORGANISME), BATCH 2010108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CYTOFIX/CYTOPERM SOLN KIT (MEDIA TUK PENGEMBANGAN MIKRO ORGANISME), BATCH 2010108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU TH1/TH2/TH17 CBA KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1344320\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU TH1/TH2/TH17 CBA KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1344320\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2111967\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2111967\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0128385\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0128385\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1049084\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1049084\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2066217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2066217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2046564\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2046564\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2095202,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2095202,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1231987,..\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1231987,..\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2097025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2097025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2109248\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2109248\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2104127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D/E NEUTRALIZING BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2104127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SHIGELLA ANTIS POLY A1 LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2161354\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SHIGELLA ANTIS POLY A1 LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2161354\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2104127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D/E NEUTRALIZING BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2104127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2104103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2104103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2053886\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2053886\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2167252\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2167252\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT 10X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2174091\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"TUBE EGG YOLK ENRICHMENT 50PCT 10X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2174091\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT 10X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2174091\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"TUBE EGG YOLK ENRICHMENT 50PCT 10X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2174091\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2104127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D/E NEUTRALIZING BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2104127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 2204114\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 2204114\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830011016N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL TM (BHN BAKU KOSMETIK) COA 830011016N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830011016N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL TM (BHN BAKU KOSMETIK) COA 830011016N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 213916\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"CHRONOLINE TM (BHN BAKU KOSMETIK) COA 213916\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834011326N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834011326N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2133702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) COA 2133702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOROLAC TROMETHAMOL/TROMETHAMINE (BHN BAKU OBAT) COA 22100269\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"KETOROLAC TROMETHAMOL/TROMETHAMINE (BHN BAKU OBAT) COA 22100269\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20220823\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20220823\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OXOMEMAZINE HYDROCHLORIDE (BHN BAKU OBAT) COA HXHCPQ001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29343000\", \"uraian\": \"OXOMEMAZINE HYDROCHLORIDE (BHN BAKU OBAT) COA HXHCPQ001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE (R) MONOGRAMMING INK S-1-180000 WHITE (BHN BAKU PEWARNA TABLET) COA WP861109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPACODE (R) MONOGRAMMING INK S-1-180000 WHITE (BHN BAKU PEWARNA TABLET) COA WP861109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF (BHN BAKU SUPPLEMEN) COA UE02206017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO (R) LUTEIN 20PCT SAF (BHN BAKU SUPPLEMEN) COA UE02206017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT22050011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT22050011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 220202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"OILESS'CITY TM (BHN BAKU KOSMETIK) COA 220202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 220202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"OILESS'CITY TM (BHN BAKU KOSMETIK) COA 220202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 220211,220402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 220211,220402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 220402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 220402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 220215\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 220215\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 220215\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 220215\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) TF TITANIUM FREE MOISTURE BARRIER FILM..(BHN BAKU PEWARNA TABLET) COA GA716003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) TF TITANIUM FREE MOISTURE BARRIER FILM..(BHN BAKU PEWARNA TABLET) COA GA716003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA S7257\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29225090\", \"uraian\": \"TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA S7257\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYMARIN (BHN BAKU SUPLEMEN) COA 22S0033304\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SILYMARIN (BHN BAKU SUPLEMEN) COA 22S0033304\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 21S0191800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 21S0191800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA/PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 22S0097300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"CENTELLA ASIATICA/PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 22S0097300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 21S0232100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 21S0232100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BILBERRY (V. MYRTILLUS) ET EX 36PCT (BHN BAKU SUPLEMEN) COA 22S0183902\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BILBERRY (V. MYRTILLUS) ET EX 36PCT (BHN BAKU SUPLEMEN) COA 22S0183902\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BILBERRY (V. MYRTILLUS) ET EX 36PCT (BHN BAKU SUPLEMEN) COA 22S0183902\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BILBERRY (V. MYRTILLUS) ET EX 36PCT (BHN BAKU SUPLEMEN) COA 22S0183902\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BILBERRY (V. MYRTILLUS) ET EX 36PCT (BHN BAKU SUPLEMEN) COA 22S0183902\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BILBERRY (V. MYRTILLUS) ET EX 36PCT (BHN BAKU SUPLEMEN) COA 22S0183902\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYMARIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 22B0054100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SILYMARIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 22B0054100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BUTCHERBROOM DRY HYDR EX.9-11 (BHN BAKU SUPLEMEN) COA 21B0051000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BUTCHERBROOM DRY HYDR EX.9-11 (BHN BAKU SUPLEMEN) COA 21B0051000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA 0000080129\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA 0000080129\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 720 CAN 10 KG (BHN BAKU KOSMETIK) COA 1584891\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 720 CAN 10 KG (BHN BAKU KOSMETIK) COA 1584891\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) COA 1582604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) COA 1582604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 903 CAN 10 KG (BHN BAKU KOSMETIK) COA 1581875\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 903 CAN 10 KG (BHN BAKU KOSMETIK) COA 1581875\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 940 CAN 10 KG (BHN BAKU KOSMETIK) COA 1576588\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 940 CAN 10 KG (BHN BAKU KOSMETIK) COA 1576588\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) COA 1586325\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) COA 1586325\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) COA 1583461,1583499\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) COA 1583461,1583499\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIDIN DO CAN 10 KG (BHN BAKU KOSMETIK) COA 1579588\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIDIN DO CAN 10 KG (BHN BAKU KOSMETIK) COA 1579588\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) COA 1584708\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) COA 1584708\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEO EXTRAPONE (R) LEMON (BHN BAKU KOSMETIK) COA 10300019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"NEO EXTRAPONE (R) LEMON (BHN BAKU KOSMETIK) COA 10300019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11220402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11220402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02201482\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02201482\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02201012,UE02201013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02201012,UE02201013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040074\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040074\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060048\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060048\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040074\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040074\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02205054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02205054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0421040082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HMS (BHN BAKU KOSMETIK) COA 0421040082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0922020031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX (BHN BAKU KOSMETIK) COA 0922020031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02205054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02205054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060048\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060048\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0040349\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0040349\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0922020031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX (BHN BAKU KOSMETIK) COA 0922020031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00765707,VE00766186\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"AMPHISOL K (BHN BAKU KOSMETIK) COA VE00765707,VE00766186\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P1F07QA000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL TX (BHN BAKU KOSMETIK) COA P1F07QA000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES2110623\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"ALLANTOIN (BHN BAKU KOSMETIK) COA ES2110623\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX VITAMIN MINERAL CP (POST BORDER) COA XW92208088\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX VITAMIN MINERAL CP (POST BORDER) COA XW92208088\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122201977\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054300\", \"uraian\": \"MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122201977\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) COA GA714382\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) COA GA714382\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) COA GA714751\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) COA GA714751\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G52990...(BHN BAKU PEWARNA TABLET) COA GA714383\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G52990...(BHN BAKU PEWARNA TABLET) COA GA714383\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA708748\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA708748\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131...(BHN BAKU PEWARNA TABLET) COA GA714385\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131...(BHN BAKU PEWARNA TABLET) COA GA714385\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B84893...(BHN BAKU PEWARNA TABLET) COA GA714858\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03B84893...(BHN BAKU PEWARNA TABLET) COA GA714858\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) TF TITANIUM FREE MOISTURE BARRIER FILM...(BHN BAKU PEWARNA TABLET) COA GA714942\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) TF TITANIUM FREE MOISTURE BARRIER FILM...(BHN BAKU PEWARNA TABLET) COA GA714942\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G61097...(BHN BAKU PEWARNA TABLET) COA GA714612\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G61097...(BHN BAKU PEWARNA TABLET) COA GA714612\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A18597..(BHN BAKU PEWARNA TABLET) COA GA714888\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A18597..(BHN BAKU PEWARNA TABLET) COA GA714888\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A18597..(BHN BAKU PEWARNA TABLET) COA GA714888\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A18597..(BHN BAKU PEWARNA TABLET) COA GA714888\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019...(BHN BAKU PEWARNA TABLET) COA GA714388\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019...(BHN BAKU PEWARNA TABLET) COA GA714388\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) COA GA714751\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) COA GA714751\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55041 ...(BHN BAKU PEWARNA TABLET) COA GA714430\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55041 ...(BHN BAKU PEWARNA TABLET) COA GA714430\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA GA715186\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA GA715186\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G63147...(BHN BAKU PEWARNA TABLET) COA GA714947\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G63147...(BHN BAKU PEWARNA TABLET) COA GA714947\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) EZ EASY SWALLOW FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA714763\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) EZ EASY SWALLOW FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA714763\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G57708...(BHN BAKU PEWARNA TABLET) COA GA713924\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G57708...(BHN BAKU PEWARNA TABLET) COA GA713924\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014...(BHN BAKU PEWARNA TABLET) COA GA713990\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014...(BHN BAKU PEWARNA TABLET) COA GA713990\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND (R) PB-66511 BROWN (BHN BAKU PEWARNA TABLET) COA GA715002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"PIGMENT BLEND (R) PB-66511 BROWN (BHN BAKU PEWARNA TABLET) COA GA715002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A62337..(BHN BAKU PEWARNA TABLET) COA GA714953\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A62337..(BHN BAKU PEWARNA TABLET) COA GA714953\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ESOMEPRAZOLE MAGNESIUM USP (BHN BAKU OBAT) COA ESM/2208305\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"ESOMEPRAZOLE MAGNESIUM USP (BHN BAKU OBAT) COA ESM/2208305\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX (R) OPAQUE COLOR COATING CONCENTRATE AS-R-... (BHN BAKU PEWARNA TABLET) COA DT735075\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPALUX (R) OPAQUE COLOR COATING CONCENTRATE AS-R-... (BHN BAKU PEWARNA TABLET) COA DT735075\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE (R) MONOGRAMMING INK S-1-277001 BLACK (BHN BAKU PEWARNA TABLET) COA DT734633\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPACODE (R) MONOGRAMMING INK S-1-277001 BLACK (BHN BAKU PEWARNA TABLET) COA DT734633\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX (R) OPAQUE COLOR COATING CONCENTRATE AS-1537 PINK (BHN BAKU PEWARNA TABLET) COA DT735076\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPALUX (R) OPAQUE COLOR COATING CONCENTRATE AS-1537 PINK (BHN BAKU PEWARNA TABLET) COA DT735076\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLYPREGELATINIZED MAIZE...(BHN BAKU PEWARNA TABLET) COA IN547410\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLYPREGELATINIZED MAIZE...(BHN BAKU PEWARNA TABLET) COA IN547410\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ACID PYROPHOSPHATE FOOD GRADE (BHN BAKU MAKANAN) COA 09220715\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28353990\", \"uraian\": \"SODIUM ACID PYROPHOSPHATE FOOD GRADE (BHN BAKU MAKANAN) COA 09220715\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105713322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200H (BHN BAKU OBAT) COA L105713322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPSULAC (R) 60 (BHN BAKU OBAT) COA L100412722\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"CAPSULAC (R) 60 (BHN BAKU OBAT) COA L100412722\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104313222\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104313222\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 122201661\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28365010\", \"uraian\": \"VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 122201661\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN547853\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN547853\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN547966\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN547966\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN547860\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN547860\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN547855\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN547855\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT MIN MENGNIU UHT MILK V5 (BHN BAKU MAKANAN) COA XW92208569\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VIT MIN MENGNIU UHT MILK V5 (BHN BAKU MAKANAN) COA XW92208569\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ20510674\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ20510674\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22030063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22030063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT22010007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT22010007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT22010007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT22010007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210142,0708210144,0708210145,0708210146\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210142,0708210144,0708210145,0708210146\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000205405,0000205406\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000205405,0000205406\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22050200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22050200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS5860322,HS5870322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS5860322,HS5870322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02109811\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02109811\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NYSTATIN MICRONIZED (BHN BAKU OBAT) COA C132093\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NYSTATIN MICRONIZED (BHN BAKU OBAT) COA C132093\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLUOROMETHOLONE MICRONISED USP BP JP (BHN BAKU OBAT) COA 2201540844\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"FLUOROMETHOLONE MICRONISED USP BP JP (BHN BAKU OBAT) COA 2201540844\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) COA 208162\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-56A (18KG) (BHN BAKU KOSMETIK) COA 208162\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 207177\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 207177\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) COA 208280,208281\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6028 (16KG) (BHN BAKU KOSMETIK) COA 208280,208281\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) COA 208280\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (16KG) (BHN BAKU KOSMETIK) COA 208280\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) COA 207942\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSP-100 (10KG) (BHN BAKU KOSMETIK) COA 207942\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) COA 208244\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) COA 208244\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP24122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP24122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXCIPIENT 0/13...(BHN BAKU SUPPLEMEN) COA MTP10222,MTP17022,MTP16022, SAMPLE NO...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXCIPIENT 0/13...(BHN BAKU SUPPLEMEN) COA MTP10222,MTP17022,MTP16022, SAMPLE NO...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000080185\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000080185\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000080186\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000080186\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H105 83 PCT (BHN BAKU KOSMETIK) COA 0000080187\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H105 83 PCT (BHN BAKU KOSMETIK) COA 0000080187\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA 20220816\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17023010\", \"uraian\": \"DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA 20220816\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS (BHN BAKU SUPLEMEN) COA 3AX2209012,1AX2208512\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS (BHN BAKU SUPLEMEN) COA 3AX2209012,1AX2208512\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK) COA EG138-210901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK) COA EG138-210901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK) COA EG138-220801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK) COA EG138-220801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO220202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO220202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) COA EG543-220702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) COA EG543-220702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK) COA EG138-220801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK) COA EG138-220801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (SB) (BHN BAKU KOSMETIK) COA ROSD220603-BIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (SB) (BHN BAKU KOSMETIK) COA ROSD220603-BIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2203641990\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2203641990\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE EP/USP (BHN BAKU OBAT) COA NEDNA220811\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE SODIUM PHOSPHATE EP/USP (BHN BAKU OBAT) COA NEDNA220811\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 20701,20712,20727\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 20701,20712,20727\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA MLAH0310622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29341000\", \"uraian\": \"MELOXICAM BP (BHN BAKU OBAT) COA MLAH0310622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT MAGNESIUM CARBONATE (BHN BAKU MAKANAN) COA 3122338\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28369990\", \"uraian\": \"LIGHT MAGNESIUM CARBONATE (BHN BAKU MAKANAN) COA 3122338\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIPOTASSIUM CITRATE 1-HYDRATE, CRYST.,PH.EUR.10 ED.USP43 (BHN BAKU OBAT) COA 3122359\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"TRIPOTASSIUM CITRATE 1-HYDRATE, CRYST.,PH.EUR.10 ED.USP43 (BHN BAKU OBAT) COA 3122359\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COPPER SULFATE, POWDER, PH.EUR.10.ED. (BHN BAKU OBAT) COA 3111010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332500\", \"uraian\": \"COPPER SULFATE, POWDER, PH.EUR.10.ED. (BHN BAKU OBAT) COA 3111010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHOLINE L-BITARTRATE (BAHAN BAKU OBAT) COA 3025593\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29231000\", \"uraian\": \"CHOLINE L-BITARTRATE (BAHAN BAKU OBAT) COA 3025593\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202002,122202003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202002,122202003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA715083\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA715083\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID MONOHYDRATE (CAM) GRANULAR 8-40 MESH E330 (BHN BAKU KOSMETIK) COA 1MT2105030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID MONOHYDRATE (CAM) GRANULAR 8-40 MESH E330 (BHN BAKU KOSMETIK) COA 1MT2105030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) COA 7766052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) COA 7766052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PALMEROL 1498 MYRISTYL ALCOHOL/MB (BHN BAKU KOSMETIK) COA 1A02022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29051900\", \"uraian\": \"PALMEROL 1498 MYRISTYL ALCOHOL/MB (BHN BAKU KOSMETIK) COA 1A02022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA 477/22\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA 477/22\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB060722\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB060722\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB060722\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB060722\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B290622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B290622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B290622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B290622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LG120822\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LG120822\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BILBERRY (V. MYRTILLUS) ET EX 36PCT (BHN BAKU SUPLEMEN) COA 22S0208500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BILBERRY (V. MYRTILLUS) ET EX 36PCT (BHN BAKU SUPLEMEN) COA 22S0208500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 22100448,22100449\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 22100448,22100449\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340399,B340401,B340419\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX COMPACTED (BHN BAKU OBAT) COA B340399,B340401,B340419\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201850,122201851\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201850,122201851\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201851\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201851\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202003,122202017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202003,122202017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202015,122202016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202015,122202016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512148,G02512236\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47069200\", \"uraian\": \"SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512148,G02512236\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NONIVAMIDE (SYNTHETIC CAPSAICIN) (BHN BAKU KOSMETIK) COA 20220905\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29241990\", \"uraian\": \"NONIVAMIDE (SYNTHETIC CAPSAICIN) (BHN BAKU KOSMETIK) COA 20220905\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOTAXIME SODIUM (BHN BAKU OBAT) COA 3042203058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOTAXIME SODIUM (BHN BAKU OBAT) COA 3042203058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ESCITALOPRAM OXALATE (BHN BAKU OBAT) COA 5689-21-013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329900\", \"uraian\": \"ESCITALOPRAM OXALATE (BHN BAKU OBAT) COA 5689-21-013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-220705\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-220705\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) COA 321CAA0023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CETRIMIDE (BHN BAKU KOSMETIK) COA 321CAA0023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA F02921UG\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA F02921UG\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-005-Z\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-005-Z\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-005-Z\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-005-Z\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL02205481\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU MAKANAN) COA TL02205481\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02202020,UE02203029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02202020,UE02203029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ20410652\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ20410652\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2111125 S/D UEB2111127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2111125 S/D UEB2111127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX MILK POWDER FOR ADULTS (BHN BAKU MAKANAN) COA XW92208037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX MILK POWDER FOR ADULTS (BHN BAKU MAKANAN) COA XW92208037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50 (POST BORDER) COA UE02201002,UE02202011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50 (POST BORDER) COA UE02201002,UE02202011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060043,0522060042\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060043,0522060042\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANGANESE(II)-SULFATE 1-HYDRATE (BHN BAKU OBAT) COA 3122126\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"MANGANESE(II)-SULFATE 1-HYDRATE (BHN BAKU OBAT) COA 3122126\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COPPER SULFATE, POWDER, PH.EUR.10.ED (BHN BAKU OBAT) COA 3104245-01, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332500\", \"uraian\": \"COPPER SULFATE, POWDER, PH.EUR.10.ED (BHN BAKU OBAT) COA 3104245-01, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POTASSIUM IODIDE AND CARRIER (BHN BAKU OBAT) COA 3117712, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28276000\", \"uraian\": \"POTASSIUM IODIDE AND CARRIER (BHN BAKU OBAT) COA 3117712, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT. A PALM. 1.0 M + VIT. D3 100'000 (BHN BAKU MAKANAN) COA UT22040146\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VIT. A PALM. 1.0 M + VIT. D3 100'000 (BHN BAKU MAKANAN) COA UT22040146\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02208531\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02208531\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 CRYST FOOD GRADE (BHN BAKU KOSMETIK) COA 012203015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 CRYST FOOD GRADE (BHN BAKU KOSMETIK) COA 012203015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PEPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2173492\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PEPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2173492\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1280083\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1280083\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1280083\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1280083\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2420322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2420322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2094440\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2094440\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1285442\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1285442\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1075037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1075037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1075037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1075037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1075037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1075037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1110920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1110920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1110920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1110920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1110920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1110920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1110920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1110920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA EDS/CC1190B\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"ERDOSTEINE (BAHAN BAKU OBAT) COA EDS/CC1190B\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LABRAFIL M 1944 CS (BHN BAKU SUPPLEMEN) COA 190659\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LABRAFIL M 1944 CS (BHN BAKU SUPPLEMEN) COA 190659\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TEFOSE 63 BF (BHN BAKU SUPPLEMEN) COA 190648\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TEFOSE 63 BF (BHN BAKU SUPPLEMEN) COA 190648\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TEFOSE 63 BF (BHN BAKU SUPPLEMEN) COA 190657\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TEFOSE 63 BF (BHN BAKU SUPPLEMEN) COA 190657\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRANSCUTOL P BF (BHN BAKU SUPPLEMEN) COA 190825\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TRANSCUTOL P BF (BHN BAKU SUPPLEMEN) COA 190825\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) CSB (BHN BAKU KOSMETIK) COA 01/22GL4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40 BRIX) CSB (BHN BAKU KOSMETIK) COA 01/22GL4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) CSB (BHN BAKU KOSMETIK) COA 01/22GL4, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40 BRIX) CSB (BHN BAKU KOSMETIK) COA 01/22GL4, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CETYL PALMITATE PELLETS CAR (BHN BAKU SUPPLEMEN) COA 186578\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"CETYL PALMITATE PELLETS CAR (BHN BAKU SUPPLEMEN) COA 186578\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO BP (BHN BAKU KOSMETIK) COA 189962\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"VEGETOL GRAPEFRUIT GR403 HYDRO BP (BHN BAKU KOSMETIK) COA 189962\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MONOPROPYLENE GLYCOL (BHN BAKU KOSMETIK) COA PG(S)220813\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"MONOPROPYLENE GLYCOL (BHN BAKU KOSMETIK) COA PG(S)220813\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) COA GA716714\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) COA GA716714\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) COA GA716702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) COA GA716702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-7003...(BHN BAKU PEWARNA TABLET) COA GA716404\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-7003...(BHN BAKU PEWARNA TABLET) COA GA716404\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55041 RED (BHN BAKU PEWARNA TABLET) COA GA716161\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55041 RED (BHN BAKU PEWARNA TABLET) COA GA716161\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA GA716335\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA GA716335\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K580000...(BHN BAKU PEWARNA TABLET) COA GA716542\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K580000...(BHN BAKU PEWARNA TABLET) COA GA716542\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA716394\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA716394\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014...(BHN BAKU PEWARNA TABLET) COA GA716261\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014...(BHN BAKU PEWARNA TABLET) COA GA716261\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620041...(BHN BAKU PEWARNA TABLET) COA GA716262\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620041...(BHN BAKU PEWARNA TABLET) COA GA716262\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND (R) PB-52366 YELLOW (BHN BAKU PEWARNA TABLET) COA GA714306\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"PIGMENT BLEND (R) PB-52366 YELLOW (BHN BAKU PEWARNA TABLET) COA GA714306\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A...(BHN BAKU PEWARNA TABLET) COA GA714974\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A...(BHN BAKU PEWARNA TABLET) COA GA714974\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 85G620014...(BHN BAKU PEWARNA TABLET) COA GA715069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 85G620014...(BHN BAKU PEWARNA TABLET) COA GA715069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F19250...(BHN BAKU PEWARNA TABLET) COA GA715260\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F19250...(BHN BAKU PEWARNA TABLET) COA GA715260\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE BARRIER...(BHN BAKU PEWARNA TABLET) COA GA716335\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE BARRIER...(BHN BAKU PEWARNA TABLET) COA GA716335\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLCOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/0822025,SLL/MC/0822025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"METHYLCOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/0822025,SLL/MC/0822025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA M4D120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA M4D120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA M4D120,M9G127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA M4D120,M9G127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA M9G127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA M9G127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA M9G127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA M9G127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND COMPAREX (BHN BAKU KOSMETIK) COA COEX-013082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND COMPAREX (BHN BAKU KOSMETIK) COA COEX-013082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012682\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012682\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND DM 3 COMPLEX (BHN BAKU KOSMETIK) COA ANFE-010292\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND DM 3 COMPLEX (BHN BAKU KOSMETIK) COA ANFE-010292\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-040572\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-040572\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012682\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012682\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012682\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012682\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND FERMENTED KOREAN SOYBEAN SOLUTION (BHN BAKU KOSMETIK) COA TWAW-012692\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND FERMENTED KOREAN SOYBEAN SOLUTION (BHN BAKU KOSMETIK) COA TWAW-012692\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-112092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-112092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA M9G127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA M9G127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-220912\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-220912\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-GLUTAMIC ACID (FCC GRADE) PURITY 99PCT UP (BHN BAKU MAKANAN) COA 1000094531/220908\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"L-GLUTAMIC ACID (FCC GRADE) PURITY 99PCT UP (BHN BAKU MAKANAN) COA 1000094531/220908\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2520822\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2520822\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02208530\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02208530\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLOPIDOGREL BISULFATE USP 44 (BHN BAKU OBAT) COA CLOPI/12060196\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"CLOPIDOGREL BISULFATE USP 44 (BHN BAKU OBAT) COA CLOPI/12060196\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GREEN TEA FAIRTRADE DISTILLATE (BHN BAKU KOSMETIK) COA 22070268\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GREEN TEA FAIRTRADE DISTILLATE (BHN BAKU KOSMETIK) COA 22070268\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL220912,MCCPOL220915\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29094900\", \"uraian\": \"MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL220912,MCCPOL220915\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG220901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG220901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS SILK-1000 (BHN BAKU KOSMETIK) COA GFI\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS SILK-1000 (BHN BAKU KOSMETIK) COA GFI\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA GFC\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) COA GFC\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA GGI\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA GGI\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA GGI\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA GGI\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA GDB\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROTESIL LH (BHN BAKU KOSMETIK) COA GDB\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA220901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA220901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA220901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA220901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) COA EG543-220702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) COA EG543-220702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for UNIMER U-151 (BHN BAKU KOSMETIK) COA VO00005211\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"UNIMER U-151 (BHN BAKU KOSMETIK) COA VO00005211\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464151491\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464151491\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464151491\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464151491\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180K9G001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180K9G001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA GA717458\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA GA717458\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ESOMEPRAZOLE SODIUM STERILE (BAHAN BAKU OBAT) COA SI/EPZ/00050722\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"ESOMEPRAZOLE SODIUM STERILE (BAHAN BAKU OBAT) COA SI/EPZ/00050722\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANTOPRAZOLE SODIUM (STERILE) BAHAN BAKU OBAT SI/PPZ/00890822\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"PANTOPRAZOLE SODIUM (STERILE) BAHAN BAKU OBAT SI/PPZ/00890822\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CETYL PALMITATE PELLETS CAR (BHN BAKU OBAT) COA 191445\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"CETYL PALMITATE PELLETS CAR (BHN BAKU OBAT) COA 191445\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRECIROL ATO 5 CAR (BHN BAKU OBAT) COA 190960\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"PRECIROL ATO 5 CAR (BHN BAKU OBAT) COA 190960\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LACTOFIL MOIST CAR (BHN BAKU OBAT) COA Z13360024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LACTOFIL MOIST CAR (BHN BAKU OBAT) COA Z13360024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONO CHARDY (BHN BAKU KOSMETIK) COA 220039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"CHRONO CHARDY (BHN BAKU KOSMETIK) COA 220039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 221569\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 221569\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 221479\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"IZAYOI (BHN BAKU KOSMETIK) COA 221479\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 221726,222375\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329900\", \"uraian\": \"K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 221726,222375\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN547845\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN547845\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN547842\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN547842\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN547854\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN547854\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN547849\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN547849\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180K9G001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180K9G001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D011LBLL03\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D011LBLL03\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E4M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180M26011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E4M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180M26011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for C47-051 SUNCROMA TITANIUM DIOXIDE (BHN BAKU KOSMETIK) COA D0XT06\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32061110\", \"uraian\": \"C47-051 SUNCROMA TITANIUM DIOXIDE (BHN BAKU KOSMETIK) COA D0XT06\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 2210060792\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 2210060792\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA L202209-018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35040000\", \"uraian\": \"SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA L202209-018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MINERAL PREMIX MILK POWDER FOR ADULTS V2 (BHN BAKU MAKANAN) COA XW92208575,XW92208576\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"MINERAL PREMIX MILK POWDER FOR ADULTS V2 (BHN BAKU MAKANAN) COA XW92208575,XW92208576\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11220701,QZ11220706\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11220701,QZ11220706\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12204016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12204016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00766186\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"AMPHISOL K (BHN BAKU KOSMETIK) COA VE00766186\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010078\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010078\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000205406,0000205407\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000205406,0000205407\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22050186\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22050186\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001670395\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SLX (BHN BAKU KOSMETIK) COA 0001670395\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0922020031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX (BHN BAKU KOSMETIK) COA 0922020031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0421040082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HMS (BHN BAKU KOSMETIK) COA 0421040082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS5870322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS5870322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF22165008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF22165008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0040349\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0040349\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22050186\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22050186\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22050200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22050200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NUTRASWEETM NATURAL (BHN BAKU MAKANAN) COA MAM2209181\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29389000\", \"uraian\": \"NUTRASWEETM NATURAL (BHN BAKU MAKANAN) COA MAM2209181\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP20722,MTP20622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP20722,MTP20622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP21922\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP21922\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA API HIGH PURITY 0/13... (BHN BAKU SUPPLEMEN) COA MTP08422,MTP18422, SAMPLE NO COMM\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA API HIGH PURITY 0/13... (BHN BAKU SUPPLEMEN) COA MTP08422,MTP18422, SAMPLE NO COMM\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22080652,WB22080655\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22080652,WB22080655\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799031197N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799031197N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829011471N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"B-WHITE TM (BHN BAKU KOSMETIK) COA 829011471N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIOPHILIC TM H MB (BHN BAKU KOSMETIK) COA 2206902\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"BIOPHILIC TM H MB (BHN BAKU KOSMETIK) COA 2206902\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GREYVERSE TM (BHN BAKU KOSMETIK) COA 833011270N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"GREYVERSE TM (BHN BAKU KOSMETIK) COA 833011270N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HELIOFEEL TM 22 MB (BHN BAKU KOSMETIK) COA 2131301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HELIOFEEL TM 22 MB (BHN BAKU KOSMETIK) COA 2131301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANABLUE TM PARABEN FREE (BHN BAKU KOSMETIK) COA 788021070N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LANABLUE TM PARABEN FREE (BHN BAKU KOSMETIK) COA 788021070N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019877N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019877N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029946N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029946N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829011471N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"B-WHITE TM (BHN BAKU KOSMETIK) COA 829011471N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830011026N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL TM (BHN BAKU KOSMETIK) COA 830011026N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834011326N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834011326N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXO-P TM (BHN BAKU KOSMETIK) COA 715031272N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EXO-P TM (BHN BAKU KOSMETIK) COA 715031272N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANACHRYS 2B PF (PRESERVATIVE-3379305-P1K (BHN BAKU KOSMETIK) COA 793051022N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LANACHRYS 2B PF (PRESERVATIVE-3379305-P1K (BHN BAKU KOSMETIK) COA 793051022N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029946N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029946N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029946N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029946N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201894,122202015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201894,122202015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT MAGNESIUM CARBONATE POWDER, BP 2021 (BHN BAKU OBAT) COA 3122338\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28369990\", \"uraian\": \"LIGHT MAGNESIUM CARBONATE POWDER, BP 2021 (BHN BAKU OBAT) COA 3122338\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KP-561P (16KG) (BHN BAKU KOSMETIK) COA 209151\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KP-561P (16KG) (BHN BAKU KOSMETIK) COA 209151\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KP-561P (16KG) (BHN BAKU KOSMETIK) COA 209151\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KP-561P (16KG) (BHN BAKU KOSMETIK) COA 209151\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) COA 209248\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) COA 209248\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-54HV (18KG) (BHN BAKU KOSMETIK) COA 209046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-54HV (18KG) (BHN BAKU KOSMETIK) COA 209046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 208179\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 208179\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) COA 208280\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (16KG) (BHN BAKU KOSMETIK) COA 208280\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KP-561P (16KG) (BHN BAKU KOSMETIK) COA 209151\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KP-561P (16KG) (BHN BAKU KOSMETIK) COA 209151\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) COA 209250\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) COA 209250\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN E (BHN BAKU KOSMETIK) COA 201202206204\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"VITAMIN E (BHN BAKU KOSMETIK) COA 201202206204\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHENOL RED LACTOSE BR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2215070\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PHENOL RED LACTOSE BR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2215070\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2228563\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2228563\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 2221937\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EE BROTH MOSSEL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 2221937\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2061186\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2061186\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2081022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2081022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2158101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2158101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2137560\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2137560\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1215037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1215037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2157420\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2157420\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2067255\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2067255\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1257857\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1257857\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2158101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2158101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2143804\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2143804\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2158101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2158101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1229957\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1229957\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2145565\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2145565\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ CAMPY CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2173803\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ CAMPY CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2173803\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1340967,.\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE STERILE RODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1340967,.\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2066085\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2066085\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2038654\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2038654\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1350021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1350021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2034966\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2034966\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2046617,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2046617,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2074958,2172773\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2074958,2172773\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1272665,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1272665,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TSA TM WLP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2199934\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"TSA TM WLP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2199934\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BIGGY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1166930\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BIGGY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1166930\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MOTILITY TEST MEDIUM BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2067250\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MOTILITY TEST MEDIUM BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2067250\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2104109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2104109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MICRO INOCULUM BROTH 500 G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1075951\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MICRO INOCULUM BROTH 500 G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1075951\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9337678\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9337678\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CLED AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2214292\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE CLED AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2214292\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1348303\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1348303\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1216783\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1216783\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2088727\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2088727\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MICRO ASSAY CULTURE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335689\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MICRO ASSAY CULTURE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335689\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2217600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2217600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST CARBON BASE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2137773\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE YEAST CARBON BASE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2137773\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE OF BASAL MEDIUM 500GR(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1223658\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE OF BASAL MEDIUM 500GR(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1223658\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1264672\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1264672\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 2179372\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 2179372\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1350021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DEXTROSE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1350021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2034966\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2034966\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2074156\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2074156\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1188089,2214259\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1188089,2214259\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2143794\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2143794\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E5 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2444151392\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E5 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2444151392\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464186398\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464186398\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL A15 PREMIUM LV METHYLCELLULOSE...(BHN BAKU PEWARNA TABLET) COA D180M11022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL A15 PREMIUM LV METHYLCELLULOSE...(BHN BAKU PEWARNA TABLET) COA D180M11022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL A15 PREMIUM LV METHYLCELLULOSE...(BHN BAKU PEWARNA TABLET) COA D180L7E022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL A15 PREMIUM LV METHYLCELLULOSE...(BHN BAKU PEWARNA TABLET) COA D180L7E022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL A15 PREMIUM LV METHYLCELLULOSE...(BHN BAKU PEWARNA TABLET) COA D180L6S021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL A15 PREMIUM LV METHYLCELLULOSE...(BHN BAKU PEWARNA TABLET) COA D180L6S021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL A15 PREMIUM LV METHYLCELLULOSE...(BHN BAKU PEWARNA TABLET) COA D180LCO021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL A15 PREMIUM LV METHYLCELLULOSE...(BHN BAKU PEWARNA TABLET) COA D180LCO021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL A15 PREMIUM LV METHYLCELLULOSE...(BHN BAKU PEWARNA TABLET) COA D180M11022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL A15 PREMIUM LV METHYLCELLULOSE...(BHN BAKU PEWARNA TABLET) COA D180M11022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2192310\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2192310\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA 20220905\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17023010\", \"uraian\": \"DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA 20220905\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP22084116,XP22084117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP22084116,XP22084117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM AL HYD GEL LV13, USP (BHN BAKU OBAT) COA 102213046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"BARCROFT TM AL HYD GEL LV13, USP (BHN BAKU OBAT) COA 102213046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102269002,102269005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102269002,102269005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2192755,..\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2192755,..\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2188687\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2188687\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2214155\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2214155\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1049084\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1049084\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2090208,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2090208,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL ISOVITALEX ENRICHMENT 2ML 5EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2157015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL ISOVITALEX ENRICHMENT 2ML 5EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2157015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL E COLI H ANTISERUM H7 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2125032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL E COLI H ANTISERUM H7 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2125032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2111967\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2111967\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2076212\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2076212\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1344136\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1344136\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SHIGELLA ANTIS POLY A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2125067\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SHIGELLA ANTIS POLY A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2125067\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1049084\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1049084\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL E COLI O ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2125078\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL E COLI O ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2125078\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2152411\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2152411\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2109248\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2109248\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2104127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2104127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2139402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2139402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU TGF BTA1 CBA FLEX SET B6 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2109995\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU TGF BTA1 CBA FLEX SET B6 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2109995\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU IL-8 CBA FLEX SET A9 100TST (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1295314\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU IL-8 CBA FLEX SET A9 100TST (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1295314\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU G-CSF CBA FLEX SET C8 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2168172\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU G-CSF CBA FLEX SET C8 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2168172\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU ANGIOGENIN CBA FLEX SET C4 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2007957\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU ANGIOGENIN CBA FLEX SET C4 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2007957\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU BASIC FGF CBA FLEX SET C5 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1253781\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU BASIC FGF CBA FLEX SET C5 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1253781\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU IL-10 CBA FLEX SET B7 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1165999\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU IL-10 CBA FLEX SET B7 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1165999\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU IL-6 CBA FLEX SET A7 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1337708\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU IL-6 CBA FLEX SET A7 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1337708\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052234\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47063000\", \"uraian\": \"SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052234\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300062,10300063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300062,10300063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) CUCUMBER GW (BHN BAKU KOSMETIK) COA 10300025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EXTRAPONE (R) CUCUMBER GW (BHN BAKU KOSMETIK) COA 10300025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) SEA EXTRACTS N (BHN BAKU KOSMETIK) COA 10300036\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"EXTRAPONE (R) SEA EXTRACTS N (BHN BAKU KOSMETIK) COA 10300036\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) GINSENG (BHN BAKU KOSMETIK) COA 10300047\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021940\", \"uraian\": \"EXTRAPONE (R) GINSENG (BHN BAKU KOSMETIK) COA 10300047\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACTIPONE (R) WHITE TEA GW (BHN BAKU KOSMETIK) COA 10300051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"ACTIPONE (R) WHITE TEA GW (BHN BAKU KOSMETIK) COA 10300051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD (BHN BAKU MAKANAN) COA 0822010200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD (BHN BAKU MAKANAN) COA 0822010200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0722010027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHS (BHN BAKU KOSMETIK) COA 0722010027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010231,0822010232\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010231,0822010232\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL 75 L (POST BORDER) COA TL02204312\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL 75 L (POST BORDER) COA TL02204312\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22050200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22050200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX VMP JELLY (BHN BAKU MAKANAN) COA XW92208641\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX VMP JELLY (BHN BAKU MAKANAN) COA XW92208641\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02206013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02206013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ20712237\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ20712237\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02207333\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02207333\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT22020005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT22020005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE FCC (POST BORDER) COA 0000206956\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE FCC (POST BORDER) COA 0000206956\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (POST BORDER) COA UQ20712237\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (POST BORDER) COA UQ20712237\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE02206013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU MAKANAN) COA UE02206013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02206013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02206013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02206013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02206013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (POST BORDER) COA UT22030003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (POST BORDER) COA UT22030003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02206013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02206013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM CARBONATE, HEAVY POWDER, PH.EUR.10.ED... (POST BORDER) COA 3119795\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28369990\", \"uraian\": \"MAGNESIUM CARBONATE, HEAVY POWDER, PH.EUR.10.ED... (POST BORDER) COA 3119795\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM ACETATE CALCIUM ACETATE (BHN BAKU OBAT) COA 3114759\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29152990\", \"uraian\": \"CALCIUM ACETATE CALCIUM ACETATE (BHN BAKU OBAT) COA 3114759\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINC SULFATE 1-HYDRATE POWDER, USP 43, FCC 12 (BHN BAKU OBAT) COA 3080021, SAMPLE NO COMMERCIAL\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"ZINC SULFATE 1-HYDRATE POWDER, USP 43, FCC 12 (BHN BAKU OBAT) COA 3080021, SAMPLE NO COMMERCIAL\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINC CITRATE POWDER, USP 43 (BHN BAKU OBAT) COA , 3108752 SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181590\", \"uraian\": \"ZINC CITRATE POWDER, USP 43 (BHN BAKU OBAT) COA , 3108752 SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA708748\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA708748\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHENYTOIN SODIUM (BHN BAKU OBAT) COA 22100475\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329900\", \"uraian\": \"PHENYTOIN SODIUM (BHN BAKU OBAT) COA 22100475\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2209001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28352510\", \"uraian\": \"DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2209001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-021152,AACN-041992\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-021152,AACN-041992\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-040572\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-040572\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012682,BHA-020192\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012682,BHA-020192\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-021421\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-021421\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA M9G127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA M9G127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-072721\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-072721\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1220921\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1220921\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) COA MSEEC-012792\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) COA MSEEC-012792\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-041052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-041052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NOMEGESTROL ACETATE (BHN BAKU OBAT) COA NB1923\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372300\", \"uraian\": \"NOMEGESTROL ACETATE (BHN BAKU OBAT) COA NB1923\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BUDESONIDE MICRONIZED (BHN BAKU OBAT) COA NB2835M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"BUDESONIDE MICRONIZED (BHN BAKU OBAT) COA NB2835M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT (R) 5396 ERYTHROSINE ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP844565:1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT (R) 5396 ERYTHROSINE ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP844565:1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT (R) 6010 D&C YELLOW 10 ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP853290:BB4288\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT (R) 6010 D&C YELLOW 10 ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP853290:BB4288\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5177 FD&C YELLOW 5/TARTRA...(BHN BAKU PEWARNA TABLET) COA WP852908:BB3942\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5177 FD&C YELLOW 5/TARTRA...(BHN BAKU PEWARNA TABLET) COA WP852908:BB3942\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C YELLOW 6/SUNSET...(BHN BAKU PEWARNA TABLET) COA WP855960:BB6383\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5287 FD&C YELLOW 6/SUNSET...(BHN BAKU PEWARNA TABLET) COA WP855960:BB6383\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5177 FD&C YELLOW 5/TARTRA...(BHN BAKU PEWARNA TABLET) COA WP852908:BB3942\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5177 FD&C YELLOW 5/TARTRA...(BHN BAKU PEWARNA TABLET) COA WP852908:BB3942\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHTHALAVIN (R) ENTERIC COATING POLYMER 2138 CLEAR (BHN BAKU PEWARNA TABLET) COA WP858828\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PHTHALAVIN (R) ENTERIC COATING POLYMER 2138 CLEAR (BHN BAKU PEWARNA TABLET) COA WP858828\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C YELLOW 6/SUNSET...(BHN BAKU PEWARNA TABLET) COA WP855960:BB6383\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5287 FD&C YELLOW 6/SUNSET...(BHN BAKU PEWARNA TABLET) COA WP855960:BB6383\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT22060017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT22060017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS PH (BHN BAKU SUPPLEMEN) COA UT22040004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS PH (BHN BAKU SUPPLEMEN) COA UT22040004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE02202010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"RONOXAN A (BHN BAKU MAKANAN) COA UE02202010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT22060017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT22060017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT22060104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A ACETATE 1.5 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT22060104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GENIVIDA(TM) TG (BHN BAKU SUPPLEMEN) COA UT21100004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329900\", \"uraian\": \"GENIVIDA(TM) TG (BHN BAKU SUPPLEMEN) COA UT21100004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE, TYPE 100 (BHN BAKU SUPPLEMEN) COA UT22040064\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE, TYPE 100 (BHN BAKU SUPPLEMEN) COA UT22040064\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT22040062\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT22040062\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OMEPRAZOLE PELLETS -8,5PCT (BHN BAKU OBAT) COA OP-0916 09 22 S/D OP-0921 09 22\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"OMEPRAZOLE PELLETS -8,5PCT (BHN BAKU OBAT) COA OP-0916 09 22 S/D OP-0921 09 22\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AQUACOAT ECD-30 ETHYLCELLULOSE... (BHN BAKU PEWARNA TABLET) COA 2174151144\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"AQUACOAT ECD-30 ETHYLCELLULOSE... (BHN BAKU PEWARNA TABLET) COA 2174151144\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) COA GA717086\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) COA GA717086\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND (R) PB-21158 GREEN (BHN BAKU PEWARNA TABLET) COA GA717506\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"PIGMENT BLEND (R) PB-21158 GREEN (BHN BAKU PEWARNA TABLET) COA GA717506\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86674...(BHN BAKU PEWARNA TABLET) COA GA717088\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86674...(BHN BAKU PEWARNA TABLET) COA GA717088\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND (R) PB-665012 BROWN (BHN BAKU PEWARNA TABLET) COA GA717507\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"PIGMENT BLEND (R) PB-665012 BROWN (BHN BAKU PEWARNA TABLET) COA GA717507\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC AQUEOUS ACRYLIC ENTERIC... (BHN BAKU PEWARNA TABLET) COA GA714750\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC AQUEOUS ACRYLIC ENTERIC... (BHN BAKU PEWARNA TABLET) COA GA714750\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC AQUEOUS ACRYLIC ENTERIC... (BHN BAKU PEWARNA TABLET) COA GA718189\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC AQUEOUS ACRYLIC ENTERIC... (BHN BAKU PEWARNA TABLET) COA GA718189\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 22B0056100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 22B0056100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NUTRASWEETM NATURAL (BHN BAKU MAKANAN) COA MAM2209233\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29389000\", \"uraian\": \"NUTRASWEETM NATURAL (BHN BAKU MAKANAN) COA MAM2209233\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRAYPHOS DKP FG 25K BG (BHN BAKU KOSMETIK) COA 2223032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28352400\", \"uraian\": \"PRAYPHOS DKP FG 25K BG (BHN BAKU KOSMETIK) COA 2223032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MONOPOT PHOS MKP FG 25K BG (BHN BAKU KOSMETIK) COA 22-160-01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"MONOPOT PHOS MKP FG 25K BG (BHN BAKU KOSMETIK) COA 22-160-01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PEPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2173492\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PEPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2173492\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1280083\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1280083\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2420322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2420322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484077\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484077\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH2420322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH2420322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1285442\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1285442\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2173480\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2173480\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1110920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1110920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1110920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1110920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1110920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1110920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CORTISONE ACETATE MICRONISED PH.EUR JP (BHN BAKU SUPPLEMEN) COA 2101024053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"CORTISONE ACETATE MICRONISED PH.EUR JP (BHN BAKU SUPPLEMEN) COA 2101024053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340406,B340407\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX COMPACTED (BHN BAKU OBAT) COA B340406,B340407\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334843,B334844\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX POWDER (BHN BAKU OBAT) COA B334843,B334844\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU SUPLEMEN) COA UJ234,UJ235\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU SUPLEMEN) COA UJ234,UJ235\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JAGUAR HP 105 SGI 25KG CARDBOARD CARTON (BHN BAKU KOSMETIK) COA H2205090H\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"JAGUAR HP 105 SGI 25KG CARDBOARD CARTON (BHN BAKU KOSMETIK) COA H2205090H\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SORBITOL SOLUTION 70 PCT CRYSTALLINE (BHN BAKU KOSMETIK) COA 2223P379\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054400\", \"uraian\": \"SORBITOL SOLUTION 70 PCT CRYSTALLINE (BHN BAKU KOSMETIK) COA 2223P379\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) COA 210284\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6028 (16KG) (BHN BAKU KOSMETIK) COA 210284\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) COA 209949\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSP-100 (10KG) (BHN BAKU KOSMETIK) COA 209949\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) COA 210254\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) COA 210254\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA158227,ROA135226,ROA178227,ROA..\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA158227,ROA135226,ROA178227,ROA..\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BROMPHENIRAMINE MALEATE USP43 (BHN BAKU OBAT) COA G2210K005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"BROMPHENIRAMINE MALEATE USP43 (BHN BAKU OBAT) COA G2210K005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 985-L-MENTHOL CRYSTALS INDIAN NATURAL (BHN BAKU KOSMETIK) COA NFPL-MEN-21-022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061100\", \"uraian\": \"985-L-MENTHOL CRYSTALS INDIAN NATURAL (BHN BAKU KOSMETIK) COA NFPL-MEN-21-022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACTIPONE (R) CAMU CAMU ET (BHN BAKU KOSMETIK) COA 10300030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"ACTIPONE (R) CAMU CAMU ET (BHN BAKU KOSMETIK) COA 10300030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/12090505\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/12090505\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM VALPROATE (BAHAN BAKU OBAT) COA 456740,456741\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29159090\", \"uraian\": \"SODIUM VALPROATE (BAHAN BAKU OBAT) COA 456740,456741\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM II COMPLETE FILM...(BHN BAKU PEWARNA TABLET) COA GA718212\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM II COMPLETE FILM...(BHN BAKU PEWARNA TABLET) COA GA718212\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP22094319,XP22094320\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP22094319,XP22094320\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GLICLAZIDE (BHN BAKE OBAT) COA 2240001697\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"GLICLAZIDE (BHN BAKE OBAT) COA 2240001697\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 2008-1, 2336-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34024990\", \"uraian\": \"MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 2008-1, 2336-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22050221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22050221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500 AF (BHN BAKU SUPPLEMEN) COA WB21120056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500 AF (BHN BAKU SUPPLEMEN) COA WB21120056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500 AF (BHN BAKU SUPPLEMEN) COA WB21120054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500 AF (BHN BAKU SUPPLEMEN) COA WB21120054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MATCHA ( BHN BAKU KOSMETIK) COA CSP 22006 EOU\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MATCHA ( BHN BAKU KOSMETIK) COA CSP 22006 EOU\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202004,122202089\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202004,122202089\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202004,122202017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202004,122202017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIPERONYL BUTOXIDE (BHN BAKU UTK PAKAN TERNAK) COA 20220921\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329900\", \"uraian\": \"PIPERONYL BUTOXIDE (BHN BAKU UTK PAKAN TERNAK) COA 20220921\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) COA PH03190622,PH04190622,PH05190722\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) COA PH03190622,PH04190622,PH05190722\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOPAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 22100464\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29222900\", \"uraian\": \"DOPAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 22100464\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 122201661\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28365010\", \"uraian\": \"VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 122201661\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHARMABURST (R) 500 (BHN BAKU OBAT) COA 122201695\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069099\", \"uraian\": \"PHARMABURST (R) 500 (BHN BAKU OBAT) COA 122201695\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040021,0221040027, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040021,0221040027, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIROXICAM (BAHAN BAKU OBAT) COA PRX2022006M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"PIROXICAM (BAHAN BAKU OBAT) COA PRX2022006M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIDOCAINE BASE (BHN BAKU OBAT) COA 200219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"LIDOCAINE BASE (BHN BAKU OBAT) COA 200219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22080642\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22080642\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22080641,WB22080644,WB22080645\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22080641,WB22080644,WB22080645\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20220701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20220701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPPLEMEN) COA WB22030328\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPPLEMEN) COA WB22030328\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPPLEMEN) COA WB22030328\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPPLEMEN) COA WB22030328\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPPLEMEN) COA WB22030328\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPPLEMEN) COA WB22030328\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22010634,WB22080638,WB22080643\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22010634,WB22080638,WB22080643\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PERMETHRIN PHARMA GRADE (BHN BAKU OBAT) COA 225046016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29163990\", \"uraian\": \"PERMETHRIN PHARMA GRADE (BHN BAKU OBAT) COA 225046016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3354848\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3354848\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM CHLORIDE 6-HYDRATE, CRYST, USP 43 (BHN BAKU KOSMETIK) COA 3105684\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28273100\", \"uraian\": \"MAGNESIUM CHLORIDE 6-HYDRATE, CRYST, USP 43 (BHN BAKU KOSMETIK) COA 3105684\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 22100446,22100449\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 22100446,22100449\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AHCC-PROFESSIONAL-FG (BHN BAKU OBAT) COA 209FM01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069099\", \"uraian\": \"AHCC-PROFESSIONAL-FG (BHN BAKU OBAT) COA 209FM01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PI22020009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349920\", \"uraian\": \"PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PI22020009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2209001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28352510\", \"uraian\": \"DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2209001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP25722\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP25722\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CATECHINS TEAVIGO 4 KG (BHN BAKU KOSMETIK) COA 210111\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"CATECHINS TEAVIGO 4 KG (BHN BAKU KOSMETIK) COA 210111\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTIZOXIME SODIUM (BHN BAKU OBAT) COA A300100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTIZOXIME SODIUM (BHN BAKU OBAT) COA A300100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA B100200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA B100200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BAYPURE CX 100 SOLID G 25K BAG (BHN BAKU KOSMETIK) COA CHASMZ0076\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"BAYPURE CX 100 SOLID G 25K BAG (BHN BAKU KOSMETIK) COA CHASMZ0076\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) COA 1586166\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) COA 1586166\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 720 CAN 10 KG (BHN BAKU KOSMETIK) COA 1584891\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 720 CAN 10 KG (BHN BAKU KOSMETIK) COA 1584891\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) COA 1583793\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) COA 1583793\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 903 CAN 10 KG (BHN BAKU KOSMETIK) COA 1581875\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 903 CAN 10 KG (BHN BAKU KOSMETIK) COA 1581875\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) COA 1587197,1586619\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) COA 1587197,1586619\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) COA 1584779\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) COA 1584779\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 10 CAN 10 KG (BHN BAKU KOSMETIK) COA 1580238\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 10 CAN 10 KG (BHN BAKU KOSMETIK) COA 1580238\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) COA 1586811\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) COA 1586811\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) COA 1584779,1584813\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) COA 1584779,1584813\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) COA 1586811\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) COA 1586811\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIDIN DO CAN 10 KG (BHN BAKU KOSMETIK) COA 1581131\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIDIN DO CAN 10 KG (BHN BAKU KOSMETIK) COA 1581131\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 903 CAN 10 KG (BHN BAKU KOSMETIK) COA 1581876\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 903 CAN 10 KG (BHN BAKU KOSMETIK) COA 1581876\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) COA 1586166\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) COA 1586166\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2022051306\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2022051306\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETAGUARD - 20 LIT (BHN BAKU PAKAN TERNAK) COA 22092808\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30049099\", \"uraian\": \"BETAGUARD - 20 LIT (BHN BAKU PAKAN TERNAK) COA 22092808\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETA-Q 1 LIT (BHN BAKU PAKAN TERNAK) COA 22091188\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30049099\", \"uraian\": \"BETA-Q 1 LIT (BHN BAKU PAKAN TERNAK) COA 22091188\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETA-Q 20 LIT (BHN BAKU PAKAN TERNAK) COA 22091187\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30049099\", \"uraian\": \"BETA-Q 20 LIT (BHN BAKU PAKAN TERNAK) COA 22091187\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512236\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47069200\", \"uraian\": \"SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512236\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANTOPRAZOLE SODIUM (STERILE) (BAHAN BAKU OBAT) COA SI/PPZ/01151022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"PANTOPRAZOLE SODIUM (STERILE) (BAHAN BAKU OBAT) COA SI/PPZ/01151022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NORIT SX SUPER E 153 (BHN BAKU KOSMETIK) COA 5254097\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38021010\", \"uraian\": \"NORIT SX SUPER E 153 (BHN BAKU KOSMETIK) COA 5254097\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50480\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061100\", \"uraian\": \"MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50480\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAPER FIBER DRUM (14 X 22) (REPLACEMENT DRUMS)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"48192000\", \"uraian\": \"PAPER FIBER DRUM (14 X 22) (REPLACEMENT DRUMS)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILDENAFIL CITRATE USP (BHN BAKU OBAT) COA SLC 063 10 22\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"SILDENAFIL CITRATE USP (BHN BAKU OBAT) COA SLC 063 10 22\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512236\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47069200\", \"uraian\": \"SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512236\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052231,G05052234,G05052237\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47063000\", \"uraian\": \"SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052231,G05052234,G05052237\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VACC. MYRT./PINUS PIN. DRY EX. (BHN BAKU SUPLEMEN) COA 22S0159100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"VACC. MYRT./PINUS PIN. DRY EX. (BHN BAKU SUPLEMEN) COA 22S0159100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 21S0191800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 21S0191800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VACCINIUM MYSTILLUS DRY EX. (BHN BAKU SUPLEMEN) COA 21S0314800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VACCINIUM MYSTILLUS DRY EX. (BHN BAKU SUPLEMEN) COA 21S0314800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334835,B334837,B334838\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX POWDER (BHN BAKU OBAT) COA B334835,B334837,B334838\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) COA SH663016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) COA SH663016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-22-7719...(BHN BAKU PEWARNA TABLET) COA SH663015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-22-7719...(BHN BAKU PEWARNA TABLET) COA SH663015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE BARRIER...(BHN BAKU PEWARNA TABLET) COA SH663014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE BARRIER...(BHN BAKU PEWARNA TABLET) COA SH663014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC... (BHN BAKU PEWARNA TABLET) COA GA718788\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC... (BHN BAKU PEWARNA TABLET) COA GA718788\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA M9G127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA M9G127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-062692\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-062692\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-030962\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-030962\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-671782\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-671782\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA M9G127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA M9G127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-022122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-022122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-041052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-041052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1220921\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1220921\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-013092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-013092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-062692\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-062692\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-671782\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-671782\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-050502\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-050502\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-041992,AACN-051702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-041992,AACN-051702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-061302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-061302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-671782\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-671782\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIAMCINOLONE ACETONIDE MICRONIZED (BHN BAKU OBAT) COA NC1624M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"TRIAMCINOLONE ACETONIDE MICRONIZED (BHN BAKU OBAT) COA NC1624M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) COA 208165\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-56A (18KG) (BHN BAKU KOSMETIK) COA 208165\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) COA 209281\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (16KG) (BHN BAKU KOSMETIK) COA 209281\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN MINERAL PREMIX - JELLY POWDER V2 (BHN BAKU MAKANAN) COA XW92210015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN MINERAL PREMIX - JELLY POWDER V2 (BHN BAKU MAKANAN) COA XW92210015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NUTRASWEETM NATURAL (BHN BAKU MAKANAN) COA MAM2209262\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29389000\", \"uraian\": \"NUTRASWEETM NATURAL (BHN BAKU MAKANAN) COA MAM2209262\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HERBAL EXTRACTS (GARCINIA CAMBOGIA 60 PCT CA-K SALT) (BAHAN BAKU KOSMETIK) COA FGC2104003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HERBAL EXTRACTS (GARCINIA CAMBOGIA 60 PCT CA-K SALT) (BAHAN BAKU KOSMETIK) COA FGC2104003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 158635\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15159011\", \"uraian\": \"AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 158635\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB050922\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB050922\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B011022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B011022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B011022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B011022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB050922\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB050922\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LG120822\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LG120822\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPASPRAY (R) OPAQUE COLOR CONCENTRATE FOR FILM...(BHN BAKU PEWARNA TABLET) COA DT736535\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPASPRAY (R) OPAQUE COLOR CONCENTRATE FOR FILM...(BHN BAKU PEWARNA TABLET) COA DT736535\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX (R) OPAQUE COLOR COATING CONCENTRATE AS-R-...(BHN BAKU PEWARNA TABLET) COA DT737694\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPALUX (R) OPAQUE COLOR COATING CONCENTRATE AS-R-...(BHN BAKU PEWARNA TABLET) COA DT737694\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX (R) OPAQUE COLOR COATING CONCENTRATE AS-R-...(BHN BAKU PEWARNA TABLET) COA DT737695\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPALUX (R) OPAQUE COLOR COATING CONCENTRATE AS-R-...(BHN BAKU PEWARNA TABLET) COA DT737695\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPAGLOS (R) TABLET CORE SEALANT PRODUCT OPAGLOS...(BHN BAKU PEWARNA TABLET) COA DT737551\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPAGLOS (R) TABLET CORE SEALANT PRODUCT OPAGLOS...(BHN BAKU PEWARNA TABLET) COA DT737551\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX (R) OPAQUE COLOR COATING CONCENTRATE AS-F-...(BHN BAKU PEWARNA TABLET) COA DT737696\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPALUX (R) OPAQUE COLOR COATING CONCENTRATE AS-F-...(BHN BAKU PEWARNA TABLET) COA DT737696\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPASPRAY (R) OPAQUE COLOR CONCENTRATE FOR FILM...(BHN BAKU PEWARNA TABLET) COA DT737697\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPASPRAY (R) OPAQUE COLOR CONCENTRATE FOR FILM...(BHN BAKU PEWARNA TABLET) COA DT737697\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105714022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200H (BHN BAKU OBAT) COA L105714022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103863822\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103863822\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPSULAC (R) 60 (BHN BAKU OBAT) COA L100413522\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"CAPSULAC (R) 60 (BHN BAKU OBAT) COA L100413522\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CELLACTOSE (R) 80 (BHN BAKU OBAT) COA L100463622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"CELLACTOSE (R) 80 (BHN BAKU OBAT) COA L100463622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE USP (NIACINAMIDE USP/EP) (BHN BAKU KOSMETIK)COA 22-23/NMD(P)/00152 S/D 00153,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE USP (NIACINAMIDE USP/EP) (BHN BAKU KOSMETIK)COA 22-23/NMD(P)/00152 S/D 00153,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20221009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20221009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIMETHOPRIM MICRONISED BP (BHN BAKU OBAT) COA TMP22100765\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"TRIMETHOPRIM MICRONISED BP (BHN BAKU OBAT) COA TMP22100765\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KAHLWAX 2442L (BHN BAKU KOSMETIK) COA F2227043-001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15211000\", \"uraian\": \"KAHLWAX 2442L (BHN BAKU KOSMETIK) COA F2227043-001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2272144\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2272144\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2217638\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2217638\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE STARCH AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2271472\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE STARCH AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2271472\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2235469\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2235469\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2236789\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2236789\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH 2229232,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH 2229232,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2215995\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2215995\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2067201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2067201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2046556\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2046556\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2123358\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2123358\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2157420\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2157420\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2158082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2158082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2067270\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2067270\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2047633\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2047633\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2097346,2104107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2097346,2104107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2172773\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2172773\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 2074829\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 2074829\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2137560\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2137560\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2269108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2269108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2271288\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2271288\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2138670\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2138670\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2137560\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2137560\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180JCV004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180JCV004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180KBQ002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180KBQ002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180K3O001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180K3O001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464151502\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464151502\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180K13003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180K13003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180K24002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180K24002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180KBO002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180KBO002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E4M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180M2A011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E4M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180M2A011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180L1V022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180L1V022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU PAKAN HEWAN) COA 202200275\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"AL HYD WET GEL VAC 20 (BHN BAKU PAKAN HEWAN) COA 202200275\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2097025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2097025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2097025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2097025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2046564\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M-GREEN YEAST AND MOLD BROTH500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2046564\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU VEGF CBA FLEX SET B8 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2077187\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU VEGF CBA FLEX SET B8 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2077187\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2209001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28352510\", \"uraian\": \"DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2209001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G610004... (BHN BAKU PEWARNA TABLET) COA GA718201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G610004... (BHN BAKU PEWARNA TABLET) COA GA718201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131.. (BHN BAKU PEWARNA TABLET) COA GA718202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131.. (BHN BAKU PEWARNA TABLET) COA GA718202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86674... (BHN BAKU PEWARNA TABLET) COA GA718203\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86674... (BHN BAKU PEWARNA TABLET) COA GA718203\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE.. (BHN BAKU PEWARNA TABLET) COA GA718577\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE.. (BHN BAKU PEWARNA TABLET) COA GA718577\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 33G28435... (BHN BAKU PEWARNA TABLET) COA GA718204\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 33G28435... (BHN BAKU PEWARNA TABLET) COA GA718204\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K84823... (BHN BAKU PEWARNA TABLET) COA GA718212\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K84823... (BHN BAKU PEWARNA TABLET) COA GA718212\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 2204114\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 2204114\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 213925\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"CHRONOLINE TM (BHN BAKU KOSMETIK) COA 213925\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELANOSTATINE TM 5 BG (50PPM) (BHN BAKU KOSMETIK) COA 220986\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MELANOSTATINE TM 5 BG (50PPM) (BHN BAKU KOSMETIK) COA 220986\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MINIPORYL TM (BHN BAKU KOSMETIK) COA 832011274N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MINIPORYL TM (BHN BAKU KOSMETIK) COA 832011274N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029946N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029946N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2133701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) COA 2133701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRICKLY PEAR WATER DISTILLATE (BHN BAKU KOSMETIK) COA 22090252\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33019090\", \"uraian\": \"PRICKLY PEAR WATER DISTILLATE (BHN BAKU KOSMETIK) COA 22090252\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000207171\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000207171\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT22010155\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT22010155\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22030064\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22030064\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB21050211,WB21050212\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB21050211,WB21050212\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT22030222\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT22030222\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92210013,XW92210014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"V003400 (BHN BAKU MAKANAN) COA XW92210013,XW92210014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB21050086,WB21050088\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB21050086,WB21050088\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB21050088\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB21050088\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB21050088\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB21050088\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12204017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12204017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB21050088\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB21050088\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02205054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02205054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02205054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02205054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00781370,VE00781371\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"AMPHISOL K (BHN BAKU KOSMETIK) COA VE00781370,VE00781371\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0722010027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHS (BHN BAKU KOSMETIK) COA 0722010027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL (R) HS(BHN BAKU KOSMETIK) COA HS5870322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL (R) HS(BHN BAKU KOSMETIK) COA HS5870322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF22165008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF22165008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010232\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010232\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-PANTHENOL 50 L (BHN BAKU KOSMETIK) COA TL02110653\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL-PANTHENOL 50 L (BHN BAKU KOSMETIK) COA TL02110653\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT22010219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT22010219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010232\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010232\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0040349\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0040349\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02109811\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02109811\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE EP/USP (BHN BAKU OBAT HEWAN) COA NEDNA220813,NEDNA220811\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE SODIUM PHOSPHATE EP/USP (BHN BAKU OBAT HEWAN) COA NEDNA220813,NEDNA220811\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102223007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102223007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102223005,102223007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102223005,102223007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102269006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102269006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP22104590 S/DXP 22104593\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP22104590 S/DXP 22104593\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAFFEINE BP/EP/USP (BHN BAKU OBAT) COA 22101854,22101864,22101865,22101871,22101877,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29393000\", \"uraian\": \"CAFFEINE BP/EP/USP (BHN BAKU OBAT) COA 22101854,22101864,22101865,22101871,22101877,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEARL ESSENCES 35031MJ FLONAC ML 10 C 35031 (BHN BAKU KOSMETIK) COA D2310125\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32061910\", \"uraian\": \"PEARL ESSENCES 35031MJ FLONAC ML 10 C 35031 (BHN BAKU KOSMETIK) COA D2310125\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEARL ESSENCES 35031MJ FLONAC ML 10 C 35051 (BHN BAKU KOSMETIK) COA D2420059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32061910\", \"uraian\": \"PEARL ESSENCES 35031MJ FLONAC ML 10 C 35051 (BHN BAKU KOSMETIK) COA D2420059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220803\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220803\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) COA OLVH220903-ENBIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) COA OLVH220903-ENBIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) COA EG543-220702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) COA EG543-220702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAFFLOWER REFINED OIL (BHN BAKU KOSMETIK) COA CARHR220805-DW\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SAFFLOWER REFINED OIL (BHN BAKU KOSMETIK) COA CARHR220805-DW\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SEABUCKTHRON HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HIR220801-B\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SEABUCKTHRON HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HIR220801-B\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLOBETASOL PROPIONATE USP MICRONISED (BHN BAKU OBAT) COA APL/CLP/06061/I-22\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"CLOBETASOL PROPIONATE USP MICRONISED (BHN BAKU OBAT) COA APL/CLP/06061/I-22\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AEROSIL(R) R 972 (BHN BAKU KOSMETIK) COA 132041170\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AEROSIL(R) R 972 (BHN BAKU KOSMETIK) COA 132041170\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIOBENEFITY (BHN BAKU KOSMETIK) COA 222021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BIOBENEFITY (BHN BAKU KOSMETIK) COA 222021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CINDERELLACARE (BHN BAKU KOSMETIK) COA 221565\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"CINDERELLACARE (BHN BAKU KOSMETIK) COA 221565\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 221612,222019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 221612,222019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 221569\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 221569\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 222375\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329900\", \"uraian\": \"K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 222375\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSE HIPS LIQUID B (BHN BAKU KOSMETIK) COA 221686\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ROSE HIPS LIQUID B (BHN BAKU KOSMETIK) COA 221686\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETAMETHASONE VALERATE USP (BHN BAKU OBAT) COA APL/BV/06027/E-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"BETAMETHASONE VALERATE USP (BHN BAKU OBAT) COA APL/BV/06027/E-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETAMETHASONE VALERATE USP (BHN BAKU OBAT) COA APL/BV/01210/I-22\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"BETAMETHASONE VALERATE USP (BHN BAKU OBAT) COA APL/BV/01210/I-22\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A62337... (BHN BAKU PEWARNA TABLET) COA GA718269\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A62337... (BHN BAKU PEWARNA TABLET) COA GA718269\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7MIU/G (BHN BAKU KOSMETIK) COA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7MIU/G (BHN BAKU KOSMETIK) COA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA-TOCOPHEROL (BHN BAKU KOSMETIK) COA 01220708ES\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA-TOCOPHEROL (BHN BAKU KOSMETIK) COA 01220708ES\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AVICEL CL 611 NF (POST BORDER) COA 2174108901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39129090\", \"uraian\": \"AVICEL CL 611 NF (POST BORDER) COA 2174108901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105713322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200H (BHN BAKU OBAT) COA L105713322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA LC033-22-801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 200 (BHN BAKU OBAT) COA LC033-22-801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA QZ11220816 S/D QZ11220818\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA QZ11220816 S/D QZ11220818\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLOMIPHENE CITRATE USP/EP (BHN BAKU OBAT ) COA 202210040084,202210040085\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"CLOMIPHENE CITRATE USP/EP (BHN BAKU OBAT ) COA 202210040084,202210040085\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLOMIPHENE CITRATE USP/EP (BHN BAKU OBAT ) COA 202210040085\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"CLOMIPHENE CITRATE USP/EP (BHN BAKU OBAT ) COA 202210040085\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS EK-118(IN) (BHN BAKU KOSMETIK) COA GFA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS EK-118(IN) (BHN BAKU KOSMETIK) COA GFA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS EU-118(IS) (BHN BAKU KOSMETIK) COA GFJ\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS EU-118(IS) (BHN BAKU KOSMETIK) COA GFJ\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK-F (BHN BAKU KOSMETIK) COA GJH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK-F (BHN BAKU KOSMETIK) COA GJH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA GGI\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA GGI\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMITOSE HGA (BHN BAKU KOSMETIK) COA GFH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"AMITOSE HGA (BHN BAKU KOSMETIK) COA GFH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA GGD\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROTESIL LH (BHN BAKU KOSMETIK) COA GGD\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA GJG\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROTESIL LH (BHN BAKU KOSMETIK) COA GJG\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS S-CAQ (BHN BAKU KOSMETIK) COA GGB\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS S-CAQ (BHN BAKU KOSMETIK) COA GGB\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100MESH (BHN BAKU SUPLEMEN) COA 2AX2210017,2AX2210013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS BP2009/E330 30-100MESH (BHN BAKU SUPLEMEN) COA 2AX2210017,2AX2210013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20220701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20220701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB22080257\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB22080257\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB22080257\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB22080257\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPPLEMEN) COA WB22030330\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPPLEMEN) COA WB22030330\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPPLEMEN) COA WB22030330\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPPLEMEN) COA WB22030330\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB21120254, WB22080257\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB21120254, WB22080257\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22080642,WB22080651,WB22080655\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22080642,WB22080651,WB22080655\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS GLUCONATE, POWDER, USP 43 (POST BORDER) COA 3118317\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"FERROUS GLUCONATE, POWDER, USP 43 (POST BORDER) COA 3118317\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (POST BORDER) COA ROA177227,ROA158227,ROA136227,ROA178227,..\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (POST BORDER) COA ROA177227,ROA158227,ROA136227,ROA178227,..\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CROSCARMELLOSE SODIUM USP-NF (BHN BAKU OBAT) COA ACRMC/10/231022,ACRMC/10/211022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39129090\", \"uraian\": \"CROSCARMELLOSE SODIUM USP-NF (BHN BAKU OBAT) COA ACRMC/10/231022,ACRMC/10/211022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464151544\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464151544\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180IAL002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180IAL002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180I6P002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180I6P002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180I5J002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180I5J002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT22030156\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT22030156\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT22030156\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT22030156\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIN PREMIX FOR TODDLER PORRIDGE (BHN BAKU MAKANAN) COA XW92209159\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"MIN PREMIX FOR TODDLER PORRIDGE (BHN BAKU MAKANAN) COA XW92209159\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT MIN PREMIX FOR TODDLER PORRIDGE (BHN BAKU MAKANAN) COA XW92209158\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VIT MIN PREMIX FOR TODDLER PORRIDGE (BHN BAKU MAKANAN) COA XW92209158\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22050068\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22050068\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22030063,UT22030064\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22030063,UT22030064\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02204039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02204039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20220303\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20220303\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC211108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC211108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92208654\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92208654\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22090304\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22090304\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 220604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 220604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 220821\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061900\", \"uraian\": \"MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 220821\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OILESS' CITY TM (BHN BAKU KOSMETIK) COA 220304\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"OILESS' CITY TM (BHN BAKU KOSMETIK) COA 220304\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OILESS' CITY TM (BHN BAKU KOSMETIK) COA 220614\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"OILESS' CITY TM (BHN BAKU KOSMETIK) COA 220614\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 220601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 220601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 220513\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33012990\", \"uraian\": \"AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 220513\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG221014,MCVG221021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG221014,MCVG221021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA LC034-22-801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA LC034-22-801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEO EXTRAPONE (R) LEMON (BHN BAKU KOSMETIK) COA 10300019,10300020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"NEO EXTRAPONE (R) LEMON (BHN BAKU KOSMETIK) COA 10300019,10300020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300023,10300024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300023,10300024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE ...(BHN BAKU PEWARNA TABLET) COA SH663543\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE ...(BHN BAKU PEWARNA TABLET) COA SH663543\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE ...(BHN BAKU PEWARNA TABLET) COA SH663542\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE ...(BHN BAKU PEWARNA TABLET) COA SH663542\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE ...(BHN BAKU PEWARNA TABLET) COA SH663541\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE ...(BHN BAKU PEWARNA TABLET) COA SH663541\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE ...(BHN BAKU PEWARNA TABLET) COA SH663540\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE ...(BHN BAKU PEWARNA TABLET) COA SH663540\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE ...(BHN BAKU PEWARNA TABLET) COA SH663548\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE ...(BHN BAKU PEWARNA TABLET) COA SH663548\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE ...(BHN BAKU PEWARNA TABLET) COA SH663546\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE ...(BHN BAKU PEWARNA TABLET) COA SH663546\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE ...(BHN BAKU PEWARNA TABLET) COA SH663550\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE ...(BHN BAKU PEWARNA TABLET) COA SH663550\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE ...(BHN BAKU PEWARNA TABLET) COA SH663547\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE ...(BHN BAKU PEWARNA TABLET) COA SH663547\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE ...(BHN BAKU PEWARNA TABLET) COA SH663549\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE ...(BHN BAKU PEWARNA TABLET) COA SH663549\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359...(BHN BAKU PEWARNA TABLET) COA SH662957\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359...(BHN BAKU PEWARNA TABLET) COA SH662957\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) COA SH662946\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) COA SH662946\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA SH663539\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA SH663539\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA SH663544\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA SH663544\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA SH663538\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA SH663538\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA SH662949\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA SH662949\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SOFTISAN (R) PG2 C10 (BAHAN BAKU KOSMETIK) COA 2-00016670\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SOFTISAN (R) PG2 C10 (BAHAN BAKU KOSMETIK) COA 2-00016670\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REFINED GRAPESEED OIL (BHN BAKU KOSMETIK) COA B2200220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15152919\", \"uraian\": \"REFINED GRAPESEED OIL (BHN BAKU KOSMETIK) COA B2200220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE S-1-277005 BLACK (BHN BAKU PEWARNA TABLET) COA TKL65118, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPACODE S-1-277005 BLACK (BHN BAKU PEWARNA TABLET) COA TKL65118, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE S-1-180000 WHITE (BHN BAKU PEWARNA TABLET) COA TKL65161, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPACODE S-1-180000 WHITE (BHN BAKU PEWARNA TABLET) COA TKL65161, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC220304\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC220304\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB21060059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB21060059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359...(BHN BAKU PEWARNA TABLET) COA GA719393\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359...(BHN BAKU PEWARNA TABLET) COA GA719393\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O63173...(BHN BAKU PEWARNA TABLET) COA GA716923\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O63173...(BHN BAKU PEWARNA TABLET) COA GA716923\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O620011...(BHN BAKU PEWARNA TABLET) COA GA716924\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O620011...(BHN BAKU PEWARNA TABLET) COA GA716924\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O600001...(BHN BAKU PEWARNA TABLET) COA GA716925\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O600001...(BHN BAKU PEWARNA TABLET) COA GA716925\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G65197...(BHN BAKU PEWARNA TABLET) COA GA719649\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G65197...(BHN BAKU PEWARNA TABLET) COA GA719649\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT KIWI CSB (BHN BAKU KOSMETIK) COA 02/19GAAK\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT KIWI CSB (BHN BAKU KOSMETIK) COA 02/19GAAK\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT KIWI CSB (BHN BAKU KOSMETIK) COA 02/19GAAK, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT KIWI CSB (BHN BAKU KOSMETIK) COA 02/19GAAK, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT FS (BHN BAKU SUPPLEMEN) COA UE02204002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"REDIVIVO (R) (LYCOPENE) 10PCT FS (BHN BAKU SUPPLEMEN) COA UE02204002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-2207110\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29146200\", \"uraian\": \"COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-2207110\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID S 20 (BHN BAKU SUPPLEMEN) COA 572000-2220141\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232011\", \"uraian\": \"LIPOID S 20 (BHN BAKU SUPPLEMEN) COA 572000-2220141\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA720094\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA720094\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LORATADINE USP (BHN BAKU OBAT) COA BLRD/2205013-M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"LORATADINE USP (BHN BAKU OBAT) COA BLRD/2205013-M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22050223\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22050223\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22060062\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22060062\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SWERTIANIN-P (BHN BAKU KOSMETIK) COA 222065\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SWERTIANIN-P (BHN BAKU KOSMETIK) COA 222065\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NABUMETONE USP (BAHAN BAKU OBAT) COA H-2121022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29145000\", \"uraian\": \"NABUMETONE USP (BAHAN BAKU OBAT) COA H-2121022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22010628,WB22010629\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22010628,WB22010629\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for UNIMER U-151 (BHN BAKU KOSMETIK) COA VE00794757\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"UNIMER U-151 (BHN BAKU KOSMETIK) COA VE00794757\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK) COA 2209EF2313\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"L-ARGININE LO (BHN BAKU KOSMETIK) COA 2209EF2313\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORANGE EXTRACT (BHN BAKU KOSMETIK) COA 22090406\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"ORANGE EXTRACT (BHN BAKU KOSMETIK) COA 22090406\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512242\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47069200\", \"uraian\": \"SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512242\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID MONOHYDRATE (CAM) GRANULAR 8-40 MESH E330 (BHN BAKU KOSMETIK) COA 1MT2108085\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID MONOHYDRATE (CAM) GRANULAR 8-40 MESH E330 (BHN BAKU KOSMETIK) COA 1MT2108085\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM FEREDETATE, POWDER, BP 2021 (BHN BAKU SUPPLEMEN) COA 3119807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"SODIUM FEREDETATE, POWDER, BP 2021 (BHN BAKU SUPPLEMEN) COA 3119807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MATCHA ( BHN BAKU KOSMETIK) COA CSP 22008 EOU\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MATCHA ( BHN BAKU KOSMETIK) COA CSP 22008 EOU\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EMULCIRE 61 WL 2659 CAR (BHN BAKU OBAT) COA 191440\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"EMULCIRE 61 WL 2659 CAR (BHN BAKU OBAT) COA 191440\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512242,G02512245\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47069200\", \"uraian\": \"SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512242,G02512245\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VALSARTAN USP (BHN BAKU OBAT) COA 2-PXO-D-1550822\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"VALSARTAN USP (BHN BAKU OBAT) COA 2-PXO-D-1550822\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 80 CAN 10KG (BHN BAKU KOSMETIK) COA 16502829\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 80 CAN 10KG (BHN BAKU KOSMETIK) COA 16502829\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019...(BHN BAKU PEWARNA TABLET) COA GA720789\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019...(BHN BAKU PEWARNA TABLET) COA GA720789\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-28849...(BHN BAKU PEWARNA TABLET) COA GA720742\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-28849...(BHN BAKU PEWARNA TABLET) COA GA720742\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) COA 0014696771\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTENSO TM (BHN BAKU KOSMETIK) COA 0014696771\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829011471N, POST BORDER\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"B-WHITE TM (BHN BAKU KOSMETIK) COA 829011471N, POST BORDER\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785011245N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785011245N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXO-P TM (BHN BAKU KOSMETIK) COA 715031367N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EXO-P TM (BHN BAKU KOSMETIK) COA 715031367N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INST'TIGHT TM C (BHN BAKU KOSMETIK) COA 2222601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"INST'TIGHT TM C (BHN BAKU KOSMETIK) COA 2222601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019877N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019877N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) COA 2204216\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTENSO TM (BHN BAKU KOSMETIK) COA 2204216\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2216102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) COA 2216102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2216101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) COA 2216101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IONOL CP (BHN BAKU KOSMETIK) COA 01116722\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29071900\", \"uraian\": \"IONOL CP (BHN BAKU KOSMETIK) COA 01116722\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA LC035-22-801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA LC035-22-801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLCOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/1122046 POST BORDER\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"METHYLCOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/1122046 POST BORDER\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2022102105\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2022102105\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROSE MONOHYDRATE (POST BORDER) COA 20221103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17023010\", \"uraian\": \"DEXTROSE MONOHYDRATE (POST BORDER) COA 20221103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CETIRIZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA 21020CZ6RII\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29315990\", \"uraian\": \"CETIRIZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA 21020CZ6RII\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 22T0094900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 22T0094900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTAZIDIME BUFFERED (BHN BAKU OBAT) COA B20010M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTAZIDIME BUFFERED (BHN BAKU OBAT) COA B20010M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 011722/007400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 011722/007400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464247240\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464247240\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PEPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2179379\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PEPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2179379\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PEPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2179379\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PEPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2179379\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1280082, SAMPLE NO COMMER\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1280082, SAMPLE NO COMMER\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0335766, SA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0335766, SA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2094434\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2094434\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1034870\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1034870\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1280120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1280120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBNL220433\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBNL220433\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AQUACOAT ECD-30 ETHYLCELLULOSE AQUEOUS... (BHN BAKU PEWARNA TABLET) COA 2174180059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"AQUACOAT ECD-30 ETHYLCELLULOSE AQUEOUS... (BHN BAKU PEWARNA TABLET) COA 2174180059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-020592,APB-R-032412\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-020592,APB-R-032412\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-020192\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-020192\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-013092,GSC-K-022802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-013092,GSC-K-022802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) COA MSEEC-012792,021812\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) COA MSEEC-012792,021812\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND PF CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSSBD-012392\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND PF CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSSBD-012392\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND CACTUS EXTRACT (BHN BAKU KOSMETIK) COA CAB-021782\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND CACTUS EXTRACT (BHN BAKU KOSMETIK) COA CAB-021782\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-061302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-061302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND PF CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSSBD-012392\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND PF CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSSBD-012392\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-020192\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-020192\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-051612\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-051612\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-062692\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-062692\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-072821\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-072821\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG221014,MCVG221021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG221014,MCVG221021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01E249M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01E249M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GRAM DECOLORIZER 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2234644\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GRAM DECOLORIZER 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2234644\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTEIN TRANSPORT INHIBITOR SOLN 0.7 ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1266065-A\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PROTEIN TRANSPORT INHIBITOR SOLN 0.7 ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1266065-A\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM AL HYD GEL LV13, USP (BHN BAKU OBAT) COA 102213117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"BARCROFT TM AL HYD GEL LV13, USP (BHN BAKU OBAT) COA 102213117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102223007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102223007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM AL HYD GEL LV13, USP (BHN BAKU OBAT) COA 102213117, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"BARCROFT TM AL HYD GEL LV13, USP (BHN BAKU OBAT) COA 102213117, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102223007, SAMPLE NO COMMERCIAL V\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102223007, SAMPLE NO COMMERCIAL V\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102202031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102202031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) TF TITANIUM FREE FORMULATED FILM COATING...(BHN BAKU PEWARNA TABLET) COA GA721099\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) TF TITANIUM FREE FORMULATED FILM COATING...(BHN BAKU PEWARNA TABLET) COA GA721099\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86512...(BHN BAKU PEWARNA TABLET) COA GA721259\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86512...(BHN BAKU PEWARNA TABLET) COA GA721259\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR. 2PCT COLOR (BHN BAKU SUPLEMEN) COA 22B0095700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR. 2PCT COLOR (BHN BAKU SUPLEMEN) COA 22B0095700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR. 2PCT COLOR (BHN BAKU SUPLEMEN) COA 22B0095800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR. 2PCT COLOR (BHN BAKU SUPLEMEN) COA 22B0095800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR. 2PCT COLOR (BHN BAKU SUPLEMEN) COA 22B0095900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR. 2PCT COLOR (BHN BAKU SUPLEMEN) COA 22B0095900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (POST BORDER) COA ROA180224,ROA181226,ROA152223,ROA..\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (POST BORDER) COA ROA180224,ROA181226,ROA152223,ROA..\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) COA 209955\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSP-100 (10KG) (BHN BAKU KOSMETIK) COA 209955\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP-101 (15KG) (BHN BAKU KOSMETIK) COA 210452\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSP-101 (15KG) (BHN BAKU KOSMETIK) COA 210452\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) COA 211285\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6028 (16KG) (BHN BAKU KOSMETIK) COA 211285\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) COA 210283\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (16KG) (BHN BAKU KOSMETIK) COA 210283\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 221776\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNEBUSTERS (BHN BAKU KOSMETIK) COA 221776\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 222019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 222019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 221964\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"IZAYOI (BHN BAKU KOSMETIK) COA 221964\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 222022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"MANDARINCLEAR (BHN BAKU KOSMETIK) COA 222022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 221776\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNEBUSTERS (BHN BAKU KOSMETIK) COA 221776\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 221024700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 221024700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LOOPS INOCULATING 10/TUBE 10 MICROLITER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2213629\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"LOOPS INOCULATING 10/TUBE 10 MICROLITER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2213629\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2145565\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2145565\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2145184\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2145184\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2272144\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2272144\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01E231M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01E231M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2173800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2173800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2145184,2173810\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2145184,2173810\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2145565\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2145565\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2096824\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2096824\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2215005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2215005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2228563\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2228563\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2215005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2215005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 2096824\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 2096824\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DUBOS BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2242444\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DUBOS BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2242444\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2025213\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2025213\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2143687\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2143687\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2158030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2158030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DIFCO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2215005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DIFCO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2215005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1350021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1350021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 2034966\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 2034966\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2060432\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2060432\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2138670\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2138670\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2158082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2158082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2097346\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2097346\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2103834\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2103834\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1236551\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1236551\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2172773\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2172773\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2074156\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2074156\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1188089\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1188089\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2081022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2081022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2005526\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2005526\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2026334\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2026334\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1272665\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1272665\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2143794\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2143794\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2060544\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2060544\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2096824\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2096824\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHOSPHATE BUFFER PH 7.2 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2026405\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PHOSPHATE BUFFER PH 7.2 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2026405\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GASPAK EZ LARGE INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7377933010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"GASPAK EZ LARGE INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7377933010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2088571\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2088571\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PHENOL RED BROTH BASE BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2082386\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PHENOL RED BROTH BASE BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2082386\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2074843\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2074843\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1348303\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1348303\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 2143333\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 2143333\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1216783\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1216783\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NITRATE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2066240\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NITRATE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2066240\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2038852\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2038852\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 2053778\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 2053778\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2217600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2217600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2096996\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2096996\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B03E123M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B03E123M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1223658\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1223658\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1285575\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1285575\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M TGE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2201315\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M TGE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2201315\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA U/PENGEMBANGAN MIKROORGANISME)BATCH 2271288\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA U/PENGEMBANGAN MIKROORGANISME)BATCH 2271288\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TSA TM WLP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2256693\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"TSA TM WLP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2256693\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MS IFN-GMA BV421 XMG1.2 50 UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2017882\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"MS IFN-GMA BV421 XMG1.2 50 UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2017882\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MS IL-2 PE JES6-5H4 25UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1327945\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"MS IL-2 PE JES6-5H4 25UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1327945\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYTOFIX/CYTOPERM W/GOLGIPLUG KIT 250TST (MEDIA TUK PENGEMBANGAN MIKRO ORGANISME), BATCH 2038275\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CYTOFIX/CYTOPERM W/GOLGIPLUG KIT 250TST (MEDIA TUK PENGEMBANGAN MIKRO ORGANISME), BATCH 2038275\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MS IL-4 CBA FLEX SET A7 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2006414\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"MS IL-4 CBA FLEX SET A7 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2006414\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MS TNF CBA FLEX SET C8 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1333598\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"MS TNF CBA FLEX SET C8 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1333598\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MS IL-12 P70 CBA FLEX SET D7 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1319797\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"MS IL-12 P70 CBA FLEX SET D7 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1319797\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MS IL-1 BTA CBA FLEX SET E5 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2006406\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"MS IL-1 BTA CBA FLEX SET E5 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2006406\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2139402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2139402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2027288\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2027288\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SUPPLEMENT C 6X5ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2244350\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SUPPLEMENT C 6X5ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2244350\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL ISOVILATEX ENRICHMENT 10ML 5 EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2157017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL ISOVILATEX ENRICHMENT 10ML 5 EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2157017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL E COLI H ANTISERUM H7 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2125032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL E COLI H ANTISERUM H7 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2125032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2139402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2139402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2027288\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2027288\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1344136\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1344136\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2066217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2066217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 2048722\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PANTOTHENATE ASSAY MED 100G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 2048722\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2109069,2109074,221370\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2109069,2109074,221370\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2090212\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2090212\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2222775\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2222775\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT 10X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2222767\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"TUBE EGG YOLK ENRICHMENT 50PCT 10X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2222767\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MS/RAT SOLBI PTEIN CBA BUF KIT 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2228705\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"MS/RAT SOLBI PTEIN CBA BUF KIT 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2228705\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MS TH1/TH2/TH17 CBA KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2124880,2140304\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"MS TH1/TH2/TH17 CBA KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2124880,2140304\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MS IL-5 CBA FLEX SET A6 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2042517\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"MS IL-5 CBA FLEX SET A6 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2042517\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GOLGIPLUG PROTEIN TRNSP INHB 1ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1277727\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"GOLGIPLUG PROTEIN TRNSP INHB 1ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1277727\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MS CD8A APC-CY7 53-6.7 25UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1203390\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"MS CD8A APC-CY7 53-6.7 25UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1203390\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MS IL-4 APC 11B11 25UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2038855\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"MS IL-4 APC 11B11 25UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2038855\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MS CD4 PERCP-CY5.5 RM4-5 25UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2175343\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"MS CD4 PERCP-CY5.5 RM4-5 25UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2175343\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MS CD3E FITC 145-2C11 500UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2004469\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"MS CD3E FITC 145-2C11 500UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2004469\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM 0325 DRIED AL HYD GEL USP (BHN BAKU OBAT) COA 102258010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"BARCROFT TM 0325 DRIED AL HYD GEL USP (BHN BAKU OBAT) COA 102258010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM 5100 CG MG HYD PDR USP (BHN BAKU OBAT) COA 102264003 S/D 102264005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM 5100 CG MG HYD PDR USP (BHN BAKU OBAT) COA 102264003 S/D 102264005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340415 S/D B340417\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX COMPACTED (BHN BAKU OBAT) COA B340415 S/D B340417\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202091,122202092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202091,122202092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202090,122202091\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202090,122202091\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A18597...(BHN BAKU PEWARNA TABLET) COA SH664425\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A18597...(BHN BAKU PEWARNA TABLET) COA SH664425\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A18597 ...(BHN BAKU PEWARNA TABLET) COA SH664426\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A18597 ...(BHN BAKU PEWARNA TABLET) COA SH664426\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) COA SH664424\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) COA SH664424\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT MAGNESIUM CARBONATE POWDER, BP 2021 (BHN BAKU OBAT) COA 3121984-02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28369990\", \"uraian\": \"LIGHT MAGNESIUM CARBONATE POWDER, BP 2021 (BHN BAKU OBAT) COA 3121984-02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02205675\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02205675\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02205675\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02205675\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT22070041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT22070041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT PREMIX FOR CHEESE BLOCK CHEDDAR (BHN BAKU MAKANAN) COA XW92210418\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VIT PREMIX FOR CHEESE BLOCK CHEDDAR (BHN BAKU MAKANAN) COA XW92210418\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 103047 - D (BHN BAKU MAKANAN) COA XW92210412\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 103047 - D (BHN BAKU MAKANAN) COA XW92210412\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW92210413,XW92210414\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 C (BHN BAKU MAKANAN) COA XW92210413,XW92210414\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE02202010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"RONOXAN A (BHN BAKU MAKANAN) COA UE02202010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02205675\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02205675\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02205675\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02205675\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02205675\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02205675\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02205675\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02205675\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02205054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02205054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010233\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010233\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02205054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02205054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010233\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010233\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF22165008,UF22101004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF22165008,UF22101004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 10-03-22,11-03-22,15-03-22,04-05-22\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 10-03-22,11-03-22,15-03-22,04-05-22\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 22-12-21\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25070000\", \"uraian\": \"KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 22-12-21\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP26622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP26622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799031522N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799031522N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829011551N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"B-WHITE TM (BHN BAKU KOSMETIK) COA 829011551N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) 830011473N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL TM (BHN BAKU KOSMETIK) 830011473N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANACHRYS 2B PF (PRESERVATIVE-3379305-P1K (BHN BAKU KOSMETIK) COA 793051022N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LANACHRYS 2B PF (PRESERVATIVE-3379305-P1K (BHN BAKU KOSMETIK) COA 793051022N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2133701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) COA 2133701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2133703\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) COA 2133703\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX TM (BHN BAKU KOSMETIK) COA 782011450N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MDI COMPLEX TM (BHN BAKU KOSMETIK) COA 782011450N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX TM (BHN BAKU KOSMETIK) COA 782019877N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MDI COMPLEX TM (BHN BAKU KOSMETIK) COA 782019877N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829011471N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"B-WHITE TM (BHN BAKU KOSMETIK) COA 829011471N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 213916\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"CHRONOLINE TM (BHN BAKU KOSMETIK) COA 213916\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 222030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"CHRONOLINE TM (BHN BAKU KOSMETIK) COA 222030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANACHRYS 2B PF (PRESERVATIVE-3379305-P1K (BHN BAKU KOSMETIK) COA 793051022N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LANACHRYS 2B PF (PRESERVATIVE-3379305-P1K (BHN BAKU KOSMETIK) COA 793051022N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MINIPORYL TM (BHN BAKU KOSMETIK) COA 832011373N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MINIPORYL TM (BHN BAKU KOSMETIK) COA 832011373N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029946N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029946N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GREYVERSE TM (BHN BAKU KOSMETIK) COA 833011412N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"GREYVERSE TM (BHN BAKU KOSMETIK) COA 833011412N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WATERMELON HERBASOL (R) EXTRACT PG UNPRESERVED (BHN BAKU KOSMETIK) COA 122856\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"WATERMELON HERBASOL (R) EXTRACT PG UNPRESERVED (BHN BAKU KOSMETIK) COA 122856\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ACETATE ANHYDROUS POWDER, USP 43 (BHN BAKU OBAT) COA 3122451\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29152910\", \"uraian\": \"SODIUM ACETATE ANHYDROUS POWDER, USP 43 (BHN BAKU OBAT) COA 3122451\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20221105\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20221105\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FENTACARE 2231 EF 25KG PAPER BOX (BHN BAKU KOSMETIK ) COA ZH22J2401,ZH22K1606\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34029019\", \"uraian\": \"FENTACARE 2231 EF 25KG PAPER BOX (BHN BAKU KOSMETIK ) COA ZH22J2401,ZH22K1606\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 3972-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34024990\", \"uraian\": \"MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 3972-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRAYPHOS DKP FG 25K BG (BHN BAKU KOSMETIK) COA 2223032 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28352400\", \"uraian\": \"PRAYPHOS DKP FG 25K BG (BHN BAKU KOSMETIK) COA 2223032 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRAYPHOS MKP FG 25K BG (BHN BAKU KOSMETIK) COA 22-182-01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PRAYPHOS MKP FG 25K BG (BHN BAKU KOSMETIK) COA 22-182-01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SORBITOL (BHN BAKU KOSMETIK) COA 22110501,22110601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054400\", \"uraian\": \"SORBITOL (BHN BAKU KOSMETIK) COA 22110501,22110601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPECWHITE VCE (BHN BAKU KOSMETIK) COA 20221111,20221112\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SPECWHITE VCE (BHN BAKU KOSMETIK) COA 20221111,20221112\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MFSORB 101 (BHN BAKU KOSMETIK) COA SUL-20220601,SUL-20220902\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29147900\", \"uraian\": \"MFSORB 101 (BHN BAKU KOSMETIK) COA SUL-20220601,SUL-20220902\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GF-B331 (BHN BAKU KOSMETIK) COA 2022111003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051090\", \"uraian\": \"GF-B331 (BHN BAKU KOSMETIK) COA 2022111003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100MESH (BHN BAKU SUPLEMEN) COA 3AX2211016,3AX2211019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS BP2009/E330 30-100MESH (BHN BAKU SUPLEMEN) COA 3AX2211016,3AX2211019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) WILD BERRIES (BHN BAKU KOSMETIK) COA 10300038,10300039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"EXTRAPONE (R) WILD BERRIES (BHN BAKU KOSMETIK) COA 10300038,10300039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) MANGO B (BHN BAKU KOSMETIK) COA 10300043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"EXTRAPONE (R) MANGO B (BHN BAKU KOSMETIK) COA 10300043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) PEACH (BHN BAKU KOSMETIK) COA 10300037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"EXTRAPONE (R) PEACH (BHN BAKU KOSMETIK) COA 10300037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTOCONCENTROLE (R) CAMOMILE (BHN BAKU KOSMETIK) COA 10300049\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"PHYTOCONCENTROLE (R) CAMOMILE (BHN BAKU KOSMETIK) COA 10300049\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE WB NS-78-17821 BLACK (BHN BAKU PEWARNA TABLET) COA TKL65031,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPACODE WB NS-78-17821 BLACK (BHN BAKU PEWARNA TABLET) COA TKL65031,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0922020032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX (BHN BAKU KOSMETIK) COA 0922020032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (POST BORDER) COA UE02206013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (POST BORDER) COA UE02206013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02206013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02206013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11220820\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11220820\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MINERAL PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92210422\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"MINERAL PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92210422\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92210421\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92210421\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (POST BORDER) COA UE02206013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (POST BORDER) COA UE02206013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTIOXIDANT PREMIX FOR GUMMY (BHN BAKU MAKANAN) COA XW92210415\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"ANTIOXIDANT PREMIX FOR GUMMY (BHN BAKU MAKANAN) COA XW92210415\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22050068\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22050068\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL COLD PRESSED ORGANIC (BHN BAKU KOSMETIK) COA 161124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL COLD PRESSED ORGANIC (BHN BAKU KOSMETIK) COA 161124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POTASSIUM L-ASPARTATE 0.5-HYDRATE CRYST. POWDER, PH.EUR.10.ED. (BHN BAKU OBAT) COA 3097136\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"POTASSIUM L-ASPARTATE 0.5-HYDRATE CRYST. POWDER, PH.EUR.10.ED. (BHN BAKU OBAT) COA 3097136\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM L-HYDROGENASPARTATE 2-HYDRATE (BHN BAKU OBAT) COA 3108440-02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"MAGNESIUM L-HYDROGENASPARTATE 2-HYDRATE (BHN BAKU OBAT) COA 3108440-02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS GLUCONATE, POWDER, PH.EUR.10.ED. (BHN BAKU OBAT) COA 3093987\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"FERROUS GLUCONATE, POWDER, PH.EUR.10.ED. (BHN BAKU OBAT) COA 3093987\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM STEARATE POWDER, PH.EUR.10.ED., NF 38, VEGETABLE (BHN BAKU OBAT) COA 3119702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CALCIUM STEARATE POWDER, PH.EUR.10.ED., NF 38, VEGETABLE (BHN BAKU OBAT) COA 3119702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02207058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02207058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT22050003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT22050003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02209089\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02209089\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02205053,UE02205058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02205053,UE02205058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02208704\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02208704\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT22070041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT22070041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02208704\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02208704\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22080653\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22080653\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22080653,WB22080656\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22080653,WB22080656\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 940 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 940 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 720 CAN 10 KG (BHN BAKU KOSMETIK) CAS 65-85-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 720 CAN 10 KG (BHN BAKU KOSMETIK) CAS 65-85-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 10 CAN 10 KG (BHN BAKU KOSMETIK) CAS 1117-86-8\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 10 CAN 10 KG (BHN BAKU KOSMETIK) CAS 1117-86-8\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 80 CAN 10KG (BHN BAKU KOSMETIK) CAS 1117-86-8\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 80 CAN 10KG (BHN BAKU KOSMETIK) CAS 1117-86-8\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) CAS 122-99-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) CAS 122-99-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHITOSAN (BHN BAKU SUPPLEMEN) COA HK-C22092202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CHITOSAN (BHN BAKU SUPPLEMEN) COA HK-C22092202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ONDANSETRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA AOND-22010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"ONDANSETRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA AOND-22010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MC-GLUCAN (BHN BAKU KOSMETIK) COA MCGL220926,MCGL221121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"MC-GLUCAN (BHN BAKU KOSMETIK) COA MCGL220926,MCGL221121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIFE'SDHA(TM) S35-O300 (BHN BAKU SUPPLEMEN) COA VY00486413\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"LIFE'SDHA(TM) S35-O300 (BHN BAKU SUPPLEMEN) COA VY00486413\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA 85804762\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA 85804762\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-151812\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-151812\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-051612\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-051612\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2022102105\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2022102105\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FRK PMX MENTARI 1.0 (BHN BAKU MAKANAN) COA 2022111402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069091\", \"uraian\": \"FRK PMX MENTARI 1.0 (BHN BAKU MAKANAN) COA 2022111402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 INF OIL (BHN BAKU SUPPLEMEN) COA TS00021125\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 INF OIL (BHN BAKU SUPPLEMEN) COA TS00021125\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 INF OIL (BHN BAKU SUPPLEMEN) COA TS00021125\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 INF OIL (BHN BAKU SUPPLEMEN) COA TS00021125\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 22100570\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 22100570\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM REGULAR GRADE (BHN BAKU OBAT) COA 2206908\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331900\", \"uraian\": \"METAMIZOLE SODIUM REGULAR GRADE (BHN BAKU OBAT) COA 2206908\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THEOPHYLLINE BP/EP (BHN BAKU OBAT) COA 22186\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29395900\", \"uraian\": \"THEOPHYLLINE BP/EP (BHN BAKU OBAT) COA 22186\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GREEN TEA FAIRTRADE DISTILLATE (BHN BAKU KOSMETIK) COA 22090299\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GREEN TEA FAIRTRADE DISTILLATE (BHN BAKU KOSMETIK) COA 22090299\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-2207107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29146200\", \"uraian\": \"COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-2207107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO221203\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO221203\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN VIRGIN COLD PRESSED DEODORIZED ORGANIC OIL XNE112 (BHN BAKU KOSMETIK) COA ARHVD221105-SI\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ARGAN VIRGIN COLD PRESSED DEODORIZED ORGANIC OIL XNE112 (BHN BAKU KOSMETIK) COA ARHVD221105-SI\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) COA ANTS220803\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) COA ANTS220803\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (BHN BAKU KOSMETIK) COA ROSD220904-BIO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (BHN BAKU KOSMETIK) COA ROSD220904-BIO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM CARBONATE IPH (BHN BAKU SUPPLEMEN) COA DOC3112221,DOC3192221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"SODIUM CARBONATE IPH (BHN BAKU SUPPLEMEN) COA DOC3112221,DOC3192221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPAGLOS 6000 WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET) COA DT728046,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPAGLOS 6000 WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET) COA DT728046,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BILBERRY (V. MYRTILLUS) ET EX 36PCT (POST BORDER) COA 22S0302800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BILBERRY (V. MYRTILLUS) ET EX 36PCT (POST BORDER) COA 22S0302800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PERMETHRIN (PHARMA GRADE) (BHN BAKU OBAT) COA 225046013,225046019,225046020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29163990\", \"uraian\": \"PERMETHRIN (PHARMA GRADE) (BHN BAKU OBAT) COA 225046013,225046019,225046020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CARBAZOCHROME SODIUM SULFONATE ORAL G (BHN BAKU OBAT)COA AC21010/21021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"CARBAZOCHROME SODIUM SULFONATE ORAL G (BHN BAKU OBAT)COA AC21010/21021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ21016119 S/D UQ21016121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ21016119 S/D UQ21016121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO(R) LUTEIN 20 PCT SAF (BHN BAKU SUPPLEMEN) COA UE02206017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO(R) LUTEIN 20 PCT SAF (BHN BAKU SUPPLEMEN) COA UE02206017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FRUITFLOW II SD (POST BORDER) COA 22T0027900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"FRUITFLOW II SD (POST BORDER) COA 22T0027900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512245,G02512246\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47069200\", \"uraian\": \"SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512245,G02512246\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512236,G02512242,G02512246\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47069200\", \"uraian\": \"SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512236,G02512242,G02512246\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 22100569,22100570\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 22100569,22100570\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL221024,MCCPOL221027,MCCPOL221031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29094900\", \"uraian\": \"MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL221024,MCCPOL221027,MCCPOL221031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2511122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2511122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/12110606\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/12110606\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22060063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22060063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202092,122202093\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202092,122202093\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M -31.0% (BHN BAKU OBAT) COA 102229042\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MG HYD PASTE USP TYPE M -31.0% (BHN BAKU OBAT) COA 102229042\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA P-66\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA P-66\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 4-HYDROXYACETOPHENONE (BHN BAKU MAKANAN) COA COA 202211303\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29145000\", \"uraian\": \"4-HYDROXYACETOPHENONE (BHN BAKU MAKANAN) COA COA 202211303\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LABRAFIL M 1944 CS (BHN BAKU OBAT) COA 191824\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LABRAFIL M 1944 CS (BHN BAKU OBAT) COA 191824\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TEFOSE 63 BF (BHN BAKU OBAT) COA 192275\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TEFOSE 63 BF (BHN BAKU OBAT) COA 192275\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELOT 64 CAR (BHN BAKU OBAT) COA 191239\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELOT 64 CAR (BHN BAKU OBAT) COA 191239\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK) COA 2210EF4912\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"L-ARGININE LO (BHN BAKU KOSMETIK) COA 2210EF4912\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20221127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20221127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 27/50 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP15122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 27/50 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP15122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP31522,MTP30022,MTP29122,SAMP\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP31522,MTP30022,MTP29122,SAMP\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP30122,MTP24122,MTP26622,SAMP\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP30122,MTP24122,MTP26622,SAMP\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP26622,MTP26622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP26622,MTP26622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP29122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP29122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP31422\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP31422\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP21822,MTP28322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP21822,MTP28322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-30-18037...(BHN BAKU PEWARNA TABLET) COA SH661605\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-30-18037...(BHN BAKU PEWARNA TABLET) COA SH661605\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA SH663398\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA SH663398\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019...(BHN BAKU PEWARNA TABLET) COA SH663374\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019...(BHN BAKU PEWARNA TABLET) COA SH663374\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING..(BHN BAKU PEWARNA TABLET) COA SH663375\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING..(BHN BAKU PEWARNA TABLET) COA SH663375\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29038...(BHN BAKU PEWARNA TABLET) COA SH663377\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29038...(BHN BAKU PEWARNA TABLET) COA SH663377\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) COA SH663376\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) COA SH663376\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SORBITOL SPECIAL (R) MDF 85 (BHN BAKU SUPPLEMEN) COA M21036\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054400\", \"uraian\": \"SORBITOL SPECIAL (R) MDF 85 (BHN BAKU SUPPLEMEN) COA M21036\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID REGULAR (BHN BAKU MAKANAN) COA HPB2207142,HPD2207068,HPD2210001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID REGULAR (BHN BAKU MAKANAN) COA HPB2207142,HPD2207068,HPD2210001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA719615\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA719615\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA721256\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA721256\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA721256\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA721256\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359... (BHN BAKU PEWARNA TABLET) COA GA719393\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359... (BHN BAKU PEWARNA TABLET) COA GA719393\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) COA GA719637\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) COA GA719637\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03Z59026...(BHN BAKU PEWARNA TABLET) COA GA718214\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03Z59026...(BHN BAKU PEWARNA TABLET) COA GA718214\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019...(BHN BAKU PEWARNA TABLET) COA GA720789\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019...(BHN BAKU PEWARNA TABLET) COA GA720789\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA GA721492\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA GA721492\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22080657\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22080657\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22080657\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22080657\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22110660,WB22110661,WB22110664\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22110660,WB22110661,WB22110664\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22110664,WB22110665\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22110664,WB22110665\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT21040008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT21040008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334848,B334850,B334855\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX POWDER (BHN BAKU OBAT) COA B334848,B334850,B334855\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILVERION 2400 (BHN BAKU KOSMETIK) COA 20-10174\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILVERION 2400 (BHN BAKU KOSMETIK) COA 20-10174\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU PAKAN HEWAN) COA 202200315\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"AL HYD WET GEL VAC 20 (BHN BAKU PAKAN HEWAN) COA 202200315\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA F12211UG\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA F12211UG\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERNFINE 100 N (BHN BAKU MAKANAN) COA TY2220712-16\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232011\", \"uraian\": \"STERNFINE 100 N (BHN BAKU MAKANAN) COA TY2220712-16\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU SUPLEMEN) COA UJ239,UJ240\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU SUPLEMEN) COA UJ239,UJ240\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERRIC PYROPHOSPHATE,24PCT - 26PCT FE POWDER,FCC12 (BHN BAKU OBAT) COA 3117751\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28353990\", \"uraian\": \"FERRIC PYROPHOSPHATE,24PCT - 26PCT FE POWDER,FCC12 (BHN BAKU OBAT) COA 3117751\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALUMINIUM HYDROXIDE ACETATE POWDER (BHN BAKU OBAT) COA 3118740\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29152990\", \"uraian\": \"ALUMINIUM HYDROXIDE ACETATE POWDER (BHN BAKU OBAT) COA 3118740\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) COA SH663695\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) COA SH663695\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-7027...(BHN BAKU PEWARNA TABLET) COA SH663705\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-7027...(BHN BAKU PEWARNA TABLET) COA SH663705\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-22-7719...(BHN BAKU PEWARNA TABLET) COA SH663696\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-22-7719...(BHN BAKU PEWARNA TABLET) COA SH663696\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COMPLETE FILM... (BHN BAKU PEWARNA TABLET) COA GA722232\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COMPLETE FILM... (BHN BAKU PEWARNA TABLET) COA GA722232\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) COA GA721644\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) COA GA721644\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) COA GA721721\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) COA GA721721\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) KB LOW VISCOSITY FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA721426\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) KB LOW VISCOSITY FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA721426\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A...(BHN BAKU PEWARNA TABLET) COA GA721996\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A...(BHN BAKU PEWARNA TABLET) COA GA721996\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751... (BHN BAKU PEWARNA TABLET) COA GA721427\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751... (BHN BAKU PEWARNA TABLET) COA GA721427\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03Z59026...(BHN BAKU PEWARNA TABLET) COA GA721428\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03Z59026...(BHN BAKU PEWARNA TABLET) COA GA721428\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G52990...(BHN BAKU PEWARNA TABLET) COA GA721429\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G52990...(BHN BAKU PEWARNA TABLET) COA GA721429\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) COA GA721294\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) COA GA721294\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K14834 ...(BHN BAKU PEWARNA TABLET) COA GA721578\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K14834 ...(BHN BAKU PEWARNA TABLET) COA GA721578\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G54002...(BHN BAKU PEWARNA TABLET) COA GA720639\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G54002...(BHN BAKU PEWARNA TABLET) COA GA720639\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC... (BHN BAKU PEWARNA TABLET) COA GA721527\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC... (BHN BAKU PEWARNA TABLET) COA GA721527\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC... (BHN BAKU PEWARNA TABLET) COA GA722130\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC... (BHN BAKU PEWARNA TABLET) COA GA722130\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC... (BHN BAKU PEWARNA TABLET) COA GA722130\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC... (BHN BAKU PEWARNA TABLET) COA GA722130\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001... (BHN BAKU PEWARNA TABLET) COA GA722077\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001... (BHN BAKU PEWARNA TABLET) COA GA722077\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA GA722119\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA GA722119\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G630013...(BHN BAKU PEWARNA TABLET) COA GA721547\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G630013...(BHN BAKU PEWARNA TABLET) COA GA721547\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86674...(BHN BAKU PEWARNA TABLET) COA GA720635\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86674...(BHN BAKU PEWARNA TABLET) COA GA720635\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019...(BHN BAKU PEWARNA TABLET) COA GA721435\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019...(BHN BAKU PEWARNA TABLET) COA GA721435\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019...(BHN BAKU PEWARNA TABLET) COA GA721435\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019...(BHN BAKU PEWARNA TABLET) COA GA721435\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) COA GA721914\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) COA GA721914\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) COA GA721915\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) COA GA721915\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-TARTARIC ACID (POST BORDER) COA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181200\", \"uraian\": \"DL-TARTARIC ACID (POST BORDER) COA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CROSPOVIDONE XL (BHN BAKU SUPPLEMEN) COA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"CROSPOVIDONE XL (BHN BAKU SUPPLEMEN) COA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TITANIUM DIOXIDE 3100 (BHN BAKU MAKANAN) COA 2212201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32061110\", \"uraian\": \"TITANIUM DIOXIDE 3100 (BHN BAKU MAKANAN) COA 2212201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20221207\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20221207\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7MIU/G (BHN BAKU KOSMETIK) COA 0422070010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7MIU/G (BHN BAKU KOSMETIK) COA 0422070010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2203923528\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2203923528\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRICALCIUM CITRATE 4-HYDRATE POWDER (BHN BAKU OBAT) COA 3123567\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181590\", \"uraian\": \"TRICALCIUM CITRATE 4-HYDRATE POWDER (BHN BAKU OBAT) COA 3123567\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS GLUCONATE, POWDER, USP 43 (BHN BAKU OBAT) COA 3123981\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"FERROUS GLUCONATE, POWDER, USP 43 (BHN BAKU OBAT) COA 3123981\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIPOTASSIUM CITRATE 1-HYDRATE, CRYST... (BHN BAKU OBAT) COA 3117975\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"TRIPOTASSIUM CITRATE 1-HYDRATE, CRYST... (BHN BAKU OBAT) COA 3117975\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERRIC PYROPHOSPHATE,24PCT - 26PCT FE POWDER,FCC12 (BHN BAKU MAKANAN) COA 3124836\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28353990\", \"uraian\": \"FERRIC PYROPHOSPHATE,24PCT - 26PCT FE POWDER,FCC12 (BHN BAKU MAKANAN) COA 3124836\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM GLYCEROPHOSPHATE, CRYST, .... (BHN BAKU OBAT) COA 3084920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29199000\", \"uraian\": \"SODIUM GLYCEROPHOSPHATE, CRYST, .... (BHN BAKU OBAT) COA 3084920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM CARBONATE, HEAVY, POWDER... (BHN BAKU OBAT) COA 3119795,3120833,3122196\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28369990\", \"uraian\": \"MAGNESIUM CARBONATE, HEAVY, POWDER... (BHN BAKU OBAT) COA 3119795,3120833,3122196\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIPOTASSIUM PHOSPHATE POWDER (BHN BAKU MAKANAN) COA 3117154,3119969\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28352400\", \"uraian\": \"DIPOTASSIUM PHOSPHATE POWDER (BHN BAKU MAKANAN) COA 3117154,3119969\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM ACETATE, POWDER, PURITY... (BHN BAKU OBAT) COA 3118699\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29152990\", \"uraian\": \"CALCIUM ACETATE, POWDER, PURITY... (BHN BAKU OBAT) COA 3118699\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS GLUCONATE, POWDER, USP 43 (BHN BAKU OBAT) COA 3123981\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"FERROUS GLUCONATE, POWDER, USP 43 (BHN BAKU OBAT) COA 3123981\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POTASSIUM L-ASPARTATE 0,5-HYDRATE (BHN BAKU OBAT) COA3097136\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"POTASSIUM L-ASPARTATE 0,5-HYDRATE (BHN BAKU OBAT) COA3097136\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359... (BHN BAKU PEWARNA TABLET) COA GA720624\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359... (BHN BAKU PEWARNA TABLET) COA GA720624\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359... (BHN BAKU PEWARNA TABLET) COA GA720625\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359... (BHN BAKU PEWARNA TABLET) COA GA720625\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O63173... (BHN BAKU PEWARNA TABLET) COA GA722329\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O63173... (BHN BAKU PEWARNA TABLET) COA GA722329\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O63173... (BHN BAKU PEWARNA TABLET) COA GA722328\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O63173... (BHN BAKU PEWARNA TABLET) COA GA722328\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O600001...(BHN BAKU PEWARNA TABLET) COA GA720626\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O600001...(BHN BAKU PEWARNA TABLET) COA GA720626\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA GA721147\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA GA721147\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC... (BHN BAKU PEWARNA TABLET) COA GA720628\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC... (BHN BAKU PEWARNA TABLET) COA GA720628\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18509... (BHN BAKU PEWARNA TABLET) COA GA720784\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18509... (BHN BAKU PEWARNA TABLET) COA GA720784\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING SYSTEM 3...(BHN BAKU PEWARNA TABLET) COA GA719436\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING SYSTEM 3...(BHN BAKU PEWARNA TABLET) COA GA719436\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) .II COMPLETE FILM COATING SYSTEM 85G86512...(BHN BAKU PEWARNA TABLET) COA GA721259\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) .II COMPLETE FILM COATING SYSTEM 85G86512...(BHN BAKU PEWARNA TABLET) COA GA721259\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G62343...(BHN BAKU PEWARNA TABLET) COA GA720632\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G62343...(BHN BAKU PEWARNA TABLET) COA GA720632\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC... (BHN BAKU PEWARNA TABLET) COA GA721527\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC... (BHN BAKU PEWARNA TABLET) COA GA721527\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G65197...(BHN BAKU PEWARNA TABLET) COA GA720633\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G65197...(BHN BAKU PEWARNA TABLET) COA GA720633\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-25008...(BHN BAKU PEWARNA TABLET) COA GA721105\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-25008...(BHN BAKU PEWARNA TABLET) COA GA721105\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) COA GA722191\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) COA GA722191\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F48105 ...(BHN BAKU PEWARNA TABLET) COA GA721978\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F48105 ...(BHN BAKU PEWARNA TABLET) COA GA721978\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014...(BHN BAKU PEWARNA TABLET) COA GA720634\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014...(BHN BAKU PEWARNA TABLET) COA GA720634\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 02F52182...(BHN BAKU PEWARNA TABLET) COA GA721974\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 02F52182...(BHN BAKU PEWARNA TABLET) COA GA721974\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B28796 ...(BHN BAKU PEWARNA TABLET) COA GA720988\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03B28796 ...(BHN BAKU PEWARNA TABLET) COA GA720988\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM OY-GM-7305...(BHN BAKU PEWARNA TABLET) COA GA721975\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM OY-GM-7305...(BHN BAKU PEWARNA TABLET) COA GA721975\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86674...(BHN BAKU PEWARNA TABLET) COA GA720635\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86674...(BHN BAKU PEWARNA TABLET) COA GA720635\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K580000...(BHN BAKU PEWARNA TABLET) COA GA720636\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K580000...(BHN BAKU PEWARNA TABLET) COA GA720636\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A18597...(BHN BAKU PEWARNA TABLET) COA GA720637\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A18597...(BHN BAKU PEWARNA TABLET) COA GA720637\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A18597...(BHN BAKU PEWARNA TABLET) COA GA720637\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A18597...(BHN BAKU PEWARNA TABLET) COA GA720637\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) COA 03K19229\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) COA 03K19229\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) TF TITANIUM FREE FORMULATED FILM COATING...(BHN BAKU PEWARNA TABLET) COA GA721994\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) TF TITANIUM FREE FORMULATED FILM COATING...(BHN BAKU PEWARNA TABLET) COA GA721994\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G54002...(BHN BAKU PEWARNA TABLET) COA GA720639\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G54002...(BHN BAKU PEWARNA TABLET) COA GA720639\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-111422\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-111422\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-111422\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-111422\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIOCTP-500 (BHN BAKU KOSMETIK) COA BOPN-032762\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND BIOCTP-500 (BHN BAKU KOSMETIK) COA BOPN-032762\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1221201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1221201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA MAK110\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA MAK110\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-051612\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-051612\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG221202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG221202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARTAB (R) DIRECTLY COMPRESSIBLE STARCH 4001 (BHN BAKU PEWARNA TABLET) COA WP864468\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARTAB (R) DIRECTLY COMPRESSIBLE STARCH 4001 (BHN BAKU PEWARNA TABLET) COA WP864468\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETORIXOCIB IHS (BHN BAKU OBAT) COA ETC-PM/22001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"ETORIXOCIB IHS (BHN BAKU OBAT) COA ETC-PM/22001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETAMETHASONE VALERATE USP (BHN BAKU OBAT) COA APL/BV/01210/I-22\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"BETAMETHASONE VALERATE USP (BHN BAKU OBAT) COA APL/BV/01210/I-22\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-051612\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-051612\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-051612\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-051612\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID PPL-600 (BHN BAKU SUPPLEMEN) COA 577200-2220234 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232011\", \"uraian\": \"LIPOID PPL-600 (BHN BAKU SUPPLEMEN) COA 577200-2220234 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA T7290\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29225090\", \"uraian\": \"TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA T7290\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA T7361\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29225090\", \"uraian\": \"TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA T7361\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202097,122202098\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202097,122202098\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202098\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202098\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 20B680004...(BHN BAKU PEWARNA TABLET) COA GA722734\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 20B680004...(BHN BAKU PEWARNA TABLET) COA GA722734\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85A540003 ...(BHN BAKU PEWARNA TABLET) COA GA722733\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85A540003 ...(BHN BAKU PEWARNA TABLET) COA GA722733\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC... (BHN BAKU PEWARNA TABLET) COA GA722732\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC... (BHN BAKU PEWARNA TABLET) COA GA722732\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20220802,XH20220903\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20220802,XH20220903\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20220903\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20220903\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464246821\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464246821\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2444185823\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2444185823\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180L8P002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180L8P002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180L1V022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180L1V022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464246821\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464246821\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464244126\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464244126\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464239749\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464239749\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464247240\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464247240\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 14 PREMIUM ETHYLCELLULOSE... (BHN BAKU PEWARNA TABLET) COA D184M2P021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 14 PREMIUM ETHYLCELLULOSE... (BHN BAKU PEWARNA TABLET) COA D184M2P021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) COA PH02460522,PH03460522,PH04460622,PH05\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) COA PH02460522,PH03460522,PH04460622,PH05\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL LEGIONELLA AGAR ENRICHMENT 6X5ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2271514\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL LEGIONELLA AGAR ENRICHMENT 6X5ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2271514\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2103714,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2103714,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MICROBIAL CONTENT TEST AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2304828\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MICROBIAL CONTENT TEST AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2304828\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2139402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2139402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2027288\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2027288\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SUPPLEMENT C 6X5ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2271516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SUPPLEMENT C 6X5ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2271516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2326948\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2326948\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU IFN-GMA BV421 B27 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2139388\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU IFN-GMA BV421 B27 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2139388\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU IL-2 PE MQ1-17H12 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2048047\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU IL-2 PE MQ1-17H12 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2048047\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for (HU IL-4 APC 8D4-8 50TST MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2227896\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"(HU IL-4 APC 8D4-8 50TST MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2227896\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD8 APC-CY7 SK1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2203655\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD8 APC-CY7 SK1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2203655\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD3 FITC HIT3A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2039630\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD3 FITC HIT3A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2039630\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYTOFIX/CYTOPERM SOLN KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2137667\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CYTOFIX/CYTOPERM SOLN KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2137667\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD28 NALE CD28.2 500UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1256637,1256638\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD28 NALE CD28.2 500UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1256637,1256638\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAIN BUFFER FBS 500ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2118763\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"STAIN BUFFER FBS 500ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2118763\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SUPPLEMENT C 6X5ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2271516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SUPPLEMENT C 6X5ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2271516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYTOFIX FIXATION BUFFER 100ML (MEDIA TUK PENGEMBANGAN MIKRO ORGANISME), BATCH 2096593\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CYTOFIX FIXATION BUFFER 100ML (MEDIA TUK PENGEMBANGAN MIKRO ORGANISME), BATCH 2096593\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL ISOVILATEX ENRICHMENT 10ML 5 EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2299651\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL ISOVILATEX ENRICHMENT 10ML 5 EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2299651\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP C (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2224441\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL N MENINGITIDIS ANTISERUM GRP C (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2224441\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP W135 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1092251\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL N MENINGITIDIS ANTISERUM GRP W135 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1092251\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2111967\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2111967\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2076212\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2076212\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1344136\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1344136\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SHIGELLA ANTIS POLY A1 LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2161354\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SHIGELLA ANTIS POLY A1 LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2161354\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SHIGELLA ANTIS POLY A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2125067\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SHIGELLA ANTIS POLY A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2125067\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2196280\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2196280\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2214155\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2214155\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 2048722\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PANTOTHENATE ASSAY MED 100G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 2048722\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD CST BEADS KIT 50 TESTS (MEDIA TUK PENGEMBANGAN MIKRO ORGANISME), BATCH 66511\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BD CST BEADS KIT 50 TESTS (MEDIA TUK PENGEMBANGAN MIKRO ORGANISME), BATCH 66511\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL02205485,TL02205489\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU MAKANAN) COA TL02205485,TL02205489\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11220820\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11220820\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12204017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12204017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (POST BORDER) COA TL02208718\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (POST BORDER) COA TL02208718\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN MINERAL PREMIX - JELLY POWDER V2 (POST BORDER) COA XW92211273\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN MINERAL PREMIX - JELLY POWDER V2 (POST BORDER) COA XW92211273\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 C (POST BORDER) COA XW92211023,XW92211024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 C (POST BORDER) COA XW92211023,XW92211024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT22060162\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT22060162\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RONOXAN A (POST BORDER) COA UE02209012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"RONOXAN A (POST BORDER) COA UE02209012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (POST BORDER) COA TL02208718\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (POST BORDER) COA TL02208718\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000206223\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000206223\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50 (POST BORDER) COA UE02202011,UE02202017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50 (POST BORDER) COA UE02202011,UE02202017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210151,0708210152\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210151,0708210152\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50 (POST BORDER) COA UE02202017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50 (POST BORDER) COA UE02202017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL (POST BORDER) COA AVD0040349\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL (POST BORDER) COA AVD0040349\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22090305\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22090305\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040042\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040042\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02206013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE02206013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02109811 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02109811 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000206223,0000206943\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000206223,0000206943\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22090305\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22090305\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN548484\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN548484\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN548561\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN548561\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN548560\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN548560\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN548562\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN548562\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5396 ERYTHROSINE ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP860976:1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5396 ERYTHROSINE ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP860976:1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5406 FD&C RED 40/ALLURA RED..(BHN BAKU PEWARNA TABLET) COA WP852267:BB3529\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5406 FD&C RED 40/ALLURA RED..(BHN BAKU PEWARNA TABLET) COA WP852267:BB3529\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5177 FD&C YELLOW 5/... (BHN BAKU PEWARNA TABLET) COA WP852899:BB4037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5177 FD&C YELLOW 5/... (BHN BAKU PEWARNA TABLET) COA WP852899:BB4037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5625 FD&C BLUE 2/INDIGO.. (BHN BAKU PEWARNA TABLET) COA WP855372:BB5346\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5625 FD&C BLUE 2/INDIGO.. (BHN BAKU PEWARNA TABLET) COA WP855372:BB5346\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT (R) 6010 D&C YELLOW 10 ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP853301:BB4517\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT (R) 6010 D&C YELLOW 10 ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP853301:BB4517\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT (R) 6010 D&C YELLOW 10 ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP853298:BB4442\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT (R) 6010 D&C YELLOW 10 ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP853298:BB4442\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACTIPONE (R) WHITE TEA GW (BHN BAKU KOSMETIK) COA 10300052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"ACTIPONE (R) WHITE TEA GW (BHN BAKU KOSMETIK) COA 10300052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 24021222,24041222,24051222,24061222,24071222,23811222\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 24021222,24041222,24051222,24061222,24071222,23811222\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 15470722,15500722,15520722,15530722\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 15470722,15500722,15520722,15530722\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ACID PYROPHOSPHATE FOOD GRADE (BHN BAKU MAKANAN) COA 9221124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28353990\", \"uraian\": \"SODIUM ACID PYROPHOSPHATE FOOD GRADE (BHN BAKU MAKANAN) COA 9221124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) (BHN BAKU OBAT) COA 4454103081,4454104286\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"XANTHAN 80 (PHARMACEUTICAL GRADE) (BHN BAKU OBAT) COA 4454103081,4454104286\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETROLAC TROMETHAMINE USP (BHN BAKU OBAT) COA KM0240622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"KETROLAC TROMETHAMINE USP (BHN BAKU OBAT) COA KM0240622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERRIC HYDROXIDE POLYMALTOSE COMPLEX POWDER (BHN BAKU SUPPLEMEN) COA 3127023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29400000\", \"uraian\": \"FERRIC HYDROXIDE POLYMALTOSE COMPLEX POWDER (BHN BAKU SUPPLEMEN) COA 3127023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRASIL DM5 L (BHN BAKU KOSMETIK) COA 2236FH3615,2221FF2615\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100090\", \"uraian\": \"MIRASIL DM5 L (BHN BAKU KOSMETIK) COA 2236FH3615,2221FF2615\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) COA 321CAA0023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CETRIMIDE (BHN BAKU KOSMETIK) COA 321CAA0023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 30 N-3 INF OIL (BHN BAKU SUPPLEMEN) COA TS00020873\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 30 N-3 INF OIL (BHN BAKU SUPPLEMEN) COA TS00020873\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F32371...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F32371...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B82443...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03B82443...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 57-50-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 57-50-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11221040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11221040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12204017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12204017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ20610703\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ20610703\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02208072 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02208072 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02202017 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02202017 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00790949\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"AMPHISOL K (BHN BAKU KOSMETIK) COA VE00790949\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010248,0822010268\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010248,0822010268\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS0810522\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS0810522\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P1G24QA000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL TX (BHN BAKU KOSMETIK) COA P1G24QA000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001674321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SLX (BHN BAKU KOSMETIK) COA 0001674321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02202017 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02202017 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0922020032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX (BHN BAKU KOSMETIK) COA 0922020032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010248\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010248\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060036\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060036\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02208069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02208069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02208069,TL02208072\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02208069,TL02208072\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0722010087\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHS (BHN BAKU KOSMETIK) COA 0722010087\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010268,0822010357\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010268,0822010357\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0722010087\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHS (BHN BAKU KOSMETIK) COA 0722010087\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22090305\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22090305\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060064\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060064\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0722010087,0722010083\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHS (BHN BAKU KOSMETIK) COA 0722010087,0722010083\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYDROCORTISONE ACETATE EP/USP (BHN BAKU OBAT) COA NEHAC220711,NEHAC220607\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"HYDROCORTISONE ACETATE EP/USP (BHN BAKU OBAT) COA NEHAC220711,NEHAC220607\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISOLONE BP/USP (BHN BAKU OBAT) COA XPL221008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISOLONE BP/USP (BHN BAKU OBAT) COA XPL221008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISONE USP (BHN BAKU OBAT) COA NPD221113,NPD221015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISONE USP (BHN BAKU OBAT) COA NPD221113,NPD221015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334841,B334851 S/D B334853\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX POWDER (BHN BAKU OBAT) COA B334841,B334851 S/D B334853\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ACID PYROPHOSPHATE FOOD GRADE (BHN BAKU MAKANAN) COA 9230105\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28353990\", \"uraian\": \"SODIUM ACID PYROPHOSPHATE FOOD GRADE (BHN BAKU MAKANAN) COA 9230105\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CELLOSIZE TM TEXTURE F4M HYDROXYPROPYL... (BHN BAKU KOSMETIK) COA F410L5ED32\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"CELLOSIZE TM TEXTURE F4M HYDROXYPROPYL... (BHN BAKU KOSMETIK) COA F410L5ED32\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE ...(BHN BAKU PEWARNA TABLET) COA GA724004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE ...(BHN BAKU PEWARNA TABLET) COA GA724004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AZITHROMYCIN (BAHAN BAKU OBAT) COA 129-220530-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"AZITHROMYCIN (BAHAN BAKU OBAT) COA 129-220530-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANISETRON HYDROCHLORIDE (BAHAN BAKU OBAT) COA 323-220901\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"GRANISETRON HYDROCHLORIDE (BAHAN BAKU OBAT) COA 323-220901\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA GLJ\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA GLJ\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA GIE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROTESIL LH (BHN BAKU KOSMETIK) COA GIE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS EK-118(IN) (BHN BAKU KOSMETIK) COA GLB\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS EK-118(IN) (BHN BAKU KOSMETIK) COA GLB\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA GGI\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA GGI\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA GLI\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) COA GLI\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50488\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061100\", \"uraian\": \"MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50488\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP34222 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP34222 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANISETRON HCL EP (BHN BAKU OBAT) COA GRH/121007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"GRANISETRON HCL EP (BHN BAKU OBAT) COA GRH/121007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRASIL DM5 L (BHN BAKU KOSMETIK) COA 2245FH3115\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100090\", \"uraian\": \"MIRASIL DM5 L (BHN BAKU KOSMETIK) COA 2245FH3115\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-221226\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-221226\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRAZINAMIDE EP/USP (BHN BAKU OBAT) COA WHOPZ 077 K 22 S/D WHOPZ 085 K 22,WHOPZR 037 E 22, ...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"PYRAZINAMIDE EP/USP (BHN BAKU OBAT) COA WHOPZ 077 K 22 S/D WHOPZ 085 K 22,WHOPZR 037 E 22, ...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BUDESONIDE MICRONIZED (BHN BAKU OBAT) COA NB3038M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"BUDESONIDE MICRONIZED (BHN BAKU OBAT) COA NB3038M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DESONIDE MICRONIZED (BHN BAKU OBAT) COA NC3328M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"DESONIDE MICRONIZED (BHN BAKU OBAT) COA NC3328M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM L-HYDROGENASPARTATE 2-HYDRATE (BHN BAKU OBAT) COA 3125910\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"MAGNESIUM L-HYDROGENASPARTATE 2-HYDRATE (BHN BAKU OBAT) COA 3125910\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IBUPROFEN 40 MICRONS (BHN BAKU OBAT) COA 4050-4826\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29163990\", \"uraian\": \"IBUPROFEN 40 MICRONS (BHN BAKU OBAT) COA 4050-4826\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB141122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB141122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B011022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B011022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB141122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB141122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B011022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B011022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LG120822\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LG120822\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWDER... (B.BAKU KOSMETIK) COA 057/23,058/23\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GUAR GUM TREATED AND PULVERISED IN POWDER... (B.BAKU KOSMETIK) COA 057/23,058/23\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RICE MILK AQUEOUS EXTRACT (SB) (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"RICE MILK AQUEOUS EXTRACT (SB) (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPAGLOS (R) TABLET CORE SEALANT PRODUCT OPAGLOS... (BHN BAKU PEWARNA TABLET) COA DT739208\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPAGLOS (R) TABLET CORE SEALANT PRODUCT OPAGLOS... (BHN BAKU PEWARNA TABLET) COA DT739208\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE (R) MONOGRAMMING INK S-1-277001 BLACK (BHN BAKU PEWARNA TABLET) COA DT739223\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPACODE (R) MONOGRAMMING INK S-1-277001 BLACK (BHN BAKU PEWARNA TABLET) COA DT739223\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GUAIFENESIN USP 43 (B. BAKU OBAT) COA GGE-2211240 S/D GGE-2211242,GGE-2212254 S/D GGE-2212264\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29094900\", \"uraian\": \"GUAIFENESIN USP 43 (B. BAKU OBAT) COA GGE-2211240 S/D GGE-2211242,GGE-2212254 S/D GGE-2212264\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/12/171222,181222,191222,221222,231222\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/12/171222,181222,191222,221222,231222\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANTOPRAZOLE SODIUM (STERILE) (BAHAN BAKU OBAT) COA SI/PPZ/01561222\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"PANTOPRAZOLE SODIUM (STERILE) (BAHAN BAKU OBAT) COA SI/PPZ/01561222\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CETIRIZINE DIHYDROCHLORIDE BP (BHN BAKU OBAT) COA SLL/CTR/0922058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"CETIRIZINE DIHYDROCHLORIDE BP (BHN BAKU OBAT) COA SLL/CTR/0922058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2270946\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2270946\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2208259\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2208259\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2214270\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2214270\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2208259\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2208259\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2270946\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2270946\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2116784\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2116784\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2213688\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2213688\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2236789\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2236789\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2116784\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2116784\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2109792,2172755\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2109792,2172755\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2179372\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2179372\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1306233,2104098\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1306233,2104098\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2011124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2011124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1236551\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1236551\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2297695\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2297695\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2311059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2311059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1279274\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1279274\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CHROMAGAR CANDIDA 500GM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2123851\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE CHROMAGAR CANDIDA 500GM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2123851\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL DIFCO AGAR 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2334650\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PAIL DIFCO AGAR 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2334650\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2293018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2293018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2304673\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2304673\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SODIUM DESOXYCHOLATE 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1279594\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SODIUM DESOXYCHOLATE 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1279594\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2088727\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2088727\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GLYCEROL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2252027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GLYCEROL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2252027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2060510\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2060510\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2217638\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2217638\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2053778\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2053778\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2217600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2217600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2179358\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2179358\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TODD HEWITT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2060551\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TODD HEWITT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2060551\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2235469\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2235469\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GASPAK EZ STANDARD INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH7384802010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"GASPAK EZ STANDARD INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH7384802010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2094035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2094035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2046556,217937\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2046556,217937\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2053111\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2053111\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2228563\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2228563\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1236551\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1236551\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2215654\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2215654\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2229544\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2229544\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2269108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2269108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2111375\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2111375\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2215995\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2215995\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2074156\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2074156\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1188089,2214259\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1188089,2214259\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1285556\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1285556\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2298866,230\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2298866,230\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TSA TM WLP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2291682\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"TSA TM WLP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2291682\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 2293892\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 2293892\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2214224\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2214224\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB PLUS AMLES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 221024700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CULTURESWAB PLUS AMLES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 221024700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2173796\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2173796\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC YRPN19-8...(ALAT KESEHATAN)COA 6D19100L0106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30061010\", \"uraian\": \"STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC YRPN19-8...(ALAT KESEHATAN)COA 6D19100L0106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC YRPN19-10...(ALAT KESEHATAN)COA HR1938L0106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30061010\", \"uraian\": \"STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC YRPN19-10...(ALAT KESEHATAN)COA HR1938L0106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC YRPN19-100..(ALAT KESEHATAN)COA HR1960L0106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30061010\", \"uraian\": \"STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC YRPN19-100..(ALAT KESEHATAN)COA HR1960L0106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC YRPN19-1...(ALAT KESEHATAN)COA HL19100L0106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30061010\", \"uraian\": \"STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC YRPN19-1...(ALAT KESEHATAN)COA HL19100L0106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC YRDN-FE-...(ALAT KESEHATAN)COA DA21420N0106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30061010\", \"uraian\": \"STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC YRDN-FE-...(ALAT KESEHATAN)COA DA21420N0106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 221769\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ABSORAGE (BHN BAKU KOSMETIK) COA 221769\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 221964\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"IZAYOI (BHN BAKU KOSMETIK) COA 221964\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 222375\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329900\", \"uraian\": \"K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 222375\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 220387\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 220387\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNEBUSTERS (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIRJU (BHN BAKU KOSMETIK) COA 221795\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"CLAIRJU (BHN BAKU KOSMETIK) COA 221795\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 221904\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 221904\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 221964\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"IZAYOI (BHN BAKU KOSMETIK) COA 221964\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOKUDAMI LIQUID B (BHN BAKU KOSMETIK) COA 222276\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"DOKUDAMI LIQUID B (BHN BAKU KOSMETIK) COA 222276\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONO CHARDY (BHN BAKU KOSMETIK) COA 222292\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"CHRONO CHARDY (BHN BAKU KOSMETIK) COA 222292\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYPROHEPTADINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA BCYPH/2212089\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"CYPROHEPTADINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA BCYPH/2212089\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALAMINE, POWDER, BP 2023 (BHN BAKU SUPLEMEN) COA 3127863 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28369990\", \"uraian\": \"CALAMINE, POWDER, BP 2023 (BHN BAKU SUPLEMEN) COA 3127863 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NYSTATIN POWDER ROW GRADE (BHN BAKU OBAT) COA C114701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NYSTATIN POWDER ROW GRADE (BHN BAKU OBAT) COA C114701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NYSTATIN MICRONIZED (BHN BAKU OBAT) COA C132223\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NYSTATIN MICRONIZED (BHN BAKU OBAT) COA C132223\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 22B0095600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 22B0095600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 22B0095900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 22B0095900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 22B0096000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 22B0096000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 22B0096100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 22B0096100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ISDN 10PCT IN NACL (DISPERSION) (BHN BAKU OBAT) COA 2214400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"ISDN 10PCT IN NACL (DISPERSION) (BHN BAKU OBAT) COA 2214400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOSWELLIA SERRATA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 36BWP0090\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"BOSWELLIA SERRATA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 36BWP0090\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NG 5 PCT-1,2 PROPYLENGLYCOLE 95PCT (BAHAN BAKU OBAT) COA 2213201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"NG 5 PCT-1,2 PROPYLENGLYCOLE 95PCT (BAHAN BAKU OBAT) COA 2213201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-210 (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSG-210 (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-210 (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSG-210 (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) CAS 68937-54-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6017 (17KG) (BHN BAKU KOSMETIK) CAS 68937-54-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA ROA199224,ROA199224,ROA200226\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA ROA199224,ROA199224,ROA200226\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE (R) MONOGRAMMING INK S-1-180000 WHITE (BHN BAKU PEWARNA TABLET) COA WP865510\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPACODE (R) MONOGRAMMING INK S-1-180000 WHITE (BHN BAKU PEWARNA TABLET) COA WP865510\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP/USP (BHN BAKU OBAT) COA NED230107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP/USP (BHN BAKU OBAT) COA NED230107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (POST BORDER) COA ROA199224,ROA199224,ROA186227,ROA...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (POST BORDER) COA ROA199224,ROA199224,ROA186227,ROA...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE(BHN BAKU SUPPLEMEN) COA MTP33822,MTP33922 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA HD 0/13 SODIUM BICARBONATE(BHN BAKU SUPPLEMEN) COA MTP33822,MTP33922 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LYNESTRENOL BP (BHN BAKU OBAT) COA LNZ/922002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372300\", \"uraian\": \"LYNESTRENOL BP (BHN BAKU OBAT) COA LNZ/922002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERNFINE 100 N (BHN BAKU MAKANAN) COA N51-3109152\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232011\", \"uraian\": \"STERNFINE 100 N (BHN BAKU MAKANAN) COA N51-3109152\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLOWLAC (R) 100 H (BHN BAKU OBAT) COAL105814522\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"FLOWLAC (R) 100 H (BHN BAKU OBAT) COAL105814522\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104314322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104314322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103864422\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103864422\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHENYLEPHRINE HCL USP (BHN BAKU OBAT) COA 2-IL-D-2481222 S/D 2-IL-D-2501222\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29225090\", \"uraian\": \"PHENYLEPHRINE HCL USP (BHN BAKU OBAT) COA 2-IL-D-2481222 S/D 2-IL-D-2501222\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-2207107 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29146200\", \"uraian\": \"COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-2207107 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-2208128 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29146200\", \"uraian\": \"COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-2208128 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102202046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102202046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RAJOL WP80/BDF LIGHT LIQUID PARAFFIN-BP/LIGHT MINERAL OIL... (BHN BAKU KOSMETIK) COA 1000230001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101990\", \"uraian\": \"RAJOL WP80/BDF LIGHT LIQUID PARAFFIN-BP/LIGHT MINERAL OIL... (BHN BAKU KOSMETIK) COA 1000230001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/12/241222\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/12/241222\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CROSCARMELLOSE SODIUM USP-NF (BHN BAKU OBAT) COA ACRMC/12/281222 S/D ACRMC/12/301222\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39129090\", \"uraian\": \"CROSCARMELLOSE SODIUM USP-NF (BHN BAKU OBAT) COA ACRMC/12/281222 S/D ACRMC/12/301222\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/01/060123,070123,160123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123100\", \"uraian\": \"CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/01/060123,070123,160123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASGP/12/191222,201222,201122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASGP/12/191222,201222,201122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3 PCT (BHN BAKU SUPPLEMEN) COA WB21050216 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3 PCT (BHN BAKU SUPPLEMEN) COA WB21050216 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HCL 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22050068 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HCL 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22050068 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060064\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060064\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060064\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060064\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND CUCURBITA EXTRACT (BHN BAKU KOSMETIK) COA CMB-013042\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND CUCURBITA EXTRACT (BHN BAKU KOSMETIK) COA CMB-013042\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-070122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-070122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA MAK114\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA MAK114\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-062102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-062102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-BLACK PEARL POWDER (BHN BAKU KOSMETIK) CAS 73049-73-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND BIO-BLACK PEARL POWDER (BHN BAKU KOSMETIK) CAS 73049-73-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20221227\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20221227\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SYN(R)-AKE (BHN BAKU KOSMETIK) COA UE02210016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SYN(R)-AKE (BHN BAKU KOSMETIK) COA UE02210016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SYN(R)-AKE (BHN BAKU KOSMETIK) COA UE02210016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SYN(R)-AKE (BHN BAKU KOSMETIK) COA UE02210016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VEEGUM K 20K BG (BHN BAKU KOSMETIK) COA 2021472831\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25081000\", \"uraian\": \"VEEGUM K 20K BG (BHN BAKU KOSMETIK) COA 2021472831\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-0130123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334910\", \"uraian\": \"DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-0130123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMBROXOL HYDROCHLORIDE BP(BHN BAKU OBAT) COA AMB E18 080 0123,AMB E18 081 0123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"AMBROXOL HYDROCHLORIDE BP(BHN BAKU OBAT) COA AMB E18 080 0123,AMB E18 081 0123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3386233\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3386233\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC211119,PC211217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC211119,PC211217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12204017 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12204017 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT22090031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT22090031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02208718 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02208718 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92212044,XW92212045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"V003400 (BHN BAKU MAKANAN) COA XW92212044,XW92212045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 - C3 (BHN BAKU MAKANAN) COA XW92212051,XW92212052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 - C3 (BHN BAKU MAKANAN) COA XW92212051,XW92212052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 712 CAN 10 KG (BHN BAKU KOSMETIK) CAS 24634-61-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 712 CAN 10 KG (BHN BAKU KOSMETIK) CAS 24634-61-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 903 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 903 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 940 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 940 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) CAS 122-99-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) CAS 122-99-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIDIN DO CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIDIN DO CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE AM PELLETS CAR (BHN BAKU SUPPLEMEN) COA 22E2708\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE AM PELLETS CAR (BHN BAKU SUPPLEMEN) COA 22E2708\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE BM PELLETS CAR (BHN BAKU SUPPLEMEN) COA 22E2205\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE BM PELLETS CAR (BHN BAKU SUPPLEMEN) COA 22E2205\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE A PELLETS CAR (BHN BAKU SUPPLEMEN) COA 22E2405\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE A PELLETS CAR (BHN BAKU SUPPLEMEN) COA 22E2405\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE NA PELLETS CAR (BHN BAKU SUPPLEMEN) COA 22E3707\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE NA PELLETS CAR (BHN BAKU SUPPLEMEN) COA 22E3707\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 200925\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 200925\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 200925\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 200925\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ21016113\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ21016113\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2202017,UEB2202020,UEB2202021,UEB220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2202017,UEB2202020,UEB2202021,UEB220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22070137\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22070137\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2444202128\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2444202128\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED MAIZE... (BHN BAKU PEWARNA TABLET) COA IN548444\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY PREGELATINIZED MAIZE... (BHN BAKU PEWARNA TABLET) COA IN548444\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180K34002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180K34002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180L48006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180L48006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464207156\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464207156\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180M2D001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180M2D001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464207191\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464207191\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464207192\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464207192\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E5 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2444151392\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E5 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2444151392\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAFFEINE BP/EP/USP (BHN BAKU OBAT) COA 22101854,22101864,22101865,22101871,22101877,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29393000\", \"uraian\": \"CAFFEINE BP/EP/USP (BHN BAKU OBAT) COA 22101854,22101864,22101865,22101871,22101877,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAFFEINE BP/EP/USP (BHN BAKU OBAT) COA 22122383,22122392,22122393,22122409,... (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29393000\", \"uraian\": \"CAFFEINE BP/EP/USP (BHN BAKU OBAT) COA 22122383,22122392,22122393,22122409,... (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG221230\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG221230\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP23014454\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP23014454\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2444202128\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2444202128\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED MAIZE... (BHN BAKU PEWARNA TABLET) COA IN548444\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY PREGELATINIZED MAIZE... (BHN BAKU PEWARNA TABLET) COA IN548444\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180K34002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180K34002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180L48006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180L48006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464207156\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464207156\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180M2D001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180M2D001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464207191\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464207191\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464207192\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464207192\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E5 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2444151392\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E5 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2444151392\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HEXETIDINE (BHN BAKU OBAT) COA FG22202170\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"HEXETIDINE (BHN BAKU OBAT) COA FG22202170\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM 0501 AL HYD POWDER (BHN BAKU OBAT) COA 102260001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"BARCROFT TM 0501 AL HYD POWDER (BHN BAKU OBAT) COA 102260001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102269006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102269006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROCATEROL HCL HEMIHYDRATE MICRONIZED (BHN BAKU OBAT) COA 86032621M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29337900\", \"uraian\": \"PROCATEROL HCL HEMIHYDRATE MICRONIZED (BHN BAKU OBAT) COA 86032621M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHARMABURST (R) C1 (BHN BAKU OBAT) COA 122202337\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069099\", \"uraian\": \"PHARMABURST (R) C1 (BHN BAKU OBAT) COA 122202337\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) CAS 1119-97-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CETRIMIDE (BHN BAKU KOSMETIK) CAS 1119-97-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CATECHINS TEAVIGO 1 KG (BHN BAKU KOSMETIK) COA 211081\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"CATECHINS TEAVIGO 1 KG (BHN BAKU KOSMETIK) COA 211081\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENTRY POLYOX WSR 303 LEO NF (DUPONT/IFF) BHN BAKU PEWARNA TABLET) COA 2534296408\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"SENTRY POLYOX WSR 303 LEO NF (DUPONT/IFF) BHN BAKU PEWARNA TABLET) COA 2534296408\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1 PCT WS (BHN BAKU MAKANAN) COA UT21040008 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1 PCT WS (BHN BAKU MAKANAN) COA UT21040008 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2511222\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2511222\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRISODIUMCITRATE DIHYDRATE FINE GRANULAR (BHN BAKU SUPPLEMEN) COA UJ247\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"TRISODIUMCITRATE DIHYDRATE FINE GRANULAR (BHN BAKU SUPPLEMEN) COA UJ247\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POTASSIUM IODIDE AND CARRIER (BHN BAKU SUPLEMEN) COA 3123496\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28276000\", \"uraian\": \"POTASSIUM IODIDE AND CARRIER (BHN BAKU SUPLEMEN) COA 3123496\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SELOHVITA C (BHN BAKU SUPLEMEN) COA 3126191\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28429010\", \"uraian\": \"SELOHVITA C (BHN BAKU SUPLEMEN) COA 3126191\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NYSTATIN MICRONIZED (BHN BAKU OBAT) COA C132247\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NYSTATIN MICRONIZED (BHN BAKU OBAT) COA C132247\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYDROQUINONE USP (BHN BAKU SUPPLEMEN) COA APL/A/HQE/22029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29072200\", \"uraian\": \"HYDROQUINONE USP (BHN BAKU SUPPLEMEN) COA APL/A/HQE/22029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERRIC PYROPHOSPHATE, APPROX. 25PCT FE... (BHN BAKU OBAT) COA 3101720\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28353990\", \"uraian\": \"FERRIC PYROPHOSPHATE, APPROX. 25PCT FE... (BHN BAKU OBAT) COA 3101720\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-051702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-051702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND JEJU TANGERINE EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND JEJU TANGERINE EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-022802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-022802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-782692\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-782692\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-062122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-062122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-011713\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-011713\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-06292\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-06292\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-061302,070522\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-061302,070522\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND TEA TREE EXTRACT (BHN BAKU KOSMETIK) COA MASL-011402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND TEA TREE EXTRACT (BHN BAKU KOSMETIK) COA MASL-011402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-022802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-022802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-005-Z\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-005-Z\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300064,10300065\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300064,10300065\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) GINSENG (BHN BAKU KOSMETIK) COA 10300048\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021940\", \"uraian\": \"EXTRAPONE (R) GINSENG (BHN BAKU KOSMETIK) COA 10300048\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 220601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 220601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 220604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 220604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 220604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 220604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OILESS' CITY TM (BHN BAKU KOSMETIK) COA 220304\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"OILESS' CITY TM (BHN BAKU KOSMETIK) COA 220304\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OILESS' CITY TM (BHN BAKU KOSMETIK) COA 220614\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"OILESS' CITY TM (BHN BAKU KOSMETIK) COA 220614\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANTOPRAZOLE SODIUM (STERILE) (BAHAN BAKU OBAT) COA SI/PPZ/00050123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"PANTOPRAZOLE SODIUM (STERILE) (BAHAN BAKU OBAT) COA SI/PPZ/00050123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOTAXIME SODIUM (BAHAN BAKU OBAT ) COA 3042208026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOTAXIME SODIUM (BAHAN BAKU OBAT ) COA 3042208026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92212229,XW92212230 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92212229,XW92212230 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC220713\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC220713\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000207862\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000207862\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02109811\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02109811\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1251471\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1251471\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1251471\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1251471\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1251471\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1251471\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1251471\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1251471\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1251471\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1251471\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2032032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2032032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2032032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2032032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2032032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2032032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2441197\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2441197\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2441197\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2441197\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 25-03-22,26-03-22,28-03-22\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 25-03-22,26-03-22,28-03-22\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB141122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB141122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB141122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB141122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B251122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B251122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B251122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B251122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIMETHOPRIM MICRONISED BP (BHN BAKU OBAT) COA TMPM22120001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"TRIMETHOPRIM MICRONISED BP (BHN BAKU OBAT) COA TMPM22120001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN548830\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN548830\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN548846\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN548846\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN548829\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN548829\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN548831\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN548831\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20221002,XH20221003 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20221002,XH20221003 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNEBUSTERS (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 221275\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 221275\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOKUDAMI LIQUID B (BHN BAKU KOSMETIK) COA 222276\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"DOKUDAMI LIQUID B (BHN BAKU KOSMETIK) COA 222276\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 221964\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"IZAYOI (BHN BAKU KOSMETIK) COA 221964\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KOMENUKA LIQUID BK (BHN BAKU KOSMETIK) COA 230245\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"KOMENUKA LIQUID BK (BHN BAKU KOSMETIK) COA 230245\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 222803\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"MANDARINCLEAR (BHN BAKU KOSMETIK) COA 222803\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REFINED COCONUT OIL - L (BHN BAKU KOSMETIK) COA 0002625750\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15131990\", \"uraian\": \"REFINED COCONUT OIL - L (BHN BAKU KOSMETIK) COA 0002625750\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RADIA 8526 LINSEED STANDOIL 60 P (BHN BAKU KOSMETIK) COA EM69220724\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15180039\", \"uraian\": \"RADIA 8526 LINSEED STANDOIL 60 P (BHN BAKU KOSMETIK) COA EM69220724\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA MLAH0040123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29341000\", \"uraian\": \"MELOXICAM BP (BHN BAKU OBAT) COA MLAH0040123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOPROFEN (BHN BAKU OBAT) COA 202112\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29183000\", \"uraian\": \"KETOPROFEN (BHN BAKU OBAT) COA 202112\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA LC043-22-801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 200 (BHN BAKU OBAT) COA LC043-22-801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DURALAC H (BHN BAKU OBAT) COA L046-22-805\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"DURALAC H (BHN BAKU OBAT) COA L046-22-805\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERNFINE 100 N (BHN BAKU MAKANAN) COA N50-3131016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232011\", \"uraian\": \"STERNFINE 100 N (BHN BAKU MAKANAN) COA N50-3131016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5177 FD&C YELLOW 5/TARTRA...(BHN BAKU PEWARNA TABLET) COA WP861773:BB9112\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5177 FD&C YELLOW 5/TARTRA...(BHN BAKU PEWARNA TABLET) COA WP861773:BB9112\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT (R) 6010 D&C YELLOW 10 ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP864266:BC1291\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT (R) 6010 D&C YELLOW 10 ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP864266:BC1291\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5406 FD&C RED 40/ALLURA RED...(BHN BAKU PEWARNA TABLET) COA WP851884:BB3827\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5406 FD&C RED 40/ALLURA RED...(BHN BAKU PEWARNA TABLET) COA WP851884:BB3827\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT (R) 6010 D&C YELLOW 10 ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP864266:BC1291\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT (R) 6010 D&C YELLOW 10 ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP864266:BC1291\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C YELLOW 6/SUNSET...(BHN BAKU PEWARNA TABLET) COA WP862652:BC0373\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5287 FD&C YELLOW 6/SUNSET...(BHN BAKU PEWARNA TABLET) COA WP862652:BC0373\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5177 FD&C YELLOW 5/TARTRA...(BHN BAKU PEWARNA TABLET) COA WP861770:BB9108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5177 FD&C YELLOW 5/TARTRA...(BHN BAKU PEWARNA TABLET) COA WP861770:BB9108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) CAS 50-70-4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALDAVINE TM 5X (BHN BAKU KOSMETIK) CAS 50-70-4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMISOL TM 4135 (BHN BAKU KOSMETIK) CAS 8002-43-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AMISOL TM 4135 (BHN BAKU KOSMETIK) CAS 8002-43-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEFENSCALP TM PF (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"DEFENSCALP TM PF (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECOGEL (BHN BAKU KOSMETIK) CAS 85711-58-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ECOGEL (BHN BAKU KOSMETIK) CAS 85711-58-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL (BHN BAKU KOSMETIK) CAS 85711-58-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL (BHN BAKU KOSMETIK) CAS 85711-58-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELANOSTATINE TM 5 BG (50PPM) (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MELANOSTATINE TM 5 BG (50PPM) (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INST'TIGHT TM (BHN BAKU KOSMETIK) CAS 56-81-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"INST'TIGHT TM (BHN BAKU KOSMETIK) CAS 56-81-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) CAS 50-70-4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALDAVINE TM 5X (BHN BAKU KOSMETIK) CAS 50-70-4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829011551N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"B-WHITE TM (BHN BAKU KOSMETIK) COA 829011551N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 213925\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"CHRONOLINE TM (BHN BAKU KOSMETIK) COA 213925\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834011557N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834011557N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROGELINE TM (BHN BAKU KOSMETIK) COA 221447\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"PROGELINE TM (BHN BAKU KOSMETIK) COA 221447\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 785081368N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 785081368N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 222035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"CHRONOLINE TM (BHN BAKU KOSMETIK) COA 222035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM CHLORIDE 6-HYDRATE, CRYST... (BHN BAKU KOSMETIK) COA 3118772\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28273100\", \"uraian\": \"MAGNESIUM CHLORIDE 6-HYDRATE, CRYST... (BHN BAKU KOSMETIK) COA 3118772\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1230104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1230104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1230104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1230104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1230104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1230104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-013013S\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-013013S\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N1C103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N1C103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW92212060,XW92212061\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 C (BHN BAKU MAKANAN) COA XW92212060,XW92212061\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 103093 - A (BHN BAKU MAKANAN) COA XW92212030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 103093 - A (BHN BAKU MAKANAN) COA XW92212030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ20912367\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ20912367\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02208069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02208069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20220101,XH20220801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20220101,XH20220801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT22060028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT22060028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02208072 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02208072 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02208072 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02208072 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS1150622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS1150622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0722010071\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHS (BHN BAKU KOSMETIK) COA 0722010071\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0322020036,0322020037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 (BHN BAKU KOSMETIK) COA 0322020036,0322020037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P1G24QA000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL TX (BHN BAKU KOSMETIK) COA P1G24QA000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22090305 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22090305 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0722010083\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHS (BHN BAKU KOSMETIK) COA 0722010083\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210153,0708210154,0708210158\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210153,0708210154,0708210158\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040042,0222040121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040042,0222040121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0722010083\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHS (BHN BAKU KOSMETIK) COA 0722010083\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22090307 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22090307 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0041495 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0041495 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-PANTHENOL 50 L (BHN BAKU KOSMETIK) COA TL02211634 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL-PANTHENOL 50 L (BHN BAKU KOSMETIK) COA TL02211634 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLOWLAC (R) 100 (BHN BAKU OBAT) COA L101500323\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"FLOWLAC (R) 100 (BHN BAKU OBAT) COA L101500323\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751... (BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751... (BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O665000...(BHN BAKU PEWARNA TABLET) COA GA724514\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O665000...(BHN BAKU PEWARNA TABLET) COA GA724514\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359 ...(BHN BAKU PEWARNA TABLET) COA GA724516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359 ...(BHN BAKU PEWARNA TABLET) COA GA724516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND (R) PB-665012 BROWN...(BHN BAKU PEWARNA TABLET) COA GA724603\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"PIGMENT BLEND (R) PB-665012 BROWN...(BHN BAKU PEWARNA TABLET) COA GA724603\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G65197...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G65197...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007...(BHN BAKU PEWARNA TABLET) COA GA724518\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007...(BHN BAKU PEWARNA TABLET) COA GA724518\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 151-21-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 151-21-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K14834...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K14834...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G62343...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G62343...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51156...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51156...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G630022...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G630022...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM II COMPLETE FILM...(BHN BAKU PEWARNA TABLET) CAS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM II COMPLETE FILM...(BHN BAKU PEWARNA TABLET) CAS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) KB LOW VISCOSITY FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) KB LOW VISCOSITY FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA724604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA724604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03Z59026...(BHN BAKU PEWARNA TABLET) CAS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03Z59026...(BHN BAKU PEWARNA TABLET) CAS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA723104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA723104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F19250...(BHN BAKU PEWARNA TABLET) CAS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F19250...(BHN BAKU PEWARNA TABLET) CAS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA723104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA723104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CINNARIZINE (BHN BAKU OBAT) COA CIN2301001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"CINNARIZINE (BHN BAKU OBAT) COA CIN2301001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP23014472,XP23014473 S/D XP23014475\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP23014472,XP23014473 S/D XP23014475\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOCUSATE SODIUM (BHN BAKU OBAT) COA DSW3003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"DOCUSATE SODIUM (BHN BAKU OBAT) COA DSW3003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FAIR FOR LIFE REFINED SHEA (BHN BAKU KOSMETIK) COA 0000044366\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15159011\", \"uraian\": \"FAIR FOR LIFE REFINED SHEA (BHN BAKU KOSMETIK) COA 0000044366\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 189962\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 189962\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 57-50-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 57-50-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G63147...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G63147...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA723096\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA723096\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86512...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86512...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620041...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620041...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51226...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51226...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55041...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55041...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G640054...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G640054...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86674...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86674...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA723104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA723104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SEABUCKTHRON HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HIR220801-B\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SEABUCKTHRON HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HIR220801-B\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK) COA EG209-220602\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK) COA EG209-220602\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK) COA EG209-220602\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK) COA EG209-220602\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SEABUCKTHRON HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HIR220801-B\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SEABUCKTHRON HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HIR220801-B\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POVIDONE K-30 (BHN BAKU OBAT) COA PK30-230207F21\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"POVIDONE K-30 (BHN BAKU OBAT) COA PK30-230207F21\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104310223\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104310223\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE, TYPE 100 (BHN BAKU SUPPLEMEN) COA UT22040064,UT22040065\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE, TYPE 100 (BHN BAKU SUPPLEMEN) COA UT22040064,UT22040065\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT22080063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT22080063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GENIVIDA(TM) TG (BHN BAKU SUPPLEMEN) COA UT21100004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329900\", \"uraian\": \"GENIVIDA(TM) TG (BHN BAKU SUPPLEMEN) COA UT21100004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPPLEMEN) COA TL02210552\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPPLEMEN) COA TL02210552\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAROCARE NAT. BC 20PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA EW22112023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"CAROCARE NAT. BC 20PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA EW22112023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-TARTARIC ACID (BHN BAKU MAKANAN) COA RS01623.RS01624\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181200\", \"uraian\": \"DL-TARTARIC ACID (BHN BAKU MAKANAN) COA RS01623.RS01624\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CROSPOVIDONE XL (BHN BAKU SUPPLEMEN) COA PP230115XL\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"CROSPOVIDONE XL (BHN BAKU SUPPLEMEN) COA PP230115XL\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACETAMINOPHEN (PARACETAMOL) (BHN BAKU SUPPLEMEN) COA 202302008A,202302009A\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"ACETAMINOPHEN (PARACETAMOL) (BHN BAKU SUPPLEMEN) COA 202302008A,202302009A\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2217756\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2217756\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2300340\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2300340\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2173796\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2173796\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B04E347M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B04E347M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2174795\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2174795\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2334621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2334621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2265467\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2265467\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2313348\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2313348\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2304673\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2304673\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2201317\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2201317\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GASPAK EZ STANDARD INCUBATION CONT...(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7384802010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"GASPAK EZ STANDARD INCUBATION CONT...(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7384802010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1159968\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1159968\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BORDET GENGOU AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2137558\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BORDET GENGOU AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2137558\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2265467\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2265467\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2172775,23111\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2172775,23111\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2143687\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2143687\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2208259\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2208259\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2207023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2207023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2228563\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2228563\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2047633\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2047633\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2116784\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2116784\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2213688\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2213688\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 2074829\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 2074829\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2214259\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2214259\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2005526\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2005526\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1285556\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1285556\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM CARBONATE IPH (BHN BAKU SUPPLEMEN) COA DOC3462221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"SODIUM CARBONATE IPH (BHN BAKU SUPPLEMEN) COA DOC3462221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ESOMEPRAZOLE PELLETS 22,5PCT MUPS (BHN BAKU OBAT) COA EO2222C045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"ESOMEPRAZOLE PELLETS 22,5PCT MUPS (BHN BAKU OBAT) COA EO2222C045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464237382\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464237382\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E15 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2444195957\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E15 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2444195957\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464259775\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464259775\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180L1V022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180L1V022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E50 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D011K5QL02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E50 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D011K5QL02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANISETRON HCL EP (BHN BAKU OBAT) COA GRH/121008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"GRANISETRON HCL EP (BHN BAKU OBAT) COA GRH/121008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55132...(BHN BAKU PEWARNA TABLET) CAS 14807-96-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55132...(BHN BAKU PEWARNA TABLET) CAS 14807-96-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 57-50-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 57-50-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F19250...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F19250...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GRAM SAFRANIN 250ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2300327\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GRAM SAFRANIN 250ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2300327\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TERGITOL 4 XLT4 SUPPLEMENT 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH SLCM0515\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TERGITOL 4 XLT4 SUPPLEMENT 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH SLCM0515\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SELENITE CYSTINE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2228836\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SELENITE CYSTINE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2228836\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VALERIAN DRY HYDR. EXTR. (BAHAN BAKU SUPLEMEN) COA 22B0083300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VALERIAN DRY HYDR. EXTR. (BAHAN BAKU SUPLEMEN) COA 22B0083300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA/PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 22S0097300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"CENTELLA ASIATICA/PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 22S0097300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 21S0191800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 21S0191800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/01/200123 S/D 210123,230123 S/D 250123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/01/200123 S/D 210123,230123 S/D 250123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 985-L-MENTHOL CRYSTALS INDIAN NATURAL (BHN BAKU KOSMETIK) COA H2-114-L-21-22\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061100\", \"uraian\": \"985-L-MENTHOL CRYSTALS INDIAN NATURAL (BHN BAKU KOSMETIK) COA H2-114-L-21-22\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 985-L-MENTHOL CRYSTALS INDIAN NATURAL (BHN BAKU KOSMETIK) COA H2-132/L/21-22\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061100\", \"uraian\": \"985-L-MENTHOL CRYSTALS INDIAN NATURAL (BHN BAKU KOSMETIK) COA H2-132/L/21-22\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000208204 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000208204 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02208072 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02208072 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02208072 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02208072 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT22060028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT22060028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12211009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12211009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ20612201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ20612201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02208069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02208069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT22060163\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT22060163\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE02209014 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"RONOXAN A (BHN BAKU MAKANAN) COA UE02209014 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT22070008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT22070008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11221040 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11221040 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12211009 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12211009 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ21013603\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ21013603\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP C (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2224441\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL N MENINGITIDIS ANTISERUM GRP C (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2224441\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP W135 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1092251\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL N MENINGITIDIS ANTISERUM GRP W135 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1092251\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2027288\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2027288\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2139402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2139402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MS IL-4 APC 11B11 25UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2038855\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"MS IL-4 APC 11B11 25UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2038855\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2123411\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2123411\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MS CD28 NE/LE 37.51 2MG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0225887\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"MS CD28 NE/LE 37.51 2MG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0225887\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU IL-1BTA CBA FLEX SET B4 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2336631\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU IL-1BTA CBA FLEX SET B4 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2336631\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU TNF CBA FLEX SET D9 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2118450\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU TNF CBA FLEX SET D9 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2118450\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD CST BEADS KIT 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 66511\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BD CST BEADS KIT 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 66511\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROPIDIUM IODINE STAINING SOLUTION 2ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1354798\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PROPIDIUM IODINE STAINING SOLUTION 2ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1354798\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2284811\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2284811\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP C (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2224441\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL N MENINGITIDIS ANTISERUM GRP C (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2224441\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD4 PERCP-CY5.5 SK3 RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2283513\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD4 PERCP-CY5.5 SK3 RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2283513\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2322461\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2322461\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MC-GLUCAN (BHN BAKU KOSMETIK) COA MCGL220926,MCGL221121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"MC-GLUCAN (BHN BAKU KOSMETIK) COA MCGL220926,MCGL221121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK-F (BHN BAKU KOSMETIK) CAS 69430-36-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK-F (BHN BAKU KOSMETIK) CAS 69430-36-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK-GB (BHN BAKU KOSMETIK) CAS 69430-36-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK-GB (BHN BAKU KOSMETIK) CAS 69430-36-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMITOSE HGA (BHN BAKU KOSMETIK) COA LAJ\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"AMITOSE HGA (BHN BAKU KOSMETIK) COA LAJ\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERRIC HYDROXIDE POLYMALTOSE COMPLEX POWDER (BHN BAKU SUPPLEMEN) COA 3127023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29400000\", \"uraian\": \"FERRIC HYDROXIDE POLYMALTOSE COMPLEX POWDER (BHN BAKU SUPPLEMEN) COA 3127023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP26622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP26622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP01323,MTP01123,MTP00923\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP01323,MTP01123,MTP00923\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FENTACARE 1631 25 MB 200KG PLAS DR (BHN BAKU KOSMETIK ) COA ZH23B0611M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29239000\", \"uraian\": \"FENTACARE 1631 25 MB 200KG PLAS DR (BHN BAKU KOSMETIK ) COA ZH23B0611M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202242\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202242\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122202354\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054300\", \"uraian\": \"MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122202354\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 122202271\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28365010\", \"uraian\": \"VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 122202271\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHARMABURST (R) 500 (BHN BAKU OBAT) COA 122202332\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069099\", \"uraian\": \"PHARMABURST (R) 500 (BHN BAKU OBAT) COA 122202332\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHARMABURST (R) C1 (BHN BAKU OBAT) COA 122202339\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069099\", \"uraian\": \"PHARMABURST (R) C1 (BHN BAKU OBAT) COA 122202339\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202099,122202242\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202099,122202242\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202098,122202099\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202098,122202099\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2023010602 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2023010602 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2023010602 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2023010602 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-CARNITINE (EP GRADE)(BHN BAKU KOSMETIK) COA 10100120220702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29239000\", \"uraian\": \"L-CARNITINE (EP GRADE)(BHN BAKU KOSMETIK) COA 10100120220702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) CAS 233683-84-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) CAS 233683-84-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 221634\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 221634\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA725523\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA725523\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA725479\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA725479\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86512...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86512...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA726365\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA726365\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001..(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001..(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F19250...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F19250...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA725484\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA725484\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA725820\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA725820\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MACKAM C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 6192-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34024990\", \"uraian\": \"MACKAM C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 6192-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LORATADINE USP (BHN BAKU OBAT) COA BLRD/2211083\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"LORATADINE USP (BHN BAKU OBAT) COA BLRD/2211083\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BISOPROLOL FUMARATE USP (BHN BAKU OBAT) COA LT-OBFM/004/22-23\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"BISOPROLOL FUMARATE USP (BHN BAKU OBAT) COA LT-OBFM/004/22-23\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/13020086\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/13020086\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) (BHN BAKU OBAT) COA 4454104286\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"XANTHAN 80 (PHARMACEUTICAL GRADE) (BHN BAKU OBAT) COA 4454104286\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CETIRIZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA 22027CZ6RIIX\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"CETIRIZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA 22027CZ6RIIX\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RUGENER DREIKRONEN HEILKREIDE 25K (BHN BAKU KOSMETIK) COA 2062225200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25090000\", \"uraian\": \"RUGENER DREIKRONEN HEILKREIDE 25K (BHN BAKU KOSMETIK) COA 2062225200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 2204370974\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 2204370974\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 2204370974, SAMPLE NO COMMERCIAL\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 2204370974, SAMPLE NO COMMERCIAL\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 120 CAN 10 KG (BHN BAKU KOSMETIK) CAS 55965-84-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 120 CAN 10 KG (BHN BAKU KOSMETIK) CAS 55965-84-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) CAS 8002-43-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AMISOL TRIO TM (BHN BAKU KOSMETIK) CAS 8002-43-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829011471N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"B-WHITE TM (BHN BAKU KOSMETIK) COA 829011471N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829011551N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"B-WHITE TM (BHN BAKU KOSMETIK) COA 829011551N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ABYSSINE 657 (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE TM PF PRESERVATIVE-FREE(BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ABYSSINE TM PF PRESERVATIVE-FREE(BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829011551N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"B-WHITE TM (BHN BAKU KOSMETIK) COA 829011551N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOREALINE PROTECT (BHN BAKU KOSMETIK) COA AM096136\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BOREALINE PROTECT (BHN BAKU KOSMETIK) COA AM096136\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 213916\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"CHRONOLINE TM (BHN BAKU KOSMETIK) COA 213916\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GREYVERSE TM (BHN BAKU KOSMETIK) COA 833011664P\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"GREYVERSE TM (BHN BAKU KOSMETIK) COA 833011664P\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANABLUE TM PARABEN FREE (BHN BAKU KOSMETIK) CAS 50-70-4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LANABLUE TM PARABEN FREE (BHN BAKU KOSMETIK) CAS 50-70-4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEUTRAZEN TM (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"NEUTRAZEN TM (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ADIPOFILL'IN TM (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ADIPOFILL'IN TM (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) CAS 50-70-4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALDAVINE TM 5X (BHN BAKU KOSMETIK) CAS 50-70-4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 213925\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"CHRONOLINE TM (BHN BAKU KOSMETIK) COA 213925\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEFENSCALP TM (BHN BAKU KOSMETIK) COA 785071370N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"DEFENSCALP TM (BHN BAKU KOSMETIK) COA 785071370N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECOGEL TM (BHN BAKU KOSMETIK) CAS 85711-58-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ECOGEL TM (BHN BAKU KOSMETIK) CAS 85711-58-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANACHRYS 2B PF (PRESERVATIVE- (BHN BAKU KOSMETIK) CAS7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LANACHRYS 2B PF (PRESERVATIVE- (BHN BAKU KOSMETIK) CAS7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROGELINE TM (BHN BAKU KOSMETIK) COA 221196\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"PROGELINE TM (BHN BAKU KOSMETIK) COA 221196\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYDROCORTISONE ACETATE EP/USP (BHN BAKU OBAT) COA NEHAC220902\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"HYDROCORTISONE ACETATE EP/USP (BHN BAKU OBAT) COA NEHAC220902\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE USP (BHN BAKU OBAT) COA NMP221102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE USP (BHN BAKU OBAT) COA NMP221102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISONE USP (BHN BAKU OBAT) COA NPD221201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISONE USP (BHN BAKU OBAT) COA NPD221201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP/USP (BHN BAKU OBAT) COA NED230112,NED230111\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP/USP (BHN BAKU OBAT) COA NED230112,NED230111\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02301572,TL02301573\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02301572,TL02301573\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARACETAMOL USP (BHN BAKU OBAT) COA 2350408,2350422,2310226,2310233\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"PARACETAMOL USP (BHN BAKU OBAT) COA 2350408,2350422,2310226,2310233\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20221003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20221003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20221003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20221003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22110672,WB22110673\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22110672,WB22110673\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22110668 S/D WB22110670,WB22110672\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22110668 S/D WB22110670,WB22110672\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02211554\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02211554\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ21116134 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ21116134 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT22090024,UT22090025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT22090024,UT22090025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02210752\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02210752\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (BHN BAKU SUPPLEMEN) COA UT22061195,UT22061196\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (BHN BAKU SUPPLEMEN) COA UT22061195,UT22061196\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CM0100DSM (BHN BAKU MAKANAN) COA XW92301261\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"CM0100DSM (BHN BAKU MAKANAN) COA XW92301261\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11221040,QZ11221041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11221040,QZ11221041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12211009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12211009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02208072,TL02209079 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02208072,TL02209079 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P1G27QA000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL TX (BHN BAKU KOSMETIK) COA P1G27QA000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010360\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010360\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-2208175 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29146200\", \"uraian\": \"COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-2208175 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MICRO CRYSTALLINE CELLULOSE USP (BHN BAKU SUPPLEMEN) COA 60230125,60230126\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39129090\", \"uraian\": \"MICRO CRYSTALLINE CELLULOSE USP (BHN BAKU SUPPLEMEN) COA 60230125,60230126\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MICRO CRYSTALLINE CELLULOSE USP (BHN BAKU SUPPLEMEN) COA 70230121,70230122,70230123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39129090\", \"uraian\": \"MICRO CRYSTALLINE CELLULOSE USP (BHN BAKU SUPPLEMEN) COA 70230121,70230122,70230123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MICRO CRYSTALLINE CELLULOSE USP (BHN BAKU SUPPLEMEN) COA 80230129\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39129090\", \"uraian\": \"MICRO CRYSTALLINE CELLULOSE USP (BHN BAKU SUPPLEMEN) COA 80230129\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA 23100045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29391900\", \"uraian\": \"PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA 23100045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA 23100047\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29391900\", \"uraian\": \"PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA 23100047\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF (BHN BAKU SUPPLEMEN) COA UE02206017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO (R) LUTEIN 20PCT SAF (BHN BAKU SUPPLEMEN) COA UE02206017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NICARDIPINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA S117A222005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"NICARDIPINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA S117A222005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMITOSE HGA (BHN BAKU KOSMETIK) COA GKN\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"AMITOSE HGA (BHN BAKU KOSMETIK) COA GKN\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMITOSE HGA (BHN BAKU KOSMETIK) COA LAB\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"AMITOSE HGA (BHN BAKU KOSMETIK) COA LAB\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS EU-118(IS) (BHN BAKU KOSMETIK) CAS 111174-63-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS EU-118(IS) (BHN BAKU KOSMETIK) CAS 111174-63-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) CAS 638164-47-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROTESIL LH (BHN BAKU KOSMETIK) CAS 638164-47-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTIBOND TG-AK (BHN BAKU MAKANAN) COA AK22113003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069091\", \"uraian\": \"PROTIBOND TG-AK (BHN BAKU MAKANAN) COA AK22113003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 2208682676\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29322090\", \"uraian\": \"SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 2208682676\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN548723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN548723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for XW30794366 - PREMIX ADE (BHN BAKU MAKANAN) COA E220004206\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"XW30794366 - PREMIX ADE (BHN BAKU MAKANAN) COA E220004206\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334872,B334874,B334876\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX POWDER (BHN BAKU OBAT) COA B334872,B334874,B334876\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 57-50-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 57-50-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G54002...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G54002...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G54002...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G54002...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F19250...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F19250...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86674...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86674...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F20440...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F20440...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G62600...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G62600...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F650026...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F650026...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-8855...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM OY-8855...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NG 5 PCT-1,2 PROPYLENGLYCOLE 95PCT (BAHAN BAKU OBAT) COA 2300669\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"NG 5 PCT-1,2 PROPYLENGLYCOLE 95PCT (BAHAN BAKU OBAT) COA 2300669\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CATECHINS TEAVIGO 1 KG (BHN BAKU KOSMETIK) COA 211081\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"CATECHINS TEAVIGO 1 KG (BHN BAKU KOSMETIK) COA 211081\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DS-CERAMIDE Y3S (BHN BAKU KOSMETIK) COA CSKI06\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29241990\", \"uraian\": \"DS-CERAMIDE Y3S (BHN BAKU KOSMETIK) COA CSKI06\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20230209\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20230209\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 160645\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15159011\", \"uraian\": \"AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 160645\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (B) (BHN BAKU KOSMETIK) COA AMIBD-022513\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"HYUNDAI BIOLAND AMINO ACID COMPLEX (B) (BHN BAKU KOSMETIK) COA AMIBD-022513\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-023013 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-023013 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-062692 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-062692 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-040812 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-040812 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-022023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-022023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-910112 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-910112 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA MAK114\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA MAK114\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-070122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-070122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-062122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-062122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND PINK PLANKTON EXTRACT (HD) (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND PINK PLANKTON EXTRACT (HD) (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-020192 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-020192 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-013013 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-013013 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-070122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-070122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYPOL 980 (20KG) (BAHAN BAKU KOSMETIK) COA 11522051 S/D 11522053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39069099\", \"uraian\": \"ACRYPOL 980 (20KG) (BAHAN BAKU KOSMETIK) COA 11522051 S/D 11522053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP01723 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP01723 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERRIC PYROPHOSPHATE,24PCT - 26PCT FE POWDER,FCC12 (BHN BAKU MAKANAN) COA 3124834,3124835\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28353990\", \"uraian\": \"FERRIC PYROPHOSPHATE,24PCT - 26PCT FE POWDER,FCC12 (BHN BAKU MAKANAN) COA 3124834,3124835\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIPOTASSIUM PHOSPHATE POWDER (BHN BAKU MAKANAN) COA 3124916\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28352400\", \"uraian\": \"DIPOTASSIUM PHOSPHATE POWDER (BHN BAKU MAKANAN) COA 3124916\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS FUMARATE, FINE POWDER (BHN BAKU MAKANAN) COA 3112517 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"FERROUS FUMARATE, FINE POWDER (BHN BAKU MAKANAN) COA 3112517 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS SULFATE, DRIED, POWDER, USP43 (BHN BAKU MAKANAN) COA 3107512\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"FERROUS SULFATE, DRIED, POWDER, USP43 (BHN BAKU MAKANAN) COA 3107512\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DESONIDE MICRONIZED (BHN BAKU OBAT) COA NC3328M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"DESONIDE MICRONIZED (BHN BAKU OBAT) COA NC3328M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT... (BHN BAKU OBAT) COA NC3110\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT... (BHN BAKU OBAT) COA NC3110\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANISETRON HYDROCHLORIDE (BAHAN BAKU OBAT) COA 323-230104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"GRANISETRON HYDROCHLORIDE (BAHAN BAKU OBAT) COA 323-230104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOTAXIME SODIUM (BAHAN BAKU OBAT) COA 3042208026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOTAXIME SODIUM (BAHAN BAKU OBAT) COA 3042208026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOROLAC TROMETHAMOL/TROMETHAMINE (BHN BAKU OBAT) COA 21100390\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"KETOROLAC TROMETHAMOL/TROMETHAMINE (BHN BAKU OBAT) COA 21100390\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POMEGRANATE OF ACORES HYDROGLYCERINED ...(BHN BAKU KOSMETIK) COA PUGA221210-GL (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"POMEGRANATE OF ACORES HYDROGLYCERINED ...(BHN BAKU KOSMETIK) COA PUGA221210-GL (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIE220602 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIE220602 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZORYALYS (BHN BAKU KOSMETIK) CAS 73398-61-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ZORYALYS (BHN BAKU KOSMETIK) CAS 73398-61-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HEBELYS (BHN BAKU KOSMETIK) CAS 504-63-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HEBELYS (BHN BAKU KOSMETIK) CAS 504-63-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LOTUS FROM VIETNAM ORGANIC OILY EXTRACT (BHN BAKU KOSMETIK) CAS 73398-61-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LOTUS FROM VIETNAM ORGANIC OILY EXTRACT (BHN BAKU KOSMETIK) CAS 73398-61-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3405014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3405014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NAI-WHITE A (BHN BAKU KOSMETIK) COA 2210B28102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32061110\", \"uraian\": \"NAI-WHITE A (BHN BAKU KOSMETIK) COA 2210B28102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA-TOCOPHEROL (BHN BAKU KOSMETIK) COA 01221213ES (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA-TOCOPHEROL (BHN BAKU KOSMETIK) COA 01221213ES (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010361\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010361\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS1160622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS1160622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0322020784 S/D 0322020786,0322021116\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 (BHN BAKU KOSMETIK) COA 0322020784 S/D 0322020786,0322021116\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES2209782\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"ALLANTOIN (BHN BAKU KOSMETIK) COA ES2209782\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX TRS1 WITHOUT K1 (BHN BAKU MAKANAN) COA XW92301260 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX TRS1 WITHOUT K1 (BHN BAKU MAKANAN) COA XW92301260 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTIOXIDANT PREMIX FOR GUMMY (BHN BAKU MAKANAN) COA XW92301262 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"ANTIOXIDANT PREMIX FOR GUMMY (BHN BAKU MAKANAN) COA XW92301262 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT22051191 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT22051191 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNEBUSTERS (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 221275\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 221275\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 222448\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 222448\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 222516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"IZAYOI (BHN BAKU KOSMETIK) COA 222516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 222980\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"MANDARINCLEAR (BHN BAKU KOSMETIK) COA 222980\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for YUZU CERAMIDE B (BHN BAKU KOSMETIK) COA 230116\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"YUZU CERAMIDE B (BHN BAKU KOSMETIK) COA 230116\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSE HIPS LIQUID B (BHN BAKU KOSMETIK) COA 221686\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ROSE HIPS LIQUID B (BHN BAKU KOSMETIK) COA 221686\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 220892\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 220892\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 060522\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25070000\", \"uraian\": \"KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 060522\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VALERIAN DRY HYDR. EXTR. (BAHAN BAKU SUPLEMEN) COA 22B0083300 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VALERIAN DRY HYDR. EXTR. (BAHAN BAKU SUPLEMEN) COA 22B0083300 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VALERIAN DRY HYDR. EXTR. (BAHAN BAKU SUPLEMEN) COA 22B0083300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VALERIAN DRY HYDR. EXTR. (BAHAN BAKU SUPLEMEN) COA 22B0083300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PASSION FLOWER D.H.E 4PCT (BAHAN BAKU SUPLEMEN) COA 22B0076600 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PASSION FLOWER D.H.E 4PCT (BAHAN BAKU SUPLEMEN) COA 22B0076600 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HAWTHORN DRY HYDR. EXTR (BHN BAKU SUPLEMEN) COA 20B0127300 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HAWTHORN DRY HYDR. EXTR (BHN BAKU SUPLEMEN) COA 20B0127300 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM CARBONATE DC TYPE CS90 PHARMA (BHN BAKU SUPPLEMEN) COA 202200303\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28365010\", \"uraian\": \"CALCIUM CARBONATE DC TYPE CS90 PHARMA (BHN BAKU SUPPLEMEN) COA 202200303\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETAMETHASONE VALERATE USP 43 (BHN BAKU OBAT) COA APL/BV/01029/A-23\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"BETAMETHASONE VALERATE USP 43 (BHN BAKU OBAT) COA APL/BV/01029/A-23\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETAMETHASONE VALERATE USP 43 (BHN BAKU OBAT) COA APL/BV/01029/A-23\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"BETAMETHASONE VALERATE USP 43 (BHN BAKU OBAT) COA APL/BV/01029/A-23\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL ZX (BHN BAKU KOSMETIK) COA 201019032, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL ZX (BHN BAKU KOSMETIK) COA 201019032, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACETAMINOPHEN (PARACETAMOL) (BHN BAKU OBAT) COA 202302096A,202302097A\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"ACETAMINOPHEN (PARACETAMOL) (BHN BAKU OBAT) COA 202302096A,202302097A\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALBENDAZOLE USP (BHN BAKU OBAT TERNAK) COA 2260223, 2270223, 2290223, 2300223, 2310223, 2320223\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ALBENDAZOLE USP (BHN BAKU OBAT TERNAK) COA 2260223, 2270223, 2290223, 2300223, 2310223, 2320223\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP23024195,XP23024197,XP23024196,XP23024198\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP23024195,XP23024197,XP23024196,XP23024198\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 220807 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 220807 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OILESS' CITY TM (BHN BAKU KOSMETIK) COA 220304 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"OILESS' CITY TM (BHN BAKU KOSMETIK) COA 220304 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 220806 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 220806 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 221110 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 221110 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA 220624 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA 220624 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 221126\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061900\", \"uraian\": \"MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 221126\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROPYPHENAZONE (CEP) (BHN BAKU OBAT UNTUK PEWARNA TABLET) COA 2210246\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331100\", \"uraian\": \"PROPYPHENAZONE (CEP) (BHN BAKU OBAT UNTUK PEWARNA TABLET) COA 2210246\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACETAMINOPHEN (PARACETAMOL) (BHN BAKU OBAT) COA 202302094A,202302095A\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"ACETAMINOPHEN (PARACETAMOL) (BHN BAKU OBAT) COA 202302094A,202302095A\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POVIDONE K 30 (BHN BAKU OBAT) COA PK30-230216F21\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"POVIDONE K 30 (BHN BAKU OBAT) COA PK30-230216F21\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRAYPHOS MKP FG 25K BG (BHN BAKU KOSMETIK) COA 22-280-01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PRAYPHOS MKP FG 25K BG (BHN BAKU KOSMETIK) COA 22-280-01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FENTACARE 2231 EF 25KG PAPER BOX (BHN BAKU KOSMETIK ) COA ZH23B2101,ZH23B2501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34029019\", \"uraian\": \"FENTACARE 2231 EF 25KG PAPER BOX (BHN BAKU KOSMETIK ) COA ZH23B2101,ZH23B2501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GF-B331 (BHN BAKU KOSMETIK) COA 20230224001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051090\", \"uraian\": \"GF-B331 (BHN BAKU KOSMETIK) COA 20230224001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPECWHITE VCE (BHN BAKU KOSMETIK) COA 20221105 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SPECWHITE VCE (BHN BAKU KOSMETIK) COA 20221105 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MACKAM C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 5915-1,3170-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34024990\", \"uraian\": \"MACKAM C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 5915-1,3170-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ21217019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ21217019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 CRYST FOOD GRADE (BHN BAKU KOSMETIK) COA 012206086 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 CRYST FOOD GRADE (BHN BAKU KOSMETIK) COA 012206086 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT. A PALM. 1.0 M + VIT. D3 100'000 (BHN BAKU MAKANAN) COA UT22120157,UT22120158\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VIT. A PALM. 1.0 M + VIT. D3 100'000 (BHN BAKU MAKANAN) COA UT22120157,UT22120158\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22110028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22110028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B03F024M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B03F024M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2174795\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2174795\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2173810,2173817,.\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2173810,2173817,.\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2334298\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2334298\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2179372\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2179372\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2215995\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2215995\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2026294\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2026294\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2172755\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2172755\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2104098\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2104098\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 2034966\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 2034966\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2313348\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2313348\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2207023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2207023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2011124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2011124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2123842\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2123842\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2047633\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2047633\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 2074829\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 2074829\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2214259\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2214259\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2081022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2081022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2005526\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2005526\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1272665,21580\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1272665,21580\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1285556\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1285556\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 2304648\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 2304648\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2217756,2221477\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2217756,2221477\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1350021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1350021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TSA TM WLP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2341397\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"TSA TM WLP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2341397\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TM W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3031264\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TM W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3031264\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2364106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2364106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B03F024M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B03F024M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GRAM IODINE STABILIZED 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2335326\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GRAM IODINE STABILIZED 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2335326\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GRAM IODINE STABILIZED 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2335326\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GRAM IODINE STABILIZED 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2335326\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) CSB (BHN BAKU KOSMETIK) COA 01/22GL4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40 BRIX) CSB (BHN BAKU KOSMETIK) COA 01/22GL4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) ECH (BHN BAKU KOSMETIK) COA 01/22GL4, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40 BRIX) ECH (BHN BAKU KOSMETIK) COA 01/22GL4, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE (R) MONOGRAMMING INK S-1-180000 WHITE (BHN BAKU PEWARNA TABLET) COA WP867034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPACODE (R) MONOGRAMMING INK S-1-180000 WHITE (BHN BAKU PEWARNA TABLET) COA WP867034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-28849...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-28849...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARTAB (R) DIRECTLY COMPRESSIBLE STARCH 4001 (BHN BAKU PEWARNA TABLET) COA WP864467\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARTAB (R) DIRECTLY COMPRESSIBLE STARCH 4001 (BHN BAKU PEWARNA TABLET) COA WP864467\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARTAB (R) DIRECTLY COMPRESSIBLE STARCH 4001 (BHN BAKU PEWARNA TABLET) COA WP865752\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"STARTAB (R) DIRECTLY COMPRESSIBLE STARCH 4001 (BHN BAKU PEWARNA TABLET) COA WP865752\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C YELLOW 6/SUNSET...(BHN BAKU PEWARNA TABLET) COA WP855961:BB6473\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5287 FD&C YELLOW 6/SUNSET...(BHN BAKU PEWARNA TABLET) COA WP855961:BB6473\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5177 FD&C YELLOW 5/TARTRAZ...(BHN BAKU PEWARNA TABLET) COA WP852907:BB3944\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5177 FD&C YELLOW 5/TARTRAZ...(BHN BAKU PEWARNA TABLET) COA WP852907:BB3944\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5396 ERYTHROSINE ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP860977:1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5396 ERYTHROSINE ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP860977:1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5406 FD&C RED 40/ALLURA RE...(BHN BAKU PEWARNA TABLET) COA WP851879:BB3365\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5406 FD&C RED 40/ALLURA RE...(BHN BAKU PEWARNA TABLET) COA WP851879:BB3365\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5627 FD&C BLUE 2/INDIGO CA...(BHN BAKU PEWARNA TABLET) COA WP862708:BB9467\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5627 FD&C BLUE 2/INDIGO CA...(BHN BAKU PEWARNA TABLET) COA WP862708:BB9467\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA G00361UG\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA G00361UG\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL ISOVITALEX ENRICHMENT 10ML 5 EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2349228\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL ISOVITALEX ENRICHMENT 10ML 5 EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2349228\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2111967\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2111967\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2244735\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2244735\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1344136\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1344136\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2322505\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2322505\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOBACILLLI MRS BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2315617\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOBACILLLI MRS BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2315617\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2326948\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2326948\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2132015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2132015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP A (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2342259\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL N MENINGITIDIS ANTISERUM GRP A (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2342259\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP C (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2224441\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL N MENINGITIDIS ANTISERUM GRP C (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2224441\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEMOGLOBIN SOL 2PCT 100ML 10EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2179007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEMOGLOBIN SOL 2PCT 100ML 10EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2179007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPLLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2264446\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MYCOPLASMA SUPLLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2264446\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEMOGLOBIN SOL 2PCT 100ML 10EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2179007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEMOGLOBIN SOL 2PCT 100ML 10EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2179007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP A (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2342259\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL N MENINGITIDIS ANTISERUM GRP A (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2342259\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL PENICILLINASE 10000000 KU/ML 1EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2354356\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL PENICILLINASE 10000000 KU/ML 1EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2354356\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP A (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2342259\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL N MENINGITIDIS ANTISERUM GRP A (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2342259\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH...(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2104103,3033582\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH...(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2104103,3033582\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP A (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2342259\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL N MENINGITIDIS ANTISERUM GRP A (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2342259\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA237227,ROA200227 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA237227,ROA200227 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100MESH (BHN BAKU SUPLEMEN) COA 6AX2302022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS BP2009/E330 30-100MESH (BHN BAKU SUPLEMEN) COA 6AX2302022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIVE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OLIVE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220803 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220803 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-220602 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-220602 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WITCH HAZEL ORGANIC DISTILLATE 1:10 (SB) (BHN BAKU KOSMETIK) CAS 84696-19-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"WITCH HAZEL ORGANIC DISTILLATE 1:10 (SB) (BHN BAKU KOSMETIK) CAS 84696-19-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRAPE SEED ORGANIC OIL C00031 (BHN BAKU KOSMETIK) CAS 8024-22-4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GRAPE SEED ORGANIC OIL C00031 (BHN BAKU KOSMETIK) CAS 8024-22-4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIENOGEST MICRONIZED (BHN BAKU OBAT) COA NC2093M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372300\", \"uraian\": \"DIENOGEST MICRONIZED (BHN BAKU OBAT) COA NC2093M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100MESH (BHN BAKU SUPLEMEN) COA 2AX2302014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS BP2009/E330 30-100MESH (BHN BAKU SUPLEMEN) COA 2AX2302014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) CAS 1119-97-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CETRIMIDE (BHN BAKU KOSMETIK) CAS 1119-97-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILVERION 2400 (BHN BAKU KOSMETIK) CAS 77-92-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILVERION 2400 (BHN BAKU KOSMETIK) CAS 77-92-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYPROHEPTADINE HCL BP/PH. EUR. (BHN BAKU OBAT) COA CYP/02231004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"CYPROHEPTADINE HCL BP/PH. EUR. (BHN BAKU OBAT) COA CYP/02231004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLCOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/0123001 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"METHYLCOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/0123001 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBNB230058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBNB230058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GRAM SAFRANIN 250ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2215284\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GRAM SAFRANIN 250ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2215284\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS GLUCONATE FINE GRAN.... (BHN BAKU SUPPLEMEN) COA 3127778 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"FERROUS GLUCONATE FINE GRAN.... (BHN BAKU SUPPLEMEN) COA 3127778 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPPLEMEN) COA WB22080772 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPPLEMEN) COA WB22080772 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O600001...(BHN BAKU PEWARNA TABLET) COA GA726673\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O600001...(BHN BAKU PEWARNA TABLET) COA GA726673\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03F82532...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03F82532...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 20C59060...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 20C59060...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA727133\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA727133\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007...(BHN BAKU PEWARNA TABLET) COA GA726673\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007...(BHN BAKU PEWARNA TABLET) COA GA726673\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 88A520024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 88A520024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHAMBUTOL (BHN BAKU OBAT) COA N3131826 S/D N3131829,N3133401 S/D N3133406\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221910\", \"uraian\": \"ETHAMBUTOL (BHN BAKU OBAT) COA N3131826 S/D N3131829,N3133401 S/D N3133406\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334873,B334867,B334875\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX POWDER (BHN BAKU OBAT) COA B334873,B334867,B334875\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464288167\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464288167\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464186395\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464186395\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464207195\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464207195\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180L8N001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180L8N001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2444185823\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2444185823\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for APIFILCAR (BHN BAKU SUPPLEMEN) COA 190714\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"APIFILCAR (BHN BAKU SUPPLEMEN) COA 190714\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CETYL PALMITATE PELLETSCAR (BHN BAKU SUPPLEMEN) COA 192063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"CETYL PALMITATE PELLETSCAR (BHN BAKU SUPPLEMEN) COA 192063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRECIROL ATO 5 (BHN BAKU SUPPLEMEN) COA 193319\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"PRECIROL ATO 5 (BHN BAKU SUPPLEMEN) COA 193319\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRECIFAC 95-3 (BHN BAKU SUPPLEMEN) COA 192853\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"PRECIFAC 95-3 (BHN BAKU SUPPLEMEN) COA 192853\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LABRASOL BF (BHN BAKU SUPPLEMEN) COA 191345\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LABRASOL BF (BHN BAKU SUPPLEMEN) COA 191345\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS GLUCONATE FINE GRAN.... (BHN BAKU SUPPLEMEN) COA 3127778 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"FERROUS GLUCONATE FINE GRAN.... (BHN BAKU SUPPLEMEN) COA 3127778 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL (R) HS(BHN BAKU KOSMETIK) COA HS1150622,HS1160622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL (R) HS(BHN BAKU KOSMETIK) COA HS1150622,HS1160622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02202018,UE02202019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02202018,UE02202019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02202019,UE02210027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02202019,UE02210027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0722010083\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHS (BHN BAKU KOSMETIK) COA 0722010083\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000208205,00002082056 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000208205,00002082056 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22100325 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22100325 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02109811,TL02112813 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02109811,TL02112813 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL ZX (BHN BAKU KOSMETIK) COA 200206012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL ZX (BHN BAKU KOSMETIK) COA 200206012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02202009 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02202009 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020001,0923020002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020001,0923020002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT22100092 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT22100092 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT22060028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT22060028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02208069,TL02209090\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02208069,TL02209090\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT22100033\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT22100033\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT22061192\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT22061192\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12211009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12211009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 22S0329502 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 22S0329502 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU KOSMETIK) COA 21S0191800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"CENTELLA ASIATICA TRITERPENES (BHN BAKU KOSMETIK) COA 21S0191800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 21S0191800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 21S0191800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VACCINIUM MYRTILLUS DRY EX. (BHN BAKU SUPLEMEN) COA 21S0314800 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VACCINIUM MYRTILLUS DRY EX. (BHN BAKU SUPLEMEN) COA 21S0314800 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISOLONE USP2022 (BHN BAKU OBAT) COA XPL221002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISOLONE USP2022 (BHN BAKU OBAT) COA XPL221002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISOLONE (BHN BAKU OBAT) COA XPL221002, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISOLONE (BHN BAKU OBAT) COA XPL221002, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2270988\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2270988\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2417191\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2417191\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2448264\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2448264\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2173480\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2173480\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0335766\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0335766\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1110920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1110920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2031316\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2031316\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2031316\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2031316\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2031316\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2031316\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD SUPREME FPM 500GR EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2558581\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD SUPREME FPM 500GR EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2558581\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2094434\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2094434\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRASIL DM350 A2 (BHN BAKU KOSMETIK) COA 2307WKW215\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100090\", \"uraian\": \"MIRASIL DM350 A2 (BHN BAKU KOSMETIK) COA 2307WKW215\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE S-1-11068 GREEN (BHN BAKU PEWARNA TABLET) COA TKL67128,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPACODE S-1-11068 GREEN (BHN BAKU PEWARNA TABLET) COA TKL67128,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SYN(R)-AKE (BHN BAKU KOSMETIK) COA UE02210016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SYN(R)-AKE (BHN BAKU KOSMETIK) COA UE02210016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GENIVIDA(TM) TG (BHN BAKU SUPPLEMEN) COA UT21100004 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329900\", \"uraian\": \"GENIVIDA(TM) TG (BHN BAKU SUPPLEMEN) COA UT21100004 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GENIVIDA(TM) TG (BHN BAKU SUPPLEMEN) COA UT21100004 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329900\", \"uraian\": \"GENIVIDA(TM) TG (BHN BAKU SUPPLEMEN) COA UT21100004 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPPLEMEN) COA TL02301182\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPPLEMEN) COA TL02301182\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22110029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22110029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT22120029 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT22120029 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHTHALAVIN (R) ENTERIC COATING POLYMER 2138 CLEAR (BHN BAKU PEWARNA TABLET) COA WP865541\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PHTHALAVIN (R) ENTERIC COATING POLYMER 2138 CLEAR (BHN BAKU PEWARNA TABLET) COA WP865541\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C YELLOW 6/SUNSET... (BHN BAKU PEWARNA TABLET) COA WP831240:BA3592\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5287 FD&C YELLOW 6/SUNSET... (BHN BAKU PEWARNA TABLET) COA WP831240:BA3592\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT (R) 6010 D&C YELLOW 10... (BHN BAKU PEWARNA TABLET) COA WP853308:BB4662\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT (R) 6010 D&C YELLOW 10... (BHN BAKU PEWARNA TABLET) COA WP853308:BB4662\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT (R) 6010 D&C YELLOW 10.. (BHN BAKU PEWARNA TABLET) COA WP864266:BC1291\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT (R) 6010 D&C YELLOW 10.. (BHN BAKU PEWARNA TABLET) COA WP864266:BC1291\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C YELLOW 6/...(BHN BAKU PEWARNA TABLET) COA WP862652:BC0373\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5287 FD&C YELLOW 6/...(BHN BAKU PEWARNA TABLET) COA WP862652:BC0373\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5517 FD&C BLUE 1/...(BHN BAKU PEWARNA TABLET) COA WP855129:BB5151\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5517 FD&C BLUE 1/...(BHN BAKU PEWARNA TABLET) COA WP855129:BB5151\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COPPER(II) GLUCONATE, FINE POWDER, USP 43 (BHN BAKU SUPPLEMEN) COA 3126579 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"COPPER(II) GLUCONATE, FINE POWDER, USP 43 (BHN BAKU SUPPLEMEN) COA 3126579 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COPPER(II) GLUCONATE, FINE POWDER, USP 43 (BHN BAKU SUPPLEMEN) COA 3112568 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"COPPER(II) GLUCONATE, FINE POWDER, USP 43 (BHN BAKU SUPPLEMEN) COA 3112568 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAPIOKA STARCH NATURAL 25KG BAG (BHN BAKU KOSMETIK) CAS 9005-25-8\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"TAPIOKA STARCH NATURAL 25KG BAG (BHN BAKU KOSMETIK) CAS 9005-25-8\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEARL ESSENCES 35178MJ (BHN BAKU KOSMETIK) COA D3080428\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32061910\", \"uraian\": \"PEARL ESSENCES 35178MJ (BHN BAKU KOSMETIK) COA D3080428\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02210438\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02210438\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ20916090,UQ20916091 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ20916090,UQ20916091 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIN PREMIX LTP 6-12 MONTHS (BHN BAKU MAKANAN) COA XW92302320 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"MIN PREMIX LTP 6-12 MONTHS (BHN BAKU MAKANAN) COA XW92302320 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIN PREMIX LTP 1-3 YEARS (BHN BAKU MAKANAN) COA XW92302319 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"MIN PREMIX LTP 1-3 YEARS (BHN BAKU MAKANAN) COA XW92302319 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHOLINE CA FE PREMIX LTP MATERNAL (BHN BAKU MAKANAN) COA XW92302321 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"CHOLINE CA FE PREMIX LTP MATERNAL (BHN BAKU MAKANAN) COA XW92302321 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT22061192\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT22061192\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL02207948,TL02208199\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU MAKANAN) COA TL02207948,TL02208199\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN MINERAL PREMIX - JELLY POWDER V2 (BHN BAKU MAKANAN) COA XW92302315 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN MINERAL PREMIX - JELLY POWDER V2 (BHN BAKU MAKANAN) COA XW92302315 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT22070164,UT22070165\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT22070164,UT22070165\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT MIN PREMIX LTP 6-12 MONTHS (BHN BAKU MAKANAN) COA XW92302318 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VIT MIN PREMIX LTP 6-12 MONTHS (BHN BAKU MAKANAN) COA XW92302318 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT MIN PREMIX LTP 1-3 YEARS (BHN BAKU MAKANAN) COA XW92302316 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VIT MIN PREMIX LTP 1-3 YEARS (BHN BAKU MAKANAN) COA XW92302316 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT MIN PREMIX LTP MATERNAL (BHN BAKU MAKANAN) COA XW92302317 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VIT MIN PREMIX LTP MATERNAL (BHN BAKU MAKANAN) COA XW92302317 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ20912328\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ20912328\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000209967,0000209968\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000209967,0000209968\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL02209090\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU MAKANAN) COA TL02209090\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT22060028 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT22060028 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02208069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02208069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12211021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12211021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ21013603\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ21013603\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ20912354\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ20912354\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00798962\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"AMPHISOL K (BHN BAKU KOSMETIK) COA VE00798962\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00798962,VE00798963\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"AMPHISOL K (BHN BAKU KOSMETIK) COA VE00798962,VE00798963\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-PANTHENOL 50 L (BHN BAKU KOSMETIK) COA TL02211634 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL-PANTHENOL 50 L (BHN BAKU KOSMETIK) COA TL02211634 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000208206,0000208207 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000208206,0000208207 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02205054,TL02209090\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02205054,TL02209090\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02209079\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02209079\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00798963\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"AMPHISOL K (BHN BAKU KOSMETIK) COA VE00798963\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB240123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB240123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B120123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B120123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B120123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B120123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 060522\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25070000\", \"uraian\": \"KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 060522\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-230202 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-230202 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMLODIPINE BESILATE BP/EP (BHN BAKU OBAT) COA AMB/004/02/23, AMB/005/02/23\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"AMLODIPINE BESILATE BP/EP (BHN BAKU OBAT) COA AMB/004/02/23, AMB/005/02/23\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OMEPRAZOLE PELLETS 8,5PCT W/W (BHN BAKU OBAT) COA OP-1845 02 23 S/D OP-1850 02 23\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"OMEPRAZOLE PELLETS 8,5PCT W/W (BHN BAKU OBAT) COA OP-1845 02 23 S/D OP-1850 02 23\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GUAIFENESIN USP 43 (B. BAKU OBAT) COA GGE-2301004 S/D GGE-2302017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29094900\", \"uraian\": \"GUAIFENESIN USP 43 (B. BAKU OBAT) COA GGE-2301004 S/D GGE-2302017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VACCINIUM MYRTILLUS DRY EX. (BHN BAKU SUPLEMEN) COA 21S0314800 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VACCINIUM MYRTILLUS DRY EX. (BHN BAKU SUPLEMEN) COA 21S0314800 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU KOSMETIK) COA 22S0183200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"CENTELLA ASIATICA TRITERPENES (BHN BAKU KOSMETIK) COA 22S0183200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA/PHOSPHOLIPID (BHN BAKU KOSMETIK) COA 22S0097300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"CENTELLA ASIATICA/PHOSPHOLIPID (BHN BAKU KOSMETIK) COA 22S0097300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23B0001600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23B0001600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23B0001700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23B0001700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23B0001800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23B0001800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22050071 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22050071 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACB FRUIT MIX OR (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02301582 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02301582 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02301582,TL02302583 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02301582,TL02302583 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SYN(R)-AKE (BHN BAKU KOSMETIK) COA UE02210014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SYN(R)-AKE (BHN BAKU KOSMETIK) COA UE02210014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-54HV (18KG) (BHN BAKU KOSMETIK) CAS 68083-14-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-54HV (18KG) (BHN BAKU KOSMETIK) CAS 68083-14-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) CAS 68937-54-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6017 (17KG) (BHN BAKU KOSMETIK) CAS 68937-54-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KP-561P (16KG) (BHN BAKU KOSMETIK) CAS 329236-76-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KP-561P (16KG) (BHN BAKU KOSMETIK) CAS 329236-76-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-210 (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSG-210 (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-710 (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSG-710 (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ISOFLAVONES 150 BDF (BHN BAKU KOSMETIK) CAS 84776-91-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ISOFLAVONES 150 BDF (BHN BAKU KOSMETIK) CAS 84776-91-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) CAS 8002-43-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AMISOL TRIO TM (BHN BAKU KOSMETIK) CAS 8002-43-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT TM 09 (BHN BAKU KOSMETIK) COA 784011715P (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"TYROSTAT TM 09 (BHN BAKU KOSMETIK) COA 784011715P (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE TM PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ABYSSINE TM PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE TM PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ABYSSINE TM PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILIGEL TM (BHN BAKU KOSMETIK) CAS 11138-66-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILIGEL TM (BHN BAKU KOSMETIK) CAS 11138-66-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANACHRYS 2B PF (PRESERVATIVE- (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LANACHRYS 2B PF (PRESERVATIVE- (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784021665N (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784021665N (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829011551N (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"B-WHITE TM (BHN BAKU KOSMETIK) COA 829011551N (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID PPL-600 (BHN BAKU SUPPLEMEN) COA 577200-2220234 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232011\", \"uraian\": \"LIPOID PPL-600 (BHN BAKU SUPPLEMEN) COA 577200-2220234 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG230224 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG230224 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN E (BHN BAKU KOSMETIK) COA 201202301207 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"VITAMIN E (BHN BAKU KOSMETIK) COA 201202301207 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM...(BHN BAKU MAKANAN) COA ROA239223,ROA203226,ROA245224,...(POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM...(BHN BAKU MAKANAN) COA ROA239223,ROA203226,ROA245224,...(POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT PREMIX FOR CHEESE BLOCK CHEDDAR (BHN BAKU MAKANAN) COA XW92302188 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VIT PREMIX FOR CHEESE BLOCK CHEDDAR (BHN BAKU MAKANAN) COA XW92302188 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02210027,UE02210029 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02210027,UE02210029 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060101,0522060103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060101,0522060103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02210029 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02210029 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC CALCIUM ASCORBATE DC (BHN BAKU SUPPLEMEN) COA HPT2302021 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC CALCIUM ASCORBATE DC (BHN BAKU SUPPLEMEN) COA HPT2302021 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC CALCIUM ASCORBATE DC (BHN BAKU SUPPLEMEN) COA HPT2302021 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC CALCIUM ASCORBATE DC (BHN BAKU SUPPLEMEN) COA HPT2302021 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) CAS 1332-09-8\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) CAS 1332-09-8\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SORBITOL SOLUTION 70 PCT CRYSTALLINE (BHN BAKU KOSMETIK) COA 2223P707\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054400\", \"uraian\": \"SORBITOL SOLUTION 70 PCT CRYSTALLINE (BHN BAKU KOSMETIK) COA 2223P707\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT MAGNESIUM CARBONATE POWDER, BP 2021 (BHN BAKU MAKANAN) COA 3121984-02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28369990\", \"uraian\": \"LIGHT MAGNESIUM CARBONATE POWDER, BP 2021 (BHN BAKU MAKANAN) COA 3121984-02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS SULFATE, DRIED, POWDER, USP43 (BHN BAKU SUPPLEMEN) COA 3116763\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"FERROUS SULFATE, DRIED, POWDER, USP43 (BHN BAKU SUPPLEMEN) COA 3116763\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIPOTASSIUM PHOSPHATE POWDER (BHN BAKU MAKANAN) COA 3124916\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28352400\", \"uraian\": \"DIPOTASSIUM PHOSPHATE POWDER (BHN BAKU MAKANAN) COA 3124916\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POTASSIUM L-ASPARTATE 0,5-HYDRATE (BHN BAKU SUPPLEMEN) COA 3097137\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"POTASSIUM L-ASPARTATE 0,5-HYDRATE (BHN BAKU SUPPLEMEN) COA 3097137\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRICALCIUM CITRATE 4-HYDRATE POWDER (BHN BAKU OBAT) COA 3127724\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181590\", \"uraian\": \"TRICALCIUM CITRATE 4-HYDRATE POWDER (BHN BAKU OBAT) COA 3127724\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS LACTATE 2-HYDRATE, POWDER (BHN BAKU MAKANAN) COA 3122394\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181200\", \"uraian\": \"FERROUS LACTATE 2-HYDRATE, POWDER (BHN BAKU MAKANAN) COA 3122394\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS GLUCONATE, POWDER, USP 43 (BHN BAKU SUPPLEMEN) COA 3127991\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"FERROUS GLUCONATE, POWDER, USP 43 (BHN BAKU SUPPLEMEN) COA 3127991\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN549332\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN549332\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN549333\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN549333\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN549335\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN549335\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN549334\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN549334\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEARL ESSENCES 35178MJ (BHN BAKU KOSMETIK) COA D3080428\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32061910\", \"uraian\": \"PEARL ESSENCES 35178MJ (BHN BAKU KOSMETIK) COA D3080428\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-042033 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-042033 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-012023 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-012023 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-012723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-012723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP2230227\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP2230227\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIOCTP-500 (BHN BAKU KOSMETIK) COA BOPN-052822 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND BIOCTP-500 (BHN BAKU KOSMETIK) COA BOPN-052822 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (B) (BHN BAKU KOSMETIK) COA AMIBD-022513 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"HYUNDAI BIOLAND AMINO ACID COMPLEX (B) (BHN BAKU KOSMETIK) COA AMIBD-022513 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-012023,062122 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-012023,062122 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-042033 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-042033 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1230309\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1230309\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-070522 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-070522 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N28115\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N28115\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-012723,070122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-012723,070122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NC1457M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NC1457M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-005-Z (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-005-Z (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOWSIL 9041 SIL ELAST BLEND (BHN BAKU KOSMETIK) COA H052M9F033\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100020\", \"uraian\": \"DOWSIL 9041 SIL ELAST BLEND (BHN BAKU KOSMETIK) COA H052M9F033\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA DRY VITAMIN A ACETATE 325 CWS/A\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA DRY VITAMIN A ACETATE 325 CWS/A\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20221003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20221003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20221003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20221003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPPLEMEN) COA WB22080772\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPPLEMEN) COA WB22080772\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU SUPPLEMEN) COA 102369001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU SUPPLEMEN) COA 102369001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPECWHITE VCE (BHN BAKU KOSMETIK) COA 20221105,20230203 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SPECWHITE VCE (BHN BAKU KOSMETIK) COA 20221105,20230203 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GF-B331 (BHN BAKU KOSMETIK) COA 20230224001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051090\", \"uraian\": \"GF-B331 (BHN BAKU KOSMETIK) COA 20230224001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOPAMINE HCL (BHN BAKU OBAT) COA 23100084\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29222900\", \"uraian\": \"DOPAMINE HCL (BHN BAKU OBAT) COA 23100084\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 23100075\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 23100075\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 23100076\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 23100076\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 23100076\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 23100076\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-0740323\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334910\", \"uraian\": \"DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-0740323\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWDER... (B.BAKU KOSMETIK) CAS 65497-29-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GUAR GUM TREATED AND PULVERISED IN POWDER... (B.BAKU KOSMETIK) CAS 65497-29-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID MONOHYDRATE (CAM) GRANULAR 8-40 MESH E330 (BHN BAKU KOSMETIK) COA 6MT2212013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID MONOHYDRATE (CAM) GRANULAR 8-40 MESH E330 (BHN BAKU KOSMETIK) COA 6MT2212013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323020044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323020044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ20912328,UQ20912329\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ20912328,UQ20912329\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MINERAL PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92302150,XW92302151\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"MINERAL PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92302150,XW92302151\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ21210857 (POST BORDER\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ21210857 (POST BORDER\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2201009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2201009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT22061192(POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT22061192(POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ21210857 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ21210857 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92302149 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92302149 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT-MIN PEDIATRIC NUTRITION PREMIX 1 (BHN BAKU MAKANAN) COA XW92303002 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VIT-MIN PEDIATRIC NUTRITION PREMIX 1 (BHN BAKU MAKANAN) COA XW92303002 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT-MIN PEDIATRIC NUTRITION PREMIX 2 (BHN BAKU MAKANAN) COA XW92303003 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VIT-MIN PEDIATRIC NUTRITION PREMIX 2 (BHN BAKU MAKANAN) COA XW92303003 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ21210857 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ21210857 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT22080166 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT22080166 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02210029,UE02211038 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02210029,UE02211038 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211038,UE02211041 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211038,UE02211041 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92302152\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92302152\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES2209782\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"ALLANTOIN (BHN BAKU KOSMETIK) COA ES2209782\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPPLEMEN) COA UT22090037 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPPLEMEN) COA UT22090037 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22060063 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22060063 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS GLUCONATE HYDRATE, POWDER... (BHN BAKU SUPPLEMEN) COA 3123925 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"FERROUS GLUCONATE HYDRATE, POWDER... (BHN BAKU SUPPLEMEN) COA 3123925 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA728050\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA728050\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O665000...(BHN BAKU PEWARNA TABLET) COA GA728052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O665000...(BHN BAKU PEWARNA TABLET) COA GA728052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86512...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86512...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007...(BHN BAKU PEWARNA TABLET) COA GA728054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007...(BHN BAKU PEWARNA TABLET) COA GA728054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86674...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86674...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 02F52182...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 02F52182...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A62337...(BHN BAKU PEWARNA TABLET) COA GA728264\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A62337...(BHN BAKU PEWARNA TABLET) COA GA728264\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) KB LOW VISCOSITY FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 151-21-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) KB LOW VISCOSITY FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 151-21-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86674...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86674...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G54002...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G54002...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA727607\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA727607\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA727607\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA727607\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B82443...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03B82443...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) CAS 638164-47-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROTESIL LH (BHN BAKU KOSMETIK) CAS 638164-47-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS SILK-1000 (BHN BAKU KOSMETIK) CAS 96690-41-4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS SILK-1000 (BHN BAKU KOSMETIK) CAS 96690-41-4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMITOSE HGA (BHN BAKU KOSMETIK) COA LAA (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"AMITOSE HGA (BHN BAKU KOSMETIK) COA LAA (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLOWLAC (R) 100 (BHN BAKU OBAT) COA L101500823\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"FLOWLAC (R) 100 (BHN BAKU OBAT) COA L101500823\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104310523\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104310523\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103860823\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103860823\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPSULAC (R) 60 (BHN BAKU OBAT) COA L100410423\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"CAPSULAC (R) 60 (BHN BAKU OBAT) COA L100410423\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103154322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103154322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 222516 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"IZAYOI (BHN BAKU KOSMETIK) COA 222516 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 230453\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329900\", \"uraian\": \"K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 230453\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 221275 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 221275 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 222274 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ABSORAGE (BHN BAKU KOSMETIK) COA 222274 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNEBUSTERS (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 222516 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"IZAYOI (BHN BAKU KOSMETIK) COA 222516 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIO-PGA SOLUTION HB (BHN BAKU KOSMETIK) COA 222624\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"BIO-PGA SOLUTION HB (BHN BAKU KOSMETIK) COA 222624\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONO CHARDY (BHN BAKU KOSMETIK) COA 222667 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"CHRONO CHARDY (BHN BAKU KOSMETIK) COA 222667 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 221252 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 221252 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GABAPENTIN (USP) (BHN BAKU OBAT) COA CGBU230112\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"GABAPENTIN (USP) (BHN BAKU OBAT) COA CGBU230112\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BUDESONIDE MICRONIZED (BHN BAKU OBAT) COA NB3038M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"BUDESONIDE MICRONIZED (BHN BAKU OBAT) COA NB3038M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DESONIDE MICRONIZED (BHN BAKU OBAT) COA NC3328M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"DESONIDE MICRONIZED (BHN BAKU OBAT) COA NC3328M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE USP (BAHAN BAKU OBAT) COA ASG/03/020323\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE USP (BAHAN BAKU OBAT) COA ASG/03/020323\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CROSCARMELLOSE SODIUM USP-NF (BHN BAKU OBAT) COA ACRMC/03/020323 S/D 060323\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39129090\", \"uraian\": \"CROSCARMELLOSE SODIUM USP-NF (BHN BAKU OBAT) COA ACRMC/03/020323 S/D 060323\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/03/020323\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123100\", \"uraian\": \"CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/03/020323\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE BP (BAHAN BAKU OBAT) COA ASGP/02/190223,ASGP/02/050223\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE BP (BAHAN BAKU OBAT) COA ASGP/02/190223,ASGP/02/050223\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE USP (BAHAN BAKU OBAT) COA ASG/03/030323,040323,040323-1,050323,050323-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE USP (BAHAN BAKU OBAT) COA ASG/03/030323,040323,040323-1,050323,050323-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WORLEE ALOE PURE BALANCE IF 200X FD (BAHAN BAKU KOSMETIK) COA 512251 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"WORLEE ALOE PURE BALANCE IF 200X FD (BAHAN BAKU KOSMETIK) COA 512251 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPAGLOS 6000 WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET) COA DT736523,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPAGLOS 6000 WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET) COA DT736523,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT22090105 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A ACETATE 1.5 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT22090105 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22110028 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22110028 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02209078 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02209078 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22070048 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22070048 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22110028 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22110028 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22110029 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22110029 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT22120006 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT22120006 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02209079,UE02209080 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02209079,UE02209080 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22060047 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22060047 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT22111211 S/D UT22111213 (POST BOR\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT22111211 S/D UT22111213 (POST BOR\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22070048 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22070048 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ30110523,UQ30110524\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ30110523,UQ30110524\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT22111213,UT22111214\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT22111213,UT22111214\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT22090027 S/D UT22110029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT22090027 S/D UT22110029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU MAKANAN) COA UT22100026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU MAKANAN) COA UT22100026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT22120029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT22120029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT22120029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT22120029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPPLEMEN) COA UT23010007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU SUPPLEMEN) COA UT23010007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202405,122202406\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202405,122202406\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLOBETASOL PROPIONATE USP MICRONISED (BHN BAKU OBAT) COA APL/CLP/01054/B-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"CLOBETASOL PROPIONATE USP MICRONISED (BHN BAKU OBAT) COA APL/CLP/01054/B-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 23100120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29395900\", \"uraian\": \"DIMENHYDRINATE (BHN BAKU OBAT) COA 23100120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 23100121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29395900\", \"uraian\": \"DIMENHYDRINATE (BHN BAKU OBAT) COA 23100121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS FUMARATE (BHN BAKU OBAT) COA 2023/33\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"FERROUS FUMARATE (BHN BAKU OBAT) COA 2023/33\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA LC002-23-801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 200 (BHN BAKU OBAT) COA LC002-23-801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DURALAC H (BHN BAKU OBAT) COA LC045-22-805\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"DURALAC H (BHN BAKU OBAT) COA LC045-22-805\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT KIWI CSB (BHN BAKU KOSMETIK) COA 02/19GAAK\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT KIWI CSB (BHN BAKU KOSMETIK) COA 02/19GAAK\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT KIWI ECH (BHN BAKU KOSMETIK) COA 02/19GAAK, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT KIWI ECH (BHN BAKU KOSMETIK) COA 02/19GAAK, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO BP (BHN BAKU KOSMETIK) COA 192311\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"VEGETOL GRAPEFRUIT GR403 HYDRO BP (BHN BAKU KOSMETIK) COA 192311\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CORTISONE ACETATE MICRONISED PH.EUR JP (BHN BAKU SUPPLEMEN) COA 2301060512\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"CORTISONE ACETATE MICRONISED PH.EUR JP (BHN BAKU SUPPLEMEN) COA 2301060512\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2530323\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2530323\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA B100400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA B100400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTAZIDIME BUFFERED (BHN BAKU OBAT) COA B20070M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTAZIDIME BUFFERED (BHN BAKU OBAT) COA B20070M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG230303 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG230303 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-GLUTAMIC ACID (FCC GRADE) PURITY... (BHN BAKU MAKANAN) COA 1000104173/230327 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"L-GLUTAMIC ACID (FCC GRADE) PURITY... (BHN BAKU MAKANAN) COA 1000104173/230327 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPPLEMEN) COA TL02301358 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPPLEMEN) COA TL02301358 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT22120030 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT22120030 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT22100036 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT22100036 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 3072748\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 3072748\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 3172748\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 3172748\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2269098\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2269098\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2228563\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2228563\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2339387\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2339387\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MR-VP MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3045918\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MR-VP MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3045918\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2104098\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2104098\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2228563\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2228563\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2143804\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2143804\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2143687\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2143687\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2066423\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2066423\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 2034966\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 2034966\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2188691\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2188691\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2313348\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2313348\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2207189\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2207189\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2123842\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2123842\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2047633\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2047633\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2103834\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2103834\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2235469\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2235469\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1264670,..\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1264670,..\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2158081\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2158081\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2269093\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2269093\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MOTILITY TEST MEDIUM BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2067250\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MOTILITY TEST MEDIUM BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2067250\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2096996\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2096996\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYP AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 220803\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MYP AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 220803\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1292710\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1292710\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M TGE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2201315\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M TGE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2201315\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB PLUS AMLES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 221603900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CULTURESWAB PLUS AMLES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 221603900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2208003,2231719,.\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2208003,2231719,.\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIAMI SCG(S) (BHN BAKU KOSMETIK) COA MWC2300431\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34023990\", \"uraian\": \"MIAMI SCG(S) (BHN BAKU KOSMETIK) COA MWC2300431\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2139402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2139402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3032477\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3032477\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3032477\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3032477\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYTOFIX/CYTOPERM SOLN KIT (MEDIA TUK PENGEMBANGAN MIKRO ORGANISME) BATCH 2242794,2242817\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CYTOFIX/CYTOPERM SOLN KIT (MEDIA TUK PENGEMBANGAN MIKRO ORGANISME) BATCH 2242794,2242817\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2139402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2139402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2300555\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2300555\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2060591\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2060591\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTISERUM C 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1140112\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL H ANTISERUM C 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1140112\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SHIGELLA ANTIS POLY A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2125067\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SHIGELLA ANTIS POLY A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2125067\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2322505\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2322505\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL E COLI O ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2125078\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL E COLI O ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2125078\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL TTC SOLUTION 1 PCT 1X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2363660\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL TTC SOLUTION 1 PCT 1X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2363660\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2244351\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2244351\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP W135 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1092251\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL N MENINGITIDIS ANTISERUM GRP W135 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1092251\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNOBEL HMS (HOMOSALATE(OTC)) (BHN BAKU KOSMETIK) COA 0423040028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29182300\", \"uraian\": \"SUNOBEL HMS (HOMOSALATE(OTC)) (BHN BAKU KOSMETIK) COA 0423040028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNOBEL OS (OCTYL SALICYLATE(OTC)) (BHN BAKU KOSMETIK) COA 0723010019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29182300\", \"uraian\": \"SUNOBEL OS (OCTYL SALICYLATE(OTC)) (BHN BAKU KOSMETIK) COA 0723010019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323020044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323020044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P1G27QA000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL TX (BHN BAKU KOSMETIK) COA P1G27QA000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001677950\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SLX (BHN BAKU KOSMETIK) COA 0001677950\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323020044,0323020046,0323020047\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323020044,0323020046,0323020047\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010524,0822010525\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010524,0822010525\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02206017 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE02206017 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22060202 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22060202 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02206017 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE02206017 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES2209782\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"ALLANTOIN (BHN BAKU KOSMETIK) COA ES2209782\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22060202,UT23010001 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22060202,UT23010001 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC220713\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC220713\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02206015 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE02206015 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22060063 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22060063 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22060063 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22060063 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW92303092,XW92303093 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 C (BHN BAKU MAKANAN) COA XW92303092,XW92303093 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP12211021 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU KOSMETIK) COA OP12211021 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000209474,0000209599 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000209474,0000209599 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211041 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211041 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02112813 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02112813 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX FOR MARGARINE MY15-0027 (BHN BAKU MAKANAN) COA MY62303210 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX FOR MARGARINE MY15-0027 (BHN BAKU MAKANAN) COA MY62303210 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NABUMETONE USP (BAHAN BAKU OBAT) COA H-2501222\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29145000\", \"uraian\": \"NABUMETONE USP (BAHAN BAKU OBAT) COA H-2501222\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INCA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK) CAS 68956-68-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"INCA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK) CAS 68956-68-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SEABUCKTHRON HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HIR220801-B (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SEABUCKTHRON HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HIR220801-B (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220803 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220803 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIE220602 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIE220602 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) CAS 8001-25-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) CAS 8001-25-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP03023 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP03023 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP01423 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP01423 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM.. (BHN BAKU SUPPLEMEN) COA MTP03123,... , SAMPLE..., (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM.. (BHN BAKU SUPPLEMEN) COA MTP03123,... , SAMPLE..., (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID PPL-600 (BHN BAKU SUPPLEMEN) COA 577200-2230235 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232011\", \"uraian\": \"LIPOID PPL-600 (BHN BAKU SUPPLEMEN) COA 577200-2230235 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP23034137 S/D XP23034140\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP23034137 S/D XP23034140\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2032032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2032032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2270988\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2270988\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1341564\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1341564\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2441197\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2441197\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1110920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1110920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1110920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1110920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINC GLUCONATE POWDER USP 43 (BHN BAKU OBAT) COA 3131555 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"ZINC GLUCONATE POWDER USP 43 (BHN BAKU OBAT) COA 3131555 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 80 CAN 10KG (BHN BAKU KOSMETIK) CAS 1117-86-8\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 80 CAN 10KG (BHN BAKU KOSMETIK) CAS 1117-86-8\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 712 CAN 10 KG (BHN BAKU KOSMETIK) CAS 65-85-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 712 CAN 10 KG (BHN BAKU KOSMETIK) CAS 65-85-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 903 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 903 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) CAS 122-99-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) CAS 122-99-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 10 CAN 10 KG (BHN BAKU KOSMETIK) CAS 1117-86-8\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 10 CAN 10 KG (BHN BAKU KOSMETIK) CAS 1117-86-8\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE USP (NIACINAMIDE USP/EP) (BHN BAKU KOSMETIK)COA 22-23/NMD[P]/00366 S/D 00373\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE USP (NIACINAMIDE USP/EP) (BHN BAKU KOSMETIK)COA 22-23/NMD[P]/00366 S/D 00373\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SETACIN 103/SPEZIAL OR NP - RSPO - MB (BHN BAKU KOSMETIK) COA 804\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34023990\", \"uraian\": \"SETACIN 103/SPEZIAL OR NP - RSPO - MB (BHN BAKU KOSMETIK) COA 804\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464343755\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464343755\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464343755\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464343755\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464186398\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464186398\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464343755\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464343755\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRISODIUMCITRATE DIHYDRATE FINE GRANULAR (BHN BAKU SUPPLEMEN) COA UJ251,UJ252\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"TRISODIUMCITRATE DIHYDRATE FINE GRANULAR (BHN BAKU SUPPLEMEN) COA UJ251,UJ252\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU SUPLEMEN) COA UJ248\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU SUPLEMEN) COA UJ248\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU SUPLEMEN) COA UJ248\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU SUPLEMEN) COA UJ248\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT22121222,UT23011226\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT22121222,UT23011226\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30216022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30216022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL02211943\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL02211943\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT23020021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT23020021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRO-LIPO TM NEO (BHN BAKU KOSMETIK) CAS 504-63-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PRO-LIPO TM NEO (BHN BAKU KOSMETIK) CAS 504-63-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829011771P\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"B-WHITE TM (BHN BAKU KOSMETIK) COA 829011771P\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) CAS 50-70-4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALDAVINE TM 5X (BHN BAKU KOSMETIK) CAS 50-70-4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMISOL TM 4135 (BHN BAKU KOSMETIK) CAS 8002-43-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AMISOL TM 4135 (BHN BAKU KOSMETIK) CAS 8002-43-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769011334N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769011334N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769011397N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769011397N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834011557N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834011557N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GREYVERSE TM (BHN BAKU KOSMETIK) COA 833011664P\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"GREYVERSE TM (BHN BAKU KOSMETIK) COA 833011664P\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANABLUE TM PARABEN FREE (BHN BAKU KOSMETIK) CAS 50-70-4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LANABLUE TM PARABEN FREE (BHN BAKU KOSMETIK) CAS 50-70-4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANACHRYS 2B PF (PRESERVATIVE) (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LANACHRYS 2B PF (PRESERVATIVE) (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELANOSTATINE TM 5 BG (50PPM) (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MELANOSTATINE TM 5 BG (50PPM) (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROGELINE TM (BHN BAKU KOSMETIK) COA 213920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"PROGELINE TM (BHN BAKU KOSMETIK) COA 213920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784021665N\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784021665N\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) CAS 8002-43-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) CAS 8002-43-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA-TOCOPHEROL (BHN BAKU KOSMETIK) COA 01230107ES\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA-TOCOPHEROL (BHN BAKU KOSMETIK) COA 01230107ES\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O665000...(BHN BAKU PEWARNA TABLET) COA GA728878\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O665000...(BHN BAKU PEWARNA TABLET) COA GA728878\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007...(BHN BAKU PEWARNA TABLET) COA GA728879\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007...(BHN BAKU PEWARNA TABLET) COA GA728879\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O92157...(BHN BAKU PEWARNA TABLET) COA GA728880\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O92157...(BHN BAKU PEWARNA TABLET) COA GA728880\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359.. (BHN BAKU PEWARNA TABLET) COA GA728915\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359.. (BHN BAKU PEWARNA TABLET) COA GA728915\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O620011...(BHN BAKU PEWARNA TABLET) COA GA728916\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O620011...(BHN BAKU PEWARNA TABLET) COA GA728916\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B84893...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03B84893...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B54445...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03B54445...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B28796...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03B28796...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G62544...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G62544...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 02F54189...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 02F54189...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 02F52182...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 02F52182...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51156...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51156...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A18597...(BHN BAKU PEWARNA TABLET) COA GA728923\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A18597...(BHN BAKU PEWARNA TABLET) COA GA728923\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A18597...(BHN BAKU PEWARNA TABLET) COA GA728923\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A18597...(BHN BAKU PEWARNA TABLET) COA GA728923\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A62337...(BHN BAKU PEWARNA TABLET) COA GA728973\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A62337...(BHN BAKU PEWARNA TABLET) COA GA728973\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-6708...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM OY-6708...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M536854 S/D ,M536856,M536877,M536878\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M536854 S/D ,M536856,M536877,M536878\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIMOX POWDER (BHN BAKU OBAT) COA M486456\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"PURIMOX POWDER (BHN BAKU OBAT) COA M486456\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M536878,M536879,M536881,M536882\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M536878,M536879,M536881,M536882\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M598846,M599016,M599017,M599024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M598846,M599016,M599017,M599024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220803\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220803\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-220602\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-220602\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIGELINE (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KIGELINE (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SEABUCKTHRON HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HIR220801-B\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SEABUCKTHRON HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HIR220801-B\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) CSB (BHN BAKU KOSMETIK) COA 02/22GL4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40 BRIX) CSB (BHN BAKU KOSMETIK) COA 02/22GL4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) ECH (B.BAKU KOSMETIK) COA 02/22GL4, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40 BRIX) ECH (B.BAKU KOSMETIK) COA 02/22GL4, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EMULIUM MELLIFERA MB (BHN BAKU KOSMETIK) COA 194235\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"EMULIUM MELLIFERA MB (BHN BAKU KOSMETIK) COA 194235\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FENTACARE 1631 25 MB 200KG PLAS DR (BHN BAKU KOSMETIK ) COA ZH23B2505M,ZH23C2303M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29239000\", \"uraian\": \"FENTACARE 1631 25 MB 200KG PLAS DR (BHN BAKU KOSMETIK ) COA ZH23B2505M,ZH23C2303M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE (R) VELLUTO (BHN BAKU KOSMETIK) COA L763690\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE (R) VELLUTO (BHN BAKU KOSMETIK) COA L763690\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CELLOSIZE TM TEXTURE F4M HYDROXYPROPYL... (BHN BAKU KOSMETIK) COA F410M46D31\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"CELLOSIZE TM TEXTURE F4M HYDROXYPROPYL... (BHN BAKU KOSMETIK) COA F410M46D31\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SERASENSE SF 2 (BAHAN BAKU SUPLEMEN) COA SA30316012,SA30316018,SA30316020,SA30316021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100090\", \"uraian\": \"SERASENSE SF 2 (BAHAN BAKU SUPLEMEN) COA SA30316012,SA30316018,SA30316020,SA30316021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 4-HYDROXYACETOPHENONE (BHN BAKU KOSMETIK) COA 202303022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29145000\", \"uraian\": \"4-HYDROXYACETOPHENONE (BHN BAKU KOSMETIK) COA 202303022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VALERIAN DRY HYDR. EXTR. (BAHAN BAKU SUPLEMEN) COA 22B0109000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VALERIAN DRY HYDR. EXTR. (BAHAN BAKU SUPLEMEN) COA 22B0109000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYMARIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23B0010200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SILYMARIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23B0010200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ONDANSETRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA AOND-23003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"ONDANSETRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA AOND-23003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202406,122202407\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202406,122202407\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202407,122302511\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202407,122302511\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFIBER AG (BHN BAKU MAKANAN) COA 212311\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SUNFIBER AG (BHN BAKU MAKANAN) COA 212311\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) CAS 233683-84-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) CAS 233683-84-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FENTACARE 2231 EF 25KG PAPER BOX (BHN BAKU KOSMETIK ) COA ZH23B1102,ZH23D1001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34029019\", \"uraian\": \"FENTACARE 2231 EF 25KG PAPER BOX (BHN BAKU KOSMETIK ) COA ZH23B1102,ZH23D1001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB22080265 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB22080265 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPPLEMEN) COA WB23030781 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPPLEMEN) COA WB23030781 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02303309 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02303309 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SYN(R)-AKE (BHN BAKU KOSMETIK) COA UE02210014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SYN(R)-AKE (BHN BAKU KOSMETIK) COA UE02210014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2205101 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2205101 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DS-CERAMIDE Y3S (BHN BAKU KOSMETIK) COA CSKI06\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29241990\", \"uraian\": \"DS-CERAMIDE Y3S (BHN BAKU KOSMETIK) COA CSKI06\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100MESH (BHN BAKU SUPLEMEN) COA 6AX2303063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS BP2009/E330 30-100MESH (BHN BAKU SUPLEMEN) COA 6AX2303063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANTOPRAZOLE SODIUM (STERILE) (BAHAN BAKU OBAT) COA SI/PPZ/00320323,SI/PPZ/00350323\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"PANTOPRAZOLE SODIUM (STERILE) (BAHAN BAKU OBAT) COA SI/PPZ/00320323,SI/PPZ/00350323\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IRBESARTAN (BAHAN BAKU OBAT ) COA C5415-22-026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"IRBESARTAN (BAHAN BAKU OBAT ) COA C5415-22-026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRAZINAMIDE EP/USP (BHN BAKU OBAT) COA WHOPZ 004 D 23 S/D WHOPZ 014 D 23\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"PYRAZINAMIDE EP/USP (BHN BAKU OBAT) COA WHOPZ 004 D 23 S/D WHOPZ 014 D 23\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE USP (BAHAN BAKU OBAT) COA ASG/03/300323,ASG/04/060423 S/D 090423\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE USP (BAHAN BAKU OBAT) COA ASG/03/300323,ASG/04/060423 S/D 090423\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3426790 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3426790 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3428591 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3428591 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 22290043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 22290043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC SODIUM ASCORBATE REGULAR (BHN BAKU SUPPLEMEN) COA HPN2303154 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC SODIUM ASCORBATE REGULAR (BHN BAKU SUPPLEMEN) COA HPN2303154 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512245,G0251303\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47069200\", \"uraian\": \"SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512245,G0251303\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE... (BHN BAKU KOSMETIK) COA CHP1230309 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND BIO-SODIUM HYALURONATE... (BHN BAKU KOSMETIK) COA CHP1230309 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-022802,012333 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-022802,012333 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-031333 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-031333 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-012723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-012723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA MAK114\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA MAK114\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE... (BHN BAKU KOSMETIK) COA CHP1230309 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND BIO-SODIUM HYALURONATE... (BHN BAKU KOSMETIK) COA CHP1230309 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012333 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012333 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-043133 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-043133 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N28115\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N28115\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-070522 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-070522 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-020192 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-020192 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N28115\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N28115\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND TEA TREE EXTRACT (BHN BAKU KOSMETIK) COA MASL-010933 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND TEA TREE EXTRACT (BHN BAKU KOSMETIK) COA MASL-010933 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLOWLAC (R) 100 (BHN BAKU OBAT) COA L101500823 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"FLOWLAC (R) 100 (BHN BAKU OBAT) COA L101500823 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104311323 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104311323 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) CAS 8002-43-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTENSO TM (BHN BAKU KOSMETIK) CAS 8002-43-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECOGEL TM (BHN BAKU KOSMETIK) CAS 85711-58-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ECOGEL TM (BHN BAKU KOSMETIK) CAS 85711-58-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784021665N (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784021665N (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) TF TIO2 FREE MOISTURE BARRIER FILM...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) TF TIO2 FREE MOISTURE BARRIER FILM...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) TF TIO2 FREE MOISTURE BARRIER FILM...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) TF TIO2 FREE MOISTURE BARRIER FILM...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O620011...(BHN BAKU PEWARNA TABLET) COA GA729764\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O620011...(BHN BAKU PEWARNA TABLET) COA GA729764\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) KB LOW VISCOSITY FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 151-21-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) KB LOW VISCOSITY FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 151-21-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359...(BHN BAKU PEWARNA TABLET) COA GA729689\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359...(BHN BAKU PEWARNA TABLET) COA GA729689\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G54002...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G54002...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-22-17515...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-22-17515...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55015...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55015...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55041..(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55041..(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229... (BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229... (BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NAI-WHITE A (BHN BAKU KOSMETIK) COA C221012AA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32061190\", \"uraian\": \"NAI-WHITE A (BHN BAKU KOSMETIK) COA C221012AA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-0940423\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334910\", \"uraian\": \"DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-0940423\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHOLINE CHLORIDE 60 PCT (BHN BAKU PAKAN HEWAN) CAS 67-48-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHOLINE CHLORIDE 60 PCT (BHN BAKU PAKAN HEWAN) CAS 67-48-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE (R) VELLUTO (BHN BAKU KOSMETIK) COA L763690\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE (R) VELLUTO (BHN BAKU KOSMETIK) COA L763690\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRASIL DM5 L (BHN BAKU KOSMETIK) COA 2312FF2415\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100090\", \"uraian\": \"MIRASIL DM5 L (BHN BAKU KOSMETIK) COA 2312FF2415\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG230331 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG230331 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRAYPHOS DKP FG 25K BG (BHN BAKU KOSMETIK) COA 2223032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28352400\", \"uraian\": \"PRAYPHOS DKP FG 25K BG (BHN BAKU KOSMETIK) COA 2223032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRAYPHOS MKP FG 25K BG (BHN BAKU KOSMETIK) COA 0009E\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PRAYPHOS MKP FG 25K BG (BHN BAKU KOSMETIK) COA 0009E\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5CT SD (BHN BAKU SUPPLEMEN) COA UT22070008 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5CT SD (BHN BAKU SUPPLEMEN) COA UT22070008 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22120257 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22120257 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ21213653 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ21213653 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX MILK POWDER FOR ADULTS (BHN BAKU MAKANAN) COA XW92303074 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX MILK POWDER FOR ADULTS (BHN BAKU MAKANAN) COA XW92303074 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MINERAL PREMIX MILK POWDER FOR ADULTS V2 (BHN BAKU MAKANAN) COA XW92303075,XW92303076 (POST BOR\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"MINERAL PREMIX MILK POWDER FOR ADULTS V2 (BHN BAKU MAKANAN) COA XW92303075,XW92303076 (POST BOR\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ21210864 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ21210864 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11221041 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11221041 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12211021,OP12301007 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12211021,OP12301007 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT22110042 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT22110042 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22120257 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22120257 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22060064 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22060064 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU MAKANAN) COA UT22070008 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU MAKANAN) COA UT22070008 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL02208214 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU MAKANAN) COA TL02208214 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL02211116 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU MAKANAN) COA TL02211116 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000209969 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000209969 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0723010013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHS (BHN BAKU KOSMETIK) COA 0723010013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P2B06QA000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL TX (BHN BAKU KOSMETIK) COA P2B06QA000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060078\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060078\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU KOSMETIK) COA UT22120257 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU KOSMETIK) COA UT22120257 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0723010013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHS (BHN BAKU KOSMETIK) COA 0723010013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS1170622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS1170622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S145/23,S191/21,S181/22,S600/22\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S145/23,S191/21,S181/22,S600/22\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHAMBUTOL (BHN BAKU OBAT) COA N3142156 S/D N3142158, N3142257 S/D N3142259\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221910\", \"uraian\": \"ETHAMBUTOL (BHN BAKU OBAT) COA N3142156 S/D N3142158, N3142257 S/D N3142259\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202098,122202099\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202098,122202099\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202099,122202242\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202099,122202242\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT MAGNESIUM CARBONATE POWDER, BP 2021 (BHN BAKU MAKANAN) COA 3121984-02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28369990\", \"uraian\": \"LIGHT MAGNESIUM CARBONATE POWDER, BP 2021 (BHN BAKU MAKANAN) COA 3121984-02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS SULFATE, DRIED, POWDER, USP43 (BHN BAKU SUPPLEMEN) COA 3116763\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"FERROUS SULFATE, DRIED, POWDER, USP43 (BHN BAKU SUPPLEMEN) COA 3116763\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIPOTASSIUM PHOSPHATE POWDER (BHN BAKU MAKANAN) COA 3124916\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28352400\", \"uraian\": \"DIPOTASSIUM PHOSPHATE POWDER (BHN BAKU MAKANAN) COA 3124916\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POTASSIUM L-ASPARTATE 0,5-HYDRATE (BHN BAKU SUPPLEMEN) COA 3097137\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"POTASSIUM L-ASPARTATE 0,5-HYDRATE (BHN BAKU SUPPLEMEN) COA 3097137\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRICALCIUM CITRATE 4-HYDRATE POWDER (BHN BAKU OBAT) COA 3127724\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181590\", \"uraian\": \"TRICALCIUM CITRATE 4-HYDRATE POWDER (BHN BAKU OBAT) COA 3127724\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS LACTATE 2-HYDRATE, POWDER (BHN BAKU MAKANAN) COA 3122394\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181200\", \"uraian\": \"FERROUS LACTATE 2-HYDRATE, POWDER (BHN BAKU MAKANAN) COA 3122394\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS GLUCONATE, POWDER, USP 43 (BHN BAKU SUPPLEMEN) COA 3127991\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"FERROUS GLUCONATE, POWDER, USP 43 (BHN BAKU SUPPLEMEN) COA 3127991\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VACC.MYRT./PINUS PIN. DRY (BHN BAKU SUPPLEMEN) COA 22S0290300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"VACC.MYRT./PINUS PIN. DRY (BHN BAKU SUPPLEMEN) COA 22S0290300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECHINACEA ANG.DRY PURIF.EX. (BHN BAKU SUPLEMEN) COA 21S0155200 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ECHINACEA ANG.DRY PURIF.EX. (BHN BAKU SUPLEMEN) COA 21S0155200 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POTASSIUM IODIDE AND CARRIER (BHN BAKU OBAT) COA 3131168\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28276000\", \"uraian\": \"POTASSIUM IODIDE AND CARRIER (BHN BAKU OBAT) COA 3131168\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F19250...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F19250...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2023020105 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2023020105 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RANITIDINE HYDROCHLORIDE USP (BAHAN BAKU OBAT) COA RH 115 02 23\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29321900\", \"uraian\": \"RANITIDINE HYDROCHLORIDE USP (BAHAN BAKU OBAT) COA RH 115 02 23\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANTOPRAZOLE SODIUM USP (BHN BAKU OBAT) COA PS0581221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"PANTOPRAZOLE SODIUM USP (BHN BAKU OBAT) COA PS0581221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN E (BHN BAKU KOSMETIK) COA 201202302204 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"VITAMIN E (BHN BAKU KOSMETIK) COA 201202302204 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IONOL CP (BHN BAKU KOSMETIK) COA 01117322 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29071900\", \"uraian\": \"IONOL CP (BHN BAKU KOSMETIK) COA 01117322 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFTAZIDIME BUFFERED (BHN BAKU OBAT) COA B20090M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFTAZIDIME BUFFERED (BHN BAKU OBAT) COA B20090M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPICILLIN SODIUM (STERILE) BP (BHN BAKU OBAT) COA SI/AMP/00100323\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411020\", \"uraian\": \"AMPICILLIN SODIUM (STERILE) BP (BHN BAKU OBAT) COA SI/AMP/00100323\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM...(BHN BAKU MAKANAN) COA ROA041237,ROA042233,ROA038234,... (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM...(BHN BAKU MAKANAN) COA ROA041237,ROA042233,ROA038234,... (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COOLACT 10 (BHN BAKU KOSMETIK) COA T008800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29094900\", \"uraian\": \"COOLACT 10 (BHN BAKU KOSMETIK) COA T008800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POTASSIUM IODIDE FCC (BHN BAKU OBAT UTK PAKAN TERNAK) COA KID/E/2223/012, KID/E/2324/001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28276000\", \"uraian\": \"POTASSIUM IODIDE FCC (BHN BAKU OBAT UTK PAKAN TERNAK) COA KID/E/2223/012, KID/E/2324/001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 22T0095000 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 22T0095000 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 22290043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 22290043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANTOPRAZOLE SODIUM USP (BHN BAKU OBAT) COA PS0581221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"PANTOPRAZOLE SODIUM USP (BHN BAKU OBAT) COA PS0581221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HERBAL EXTRACTS (GARCINIA CAMBOGIA 60 PCT CA-K SALT) (BHN BAKU KOSMETIK) COA FGC2210003 (POST B\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HERBAL EXTRACTS (GARCINIA CAMBOGIA 60 PCT CA-K SALT) (BHN BAKU KOSMETIK) COA FGC2210003 (POST B\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU UTK PAKAN TERNAK) COA 202300029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"AL HYD WET GEL VAC 20 (BHN BAKU UTK PAKAN TERNAK) COA 202300029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 230312\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061900\", \"uraian\": \"MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 230312\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OILESS' CITY TM (BHN BAKU KOSMETIK) COA (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"OILESS' CITY TM (BHN BAKU KOSMETIK) COA (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OILESS' CITY TM (BHN BAKU KOSMETIK) COA (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"OILESS' CITY TM (BHN BAKU KOSMETIK) COA (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WILDPLUM HARVEST TM AF (BHN BAKU KOSMETIK) COA (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"WILDPLUM HARVEST TM AF (BHN BAKU KOSMETIK) COA (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 221110 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 221110 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"LIME PEARL TM AF (BHN BAKU KOSMETIK) COA (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33012990\", \"uraian\": \"AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS EU-118(IS) (BHN BAKU KOSMETIK) CAS 111174-63-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS EU-118(IS) (BHN BAKU KOSMETIK) CAS 111174-63-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) CAS 638164-47-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROTESIL LH (BHN BAKU KOSMETIK) CAS 638164-47-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS SILK-1000 (BHN BAKU KOSMETIK) CAS 96690-41-4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS SILK-1000 (BHN BAKU KOSMETIK) CAS 96690-41-4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM HYDROXYDE MS90 PHARMA (BHN BAKU OBAT) COA 202300122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"MAGNESIUM HYDROXYDE MS90 PHARMA (BHN BAKU OBAT) COA 202300122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM CARBONATE DC TYPE CS90 PHARMA (BHN BAKU OBAT) COA 202300072\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28365010\", \"uraian\": \"CALCIUM CARBONATE DC TYPE CS90 PHARMA (BHN BAKU OBAT) COA 202300072\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM HYDROXYDE MS90 PHARMA (BHN BAKU OBAT) COA 202300122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"MAGNESIUM HYDROXYDE MS90 PHARMA (BHN BAKU OBAT) COA 202300122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROSE ANHYDROUS (BHN BAKU OBAT UTK PAKAN TERNAK) COA XWA230405\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17023010\", \"uraian\": \"DEXTROSE ANHYDROUS (BHN BAKU OBAT UTK PAKAN TERNAK) COA XWA230405\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MATCHA (BHN BAKU KOSMETIK) CAS 84650-60-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MATCHA (BHN BAKU KOSMETIK) CAS 84650-60-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M536998 S/D M537003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M536998 S/D M537003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M536996,M536998\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M536996,M536998\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CROSPOVIDONE XL (BHN BAKU SUPPLEMEN) COA PP230402XL\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"CROSPOVIDONE XL (BHN BAKU SUPPLEMEN) COA PP230402XL\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FIBRE DRUM, PRICE AND AMOUNT ARE FOR CUSTOM ONLY\""}, {"role": "assistant", "content": "{\"hs_code\" : \"48192000\", \"uraian\": \"FIBRE DRUM, PRICE AND AMOUNT ARE FOR CUSTOM ONLY\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EMULIUM MELLIFERA MB (BHN BAKU KOSMETIK) COA HF-1220064\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"EMULIUM MELLIFERA MB (BHN BAKU KOSMETIK) COA HF-1220064\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELUCIRE 44/14 (BHN BAKU SUPPLEMEN) COA 190294\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELUCIRE 44/14 (BHN BAKU SUPPLEMEN) COA 190294\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LABRAFIL M 1944 CS BF (BHN BAKU SUPPLEMEN) COA 193517\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LABRAFIL M 1944 CS BF (BHN BAKU SUPPLEMEN) COA 193517\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TEFOSE 63 BF (BHN BAKU SUPPLEMEN) COA 193853\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TEFOSE 63 BF (BHN BAKU SUPPLEMEN) COA 193853\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EMULCIRE 61 WL 2659 (BHN BAKU SUPPLEMEN) COA 193520\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"EMULCIRE 61 WL 2659 (BHN BAKU SUPPLEMEN) COA 193520\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELOIL SC (BHN BAKU SUPPLEMEN) COA 194704\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELOIL SC (BHN BAKU SUPPLEMEN) COA 194704\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 192311\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 192311\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRECIROL ATO 5 (BHN BAKU SUPPLEMEN) COA 194467\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"PRECIROL ATO 5 (BHN BAKU SUPPLEMEN) COA 194467\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CETYL PALMITATE PELLETSCAR (BHN BAKU SUPPLEMEN) COA 192063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"CETYL PALMITATE PELLETSCAR (BHN BAKU SUPPLEMEN) COA 192063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELUCIRE 48/16 PELLETS (BHN BAKU SUPPLEMEN) COA 185000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELUCIRE 48/16 PELLETS (BHN BAKU SUPPLEMEN) COA 185000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPRITOL 888 ATO (BHN BAKU SUPPLEMEN) COA 195007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"COMPRITOL 888 ATO (BHN BAKU SUPPLEMEN) COA 195007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CETYL PALMITATE PELLETSCAR (BHN BAKU SUPPLEMEN) COA 192063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"CETYL PALMITATE PELLETSCAR (BHN BAKU SUPPLEMEN) COA 192063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12301007 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12301007 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ21213653 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ21213653 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ20912354 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ20912354 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22120257 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22120257 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000209969 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000209969 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02301057 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02301057 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000209969 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000209969 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT22090038\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT22090038\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ20912354 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ20912354 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX VMP JELLY (BHN BAKU MAKANAN) COA XW92303188 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX VMP JELLY (BHN BAKU MAKANAN) COA XW92303188 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000210457 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000210457 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX FOR FERMENTED MILK (BHN BAKU MAKANAN) COA XW92303214 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX FOR FERMENTED MILK (BHN BAKU MAKANAN) COA XW92303214 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2204104535\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2204104535\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETAMETHASONE BP/USP (BHN BAKU OBAT) COA XBE230103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"BETAMETHASONE BP/USP (BHN BAKU OBAT) COA XBE230103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISONE USP (BHN BAKU OBAT) COA NPD221001,NPD230102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISONE USP (BHN BAKU OBAT) COA NPD221001,NPD230102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP/USP (BHN BAKU OBAT) COA NED230403,NED230404\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP/USP (BHN BAKU OBAT) COA NED230403,NED230404\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILLIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3079261\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RAPPAPORT VASSILLIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3079261\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILLIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3079261\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RAPPAPORT VASSILLIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3079261\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2334621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2334621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2111375,2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE STERILE RODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2111375,2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MICRO INOCULUM BROTH 500 G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1075951\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MICRO INOCULUM BROTH 500 G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1075951\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MICRO ASSAY CULTURE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335689\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MICRO ASSAY CULTURE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335689\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M ENDO BROTH MF 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2068110\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M ENDO BROTH MF 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2068110\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2271456\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2271456\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2143788\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2143788\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2291792\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2291792\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D-MANNITOL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2229527\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D-MANNITOL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2229527\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3055274\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3055274\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA U/PENGEMBANGAN MIKROORGANISME)BATCH 3052767\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA U/PENGEMBANGAN MIKROORGANISME)BATCH 3052767\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2277799\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2277799\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2151941\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2151941\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2263336\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2263336\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CHROMAGAR CANDIDA 500GM (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2123851\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE CHROMAGAR CANDIDA 500GM (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2123851\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2165877\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2165877\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTONE GLUCOSE EXT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH. 2060588\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTONE GLUCOSE EXT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH. 2060588\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2088727\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2088727\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 5 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1236415\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 5 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1236415\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2217638\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2217638\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2053778\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2053778\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE WL DIFFERENTIAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2123844\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE WL DIFFERENTIAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2123844\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TODD HEWITT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2060551\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TODD HEWITT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2060551\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH B01E335M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH B01E335M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2117655\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2117655\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1285575\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1285575\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD AGAR MODIFIED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2060412\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD AGAR MODIFIED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2060412\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YPD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2305146\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE YPD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2305146\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1292710\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1292710\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2271456\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2271456\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2311158\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2311158\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2067204\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2067204\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TSB CASEIN MED 500G ( MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 2143687,2256092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TSB CASEIN MED 500G ( MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 2143687,2256092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2158117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2158117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DIFCO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2312054,3004839\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DIFCO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2312054,3004839\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1350021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1350021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2034966\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2034966\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2207189\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2207189\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2011124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2011124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2123842\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2123842\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2143788\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2143788\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2271446\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2271446\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2005526,2200729\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2005526,2200729\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1285556\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1285556\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2152796\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2152796\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GRAM CRYSTAL VIOLET 250ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 3031453\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GRAM CRYSTAL VIOLET 250ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 3031453\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3075347\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3075347\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3075347\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3075347\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3075347\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3075347\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3075347\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3075347\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3075347\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3075347\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3075347\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3075347\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN549556\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN549556\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN549553\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN549553\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN549559\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN549559\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN549558\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN549558\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MACKAM C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 8776-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34024990\", \"uraian\": \"MACKAM C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 8776-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACTIPONE (R) CAMU CAMU GW (BHN BAKU KOSMETIK) COA 10300019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"ACTIPONE (R) CAMU CAMU GW (BHN BAKU KOSMETIK) COA 10300019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300066\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300066\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IVY DRY HYDR EXTR 10PCT HPLC (BHN BAKU SUPLEMEN) COA 22B0092500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"IVY DRY HYDR EXTR 10PCT HPLC (BHN BAKU SUPLEMEN) COA 22B0092500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIAMI SCG(S) (BHN BAKU KOSMETIK) COA MWC2300511\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34023990\", \"uraian\": \"MIAMI SCG(S) (BHN BAKU KOSMETIK) COA MWC2300511\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 30214,30302,30308\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 30214,30302,30308\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REFINED COCONUT OIL - L (BHN BAKU KOSMETIK) COA 0002640007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15131990\", \"uraian\": \"REFINED COCONUT OIL - L (BHN BAKU KOSMETIK) COA 0002640007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT (R) 6010 D&C YELLOW 10 ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP853299:BB4499\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT (R) 6010 D&C YELLOW 10 ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP853299:BB4499\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5396 ERYTHROSINE ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP860977:1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5396 ERYTHROSINE ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP860977:1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5406 FD&C RED 40... (BHN BAKU PEWARNA TABLET) COA WP857248:BB7542\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5406 FD&C RED 40... (BHN BAKU PEWARNA TABLET) COA WP857248:BB7542\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT (R) 6010 D&C YELLOW 10 ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP853307:BB4660\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT (R) 6010 D&C YELLOW 10 ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP853307:BB4660\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C YELLOW 6/SUNSET...(BHN BAKU PEWARNA TABLET) COA WP862658:BC0557\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5287 FD&C YELLOW 6/SUNSET...(BHN BAKU PEWARNA TABLET) COA WP862658:BC0557\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5517 FD&C BLUE 1/BRILLIANT...(BHN BAKU PEWARNA TABLET) COA WP860651:BB8658\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5517 FD&C BLUE 1/BRILLIANT...(BHN BAKU PEWARNA TABLET) COA WP860651:BB8658\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5627 FD&C BLUE 2/INDIGO...(BHN BAKU PEWARNA TABLET) COA WP863102:BC1252\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5627 FD&C BLUE 2/INDIGO...(BHN BAKU PEWARNA TABLET) COA WP863102:BC1252\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM HYDROXYDE MS90 PHARMA (BHN BAKU OBAT) COA 202300122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"MAGNESIUM HYDROXYDE MS90 PHARMA (BHN BAKU OBAT) COA 202300122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) CAS 1119-97-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CETRIMIDE (BHN BAKU KOSMETIK) CAS 1119-97-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20230101 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20230101 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB23030694 S/D WB23030696 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB23030694 S/D WB23030696 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB23030694 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB23030694 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB23030698 S/D WB23030700 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB23030698 S/D WB23030700 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB22080265 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB22080265 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FAIR FOR LIFE REFINED SHEA (BHN BAKU KOSMETIK) COA 0000045896\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15159011\", \"uraian\": \"FAIR FOR LIFE REFINED SHEA (BHN BAKU KOSMETIK) COA 0000045896\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) CAS 68937-54-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6017 (17KG) (BHN BAKU KOSMETIK) CAS 68937-54-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KP-561P (16KG) (BHN BAKU KOSMETIK) CAS 329236-76-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KP-561P (16KG) (BHN BAKU KOSMETIK) CAS 329236-76-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-210 (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSG-210 (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP-101 (15KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSP-101 (15KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MC-GLUCAN (BHN BAKU KOSMETIK) COA MCGL230427\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"MC-GLUCAN (BHN BAKU KOSMETIK) COA MCGL230427\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-001-A (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-001-A (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MICROBIAL CONTENT TEST AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2347732\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MICROBIAL CONTENT TEST AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2347732\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROPIDIUM IODINE STAINING SOLUTION 2ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1354798\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PROPIDIUM IODINE STAINING SOLUTION 2ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1354798\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1344136\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1344136\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTISERUM B 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1364584\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL H ANTISERUM B 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1364584\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTISERUM C 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1140112\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL H ANTISERUM C 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1140112\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS GRP B FLR 1/4/5/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1217576\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS GRP B FLR 1/4/5/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1217576\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTISERUM GRP C1 FTR 6/7 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2244880\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTISERUM GRP C1 FTR 6/7 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2244880\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIAUTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2322452\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIAUTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2322452\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2279321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2279321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3038435\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3038435\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2279321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2279321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3093476\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PANTOTHENATE ASSAY MED 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3093476\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3076458\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3076458\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYCHECK FOR TOTAL COUNT 10/PK (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 23020301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HYCHECK FOR TOTAL COUNT 10/PK (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 23020301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3006876\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3006876\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTISERUM B 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1364584\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL H ANTISERUM B 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1364584\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3076458\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3076458\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3006876\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3006876\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 57-50-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 57-50-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K84823...(BHN BAKU PEWARNA TABLET) CAS 64044-51-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K84823...(BHN BAKU PEWARNA TABLET) CAS 64044-51-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-38956...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-38956...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B82443...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03B82443...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) ENTERIC COATING SYSTEM 94O190003...(BHN BAKU PEWARNA TABLET) CAS 25086-15-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) ENTERIC COATING SYSTEM 94O190003...(BHN BAKU PEWARNA TABLET) CAS 25086-15-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 151-21-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 151-21-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620023...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620023...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B84893...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03B84893...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AQUACOAT ECD-30 ETHYLCELLULOSE AQUEOUS... (BHN BAKU PEWARNA TABLET) COA 2174151144\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"AQUACOAT ECD-30 ETHYLCELLULOSE AQUEOUS... (BHN BAKU PEWARNA TABLET) COA 2174151144\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AQUACOAT ECD-30 ETHYLCELLULOSE AQUEOUS... (BHN BAKU PEWARNA TABLET) COA 2174260754\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"AQUACOAT ECD-30 ETHYLCELLULOSE AQUEOUS... (BHN BAKU PEWARNA TABLET) COA 2174260754\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM CARBONATE IPH (BHN BAKU SUPPLEMEN) COA DOC1002321,DOC0862321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"SODIUM CARBONATE IPH (BHN BAKU SUPPLEMEN) COA DOC1002321,DOC0862321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARTESUNATE (STERILE) IP (BHN BAKU OBAT) COA SI/BARS/0010123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329900\", \"uraian\": \"ARTESUNATE (STERILE) IP (BHN BAKU OBAT) COA SI/BARS/0010123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OMEPRAZOLE SODIUM STERILE (BHN BAKU OBAT) COA SI/OPZ/00251222\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"OMEPRAZOLE SODIUM STERILE (BHN BAKU OBAT) COA SI/OPZ/00251222\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CINNARIZINE BP/EP (BHN BAKU OBAT) COA CIN2304020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"CINNARIZINE BP/EP (BHN BAKU OBAT) COA CIN2304020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID REGULAR (BHN BAKU MAKANAN) COA HPB2303210,HPB2303217 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID REGULAR (BHN BAKU MAKANAN) COA HPB2303210,HPB2303217 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID REGULAR (BHN BAKU MAKANAN) COA HPB2303233 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID REGULAR (BHN BAKU MAKANAN) COA HPB2303233 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0003600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0003600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23BB0003700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23BB0003700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23BB0003800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23BB0003800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23BB0003900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23BB0003900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT23020002,UT23020003 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT23020002,UT23020003 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF (BHN BAKU SUPPLEMEN) COA UE02302003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO (R) LUTEIN 20PCT SAF (BHN BAKU SUPPLEMEN) COA UE02302003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30216029,UQ30216030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30216029,UQ30216030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30216030 S/D UQ30216032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30216030 S/D UQ30216032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02303308\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02303308\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT23020001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT23020001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT23020023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT23020023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT23020003 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT23020003 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02303308,TL02303309\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02303308,TL02303309\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT23020023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT23020023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02301001 S/D UE02301003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02301001 S/D UE02301003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2270988\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2270988\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2484059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2484059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2441197\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2441197\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2441197\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2441197\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2461100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2461100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1110920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1110920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1124396\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1124396\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1124396\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1124396\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2031316\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2031316\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2094434\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2094434\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2314938\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2314938\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2314938\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2314938\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2011614\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2011614\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2346604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2346604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2314938\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2314938\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND OXYGEN WATER (L) (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND OXYGEN WATER (L) (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIOCTP-500 (BHN BAKU KOSMETIK) COA BOPN-052822,021743 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND BIOCTP-500 (BHN BAKU KOSMETIK) COA BOPN-052822,021743 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-040812 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-040812 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND PF CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSSBD-011143\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND PF CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSSBD-011143\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SENAS (BHN BAKU KOSMETIK) COA NASB-032912\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21022090\", \"uraian\": \"HYUNDAI BIOLAND SENAS (BHN BAKU KOSMETIK) COA NASB-032912\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N28115\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N28115\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-071343 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-071343 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012423 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012423 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1230406\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1230406\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N4O107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N4O107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101851323\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA L101851323\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101851323\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA L101851323\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP23044147,XP230440148\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP23044147,XP230440148\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55041... (BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55041... (BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G630022...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G630022...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 21K58794... (BHN BAKU PEWARNA TABLET) CAS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 21K58794... (BHN BAKU PEWARNA TABLET) CAS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512303,G02512310\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47069200\", \"uraian\": \"SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512303,G02512310\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRASIL DM5 L (BHN BAKU KOSMETIK) COA 2312FF2415\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100090\", \"uraian\": \"MIRASIL DM5 L (BHN BAKU KOSMETIK) COA 2312FF2415\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG230414\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG230414\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRIED ALUMINUM HYDROXIDE, SORBITOL BLEND BARCROFT TM 0501 (BHN BAKU OBAT) COA 102360002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"DRIED ALUMINUM HYDROXIDE, SORBITOL BLEND BARCROFT TM 0501 (BHN BAKU OBAT) COA 102360002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT22040081(POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT22040081(POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT23010001 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT23010001 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ20912354 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ20912354 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT22110042 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT22110042 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT22040081 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT22040081 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL 75 L (BHN BAKU KOSMETIK) COA TL02210333 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL 75 L (BHN BAKU KOSMETIK) COA TL02210333 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22110352 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22110352 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010528\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010528\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010528\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010528\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010528\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010528\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211042 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211042 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020002,0923020003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020002,0923020003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000209965,0000209966 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000209965,0000209966 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HEBELYS (BHN BAKU KOSMETIK) CAS 504-63-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HEBELYS (BHN BAKU KOSMETIK) CAS 504-63-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220803\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220803\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JOB\u2019S TEARS HYDROGLYCOLIC EXTRACT (BG) (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"JOB\u2019S TEARS HYDROGLYCOLIC EXTRACT (BG) (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WITCH HAZEL ORGANIC DISTILLATE 1:10 (SB) (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"WITCH HAZEL ORGANIC DISTILLATE 1:10 (SB) (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (BHN BAKU KOSMETIK) CAS 90106-38-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (BHN BAKU KOSMETIK) CAS 90106-38-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPECWHITE VCE (BHN BAKU KOSMETIK) COA 20230304 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SPECWHITE VCE (BHN BAKU KOSMETIK) COA 20230304 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GF-B331 (BHN BAKU KOSMETIK) COA 20230410002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051090\", \"uraian\": \"GF-B331 (BHN BAKU KOSMETIK) COA 20230410002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-230214 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-230214 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 230464 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 230464 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNEBUSTERS (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 230386 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 230386 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 222900 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 222900 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 222516,222677 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"IZAYOI (BHN BAKU KOSMETIK) COA 222516,222677 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 230453 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329900\", \"uraian\": \"K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 230453 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIO-PGA SOLUTION HB (BHN BAKU KOSMETIK) COA 230184\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"BIO-PGA SOLUTION HB (BHN BAKU KOSMETIK) COA 230184\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02303830 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02303830 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02303830 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02303830 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02303830 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02303830 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRAZINAMIDE EP (BHN BAKU OBAT) COA WHOPZ 029 D 23 S/D WHOPZ 029 D 23\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"PYRAZINAMIDE EP (BHN BAKU OBAT) COA WHOPZ 029 D 23 S/D WHOPZ 029 D 23\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOPAMINE HCL (BHN BAKU OBAT) COA 23100086\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29222900\", \"uraian\": \"DOPAMINE HCL (BHN BAKU OBAT) COA 23100086\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA/PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 22S0097300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"CENTELLA ASIATICA/PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 22S0097300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VACC.MYRT./PINUS PIN. DRY (BHN BAKU SUPPLEMEN) COA 22S0290300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VACC.MYRT./PINUS PIN. DRY (BHN BAKU SUPPLEMEN) COA 22S0290300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CURCUMA PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 23S0012605\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"CURCUMA PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 23S0012605\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E15 PREMIUM LV HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2444208486\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E15 PREMIUM LV HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2444208486\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2444185823\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2444185823\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E50 PREMIUM LV HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA D011L9HL02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E50 PREMIUM LV HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA D011L9HL02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464207191\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464207191\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL A15 PREMIUM LV METHYLCELLULOSE..(BHN BAKU PEWARNA TABLET) COA D180M11022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL A15 PREMIUM LV METHYLCELLULOSE..(BHN BAKU PEWARNA TABLET) COA D180M11022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL A15 PREMIUM LV METHYLCELLULOSE..(BHN BAKU PEWARNA TABLET) COA 2464205144\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL A15 PREMIUM LV METHYLCELLULOSE..(BHN BAKU PEWARNA TABLET) COA 2464205144\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL A15 PREMIUM LV METHYLCELLULOSE...(BHN BAKU PEWARNA TABLET) COA D180M11022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL A15 PREMIUM LV METHYLCELLULOSE...(BHN BAKU PEWARNA TABLET) COA D180M11022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL A15 PREMIUM LV METHYLCELLULOSE..(BHN BAKU PEWARNA TABLET) COA 2464274694\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL A15 PREMIUM LV METHYLCELLULOSE..(BHN BAKU PEWARNA TABLET) COA 2464274694\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL A15 PREMIUM LV METHYLCELLULOSE...(BHN BAKU PEWARNA TABLET) COA 2464205135\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL A15 PREMIUM LV METHYLCELLULOSE...(BHN BAKU PEWARNA TABLET) COA 2464205135\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E50 PREMIUM LV HYDROXYPROPYL....(BHN BAKU PEWARNA TABLET) COA D011M3CL02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E50 PREMIUM LV HYDROXYPROPYL....(BHN BAKU PEWARNA TABLET) COA D011M3CL02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE (R) MONOGRAMMING INK S-1-180000 ... (BHN BAKU PEWARNA TABLET) COA WP869360\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPACODE (R) MONOGRAMMING INK S-1-180000 ... (BHN BAKU PEWARNA TABLET) COA WP869360\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA MLAH0130323,MLAH0170323\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29341000\", \"uraian\": \"MELOXICAM BP (BHN BAKU OBAT) COA MLAH0130323,MLAH0170323\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIDIN DO CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIDIN DO CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHARMAKAOLIN B 860 X (BHN BAKU KOSMETIK) COA 15.12.21\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25070000\", \"uraian\": \"PHARMAKAOLIN B 860 X (BHN BAKU KOSMETIK) COA 15.12.21\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M114079\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M114079\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M114170\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M114170\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAFFEINE BP/EP/USP (BHN BAKU OBAT) COA 2303629,2303630,2303649,2304771,2304779,2304780 (POST B\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29393000\", \"uraian\": \"CAFFEINE BP/EP/USP (BHN BAKU OBAT) COA 2303629,2303630,2303649,2304771,2304779,2304780 (POST B\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359...(BHN BAKU PEWARNA TABLET) COA GA730515\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359...(BHN BAKU PEWARNA TABLET) COA GA730515\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O63173...(BHN BAKU PEWARNA TABLET) COA GA731387\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O63173...(BHN BAKU PEWARNA TABLET) COA GA731387\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA731075\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA731075\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA731075\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA731075\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620041...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620041...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03A690090...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03A690090...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG230421 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG230421 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92304304,XW92304305 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"V003400 (BHN BAKU MAKANAN) COA XW92304304,XW92304305 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92304305,XW92304306 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"V003400 (BHN BAKU MAKANAN) COA XW92304305,XW92304306 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02301608 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02301608 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT23010170 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT23010170 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3 PCT (BHN BAKU SUPPLEMEN) COA WB22050228,WB22050229 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3 PCT (BHN BAKU SUPPLEMEN) COA WB22050228,WB22050229 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30201014 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30201014 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92304303,XW92304304 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"V003400 (BHN BAKU MAKANAN) COA XW92304303,XW92304304 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX TRS1 WITHOUT K1 (BHN BAKU MAKANAN) COA XW92303374 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX TRS1 WITHOUT K1 (BHN BAKU MAKANAN) COA XW92303374 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX FOR MARGARINE SG15-0027 (BHN BAKU MAKANAN) COA XW92304417 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX FOR MARGARINE SG15-0027 (BHN BAKU MAKANAN) COA XW92304417 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0041495 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0041495 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323020370,0323020371\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323020370,0323020371\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF23013003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF23013003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001696243\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SLX (BHN BAKU KOSMETIK) COA 0001696243\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211042 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211042 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060078,0522060107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060078,0522060107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22110352 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22110352 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL TX, (BHN BAKU KOSMETIK) COA P2B06QA000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL TX, (BHN BAKU KOSMETIK) COA P2B06QA000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHT (BHN BAKU KOSMETIK) COA 1323020173\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHT (BHN BAKU KOSMETIK) COA 1323020173\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P2B06QA000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL TX (BHN BAKU KOSMETIK) COA P2B06QA000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000209966 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000209966 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040127,0223040040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040127,0223040040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0723010022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHS (BHN BAKU KOSMETIK) COA 0723010022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50509\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061100\", \"uraian\": \"MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50509\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B120123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B120123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB240323\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB240323\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB240323\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB240323\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B120123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B120123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LG260323\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LG260323\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2305001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28352510\", \"uraian\": \"DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2305001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NUTRALIPIDS TYPE HY (BHN BAKU KOSMETIK) COA 3116300127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15179090\", \"uraian\": \"NUTRALIPIDS TYPE HY (BHN BAKU KOSMETIK) COA 3116300127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTISHARP NAT. ZEA. 14PCT SAFF. (BHN BAKU SUPPLEMEN) COA 2303101940\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"OPTISHARP NAT. ZEA. 14PCT SAFF. (BHN BAKU SUPPLEMEN) COA 2303101940\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERDOSTEINE IH (BAHAN BAKU OBAT) COA EDSF230014 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"ERDOSTEINE IH (BAHAN BAKU OBAT) COA EDSF230014 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERDOSTEINE IH (BAHAN BAKU OBAT) COA EDSF230014 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"ERDOSTEINE IH (BAHAN BAKU OBAT) COA EDSF230014 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 23100080\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 23100080\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 23100109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 23100109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 23100110\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 23100110\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100MESH (BHN BAKU SUPLEMEN) COA 6AX2304047,6AX2304048\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS BP2009/E330 30-100MESH (BHN BAKU SUPLEMEN) COA 6AX2304047,6AX2304048\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID S 67 F (BHN BAKU SUPPLEMEN) COA 576200-2230040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232011\", \"uraian\": \"LIPOID S 67 F (BHN BAKU SUPPLEMEN) COA 576200-2230040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA-TOCOPHEROL (BHN BAKU KOSMETIK) COA 01230107ES\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA-TOCOPHEROL (BHN BAKU KOSMETIK) COA 01230107ES\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL02211116 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU MAKANAN) COA TL02211116 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12301007 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12301007 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12301007 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12301007 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT23010170 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT23010170 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000210457 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000210457 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ21210865 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ21210865 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT22100034 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT22100034 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT23010170 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT23010170 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02212492 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02212492 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02212492,UE02301044 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02212492,UE02301044 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0041495 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0041495 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL 50 L (BHN BAKU KOSMETIK) COA TL02211634,TL02212644 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL 50 L (BHN BAKU KOSMETIK) COA TL02211634,TL02212644 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02210111,TL02211116 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02210111,TL02211116 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL 75 L (BHN BAKU KOSMETIK) COA TL02210334 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL 75 L (BHN BAKU KOSMETIK) COA TL02210334 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000209966,0000209971 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000209966,0000209971 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323020371\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323020371\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF23013003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF23013003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02206017 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE02206017 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02112813 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02112813 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211042 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211042 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323020371 S/D 0323020373\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323020371 S/D 0323020373\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000209971 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000209971 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3094598\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3094598\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3094598\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3094598\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MR VP BROTH 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 3045918\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MR VP BROTH 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 3045918\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2334621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2334621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL DIFCO AGAR 10KG (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3004841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PAIL DIFCO AGAR 10KG (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3004841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD AGAR MODIFIED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2060412\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD AGAR MODIFIED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2060412\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YPD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2305146\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE YPD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2305146\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3039541\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3039541\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2343200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2343200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3039541\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3039541\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3013742\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3013742\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIADIS MSRV 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3107304\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIADIS MSRV 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3107304\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2343200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2343200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2117655\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2117655\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3052527\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3052527\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2271456\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2271456\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3086104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3086104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2362182\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2362182\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACB FRUIT MIX OR (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMBROXOL HYDROCHLORIDE PH.EUR. (BHN BAKU OBAT) COA VBND230125\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"AMBROXOL HYDROCHLORIDE PH.EUR. (BHN BAKU OBAT) COA VBND230125\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22060046,UT22060047 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22060046,UT22060047 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPAGLOS (R) TABLET CORE SEALANT PRODUCT OPAGLOS... (BHN BAKU PEWARNA TABLET) COA DT745507\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPAGLOS (R) TABLET CORE SEALANT PRODUCT OPAGLOS... (BHN BAKU PEWARNA TABLET) COA DT745507\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPATINT (R) CONCENTRATED COLOR DISPERSION G-55286... (BHN BAKU PEWARNA TABLET) COA DT745803\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPATINT (R) CONCENTRATED COLOR DISPERSION G-55286... (BHN BAKU PEWARNA TABLET) COA DT745803\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPATINT (R) CONCENTRATED COLOR DISPERSION G-50659...(BHN BAKU PEWARNA TABLET) COA DT745806\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPATINT (R) CONCENTRATED COLOR DISPERSION G-50659...(BHN BAKU PEWARNA TABLET) COA DT745806\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GARLIC EXTRACT ALLICIN 1PCT POWDER (BHN BAKU OBAT) COA 230403C106601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"GARLIC EXTRACT ALLICIN 1PCT POWDER (BHN BAKU OBAT) COA 230403C106601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) CAS 1332-09-8\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) CAS 1332-09-8\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CANADIAN WILLOWHERB TM 5C PF (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CANADIAN WILLOWHERB TM 5C PF (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) CAS 50-70-4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALDAVINE TM 5X (BHN BAKU KOSMETIK) CAS 50-70-4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANABLUE TM PARABEN FREE (BHN BAKU KOSMETIK) CAS 50-70-4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LANABLUE TM PARABEN FREE (BHN BAKU KOSMETIK) CAS 50-70-4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELANOSTATINE TM 5 BG (50PPM) (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MELANOSTATINE TM 5 BG (50PPM) (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784021665N (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784021665N (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784021777P (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784021777P (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ISDN 10PCT IN NACL (DISPERSION) (BHN BAKU OBAT) COA 2305377\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"ISDN 10PCT IN NACL (DISPERSION) (BHN BAKU OBAT) COA 2305377\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRASIL DM350 A2 (BHN BAKU KOSMETIK) COA 2313WKW615,2319WKW315\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100090\", \"uraian\": \"MIRASIL DM350 A2 (BHN BAKU KOSMETIK) COA 2313WKW615,2319WKW315\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANNITOL USP/EP (BHN BAKU OBAT) COA 122302963,122302964\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054300\", \"uraian\": \"MANNITOL USP/EP (BHN BAKU OBAT) COA 122302963,122302964\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHARMABURST (R) 500 (BHN BAKU OBAT) COA 122302870\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069099\", \"uraian\": \"PHARMABURST (R) 500 (BHN BAKU OBAT) COA 122302870\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHARMABURST (R) C1 (BHN BAKU OBAT) COA 122202340\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069099\", \"uraian\": \"PHARMABURST (R) C1 (BHN BAKU OBAT) COA 122202340\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 20 (BHN BAKU SUPPLEMEN) COA 122302511\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 20 (BHN BAKU SUPPLEMEN) COA 122302511\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA076233,ROA074235,ROA076233,ROA....\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA076233,ROA074235,ROA076233,ROA....\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPAGLOS 6000 WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET) COA DT736523,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPAGLOS 6000 WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET) COA DT736523,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WASTAR TM LAVENDER (BHN BAKU KOSMETIK) CAS 90063-37-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"WASTAR TM LAVENDER (BHN BAKU KOSMETIK) CAS 90063-37-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464161453\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464161453\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464151591\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464151591\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464161453\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464161453\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E4M PREMIUM HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464213620\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E4M PREMIUM HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464213620\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464207195\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464207195\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100 PREMIUM LV HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464292878\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100 PREMIUM LV HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464292878\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA D180L8P002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM CR HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA D180L8P002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464207191\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464207191\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BUDESONIDE MICRONIZED (BHN BAKU OBAT) COA NB3038M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"BUDESONIDE MICRONIZED (BHN BAKU OBAT) COA NB3038M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOSWELLIA SERRATA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 22T0031000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BOSWELLIA SERRATA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 22T0031000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KP-578 (16KG) (BHN BAKU KOSMETIK) CAS 1802167-80-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KP-578 (16KG) (BHN BAKU KOSMETIK) CAS 1802167-80-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3006876,30\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3006876,30\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3104591\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3104591\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BILBERRY(V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPPLEMEN) COA 23S0052203 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BILBERRY(V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPPLEMEN) COA 23S0052203 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BUTCHERBROOM DRY HYDR EX 9-11PCT (BHN BAKU SUPLEMEN) COA 22B0070500 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BUTCHERBROOM DRY HYDR EX 9-11PCT (BHN BAKU SUPLEMEN) COA 22B0070500 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23B0027400 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23B0027400 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23B0027500 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23B0027500 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DS-CERAMIDE Y3S (BHN BAKU KOSMETIK) COA CSLD04\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29241990\", \"uraian\": \"DS-CERAMIDE Y3S (BHN BAKU KOSMETIK) COA CSLD04\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 23100265\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29395900\", \"uraian\": \"DIMENHYDRINATE (BHN BAKU OBAT) COA 23100265\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 23100268\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29395900\", \"uraian\": \"DIMENHYDRINATE (BHN BAKU OBAT) COA 23100268\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 23100270\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29395900\", \"uraian\": \"DIMENHYDRINATE (BHN BAKU OBAT) COA 23100270\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 23100270\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29395900\", \"uraian\": \"DIMENHYDRINATE (BHN BAKU OBAT) COA 23100270\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 23100271\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29395900\", \"uraian\": \"DIMENHYDRINATE (BHN BAKU OBAT) COA 23100271\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 23100265\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29395900\", \"uraian\": \"DIMENHYDRINATE (BHN BAKU OBAT) COA 23100265\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISONE USP (BHN BAKU OBAT) COA NPD230505\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISONE USP (BHN BAKU OBAT) COA NPD230505\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE CEP (BHN BAKU OBAT) COA NUD230301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE CEP (BHN BAKU OBAT) COA NUD230301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE CEP (BHN BAKU OBAT) COA NUD230301, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE CEP (BHN BAKU OBAT) COA NUD230301, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) CAS 7631-86-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNSIL TIN50 (BHN BAKU KOSMETIK) CAS 7631-86-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WORLEE ALOE PURE BALANCE IF 200X FD (BAHAN BAKU KOSMETIK) COA 512290 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"WORLEE ALOE PURE BALANCE IF 200X FD (BAHAN BAKU KOSMETIK) COA 512290 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NONIVAMIDE (SYNTHETIC CAPSAICIN) (BHN BAKU KOSMETIK) COA 20230417\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29241990\", \"uraian\": \"NONIVAMIDE (SYNTHETIC CAPSAICIN) (BHN BAKU KOSMETIK) COA 20230417\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0723010030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHS (BHN BAKU KOSMETIK) COA 0723010030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0723010030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHS (BHN BAKU KOSMETIK) COA 0723010030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000210451,0000211245 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000210451,0000211245 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211042 S/D UE02211044 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211042 S/D UE02211044 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02211116 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02211116 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22110352 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22110352 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000211245 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000211245 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211042 S/D UE02211044 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211042 S/D UE02211044 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22110352 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22110352 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL ZX (BHN BAKU KOSMETIK) COA 200206012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL ZX (BHN BAKU KOSMETIK) COA 200206012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT22100034,UT22100036 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT22100034,UT22100036 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02211116 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02211116 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92303403 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92303403 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 103047 - D (BHN BAKU MAKANAN) COA XW92304310 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 103047 - D (BHN BAKU MAKANAN) COA XW92304310 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN MINERAL PREMIX - JELLY POWDER V2 (BHN BAKU MAKANAN) COA XW92304312 S/D XW92304313 (POST\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN MINERAL PREMIX - JELLY POWDER V2 (BHN BAKU MAKANAN) COA XW92304312 S/D XW92304313 (POST\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V 427502 (BHN BAKU MAKANAN) COA XW92304311 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"V 427502 (BHN BAKU MAKANAN) COA XW92304311 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DWI-BI (BHN BAKU MAKANAN) COA XW92305001, XW92305002 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"DWI-BI (BHN BAKU MAKANAN) COA XW92305001, XW92305002 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12301007 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12301007 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20220801 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20220801 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ112211023 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ112211023 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROSE ANHYDROUS (BHN BAKU OBAT UTK PAKAN TERNAK) COA XWA230509\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17023010\", \"uraian\": \"DEXTROSE ANHYDROUS (BHN BAKU OBAT UTK PAKAN TERNAK) COA XWA230509\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTISHARP NAT. ZEA 5PCT CWS/S-TG (BHN BAKU MAKANAN) COA EW23035003 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"OPTISHARP NAT. ZEA 5PCT CWS/S-TG (BHN BAKU MAKANAN) COA EW23035003 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTISHARP NAT. ZEA 5PCT CWS/S-TG (BHN BAKU MAKANAN) COA EW23035003 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"OPTISHARP NAT. ZEA 5PCT CWS/S-TG (BHN BAKU MAKANAN) COA EW23035003 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTISHARP NAT. ZEA 5PCT CWS/S-TG (BHN BAKU MAKANAN) COA EW23035003 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"OPTISHARP NAT. ZEA 5PCT CWS/S-TG (BHN BAKU MAKANAN) COA EW23035003 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRIED ALUMINUM HYDROXIDE GEL USP (BHN BAKU OBAT) COA 102358001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"DRIED ALUMINUM HYDROXIDE GEL USP (BHN BAKU OBAT) COA 102358001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GUAIFENESIN USP (B. BAKU OBAT) COA GGE-2302024 S/D GGE-2302030, GGE-2303031 S/D GGE-2303037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29094900\", \"uraian\": \"GUAIFENESIN USP (B. BAKU OBAT) COA GGE-2302024 S/D GGE-2302030, GGE-2303031 S/D GGE-2303037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT. A PALM. 1.0 M + VIT. D3 100'000 (BHN BAKU MAKANAN) COA UT22120164 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VIT. A PALM. 1.0 M + VIT. D3 100'000 (BHN BAKU MAKANAN) COA UT22120164 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERNFINE 100 N (BHN BAKU MAKANAN) COA N51-3515064 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232011\", \"uraian\": \"STERNFINE 100 N (BHN BAKU MAKANAN) COA N51-3515064 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEO EXTRAPONE (R) LEMON (BHN BAKU KOSMETIK) COA 10300021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"NEO EXTRAPONE (R) LEMON (BHN BAKU KOSMETIK) COA 10300021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTOCONCENTROLE (R) CAMOMILE (BHN BAKU KOSMETIK) COA 10300051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"PHYTOCONCENTROLE (R) CAMOMILE (BHN BAKU KOSMETIK) COA 10300051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACTIPONE (R) WHITE TEA GW (BHN BAKU KOSMETIK) COA 10300053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"ACTIPONE (R) WHITE TEA GW (BHN BAKU KOSMETIK) COA 10300053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYDROLITE (R) 6 (BHN BAKU KOSMETIK) COA 10301086\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053900\", \"uraian\": \"HYDROLITE (R) 6 (BHN BAKU KOSMETIK) COA 10301086\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NORIT SX SUPER E 153 (BHN BAKU KOSMETIK) COA 5358323\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38021010\", \"uraian\": \"NORIT SX SUPER E 153 (BHN BAKU KOSMETIK) COA 5358323\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG230428 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG230428 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) TF TIO2 FREE MOISTURE BARRIER FILM... (BHN BAKU PEWARNA TABLET) CAS 9004-64-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) TF TIO2 FREE MOISTURE BARRIER FILM... (BHN BAKU PEWARNA TABLET) CAS 9004-64-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NUTRAFINISH (R) TIO2 FREE MOISTURE BARRIER FILM...(BHN BAKU PEWARNA TABLET) CAS 9004-64-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"NUTRAFINISH (R) TIO2 FREE MOISTURE BARRIER FILM...(BHN BAKU PEWARNA TABLET) CAS 9004-64-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NUTRAFINISH (R) TIO2 FREE COATING 176U210026 GREEN... (BHN BAKU PEWARNA TABLET) CAS 471-34-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"NUTRAFINISH (R) TIO2 FREE COATING 176U210026 GREEN... (BHN BAKU PEWARNA TABLET) CAS 471-34-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E4M PREMIUM CR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA 2464213548\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E4M PREMIUM CR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA 2464213548\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUGLETS (R) SUGAR SPHERES PF006... (BHN BAKU PEWARNA TABLET) COA ST519552\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"SUGLETS (R) SUGAR SPHERES PF006... (BHN BAKU PEWARNA TABLET) COA ST519552\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHONDROITIN SULFATE - A ORAL (BHN BAKU OBAT) COA 070422CSA (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"CHONDROITIN SULFATE - A ORAL (BHN BAKU OBAT) COA 070422CSA (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 220513 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33012990\", \"uraian\": \"AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 220513 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANUKA HONEY EXTRACT GL (WATSON) (BHN BAKU KOSMETIK) COA 230408\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MANUKA HONEY EXTRACT GL (WATSON) (BHN BAKU KOSMETIK) COA 230408\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN549775\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN549775\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN549816\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN549816\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN549769\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN549769\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN549616\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN549616\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC211108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC211108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA P-78\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA P-78\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARACETAMOL USP43 (BHN BAKU PAKAN HEWAN) COA 2310578,2351000,2351034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"PARACETAMOL USP43 (BHN BAKU PAKAN HEWAN) COA 2310578,2351000,2351034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANTOPRAZOLE SODIUM (STERILE) (BAHAN BAKU OBAT) COA SI/PPZ/00750523\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"PANTOPRAZOLE SODIUM (STERILE) (BAHAN BAKU OBAT) COA SI/PPZ/00750523\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM REGULAR GRADE (BHN BAKU OBAT) COA 2304665, 2304668 S/D 2304670\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331900\", \"uraian\": \"METAMIZOLE SODIUM REGULAR GRADE (BHN BAKU OBAT) COA 2304665, 2304668 S/D 2304670\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREGABALIN (BHN BAKU OBAT) COA PU1110423\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"PREGABALIN (BHN BAKU OBAT) COA PU1110423\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA731971\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA731971\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007...(BHN BAKU PEWARNA TABLET) COA GA731972\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007...(BHN BAKU PEWARNA TABLET) COA GA731972\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G62343...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G62343...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K580000...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K580000...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 21K58794...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 21K58794...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G65197...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G65197...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A62337...(BHN BAKU PEWARNA TABLET) COA GA732113\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A62337...(BHN BAKU PEWARNA TABLET) COA GA732113\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A62337...(BHN BAKU PEWARNA TABLET) COA GA732113\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A62337...(BHN BAKU PEWARNA TABLET) COA GA732113\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND (R) PB-66511 BROWN (BHN BAKU PEWARNA TABLET) COA GA731979\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"PIGMENT BLEND (R) PB-66511 BROWN (BHN BAKU PEWARNA TABLET) COA GA731979\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O92157...(BHN BAKU PEWARNA TABLET) COA GA731976\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O92157...(BHN BAKU PEWARNA TABLET) COA GA731976\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650018...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650018...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019..(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019..(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRIED ALUMINUM HYDROXIDE GEL USP (BHN BAKU OBAT) COA 102358001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"DRIED ALUMINUM HYDROXIDE GEL USP (BHN BAKU OBAT) COA 102358001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2023050501 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2023050501 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS S-CAQ (BHN BAKU KOSMETIK) CAS 169590-74-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS S-CAQ (BHN BAKU KOSMETIK) CAS 169590-74-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) CAS 638164-47-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROTESIL LH (BHN BAKU KOSMETIK) CAS 638164-47-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) CAS 638164-47-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROTESIL LH (BHN BAKU KOSMETIK) CAS 638164-47-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 100 CAN 10 KG (BHN BAKU KOSMETIK) CAS 55965-84-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 100 CAN 10 KG (BHN BAKU KOSMETIK) CAS 55965-84-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 830 CAN 10 KG (BHN BAKU KOSMETIK) CAS 55965-84-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 830 CAN 10 KG (BHN BAKU KOSMETIK) CAS 55965-84-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIDIN DO CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIDIN DO CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP11623,MTP11623 (POST BORDE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP11623,MTP11623 (POST BORDE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RUGENER DREIKRONEN HEILKREIDE 25K (BHN BAKU KOSMETIK) COA 6012325400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25090000\", \"uraian\": \"RUGENER DREIKRONEN HEILKREIDE 25K (BHN BAKU KOSMETIK) COA 6012325400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUGLETS (R) SUGAR SPHERES PF006... (BHN BAKU PEWARNA TABLET) COA ST519552\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"SUGLETS (R) SUGAR SPHERES PF006... (BHN BAKU PEWARNA TABLET) COA ST519552\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA076233,ROA074235,ROA076233,ROA....\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA076233,ROA074235,ROA076233,ROA....\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLUNARIZINE DIHYDROCHLORIDE BP ( BAHAN BAKU OBAT ) COA FLU/04231003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"FLUNARIZINE DIHYDROCHLORIDE BP ( BAHAN BAKU OBAT ) COA FLU/04231003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334877 S/D B334879\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX POWDER (BHN BAKU OBAT) COA B334877 S/D B334879\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100 PREMIUM HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464331338\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100 PREMIUM HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464331338\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100 PREMIUM HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464340948\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100 PREMIUM HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464340948\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP13223 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP13223 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP09623 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP09623 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRAYPHOS MKP FG 25K BG (BHN BAKU KOSMETIK) COA 22-280-01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PRAYPHOS MKP FG 25K BG (BHN BAKU KOSMETIK) COA 22-280-01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE USP (NIACINAMIDE USP/EP) (BHN BAKU KOSMETIK) COA 23-24/NMD[P]/00061S/D 00065\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE USP (NIACINAMIDE USP/EP) (BHN BAKU KOSMETIK) COA 23-24/NMD[P]/00061S/D 00065\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 57-50-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 57-50-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55089..(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55089..(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ20912357,UQ20912367,UQ20912368 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ20912357,UQ20912367,UQ20912368 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT22100176 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT22100176 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3 PCT (BHN BAKU SUPLEMEN) COA WB22050068, WB22050071 (POST\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3 PCT (BHN BAKU SUPLEMEN) COA WB22050068, WB22050071 (POST\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ20912369 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ20912369 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS0800523, HS0810523\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS0800523, HS0810523\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0041495 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0041495 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT22070070 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT22070070 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30316053 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30316053 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02302017 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02302017 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22060046 S/D UT22060048 (POST BORDE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22060046 S/D UT22060048 (POST BORDE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL02303830,TL02304900 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU MAKANAN) COA TL02303830,TL02304900 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT23030026 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT23030026 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP23044768,XP23044769\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP23044768,XP23044769\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIROXICAM (BAHAN BAKU OBAT ) COA PRX2023001M (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"PIROXICAM (BAHAN BAKU OBAT ) COA PRX2023001M (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CARBAZOCHROME SODIUM SULFONATE ORAL G (BHN BAKU OBAT)COA AC21010/21021,AC21101/21107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"CARBAZOCHROME SODIUM SULFONATE ORAL G (BHN BAKU OBAT)COA AC21010/21021,AC21101/21107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340457\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX COMPACTED (BHN BAKU OBAT) COA B340457\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100MESH (BHN BAKU SUPLEMEN) COA 3AX2305001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS BP2009/E330 30-100MESH (BHN BAKU SUPLEMEN) COA 3AX2305001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829011771P (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"B-WHITE TM (BHN BAKU KOSMETIK) COA 829011771P (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769011334N (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769011334N (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXO-P TM (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EXO-P TM (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784021777P (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784021777P (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ABYSSINE 657 (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) CAS 50-70-4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALDAVINE TM 5X (BHN BAKU KOSMETIK) CAS 50-70-4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANACHRYS 2B PF (PRESERVATIVE (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LANACHRYS 2B PF (PRESERVATIVE (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029946N (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029946N (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CELLOSIZE TM TEXTURE F4M HYDROXYPROPYL... (BHN BAKU KOSMETIK) COA F410M46D31\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"CELLOSIZE TM TEXTURE F4M HYDROXYPROPYL... (BHN BAKU KOSMETIK) COA F410M46D31\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JOJOBA OIL VIRGIN LOW ODOUR (BHN BAKU KOSMETIK) COA 162763\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15159011\", \"uraian\": \"JOJOBA OIL VIRGIN LOW ODOUR (BHN BAKU KOSMETIK) COA 162763\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN548730\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN548730\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU KOSMETIK) COA 23E1202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE NA PELLETS (BHN BAKU KOSMETIK) COA 23E1202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU KOSMETIK) COA 23E1205\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE NA PELLETS (BHN BAKU KOSMETIK) COA 23E1205\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU KOSMETIK) COA 21E0801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE NA PELLETS (BHN BAKU KOSMETIK) COA 21E0801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU KOSMETIK) COA 23E1207\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE NA PELLETS (BHN BAKU KOSMETIK) COA 23E1207\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU KOSMETIK) COA 23E1603\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE NA PELLETS (BHN BAKU KOSMETIK) COA 23E1603\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE BM PELLETS (BHN BAKU KOSMETIK) COA 22E4302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE BM PELLETS (BHN BAKU KOSMETIK) COA 22E4302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRANOL ULTRA C-32 MB 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP305236MB\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34024990\", \"uraian\": \"MIRANOL ULTRA C-32 MB 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP305236MB\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FAIR FOR LIFE REFINED SHEA (BHN BAKU KOSMETIK) COA 0000046155\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15159011\", \"uraian\": \"FAIR FOR LIFE REFINED SHEA (BHN BAKU KOSMETIK) COA 0000046155\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRIED ALUMINUM HYDROXIDE (BHN BAKU OBAT) COA 102360002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"DRIED ALUMINUM HYDROXIDE (BHN BAKU OBAT) COA 102360002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLOWER ACIDS (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"FLOWER ACIDS (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512310,G02512317\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47069200\", \"uraian\": \"SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512310,G02512317\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG- CO230501 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG- CO230501 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-230501 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-230501 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTELENE COMPLEXE EGX 773 (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTELENE COMPLEXE EGX 773 (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HEBELYS (BHN BAKU KOSMETIK) CAS 504-63-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HEBELYS (BHN BAKU KOSMETIK) CAS 504-63-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 INF OIL (BHN BAKU SUPPLEMEN) COA TS00022014 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 INF OIL (BHN BAKU SUPPLEMEN) COA TS00022014 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2271456\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2271456\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1097873\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1097873\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 3072748\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 3072748\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2362152\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2362152\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3004799\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3004799\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2263336\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2263336\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MIL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283882\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MIL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283882\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 2143333\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 2143333\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2304673,3040504\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2304673,3040504\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2088727\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2088727\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE KF STREPTOCOCCUS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2214351\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE KF STREPTOCOCCUS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2214351\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3052527\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3052527\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2201317\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2201317\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2291792\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2291792\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2160342\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2160342\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2158117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2158117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2172755\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2172755\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2066423\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2066423\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2067241\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2067241\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2104098\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2104098\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2188691,2293109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2188691,2293109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2207189\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2207189\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2011124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2011124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2214270\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2214270\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 3039541\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 3039541\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2265467\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2265467\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 2074829\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 2074829\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2236789\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2236789\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2229544\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2229544\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1285556\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1285556\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1285556\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1285556\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2269093\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2269093\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2152796\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2152796\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA U/PENGEMBANGAN MIKROORGANISME)BATCH 3094174\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA U/PENGEMBANGAN MIKROORGANISME)BATCH 3094174\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02F053M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02F053M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2123842,....\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2123842,....\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEUCOCYANIDINS (BHN BAKU SUPPLEMEN) COA 928/34, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"LEUCOCYANIDINS (BHN BAKU SUPPLEMEN) COA 928/34, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MICONAZOLE NITRATE (BHN BAKU OBAT ) COA H20230301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"MICONAZOLE NITRATE (BHN BAKU OBAT ) COA H20230301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-230301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-230301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LISINOPRIL DIHYDRATE USP (BAHAN BAKU OBAT ) COA C5170-23-042R\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"LISINOPRIL DIHYDRATE USP (BAHAN BAKU OBAT ) COA C5170-23-042R\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MICONAZOLE NITRATE (BHN BAKU OBAT ) COA H20230301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"MICONAZOLE NITRATE (BHN BAKU OBAT ) COA H20230301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ADEPLUMP (BHN BAKU KOSMETIK) COA 230139 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ADEPLUMP (BHN BAKU KOSMETIK) COA 230139 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 230849 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 230849 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 222900 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"MANDARINCLEAR (BHN BAKU KOSMETIK) COA 222900 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 230464 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 230464 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 230386 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 230386 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 222516 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"IZAYOI (BHN BAKU KOSMETIK) COA 222516 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 230453 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329900\", \"uraian\": \"K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 230453 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for YUZU CERAMIDE B (BHN BAKU KOSMETIK) COA 230294 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"YUZU CERAMIDE B (BHN BAKU KOSMETIK) COA 230294 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EMALEX OD-16 (BHN BAKU KOSMETIK) COA OD-16665\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34024210\", \"uraian\": \"EMALEX OD-16 (BHN BAKU KOSMETIK) COA OD-16665\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT23020002 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT23020002 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT23030002 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT23030002 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT23020002 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT23020002 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT23020003 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT23020003 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02302016 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02302016 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT23031233,UT23031234 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT23031233,UT23031234 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL02303830 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU MAKANAN) COA TL02303830 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02303830 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02303830 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00820740\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"AMPHISOL K (BHN BAKU KOSMETIK) COA VE00820740\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT23030003,UT23030004 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT23030003,UT23030004 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT23030089 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT23030089 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT22070008 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT22070008 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT22070008 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT22070008 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT22070008 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT22070008 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0041495 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0041495 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000211841 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000211841 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SURELEASE (R) ETHYLCELLULOSE DISPERSION TYPE B NF E-7... (BHN BAKU PEWARNA TABLET) COA IN549961\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"SURELEASE (R) ETHYLCELLULOSE DISPERSION TYPE B NF E-7... (BHN BAKU PEWARNA TABLET) COA IN549961\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100 PREMIUM LV DC2 HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA 24641866\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100 PREMIUM LV DC2 HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA 24641866\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID PPL-600 (BHN BAKU SUPPLEMEN) COA 577200-2230235 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232011\", \"uraian\": \"LIPOID PPL-600 (BHN BAKU SUPPLEMEN) COA 577200-2230235 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NOMEGESTROL ACETATE (BHN BAKU OBAT) COA ND1116\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372300\", \"uraian\": \"NOMEGESTROL ACETATE (BHN BAKU OBAT) COA ND1116\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PI22030014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349920\", \"uraian\": \"PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PI22030014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU SUPPLEMEN) COA 23E0309\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE NA PELLETS (BHN BAKU SUPPLEMEN) COA 23E0309\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101851923\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA L101851923\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 23LNC0321SQ375\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101990\", \"uraian\": \"NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 23LNC0321SQ375\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOPROFEN (BHN BAKU OBAT) COA 203201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29183000\", \"uraian\": \"KETOPROFEN (BHN BAKU OBAT) COA 203201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOPROFEN (BHN BAKU OBAT) COA 203201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29183000\", \"uraian\": \"KETOPROFEN (BHN BAKU OBAT) COA 203201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55089...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55089...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CETRIMIDE CETRIMIDE GEN (BHN BAKU KOSMETIK) CAS 1119-97-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CETRIMIDE CETRIMIDE GEN (BHN BAKU KOSMETIK) CAS 1119-97-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SNAIL SECRETION FILTRA (BHN BAKU KOSMETIK) COA SAFW-031553 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND SNAIL SECRETION FILTRA (BHN BAKU KOSMETIK) COA SAFW-031553 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1230504 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1230504 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-FRGE PLUS (BHN BAKU KOSMETIK) COA CFRK-042812 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND BIO-FRGE PLUS (BHN BAKU KOSMETIK) COA CFRK-042812 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SENAS (BHN BAKU KOSMETIK) COA NASB-032912 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21022090\", \"uraian\": \"HYUNDAI BIOLAND SENAS (BHN BAKU KOSMETIK) COA NASB-032912 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-020443,030353\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-020443,030353\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND PINK PLANKTON EXTRACT (HD) (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND PINK PLANKTON EXTRACT (HD) (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND CUCURBITA EXTRACT (BHN BAKU KOSMETIK) COA CMB-011913 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND CUCURBITA EXTRACT (BHN BAKU KOSMETIK) COA CMB-011913 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-020963 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-020963 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-041013 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-041013 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA MAK114\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA MAK114\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N4O107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N4O107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-020443\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-020443\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID DC 97PCT (BHN BAKU SUPPLEMEN) COA HPG2302001 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID DC 97PCT (BHN BAKU SUPPLEMEN) COA HPG2302001 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOREALINE R PROTECT (BHN BAKU KOSMETIK) COA AM096136 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BOREALINE R PROTECT (BHN BAKU KOSMETIK) COA AM096136 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL (BHN BAKU KOSMETIK) CAS 37350-42-8\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL (BHN BAKU KOSMETIK) CAS 37350-42-8\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834011557N (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834011557N (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SELOHVITA C (BHN BAKU OBAT) COA 3131996\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28429010\", \"uraian\": \"SELOHVITA C (BHN BAKU OBAT) COA 3131996\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010098\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010098\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0723010030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHS (BHN BAKU KOSMETIK) COA 0723010030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY C (R) 50 (BHN BAKU KOSMETIK) COA UE02211125 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY C (R) 50 (BHN BAKU KOSMETIK) COA UE02211125 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060106,0523060007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060106,0523060007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P2C09QA000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL TX (BHN BAKU KOSMETIK) COA P2C09QA000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010098\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010098\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY C (R) 50 (BHN BAKU KOSMETIK) COA UE02202022 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY C (R) 50 (BHN BAKU KOSMETIK) COA UE02202022 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WORLEE ALOE PURE BALANCE IF 200X FD (BAHAN BAKU KOSMETIK) COA 512385 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"WORLEE ALOE PURE BALANCE IF 200X FD (BAHAN BAKU KOSMETIK) COA 512385 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELOT 64 (BHN BAKU SUPPLEMEN) COA 193923\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELOT 64 (BHN BAKU SUPPLEMEN) COA 193923\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRANSCUTOL P (BHN BAKU SUPPLEMEN) COA 194348\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TRANSCUTOL P (BHN BAKU SUPPLEMEN) COA 194348\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPRITOL 888 ATO (BHN BAKU SUPPLEMEN) COA 195027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"COMPRITOL 888 ATO (BHN BAKU SUPPLEMEN) COA 195027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LABRAFIL M 1944 CS BF (BHN BAKU SUPPLEMEN) COA 195185\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LABRAFIL M 1944 CS BF (BHN BAKU SUPPLEMEN) COA 195185\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EMULIUM MELLIFERA MB (BHN BAKU KOSMETIK) COA 195131\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"EMULIUM MELLIFERA MB (BHN BAKU KOSMETIK) COA 195131\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22050239,WB22050240 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22050239,WB22050240 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SIMETHICONE (BHN BAKU OBAT) COA 22075\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"SIMETHICONE (BHN BAKU OBAT) COA 22075\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM HYDROXIDE USP (BHN BAKU OBAT) COA 102369001,102369005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"MAGNESIUM HYDROXIDE USP (BHN BAKU OBAT) COA 102369001,102369005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA G01641UG\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA G01641UG\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0078436\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0078436\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) CAS 233683-84-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) CAS 233683-84-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) CAS 7631-86-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNSIL TIN50 (BHN BAKU KOSMETIK) CAS 7631-86-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51469...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51469...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) KB LOW VISCOSITY FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 151-21-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) KB LOW VISCOSITY FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 151-21-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G57708...(BHN BAKU PEWARNA TABLET) CAS 12227-89-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G57708...(BHN BAKU PEWARNA TABLET) CAS 12227-89-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B84893...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03B84893...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 02F52182...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 02F52182...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F19250...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F19250...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NYSTATIN MICRONIZED (BHN BAKU OBAT) COA C132333\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NYSTATIN MICRONIZED (BHN BAKU OBAT) COA C132333\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MICRO CRYSTALLINE CELLULOSE USP, ACCEL 102 (BHN BAKU SUPPLEMEN) COA D104230369 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39129090\", \"uraian\": \"MICRO CRYSTALLINE CELLULOSE USP, ACCEL 102 (BHN BAKU SUPPLEMEN) COA D104230369 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MICRO CRYSTALLINE CELLULOSE USP, ACCEL 102 (BHN BAKU SUPPLEMEN) COA D104230370 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39129090\", \"uraian\": \"MICRO CRYSTALLINE CELLULOSE USP, ACCEL 102 (BHN BAKU SUPPLEMEN) COA D104230370 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) CAS 68937-54-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6017 (17KG) (BHN BAKU KOSMETIK) CAS 68937-54-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KP-561P (16KG) (BHN BAKU KOSMETIK) CAS 329236-76-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KP-561P (16KG) (BHN BAKU KOSMETIK) CAS 329236-76-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-15 (16KG) (BHN BAKU KOSMETIK) CAS 541-02-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSG-15 (16KG) (BHN BAKU KOSMETIK) CAS 541-02-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIMAGNESIUM DICITRATE, ANHYDROUS..(BHN BAKU MAKANAN) COA 3131353 S/D 31313536\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181590\", \"uraian\": \"TRIMAGNESIUM DICITRATE, ANHYDROUS..(BHN BAKU MAKANAN) COA 3131353 S/D 31313536\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEARL ESSENCES 35178MJ (BHN BAKU KOSMETIK) COA D3230092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32061910\", \"uraian\": \"PEARL ESSENCES 35178MJ (BHN BAKU KOSMETIK) COA D3230092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 4-HYDROXYACETOPHENONE (BHN BAKU KOSMETIK) COA 202305001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29145000\", \"uraian\": \"4-HYDROXYACETOPHENONE (BHN BAKU KOSMETIK) COA 202305001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) COA 304271 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) COA 304271 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO (R) LUTEIN 20 PCT SAF (BHN BAKU SUPPLEMEN) COA UE02304021 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO (R) LUTEIN 20 PCT SAF (BHN BAKU SUPPLEMEN) COA UE02304021 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT23040009 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT23040009 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE, TYPE 100 (BHN BAKU SUPPLEMEN) COA UT23030066 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE, TYPE 100 (BHN BAKU SUPPLEMEN) COA UT23030066 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 CRYST FOOD GRADE (BHN BAKU KOSMETIK) COA 012303107 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 CRYST FOOD GRADE (BHN BAKU KOSMETIK) COA 012303107 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SYN(R)-AKE (BHN BAKU KOSMETIK) COA UE02210016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SYN(R)-AKE (BHN BAKU KOSMETIK) COA UE02210016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BISOPROLOL FUMARATE USP (BHN BAKU OBAT) COA LT-OBFA/002/22-23\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"BISOPROLOL FUMARATE USP (BHN BAKU OBAT) COA LT-OBFA/002/22-23\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID S 20 (BHN BAKU SUPPLEMEN) COA 572000-2220141\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232011\", \"uraian\": \"LIPOID S 20 (BHN BAKU SUPPLEMEN) COA 572000-2220141\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS GLUCONATE (BHN BAKU OBAT) COA 3127061 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"FERROUS GLUCONATE (BHN BAKU OBAT) COA 3127061 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/04/220423 S/D 240423\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/04/220423 S/D 240423\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CROSCARMELLOSE SODIUM USP-NF (BHN BAKU OBAT) COA ACRMC/05/020523, 060523, 070523 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39129090\", \"uraian\": \"CROSCARMELLOSE SODIUM USP-NF (BHN BAKU OBAT) COA ACRMC/05/020523, 060523, 070523 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE BP (BHN BAKU OBAT) COA ASGP/05/140523 S/D 150523\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE BP (BHN BAKU OBAT) COA ASGP/05/140523 S/D 150523\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA-TOCOPHEROL (BHN BAKU KOSMETIK) COA 01230502ES (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA-TOCOPHEROL (BHN BAKU KOSMETIK) COA 01230502ES (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SALBUTAMOL SULFATE BP (BHN BAKU OBAT) COA 023E067 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29225090\", \"uraian\": \"SALBUTAMOL SULFATE BP (BHN BAKU OBAT) COA 023E067 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROCATEROL HCL HEMIHYDRATE MICRONIZED (BHN BAKU OBAT) COA 86032721M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29337900\", \"uraian\": \"PROCATEROL HCL HEMIHYDRATE MICRONIZED (BHN BAKU OBAT) COA 86032721M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340465 S/D B340467\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX COMPACTED (BHN BAKU OBAT) COA B340465 S/D B340467\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE USP (BAHAN BAKU OBAT) COA ASG/05/180523,ASG/04/240423\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE USP (BAHAN BAKU OBAT) COA ASG/05/180523,ASG/04/240423\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CROSCARMELLOSE SODIUM USP-NF (BHN BAKU OBAT) COA ACRMC/05/310523\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39129090\", \"uraian\": \"CROSCARMELLOSE SODIUM USP-NF (BHN BAKU OBAT) COA ACRMC/05/310523\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/06/050623,060623\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123100\", \"uraian\": \"CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/06/050623,060623\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE BP (BAHAN BAKU OBAT) COA ASGP/05/270523,290523,300523\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE BP (BAHAN BAKU OBAT) COA ASGP/05/270523,290523,300523\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP23064006,XP23064007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP23064006,XP23064007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM PROPIONATE 20 KG (BHN BAKU PAKAN TERNAK) COA 23031708 S/D 23031758\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29155000\", \"uraian\": \"CALCIUM PROPIONATE 20 KG (BHN BAKU PAKAN TERNAK) COA 23031708 S/D 23031758\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2031316\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2031316\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2270988\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2270988\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2179381\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2179381\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2484059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2484059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2461100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2461100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1124396\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1124396\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1124396\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1124396\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2094434\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2094434\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1124396\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1124396\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2484059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2484059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASAMINO ACIDS EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2208138\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASAMINO ACIDS EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2208138\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for UCARE POLYMER JR-125 PC 68.04K KNN (BHN BAKU KOSMETIK) COA D632M5OMBC\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"UCARE POLYMER JR-125 PC 68.04K KNN (BHN BAKU KOSMETIK) COA D632M5OMBC\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIEL ACACIA HONGRIE IONISE 20 (BHN BAKU KOSMETIK) COA 20384 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029099\", \"uraian\": \"MIEL ACACIA HONGRIE IONISE 20 (BHN BAKU KOSMETIK) COA 20384 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA100233,ROA095236,ROA.(POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA100233,ROA095236,ROA.(POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX (R) COMPACTED CEFADROXIL (BHN BAKU OBAT) COA B340484,B340490,B340491\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX (R) COMPACTED CEFADROXIL (BHN BAKU OBAT) COA B340484,B340490,B340491\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG230526,MCVG230519 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG230526,MCVG230519 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA100234,ROA100233,... (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA100234,ROA100233,... (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM CARBONATE, HEAVY, POWDER... (BHN BAKU OBAT) COA 3122196 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28369990\", \"uraian\": \"MAGNESIUM CARBONATE, HEAVY, POWDER... (BHN BAKU OBAT) COA 3122196 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIPOTASSIUM PHOSPHATE POWDER (BHN BAKU MAKANAN) COA 3128287,3131441 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28352400\", \"uraian\": \"DIPOTASSIUM PHOSPHATE POWDER (BHN BAKU MAKANAN) COA 3128287,3131441 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SELOHVITA C (BHN BAKU OBAT) COA 3129181\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28429010\", \"uraian\": \"SELOHVITA C (BHN BAKU OBAT) COA 3129181\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIPOTASSIUM CITRATE 1-HYDRATE, CRYST... (BHN BAKU OBAT) COA 3133037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"TRIPOTASSIUM CITRATE 1-HYDRATE, CRYST... (BHN BAKU OBAT) COA 3133037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM OXIDE, LIGHT, POWDER, BP 2023 (BHN BAKU SUPLEMEN) COA 3131441\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25199010\", \"uraian\": \"MAGNESIUM OXIDE, LIGHT, POWDER, BP 2023 (BHN BAKU SUPLEMEN) COA 3131441\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS GLUCONATE, POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3131114 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"FERROUS GLUCONATE, POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3131114 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS SULFATE, DRIED, POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3116763\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"FERROUS SULFATE, DRIED, POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3116763\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SELOHVITA C (BHN BAKU OBAT) COA 3129178\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28429010\", \"uraian\": \"SELOHVITA C (BHN BAKU OBAT) COA 3129178\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS SULFATE, DRIED, POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3128451\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"FERROUS SULFATE, DRIED, POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3128451\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POTASSIUM L-ASPARTATE 0,5-HYDRATE...(BHN BAKU OBAT) COA 3097137\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"POTASSIUM L-ASPARTATE 0,5-HYDRATE...(BHN BAKU OBAT) COA 3097137\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM ACETATE,POWDER,PURITY ACC (BHN BAKU SUPLEMEN) COA 3118785\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29152990\", \"uraian\": \"CALCIUM ACETATE,POWDER,PURITY ACC (BHN BAKU SUPLEMEN) COA 3118785\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM FEREDETATE, POWDER, BP 2023 (BHN BAKU SUPPLEMEN) COA 311934 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"SODIUM FEREDETATE, POWDER, BP 2023 (BHN BAKU SUPPLEMEN) COA 311934 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA ND1417M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA ND1417M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT23010011,UT23010028 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT23010011,UT23010028 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12302031 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12302031 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2207086 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2207086 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ20912369 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ20912369 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02103502 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02103502 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22120262 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22120262 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02206017 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02206017 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW92305340,XW92305339 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 C (BHN BAKU MAKANAN) COA XW92305340,XW92305339 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 1PCT CWS/M (BHN BAKU MAKANAN) COA UT22040024 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 1PCT CWS/M (BHN BAKU MAKANAN) COA UT22040024 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC230402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC230402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010362\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010362\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010362\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010362\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010362\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010362\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323020530,0323020532\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323020530,0323020532\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323020532\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323020532\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02211116 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02211116 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN/PHOSPHOLIPIDS (BAHAN BAKU SUPPLEMENT) COA 23B0046600 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SILYBIN/PHOSPHOLIPIDS (BAHAN BAKU SUPPLEMENT) COA 23B0046600 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2204084413\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2204084413\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPECWHITE VCE (BHN BAKU KOSMETIK) COA 20230501,20230502 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SPECWHITE VCE (BHN BAKU KOSMETIK) COA 20230501,20230502 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POTASSIUM L-ASPARTATE 0.5-HYDRATE (BHN BAKU OBAT) COA 3097137 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"POTASSIUM L-ASPARTATE 0.5-HYDRATE (BHN BAKU OBAT) COA 3097137 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM CALCIUM EDETATE (BHN BAKU OBAT) COA 3112656 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"SODIUM CALCIUM EDETATE (BHN BAKU OBAT) COA 3112656 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINC GLUCONATE POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3131245 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"ZINC GLUCONATE POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3131245 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERNFINE 100 N (BHN BAKU MAKANAN) COA N51-3615085 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232011\", \"uraian\": \"STERNFINE 100 N (BHN BAKU MAKANAN) COA N51-3615085 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101852123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA L101852123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP16923,MTP17023 (POST BORD\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP16923,MTP17023 (POST BORD\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA API HIGH PURITY 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP14823 (POST BO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA API HIGH PURITY 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP14823 (POST BO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA API HIGH PURITY 0/13... (BHN BAKU SUPPLEMEN) COA MTP12623, SAMPLE NO (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA API HIGH PURITY 0/13... (BHN BAKU SUPPLEMEN) COA MTP12623, SAMPLE NO (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SEABUCKTHORN HYDROGLYCOLIC EXTRACT (BG) (BHN BAKU KOSMETIK) COA HIR230501-B (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SEABUCKTHORN HYDROGLYCOLIC EXTRACT (BG) (BHN BAKU KOSMETIK) COA HIR230501-B (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIEP230601-B (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIEP230601-B (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIGELINE (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KIGELINE (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SEABUCKTHORN HYDROGLYCOLIC EXTRACT (BG) (BHN BAKU KOSMETIK) COA HIR230501-B (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SEABUCKTHORN HYDROGLYCOLIC EXTRACT (BG) (BHN BAKU KOSMETIK) COA HIR230501-B (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3438022 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3438022 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ONDANSETRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA 23OS002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"ONDANSETRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA 23OS002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SETACIN 103/SPEZIAL OR NP - RSPO - MB (BHN BAKU KOSMETIK) COA 3569\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34023990\", \"uraian\": \"SETACIN 103/SPEZIAL OR NP - RSPO - MB (BHN BAKU KOSMETIK) COA 3569\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REFINED GRAPESEED OIL (BHN BAKU KOSMETIK) COA B2300016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15152919\", \"uraian\": \"REFINED GRAPESEED OIL (BHN BAKU KOSMETIK) COA B2300016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-230613 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-230613 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM VALPROATE (BAHAN BAKU OBAT) COA 458272,458380\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29159090\", \"uraian\": \"SODIUM VALPROATE (BAHAN BAKU OBAT) COA 458272,458380\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROSE ANHYDROUS (BHN BAKU OBAT UTK PAKAN TERNAK) COA XWA230621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17023010\", \"uraian\": \"DEXTROSE ANHYDROUS (BHN BAKU OBAT UTK PAKAN TERNAK) COA XWA230621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID MONOHYDRATE GRANULAR (BHN BAKU SUPLEMEN) COA UJ312\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID MONOHYDRATE GRANULAR (BHN BAKU SUPLEMEN) COA UJ312\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS FUMARATE (BHN BAKU OBAT) COA 2023/100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"FERROUS FUMARATE (BHN BAKU OBAT) COA 2023/100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 201024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 201024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ESCIN (BHN BAKU KOSMETIK) COA CP00000481\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"ESCIN (BHN BAKU KOSMETIK) COA CP00000481\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEUCOSELECT PHYTOSOME (BHN BAKU KOSMETIK) CAS 84929-27-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LEUCOSELECT PHYTOSOME (BHN BAKU KOSMETIK) CAS 84929-27-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 02/19GAAK\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 02/19GAAK\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 192311\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 192311\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACTICIRE MB BF (BHN BAKU KOSMETIK) COA 195723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ACTICIRE MB BF (BHN BAKU KOSMETIK) COA 195723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334892,B334894,B334895\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX POWDER (BHN BAKU OBAT) COA B334892,B334894,B334895\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334895 S/D B334898\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX POWDER (BHN BAKU OBAT) COA B334895 S/D B334898\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340467 S/D B340470\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX COMPACTED (BHN BAKU OBAT) COA B340467 S/D B340470\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOROLAC TROMETAMOL / TROMETHAMINE (BHN BAKU OBAT) COA 23100187\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"KETOROLAC TROMETAMOL / TROMETHAMINE (BHN BAKU OBAT) COA 23100187\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAPIOKA STER (BHN BAKU KOSMETIK) CAS 9005-25-8\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"TAPIOKA STER (BHN BAKU KOSMETIK) CAS 9005-25-8\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG230602 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG230602 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEVAMISOLE HYDROCHLORIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA LV22366\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"LEVAMISOLE HYDROCHLORIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA LV22366\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALBENDAZOLE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 20230402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ALBENDAZOLE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 20230402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPROLIUM HCL (BHN BAKU OBAT UTK PAKAN TERNAK) COA 20230405\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"AMPROLIUM HCL (BHN BAKU OBAT UTK PAKAN TERNAK) COA 20230405\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CROSPOVIDONE XL (BHN BAKU SUPPLEMEN) COA PP230424XL\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"CROSPOVIDONE XL (BHN BAKU SUPPLEMEN) COA PP230424XL\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP2010/USP42 (BHN BAKU OBAT) COA NED230508, NED230519,NED230520\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP2010/USP42 (BHN BAKU OBAT) COA NED230508, NED230519,NED230520\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYDROCORTISONE ACETATE EP7/USP42 (BHN BAKU OBAT) COA NEHAC230606\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"HYDROCORTISONE ACETATE EP7/USP42 (BHN BAKU OBAT) COA NEHAC230606\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE USP2022 (BHN BAKU OBAT) COA NMP221102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE USP2022 (BHN BAKU OBAT) COA NMP221102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISONE USP2022 (BHN BAKU OBAT) COA NPD 221018, NPD 230615\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISONE USP2022 (BHN BAKU OBAT) COA NPD 221018, NPD 230615\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 8552-507-K05 LIPEX 512 VEGETABLE OIL (BHN BAKU KOSMETIK) COA 0002640615\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15162049\", \"uraian\": \"8552-507-K05 LIPEX 512 VEGETABLE OIL (BHN BAKU KOSMETIK) COA 0002640615\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNBELLIN (BHN BAKU KOSMETIK) COA F210-2303044 S/D F210-2303046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"SUNBELLIN (BHN BAKU KOSMETIK) COA F210-2303044 S/D F210-2303046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP23064091,XP23064092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP23064091,XP23064092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA MLAH0180323\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29341000\", \"uraian\": \"MELOXICAM BP (BHN BAKU OBAT) COA MLAH0180323\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 FOOD OIL (BHN BAKU MAKANAN) COA TS00021856,TS00022239 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 FOOD OIL (BHN BAKU MAKANAN) COA TS00021856,TS00022239 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 FOOD OIL (BHN BAKU MAKANAN) COA TS00021856,TS00022239 (POST BORDER) SAMPLE.....\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 FOOD OIL (BHN BAKU MAKANAN) COA TS00021856,TS00022239 (POST BORDER) SAMPLE.....\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2023050501 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2023050501 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIOPHILIC TM H MB (BHN BAKU KOSMETIK) CAS 68855-56-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"BIOPHILIC TM H MB (BHN BAKU KOSMETIK) CAS 68855-56-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834011557N (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834011557N (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) CAS 37350-42-8\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) CAS 37350-42-8\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSALITY TM (BHN BAKU KOSMETIK) CAS 5343-92-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROSALITY TM (BHN BAKU KOSMETIK) CAS 5343-92-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WASTAR TM LAVENDER (BHN BAKU KOSMETIK) CAS 90063-37-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"WASTAR TM LAVENDER (BHN BAKU KOSMETIK) CAS 90063-37-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) CAS 37350-42-8\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) CAS 37350-42-8\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOREALINE R PROTECT (BHN BAKU KOSMETIK) COA AM094500 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BOREALINE R PROTECT (BHN BAKU KOSMETIK) COA AM094500 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FENTACARE 2231 EF 25KG PAPER BOX (BHN BAKU KOSMETIK ) COA ZH23E1401,ZH23E2002,ZH23F0405\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34029019\", \"uraian\": \"FENTACARE 2231 EF 25KG PAPER BOX (BHN BAKU KOSMETIK ) COA ZH23E1401,ZH23E2002,ZH23F0405\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL230608,MCCPOL230619\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29094900\", \"uraian\": \"MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL230608,MCCPOL230619\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-54HV (18KG) (BHN BAKU KOSMETIK) CAS 68083-14-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-54HV (18KG) (BHN BAKU KOSMETIK) CAS 68083-14-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP-101 (15KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSP-101 (15KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6017(17KG) (BHN BAKU KOSMETIK) CAS 68937-54-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6017(17KG) (BHN BAKU KOSMETIK) CAS 68937-54-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KP-561P (16KG) (BHN BAKU KOSMETIK) CAS 329236-76-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KP-561P (16KG) (BHN BAKU KOSMETIK) CAS 329236-76-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-210 (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSG-210 (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP-101 (15KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSP-101 (15KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202306-028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35040000\", \"uraian\": \"SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202306-028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS1380523,HS1390623,HS1430623\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS1380523,HS1390623,HS1430623\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS1430623\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS1430623\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22120265 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22120265 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11221104 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11221104 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT23010170 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT23010170 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT23010170 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT23010170 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT23030089 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT23030089 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02303106 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02303106 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT22090039 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT22090039 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU SUPPLEMEN) COA 23E2002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE NA PELLETS (BHN BAKU SUPPLEMEN) COA 23E2002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU SUPPLEMEN) COA 23E1603\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE NA PELLETS (BHN BAKU SUPPLEMEN) COA 23E1603\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE BM PELLETS (BHN BAKU SUPPLEMEN) COA 22E4808\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE BM PELLETS (BHN BAKU SUPPLEMEN) COA 22E4808\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLUOROMETHOLONE MICRONISED USP BP JP (BHN BAKU OBAT) COA 2201584198\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"FLUOROMETHOLONE MICRONISED USP BP JP (BHN BAKU OBAT) COA 2201584198\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PG0350522\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349920\", \"uraian\": \"PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PG0350522\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NAPROXEN SODIUM USP (BHN BAKU OBAT) COA 2-SN-0970523\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"NAPROXEN SODIUM USP (BHN BAKU OBAT) COA 2-SN-0970523\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORANGE EXTRACT (BHN BAKU KOSMETIK) COA 23050123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"ORANGE EXTRACT (BHN BAKU KOSMETIK) COA 23050123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINKGO LEAVES EXTRACT (BHN BAKU KOSMETIK) COA 23050109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"GINKGO LEAVES EXTRACT (BHN BAKU KOSMETIK) COA 23050109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRICKLY PEAR WATER DISTILLATE (BHN BAKU KOSMETIK) COA 23060203\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33019090\", \"uraian\": \"PRICKLY PEAR WATER DISTILLATE (BHN BAKU KOSMETIK) COA 23060203\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G60929...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G60929...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP16023 (POST BORD\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP16023 (POST BORD\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWDER... (B.BAKU KOSMETIK) CAS 65497-29-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GUAR GUM TREATED AND PULVERISED IN POWDER... (B.BAKU KOSMETIK) CAS 65497-29-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 27-10-22,24-01-23,20-01-23\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 27-10-22,24-01-23,20-01-23\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-1750623\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334910\", \"uraian\": \"DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-1750623\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANTOPRAZOLE SODIUM (STERILE) (BAHAN BAKU OBAT) COA SI/PPZ/01210623\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"PANTOPRAZOLE SODIUM (STERILE) (BAHAN BAKU OBAT) COA SI/PPZ/01210623\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ESOMEPRAZOLE SODIUM (STERILE) (BHN BAKU OBAT) COA SI/EPZ/00100623\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"ESOMEPRAZOLE SODIUM (STERILE) (BHN BAKU OBAT) COA SI/EPZ/00100623\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101851923\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA L101851923\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100 CR PREMIUM HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464346607\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100 CR PREMIUM HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464346607\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EDIBLE BOVINE GELATINE 180/20 (BHN BAKU OBAT ) COA 5002301267\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35030049\", \"uraian\": \"EDIBLE BOVINE GELATINE 180/20 (BHN BAKU OBAT ) COA 5002301267\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENTRY POLYOX WSR 1105 LEO NF..(BHN BAKU PEWARNA TABLET) COA 2534432764\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"SENTRY POLYOX WSR 1105 LEO NF..(BHN BAKU PEWARNA TABLET) COA 2534432764\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENTRY POLYOX WSR N750 LEO NF..(BHN BAKU PEWARNA TABLET) COA D682L77RJ2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"SENTRY POLYOX WSR N750 LEO NF..(BHN BAKU PEWARNA TABLET) COA D682L77RJ2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMITOSE R (BHN BAKU KOSMETIK) COA LEC (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"AMITOSE R (BHN BAKU KOSMETIK) COA LEC (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS EK-118(IN) (BHN BAKU KOSMETIK) CAS 59219-71-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS EK-118(IN) (BHN BAKU KOSMETIK) CAS 59219-71-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 231297 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329900\", \"uraian\": \"K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 231297 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 222274 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ABSORAGE (BHN BAKU KOSMETIK) COA 222274 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) CAS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNEBUSTERS (BHN BAKU KOSMETIK) CAS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIRJU (BHN BAKU KOSMETIK) COA 222073 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"CLAIRJU (BHN BAKU KOSMETIK) COA 222073 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 230849 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 230849 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 230386 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 230386 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 222677 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"IZAYOI (BHN BAKU KOSMETIK) COA 222677 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSE HIPS LIQUID B (BHN BAKU KOSMETIK) COA 231036 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ROSE HIPS LIQUID B (BHN BAKU KOSMETIK) COA 231036 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIOBENEFITY (BHN BAKU KOSMETIK) COA 230679 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BIOBENEFITY (BHN BAKU KOSMETIK) COA 230679 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0003900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0003900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0005100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0005100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0005200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0005200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0012000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0012000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEARL ESSENCES 35178MJ (BHN BAKU KOSMETIK) COA D3240363\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32061910\", \"uraian\": \"PEARL ESSENCES 35178MJ (BHN BAKU KOSMETIK) COA D3240363\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 162893\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15159011\", \"uraian\": \"AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 162893\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) MANGO B (BHN BAKU KOSMETIK) COA 10300045,10300046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"EXTRAPONE (R) MANGO B (BHN BAKU KOSMETIK) COA 10300045,10300046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) WILD BERRIES (BHN BAKU KOSMETIK) COA 10300041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"EXTRAPONE (R) WILD BERRIES (BHN BAKU KOSMETIK) COA 10300041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE TM PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ABYSSINE TM PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) CAS 50-70-4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALDAVINE TM 5X (BHN BAKU KOSMETIK) CAS 50-70-4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829011771P (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"B-WHITE TM (BHN BAKU KOSMETIK) COA 829011771P (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829011886P (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"B-WHITE TM (BHN BAKU KOSMETIK) COA 829011886P (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROGELINE TM (BHN BAKU KOSMETIK) COA 221196 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"PROGELINE TM (BHN BAKU KOSMETIK) COA 221196 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP12302031 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU KOSMETIK) COA OP12302031 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID BHN BAKU KOSMETIK)) COA UT22120263 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID BHN BAKU KOSMETIK)) COA UT22120263 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL 75 L (BHN BAKU KOSMETIK) COA TL02210334 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL 75 L (BHN BAKU KOSMETIK) COA TL02210334 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22110361 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22110361 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22110361 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22110361 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323020533,0323020534 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323020533,0323020534 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF23003008 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF23003008 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211125,UE02211046 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211125,UE02211046 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23010028 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23010028 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE, TYPE 100 (BHN BAKU SUPPLEMEN) COA UT23030066 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE, TYPE 100 (BHN BAKU SUPPLEMEN) COA UT23030066 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT23041237 S/D UT23041239 (POST\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT23041237 S/D UT23041239 (POST\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30416076,UQ30416077 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30416076,UQ30416077 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30416077\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30416077\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30416077\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30416077\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30316063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30316063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30316063, UQ30316064\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30316063, UQ30316064\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL02303607 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL02303607 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS GLUCONATE, POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3127991 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"FERROUS GLUCONATE, POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3127991 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POTASSIUM IODIDE AND CARRIER (BHN BAKU OBAT) COA 3126908 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28276000\", \"uraian\": \"POTASSIUM IODIDE AND CARRIER (BHN BAKU OBAT) COA 3126908 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-072763 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-072763 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIOCTP-500 (BHN BAKU KOSMETIK) COA BOPN-021743 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND BIOCTP-500 (BHN BAKU KOSMETIK) COA BOPN-021743 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012423 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012423 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-020963 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-020963 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA MAK114\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA MAK114\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-030353\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-030353\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-032412,052922 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-032412,052922 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012423 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012423 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP2230607 (POST BO\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP2230607 (POST BO\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-072763 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-072763 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N4O107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N4O107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N4O107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N4O107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-011713 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-011713 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-040812 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-040812 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIOCTP-500 (BHN BAKU KOSMETIK) COA BOPN-021743 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND BIOCTP-500 (BHN BAKU KOSMETIK) COA BOPN-021743 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) CAS 233683-84-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) CAS 233683-84-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROSE ANHYDROUS (BHN BAKU OBAT UTK PAKAN TERNAK) COA XWA230621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17023010\", \"uraian\": \"DEXTROSE ANHYDROUS (BHN BAKU OBAT UTK PAKAN TERNAK) COA XWA230621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYPROTERONE ACETATE MICRONIZED (BHN BAKU OBAT) COA ND0688M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"CYPROTERONE ACETATE MICRONIZED (BHN BAKU OBAT) COA ND0688M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MOXIFLOXACIN HYDROCHLORIDE (BHN BAKU OBAT) COA MP0040523\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334990\", \"uraian\": \"MOXIFLOXACIN HYDROCHLORIDE (BHN BAKU OBAT) COA MP0040523\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340488,B340489\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX COMPACTED (BHN BAKU OBAT) COA B340488,B340489\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334898,B334899\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX POWDER (BHN BAKU OBAT) COA B334898,B334899\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620023...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620023...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-22-17515...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-22-17515...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-30-18037...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-30-18037...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G52990...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G52990...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55015...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55015...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620041...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620041...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A18597...(BHN BAKU PEWARNA TABLET) COA GA734387\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A18597...(BHN BAKU PEWARNA TABLET) COA GA734387\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A18597...(BHN BAKU PEWARNA TABLET) COA GA734387\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A18597...(BHN BAKU PEWARNA TABLET) COA GA734387\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 151-21-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 151-21-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G64786...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G64786...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G640054...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G640054...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) ENTERIC COATING SYSTEM 94O520141...(BHN BAKU PEWARNA TABLET) CAS 25086-15-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) ENTERIC COATING SYSTEM 94O520141...(BHN BAKU PEWARNA TABLET) CAS 25086-15-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA734408\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA734408\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O66912...(BHN BAKU PEWARNA TABLET) COA GA734409\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O66912...(BHN BAKU PEWARNA TABLET) COA GA734409\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-19025-A..(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-19025-A..(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEUCOCYANIDINS (BHN BAKU SUPPLEMEN) COA 1104/7, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"LEUCOCYANIDINS (BHN BAKU SUPPLEMEN) COA 1104/7, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEUCOCYANIDINS (BHN BAKU SUPPLEMEN) COA 928/34, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"LEUCOCYANIDINS (BHN BAKU SUPPLEMEN) COA 928/34, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRASIL DM5 L (BHN BAKU KOSMETIK) COA 2312FF2415\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100090\", \"uraian\": \"MIRASIL DM5 L (BHN BAKU KOSMETIK) COA 2312FF2415\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MACKAM C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 10004-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34024990\", \"uraian\": \"MACKAM C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 10004-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOTAXIME SODIUM (BAHAN BAKU OBAT) COA 3042305024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOTAXIME SODIUM (BAHAN BAKU OBAT) COA 3042305024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 122202271\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28365010\", \"uraian\": \"VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 122202271\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLOWLAC (R) 100 (BHN BAKU OBAT) COA L101502123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"FLOWLAC (R) 100 (BHN BAKU OBAT) COA L101502123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104312123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104312123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103861823\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103861823\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CELLACTOSE (R) 80 (BHN BAKU OBAT) COA L100460523\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"CELLACTOSE (R) 80 (BHN BAKU OBAT) COA L100460523\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103150723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103150723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX (R) OPAQUE COLOR COATING CONCENTRATE AS-R-...(BHN BAKU PEWARNA TABLET) COA DT748101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPALUX (R) OPAQUE COLOR COATING CONCENTRATE AS-R-...(BHN BAKU PEWARNA TABLET) COA DT748101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPASPRAY (R) OPAQUE COLOR CONCENTRATE FOR FILM...(BHN BAKU PEWARNA TABLET) COA DT748103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPASPRAY (R) OPAQUE COLOR CONCENTRATE FOR FILM...(BHN BAKU PEWARNA TABLET) COA DT748103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340471 S/D B340473\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX COMPACTED (BHN BAKU OBAT) COA B340471 S/D B340473\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPPLEMEN) COA WB23030781 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPPLEMEN) COA WB23030781 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB22080266 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB22080266 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERNFINE 100 N (BHN BAKU MAKANAN) COA N51-3623086 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232011\", \"uraian\": \"STERNFINE 100 N (BHN BAKU MAKANAN) COA N51-3623086 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO (R) LUTEIN 20 PCT SAF (BHN BAKU SUPPLEMEN) COA UE02304021 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO (R) LUTEIN 20 PCT SAF (BHN BAKU SUPPLEMEN) COA UE02304021 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ21217019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ21217019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 220513\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33012990\", \"uraian\": \"AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 220513\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OILESS' CITY TM (BHN BAKU KOSMETIK) COA 220304\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"OILESS' CITY TM (BHN BAKU KOSMETIK) COA 220304\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 230312\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061900\", \"uraian\": \"MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 230312\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 220513\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33012990\", \"uraian\": \"AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 220513\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHTHALAVIN (R) ENTERIC COATING POLYMER 2138 CLEAR (BHN BAKU PEWARNA TABLET) COA WP865595\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PHTHALAVIN (R) ENTERIC COATING POLYMER 2138 CLEAR (BHN BAKU PEWARNA TABLET) COA WP865595\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5406 FD&C RED...(BHN BAKU PEWARNA TABLET) COA WP857243:BB7480\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5406 FD&C RED...(BHN BAKU PEWARNA TABLET) COA WP857243:BB7480\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT (R) 6010 D&CYELLOW 10 ALUMIN...(BHN BAKU PEWARNA TABLET) COA WP864266:BC1291\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT (R) 6010 D&CYELLOW 10 ALUMIN...(BHN BAKU PEWARNA TABLET) COA WP864266:BC1291\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C YELLOW 6/SUNSET...(BHN BAKU PEWARNA TABLET) COA WP868324:BC3385\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5287 FD&C YELLOW 6/SUNSET...(BHN BAKU PEWARNA TABLET) COA WP868324:BC3385\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA EXTRACT 95 PCT (BHN BAKU KOSMETIK) COA GKP 23067 EOU\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"CENTELLA ASIATICA EXTRACT 95 PCT (BHN BAKU KOSMETIK) COA GKP 23067 EOU\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MATCHA (BHN BAKU KOSMETIK) CAS 84650-60-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MATCHA (BHN BAKU KOSMETIK) CAS 84650-60-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-ALPHA-TOCOPHEROL (BHN BAKU KOSMETIK) COA 01230507ES\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-ALPHA-TOCOPHEROL (BHN BAKU KOSMETIK) COA 01230507ES\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-15 (16KG) (BHN BAKU KOSMETIK) CAS 541-02-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSG-15 (16KG) (BHN BAKU KOSMETIK) CAS 541-02-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070-C3 (BHN BAKU MAKANAN) COA XW92305351,XW92305352 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070-C3 (BHN BAKU MAKANAN) COA XW92305351,XW92305352 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX FOR MARGARINE SG15-0027 (BHN BAKU MAKANAN) COA XW92306023 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX FOR MARGARINE SG15-0027 (BHN BAKU MAKANAN) COA XW92306023 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT23010005 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT23010005 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02303109 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02303109 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02303109,UE02303129 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02303109,UE02303129 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2111132,UEB2111133,... (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2111132,UEB2111133,... (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT23020003 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT23020003 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT23020001 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT23020001 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12302031 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12302031 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12302031 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12302031 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11221105 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11221105 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000212577 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000212577 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010365\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010365\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010365\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010365\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010365\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010365\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010365\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010365\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED MAIZE STARCH...(BHN BAKU PEWARNA TABLET) COA IN549806\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY PREGELATINIZED MAIZE STARCH...(BHN BAKU PEWARNA TABLET) COA IN549806\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED MAIZE STARCH...(BHN BAKU PEWARNA TABLET) COA IN549767\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY PREGELATINIZED MAIZE STARCH...(BHN BAKU PEWARNA TABLET) COA IN549767\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DESONIDE MICRONIZED (BHN BAKU OBAT) COA NC3328M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"DESONIDE MICRONIZED (BHN BAKU OBAT) COA NC3328M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLONIDINE HCL (BHN BAKU OBAT) COA 194081\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"CLONIDINE HCL (BHN BAKU OBAT) COA 194081\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA 2023F1147\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA 2023F1147\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSE OILY EXTRACT (BHN BAKU KOSMETIK) CAS 65381-09-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROSE OILY EXTRACT (BHN BAKU KOSMETIK) CAS 65381-09-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SEABUCKTHORN HYDROGLYCOLIC EXTRACT (BG) (BHN BAKU KOSMETIK) COA HIR230501-B (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SEABUCKTHORN HYDROGLYCOLIC EXTRACT (BG) (BHN BAKU KOSMETIK) COA HIR230501-B (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RICE MILK AQUEOUS EXTRACT (SB) (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"RICE MILK AQUEOUS EXTRACT (SB) (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA735339\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA735339\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) KB LOW VISCOSITY FILM COATING SYSTEM..(BHN BAKU PEWARNA TABLET) CAS 151-21-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) KB LOW VISCOSITY FILM COATING SYSTEM..(BHN BAKU PEWARNA TABLET) CAS 151-21-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G63147...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G63147...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86512...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86512...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K580000...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K580000...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G60929...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G60929...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NYSTATIN POWDER ROW GRADE (BHN BAKU OBAT) COA C114726\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NYSTATIN POWDER ROW GRADE (BHN BAKU OBAT) COA C114726\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM SULFATE DIHYDRATE...(BHN BAKU SUPPLEMEN) COA 3132117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332100\", \"uraian\": \"MAGNESIUM SULFATE DIHYDRATE...(BHN BAKU SUPPLEMEN) COA 3132117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT23020002 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT23020002 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT23020002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT23020002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040040\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040040\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020003,0923020023,0923020025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020003,0923020023,0923020025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-1870723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334910\", \"uraian\": \"DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-1870723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PERMETHRIN 25:75 EP (BHN BAKU OBAT) COA PMT/010/2023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29162000\", \"uraian\": \"PERMETHRIN 25:75 EP (BHN BAKU OBAT) COA PMT/010/2023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX (R) OPAQUE COLOR COATING CONCENTRATE AS-R-...(BHN BAKU PEWARNA TABLET) COA DT748791\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPALUX (R) OPAQUE COLOR COATING CONCENTRATE AS-R-...(BHN BAKU PEWARNA TABLET) COA DT748791\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE (R) MONOGRAMMING INK S-1-277001 BLACK (BHN BAKU PEWARNA TABLET) COA DT748789\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPACODE (R) MONOGRAMMING INK S-1-277001 BLACK (BHN BAKU PEWARNA TABLET) COA DT748789\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE (R) MONOGRAMMING INK A-R-8032 RED (BHN BAKU PEWARNA TABLET) COA DT748790\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPACODE (R) MONOGRAMMING INK A-R-8032 RED (BHN BAKU PEWARNA TABLET) COA DT748790\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT23040010 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT23040010 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTISHARP NAT. ZEA 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA EW23065005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"OPTISHARP NAT. ZEA 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA EW23065005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20230302 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20230302 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3079261\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3079261\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3079261\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3079261\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3079261\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3079261\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3079261\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3079261\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRAIN HEART INFUSION BBL 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1159375\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRAIN HEART INFUSION BBL 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1159375\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HINTON II AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2293662\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MUELLER HINTON II AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2293662\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2263336\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2263336\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2334621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2334621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2053778\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2053778\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION BROTH 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2179358\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEART INFUSION BROTH 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2179358\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2117655\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2117655\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH 3145004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH 3145004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA U/PENGEMBANGAN MIKROORGANISME)BATCH 3094405\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA U/PENGEMBANGAN MIKROORGANISME)BATCH 3094405\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2311158\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2311158\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2270340,2305239\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2270340,2305239\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2256092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2256092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DIFCO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3040509\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DIFCO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3040509\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2339387\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2339387\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 21403834,2269127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 21403834,2269127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2213688\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2213688\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 2074829\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 2074829\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 3004794\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 3004794\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2081022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2081022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1285556\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1285556\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2269093\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2269093\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2291752\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2291752\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2263336\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2263336\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYP AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2276880\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MYP AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2276880\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MITIS SALIVARIUS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2038855\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MITIS SALIVARIUS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2038855\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01E343M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01E343M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-PA-C AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3114659\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M-PA-C AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3114659\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 3096414\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TETRATHIONATE BROTH BASE 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 3096414\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2271456\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2271456\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE KF STREPTOCOCCUS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2214351\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE KF STREPTOCOCCUS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2214351\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3040515\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3040515\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3004802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3004802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3030476\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3030476\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) CAS 233683-84-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) CAS 233683-84-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3094622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3094622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3094622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3094622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3094622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3094622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP Y 1ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2349773\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL N MENINGITIDIS ANTISERUM GRP Y 1ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2349773\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP Y 1ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2349773\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL N MENINGITIDIS ANTISERUM GRP Y 1ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2349773\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3061959\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3061959\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP Y 1ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2349773\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL N MENINGITIDIS ANTISERUM GRP Y 1ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2349773\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP W135 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2349778\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL N MENINGITIDIS ANTISERUM GRP W135 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2349778\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MICROBIAL CONTENT TEST AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3072210\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MICROBIAL CONTENT TEST AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3072210\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1344136\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1344136\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SHIGELLA ANTIS POLY A1 LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2161354\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SHIGELLA ANTIS POLY A1 LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2161354\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SHIGELLA ANTIS POLY C2 LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2230296\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SHIGELLA ANTIS POLY C2 LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2230296\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2363671\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2363671\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SHIGELLA ANTIS POLY B LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2322617\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SHIGELLA ANTIS POLY B LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2322617\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SHIGELLA ANTIS POLY C LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2069165\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SHIGELLA ANTIS POLY C LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2069165\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SHIGELLA ANTIS POLY D LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2224553\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SHIGELLA ANTIS POLY D LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2224553\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL E COLI O ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2125078\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL E COLI O ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2125078\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3019035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3019035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 3093476\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PANTOTHENATE ASSAY MED 100G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 3093476\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOBACILLLI MRS BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3004891\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOBACILLLI MRS BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3004891\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOBACILLLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3039438\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOBACILLLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3039438\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3054289,....\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3054289,....\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2060591\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2060591\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEMOGLOBIN SOL 2PCT 100ML 10EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3018256\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEMOGLOBIN SOL 2PCT 100ML 10EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3018256\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3061956\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3061956\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 3121809\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 3121809\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3061959,.\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3061959,.\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM BISGLYCINATE POWDER (BHN BAKU SUPPLEMEN) COA 3130167 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"MAGNESIUM BISGLYCINATE POWDER (BHN BAKU SUPPLEMEN) COA 3130167 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT23041240,UT23041241\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT23041240,UT23041241\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02304001,TL02304013,TL02305296, (POST\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02304001,TL02304013,TL02305296, (POST\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30416083 S/D UQ30416085 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30416083 S/D UQ30416085 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT23040008,UT23040009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT23040008,UT23040009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT23040001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT23040001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02305037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02305037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACETAMINOPHEN (PARACETAMOL) (BHN BAKU OBAT) COA 202306088A,202306089A\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"ACETAMINOPHEN (PARACETAMOL) (BHN BAKU OBAT) COA 202306088A,202306089A\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARACETAMOL USP43 (BHN BAKU OBAT) COA 2351466,2351480,2310855,2310863\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"PARACETAMOL USP43 (BHN BAKU OBAT) COA 2351466,2351480,2310855,2310863\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFERSODA (R) 20 (BHN BAKU SUPPLEMEN) COA 122302620,122302933\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFERSODA (R) 20 (BHN BAKU SUPPLEMEN) COA 122302620,122302933\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 12200723,12210723,12220723,12240723 S/D 12260723,12280723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 12200723,12210723,12220723,12240723 S/D 12260723,12280723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 11620723,11930723,12230723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 11620723,11930723,12230723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REFINED COCONUT OIL - L (BHN BAKU KOSMETIK) COA 0002640007 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15131990\", \"uraian\": \"REFINED COCONUT OIL - L (BHN BAKU KOSMETIK) COA 0002640007 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-052922,011373 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-052922,011373 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND PEACH EXTRACT (BHN BAKU KOSMETIK) COA PEA-032822 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND PEACH EXTRACT (BHN BAKU KOSMETIK) COA PEA-032822 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N4O107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N4O107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-020963 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-020963 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012423 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012423 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012423 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012423 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINC CITRATE, POWDER, USP-NF 2023 (BHN BAKU SUPPLEMEN) COA 3131855-02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181590\", \"uraian\": \"ZINC CITRATE, POWDER, USP-NF 2023 (BHN BAKU SUPPLEMEN) COA 3131855-02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K120033...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03K120033...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM..(BHN BAKU PEWARNA TABLET) CAS 57-50-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM..(BHN BAKU PEWARNA TABLET) CAS 57-50-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20230619\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20230619\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0041495 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0041495 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02211116 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02211116 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-PANTHENOL 50 L (BHN BAKU KOSMETIK) COA TL02212644 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"DL-PANTHENOL 50 L (BHN BAKU KOSMETIK) COA TL02212644 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000212579,0000213111 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000212579,0000213111 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22110361 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22110361 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PERMETHRIN PHARMA GRADE (BHN BAKU OBAT) COA 235046006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29162000\", \"uraian\": \"PERMETHRIN PHARMA GRADE (BHN BAKU OBAT) COA 235046006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRASIL DM350 A2 (BHN BAKU KOSMETIK) COA 2330WKW215\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100090\", \"uraian\": \"MIRASIL DM350 A2 (BHN BAKU KOSMETIK) COA 2330WKW215\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP19423 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP19423 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP17123 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP17123 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALAMINE, POWDER, BP 2023 (BHN BAKU SUPPLEMEN) COA 3130806 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28369990\", \"uraian\": \"CALAMINE, POWDER, BP 2023 (BHN BAKU SUPPLEMEN) COA 3130806 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE USP (BAHAN BAKU OBAT) COA ASG/05/260523,270523,290523,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE USP (BAHAN BAKU OBAT) COA ASG/05/260523,270523,290523,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 23T0043200 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 23T0043200 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) CAS 1119-97-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CETRIMIDE (BHN BAKU KOSMETIK) CAS 1119-97-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) CAS 1119-97-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CETRIMIDE (BHN BAKU KOSMETIK) CAS 1119-97-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ADEPLUMP (BHN BAKU KOSMETIK) COA 230139 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ADEPLUMP (BHN BAKU KOSMETIK) COA 230139 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 230849 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 230849 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 222900 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"MANDARINCLEAR (BHN BAKU KOSMETIK) COA 222900 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 230464 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 230464 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 230386 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 230386 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 222516 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"IZAYOI (BHN BAKU KOSMETIK) COA 222516 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for YUZU CERAMIDE B (BHN BAKU KOSMETIK) COA 230294 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"YUZU CERAMIDE B (BHN BAKU KOSMETIK) COA 230294 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EMALEX OD-16 (BHN BAKU KOSMETIK) COA OD-16665\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34024210\", \"uraian\": \"EMALEX OD-16 (BHN BAKU KOSMETIK) COA OD-16665\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELUCIRE 44/14 (BHN BAKU SUPPLEMEN) COA 195856\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELUCIRE 44/14 (BHN BAKU SUPPLEMEN) COA 195856\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 01/22GAAK\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 01/22GAAK\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 192311\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 192311\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EMULCIRE 61 WL 2659 (BHN BAKU SUPPLEMEN) COA 195020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"EMULCIRE 61 WL 2659 (BHN BAKU SUPPLEMEN) COA 195020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPRITOL 888 ATO (BHN BAKU SUPPLEMEN) COA 195342\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"COMPRITOL 888 ATO (BHN BAKU SUPPLEMEN) COA 195342\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACTICIRE MB BF (BHN BAKU KOSMETIK) COA 195723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"ACTICIRE MB BF (BHN BAKU KOSMETIK) COA 195723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for XANTHAN 80 (BAHAN BAKU OBAT) COA 4454325408\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"XANTHAN 80 (BAHAN BAKU OBAT) COA 4454325408\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JAGUAR C162 SGI (BHN BAKU KOSMETIK) CAS 71329-50-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"JAGUAR C162 SGI (BHN BAKU KOSMETIK) CAS 71329-50-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100 CR PREMIUM HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464397261\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100 CR PREMIUM HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464397261\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G630022...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G630022...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22110361 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22110361 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP12305023 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU KOSMETIK) COA OP12305023 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010444\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010444\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010443,0823010444\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010443,0823010444\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000213261 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000213261 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02112813,TL02211812 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02112813,TL02211812 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT22060225 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT22060225 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02304147 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02304147 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT23010170 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT23010170 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ30210559 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ30210559 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ30210559 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ30210559 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM CHLORIDE 6-HYDRATE, CRYST, USP 43 (BHN BAKU KOSMETIK) COA 3130542\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28273100\", \"uraian\": \"MAGNESIUM CHLORIDE 6-HYDRATE, CRYST, USP 43 (BHN BAKU KOSMETIK) COA 3130542\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-TARTARIC ACID (BHN BAKU MAKANAN) COA RS015RS0166566\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181200\", \"uraian\": \"DL-TARTARIC ACID (BHN BAKU MAKANAN) COA RS015RS0166566\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 985-L-MENTHOL CRYSTALS INDIAN NATURAL (BHN BAKU KOSMETIK) COA H2-095/L/22-23\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061100\", \"uraian\": \"985-L-MENTHOL CRYSTALS INDIAN NATURAL (BHN BAKU KOSMETIK) COA H2-095/L/22-23\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7M IU/G (BHN BAKU KOSMETIK) COA 0423060011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7M IU/G (BHN BAKU KOSMETIK) COA 0423060011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITICOLINE SODIUM (BHN BAKU OBAT) COA 230220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"CITICOLINE SODIUM (BHN BAKU OBAT) COA 230220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GLUCOSAMINE SULFATE 2KCL (BHN BAKU OBAT) COA JSTK230722\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329900\", \"uraian\": \"GLUCOSAMINE SULFATE 2KCL (BHN BAKU OBAT) COA JSTK230722\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALUMINIUM HYDROXIDE ACETATE POWDER (BHN BAKU OBAT) COA 3133329\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29152990\", \"uraian\": \"ALUMINIUM HYDROXIDE ACETATE POWDER (BHN BAKU OBAT) COA 3133329\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NG 5 PCT-1,2 PROPYLENGLYCOLE 95PCT (BAHAN BAKU OBAT) COA 2307839\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"NG 5 PCT-1,2 PROPYLENGLYCOLE 95PCT (BAHAN BAKU OBAT) COA 2307839\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNBELLIN (BHN BAKU KOSMETIK) COA F210-2303049, 2303053 S/D 2303056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"SUNBELLIN (BHN BAKU KOSMETIK) COA F210-2303049, 2303053 S/D 2303056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ADENOSINE(L) (BHN BAKU KOSMETIK) COA C01202302001L S/D C01202302004L\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"ADENOSINE(L) (BHN BAKU KOSMETIK) COA C01202302001L S/D C01202302004L\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPECWHITE 05 (BHN BAKU KOSMETIK) COA 20221118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29222900\", \"uraian\": \"SPECWHITE 05 (BHN BAKU KOSMETIK) COA 20221118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) CAS 5743-47-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) CAS 5743-47-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEE PANDA HONEY (BHN BAKU KOSMETIK) CAS 8028-66-8\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"BEE PANDA HONEY (BHN BAKU KOSMETIK) CAS 8028-66-8\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LYOPHILIZED ROYAL JELLY POWDER (BHN BAKU KOSMETIK) CAS 8031-67-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LYOPHILIZED ROYAL JELLY POWDER (BHN BAKU KOSMETIK) CAS 8031-67-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TWEEN 80 PHARMA-LQ-(SG) (BHN BAKU KOSMETIK) COA 54408\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34024290\", \"uraian\": \"TWEEN 80 PHARMA-LQ-(SG) (BHN BAKU KOSMETIK) COA 54408\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM CARBONATE DC TYPE CS90 PHARMA (BHN BAKU OBAT) COA 202300090\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28365010\", \"uraian\": \"CALCIUM CARBONATE DC TYPE CS90 PHARMA (BHN BAKU OBAT) COA 202300090\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 2308861414\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29322090\", \"uraian\": \"SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 2308861414\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230501;\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230501;\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230501;\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230501;\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INCA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK) CAS 68956-68-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"INCA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK) CAS 68956-68-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN VIRGIN COLD PRESSED DEODORISED ORGANIC OIL XNE112(B.BAKU KOSMETIK) CAS 299184-75-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ARGAN VIRGIN COLD PRESSED DEODORISED ORGANIC OIL XNE112(B.BAKU KOSMETIK) CAS 299184-75-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIVE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OLIVE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LOTUS FROM VIETNAM ORGANIC OILY EXTRACT (BHN BAKU KOSMETIK) CAS 73398-61-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LOTUS FROM VIETNAM ORGANIC OILY EXTRACT (BHN BAKU KOSMETIK) CAS 73398-61-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHTHALAVIN (R) ENTERIC COATING POLYMER 2138 CLEAR (BHN BAKU PEWARNA TABLET) COA WP871770\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PHTHALAVIN (R) ENTERIC COATING POLYMER 2138 CLEAR (BHN BAKU PEWARNA TABLET) COA WP871770\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C YELLOW #6/SUNSET... (BHN BAKU PEWARNA TABLET) COA WP862649:BC0368\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5287 FD&C YELLOW #6/SUNSET... (BHN BAKU PEWARNA TABLET) COA WP862649:BC0368\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT (R) 6010 D&C YELLOW #10 ALUMINUM... (BHN BAKU PEWARNA TABLET) COA WP864266:BC1291\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT (R) 6010 D&C YELLOW #10 ALUMINUM... (BHN BAKU PEWARNA TABLET) COA WP864266:BC1291\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5177 FD&C YELLOW #5/... (BHN BAKU PEWARNA TABLET) COA WP861770:BB9108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5177 FD&C YELLOW #5/... (BHN BAKU PEWARNA TABLET) COA WP861770:BB9108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5396 ERYTHROSINE ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP860976:1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5396 ERYTHROSINE ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP860976:1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5627 FD&C BLUE #2/INDIGO... (BHN BAKU PEWARNA TABLET) COA WP862709:BB9470\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5627 FD&C BLUE #2/INDIGO... (BHN BAKU PEWARNA TABLET) COA WP862709:BB9470\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5517 FD&C BLUE #1/BRILLIANT.. (BHN BAKU PEWARNA TABLET) COA WP866727:BC4487\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5517 FD&C BLUE #1/BRILLIANT.. (BHN BAKU PEWARNA TABLET) COA WP866727:BC4487\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C YELLOW #6/SUNSET.. (BHN BAKU PEWARNA TABLET) COA WP868324:BC3385\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5287 FD&C YELLOW #6/SUNSET.. (BHN BAKU PEWARNA TABLET) COA WP868324:BC3385\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2302281\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2302281\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROSE ANHYDROUS (BHN BAKU OBAT UTK PAKAN TERNAK) COA XWA230723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17023010\", \"uraian\": \"DEXTROSE ANHYDROUS (BHN BAKU OBAT UTK PAKAN TERNAK) COA XWA230723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IONOL CP (BHN BAKU KOSMETIK) COA 01106523\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29071900\", \"uraian\": \"IONOL CP (BHN BAKU KOSMETIK) COA 01106523\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2023062101 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2023062101 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA LC020-23-801 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 200 (BHN BAKU OBAT) COA LC020-23-801 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 5 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2322284\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 5 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2322284\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3094598\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3094598\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3059508\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3059508\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BIGGY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2208599\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BIGGY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2208599\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2334621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2334621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2201317\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2201317\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3096196\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3096196\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 3114639\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 3114639\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 3096316\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 3096316\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3045915\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3045915\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3040515\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3040515\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 5 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2322284\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 5 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2322284\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2343459\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2343459\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3094598\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3094598\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2067241,3096321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2067241,3096321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2265467\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 19 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2265467\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2081022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2081022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1285556\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1285556\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2297695\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2297695\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2305095\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2305095\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2269108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2269108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3079261\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3079261\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2143788\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2143788\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2179358\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2179358\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2271456\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2271456\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE KF STREPTOCOCCUS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2214351\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE KF STREPTOCOCCUS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2214351\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 8 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3005734\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 8 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3005734\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3004799\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3004799\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1223658\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1223658\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE STARCH AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2271472\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE STARCH AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2271472\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3116919\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3116919\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTISHARP NAT. ZEA. 14PCT SAFF. (BHN BAKU SUPPLEMEN) COA 2306101041 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"OPTISHARP NAT. ZEA. 14PCT SAFF. (BHN BAKU SUPPLEMEN) COA 2306101041 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB22080266 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB22080266 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE 99PCT TG (BHN BAKU SUPPLEMEN) COA WB22080500 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE 99PCT TG (BHN BAKU SUPPLEMEN) COA WB22080500 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E15 PREMIUM LV HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2444208486\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E15 PREMIUM LV HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2444208486\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCELA 15 PREMIUM LV METHYLCELLULOSE..(BHN BAKU PEWARNA TABLET) COA 2464275134\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCELA 15 PREMIUM LV METHYLCELLULOSE..(BHN BAKU PEWARNA TABLET) COA 2464275134\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100 PREMIUM LV HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464292878\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100 PREMIUM LV HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464292878\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA D180LCO001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM CR HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA D180LCO001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464186396\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464186396\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2444185823\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2444185823\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464207167\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464207167\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O600001...(BHN BAKU PEWARNA TABLET) COA GA736376\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O600001...(BHN BAKU PEWARNA TABLET) COA GA736376\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G610004...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G610004...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) SGR RAPID SUGA FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 57-50-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) SGR RAPID SUGA FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 57-50-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE ...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE ...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-22-17515...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-22-17515...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007...(BHN BAKU PEWARNA TABLET) COA GA736380\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007...(BHN BAKU PEWARNA TABLET) COA GA736380\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 86G600000...(BHN BAKU PEWARNA TABLET) CAS 9004-64-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 86G600000...(BHN BAKU PEWARNA TABLET) CAS 9004-64-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650018...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650018...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 20A680000...(BHN BAKU PEWARNA TABLET) CAS 9004-64-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 20A680000...(BHN BAKU PEWARNA TABLET) CAS 9004-64-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A62337...(BHN BAKU PEWARNA TABLET) COA GA736697\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A62337...(BHN BAKU PEWARNA TABLET) COA GA736697\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A62337...(BHN BAKU PEWARNA TABLET) COA GA736697\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A62337...(BHN BAKU PEWARNA TABLET) COA GA736697\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F17438...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F17438...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55041...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55041...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2300555\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2300555\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3094622,3187811\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3094622,3187811\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2060591\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2060591\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2363671\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2363671\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3039438\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3039438\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3187811\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3187811\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3187811\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3187811\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2027288\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2027288\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MICROBIAL CONTENT TEST AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3172210\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MICROBIAL CONTENT TEST AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3172210\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM CARBONATE IPH (BHN BAKU SUPPLEMEN) COA DOC1842321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"SODIUM CARBONATE IPH (BHN BAKU SUPPLEMEN) COA DOC1842321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20230201 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20230201 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ30210558,UQ30210559 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ30210558,UQ30210559 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12305024 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12305024 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT23010028 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT23010028 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02103502 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02103502 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU KOSMETIK) COA UT22120263,UT22120265 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU KOSMETIK) COA UT22120263,UT22120265 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC230503\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC230503\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211039 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211039 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211039 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211039 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC230503\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC230503\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211039 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211039 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02211812 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02211812 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02206017 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE02206017 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000213269 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000213269 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIFCO BEEF EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2084515\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DIFCO BEEF EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2084515\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 3114540\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 3114540\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 3114540\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 3114540\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 3114524\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 3114524\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 3114524\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 3114524\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 2242551,REPLACEMENT 35729\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 2242551,REPLACEMENT 35729\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CD SUPREME FPM 500GR EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2558581\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CD SUPREME FPM 500GR EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2558581\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2528862\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2528862\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ADIPOFILL'IN TM (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ADIPOFILL'IN TM (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) CAS 37350-42-8\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) CAS 37350-42-8\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSALITY TM (BHN BAKU KOSMETIK) CAS 5343-92-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROSALITY TM (BHN BAKU KOSMETIK) CAS 5343-92-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WASTAR TM PINK BERRY (BHN BAKU KOSMETIK) CAS 9050-36-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"WASTAR TM PINK BERRY (BHN BAKU KOSMETIK) CAS 9050-36-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WASTAR TM LAVENDER (BHN BAKU KOSMETIK) CAS 90063-37-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"WASTAR TM LAVENDER (BHN BAKU KOSMETIK) CAS 90063-37-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECOGEL TM (BHN BAKU KOSMETIK) CAS 85711-58-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ECOGEL TM (BHN BAKU KOSMETIK) CAS 85711-58-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300029,10300030\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300029,10300030\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEO EXTRAPONE (R) LEMON (BHN BAKU KOSMETIK) COA 10300023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"NEO EXTRAPONE (R) LEMON (BHN BAKU KOSMETIK) COA 10300023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACTIPONE (R) GINGER JUICE (ORGANIC) GW (BHN BAKU KOSMETIK) COA 10300023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"ACTIPONE (R) GINGER JUICE (ORGANIC) GW (BHN BAKU KOSMETIK) COA 10300023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU UTK PAKAN TERNAK) COA 202300162,202300154\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"AL HYD WET GEL VAC 20 (BHN BAKU UTK PAKAN TERNAK) COA 202300162,202300154\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 720 CAN 10 KG (BHN BAKU KOSMETIK) CAS 65-85-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 720 CAN 10 KG (BHN BAKU KOSMETIK) CAS 65-85-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 940 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 940 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) CAS 122-99-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) CAS 122-99-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIDIN DO CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIDIN DO CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 27-10-22,24-01-23,20-01-23\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 27-10-22,24-01-23,20-01-23\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20230201 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20230201 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ30210558,UQ30210559 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ30210558,UQ30210559 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12305024 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12305024 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT23010028 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT23010028 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02103502 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02103502 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU KOSMETIK) COA UT22120263,UT22120265 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU KOSMETIK) COA UT22120263,UT22120265 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC230503\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC230503\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211039 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211039 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211039 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211039 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC230503\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC230503\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211039 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211039 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02211812 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02211812 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02206017 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE02206017 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000213269 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000213269 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW92307039 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW92307039 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040011 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040011 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DWI-BI (BHN BAKU MAKANAN) COA XW92306388 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"DWI-BI (BHN BAKU MAKANAN) COA XW92306388 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT MIN PREMIX FOR TODDLER PORRIDGE (BHN BAKU MAKANAN) COA XW92307205 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VIT MIN PREMIX FOR TODDLER PORRIDGE (BHN BAKU MAKANAN) COA XW92307205 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040011 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040011 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02103502 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02103502 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040011 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040011 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIN PREMIX FOR TODDLER PORRIDGE (BHN BAKU MAKANAN) COA XW92307203, XW92307204 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"MIN PREMIX FOR TODDLER PORRIDGE (BHN BAKU MAKANAN) COA XW92307203, XW92307204 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040011 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040011 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12305024 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12305024 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ30210560 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ30210560 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010447\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010447\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001696245\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SLX (BHN BAKU KOSMETIK) COA 0001696245\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020023,0923020025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020023,0923020025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0523060007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0523060007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0523060007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0523060007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323020534\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323020534\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) CAS 50-70-4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALDAVINE TM 5X (BHN BAKU KOSMETIK) CAS 50-70-4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 222035 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"CHRONOLINE TM (BHN BAKU KOSMETIK) COA 222035 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GREYVERSE TM (BHN BAKU KOSMETIK) COA GREYVERSE (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"GREYVERSE TM (BHN BAKU KOSMETIK) COA GREYVERSE (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELANOSTATINE TM 5 BG (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MELANOSTATINE TM 5 BG (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MINIPORYL TM (BHN BAKU KOSMETIK) CAS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MINIPORYL TM (BHN BAKU KOSMETIK) CAS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT MAGNESIUM CARBONATE POWDER, BP 2023 (BHN BAKU MAKANAN) COA 3133184\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28369990\", \"uraian\": \"LIGHT MAGNESIUM CARBONATE POWDER, BP 2023 (BHN BAKU MAKANAN) COA 3133184\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIPERAZINE CITRATE BP ( BHN BAKU OBAT HEWAN ) COA PCT/E/2324/065\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"PIPERAZINE CITRATE BP ( BHN BAKU OBAT HEWAN ) COA PCT/E/2324/065\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-011373 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-011373 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-011713,022073 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-011713,022073 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIOCTP-500 (BHN BAKU KOSMETIK) COA BOPN-021743 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BIOCTP-500 (BHN BAKU KOSMETIK) COA BOPN-021743 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-052873 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-052873 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM BISULFITE (BHN BAKU KOSMETIK) COA MAK114\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"SODIUM BISULFITE (BHN BAKU KOSMETIK) COA MAK114\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N4O107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N4O107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CACTUS EXTRACT (BHN BAKU KOSMETIK) COA CAB-030883 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"CACTUS EXTRACT (BHN BAKU KOSMETIK) COA CAB-030883 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HOCOX (BHN BAKU KOSMETIK) COA HOXB-020963 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HOCOX (BHN BAKU KOSMETIK) COA HOXB-020963 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TEA TREE EXTRACT (BHN BAKU KOSMETIK) COA MASL-010933 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"TEA TREE EXTRACT (BHN BAKU KOSMETIK) COA MASL-010933 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-092743 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-092743 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TURMERIC ROOT EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"TURMERIC ROOT EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIO-OSLP (BHN BAKU KOSMETIK) COA BOPN-021743 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BIO-OSLP (BHN BAKU KOSMETIK) COA BOPN-021743 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) CAS 68937-54-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6017 (17KG) (BHN BAKU KOSMETIK) CAS 68937-54-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-54HV (18KG) (BHN BAKU KOSMETIK) CAS 68083-14-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-54HV (18KG) (BHN BAKU KOSMETIK) CAS 68083-14-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-210 (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSG-210 (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) CAS 68937-54-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6017 (17KG) (BHN BAKU KOSMETIK) CAS 68937-54-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) CAS 68937-54-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6017 (17KG) (BHN BAKU KOSMETIK) CAS 68937-54-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20230707\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20230707\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIAMI SCG(S) (BHN BAKU KOSMETIK) COA MWC2301048\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34023990\", \"uraian\": \"MIAMI SCG(S) (BHN BAKU KOSMETIK) COA MWC2301048\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MACKAM C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 11382-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34024990\", \"uraian\": \"MACKAM C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 11382-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EDTA 4NA (BHN BAKU KOSMETIK) COA 20221107,20230714 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"EDTA 4NA (BHN BAKU KOSMETIK) COA 20221107,20230714 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM SULFATE DIHYDRATE, POWDER... (BHN BAKU OBAT) COA 3133614 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332100\", \"uraian\": \"MAGNESIUM SULFATE DIHYDRATE, POWDER... (BHN BAKU OBAT) COA 3133614 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISOLONE BP2022/USP2022 (BHN BAKU OBAT) COA XPL221002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISOLONE BP2022/USP2022 (BHN BAKU OBAT) COA XPL221002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP2010/USP42 (BHN BAKU OBAT) COA NED230203,NED230204,NED230523\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP2010/USP42 (BHN BAKU OBAT) COA NED230203,NED230204,NED230523\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYDROCORTISONE ACETATE EP7/USP42 (BHN BAKU OBAT) COA NEHAC230613\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"HYDROCORTISONE ACETATE EP7/USP42 (BHN BAKU OBAT) COA NEHAC230613\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU OBAT) COA 3131408\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU OBAT) COA 3131408\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINC SULFATE 1-HYDRATE, POWDER,USP43 (BHN BAKU OBAT) COA 3124302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"ZINC SULFATE 1-HYDRATE, POWDER,USP43 (BHN BAKU OBAT) COA 3124302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM OXIDE, LIGHT, POWDER, ...(BHN BAKU OBAT) COA 3130559-02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25199010\", \"uraian\": \"MAGNESIUM OXIDE, LIGHT, POWDER, ...(BHN BAKU OBAT) COA 3130559-02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GENIVIDA (BHN BAKU SUPPLEMEN) COA A002190223 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329900\", \"uraian\": \"GENIVIDA (BHN BAKU SUPPLEMEN) COA A002190223 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF (BHN BAKU SUPPLEMEN) COA UE02304021 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO (R) LUTEIN 20PCT SAF (BHN BAKU SUPPLEMEN) COA UE02304021 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTISHARP NAT. ZEA 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA EW23065008 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"OPTISHARP NAT. ZEA 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA EW23065008 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPPLEMEN) COA TL02306331 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPPLEMEN) COA TL02306331 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT FS (BHN BAKU SUPPLEMEN) COA UE02301003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"REDIVIVO (R) (LYCOPENE) 10PCT FS (BHN BAKU SUPPLEMEN) COA UE02301003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE USP (BAHAN BAKU OBAT) COA ASG/07/190723,210723,220723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE USP (BAHAN BAKU OBAT) COA ASG/07/190723,210723,220723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CROSCARMELLOSE SODIUM USP-NF (BHN BAKU OBAT) COA ACRMC/07/100723,1207232,1407232 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39129090\", \"uraian\": \"CROSCARMELLOSE SODIUM USP-NF (BHN BAKU OBAT) COA ACRMC/07/100723,1207232,1407232 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE BP (BAHAN BAKU OBAT) COA ASGP/07/230723,240723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE BP (BAHAN BAKU OBAT) COA ASGP/07/230723,240723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2210099,UEB2210100 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2210099,UEB2210100 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT23041243,UT23041244 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT23041243,UT23041244 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT23040014 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT23040014 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30416089,UQ30416090 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30416089,UQ30416090 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL02304968 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU MAKANAN) COA TL02304968 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ACID PYROPHOSPHATE FOOD GRADE (BHN BAKU MAKANAN) COA 9230802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28353990\", \"uraian\": \"SODIUM ACID PYROPHOSPHATE FOOD GRADE (BHN BAKU MAKANAN) COA 9230802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK) COA 2307EF3013 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"L-ARGININE LO (BHN BAKU KOSMETIK) COA 2307EF3013 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYDROSELLA TM (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYDROSELLA TM (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 230612 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 230612 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 230507 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 230507 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE (R) VELLUTO (BHN BAKU KOSMETIK) COA L763690\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE (R) VELLUTO (BHN BAKU KOSMETIK) COA L763690\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEE PANDA HONEY (BHN BAKU KOSMETIK) CAS 8028-66-8\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"BEE PANDA HONEY (BHN BAKU KOSMETIK) CAS 8028-66-8\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LYOPHILIZED ROYAL JELLY POWDER (BHN BAKU KOSMETIK) CAS 8031-67-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LYOPHILIZED ROYAL JELLY POWDER (BHN BAKU KOSMETIK) CAS 8031-67-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NICARDIPINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA S117A23002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"NICARDIPINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA S117A23002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IBUPROFEN 40 MICRONS (BHN BAKU OBAT) COA 4050-5000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29163990\", \"uraian\": \"IBUPROFEN 40 MICRONS (BHN BAKU OBAT) COA 4050-5000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ACETATE ANHYDROUS POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3122829\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29152910\", \"uraian\": \"SODIUM ACETATE ANHYDROUS POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3122829\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000082442\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000082442\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H105 83 PCT (BHN BAKU KOSMETIK) COA 0000082443\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H105 83 PCT (BHN BAKU KOSMETIK) COA 0000082443\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000082444\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000082444\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA 0000082445\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA 0000082445\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H105 83 PCT (BHN BAKU KOSMETIK) COA 0000082446, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H105 83 PCT (BHN BAKU KOSMETIK) COA 0000082446, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H103 43 PCT (BHN BAKU KOSMETIK) COA 0000082447, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H103 43 PCT (BHN BAKU KOSMETIK) COA 0000082447, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000082448, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000082448, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000082449, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000082449, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA 0000082450, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA 0000082450, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550373\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550373\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550394\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550394\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550393\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550393\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550391\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550391\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550401\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550401\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550399\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550399\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550398\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550398\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O620011...(BHN BAKU PEWARNA TABLET) COA GA737249\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O620011...(BHN BAKU PEWARNA TABLET) COA GA737249\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751 ...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751 ...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007...(BHN BAKU PEWARNA TABLET) COA GA737252\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007...(BHN BAKU PEWARNA TABLET) COA GA737252\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G63147...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G63147...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B28796...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03B28796...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 02F52182...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 02F52182...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K580000...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K580000...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA737318\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA737318\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650018...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650018...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650023...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650023...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650032...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650032...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30112044 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30112044 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT22090039 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT22090039 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT22090039 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT22090039 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTIOXIDANT PREMIX FOR GUMMY (BHN BAKU MAKANAN) COA XW92307317,XW92307318 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"ANTIOXIDANT PREMIX FOR GUMMY (BHN BAKU MAKANAN) COA XW92307317,XW92307318 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02303660 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02303660 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT PREMIX FOR CHEESE BLOCK CHEDDAR (BHN BAKU MAKANAN) COA XW92307174 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VIT PREMIX FOR CHEESE BLOCK CHEDDAR (BHN BAKU MAKANAN) COA XW92307174 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW92307170,XW92307171 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 C (BHN BAKU MAKANAN) COA XW92307170,XW92307171 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 - C3 (BHN BAKU MAKANAN) COA XW92307172,XW92307173 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 - C3 (BHN BAKU MAKANAN) COA XW92307172,XW92307173 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX ADE (BHN BAKU MAKANAN) COA XW92307319 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX ADE (BHN BAKU MAKANAN) COA XW92307319 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230302 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230302 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010449,0823010450\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010449,0823010450\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010448\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010448\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010448,0823010449\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010448,0823010449\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010449\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010449\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010449\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010449\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010449\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010449\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT23030032 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT23030032 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0041495 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0041495 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02304060 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02304060 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAROCARE NAT. BC 20PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA EW23042006 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"CAROCARE NAT. BC 20PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA EW23042006 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE PH (BHN BAKU SUPPLEMEN) COA TL02303687 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE PH (BHN BAKU SUPPLEMEN) COA TL02303687 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP22523 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP22523 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MICRO CRYSTALLINE CELLULOSE USP, ACCEL 102 (BHN BAKU SUPPLEMEN) COA D108230674\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39129090\", \"uraian\": \"MICRO CRYSTALLINE CELLULOSE USP, ACCEL 102 (BHN BAKU SUPPLEMEN) COA D108230674\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MICRO CRYSTALLINE CELLULOSE USP, ACCEL 102 (BHN BAKU SUPPLEMEN) COA D108230675\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39129090\", \"uraian\": \"MICRO CRYSTALLINE CELLULOSE USP, ACCEL 102 (BHN BAKU SUPPLEMEN) COA D108230675\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN E (BHN BAKU KOSMETIK) COA 201202306201 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"VITAMIN E (BHN BAKU KOSMETIK) COA 201202306201 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHOLINE L-BITARTRATE (BAHAN BAKU OBAT) COA 3027697,3027698 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29231000\", \"uraian\": \"CHOLINE L-BITARTRATE (BAHAN BAKU OBAT) COA 3027697,3027698 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB23040706\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB23040706\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB23040706\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB23040706\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20230302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20230302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20230302\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20230302\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANISETRON HCL EP (BHN BAKU OBAT) COA GRH/123004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"GRANISETRON HCL EP (BHN BAKU OBAT) COA GRH/123004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC CALCIUM ASCORBATE DC (BHN BAKU SUPPLEMEN) COA HPT2303001 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC CALCIUM ASCORBATE DC (BHN BAKU SUPPLEMEN) COA HPT2303001 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-LYSINE HCL (BHN BAKU OBAT) COA 2312270827 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224100\", \"uraian\": \"L-LYSINE HCL (BHN BAKU OBAT) COA 2312270827 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA G02831UG\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA G02831UG\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB050623\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB050623\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B070523\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B070523\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B070523\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B070523\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB050623\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB050623\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LC300523\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LC300523\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-FRGE PLUS (BHN BAKU KOSMETIK) COA CFRK-010223 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND BIO-FRGE PLUS (BHN BAKU KOSMETIK) COA CFRK-010223 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012423 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012423 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-020883 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-020883 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1230809\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1230809\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK)COA CHP1230809\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK)COA CHP1230809\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012333 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012333 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-052873 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-052873 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-100983\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-100983\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA MAK114\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA MAK114\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND TEA TREE EXTRACT (BHN BAKU KOSMETIK) COA MASL-021553 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND TEA TREE EXTRACT (BHN BAKU KOSMETIK) COA MASL-021553 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTIBOND TG-AK (BHN BAKU MAKANAN) COA AK23080906 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069091\", \"uraian\": \"PROTIBOND TG-AK (BHN BAKU MAKANAN) COA AK23080906 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTIBOND TG-GW (BHN BAKU MAKANAN) COA GW23071303 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069091\", \"uraian\": \"PROTIBOND TG-GW (BHN BAKU MAKANAN) COA GW23071303 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX MILK POWDER FOR ADULTS (BHN BAKU MAKANAN) COA XW92307206 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX MILK POWDER FOR ADULTS (BHN BAKU MAKANAN) COA XW92307206 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00821682,VE00821684,VE00825823\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"AMPHISOL K (BHN BAKU KOSMETIK) COA VE00821682,VE00821684,VE00825823\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL ZX (BHN BAKU KOSMETIK) COA 200206012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL ZX (BHN BAKU KOSMETIK) COA 200206012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000213857 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000213857 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AQUACERAMIDE-RC (BHN BAKU KOSMETIK) COA 231003 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33019090\", \"uraian\": \"AQUACERAMIDE-RC (BHN BAKU KOSMETIK) COA 231003 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIO-PGA SOLUTION HB (BHN BAKU KOSMETIK) COA 230913 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"BIO-PGA SOLUTION HB (BHN BAKU KOSMETIK) COA 230913 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONO CHARDY (BHN BAKU KOSMETIK) COA 230665 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"CHRONO CHARDY (BHN BAKU KOSMETIK) COA 230665 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-III (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-III (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 231297 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329900\", \"uraian\": \"K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 231297 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KOMENUKA LIQUID BK (BHN BAKU KOSMETIK) COA 230709 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"KOMENUKA LIQUID BK (BHN BAKU KOSMETIK) COA 230709 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 231079 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"MANDARINCLEAR (BHN BAKU KOSMETIK) COA 231079 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for YUZU CERAMIDE B (BHN BAKU KOSMETIK) COA 230782 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"YUZU CERAMIDE B (BHN BAKU KOSMETIK) COA 230782 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 231297 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329900\", \"uraian\": \"K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 231297 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 230386 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 230386 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 231297 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329900\", \"uraian\": \"K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 231297 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for YUZU CERAMIDE B (BHN BAKU KOSMETIK) COA 230782 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"YUZU CERAMIDE B (BHN BAKU KOSMETIK) COA 230782 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIO-PGA SOLUTION HB (BHN BAKU KOSMETIK) COA 230913 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"BIO-PGA SOLUTION HB (BHN BAKU KOSMETIK) COA 230913 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 230743 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"MANDARINCLEAR (BHN BAKU KOSMETIK) COA 230743 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG230602 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG230602 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) CAS 68937-54-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6017 (17KG) (BHN BAKU KOSMETIK) CAS 68937-54-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-210 (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSG-210 (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-54HV (18KG) (BHN BAKU KOSMETIK) CAS 68083-14-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-54HV (18KG) (BHN BAKU KOSMETIK) CAS 68083-14-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRANSCUTOL P (BHN BAKU SUPPLEMEN) COA 195100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TRANSCUTOL P (BHN BAKU SUPPLEMEN) COA 195100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TEFOSE 63 (BHN BAKU SUPPLEMEN) COA 195196\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TEFOSE 63 (BHN BAKU SUPPLEMEN) COA 195196\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TEFOSE 63 (BHN BAKU SUPPLEMEN) COA 195877\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TEFOSE 63 (BHN BAKU SUPPLEMEN) COA 195877\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELUCIRE 48/16 PELLETS (BHN BAKU SUPPLEMEN) COA 185000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELUCIRE 48/16 PELLETS (BHN BAKU SUPPLEMEN) COA 185000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIVAROXABAN EP (BHN BAKU OBAT) COA BAN600123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"RIVAROXABAN EP (BHN BAKU OBAT) COA BAN600123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OMEPRAZOLE PELLETS 8,5PCT W/W (BHN BAKU OBAT) COA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"OMEPRAZOLE PELLETS 8,5PCT W/W (BHN BAKU OBAT) COA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007...(BHN BAKU PEWARNA TABLET) COA GA738809\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007...(BHN BAKU PEWARNA TABLET) COA GA738809\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPASPRAY (R) OPAQUE COLOR CONCENTRATE FOR FILM...(BHN BAKU PEWARNA TABLET) COA DT745737\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPASPRAY (R) OPAQUE COLOR CONCENTRATE FOR FILM...(BHN BAKU PEWARNA TABLET) COA DT745737\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPAGLOS (R) TABLET CORE SEALANT PRODUCT OPAGLOS... (BHN BAKU PEWARNA TABLET) COA DT748608\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPAGLOS (R) TABLET CORE SEALANT PRODUCT OPAGLOS... (BHN BAKU PEWARNA TABLET) COA DT748608\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EDTA 4NA (BHN BAKU KOSMETIK) COA 20230714\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"EDTA 4NA (BHN BAKU KOSMETIK) COA 20230714\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIN AND DULL HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"THIN AND DULL HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZORYALYS (BHN BAKU KOSMETIK) CAS 73398-61-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ZORYALYS (BHN BAKU KOSMETIK) CAS 73398-61-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE USP (BAHAN BAKU OBAT) COA ASG/07/230723,250723,220723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE USP (BAHAN BAKU OBAT) COA ASG/07/230723,250723,220723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CROSCARMELLOSE SODIUM USP-NF (BHN BAKU OBAT) COA ACRMC/07/160723,170723,200723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39129090\", \"uraian\": \"CROSCARMELLOSE SODIUM USP-NF (BHN BAKU OBAT) COA ACRMC/07/160723,170723,200723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE BP (BAHAN BAKU OBAT) COA ASGP/07/260723,240723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE BP (BAHAN BAKU OBAT) COA ASGP/07/260723,240723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-2200823,2220823\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334910\", \"uraian\": \"DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-2200823,2220823\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-230807 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-230807 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COPPER SULFATE, POWDER, PH.EUR.11.ED. (BHN BAKU SUPPLEMEN) COA 3131021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332500\", \"uraian\": \"COPPER SULFATE, POWDER, PH.EUR.11.ED. (BHN BAKU SUPPLEMEN) COA 3131021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NYSTATIN POWDER ROW GRADE (BHN BAKU OBAT) COA C114761\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NYSTATIN POWDER ROW GRADE (BHN BAKU OBAT) COA C114761\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100MESH (BHN BAKU SUPLEMEN) COA 6AX2308033\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS BP2009/E330 30-100MESH (BHN BAKU SUPLEMEN) COA 6AX2308033\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM PROPIONATE 20 KG (BHN BAKU PAKAN TERNAK) COA 23080065 S/D 23080303\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29155000\", \"uraian\": \"CALCIUM PROPIONATE 20 KG (BHN BAKU PAKAN TERNAK) COA 23080065 S/D 23080303\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBNG230224\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBNG230224\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464161453\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464161453\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464259779\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464259779\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464288266\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464288266\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464259779\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464259779\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464207191\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464207191\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464207196\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464207196\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464207191\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464207191\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA LC024-23-801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 200 (BHN BAKU OBAT) COA LC024-23-801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYPROHEPTADINE HCL BP/PH. EUR. (BHN BAKU OBAT) COA CYP/05231009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"CYPROHEPTADINE HCL BP/PH. EUR. (BHN BAKU OBAT) COA CYP/05231009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ESOMEPRAZOLE SODIUM STERILE (BHN BAKU OBAT) COA SI/EPZ/00130723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"ESOMEPRAZOLE SODIUM STERILE (BHN BAKU OBAT) COA SI/EPZ/00130723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 23LNC0430SQ397\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101990\", \"uraian\": \"NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 23LNC0430SQ397\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) CAS 37350-42-8\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) CAS 37350-42-8\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRO-LIPO TM NEO (BHN BAKU KOSMETIK) CAS 504-63-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PRO-LIPO TM NEO (BHN BAKU KOSMETIK) CAS 504-63-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILIGEL TM (BHN BAKU KOSMETIK) CAS 11138-66-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILIGEL TM (BHN BAKU KOSMETIK) CAS 11138-66-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECOGEL TM (BHN BAKU KOSMETIK) CAS 85711-58-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ECOGEL TM (BHN BAKU KOSMETIK) CAS 85711-58-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENTRY POLYOX WSR 1105 LEO...(BHN BAKU PEWARNA TABLET) COA 2744291066\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"SENTRY POLYOX WSR 1105 LEO...(BHN BAKU PEWARNA TABLET) COA 2744291066\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000213857\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000213857\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000213858, 0000213859\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000213858, 0000213859\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM CARBONATE, HEAVY, POWDER... (BHN BAKU SUPPLEMEN) COA 3104884\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25174100\", \"uraian\": \"CALCIUM CARBONATE, HEAVY, POWDER... (BHN BAKU SUPPLEMEN) COA 3104884\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID DC 97PCT (BHN BAKU SUPPLEMEN) COA HPG2302013 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID DC 97PCT (BHN BAKU SUPPLEMEN) COA HPG2302013 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GUAIFENESIN USP (B. BAKU OBAT) COA GGE-2305055 S/D GGE-2308068\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29094900\", \"uraian\": \"GUAIFENESIN USP (B. BAKU OBAT) COA GGE-2305055 S/D GGE-2308068\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 15330823,15630823,15650823,15670823,15680823,15700823\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 15330823,15630823,15650823,15670823,15680823,15700823\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 15310823,15620823,15640823,15660823\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 15310823,15620823,15640823,15660823\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM ...(BHN BAKU PEWARNA TABLET) COA GA738162\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM ...(BHN BAKU PEWARNA TABLET) COA GA738162\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING..(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING..(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B84893...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03B84893...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K580000..(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K580000..(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B28796...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03B28796...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING..(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING..(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) EZ EASY SWALLOW EZ EASY SWALLOW..(BHN BAKU PEWARNA TABLET) CAS 9050-36-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) EZ EASY SWALLOW EZ EASY SWALLOW..(BHN BAKU PEWARNA TABLET) CAS 9050-36-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02305047 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02305047 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 1,3-BUTYLENE GLYCOL, COSMETIC QUALITY(BHN BAKU KOSMETIK) COA P0623626CC\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"1,3-BUTYLENE GLYCOL, COSMETIC QUALITY(BHN BAKU KOSMETIK) COA P0623626CC\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROSE ANHYDROUS (BHN BAKU OBAT UTK PAKAN TERNAK) COA XWA230808\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17023010\", \"uraian\": \"DEXTROSE ANHYDROUS (BHN BAKU OBAT UTK PAKAN TERNAK) COA XWA230808\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLOTRIMAZOLE MICRONIZED (BHN BAKU OBAT ) COA 202306090013,202306140054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"CLOTRIMAZOLE MICRONIZED (BHN BAKU OBAT ) COA 202306090013,202306140054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-III (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-III (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 230849 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 230849 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 222677, 230975 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"IZAYOI (BHN BAKU KOSMETIK) COA 222677, 230975 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEACH LEAF LIQUID B (BHN BAKU KOSMETIK) COA 231435 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PEACH LEAF LIQUID B (BHN BAKU KOSMETIK) COA 231435 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONO CHARDY (BHN BAKU KOSMETIK) COA 230665 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"CHRONO CHARDY (BHN BAKU KOSMETIK) COA 230665 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMITOSE R (BHN BAKU KOSMETIK) COA LFD (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"AMITOSE R (BHN BAKU KOSMETIK) COA LFD (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) CAS 638164-47-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROTESIL LH (BHN BAKU KOSMETIK) CAS 638164-47-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MACKAM C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 11382-1,10302-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34024990\", \"uraian\": \"MACKAM C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 11382-1,10302-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052326,G05052331\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47063000\", \"uraian\": \"SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052326,G05052331\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052326,G05052331\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47063000\", \"uraian\": \"SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052326,G05052331\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23B0068300 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23B0068300 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23B0046900 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23B0046900 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRIED ALUMINUM HYDROXIDE GEL USP (BHN BAKU OBAT) COA 102358002,102358003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"DRIED ALUMINUM HYDROXIDE GEL USP (BHN BAKU OBAT) COA 102358002,102358003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OMEPRAZOLE PELLETS -8,5PCT (BHN BAKU OBAT) COA OP8.5/121604923\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"OMEPRAZOLE PELLETS -8,5PCT (BHN BAKU OBAT) COA OP8.5/121604923\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MC-GLUCAN (BHN BAKU KOSMETIK) COA MCGL230807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"MC-GLUCAN (BHN BAKU KOSMETIK) COA MCGL230807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX TIRED LEGS (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX TIRED LEGS (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIDIN PURE CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIDIN PURE CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIDIN PURE CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIDIN PURE CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT LYOPHIZED (BHN BAKU OBAT) COA ND1670\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT LYOPHIZED (BHN BAKU OBAT) COA ND1670\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETORIXOCIB (BHN BAKU OBAT) COA ETC-PM/23001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"ETORIXOCIB (BHN BAKU OBAT) COA ETC-PM/23001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANNITOL USP/EP (BHN BAKU OBAT) COA 122303007,122303235\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054300\", \"uraian\": \"MANNITOL USP/EP (BHN BAKU OBAT) COA 122303007,122303235\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 122302553\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28365010\", \"uraian\": \"VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 122302553\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHARMABURST (R) C1 (BHN BAKU OBAT) COA 122302946\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069099\", \"uraian\": \"PHARMABURST (R) C1 (BHN BAKU OBAT) COA 122302946\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHARMABURST (R) 500 (BHN BAKU OBAT) COA 122302870\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069099\", \"uraian\": \"PHARMABURST (R) 500 (BHN BAKU OBAT) COA 122302870\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM HYDROXIDE USP BARCROFT TM 5300 (BHN BAKU OBAT) COA 102369009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"MAGNESIUM HYDROXIDE USP BARCROFT TM 5300 (BHN BAKU OBAT) COA 102369009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRIED ALUMINUM HYDROXIDE, SORBITOL BLEND BARCROFT TM 0501 (BHN BAKU OBAT) COA 102360002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"DRIED ALUMINUM HYDROXIDE, SORBITOL BLEND BARCROFT TM 0501 (BHN BAKU OBAT) COA 102360002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALUMINUM HYDROXIDE GEL USP BARCROFT TM LV13(BHN BAKU OBAT) COA 102313051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"ALUMINUM HYDROXIDE GEL USP BARCROFT TM LV13(BHN BAKU OBAT) COA 102313051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE A PELLETS (BHN BAKU SUPPLEMEN) COA 22E0702\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE A PELLETS (BHN BAKU SUPPLEMEN) COA 22E0702\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE A PELLETS (BHN BAKU SUPPLEMEN) COA 22E2003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE A PELLETS (BHN BAKU SUPPLEMEN) COA 22E2003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE BM PELLETS (BHN BAKU SUPPLEMEN) COA 21E2708\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE BM PELLETS (BHN BAKU SUPPLEMEN) COA 21E2708\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE BM PELLETS (BHN BAKU SUPPLEMEN) COA 23E2304\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE BM PELLETS (BHN BAKU SUPPLEMEN) COA 23E2304\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU SUPPLEMEN) COA 23E2210\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE NA PELLETS (BHN BAKU SUPPLEMEN) COA 23E2210\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ30617014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ30617014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 CRYST FOOD GRADE (BHN BAKU KOSMETIK) COA 012303107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 CRYST FOOD GRADE (BHN BAKU KOSMETIK) COA 012303107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SYN(R)-AKE (BHN BAKU KOSMETIK) COA UE02303002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SYN(R)-AKE (BHN BAKU KOSMETIK) COA UE02303002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) CAS 7631-86-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNSIL TIN50 (BHN BAKU KOSMETIK) CAS 7631-86-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3168376\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3168376\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3168382\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3168382\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TETRATHIONATE BR BASE HAJNA 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3158214\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TETRATHIONATE BR BASE HAJNA 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3158214\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3030339\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3030339\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2066423\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2066423\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2313348\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE AGAR 500G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2313348\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)COA 3096242\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)COA 3096242\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3039541\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3039541\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2339387,2339390\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2339387,2339390\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3096482\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3096482\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 3096196\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 3096196\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2236789\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2236789\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2143794\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLD AGAR 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2143794\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2269093\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2269093\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2297791\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2297791\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2305095\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2305095\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CHROMAGAR CANDIDA 500GM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2325559\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE CHROMAGAR CANDIDA 500GM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2325559\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 4 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2313875\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 4 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2313875\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2088727\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2088727\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2217638\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2217638\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3107977,3107986\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3107977,3107986\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2298727\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2298727\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 2291792\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 2291792\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3072748\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3072748\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT23040025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT23040025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT23060012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT23060012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 1PCT CWS/M (BHN BAKU MAKANAN) COA UT23020002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 1PCT CWS/M (BHN BAKU MAKANAN) COA UT23020002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02304060\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02304060\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT23040010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT23040010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE, TYPE 100 (BHN BAKU SUPPLEMEN) COA UT23070067\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE, TYPE 100 (BHN BAKU SUPPLEMEN) COA UT23070067\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02307644\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02307644\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02306444, TL02307644\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02306444, TL02307644\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) CAS 68937-54-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6017 (17KG) (BHN BAKU KOSMETIK) CAS 68937-54-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KP-578 (16KG) (BHN BAKU KOSMETIK) CAS 1802167-80-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KP-578 (16KG) (BHN BAKU KOSMETIK) CAS 1802167-80-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-7312K (18KG) (BHN BAKU KOSMETIK) CAS 56275-01-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-7312K (18KG) (BHN BAKU KOSMETIK) CAS 56275-01-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-54HV (18KG) (BHN BAKU KOSMETIK) CAS 68083-14-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-54HV (18KG) (BHN BAKU KOSMETIK) CAS 68083-14-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2444314878\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2444314878\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180LCP002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180LCP002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 20 PREMIUM...(BHN BAKU PEWARNA TABLET) COA D184L9F021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 20 PREMIUM...(BHN BAKU PEWARNA TABLET) COA D184L9F021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 20 PREMIUM...(BHN BAKU PEWARNA TABLET) COA D184L57021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 20 PREMIUM...(BHN BAKU PEWARNA TABLET) COA D184L57021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E4M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464213628\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E4M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464213628\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101852623\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA L101852623\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT22090039 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT22090039 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ30112044 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ30112044 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ30112045 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ30112045 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ30112045 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ30112045 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ30112045 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ30112045 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12305024 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12305024 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT23030096 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT23030096 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02206017 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02206017 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22120267 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22120267 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MINERAL PREMIX MILK POWDER FOR ADULTS V2 (BHN BAKU MAKANAN) COA XW92307199,XW.... (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"MINERAL PREMIX MILK POWDER FOR ADULTS V2 (BHN BAKU MAKANAN) COA XW92307199,XW.... (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1 PCT WS (BHN BAKU SUPPLEMEN) COA UT23020003 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1 PCT WS (BHN BAKU SUPPLEMEN) COA UT23020003 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202012 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202012 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02301212 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02301212 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22120267 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22120267 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202012 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202012 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3138445\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3138445\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3138445\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3138445\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL ISOVITALEX ENRICHMENT 10ML 5 EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3191540\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL ISOVITALEX ENRICHMENT 10ML 5 EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3191540\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTISERUM POLY B LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1245637\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTISERUM POLY B LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1245637\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2363671\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2363671\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE B12 INOCULUM BROTH 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3074932\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE B12 INOCULUM BROTH 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3074932\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 3191081\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 3191081\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL ISOVITALEX ENRICHMENT 10ML 5 EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3191540\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL ISOVITALEX ENRICHMENT 10ML 5 EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3191540\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3138445\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3138445\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1344136\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1344136\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 3131935\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 3131935\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3171742\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3171742\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU TNF CBA FLEX SET D9 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2266983\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU TNF CBA FLEX SET D9 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2266983\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU IL-1BTA CBA FLEX SET B4 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3160249\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU IL-1BTA CBA FLEX SET B4 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3160249\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU VEGF CBA FLEX SET B8 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3054677\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU VEGF CBA FLEX SET B8 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3054677\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3171742\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3171742\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3067796\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3067796\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3110438\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3110438\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3110438\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3110438\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3067796\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3067796\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51469...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51469...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007.. (BHN BAKU PEWARNA TABLET) COA GA738937\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007.. (BHN BAKU PEWARNA TABLET) COA GA738937\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001...(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001...(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650023...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650023...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA738989\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA738989\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G52990...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G52990...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G65197...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G65197...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 02F52182...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 02F52182...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F48105...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F48105...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 151-21-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 151-21-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NAI-WHITE A (BHN BAKU KOSMETIK) COA 2307C10103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32061110\", \"uraian\": \"NAI-WHITE A (BHN BAKU KOSMETIK) COA 2307C10103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 23290044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 23290044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT FS (BHN BAKU SUPPLEMEN) COA UE02301001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"REDIVIVO (R) (LYCOPENE) 10PCT FS (BHN BAKU SUPPLEMEN) COA UE02301001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) CAS 1119-97-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CETRIMIDE (BHN BAKU KOSMETIK) CAS 1119-97-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RANITIDINE HYDROCHLORIDE USP (DC GRADE) (BHN BAKU OBAT) COA RH6050823\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29321900\", \"uraian\": \"RANITIDINE HYDROCHLORIDE USP (DC GRADE) (BHN BAKU OBAT) COA RH6050823\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING..(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING..(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019..(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019..(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-30-18037..(BHN BAKU PEWARNA TABLET) CAS 64044-51-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-30-18037..(BHN BAKU PEWARNA TABLET) CAS 64044-51-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-19025-A..(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-19025-A..(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20230829\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20230829\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT (R) 6010 D&C ...(BHN BAKU PEWARNA TABLET) COA WP864274:BC1443\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT (R) 6010 D&C ...(BHN BAKU PEWARNA TABLET) COA WP864274:BC1443\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5396...(BHN BAKU PEWARNA TABLET) COA WP864274:BC14\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5396...(BHN BAKU PEWARNA TABLET) COA WP864274:BC14\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT (R) 6010 D&C ...(BHN BAKU PEWARNA TABLET) COA WP870801:BC5567\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT (R) 6010 D&C ...(BHN BAKU PEWARNA TABLET) COA WP870801:BC5567\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5396...(BHN BAKU PEWARNA TABLET) COA WP860976:1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5396...(BHN BAKU PEWARNA TABLET) COA WP860976:1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5627 FD&C...(BHN BAKU PEWARNA TABLET) COA WP863100:BC2860\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5627 FD&C...(BHN BAKU PEWARNA TABLET) COA WP863100:BC2860\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5517 FD&C...(BHN BAKU PEWARNA TABLET) COA WP866727:BC4487\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5517 FD&C...(BHN BAKU PEWARNA TABLET) COA WP866727:BC4487\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5406 FD&C...(BHN BAKU PEWARNA TABLET) COA WP866896:BC2990\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5406 FD&C...(BHN BAKU PEWARNA TABLET) COA WP866896:BC2990\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5517 FD&C...(BHN BAKU PEWARNA TABLET) COA WP865812:BC2276\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5517 FD&C...(BHN BAKU PEWARNA TABLET) COA WP865812:BC2276\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWDER... (B.BAKU KOSMETIK) CAS 65497-29-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GUAR GUM TREATED AND PULVERISED IN POWDER... (B.BAKU KOSMETIK) CAS 65497-29-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT22090040 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT22090040 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230502 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230502 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230502 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230502 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12305024 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12305024 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230502 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230502 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020025,0923020035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020025,0923020035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02211812 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02211812 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22120378 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22120378 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02206017 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE02206017 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211039 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211039 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE S-1-290000 CLEAR (BHN BAKU PEWARNA TABLET) COA TKL69417,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPACODE S-1-290000 CLEAR (BHN BAKU PEWARNA TABLET) COA TKL69417,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) CAS 7631-86-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNSIL TIN50 (BHN BAKU KOSMETIK) CAS 7631-86-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRAVASTATIN SODIUM (BHN BAKU OBAT) COA PV202210109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181900\", \"uraian\": \"PRAVASTATIN SODIUM (BHN BAKU OBAT) COA PV202210109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LINCOMYCIN HYDROCHLORIDE (BHN BAKU OBAT) COA 2305007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"LINCOMYCIN HYDROCHLORIDE (BHN BAKU OBAT) COA 2305007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7M IU/G (BHN BAKU KOSMETIK) COA 0423060013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7M IU/G (BHN BAKU KOSMETIK) COA 0423060013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-012023,AACN-020193\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-012023,AACN-020193\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-022073\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-022073\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1230831\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1230831\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-020493\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-020493\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N94107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N94107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-011373\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-011373\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N7L103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N7L103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-020193\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-020193\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-011373\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-011373\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-022073\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-022073\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND CUCURBITA EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND CUCURBITA EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012423\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012423\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-020963,040593\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-020963,040593\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-020493\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-020493\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-131993\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-131993\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N94107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N94107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-040493\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-040493\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BISOPROLOL FUMARATE USP (BHN BAKU OBAT) COA LT-OBFA/003/22-23\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"BISOPROLOL FUMARATE USP (BHN BAKU OBAT) COA LT-OBFA/003/22-23\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GREEN TEA DRY DEC.EX ./PHOSPHOL (BHN BAKU SUPLEMEN) COA 23S0183400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GREEN TEA DRY DEC.EX ./PHOSPHOL (BHN BAKU SUPLEMEN) COA 23S0183400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for P. GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPPLEMEN) COA 21S0265500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"P. GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPPLEMEN) COA 21S0265500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for P. GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPPLEMEN) COA 23S0178700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"P. GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPPLEMEN) COA 23S0178700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP22323 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP22323 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP21923 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP21923 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP11423,SAMPLE (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP11423,SAMPLE (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP25223 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP25223 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ESOMEPRAZOLE SODIUM STERILE (BHN BAKU OBAT) COA SI/EPZ/00160923\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"ESOMEPRAZOLE SODIUM STERILE (BHN BAKU OBAT) COA SI/EPZ/00160923\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30616137,UQ30616138,UQ30616143,UQ30616144\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30616137,UQ30616138,UQ30616143,UQ30616144\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02306333\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02306333\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPPLEMEN) COA UT22120044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPPLEMEN) COA UT22120044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22040044,UT22040045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22040044,UT22040045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02305047,UE02305048\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02305047,UE02305048\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30616138,UQ30616139\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30616138,UQ30616139\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30616131,UQ30616132,UQ30616144\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30616131,UQ30616132,UQ30616144\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30616129,UQ30616131\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30616129,UQ30616131\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NABUMETON USP (BHN BAKU OBAT) COA H-1130623\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29145000\", \"uraian\": \"NABUMETON USP (BHN BAKU OBAT) COA H-1130623\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIFE'SDHA(TM) S35-O300 (BHN BAKU SUPPLEMEN) COA VY00519402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"LIFE'SDHA(TM) S35-O300 (BHN BAKU SUPPLEMEN) COA VY00519402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP25723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP25723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2311108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2311108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2201322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2201322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2528862\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2528862\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3114524\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3114524\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3114524\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3114524\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIFCO BEEF EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2084515\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DIFCO BEEF EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2084515\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PROTEOSE PEPTONE NO.3 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1088610\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PROTEOSE PEPTONE NO.3 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1088610\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PROTEOSE PEPTONE NO.3 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1088610\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PROTEOSE PEPTONE NO.3 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1088610\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2308027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2308027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIFCO TRYPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2208158\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DIFCO TRYPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2208158\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3114524\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3114524\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3114524\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3114524\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3114524\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3114524\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3114540\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3114540\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASAMINO ACIDS EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2208138\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASAMINO ACIDS EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2208138\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNEBUSTERS (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 231090\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 231090\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 231331\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ABSORAGE (BHN BAKU KOSMETIK) COA 231331\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 230386\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 230386\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 231297\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329900\", \"uraian\": \"K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 231297\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 230975\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"IZAYOI (BHN BAKU KOSMETIK) COA 230975\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMFREY LIQUID B (BHN BAKU KOSMETIK) COA 230823\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"COMFREY LIQUID B (BHN BAKU KOSMETIK) COA 230823\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRAYPHOS DKP FG 25K BG (BHN BAKU KOSMETIK) COA 2301731\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28352400\", \"uraian\": \"PRAYPHOS DKP FG 25K BG (BHN BAKU KOSMETIK) COA 2301731\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRAYPHOS MKP FG 25K BG (BHN BAKU KOSMETIK) COA 23-048-01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PRAYPHOS MKP FG 25K BG (BHN BAKU KOSMETIK) COA 23-048-01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPAGLOS 6000 WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET) COA DT739887,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPAGLOS 6000 WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET) COA DT739887,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010454\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010454\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF23003008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF23003008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02211812\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02211812\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES2210804,ES2212812\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"ALLANTOIN (BHN BAKU KOSMETIK) COA ES2210804,ES2212812\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92307450 S/D XW92307452\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"V003400 (BHN BAKU MAKANAN) COA XW92307450 S/D XW92307452\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURILEX POWDER (BHN BAKU OBAT) COA B424984\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURILEX POWDER (BHN BAKU OBAT) COA B424984\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURILEX COMPACTED (BHN BAKU OBAT) COA B428639\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURILEX COMPACTED (BHN BAKU OBAT) COA B428639\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA ND2275M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA ND2275M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2302281\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2302281\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA LC 026-23-801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 200 (BHN BAKU OBAT) COA LC 026-23-801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA LC 026-23-801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 200 (BHN BAKU OBAT) COA LC 026-23-801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 23100475,23100476\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29395900\", \"uraian\": \"DIMENHYDRINATE (BHN BAKU OBAT) COA 23100475,23100476\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-230501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-230501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INCA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK) CAS 68956-68-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"INCA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK) CAS 68956-68-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) CAS 8001-25-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) CAS 8001-25-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SEABUCKTHORN HYDROGLYCOLIC EXTRACT(BHN BAKU KOSMETIK) COA HIR230501-B\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SEABUCKTHORN HYDROGLYCOLIC EXTRACT(BHN BAKU KOSMETIK) COA HIR230501-B\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT-MIN PREMIX MILK POWDER FOR PEDIATRIC (BHN BAKU MAKANAN) COA XW92308122\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VIT-MIN PREMIX MILK POWDER FOR PEDIATRIC (BHN BAKU MAKANAN) COA XW92308122\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MINERAL PREMIX MILK POWDER FOR PEDIATRIC (BHN BAKU MAKANAN) COA XW92308121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"MINERAL PREMIX MILK POWDER FOR PEDIATRIC (BHN BAKU MAKANAN) COA XW92308121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT MIN PRX TABURIN TYPE ENKAPSULASI (BHN BAKU SUPPLEMEN) COA MY62309087\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VIT MIN PRX TABURIN TYPE ENKAPSULASI (BHN BAKU SUPPLEMEN) COA MY62309087\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINCIDONE 25KG (BHN BAKU KOSMETIK) CAS 15454-75-8\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ZINCIDONE 25KG (BHN BAKU KOSMETIK) CAS 15454-75-8\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COPPER SULFATE, POWDER, PH.EUR.11.ED. (BHN BAKU SUPLEMEN) COA 3131021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332500\", \"uraian\": \"COPPER SULFATE, POWDER, PH.EUR.11.ED. (BHN BAKU SUPLEMEN) COA 3131021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6017 (17KG) (J) (BHN BAKU KOSMETIK) CAS 68937-54-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6017 (17KG) (J) (BHN BAKU KOSMETIK) CAS 68937-54-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6017 (17KG) (J) (BHN BAKU KOSMETIK) CAS 68937-54-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6017 (17KG) (J) (BHN BAKU KOSMETIK) CAS 68937-54-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-210 (16KG) (BHN BAKU KOSMETIK) CAS KSG-210 (16KG)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSG-210 (16KG) (BHN BAKU KOSMETIK) CAS KSG-210 (16KG)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O66912...(BHN BAKU PEWARNA TABLET) COA GA739804\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O66912...(BHN BAKU PEWARNA TABLET) COA GA739804\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18509...(BHN BAKU PEWARNA TABLET) COA GA739769\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18509...(BHN BAKU PEWARNA TABLET) COA GA739769\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G63147...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G63147...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58923...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58923...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-19025-A...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-19025-A...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM GA739772...(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM GA739772...(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 151-21-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 151-21-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2304161921\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2304161921\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLOWLAC (R) 100 (BHN BAKU OBAT) COA L101502823\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"FLOWLAC (R) 100 (BHN BAKU OBAT) COA L101502823\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104313423\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104313423\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CELLACTOSE (R) 80 (BHN BAKU OBAT) COA L100463223\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"CELLACTOSE (R) 80 (BHN BAKU OBAT) COA L100463223\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103152023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103152023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIROXICAM MICRONIZED (BHN BAKU OBAT) COA PRX2023007M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"PIROXICAM MICRONIZED (BHN BAKU OBAT) COA PRX2023007M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0012000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0012000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0012100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0012100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0020900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0020900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0055600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0055600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0055700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0055700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS SULFATE 7-HYDRATE, CRYST.,... (BHN BAKU MAKANAN) COA 3137170\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"FERROUS SULFATE 7-HYDRATE, CRYST.,... (BHN BAKU MAKANAN) COA 3137170\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000214491\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000214491\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 230802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 230802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 230507\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 230507\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLOWER ACIDS (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"FLOWER ACIDS (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REFINED COCONUT OIL - L (BHN BAKU KOSMETIK) COA 0002712094\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15131990\", \"uraian\": \"REFINED COCONUT OIL - L (BHN BAKU KOSMETIK) COA 0002712094\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BROMHEXINE HYDROCHLORIDE EP (BHN BAKU OBAT) COA ORX/BRH/2305057\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29215900\", \"uraian\": \"BROMHEXINE HYDROCHLORIDE EP (BHN BAKU OBAT) COA ORX/BRH/2305057\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAFFEINE BP/EP/USP (BHN BAKU OBAT) COA 23081511,23081514,23081520,23081530,23081538,23081542\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29393000\", \"uraian\": \"CAFFEINE BP/EP/USP (BHN BAKU OBAT) COA 23081511,23081514,23081520,23081530,23081538,23081542\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CELLACTOSE (R) 80 (BHN BAKU OBAT) COA L100463223\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"CELLACTOSE (R) 80 (BHN BAKU OBAT) COA L100463223\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 2308029T\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100020\", \"uraian\": \"KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 2308029T\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT GRANULATION (BHN BAKU SUPPLEMEN) COA WB22119066\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT GRANULATION (BHN BAKU SUPPLEMEN) COA WB22119066\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT MIN PRX TABURIN TYPE ENKAPSULASI (BHN BAKU SUPPLEMEN) COA MY62309088,MY62309089\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VIT MIN PRX TABURIN TYPE ENKAPSULASI (BHN BAKU SUPPLEMEN) COA MY62309088,MY62309089\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 30 N-3 INF OIL (BHN BAKU SUPPLEMEN) COA TS00022446\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 30 N-3 INF OIL (BHN BAKU SUPPLEMEN) COA TS00022446\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B28796..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03B28796..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B640047...(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03B640047...(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA 8MT2308142\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30032000\", \"uraian\": \"STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA 8MT2308142\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP27223,MTP03023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP27223,MTP03023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OMEPRAZOLE PELLETS 8.5PCT W/W ( BHN BAKU OBAT) COA OP-07270923,07280923,07290923\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"OMEPRAZOLE PELLETS 8.5PCT W/W ( BHN BAKU OBAT) COA OP-07270923,07280923,07290923\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE USP (BAHAN BAKU OBAT) COA JCBA0003 S/D JCBA0006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE USP (BAHAN BAKU OBAT) COA JCBA0003 S/D JCBA0006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA JCDA0005,JCDA0006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123100\", \"uraian\": \"CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA JCDA0005,JCDA0006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE (TM) PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ABYSSINE (TM) PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEFENSCALP TM PF (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"DEFENSCALP TM PF (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXO-P TM (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EXO-P TM (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANACHRYS 2B PF (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LANACHRYS 2B PF (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LYSOFIX TM LIQUID (BHN BAKU KOSMETIK) COA 222079\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"LYSOFIX TM LIQUID (BHN BAKU KOSMETIK) COA 222079\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROGELINE TM (BHN BAKU KOSMETIK) COA 222048\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"PROGELINE TM (BHN BAKU KOSMETIK) COA 222048\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARTAB (R) DIRECTLY COMPRESSIBLE STARCH 4001 (BHN BAKU PEWARNA TABLET) COA WP873593\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARTAB (R) DIRECTLY COMPRESSIBLE STARCH 4001 (BHN BAKU PEWARNA TABLET) COA WP873593\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NOSCAPINE PH.EUR (BHN BAKU OBAT) COA NOS23009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29391900\", \"uraian\": \"NOSCAPINE PH.EUR (BHN BAKU OBAT) COA NOS23009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEARL ESSENCES 35178MJ (BHN BAKU KOSMETIK) COA D3350256\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32061910\", \"uraian\": \"PEARL ESSENCES 35178MJ (BHN BAKU KOSMETIK) COA D3350256\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND (R) PB-21158 (BHN BAKU PEWARNA TABLET) COA GA741045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"PIGMENT BLEND (R) PB-21158 (BHN BAKU PEWARNA TABLET) COA GA741045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET)CAS 57-50-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET)CAS 57-50-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G62544...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G62544...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G52990...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G52990...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B54445...(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03B54445...(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NYSTATIN POWDER ROW GRADE (BHN BAKU OBAT) COA C114759\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NYSTATIN POWDER ROW GRADE (BHN BAKU OBAT) COA C114759\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT23020003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT23020003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT23030172\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT23030172\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT23020046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT23020046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT23030172\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT23030172\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30112045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30112045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT23020003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT23020003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02305056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02305056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT23020046,UT23020059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT23020046,UT23020059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000214335\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000214335\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ30210563\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ30210563\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT23010005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT23010005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23030084,UT23040116\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23030084,UT23040116\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MACKAM C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 10302-1,11383-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34024990\", \"uraian\": \"MACKAM C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 10302-1,11383-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENTRY POLYOX WSR 303 LEO NF... (BHN BAKU PEWARNA TABLET) COA 2534501244\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"SENTRY POLYOX WSR 303 LEO NF... (BHN BAKU PEWARNA TABLET) COA 2534501244\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) CAS 8002-43-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AMISOL TRIO TM (BHN BAKU KOSMETIK) CAS 8002-43-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRO-LIPO TM NEO (BHN BAKU KOSMETIK) CAS 504-63-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PRO-LIPO TM NEO (BHN BAKU KOSMETIK) CAS 504-63-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WASTAR TM LAVENDER (BHN BAKU KOSMETIK) CAS 90063-37-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"WASTAR TM LAVENDER (BHN BAKU KOSMETIK) CAS 90063-37-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WASTAR TM PINK BERRY (BHN BAKU KOSMETIK) CAS 9050-36-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"WASTAR TM PINK BERRY (BHN BAKU KOSMETIK) CAS 9050-36-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILIGEL TM (BHN BAKU KOSMETIK) CAS 11138-66-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILIGEL TM (BHN BAKU KOSMETIK) CAS 11138-66-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSALITY TM (BHN BAKU KOSMETIK) CAS 5343-92-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROSALITY TM (BHN BAKU KOSMETIK) CAS 5343-92-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) CAS 37350-42-8\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) CAS 37350-42-8\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID DC 97PCT (BHN BAKU SUPPLEMEN) COA HPG2302013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID DC 97PCT (BHN BAKU SUPPLEMEN) COA HPG2302013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT23041248,UT23051249\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT23041248,UT23051249\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50529\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061100\", \"uraian\": \"MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50529\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIACEREIN EP (BHN BAKU OBAT) COA DCE/40140623\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"DIACEREIN EP (BHN BAKU OBAT) COA DCE/40140623\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM (BHN BAKU OBAT) COA M114312\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM (BHN BAKU OBAT) COA M114312\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT23050162\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT23050162\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIUSID VET 1 KG (PAKAN IKAN BERBENTUK BUBUK) COA A-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"VIUSID VET 1 KG (PAKAN IKAN BERBENTUK BUBUK) COA A-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIUSID VET 1 KG (PAKAN IKAN BERBENTUK BUBUK) COA A-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"23099090\", \"uraian\": \"VIUSID VET 1 KG (PAKAN IKAN BERBENTUK BUBUK) COA A-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 14 PREMIUM... (BHN BAKU PEWARNA TABLET) COA 2534248998\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 14 PREMIUM... (BHN BAKU PEWARNA TABLET) COA 2534248998\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 10 FP... (BHN BAKU PEWARNA TABLET) COA D184MAV010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 10 FP... (BHN BAKU PEWARNA TABLET) COA D184MAV010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DULSE PHYTELENE EG 745 (BHN BAKU KOSMETIK) COA EG745-221102-GS-B\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"DULSE PHYTELENE EG 745 (BHN BAKU KOSMETIK) COA EG745-221102-GS-B\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-230501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-230501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INCA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK) CAS 68956-68-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"INCA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK) CAS 68956-68-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (SB) (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (SB) (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO230804\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO230804\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GREENSIL (BHN BAKU KOSMETIK) CAS 91771-32-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GREENSIL (BHN BAKU KOSMETIK) CAS 91771-32-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) COA ANTS230503\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) COA ANTS230503\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-BLACK PEARL POWDER (BHN BAKU KOSMETIK) CAS -\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND BIO-BLACK PEARL POWDER (BHN BAKU KOSMETIK) CAS -\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-020883\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-020883\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1231006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1231006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1231006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1231006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012333\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012333\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012333\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012333\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND PF CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSSBD-011143\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND PF CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSSBD-011143\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N7L103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N7L103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-020883\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-020883\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND CACTUS EXTRACT (BHN BAKU KOSMETIK) COA CAB-030883\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND CACTUS EXTRACT (BHN BAKU KOSMETIK) COA CAB-030883\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-012773\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-012773\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-600403\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-600403\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND NEWAPLE (BHN BAKU KOSMETIK) COA NWPB-022093\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND NEWAPLE (BHN BAKU KOSMETIK) COA NWPB-022093\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-050503\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-050503\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KANEKA Q10 UBIDECARENONE 5KG JP (BHN BAKU KOSMETIK) COA FA01-4737\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29146200\", \"uraian\": \"KANEKA Q10 UBIDECARENONE 5KG JP (BHN BAKU KOSMETIK) COA FA01-4737\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMITOSE R (BHN BAKU KOSMETIK) COA LHE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"AMITOSE R (BHN BAKU KOSMETIK) COA LHE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS SILK-1000 (BHN BAKU KOSMETIK) CAS 96690-41-4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS SILK-1000 (BHN BAKU KOSMETIK) CAS 96690-41-4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNBELLIN (BHN BAKU KOSMETIK) COA F210-2305034,F210-2305035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"SUNBELLIN (BHN BAKU KOSMETIK) COA F210-2305034,F210-2305035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ADENOSINE(L) (BHN BAKU KOSMETIK) COA C01202304006L\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"ADENOSINE(L) (BHN BAKU KOSMETIK) COA C01202304006L\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MOPD (BHN BAKU KOSMETIK) COA 230815001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"MOPD (BHN BAKU KOSMETIK) COA 230815001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GF-B331 (BHN BAKU KOSMETIK) COA 20230905003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051090\", \"uraian\": \"GF-B331 (BHN BAKU KOSMETIK) COA 20230905003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOWSIL 9041 SIL ELAST BLEND (BHN BAKU KOSMETIK) COA H052N46065\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100020\", \"uraian\": \"DOWSIL 9041 SIL ELAST BLEND (BHN BAKU KOSMETIK) COA H052N46065\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUGLETS (R) SUGAR SPHERES PF006... (BHN BAKU PEWARNA TABLET) COA ST519851\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"SUGLETS (R) SUGAR SPHERES PF006... (BHN BAKU PEWARNA TABLET) COA ST519851\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) COA 307041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) COA 307041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FEBUXOSTAT FORM A (BHN BAKU OBAT) COA C025(T)-22306002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29341000\", \"uraian\": \"FEBUXOSTAT FORM A (BHN BAKU OBAT) COA C025(T)-22306002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FEBUXOSTAT (WORKING STANDARD) (BHN BAKU OBAT) COA C025(T)-22306002, SAMPLE NO COMMERCIAL...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29341000\", \"uraian\": \"FEBUXOSTAT (WORKING STANDARD) (BHN BAKU OBAT) COA C025(T)-22306002, SAMPLE NO COMMERCIAL...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ESCITALOPRAM OXALATE (BHN BAKU OBAT) COA 5708-22-003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329900\", \"uraian\": \"ESCITALOPRAM OXALATE (BHN BAKU OBAT) COA 5708-22-003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3094598\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3094598\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3173770\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3173770\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3079291\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3079291\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEMOGLOBIN FREEZE DIED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3173780\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEMOGLOBIN FREEZE DIED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3173780\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2291792\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2291792\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3212006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3212006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3219531\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3219531\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2208223\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE BROTH 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2208223\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 230095700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CULTURESWAB PLUS AMIES W/O CHARC SINGLE(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 230095700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2215995,2305239\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE AGAR 500G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2215995,2305239\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2270946\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2270946\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3158193\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE YEAST EXT GLUCOSE CHLOR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3158193\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2297695\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2297695\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MALT EXTRACT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2277807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MALT EXTRACT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2277807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MR-VP BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3045918\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MR-VP BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3045918\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MOTILITY TEST MEDIUM BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2298713\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MOTILITY TEST MEDIUM BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2298713\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2263336\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2263336\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2343459\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2343459\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2269108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2269108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2334621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2334621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR NOBLE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2213711\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR NOBLE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2213711\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1273033\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1273033\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2165877\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2165877\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIADIS MSRV 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3107304\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIADIS MSRV 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3107304\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3114621\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3114621\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2088727\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2088727\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MICRO ASSAY CULTURE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3158196\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MICRO ASSAY CULTURE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3158196\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2217600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2217600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRAIN HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3168382\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRAIN HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3168382\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BORDET GENGOU AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2137558\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BORDET GENGOU AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2137558\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3040515\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3040515\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3004799\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3004799\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST MOLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2264582\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE YEAST MOLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2264582\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2117655\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2117655\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY SORBITOL AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2263334\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY SORBITOL AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2263334\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2269098\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2269098\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB23070721 S/D WB23070723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB23070721 S/D WB23070723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NOSCAPINE PH.EUR (BHN BAKU OBAT) COA NOS23006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29391900\", \"uraian\": \"NOSCAPINE PH.EUR (BHN BAKU OBAT) COA NOS23006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID PPL-600 (BHN BAKU SUPPLEMEN) COA 577200-2230236\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232011\", \"uraian\": \"LIPOID PPL-600 (BHN BAKU SUPPLEMEN) COA 577200-2230236\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA G11031UG\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA G11031UG\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT23030172\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT23030172\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT23030172,XH20230503\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT23030172,XH20230503\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX MILK POWDER FOR ADULTS (BHN BAKU MAKANAN) COA XW92309093\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX MILK POWDER FOR ADULTS (BHN BAKU MAKANAN) COA XW92309093\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92308233,XW92308234\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92308233,XW92308234\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MINERAL PREMIX MILK POWDER FOR ADULTS V2 (BHN BAKU MAKANAN) COA XW92309094,XW92309095\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"MINERAL PREMIX MILK POWDER FOR ADULTS V2 (BHN BAKU MAKANAN) COA XW92309094,XW92309095\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL ZX (BHN BAKU KOSMETIK) COA 200206012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL ZX (BHN BAKU KOSMETIK) COA 200206012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040069,0223040073\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040069,0223040073\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL(R) HS (BHN BAKU KOSMETIK) COA HS4040923\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL(R) HS (BHN BAKU KOSMETIK) COA HS4040923\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL(R) HS (BHN BAKU KOSMETIK) COA HS4040923\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL(R) HS (BHN BAKU KOSMETIK) COA HS4040923\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3485217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3485217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SHIGELLA ANTIS POLY C1 LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3082538\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SHIGELLA ANTIS POLY C1 LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3082538\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3194539\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3194539\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DISC TAXO V FACTOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3116006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DISC TAXO V FACTOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3116006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DISC TAXO X FACTOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3116009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DISC TAXO X FACTOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3116009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DISC TAXO VX FACTOR 50 DISCS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2277212\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DISC TAXO VX FACTOR 50 DISCS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2277212\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU NAIVE/MEM T CELL PANEL 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2308427\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU NAIVE/MEM T CELL PANEL 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2308427\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3256362\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3256362\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MS TH1/TH2/TH17 CBA KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3243113\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"MS TH1/TH2/TH17 CBA KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3243113\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX (R) OPAQUE COLOR COATING CONCENTRATE... (BHN BAKU PEWARNA TABLET) COA DT751690\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPALUX (R) OPAQUE COLOR COATING CONCENTRATE... (BHN BAKU PEWARNA TABLET) COA DT751690\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE (R) MONOGRAMMING INK... (BHN BAKU PEWARNA TABLET) COA DT751221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPACODE (R) MONOGRAMMING INK... (BHN BAKU PEWARNA TABLET) COA DT751221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX (R) OPAQUE COLOR COATING CONCENTRATE... (BHN BAKU PEWARNA TABLET) COA DT751697\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPALUX (R) OPAQUE COLOR COATING CONCENTRATE... (BHN BAKU PEWARNA TABLET) COA DT751697\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G630022...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G630022...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977.. (BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977.. (BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O665000...(BHN BAKU PEWARNA TABLET) COA GA740699\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O665000...(BHN BAKU PEWARNA TABLET) COA GA740699\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751.. (BHN BAKU PEWARNA TABLET)CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751.. (BHN BAKU PEWARNA TABLET)CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007.. (BHN BAKU PEWARNA TABLET) COA GA740701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007.. (BHN BAKU PEWARNA TABLET) COA GA740701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A..(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A..(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABCOAT TC (R) FILM COATING PRODUCT TC-GFII... (BHN BAKU PEWARNA TABLET)COA GA740705\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"TABCOAT TC (R) FILM COATING PRODUCT TC-GFII... (BHN BAKU PEWARNA TABLET)COA GA740705\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O92157.. (BHN BAKU PEWARNA TABLET) COA GA740706\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O92157.. (BHN BAKU PEWARNA TABLET) COA GA740706\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING.. (BHN BAKU PEWARNA TABLET)CAS 121786-16-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING.. (BHN BAKU PEWARNA TABLET)CAS 121786-16-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 151-21-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 151-21-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 151-21-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 151-21-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2311108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2311108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2201322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2201322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2528862\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2528862\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3114524\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3114524\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3039818\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3039818\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3039818\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3039818\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2528862\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2528862\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASAMINO ACIDS TECHNICALS 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1308076\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASAMINO ACIDS TECHNICALS 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1308076\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101853023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA L101853023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM FEREDETATE, POWDER, BP2023 (BHN BAKU OBAT) COA 3130632\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"SODIUM FEREDETATE, POWDER, BP2023 (BHN BAKU OBAT) COA 3130632\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POTASSIUM L-ASPARTATE 0,5 HYDRATE (BHN BAKU OBAT) COA 3097137\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"POTASSIUM L-ASPARTATE 0,5 HYDRATE (BHN BAKU OBAT) COA 3097137\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU OBAT) COA 3131113\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU OBAT) COA 3131113\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU OBAT) COA 3131113\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU OBAT) COA 3131113\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU OBAT) COA 3137011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU OBAT) COA 3137011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALENDERS 2024, NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"49100000\", \"uraian\": \"CALENDERS 2024, NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) CAS 1332-09-8\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) CAS 1332-09-8\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052339\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47063000\", \"uraian\": \"SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052339\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMETHAZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA HPHCPR070\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29343000\", \"uraian\": \"PROMETHAZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA HPHCPR070\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M537468,M537469,M537573,M537574\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M537468,M537469,M537573,M537574\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DS-CERAMIDE Y3S (BHN BAKU KOSMETIK) COA CSLG17\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29241990\", \"uraian\": \"DS-CERAMIDE Y3S (BHN BAKU KOSMETIK) COA CSLG17\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DS-CERAMIDE Y3S (BHN BAKU KOSMETIK) COA CSLG19\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29241990\", \"uraian\": \"DS-CERAMIDE Y3S (BHN BAKU KOSMETIK) COA CSLG19\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 23T0078700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 23T0078700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOSWELLIA SERRATA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 23T0061400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BOSWELLIA SERRATA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 23T0061400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NATURAL SOURCE MIXED TOCOPHEROLS (BHN BAKU KOSMETIK) COA 230907M001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"NATURAL SOURCE MIXED TOCOPHEROLS (BHN BAKU KOSMETIK) COA 230907M001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNEBUSTERS (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIOBENEFITY (BHN BAKU KOSMETIK) COA 231180\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BIOBENEFITY (BHN BAKU KOSMETIK) COA 231180\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 230386\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 230386\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-III (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-III (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HAPPICLOV (BHN BAKU KOSMETIK) COA 231266\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HAPPICLOV (BHN BAKU KOSMETIK) COA 231266\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 230975\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"IZAYOI (BHN BAKU KOSMETIK) COA 230975\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SWERTIANIN-P (BHN BAKU KOSMETIK) COA 231640\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SWERTIANIN-P (BHN BAKU KOSMETIK) COA 231640\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 231090\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 231090\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIRJU (BHN BAKU KOSMETIK) COA 230167\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"CLAIRJU (BHN BAKU KOSMETIK) COA 230167\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-15 (16KG) (BHN BAKU KOSMETIK) CAS 541-02-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSG-15 (16KG) (BHN BAKU KOSMETIK) CAS 541-02-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EMULCIRE 61 WL 2659 (BHN BAKU SUPPLEMEN) COA 196936\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"EMULCIRE 61 WL 2659 (BHN BAKU SUPPLEMEN) COA 196936\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRANSCUTOL P (BHN BAKU SUPPLEMEN) COA 195556\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TRANSCUTOL P (BHN BAKU SUPPLEMEN) COA 195556\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40\u00b0 BRIX) (BHN BAKU KOSMETIK) COA 02/22GL4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40\u00b0 BRIX) (BHN BAKU KOSMETIK) COA 02/22GL4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40\u00b0 BRIX) (BHN BAKU KOSMETIK) COA 02/22GL4, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40\u00b0 BRIX) (BHN BAKU KOSMETIK) COA 02/22GL4, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for APIFIL CAR (BHN BAKU SUPPLEMEN) COA 188262\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"APIFIL CAR (BHN BAKU SUPPLEMEN) COA 188262\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LABRAFAC LIPOPHILE WL 1349 (BHN BAKU SUPPLEMEN) COA 195981\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LABRAFAC LIPOPHILE WL 1349 (BHN BAKU SUPPLEMEN) COA 195981\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELEOL MONO AND DIGLYCERIDES NF (BHN BAKU SUPPLEMEN) COA 23E0304\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELEOL MONO AND DIGLYCERIDES NF (BHN BAKU SUPPLEMEN) COA 23E0304\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LABRASOL BF (BHN BAKU SUPPLEMEN) COA 195283\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LABRASOL BF (BHN BAKU SUPPLEMEN) COA 195283\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRECIROL ATO 5 (BHN BAKU SUPPLEMEN) COA 196484\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"PRECIROL ATO 5 (BHN BAKU SUPPLEMEN) COA 196484\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPRITOL 888 PELLETS (BHN BAKU SUPPLEMEN) COA 22E4306\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"COMPRITOL 888 PELLETS (BHN BAKU SUPPLEMEN) COA 22E4306\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPRITOL 888 ATO (BHN BAKU SUPPLEMEN) COA 197169\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"COMPRITOL 888 ATO (BHN BAKU SUPPLEMEN) COA 197169\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20230801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20230801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMETHAZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA HPHCPR070\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29343000\", \"uraian\": \"PROMETHAZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA HPHCPR070\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BISOPROLOL FUMARATE USP (BHN BAKU OBAT) COA LT-OBFA/006/23-24\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"BISOPROLOL FUMARATE USP (BHN BAKU OBAT) COA LT-OBFA/006/23-24\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for XANTHAN 80 (BAHAN BAKU OBAT) COA 4454309807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"XANTHAN 80 (BAHAN BAKU OBAT) COA 4454309807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ONDANSETRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA 23OS002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"ONDANSETRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA 23OS002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G630022...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G630022...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 02F54189...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 02F54189...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 02F52182...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 02F52182...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A..(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A..(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-020883\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-020883\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1231006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1231006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND NEWAPLE (BHN BAKU KOSMETIK) COA NWPB-022093\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND NEWAPLE (BHN BAKU KOSMETIK) COA NWPB-022093\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SENAS (BHN BAKU KOSMETIK) COA NASB-012593\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21022090\", \"uraian\": \"HYUNDAI BIOLAND SENAS (BHN BAKU KOSMETIK) COA NASB-012593\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N94107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N94107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N7L103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N7L103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-040493\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-040493\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-040493\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-040493\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANTOPRAZOLE SODIUM (STERILE) (BHN BAKU OBAT) COA SI/PPZ/01891023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"PANTOPRAZOLE SODIUM (STERILE) (BHN BAKU OBAT) COA SI/PPZ/01891023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC CALCIUM ASCORBATE DC (BHN BAKU SUPPLEMEN) COA HPT2303001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC CALCIUM ASCORBATE DC (BHN BAKU SUPPLEMEN) COA HPT2303001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 23S0224200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 23S0224200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 23S0218001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 23S0218001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 23S0121400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 23S0121400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CURCUMINOIDS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 23S0164401\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"CURCUMINOIDS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 23S0164401\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 23S0224200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 23S0224200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 23S0218001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 23S0218001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILDENAFIL CITRATE USP (BHN BAKU OBAT) COA SLC0570923\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SILDENAFIL CITRATE USP (BHN BAKU OBAT) COA SLC0570923\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 57-50-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 57-50-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA740864\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA740864\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650035...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650035...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007...(BHN BAKU PEWARNA TABLET) COA GA740701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007...(BHN BAKU PEWARNA TABLET) COA GA740701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING...(BHN BAKU PEWARNA TABLET)CAS 121786-16-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING...(BHN BAKU PEWARNA TABLET)CAS 121786-16-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 21K58794..(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 21K58794..(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51226...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51226...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K580000...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K580000...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) FX SPECIAL EFFECTS FILM COATING SYSTEM..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) FX SPECIAL EFFECTS FILM COATING SYSTEM..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT23070049\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT23070049\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT23070187\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT23070187\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT23070049\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT23070049\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02305048\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02305048\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT23070016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT23070016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT23040015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT23040015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 100 CAN 10 KG (BHN BAKU KOSMETIK) CAS 55965-84-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 100 CAN 10 KG (BHN BAKU KOSMETIK) CAS 55965-84-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 940 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 940 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) CAS 122-99-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) CAS 122-99-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIDIN DO CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIDIN DO CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 120 CAN 10 KG (BHN BAKU KOSMETIK) CAS 65-85-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 120 CAN 10 KG (BHN BAKU KOSMETIK) CAS 65-85-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG230908,MCVG230915,MCVG231005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG230908,MCVG230915,MCVG231005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NICLOSAMIDE ANHYDROUS (BHN BAKU PAKAN HEWAN) COA 20230908\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"NICLOSAMIDE ANHYDROUS (BHN BAKU PAKAN HEWAN) COA 20230908\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V 427502 (BHN BAKU MAKANAN) COA XW92309278\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"V 427502 (BHN BAKU MAKANAN) COA XW92309278\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB23070719 S/D WB23070721\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB23070719 S/D WB23070721\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 05-07-23 S/D 07-07-23,08-09-23 ,10-03-23\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 05-07-23 S/D 07-07-23,08-09-23 ,10-03-23\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 23-05-22 ,16-05-22 ,24-05-22\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25070000\", \"uraian\": \"KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 23-05-22 ,16-05-22 ,24-05-22\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for XANTHAN 80 (BAHAN BAKU OBAT) COA 4454309807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"XANTHAN 80 (BAHAN BAKU OBAT) COA 4454309807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010454\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010454\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF23003008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF23003008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02211812\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02211812\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES2210804,ES2212812\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"ALLANTOIN (BHN BAKU KOSMETIK) COA ES2210804,ES2212812\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92307450 S/D XW92307452\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"V003400 (BHN BAKU MAKANAN) COA XW92307450 S/D XW92307452\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG230908,MCVG230915,MCVG231005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG230908,MCVG230915,MCVG231005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT. A PALM. 1.0 M + VIT. D3 100'000 (BHN BAKU MAKANAN) COA UT23070179,UT23070180\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VIT. A PALM. 1.0 M + VIT. D3 100'000 (BHN BAKU MAKANAN) COA UT23070179,UT23070180\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHTHALAVIN (R) ENTERIC COATING POLYMER 2138 CLEAR (BHN BAKU PEWARNA TABLET) COA WP871784\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"PHTHALAVIN (R) ENTERIC COATING POLYMER 2138 CLEAR (BHN BAKU PEWARNA TABLET) COA WP871784\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT (R) 6010 D&C ...(BHN BAKU PEWARNA TABLET) COA WP870800:BC5548\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT (R) 6010 D&C ...(BHN BAKU PEWARNA TABLET) COA WP870800:BC5548\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C...(BHN BAKU PEWARNA TABLET) COA WP868324:BC3385\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5287 FD&C...(BHN BAKU PEWARNA TABLET) COA WP868324:BC3385\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5517 FD&C...(BHN BAKU PEWARNA TABLET) COA WP866727:BC4487\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5517 FD&C...(BHN BAKU PEWARNA TABLET) COA WP866727:BC4487\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX (R) COMPACTED (BHN BAKU OBAT) COA B340493,B340494,B340496\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX (R) COMPACTED (BHN BAKU OBAT) COA B340493,B340494,B340496\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) CAS 122-99-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) CAS 122-99-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) CAS 122-99-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) CAS 122-99-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03F140006..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03F140006..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40\u00b0 BRIX) (BHN BAKU KOSMETIK) COA 02/22GL4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40\u00b0 BRIX) (BHN BAKU KOSMETIK) COA 02/22GL4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40\u00b0 BRIX) (BHN BAKU KOSMETIK) COA 02/22GL4, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40\u00b0 BRIX) (BHN BAKU KOSMETIK) COA 02/22GL4, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 2310035T\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100020\", \"uraian\": \"KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 2310035T\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-231002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-231002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-231002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-231002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) CAS 8001-25-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) CAS 8001-25-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPPLEMEN) COA TL02306407\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPPLEMEN) COA TL02306407\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO(R) LUTEIN 20 PCT SAF (BHN BAKU SUPPLEMEN) COA UE02304021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO(R) LUTEIN 20 PCT SAF (BHN BAKU SUPPLEMEN) COA UE02304021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02307060\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02307060\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02307737\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02307737\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPPLEMEN) COA UT23050002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPPLEMEN) COA UT23050002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT23070015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT23070015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT23050011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT23050011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT23060023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT23060023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT23040025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT23040025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT23090058,UT23090063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT23090058,UT23090063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT23060014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT23060014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT23050162\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT23050162\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID DC 97PCT (BHN BAKU SUPPLEMEN) COA HPG2303001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID DC 97PCT (BHN BAKU SUPPLEMEN) COA HPG2303001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NAPROXEN SODIUM USP (BHN BAKU OBAT) COA 2-SN-1570823\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29189900\", \"uraian\": \"NAPROXEN SODIUM USP (BHN BAKU OBAT) COA 2-SN-1570823\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ESOMEPRAZOLE MAGNESIUM TRIHYDRATE (BHN BAKU OBAT) COA C900100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"ESOMEPRAZOLE MAGNESIUM TRIHYDRATE (BHN BAKU OBAT) COA C900100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000215220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000215220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000215219 S/D 0000215221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000215219 S/D 0000215221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP29323\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP29323\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMITOSE HGA (BHN BAKU KOSMETIK) COA LIL\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"AMITOSE HGA (BHN BAKU KOSMETIK) COA LIL\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) CAS 638164-47-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROTESIL LH (BHN BAKU KOSMETIK) CAS 638164-47-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS SILK-1000 (BHN BAKU KOSMETIK) CAS 96690-41-4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS SILK-1000 (BHN BAKU KOSMETIK) CAS 96690-41-4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS EK-118(IN) (BHN BAKU KOSMETIK) CAS 59219-71-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS EK-118(IN) (BHN BAKU KOSMETIK) CAS 59219-71-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIDIN DO CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIDIN DO CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIDIN PURE CAN 10 KG (BHN BAKU KOSMETIK) CAS 70775-75-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIDIN PURE CAN 10 KG (BHN BAKU KOSMETIK) CAS 70775-75-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOREALINE PROTECT (BHN BAKU KOSMETIK) COA AM097578\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BOREALINE PROTECT (BHN BAKU KOSMETIK) COA AM097578\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANACHRYS 2B PF (PRESERVATIVE) (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LANACHRYS 2B PF (PRESERVATIVE) (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROGELINE TM (BHN BAKU KOSMETIK) COA 222048\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"PROGELINE TM (BHN BAKU KOSMETIK) COA 222048\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ABYSSINE 657 (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE (TM) PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ABYSSINE (TM) PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 231544\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 231544\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 232178\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 232178\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 230972\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 230972\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HAPPICLOV (BHN BAKU KOSMETIK) COA 231266\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HAPPICLOV (BHN BAKU KOSMETIK) COA 231266\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) PEACH (BHN BAKU KOSMETIK) COA 10300039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"EXTRAPONE (R) PEACH (BHN BAKU KOSMETIK) COA 10300039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACTIPONE (R) CAMU CAMU GW (BHN BAKU KOSMETIK) COA 10300021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"ACTIPONE (R) CAMU CAMU GW (BHN BAKU KOSMETIK) COA 10300021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VACCINIUM MYRTILLUS DRY EX. (BHN BAKU SUPLEMEN) COA 22S0239900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VACCINIUM MYRTILLUS DRY EX. (BHN BAKU SUPLEMEN) COA 22S0239900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 23S0121400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 23S0121400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECHINACEA ANG.DRY PURIF. EX. (BHN BAKU SUPPLEMEN) COA 21S0155200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ECHINACEA ANG.DRY PURIF. EX. (BHN BAKU SUPPLEMEN) COA 21S0155200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ACID PYROPHOSPHATE FOOD GRADE (BHN BAKU MAKANAN) COA 9231024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28353990\", \"uraian\": \"SODIUM ACID PYROPHOSPHATE FOOD GRADE (BHN BAKU MAKANAN) COA 9231024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GLUCOSAMINE SULFATE POTASSIUM CHLORIDE (BHN BAKU OBAT) COA WA202308007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329900\", \"uraian\": \"GLUCOSAMINE SULFATE POTASSIUM CHLORIDE (BHN BAKU OBAT) COA WA202308007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MOXIFLOXACIN HYDROCHLORIDE EP (BHN BAKU OBAT) COA EL-05/L011/23083,EL-05/L011/23076\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334990\", \"uraian\": \"MOXIFLOXACIN HYDROCHLORIDE EP (BHN BAKU OBAT) COA EL-05/L011/23083,EL-05/L011/23076\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101853923\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA L101853923\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID REGULAR (BHN BAKU SUPPLEMEN) COA HPB2305045,HPB2305049\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID REGULAR (BHN BAKU SUPPLEMEN) COA HPB2305045,HPB2305049\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID REGULAR (BHN BAKU SUPPLEMEN) COA HPB2305045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID REGULAR (BHN BAKU SUPPLEMEN) COA HPB2305045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC SODIUM ASCORBATE REGULAR (BHN BAKU SUPPLEMEN) COA HPN2305002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC SODIUM ASCORBATE REGULAR (BHN BAKU SUPPLEMEN) COA HPN2305002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID REGULAR (BHN BAKU SUPPLEMEN) COA HPB2305049\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID REGULAR (BHN BAKU SUPPLEMEN) COA HPB2305049\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/13100586\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/13100586\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-231019\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-231019\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550818\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550818\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550778\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550778\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550817\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550817\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550853\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550853\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550797\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550797\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550852\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550852\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550851\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550851\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 23100533,23100534\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29395900\", \"uraian\": \"DIMENHYDRINATE (BHN BAKU OBAT) COA 23100533,23100534\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MACKAM C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 11384-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34024990\", \"uraian\": \"MACKAM C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 11384-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID MONOHYDRAT BP/EP/U F6000 (BHN BAKU KOSMETIK) COA 84022504\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID MONOHYDRAT BP/EP/U F6000 (BHN BAKU KOSMETIK) COA 84022504\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIDOCAINE BASE (BHN BAKU OBAT) COA 203876\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"LIDOCAINE BASE (BHN BAKU OBAT) COA 203876\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIDOCAINE HCL (BHN BAKU OBAT) COA 202193\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"LIDOCAINE HCL (BHN BAKU OBAT) COA 202193\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG231006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG231006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WASTAR TM PINK BERRY (BHN BAKU KOSMETIK) CAS 9050-36-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"WASTAR TM PINK BERRY (BHN BAKU KOSMETIK) CAS 9050-36-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) CAS 8002-43-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTENSO TM (BHN BAKU KOSMETIK) CAS 8002-43-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) CAS 37350-42-8\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) CAS 37350-42-8\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECOSLIM TM (BHN BAKU KOSMETIK) CAS 58-08-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ECOSLIM TM (BHN BAKU KOSMETIK) CAS 58-08-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOREALINE (R) AURORA (BHN BAKU KOSMETIK) COA BX1220017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BOREALINE (R) AURORA (BHN BAKU KOSMETIK) COA BX1220017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE S-1-8114 BLACK (BHN BAKU PEWARNA TABLET) COA TKL70208,SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPACODE S-1-8114 BLACK (BHN BAKU PEWARNA TABLET) COA TKL70208,SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM ASPARTATE DIHYDRATE,... (BHN BAKU SUPPLEMEN) COA 3118345-04\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"MAGNESIUM ASPARTATE DIHYDRATE,... (BHN BAKU SUPPLEMEN) COA 3118345-04\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM SELENITE IN CARRIER,... (BHN BAKU SUPPLEMEN) COA 3127495\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28429010\", \"uraian\": \"SODIUM SELENITE IN CARRIER,... (BHN BAKU SUPPLEMEN) COA 3127495\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 23S0121400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 23S0121400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101853723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA L101853723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02211812,TL02211813\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02211812,TL02211813\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060089,0522060090,0523060007,0523060011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060089,0522060090,0523060007,0523060011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES2301822\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"ALLANTOIN (BHN BAKU KOSMETIK) COA ES2301822\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 - C3 (BHN BAKU MAKANAN) COA XW92309193,XW92309194\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 - C3 (BHN BAKU MAKANAN) COA XW92309193,XW92309194\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ30310571\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ30310571\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT23050153\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT23050153\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ20512156,UQ20512157\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ20512156,UQ20512157\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000214335\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000214335\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX FOR MARGARINE SG15-0027 (BHN BAKU MAKANAN) COA XW92310004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX FOR MARGARINE SG15-0027 (BHN BAKU MAKANAN) COA XW92310004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX VMP JELLY (BHN BAKU MAKANAN) COA XW92310084\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX VMP JELLY (BHN BAKU MAKANAN) COA XW92310084\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX FOR JELLY DRINK V4 (BHN BAKU MAKANAN) COA XW92310085\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX FOR JELLY DRINK V4 (BHN BAKU MAKANAN) COA XW92310085\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI23030003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI23030003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING..(BHN BAKU PEWARNA TABLET)CAS9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING..(BHN BAKU PEWARNA TABLET)CAS9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 57-50-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 57-50-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET)CAS 121786-16-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET)CAS 121786-16-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B28796...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03B28796...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620041...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620041...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650018...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650018...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) CAS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) CAS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA 2464438852\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA 2464438852\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRECIROL ATO 5 (BHN BAKU SUPPLEMEN) COA 197385\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"PRECIROL ATO 5 (BHN BAKU SUPPLEMEN) COA 197385\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELUCIRE 48/16 PELLETS (BHN BAKU SUPPLEMEN) COA 185000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELUCIRE 48/16 PELLETS (BHN BAKU SUPPLEMEN) COA 185000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CARBOWAX SENTRY PEG 1450 (BHN BAKU KOSMETIK) COA D684N4QPB2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39072990\", \"uraian\": \"CARBOWAX SENTRY PEG 1450 (BHN BAKU KOSMETIK) COA D684N4QPB2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2023102701\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2023102701\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUCRALOSE (BHN BAKU OBAT) COA 23082601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29321400\", \"uraian\": \"SUCRALOSE (BHN BAKU OBAT) COA 23082601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA 2301420140\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA 2301420140\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CANDESARTAN CILEXETIL (BHN BAKU OBAT) COA 5712-23-078\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"CANDESARTAN CILEXETIL (BHN BAKU OBAT) COA 5712-23-078\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-183003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-183003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-183003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-183003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-183003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-183003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-011373\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-011373\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1231108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1231108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-052873,060693\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-052873,060693\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-040593\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-040593\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND JEJU TANGERINE EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND JEJU TANGERINE EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-012773\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-012773\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SENAS (BHN BAKU KOSMETIK) COA NASB-01259\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21022090\", \"uraian\": \"HYUNDAI BIOLAND SENAS (BHN BAKU KOSMETIK) COA NASB-01259\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N7L103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N7L103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND CUCURBITA EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND CUCURBITA EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND COLINUS (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND COLINUS (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 1,3-BUTYLENE GLYCOL (NATUROBG) (BHN BAKU KOSMETIK) COA BGC/L65/23\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"1,3-BUTYLENE GLYCOL (NATUROBG) (BHN BAKU KOSMETIK) COA BGC/L65/23\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIBUTYRIN 65PCT 25 KG (BHN BAKU PAKAN TERNAK) COA 20231103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29156000\", \"uraian\": \"TRIBUTYRIN 65PCT 25 KG (BHN BAKU PAKAN TERNAK) COA 20231103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 23290081\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 23290081\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWDER... (B.BAKU KOSMETIK) CAS 65497-29-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GUAR GUM TREATED AND PULVERISED IN POWDER... (B.BAKU KOSMETIK) CAS 65497-29-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512326\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47069200\", \"uraian\": \"SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512326\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NONIVAMIDE (SYNTHETIC CAPSAICIN) (BHN BAKU KOSMETIK) COA 20231020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29241990\", \"uraian\": \"NONIVAMIDE (SYNTHETIC CAPSAICIN) (BHN BAKU KOSMETIK) COA 20231020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51469..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51469..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O600001...(BHN BAKU PEWARNA TABLET) COA GA742434\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O600001...(BHN BAKU PEWARNA TABLET) COA GA742434\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA742435\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA742435\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007...(BHN BAKU PEWARNA TABLET) COA GA742437\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007...(BHN BAKU PEWARNA TABLET) COA GA742437\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABCOAT TC (R) FILM COATING PRODUCT TC-GFII-1505...(BHN BAKU PEWARNA TABLET) COA GA742438\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"TABCOAT TC (R) FILM COATING PRODUCT TC-GFII-1505...(BHN BAKU PEWARNA TABLET) COA GA742438\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM OY-GM-7305..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM OY-GM-7305..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K80814..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03K80814..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B82443..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03B82443..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM Y-1-7000..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM Y-1-7000..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) KB LOW VISCOSITY FILM COATING SYSTEM..(BHN BAKU PEWARNA TABLET)CAS 151-21-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) KB LOW VISCOSITY FILM COATING SYSTEM..(BHN BAKU PEWARNA TABLET)CAS 151-21-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3485217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3485217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464397264\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464397264\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464397261\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464397261\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464397261\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464397261\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052339\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47063000\", \"uraian\": \"SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052339\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DESONIDE MICRONIZED (BHN BAKU OBAT) COA NC3328M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"DESONIDE MICRONIZED (BHN BAKU OBAT) COA NC3328M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIFCO BEEF EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2312117\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DIFCO BEEF EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2312117\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3100095\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3100095\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2528862\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2528862\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3039818\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3039818\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3039818\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3039818\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3100095\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3100095\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3100095\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3100095\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2201322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2201322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2509110\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2509110\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3039818\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3039818\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3114540\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3114540\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3018648\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3018648\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2528862\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2528862\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC CALCIUM ASCORBATE DC (BHN BAKU SUPPLEMEN) COA HPT2303003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC CALCIUM ASCORBATE DC (BHN BAKU SUPPLEMEN) COA HPT2303003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3168376\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3168376\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 3221348\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 3221348\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2311158\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2311158\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2343200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2343200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3096321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3096321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2A AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3053725\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE R2A AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3053725\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2236789\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2236789\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2046206\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2046206\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HILTON AGAR II 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3172757\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MUELLER HILTON AGAR II 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3172757\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SIM MEDIUM BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2299810\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SIM MEDIUM BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2299810\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2343459\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2343459\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2269108,3142346\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2269108,3142346\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3206413\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3206413\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DERMATOPHYTE TEST MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3221072\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DERMATOPHYTE TEST MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3221072\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GLYCEROL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2292718\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GLYCEROL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2292718\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2217638\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2217638\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2053778\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2053778\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TETRATHIONATE BR BASE HAJNA 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3158214\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TETRATHIONATE BR BASE HAJNA 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3158214\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3199948\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3199948\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M TGE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2201315\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M TGE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2201315\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HILTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3150802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MUELLER HILTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3150802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3137222\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3137222\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 3221348\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 3221348\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3088713,3173090\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3088713,3173090\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2362156,3088713\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2362156,3088713\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 3186480\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 3186480\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2229527\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2229527\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3144373\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3144373\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2291792\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2291792\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MICRO INOCULUM BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3199057\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MICRO INOCULUM BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3199057\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3206413\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3206413\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CHROMAGAR CANDIDA 500GM (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3223967\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE CHROMAGAR CANDIDA 500GM (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3223967\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MIDDLEBROOK 7H9 BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2207029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MIDDLEBROOK 7H9 BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2207029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3144306,3144373\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3144306,3144373\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 3114639\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 3114639\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2339390\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2339390\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2143794\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2143794\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1172869\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1172869\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA G12101UP\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA G12101UP\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRASIL DM5 (BHN BAKU KOSMETIK) COA 2344FF2215\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100090\", \"uraian\": \"MIRASIL DM5 (BHN BAKU KOSMETIK) COA 2344FF2215\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP31623\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP31623\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNBELLIN (BHN BAKU KOSMETIK) COA F210-2309040,2309041,2309042\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"SUNBELLIN (BHN BAKU KOSMETIK) COA F210-2309040,2309041,2309042\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MOPD (BHN BAKU KOSMETIK) COA 230815001,230915001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"MOPD (BHN BAKU KOSMETIK) COA 230815001,230915001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW DC YRDN-FE-...(ALAT KESEHATAN)COA DA21420N1027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30061010\", \"uraian\": \"STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW DC YRDN-FE-...(ALAT KESEHATAN)COA DA21420N1027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW MC YRPN19-12..(ALAT KESEHATAN)COA HL19100L1027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30061010\", \"uraian\": \"STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW MC YRPN19-12..(ALAT KESEHATAN)COA HL19100L1027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC YRPN19-105..(ALAT KESEHATAN)COA HR1960L1027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30061010\", \"uraian\": \"STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC YRPN19-105..(ALAT KESEHATAN)COA HR1960L1027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERRIC HYDROXIDE POLYMALTOSE COMPLEX,... (BHN BAKU SUPPLEMEN) COA 3118698\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29400000\", \"uraian\": \"FERRIC HYDROXIDE POLYMALTOSE COMPLEX,... (BHN BAKU SUPPLEMEN) COA 3118698\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COPPER(II) GLUCONATE, FINE POWDER, USP-NF 2023,... (BHN BAKU SUPPLEMEN) COA 3137051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"COPPER(II) GLUCONATE, FINE POWDER, USP-NF 2023,... (BHN BAKU SUPPLEMEN) COA 3137051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340504,B340506,B340507\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX COMPACTED (BHN BAKU OBAT) COA B340504,B340506,B340507\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLOMIPHENE CITRATE USP/EP (BHN BAKU OBAT ) COA 202309280060\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"CLOMIPHENE CITRATE USP/EP (BHN BAKU OBAT ) COA 202309280060\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLOMIPHENE CITRATE USP/EP (BHN BAKU OBAT ) COA 202309280060\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"CLOMIPHENE CITRATE USP/EP (BHN BAKU OBAT ) COA 202309280060\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLOMIPHENE CITRATE USP/EP (BHN BAKU OBAT ) COA 202309280060,202309280061\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"CLOMIPHENE CITRATE USP/EP (BHN BAKU OBAT ) COA 202309280060,202309280061\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) COA ANTS230804\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) COA ANTS230804\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DANDRILYS (NAT) (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"DANDRILYS (NAT) (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIVE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OLIVE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILDENAFIL CITRATE USP (BHN BAKU OBAT) COA SLC0631023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SILDENAFIL CITRATE USP (BHN BAKU OBAT) COA SLC0631023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SELOHVITA C (BHN BAKU SUPPLEMEN) COA 3129180,3131996\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28429010\", \"uraian\": \"SELOHVITA C (BHN BAKU SUPPLEMEN) COA 3129180,3131996\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILDENAFIL CITRATE USP (BHN BAKU OBAT) COA SLC0721123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SILDENAFIL CITRATE USP (BHN BAKU OBAT) COA SLC0721123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ISDN 10PCT IN NACL (DISPERSION) (BHN BAKU OBAT) COA 2311946\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"ISDN 10PCT IN NACL (DISPERSION) (BHN BAKU OBAT) COA 2311946\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETORIXOCIB (BHN BAKU OBAT) COA ETC-P/23003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"ETORIXOCIB (BHN BAKU OBAT) COA ETC-P/23003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) CAS 122-99-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) CAS 122-99-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA743067\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA743067\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K665000..(BHN BAKU PEWARNA TABLET)CAS 1309-37-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03K665000..(BHN BAKU PEWARNA TABLET)CAS 1309-37-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55015..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55015..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A62337..(BHN BAKU PEWARNA TABLET) COA GA743068\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A62337..(BHN BAKU PEWARNA TABLET) COA GA743068\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A62337..(BHN BAKU PEWARNA TABLET) COA GA743068\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A62337..(BHN BAKU PEWARNA TABLET) COA GA743068\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K580000..(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K580000..(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650018..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650018..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAIN BUFFER FBS 500ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2341228\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"STAIN BUFFER FBS 500ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2341228\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL E COLI H ANTISERUM H7 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3068676\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL E COLI H ANTISERUM H7 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3068676\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL E COLI H ANTISERUM H7 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3068676\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL E COLI H ANTISERUM H7 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3068676\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3145963\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3145963\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL E COLI H ANTISERUM H7 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3068676\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL E COLI H ANTISERUM H7 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3068676\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL E COLI ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3166212\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL E COLI ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3166212\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3145963\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3145963\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3072777\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3072777\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2335015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2335015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2027288\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2027288\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3103247\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3103247\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MICROBIAL CONTENT TEST AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3072210,.\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MICROBIAL CONTENT TEST AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3072210,.\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MS IG KPA COMP BEAD SET 6ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2300045\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"MS IG KPA COMP BEAD SET 6ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2300045\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU SOLBL PLEIN CBA BUF KIT 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3013096,3153966\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU SOLBL PLEIN CBA BUF KIT 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3013096,3153966\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ENOS ALEXA 647 33/ENOS 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3290230\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"ENOS ALEXA 647 33/ENOS 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3290230\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU VEGFR-2/CD309 PE 89106 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3145598\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU VEGFR-2/CD309 PE 89106 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3145598\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU IL-8 CBA FLEX SET A9 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3093736\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU IL-8 CBA FLEX SET A9 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3093736\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU G-CSF CBA FLEX SET C8 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2168170\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU G-CSF CBA FLEX SET C8 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2168170\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU ANGIOGENIN CBA FLEX SET C4 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2188696\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU ANGIOGENIN CBA FLEX SET C4 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2188696\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU BASIC FGF CBA FLEX SET C5 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2066607\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU BASIC FGF CBA FLEX SET C5 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2066607\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU IL-10 CBA FLEX SET B7 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2199637\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU IL-10 CBA FLEX SET B7 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2199637\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD133 FITC W6B3C1 100UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3174018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD133 FITC W6B3C1 100UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3174018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD45 APC-H7 2D1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2257391,3153488\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD45 APC-H7 2D1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2257391,3153488\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BD FACSUITE CS&T BEADS 50 TESTS RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 63586\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BD FACSUITE CS&T BEADS 50 TESTS RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 63586\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SIMULTEST CD4 FITC/CD8 PE SK3/SK1 IVD (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2363537\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SIMULTEST CD4 FITC/CD8 PE SK3/SK1 IVD (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2363537\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MS IGG1 KPA ITCL APC MOPC-21 100UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3191634\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"MS IGG1 KPA ITCL APC MOPC-21 100UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3191634\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MS IGG2B KPA ITCL APC 27-35 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3226564\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"MS IGG2B KPA ITCL APC 27-35 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3226564\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MS IGG1 KPA ITCL FITC MOPC-21 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2234633\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"MS IGG1 KPA ITCL FITC MOPC-21 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2234633\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD90 FITC 5E10 100UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2320580\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD90 FITC 5E10 100UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2320580\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD44 APC G44-26 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3041946\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD44 APC G44-26 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3041946\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD90 APC 5E10 100UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3116500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD90 APC 5E10 100UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3116500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD31 FITC WM59 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2188676\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD31 FITC WM59 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2188676\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD45 FITC HI30 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3124102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD45 FITC HI30 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3124102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD146 FITC P1H12 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1342584\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD146 FITC P1H12 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1342584\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MS IGG1KPA ITCL PE MOPC-21 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2136343\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"MS IGG1KPA ITCL PE MOPC-21 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2136343\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD54 APC HA58 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2168169\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD54 APC HA58 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2168169\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD274 APC MIH1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3242893\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD274 APC MIH1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3242893\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD166 PE 3A6 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3003473\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD166 PE 3A6 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3003473\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU TGF BTA1 CBA FLEX SET B6 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3093742\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU TGF BTA1 CBA FLEX SET B6 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3093742\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464456907\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464456907\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464457070\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464457070\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464381183\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464381183\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464453444\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464453444\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464456907\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100M PREMIUM CR HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464456907\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512326,G02512342\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47069200\", \"uraian\": \"SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512326,G02512342\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052341\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47063000\", \"uraian\": \"SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052341\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464438852\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464438852\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464207192\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464207192\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA D180LCP002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM CR HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA D180LCP002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464186441\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464186441\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E3 PREMIUM LV HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA D011L4OL02\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E3 PREMIUM LV HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA D011L4OL02\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E4M PREMIUM HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464213628\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E4M PREMIUM HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464213628\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E5 PREMIUM LV HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2444226862\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E5 PREMIUM LV HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2444226862\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2444374837\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2444374837\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464207178\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464207178\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THEOPHYLLINE ANHYDROUS (BHN BAKU OBAT) COA 23238 S/D 23241\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29395900\", \"uraian\": \"THEOPHYLLINE ANHYDROUS (BHN BAKU OBAT) COA 23238 S/D 23241\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM MONOHYDRATE (BHN BAKU OBAT) COA 23081361,23081362,23091413,23091417\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331900\", \"uraian\": \"METAMIZOLE SODIUM MONOHYDRATE (BHN BAKU OBAT) COA 23081361,23081362,23091413,23091417\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-3021123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334910\", \"uraian\": \"DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-3021123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MOXIFLOXACIN HYDROCHLORIDE EP (BHN BAKU OBAT) COA EL-05/L011/23091\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334990\", \"uraian\": \"MOXIFLOXACIN HYDROCHLORIDE EP (BHN BAKU OBAT) COA EL-05/L011/23091\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MECOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/1123052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"MECOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/1123052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINC BISGLYCINATE.. (BHN BAKU SUPPLEMEN) COA 3138610-01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"ZINC BISGLYCINATE.. (BHN BAKU SUPPLEMEN) COA 3138610-01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20231107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20231107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP-101 (15KG)(BHN BAKU KOSMETIK) CAS 1004791-75-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSP-101 (15KG)(BHN BAKU KOSMETIK) CAS 1004791-75-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) COA 310294\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100020\", \"uraian\": \"KF-56A (18KG) (BHN BAKU KOSMETIK) COA 310294\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELOIL SC (BHN BAKU SUPPLEMEN) COA 197910\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELOIL SC (BHN BAKU SUPPLEMEN) COA 197910\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELOT 64 (BHN BAKU SUPPLEMEN) COA 197482\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELOT 64 (BHN BAKU SUPPLEMEN) COA 197482\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRECIFAC 95-3 (BHN BAKU SUPPLEMEN) COA 196802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"PRECIFAC 95-3 (BHN BAKU SUPPLEMEN) COA 196802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELOIL SC (BHN BAKU SUPPLEMEN) COA 197910\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELOIL SC (BHN BAKU SUPPLEMEN) COA 197910\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND JMSW ED (BHN BAKU KOSMETIK) COA SBDAE-012263\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25010050\", \"uraian\": \"HYUNDAI BIOLAND JMSW ED (BHN BAKU KOSMETIK) COA SBDAE-012263\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-020193\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-020193\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1231108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1231108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-600403\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-600403\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012333\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012333\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-040493\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-040493\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23B0090500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23B0090500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HAWTHORN DRY HYDR. EXTR. (BHN BAKU SUPLEMEN) COA 21B0148600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HAWTHORN DRY HYDR. EXTR. (BHN BAKU SUPLEMEN) COA 21B0148600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23B0090600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23B0090600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23B0090500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23B0090500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7M IU/G (BHN BAKU KOSMETIK) COA 0423060013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7M IU/G (BHN BAKU KOSMETIK) COA 0423060013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334906 S/D B334908\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX POWDER (BHN BAKU OBAT) COA B334906 S/D B334908\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 2310035T\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100020\", \"uraian\": \"KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 2310035T\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 2310035T\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100020\", \"uraian\": \"KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 2310035T\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101854223\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA L101854223\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M537674 S/D M537677\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M537674 S/D M537677\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIMOX POWDER (BHN BAKU OBAT) COA M486816,M486817\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"PURIMOX POWDER (BHN BAKU OBAT) COA M486816,M486817\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURICILIN POWDER (BHN BAKU OBAT) COA M781119,M781120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411020\", \"uraian\": \"PURICILIN POWDER (BHN BAKU OBAT) COA M781119,M781120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M599294,M599299 S/D M599301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M599294,M599299 S/D M599301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DC CODRIED POWDER AHMH 3535 NG (BHN BAKU SUPPLEMEN) COA 202300242\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"DC CODRIED POWDER AHMH 3535 NG (BHN BAKU SUPPLEMEN) COA 202300242\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING SYSTEM..(BHN BAKU PEWARNA TABLET) CAS 121786-16-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING SYSTEM..(BHN BAKU PEWARNA TABLET) CAS 121786-16-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B62323...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03B62323...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B28796...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03B28796...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B54445...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03B54445...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G64786...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G64786...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 13K605000...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 13K605000...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B84893...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03B84893...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G54078..(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G54078..(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51226..(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51226..(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G52990...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G52990...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METRONIDAZOLE EP (BHN BAKU OBAT) COA MTZ/3050801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"METRONIDAZOLE EP (BHN BAKU OBAT) COA MTZ/3050801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CORTISONE ACETATE MICRONISED PH.EUR JP (BHN BAKU SUPPLEMEN) COA 2301084222\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"CORTISONE ACETATE MICRONISED PH.EUR JP (BHN BAKU SUPPLEMEN) COA 2301084222\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-LYSINE HCL (BHN BAKU OBAT) COA 2312271137\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224100\", \"uraian\": \"L-LYSINE HCL (BHN BAKU OBAT) COA 2312271137\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUCRALOSE (BHN BAKU OBAT) COA 23082601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29321400\", \"uraian\": \"SUCRALOSE (BHN BAKU OBAT) COA 23082601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 232178,232422\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 232178,232422\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOKUDAMI LIQUID B (BHN BAKU KOSMETIK) COA 231637\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"DOKUDAMI LIQUID B (BHN BAKU KOSMETIK) COA 231637\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 231297,232477\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329900\", \"uraian\": \"K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 231297,232477\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIWA LEAF LIQUID B (BHN BAKU KOSMETIK) COA 017212\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BIWA LEAF LIQUID B (BHN BAKU KOSMETIK) COA 017212\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 230975\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"IZAYOI (BHN BAKU KOSMETIK) COA 230975\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 230972\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 230972\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP31023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP31023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP2010/USP42 (BHN BAKU OBAT) COA NED231109,NED231112\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP2010/USP42 (BHN BAKU OBAT) COA NED231109,NED231112\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISONE USP2023 (BHN BAKU OBAT) COA NPD231102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISONE USP2023 (BHN BAKU OBAT) COA NPD231102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETAMETHASONE BP2020/USP2022 (BHN BAKU OBAT) COA XBE230402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"BETAMETHASONE BP2020/USP2022 (BHN BAKU OBAT) COA XBE230402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 2204434803\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 2204434803\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 2204434803, SAMPLE NO COMMERCIAL\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 2204434803, SAMPLE NO COMMERCIAL\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERDOSTEINE IH (BAHAN BAKU OBAT) COA EDSF230072\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"ERDOSTEINE IH (BAHAN BAKU OBAT) COA EDSF230072\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT23050011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT23050011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE, TYPE 100 (BHN BAKU SUPPLEMEN) COA UT23070067\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE, TYPE 100 (BHN BAKU SUPPLEMEN) COA UT23070067\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT23090067\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT23090067\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF (BHN BAKU SUPPLEMEN) COA UE02304021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO (R) LUTEIN 20PCT SAF (BHN BAKU SUPPLEMEN) COA UE02304021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 1PCT SD (BHN BAKU SUPPLEMEN) COA UT23070008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 1PCT SD (BHN BAKU SUPPLEMEN) COA UT23070008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-063013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-063013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-030913\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-030913\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-040493,050493\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-040493,050493\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-040493\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-040493\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1231120\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1231120\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND JEJU TANGERINE EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND JEJU TANGERINE EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND NEWAPLE (BHN BAKU KOSMETIK) COA NWPB-022093\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND NEWAPLE (BHN BAKU KOSMETIK) COA NWPB-022093\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-192013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-192013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-012773\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-012773\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012333\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012333\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-FRGE PLUS (BHN BAKU KOSMETIK) COA CFRK-042283\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND BIO-FRGE PLUS (BHN BAKU KOSMETIK) COA CFRK-042283\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-020883\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-020883\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-012773\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-012773\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-020493\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-020493\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND JEJU TANGERINE EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND JEJU TANGERINE EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230803\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230803\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230803\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230803\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEPPERMINT ORGANIC FROM FRANCE DISTILLATE (SB) (BHN BAKU KOSMETIK) CAS 84082-70-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PEPPERMINT ORGANIC FROM FRANCE DISTILLATE (SB) (BHN BAKU KOSMETIK) CAS 84082-70-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZORYALYS (BHN BAKU KOSMETIK) CAS 73398-61-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ZORYALYS (BHN BAKU KOSMETIK) CAS 73398-61-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GREENSIL (BHN BAKU KOSMETIK) CAS 91771-32-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GREENSIL (BHN BAKU KOSMETIK) CAS 91771-32-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO230804\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO230804\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KIGELINE (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KIGELINE (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340511 S/D B340514\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX COMPACTED (BHN BAKU OBAT) COA B340511 S/D B340514\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RAJOL WP80/LOREAL LIGHT LIQUID PARAFFIN-BP/LIGHT... (BHN BAKU KOSMETIK) COA 1000230002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101990\", \"uraian\": \"RAJOL WP80/LOREAL LIGHT LIQUID PARAFFIN-BP/LIGHT... (BHN BAKU KOSMETIK) COA 1000230002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 231006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33012990\", \"uraian\": \"AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 231006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SKINECTURA TM (BHN BAKU KOSMETIK) COA 230407\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SKINECTURA TM (BHN BAKU KOSMETIK) COA 230407\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 230612\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 230612\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 231006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33012990\", \"uraian\": \"AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 231006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 220807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 220807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 230516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061900\", \"uraian\": \"MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 230516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 230612\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 230612\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 230802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 230802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMITOSE R (BHN BAKU KOSMETIK) COA LKG\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"AMITOSE R (BHN BAKU KOSMETIK) COA LKG\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS SILK-1000 (BHN BAKU KOSMETIK) CAS 96690-41-4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS SILK-1000 (BHN BAKU KOSMETIK) CAS 96690-41-4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS EU-118(IS) (BHN BAKU KOSMETIK) CAS 111174-63-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS EU-118(IS) (BHN BAKU KOSMETIK) CAS 111174-63-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE TM PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ABYSSINE TM PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) CAS 68425-17-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALDAVINE TM 5X (BHN BAKU KOSMETIK) CAS 68425-17-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829012074P\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"B-WHITE TM (BHN BAKU KOSMETIK) COA 829012074P\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOREALINE PROTECT (BHN BAKU KOSMETIK) COA AM097578\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BOREALINE PROTECT (BHN BAKU KOSMETIK) COA AM097578\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LYSOFIX TM LIQUID (BHN BAKU KOSMETIK) CAS 1448790-48-4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LYSOFIX TM LIQUID (BHN BAKU KOSMETIK) CAS 1448790-48-4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROGELINE TM (BHN BAKU KOSMETIK) COA 222048\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"PROGELINE TM (BHN BAKU KOSMETIK) COA 222048\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT TM 11(BHN BAKU KOSMETIK) COA 784022021P\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"TYROSTAT TM 11(BHN BAKU KOSMETIK) COA 784022021P\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) CAS 68425-17-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALDAVINE TM 5X (BHN BAKU KOSMETIK) CAS 68425-17-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829012074P\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"B-WHITE TM (BHN BAKU KOSMETIK) COA 829012074P\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 222059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"CHRONOLINE TM (BHN BAKU KOSMETIK) COA 222059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) CAS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK) CAS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MINIPORYL TM (BHN BAKU KOSMETIK) CAS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MINIPORYL TM (BHN BAKU KOSMETIK) CAS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT TM 11(BHN BAKU KOSMETIK) COA 784022021P\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"TYROSTAT TM 11(BHN BAKU KOSMETIK) COA 784022021P\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) CAS 5743-47-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) CAS 5743-47-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-3071123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334910\", \"uraian\": \"DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-3071123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA GO NATURAL CAN 10 KG (BHN BAKU KOSMETIK) CAS 1117-86-8\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA GO NATURAL CAN 10 KG (BHN BAKU KOSMETIK) CAS 1117-86-8\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POTASSIUM IODIDE AND CARRIER.. (BHN BAKU SUPPLEMEN) COA 3131670\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28276000\", \"uraian\": \"POTASSIUM IODIDE AND CARRIER.. (BHN BAKU SUPPLEMEN) COA 3131670\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GLUCOSAMINE SULFATE 2KCL (BHN BAKU SUPPLEMEN) COA JSTK231205\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329900\", \"uraian\": \"GLUCOSAMINE SULFATE 2KCL (BHN BAKU SUPPLEMEN) COA JSTK231205\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101854223\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA L101854223\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) COA 307041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) COA 307041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WASTAR TM PINK BERRY (BHN BAKU KOSMETIK) CAS 9050-36-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"WASTAR TM PINK BERRY (BHN BAKU KOSMETIK) CAS 9050-36-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WASTAR TM LAVENDER (BHN BAKU KOSMETIK) CAS 90063-37-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"WASTAR TM LAVENDER (BHN BAKU KOSMETIK) CAS 90063-37-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILIGEL TM (BHN BAKU KOSMETIK) CAS 11138-66-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILIGEL TM (BHN BAKU KOSMETIK) CAS 11138-66-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) CAS 8002-43-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) CAS 8002-43-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSALITY TM (BHN BAKU KOSMETIK) CAS 5343-92-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROSALITY TM (BHN BAKU KOSMETIK) CAS 5343-92-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) CAS 8002-43-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AMISOL TRIO TM (BHN BAKU KOSMETIK) CAS 8002-43-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) CAS 8002-43-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTENSO TM (BHN BAKU KOSMETIK) CAS 8002-43-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILIGEL TM (BHN BAKU KOSMETIK) CAS 11138-66-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SILIGEL TM (BHN BAKU KOSMETIK) CAS 11138-66-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0046906\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0046906\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS4851023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS4851023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0523060065\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0523060065\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS4851023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS4851023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0523060016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0523060016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323021071,0323021072\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323021071,0323021072\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020052,0923020055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020052,0923020055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB23050082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB23050082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02206017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE02206017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20230503\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20230503\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ30310594,UQ30310597\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ30310594,UQ30310597\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30112047\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30112047\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT22070226\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT22070226\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22120266\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22120266\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02308753\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02308753\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12305024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12305024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02305056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02305056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT22120082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT22120082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT23060009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT23060009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT23030172\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT23030172\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22120266\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22120266\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT23040011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT23040011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02308753\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02308753\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12305024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12305024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92309310,XW92309311\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"V003400 (BHN BAKU MAKANAN) COA XW92309310,XW92309311\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE02206017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU MAKANAN) COA UE02206017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX ADE (BHN BAKU MAKANAN) COA XW92310216\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX ADE (BHN BAKU MAKANAN) COA XW92310216\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT23060012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT23060012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX ADE (BHN BAKU MAKANAN) COA XW92310316\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX ADE (BHN BAKU MAKANAN) COA XW92310316\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230509\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230509\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340515,B340525,B340527\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX COMPACTED (BHN BAKU OBAT) COA B340515,B340525,B340527\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3137940\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3137940\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3272500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3272500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3088838\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3088838\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2027288\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2027288\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3086871\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3086871\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU CD105 APC 266 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3006776\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU CD105 APC 266 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3006776\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2335015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2335015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MICROBIAL CONTENT TEST AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3172759\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MICROBIAL CONTENT TEST AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3172759\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3272500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3272500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3081961,308\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3081961,308\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2335015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2335015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2027288\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2027288\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3103247\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3103247\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2271502,3086871\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2271502,3086871\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MICROBIAL CONTENT TEST AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3172759\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MICROBIAL CONTENT TEST AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3172759\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL ISOVITALEX ENRICHMENT 10ML 5 EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3284473\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL ISOVITALEX ENRICHMENT 10ML 5 EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3284473\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTISERUM G COMPLEX (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3026384\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL H ANTISERUM G COMPLEX (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3026384\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTISERUM F 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1308721\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL H ANTISERUM F 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1308721\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTISERUM M 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2349775\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL H ANTISERUM M 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2349775\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTISERUM P 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1322546\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL H ANTISERUM P 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1322546\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIAUTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2335855\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIAUTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2335855\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL E COLI ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3166212\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL E COLI ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3166212\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS GRP B FTR 1/4/12/27 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2293465\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS GRP B FTR 1/4/12/27 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2293465\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DISC TAXO V FACTOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3212707\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DISC TAXO V FACTOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3212707\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DISC TAXO X FACTOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3212733\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DISC TAXO X FACTOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3212733\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DISC TAXO VX FACTOR 50 DISCS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3254294\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DISC TAXO VX FACTOR 50 DISCS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3254294\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOBACILLI MRS BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3004891\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOBACILLI MRS BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3004891\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTI-HLA DR FITC L243 (G46-6) RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3170864\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"ANTI-HLA DR FITC L243 (G46-6) RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3170864\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3290069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3290069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3270453\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3270453\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2046206\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2046206\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HINTON II AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3172757\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MUELLER HINTON II AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3172757\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2143333\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2143333\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2215654\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2215654\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2A AGAR 2KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2270184\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE R2A AGAR 2KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2270184\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 3221348\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 3221348\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1172869\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1172869\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3094598\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3094598\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2152796\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2152796\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1172869\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1172869\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2311158\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2311158\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH. 2256092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH. 2256092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2172755\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2172755\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2270946\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2270946\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2034966\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2034966\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3053725\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3053725\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3086819\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3086819\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3096242\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3096242\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3096196\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3096196\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2074829,2221886\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2074829,2221886\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2158081\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2158081\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HINTON II AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3172757\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MUELLER HINTON II AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3172757\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3173791\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3173791\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2088727\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2088727\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NITRATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2066240\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NITRATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2066240\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2217638\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2217638\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYP AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2276880\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MYP AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2276880\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1264672\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1264672\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST NITROGEN BASE W/O AA 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1223708\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE YEAST NITROGEN BASE W/O AA 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1223708\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2200729\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2200729\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM CARBONATE DC TYPE CS90 PHARMA (BHN BAKU OBAT) COA 202300093\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28365010\", \"uraian\": \"CALCIUM CARBONATE DC TYPE CS90 PHARMA (BHN BAKU OBAT) COA 202300093\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PASSION FLOWER D.H.E 4PCT (BAHAN BAKU SUPLEMEN) COA 23B0096400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PASSION FLOWER D.H.E 4PCT (BAHAN BAKU SUPLEMEN) COA 23B0096400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARACETAMOL USP43 (BHN BAKU OBAT) COA 2311230,2311335,2352365,2352594\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"PARACETAMOL USP43 (BHN BAKU OBAT) COA 2311230,2311335,2352365,2352594\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARACETAMOL USP43 (BHN BAKU OBAT) COA 2352653,2352672,2352680\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"PARACETAMOL USP43 (BHN BAKU OBAT) COA 2352653,2352672,2352680\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOROLAC TROMETHAMINE USP (BHN BAKU OBAT) COA KM0150323\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"KETOROLAC TROMETHAMINE USP (BHN BAKU OBAT) COA KM0150323\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101854423\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA L101854423\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020055,0923020058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020055,0923020058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2311221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2311221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NG 5 PCT-1,2 PROPYLENGLYCOLE 95PCT (BAHAN BAKU OBAT) COA 2313370\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"NG 5 PCT-1,2 PROPYLENGLYCOLE 95PCT (BAHAN BAKU OBAT) COA 2313370\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 20236\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 20236\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ONDANSETRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA 23OS004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"ONDANSETRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA 23OS004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SORBITOL SPECIAL (R) MDF 85 (BHN BAKU SUPPLEMEN) COA 122303217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054400\", \"uraian\": \"SORBITOL SPECIAL (R) MDF 85 (BHN BAKU SUPPLEMEN) COA 122303217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROSE ANHYDROUS (BHN BAKU PAKAN HEWAN) COA XW202311005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17023010\", \"uraian\": \"DEXTROSE ANHYDROUS (BHN BAKU PAKAN HEWAN) COA XW202311005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM PROPIONATE 20 KG (BHN BAKU PAKAN TERNAK) COA 23111884 S/D 23111904, 23112025 S/D ....\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29155000\", \"uraian\": \"CALCIUM PROPIONATE 20 KG (BHN BAKU PAKAN TERNAK) COA 23111884 S/D 23111904, 23112025 S/D ....\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETA-Q 20 LIT (V) (BHN BAKU PAKAN TERNAK) COA 23112013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30049099\", \"uraian\": \"BETA-Q 20 LIT (V) (BHN BAKU PAKAN TERNAK) COA 23112013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETAGUARD 20 LIT (V) (BHN BAKU PAKAN TERNAK) COA 23112355\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30049099\", \"uraian\": \"BETAGUARD 20 LIT (V) (BHN BAKU PAKAN TERNAK) COA 23112355\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM..(BHN BAKU PEWARNA TABLET)CAS 57-50-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM..(BHN BAKU PEWARNA TABLET)CAS 57-50-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000215652\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000215652\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010637\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010637\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS4851023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS4851023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323021073\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323021073\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23040136\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23040136\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS4851023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS4851023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02211813\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02211813\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23020059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23020059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT23090059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT23090059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040160\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040160\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT23090059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT23090059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0523060016,0523060024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0523060016,0523060024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPPLEMEN) COA UT23060012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPPLEMEN) COA UT23060012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30212055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30212055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02301001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02301001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT22120082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT22120082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT23060009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT23060009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPPLEMEN) COA TL02303656\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPPLEMEN) COA TL02303656\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT23040011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT23040011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI23040013 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI23040013 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02206017 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02206017 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02206017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02206017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI23040013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI23040013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI23040013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI23040013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02303664\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02303664\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF (BHN BAKU SUPPLEMEN) COA UE02304021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO (R) LUTEIN 20PCT SAF (BHN BAKU SUPPLEMEN) COA UE02304021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC ASCORBIC ACID DC 97PCT (BHN BAKU SUPPLEMEN) COA HPG2303001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC ASCORBIC ACID DC 97PCT (BHN BAKU SUPPLEMEN) COA HPG2303001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 23100624,23100626\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29395900\", \"uraian\": \"DIMENHYDRINATE (BHN BAKU OBAT) COA 23100624,23100626\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BROMHEXINE HYDROCHLORIDE EP (BHN BAKU OBAT) COA ORX/BRH/M/2311004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29215900\", \"uraian\": \"BROMHEXINE HYDROCHLORIDE EP (BHN BAKU OBAT) COA ORX/BRH/M/2311004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREGABALIN (BHN BAKU OBAT) COA PU1110423\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"PREGABALIN (BHN BAKU OBAT) COA PU1110423\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLOPURINOL USP (BHN BAKU OBAT) COA ALP0011123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"ALLOPURINOL USP (BHN BAKU OBAT) COA ALP0011123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANTOPRAZOLE SODIUM (STERILE) (BHN BAKU OBAT) COA SI/PPZ/02441223\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"PANTOPRAZOLE SODIUM (STERILE) (BHN BAKU OBAT) COA SI/PPZ/02441223\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TADALAFIL USP (BHN BAKU OBAT) COA TAD-M/0823044,TAD-M/0923058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"TADALAFIL USP (BHN BAKU OBAT) COA TAD-M/0823044,TAD-M/0923058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN E (BHN BAKU KOSMETIK) COA 201202310203\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"VITAMIN E (BHN BAKU KOSMETIK) COA 201202310203\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20231123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20231123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) CAS 7631-86-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNSIL TIN50 (BHN BAKU KOSMETIK) CAS 7631-86-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 4-HYDROXYACETOPHENONE (BHN BAKU KOSMETIK) COA 202311008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29145000\", \"uraian\": \"4-HYDROXYACETOPHENONE (BHN BAKU KOSMETIK) COA 202311008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052346\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47063000\", \"uraian\": \"SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052346\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052346\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47063000\", \"uraian\": \"SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052346\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNBELLIN (BHN BAKU KOSMETIK) COA F210-2310048 S/D 2310050,F210-2311001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"SUNBELLIN (BHN BAKU KOSMETIK) COA F210-2310048 S/D 2310050,F210-2311001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ADENOSINE(L) (BHN BAKU KOSMETIK) COA C01202304010L\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"ADENOSINE(L) (BHN BAKU KOSMETIK) COA C01202304010L\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MOPD (BHN BAKU KOSMETIK) COA 231115001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"MOPD (BHN BAKU KOSMETIK) COA 231115001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GF-B331 (BHN BAKU KOSMETIK) COA 20231015004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051090\", \"uraian\": \"GF-B331 (BHN BAKU KOSMETIK) COA 20231015004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02305048,UE02307060\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02305048,UE02307060\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02303003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02303003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02303003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02303003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30501066,UQ30701084 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30501066,UQ30701084 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02303003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02303003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT GRANULATION (BHN BAKU SUPPLEMEN) COA WB22049035,WB22049036\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT GRANULATION (BHN BAKU SUPPLEMEN) COA WB22049035,WB22049036\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT22070226\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT22070226\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020058, 0923020059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020058, 0923020059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0523060024,0523060021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0523060024,0523060021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL ZX (BHN BAKU KOSMETIK) COA 200206012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL ZX (BHN BAKU KOSMETIK) COA 200206012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT22070226\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT22070226\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC230402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC230402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC230402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC230402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230509 (POST BORDER\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230509 (POST BORDER\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT23010005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT23010005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000214336 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000214336 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT23070179 (POST BORDER)\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT23070179 (POST BORDER)\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE02302006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"RONOXAN A (BHN BAKU MAKANAN) COA UE02302006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 - C3 (BHN BAKU MAKANAN) COA XW92307172,XW92307173\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 - C3 (BHN BAKU MAKANAN) COA XW92307172,XW92307173\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT23070108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A ACETATE 1.5 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT23070108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT23070108\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A ACETATE 1.5 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT23070108\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20231207\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20231207\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 1,3-BUTYLENE GLYCOL (NATUROBG) (BHN BAKU KOSMETIK) COA BGC/L73/23\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"1,3-BUTYLENE GLYCOL (NATUROBG) (BHN BAKU KOSMETIK) COA BGC/L73/23\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL ALPHA TOCOPHEROL (BHN BAKU KOSMETIK) COA 01230718ES\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL ALPHA TOCOPHEROL (BHN BAKU KOSMETIK) COA 01230718ES\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA L202312-026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35040000\", \"uraian\": \"SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA L202312-026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MACKAM C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 12874-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34024990\", \"uraian\": \"MACKAM C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 12874-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM..(BHN BAKU PEWARNA TABLET)CAS 57-50-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM..(BHN BAKU PEWARNA TABLET)CAS 57-50-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING ...(BHN BAKU PEWARNA TABLET) CAS 121786-16-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING ...(BHN BAKU PEWARNA TABLET) CAS 121786-16-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA743794\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA743794\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) KB LOW VISCOSITY FILM COATING SYSTEM..(BHN BAKU PEWARNA TABLET)CAS 151-21-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) KB LOW VISCOSITY FILM COATING SYSTEM..(BHN BAKU PEWARNA TABLET)CAS 151-21-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA744015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA744015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM Y-1-7000..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM Y-1-7000..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 21K58794..(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 21K58794..(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND (R) PB-66511 BROWN (BHN BAKU PEWARNA TABLET)COA GA744017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"PIGMENT BLEND (R) PB-66511 BROWN (BHN BAKU PEWARNA TABLET)COA GA744017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MECOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/1123059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"MECOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/1123059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SERASENSE SF 2 (BAHAN BAKU SUPLEMEN) COA SA30327063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100090\", \"uraian\": \"SERASENSE SF 2 (BAHAN BAKU SUPLEMEN) COA SA30327063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2304321918\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2304321918\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VALERIAN DRY HYDR. EXTR. (BAHAN BAKU SUPLEMEN) COA 23B0028600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VALERIAN DRY HYDR. EXTR. (BAHAN BAKU SUPLEMEN) COA 23B0028600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VALERIAN DRY HYDR. EXTR. (BAHAN BAKU SUPLEMEN) COA 23B0028700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VALERIAN DRY HYDR. EXTR. (BAHAN BAKU SUPLEMEN) COA 23B0028700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYMARINPHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23B0034200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SILYMARINPHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23B0034200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92310355,XW92310356\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"V003400 (BHN BAKU MAKANAN) COA XW92310355,XW92310356\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12306007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12306007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00844849,VE00847146,VE00847148\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"AMPHISOL K (BHN BAKU KOSMETIK) COA VE00844849,VE00847146,VE00847148\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000215652,0000215653\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000215652,0000215653\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101854523\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA L101854523\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334920 S/D B3349202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX POWDER (BHN BAKU OBAT) COA B334920 S/D B3349202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU SUPPLEMEN) COA 23E2303\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE NA PELLETS (BHN BAKU SUPPLEMEN) COA 23E2303\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE BM PELLETS (BHN BAKU SUPPLEMEN) COA 23E44209\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE BM PELLETS (BHN BAKU SUPPLEMEN) COA 23E44209\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE AM PELLETS (BHN BAKU SUPPLEMEN) COA 23E1708\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE AM PELLETS (BHN BAKU SUPPLEMEN) COA 23E1708\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPPOCIRE A PELLETS (BHN BAKU SUPPLEMEN) COA 23E3406\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"SUPPOCIRE A PELLETS (BHN BAKU SUPPLEMEN) COA 23E3406\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALUMINUM HYDROXIDE GEL USP BARCROFT TM LV13 (BHN BAKU SUPPLEMEN) COA 102313075\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"ALUMINUM HYDROXIDE GEL USP BARCROFT TM LV13 (BHN BAKU SUPPLEMEN) COA 102313075\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALUMINUM HYDROXIDE GEL USP BARCROFT TM LV13 (BHN BAKU SUPPLEMEN) COA 102313075, SAMPLE NO COMME\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"ALUMINUM HYDROXIDE GEL USP BARCROFT TM LV13 (BHN BAKU SUPPLEMEN) COA 102313075, SAMPLE NO COMME\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CROSPOVIDONE XL (BHN BAKU SUPPLEMEN) COA PP230914XL-10\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"CROSPOVIDONE XL (BHN BAKU SUPPLEMEN) COA PP230914XL-10\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUCRALOSE (BHN BAKU OBAT) COA 23082601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29321400\", \"uraian\": \"SUCRALOSE (BHN BAKU OBAT) COA 23082601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OXOMEMAZINE HYDROCHLORIDE (BHN BAKU OBAT) COA HXHCPR002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29343000\", \"uraian\": \"OXOMEMAZINE HYDROCHLORIDE (BHN BAKU OBAT) COA HXHCPR002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARACETAMOL USP43 (BHN BAKU OBAT) COA 2352721,2352744,2311574\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"PARACETAMOL USP43 (BHN BAKU OBAT) COA 2352721,2352744,2311574\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CARDBOARD DRUM, PRICE FOR CUSTOM ONLY\""}, {"role": "assistant", "content": "{\"hs_code\" : \"48192000\", \"uraian\": \"CARDBOARD DRUM, PRICE FOR CUSTOM ONLY\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334904,B334917,B334919,B334920\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX POWDER (BHN BAKU OBAT) COA B334904,B334917,B334919,B334920\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334913,B334914,B334917,B334918\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX POWDER (BHN BAKU OBAT) COA B334913,B334914,B334917,B334918\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O66912..(BHN BAKU PEWARNA TABLET) COA GA744635\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O66912..(BHN BAKU PEWARNA TABLET) COA GA744635\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007..(BHN BAKU PEWARNA TABLET) COA GA744610\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007..(BHN BAKU PEWARNA TABLET) COA GA744610\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650035..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650035..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET)CAS 121786-16-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET)CAS 121786-16-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B28796..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03B28796..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620038..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620038..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620023..(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620023..(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55384..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55384..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464438866\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464438866\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 10 PREMIUM.. (BHN BAKU PEWARNA TABLET) COA 2534248988\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 10 PREMIUM.. (BHN BAKU PEWARNA TABLET) COA 2534248988\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464207196\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464207196\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464438852\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464438852\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB23040706\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB23040706\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB22080266\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB22080266\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE USP (BAHAN BAKU OBAT) COA KCBA0029 S/D KCBA0031,JCBA0013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE USP (BAHAN BAKU OBAT) COA KCBA0029 S/D KCBA0031,JCBA0013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA MCDA0020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123100\", \"uraian\": \"CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA MCDA0020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE BP (BAHAN BAKU OBAT) COA LCAA0045,MCAA0047\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE BP (BAHAN BAKU OBAT) COA LCAA0045,MCAA0047\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA 23100153,23100366\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29391900\", \"uraian\": \"PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA 23100153,23100366\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA 2302420101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA 2302420101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX FOR MARGARINE MY15-0027 (BHN BAKU SUPPLEMEN) COA MY62312067\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX FOR MARGARINE MY15-0027 (BHN BAKU SUPPLEMEN) COA MY62312067\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) CAS 233683-84-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) CAS 233683-84-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 1PCT CWS/M (BHN BAKU MAKANAN) COA UT23020005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 1PCT CWS/M (BHN BAKU MAKANAN) COA UT23020005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 2312043T\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100020\", \"uraian\": \"KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 2312043T\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 2312043T\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100020\", \"uraian\": \"KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 2312043T\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 2312043T\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100020\", \"uraian\": \"KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 2312043T\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 2312043T\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100020\", \"uraian\": \"KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 2312043T\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 2312043T\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100020\", \"uraian\": \"KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 2312043T\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) COA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) COA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GREENSIL (BHN BAKU KOSMETIK) CAS 91771-32-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GREENSIL (BHN BAKU KOSMETIK) CAS 91771-32-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (SB) (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (SB) (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIVE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OLIVE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIVE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OLIVE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAMANOL BIO IL (BHN BAKU KOSMETIK) CAS 68956-68-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"TAMANOL BIO IL (BHN BAKU KOSMETIK) CAS 68956-68-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104314023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104314023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103863623\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103863623\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103152523\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103152523\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101854623\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA L101854623\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 70 (BHN BAKU OBAT) COA L101843823\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 70 (BHN BAKU OBAT) COA L101843823\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ACID PYROPHOSPHATE FOOD GRADE (BHN BAKU MAKANAN) COA 9231121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28353990\", \"uraian\": \"SODIUM ACID PYROPHOSPHATE FOOD GRADE (BHN BAKU MAKANAN) COA 9231121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ACETATE ANHYDROUS POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3122829\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29152910\", \"uraian\": \"SODIUM ACETATE ANHYDROUS POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3122829\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100MESH (BHN BAKU SUPLEMEN) COA 3AX2311024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS BP2009/E330 30-100MESH (BHN BAKU SUPLEMEN) COA 3AX2311024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBNM230433\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBNM230433\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/13120727\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/13120727\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-III (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-III (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 231857\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"MANDARINCLEAR (BHN BAKU KOSMETIK) COA 231857\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 231090\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 231090\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 231643\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"IZAYOI (BHN BAKU KOSMETIK) COA 231643\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 231278\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 231278\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-011373\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-011373\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP2231205\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP2231205\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP2231205\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP2231205\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012333,031823\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012333,031823\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-060693\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-060693\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-012773\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-012773\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA NAH112\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA NAH112\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N7L103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N7L103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-050493,072123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-050493,072123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-072123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-072123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-012773\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-012773\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-110903\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-110903\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND PF CHERRY BLOSSOM (BHN BAKU KOSMETIK) COA PSSBD-021923\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND PF CHERRY BLOSSOM (BHN BAKU KOSMETIK) COA PSSBD-021923\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-072123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-072123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEUCOSELECT PHYTOSOME (BHN BAKU KOSMETIK) CAS 84929-27-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LEUCOSELECT PHYTOSOME (BHN BAKU KOSMETIK) CAS 84929-27-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 162889\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15159011\", \"uraian\": \"AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 162889\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TSPL-30-ID (1KG) (BHN BAKU KOSMETIK) CAS 13475-82-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"TSPL-30-ID (1KG) (BHN BAKU KOSMETIK) CAS 13475-82-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 2718EE (BHN BAKU SUPPLEMEN) COA TS00021968,TS00022622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 2718EE (BHN BAKU SUPPLEMEN) COA TS00021968,TS00022622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 2718EE (BHN BAKU SUPPLEMEN) COA TS00021968\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 2718EE (BHN BAKU SUPPLEMEN) COA TS00021968\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRIED ALUMINUM HYDROXIDE, SORBITOL BLEND BARCROFT TM 0501 (BHN BAKU OBAT) COA 102360004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"DRIED ALUMINUM HYDROXIDE, SORBITOL BLEND BARCROFT TM 0501 (BHN BAKU OBAT) COA 102360004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM HYDROXIDE USP BARCROFT TM 5300 (BHN BAKU OBAT) COA 102369011,102369012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"MAGNESIUM HYDROXIDE USP BARCROFT TM 5300 (BHN BAKU OBAT) COA 102369011,102369012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSALITY TM (BHN BAKU KOSMETIK) CAS 5343-92-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROSALITY TM (BHN BAKU KOSMETIK) CAS 5343-92-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) CAS 8002-43-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) CAS 8002-43-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECOGEL TM (BHN BAKU KOSMETIK) CAS 85711-58-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ECOGEL TM (BHN BAKU KOSMETIK) CAS 85711-58-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834012184P\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834012184P\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WASTAR TM LAVENDER (BHN BAKU KOSMETIK) CAS 90063-37-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"WASTAR TM LAVENDER (BHN BAKU KOSMETIK) CAS 90063-37-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRO-LIPO TM NEO (BHN BAKU KOSMETIK) CAS 504-63-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PRO-LIPO TM NEO (BHN BAKU KOSMETIK) CAS 504-63-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) CAS 8002-43-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PHYTENSO TM (BHN BAKU KOSMETIK) CAS 8002-43-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROSALITY TM (BHN BAKU KOSMETIK) CAS 5343-92-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ROSALITY TM (BHN BAKU KOSMETIK) CAS 5343-92-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WASTAR TM PINK BERRY (BHN BAKU KOSMETIK) CAS 9050-36-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"WASTAR TM PINK BERRY (BHN BAKU KOSMETIK) CAS 9050-36-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) COA 312310\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100020\", \"uraian\": \"KF-56A (18KG) (BHN BAKU KOSMETIK) COA 312310\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6048 (16KG) (BHN BAKU KOSMETIK) CAS 144243-53-8\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6048 (16KG) (BHN BAKU KOSMETIK) CAS 144243-53-8\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG231013,MCVG231020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG231013,MCVG231020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACB FRUIT MIX OR (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829012074P\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"B-WHITE TM (BHN BAKU KOSMETIK) COA 829012074P\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANACHRYS 2B PF (PRESERVATIVE) (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LANACHRYS 2B PF (PRESERVATIVE) (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) CAS 37350-42-8\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) CAS 37350-42-8\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) CAS 37350-42-8\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) CAS 37350-42-8\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MDI COMPLEX (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELANOSTATINE TM 5 BG (50PPM) (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MELANOSTATINE TM 5 BG (50PPM) (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TYROSTAT TM 11(BHN BAKU KOSMETIK) COA 784022021P\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"TYROSTAT TM 11(BHN BAKU KOSMETIK) COA 784022021P\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-002-A\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-002-A\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX (R) OPAQUE COLOR COATING CONCENTRATE... (BHN BAKU PEWARNA TABLET) COA DT754310\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPALUX (R) OPAQUE COLOR COATING CONCENTRATE... (BHN BAKU PEWARNA TABLET) COA DT754310\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPAGLOS (R) TABLET CORE SEALANT PRODUCT... (BHN BAKU PEWARNA TABLET) COA TABLET CORE SEALANT PR\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPAGLOS (R) TABLET CORE SEALANT PRODUCT... (BHN BAKU PEWARNA TABLET) COA TABLET CORE SEALANT PR\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NUTRAFINISH (R) TIO2 FREE FILM COATING... (BHN BAKU PEWARNA TABLET) CAS 471-34-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"NUTRAFINISH (R) TIO2 FREE FILM COATING... (BHN BAKU PEWARNA TABLET) CAS 471-34-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MINERAL PREMIX MILK POWDER FOR ADULTS V2 (BHN BAKU MAKANAN) COA XW92311281,XW92311282\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"MINERAL PREMIX MILK POWDER FOR ADULTS V2 (BHN BAKU MAKANAN) COA XW92311281,XW92311282\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW92311249 S/D XW92311251\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 C (BHN BAKU MAKANAN) COA XW92311249 S/D XW92311251\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 - C3 (BHN BAKU MAKANAN) COA XW92311295,XW92311294\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 - C3 (BHN BAKU MAKANAN) COA XW92311295,XW92311294\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 1PCT CWS/M (BHN BAKU MAKANAN) COA UT23020005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 1PCT CWS/M (BHN BAKU MAKANAN) COA UT23020005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL02301002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU MAKANAN) COA TL02301002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT23060012,UT23060013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT23060012,UT23060013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02303664\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02303664\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU KOSMETIK) COA UT22120266\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU KOSMETIK) COA UT22120266\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP12306007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU KOSMETIK) COA OP12306007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL (R) SHIELD (BHN BAKU KOSMETIK) COA 0823010638,0823010639\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL (R) SHIELD (BHN BAKU KOSMETIK) COA 0823010638,0823010639\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TILAMAR \u00ae PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA 23D0926831\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"TILAMAR \u00ae PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA 23D0926831\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL ZX (BHN BAKU KOSMETIK) COA 200206012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL ZX (BHN BAKU KOSMETIK) COA 200206012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323021190,0323021191\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323021190,0323021191\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020060\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020060\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0423040118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HMS (BHN BAKU KOSMETIK) COA 0423040118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT23100066\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT23100066\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323021191\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323021191\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323021191,0323021192\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323021191,0323021192\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP2010/USP42 (BHN BAKU OBAT) COA NED231109,NED231112\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP2010/USP42 (BHN BAKU OBAT) COA NED231109,NED231112\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISONE USP2023 (BHN BAKU OBAT) COA NPD231102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISONE USP2023 (BHN BAKU OBAT) COA NPD231102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETAMETHASONE BP2020/USP2022 (BHN BAKU OBAT) COA XBE230402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"BETAMETHASONE BP2020/USP2022 (BHN BAKU OBAT) COA XBE230402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYPROTERONE ACETATE MICRONIZED (BHN BAKU OBAT) COA ND2190M1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"CYPROTERONE ACETATE MICRONIZED (BHN BAKU OBAT) COA ND2190M1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETORIXOCIB (BHN BAKU OBAT) COA ETC-P/23004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"ETORIXOCIB (BHN BAKU OBAT) COA ETC-P/23004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRIED ALUMINUM HYDROXIDE, SORBITOL BLEND BARCROFT TM 0501 (BHN BAKU OBAT) COA 102360004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"DRIED ALUMINUM HYDROXIDE, SORBITOL BLEND BARCROFT TM 0501 (BHN BAKU OBAT) COA 102360004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JAGUAR C162 SGI (BHN BAKU KOSMETIK) CAS 71329-50-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"JAGUAR C162 SGI (BHN BAKU KOSMETIK) CAS 71329-50-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2528862\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2528862\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3018648\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3018648\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2314938\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2314938\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2314938\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2314938\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASAMINO ACIDS TECHNICALS 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2137791\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASAMINO ACIDS TECHNICALS 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2137791\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMITOSE R (BHN BAKU KOSMETIK) COA LKG\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"AMITOSE R (BHN BAKU KOSMETIK) COA LKG\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS SILK-1000 (BHN BAKU KOSMETIK) CAS 96690-41-4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS SILK-1000 (BHN BAKU KOSMETIK) CAS 96690-41-4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS EU-118(IS) (BHN BAKU KOSMETIK) CAS 111174-63-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS EU-118(IS) (BHN BAKU KOSMETIK) CAS 111174-63-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 1PCT CWS/M (BHN BAKU MAKANAN) COA UT23020005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 1PCT CWS/M (BHN BAKU MAKANAN) COA UT23020005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 1,3-BUTYLENE GLYCOL (NATUROBG) (BHN BAKU KOSMETIK) COA BGC/L73/23\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"1,3-BUTYLENE GLYCOL (NATUROBG) (BHN BAKU KOSMETIK) COA BGC/L73/23\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0055700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0055700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0064900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0064900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0065000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0065000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0077600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0077600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0077700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0077700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM VALPROATE (BAHAN BAKU OBAT) COA 458724\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29159090\", \"uraian\": \"SODIUM VALPROATE (BAHAN BAKU OBAT) COA 458724\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM.. (BHN BAKU PEWARNA TABLET) COA GA745781\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM.. (BHN BAKU PEWARNA TABLET) COA GA745781\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51469.. (BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51469.. (BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-22-.. (BHN BAKU PEWARNA TABLET)CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-22-.. (BHN BAKU PEWARNA TABLET)CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) II AQUEOUS ACRYLIC ENTERIC... (BHN BAKU PEWARNA TABLET) COA GA745867\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) II AQUEOUS ACRYLIC ENTERIC... (BHN BAKU PEWARNA TABLET) COA GA745867\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING SYSTEM..(BHN BAKU PEWARNA TABLET)CAS 121786-16-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING SYSTEM..(BHN BAKU PEWARNA TABLET)CAS 121786-16-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 02F52182.. (BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 02F52182.. (BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-.. (BHN BAKU PEWARNA TABLET)CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-.. (BHN BAKU PEWARNA TABLET)CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING SYSTEM..(BHN BAKU PEWARNA TABLET)CAS 121786-16-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING SYSTEM..(BHN BAKU PEWARNA TABLET)CAS 121786-16-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M537726,M537727,M537746,M537747\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M537726,M537727,M537746,M537747\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIMOX POWDER (BHN BAKU OBAT) COA M486903\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411019\", \"uraian\": \"PURIMOX POWDER (BHN BAKU OBAT) COA M486903\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 100 CAN 10 KG (BHN BAKU KOSMETIK) CAS 55965-84-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 100 CAN 10 KG (BHN BAKU KOSMETIK) CAS 55965-84-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 720 CAN 10 KG (BHN BAKU KOSMETIK) CAS 65-85-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 720 CAN 10 KG (BHN BAKU KOSMETIK) CAS 65-85-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 940 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 940 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIDIN DO CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIDIN DO CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN551107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN551107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN551144\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN551144\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN551135\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN551135\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN551134\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN551134\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CATECHINS (TEA EXTRACT) SUNPHENON 90LB (BHN BAKU KOSMETIK) COA 208271\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"CATECHINS (TEA EXTRACT) SUNPHENON 90LB (BHN BAKU KOSMETIK) COA 208271\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) COA 307041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) COA 307041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) SEA EXTRACTS N (BHN BAKU KOSMETIK) COA 10300041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"EXTRAPONE (R) SEA EXTRACTS N (BHN BAKU KOSMETIK) COA 10300041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) GINSENG (BHN BAKU KOSMETIK) COA 10300053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"EXTRAPONE (R) GINSENG (BHN BAKU KOSMETIK) COA 10300053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTOCONCENTROLE (R) CAMOMILE (BHN BAKU KOSMETIK) COA 10300054\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"PHYTOCONCENTROLE (R) CAMOMILE (BHN BAKU KOSMETIK) COA 10300054\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) TF TIO2 FREE MOISTURE BARRIER FILM..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) TF TIO2 FREE MOISTURE BARRIER FILM..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARACETAMOL USP43 (BHN BAKU OBAT) COA 2352884,2352930,2352940\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"PARACETAMOL USP43 (BHN BAKU OBAT) COA 2352884,2352930,2352940\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METRONIDAZOLE USP (BHN BAKU OBAT) COA 0182312135,0182312139,0812312146 S/D 0812312148,01823121\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"METRONIDAZOLE USP (BHN BAKU OBAT) COA 0182312135,0182312139,0812312146 S/D 0812312148,01823121\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOSWELLIA SERRATA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 23T0081800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"BOSWELLIA SERRATA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 23T0081800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 23T0078700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 23T0078700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERNFINE 100 N (BHN BAKU MAKANAN) COA N513Z21197\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232011\", \"uraian\": \"STERNFINE 100 N (BHN BAKU MAKANAN) COA N513Z21197\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM (BHN BAKU OBAT) COA M114346\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM (BHN BAKU OBAT) COA M114346\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LG051123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LG051123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2335015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2335015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3300589\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3300589\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3088838,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3088838,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3137940\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3137940\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU NAIVE/MEM T CELL PANEL 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3319344\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU NAIVE/MEM T CELL PANEL 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3319344\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3194539,..\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3194539,..\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS GRP B FTR 1/4/5/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3159721\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS GRP B FTR 1/4/5/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3159721\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2305239\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2305239\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2293166,3096333,..\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2293166,3096333,..\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2172755,2271424,\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2172755,2271424,\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DIFCO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3242810\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DIFCO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3242810\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3096321,3212779\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3096321,3212779\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2208259\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2208259\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3150804\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3150804\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3191345,3234562\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3191345,3234562\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2208223\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2208223\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2236789\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2236789\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3114643\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3114643\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3158193\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE YEAST EXT GLUCOSE CHLOR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3158193\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1172869\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1172869\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3293058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3293058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 3221348\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 3221348\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TODD HEWITT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2256043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TODD HEWITT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2256043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2307836,2309035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2307836,2309035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2047633\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2047633\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYP AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2276880\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MYP AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2276880\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE OXFORD MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2095234\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE OXFORD MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2095234\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT BROTH 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2053778\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT BROTH 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2053778\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1264672\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1264672\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3277679\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3277679\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL LB BROTH MILLER LURIA B 2 KG (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2299316\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PAIL LB BROTH MILLER LURIA B 2 KG (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2299316\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3158193\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE YEAST EXT GLUCOSE CHLOR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3158193\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01F230M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01F230M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3137222\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3137222\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 3168376\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLT4 AGAR BASE 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 3168376\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GELATINE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2343200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GELATINE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2343200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3150804\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3150804\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3228048\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3228048\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3221374\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3221374\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3206413\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY AGAR MOD 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3206413\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PAIL DIFCO AGAR 10KG(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3262090\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PAIL DIFCO AGAR 10KG(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3262090\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3168382\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3168382\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3277679\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3277679\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3150802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3150802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3293443\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3293443\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3114496\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MYCOPLASMA BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3114496\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SALICIN 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 3114297\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SALICIN 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 3114297\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS MSRV 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 3107304\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS MSRV 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 3107304\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20231225\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20231225\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000215653\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000215653\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000215653,0000216011,0000216232\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000215653,0000216011,0000216232\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT22070226\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT22070226\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000216232\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000216232\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02211813\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02211813\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000216232\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000216232\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT23100066\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT23100066\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000216232\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000216232\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02207101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE02207101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT22070226\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT22070226\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02207101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE02207101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) CAS 1119-97-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CETRIMIDE (BHN BAKU KOSMETIK) CAS 1119-97-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HPA82 PURE SENSITIVE (BHN BAKU KOSMETIK) COA 3524944\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"HPA82 PURE SENSITIVE (BHN BAKU KOSMETIK) COA 3524944\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 232422,240154\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 232422,240154\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 00060124 S/D 00130124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 00060124 S/D 00130124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 00150124, 00160124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 00150124, 00160124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ESOMEPRAZOLE SODIUM STERILE (BHN BAKU OBAT) COA SI/EPZ/00201223\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"ESOMEPRAZOLE SODIUM STERILE (BHN BAKU OBAT) COA SI/EPZ/00201223\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MOMETASONE FUROATE MICRONIZED (BHN BAKU OBAT) COA NC2023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"MOMETASONE FUROATE MICRONIZED (BHN BAKU OBAT) COA NC2023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA MLAH0491223\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29341000\", \"uraian\": \"MELOXICAM BP (BHN BAKU OBAT) COA MLAH0491223\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRAMADOL HCL EP/JP (BHN BAKU OBAT) COA T7396,V7457\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29225090\", \"uraian\": \"TRAMADOL HCL EP/JP (BHN BAKU OBAT) COA T7396,V7457\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BISOPROLOL FUMARATE USP (BHN BAKU OBAT) COA LT-OBFA/005/23-24\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"BISOPROLOL FUMARATE USP (BHN BAKU OBAT) COA LT-OBFA/005/23-24\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2311221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2311221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE (R) MONOGRAMMING INK S-1-180000 WHITE (BHN BAKU PEWARNA TABLET) COA WP876966\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPACODE (R) MONOGRAMMING INK S-1-180000 WHITE (BHN BAKU PEWARNA TABLET) COA WP876966\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C YELLOW #6/SUNSET... (BHN BAKU PEWARNA TABLET) COA WP868324:BC3385\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5287 FD&C YELLOW #6/SUNSET... (BHN BAKU PEWARNA TABLET) COA WP868324:BC3385\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5406 FD&C RED #40/ALLURA R... (BHN BAKU PEWARNA TABLET) COA WP866896:BC2990\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5406 FD&C RED #40/ALLURA R... (BHN BAKU PEWARNA TABLET) COA WP866896:BC2990\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5396 ERYTHROSINE ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP860981:1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5396 ERYTHROSINE ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP860981:1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARTAB (R) DIRECTLY COMPRESSIBLE STARCH 4001 (BHN BAKU PEWARNA TABLET) COA WP873593\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARTAB (R) DIRECTLY COMPRESSIBLE STARCH 4001 (BHN BAKU PEWARNA TABLET) COA WP873593\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) COA 312313\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100020\", \"uraian\": \"KF-56A (18KG) (BHN BAKU KOSMETIK) COA 312313\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-7312K (16KG) (BHN BAKU KOSMETIK) CAS 562705-01-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-7312K (16KG) (BHN BAKU KOSMETIK) CAS 562705-01-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) COA 312311\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100020\", \"uraian\": \"KF-56A (18KG) (BHN BAKU KOSMETIK) COA 312311\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-210 (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSG-210 (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CETIRIZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA 23026CZ6RII\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"CETIRIZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA 23026CZ6RII\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RAJOL WP80/LOREAL LIGHT LIQUID PARAFFIN-BP/LIGHT... (BHN BAKU KOSMETIK) COA 1000240001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101990\", \"uraian\": \"RAJOL WP80/LOREAL LIGHT LIQUID PARAFFIN-BP/LIGHT... (BHN BAKU KOSMETIK) COA 1000240001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS 30-100MESH BP/USP/FCC/E330 (BHN BAKU SUPLEMEN) COA 6AX2312043\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS 30-100MESH BP/USP/FCC/E330 (BHN BAKU SUPLEMEN) COA 6AX2312043\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM CARBONATE VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 122302553\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28365010\", \"uraian\": \"CALCIUM CARBONATE VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 122302553\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SORBITOL SORBITAN SOLUTION NF SORBITOL SPECIAL(R) MDF 85 (BHN BAKU OBAT) COA 122302891\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054400\", \"uraian\": \"SORBITOL SORBITAN SOLUTION NF SORBITOL SPECIAL(R) MDF 85 (BHN BAKU OBAT) COA 122302891\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 20 PREMIUM.. (BHN BAKU PEWARNA TABLET) COA 2534283157\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 20 PREMIUM.. (BHN BAKU PEWARNA TABLET) COA 2534283157\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHOCEL STANDARD 20 PREMIUM.. (BHN BAKU PEWARNA TABLET) COA 2534283153\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"ETHOCEL STANDARD 20 PREMIUM.. (BHN BAKU PEWARNA TABLET) COA 2534283153\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT23070049,UT23070050\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT23070049,UT23070050\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT23070229\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT23070229\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT23050007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT23050007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02308791\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02308791\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20% S (BHN BAKU SUPPLEMEN) COA UT23050002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"BETATAB 20% S (BHN BAKU SUPPLEMEN) COA UT23050002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5% CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT23090028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5% CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT23090028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE, TYPE 100 (BHN BAKU SUPPLEMEN) COA UT23070067\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE, TYPE 100 (BHN BAKU SUPPLEMEN) COA UT23070067\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT23090067\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT23090067\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20240103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20240103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLUNARIZINE DIHYDROCHLORIDE BP/EP ( BAHAN BAKU OBAT ) COA FLU/11231020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"FLUNARIZINE DIHYDROCHLORIDE BP/EP ( BAHAN BAKU OBAT ) COA FLU/11231020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LORATADINE USP (BHN BAKU OBAT) COA BLRD/2308038\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"LORATADINE USP (BHN BAKU OBAT) COA BLRD/2308038\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID S 20 (BHN BAKU SUPPLEMEN) COA 572000-2220141\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232011\", \"uraian\": \"LIPOID S 20 (BHN BAKU SUPPLEMEN) COA 572000-2220141\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECCO MILK PROTEIN CRISPS 90 (BHN BAKU MAKANAN) COA 534231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35040000\", \"uraian\": \"ECCO MILK PROTEIN CRISPS 90 (BHN BAKU MAKANAN) COA 534231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) CAS 1119-97-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CETRIMIDE (BHN BAKU KOSMETIK) CAS 1119-97-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THEOPHYLLINE ANHYDROUS (BHN BAKU OBAT) COA 23241, 23244 S/D 23246\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29395900\", \"uraian\": \"THEOPHYLLINE ANHYDROUS (BHN BAKU OBAT) COA 23241, 23244 S/D 23246\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAFFEINE (BHN BAKU OBAT) COA 23091737, 23091748, 23091753, 23091757, 23091758, 23091771\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29393000\", \"uraian\": \"CAFFEINE (BHN BAKU OBAT) COA 23091737, 23091748, 23091753, 23091757, 23091758, 23091771\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACETAMINOPHEN (PARACETAMOL) (BHN BAKU OBAT) COA 202303022A,202312114A,202312115A\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"ACETAMINOPHEN (PARACETAMOL) (BHN BAKU OBAT) COA 202303022A,202312114A,202312115A\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MOXIFLOXACIN HCL USP (BHN BAKU OBAT) COA MOX/23120002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334990\", \"uraian\": \"MOXIFLOXACIN HCL USP (BHN BAKU OBAT) COA MOX/23120002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NYSTATIN POWDER ROW GRADE (BHN BAKU OBAT) COA C114777\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"NYSTATIN POWDER ROW GRADE (BHN BAKU OBAT) COA C114777\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIFE'SDHA(TM) S35-O300 (BHN BAKU SUPPLEMEN) COA VY00519605\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"LIFE'SDHA(TM) S35-O300 (BHN BAKU SUPPLEMEN) COA VY00519605\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REGENIGHT TM (BHN BAKU KOSMETIK) COA 230309\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38231990\", \"uraian\": \"REGENIGHT TM (BHN BAKU KOSMETIK) COA 230309\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SCB MACADAMIA OIL (BHN BAKU KOSMETIK) COA 230409\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15159011\", \"uraian\": \"SCB MACADAMIA OIL (BHN BAKU KOSMETIK) COA 230409\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SKINECTURA TM (BHN BAKU KOSMETIK) COA 231203\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SKINECTURA TM (BHN BAKU KOSMETIK) COA 231203\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 231106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 231106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) CAS 233683-84-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) CAS 233683-84-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING (BHN BAKU PEWARNA TABLET)CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING (BHN BAKU PEWARNA TABLET)CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011..(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011..(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650035..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650035..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) KB LOW VISCOSITY FILM COATING SYSTEM..(BHN BAKU PEWARNA TABLET)CAS 151-21-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) KB LOW VISCOSITY FILM COATING SYSTEM..(BHN BAKU PEWARNA TABLET)CAS 151-21-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 21K58794..(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 21K58794..(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G60929..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G60929..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 02F52182..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 02F52182..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86674..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86674..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MACKAM C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 14487-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34024990\", \"uraian\": \"MACKAM C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 14487-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MACKAM C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 14487-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34024990\", \"uraian\": \"MACKAM C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 14487-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00847148,VE00847149\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"AMPHISOL K (BHN BAKU KOSMETIK) COA VE00847148,VE00847149\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL ZX (BHN BAKU KOSMETIK) COA 220512022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL ZX (BHN BAKU KOSMETIK) COA 220512022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0523060021\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0523060021\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323021405,0323021406\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323021405,0323021406\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS4871023,HS4881023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS4871023,HS4881023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23050162\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23050162\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230510\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230510\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230510.\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230510.\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI23040013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI23040013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT23070179\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT23070179\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX VMP JELLY (BHN BAKU MAKANAN) COA XW92312018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX VMP JELLY (BHN BAKU MAKANAN) COA XW92312018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12306007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12306007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000214336\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000214336\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALUMINUM HYDROXIDE GEL USP BARCROFT TM VISCO-9 (BHN BAKU SUPPLEMEN) COA 102302046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"ALUMINUM HYDROXIDE GEL USP BARCROFT TM VISCO-9 (BHN BAKU SUPPLEMEN) COA 102302046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG231125,MCVG231201,MCVG231208\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"V2G (BHN BAKU KOSMETIK) COA MCVG231125,MCVG231201,MCVG231208\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOCUSATE SODIUM (BAHAN BAKU OBAT) COA SD2123163\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"DOCUSATE SODIUM (BAHAN BAKU OBAT) COA SD2123163\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM REGULAR GRADE (BHN BAKU OBAT) COA 23081402,23101696,23101697,23111737\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331900\", \"uraian\": \"METAMIZOLE SODIUM REGULAR GRADE (BHN BAKU OBAT) COA 23081402,23101696,23101697,23111737\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB23070730 S/D WB23070732\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB23070730 S/D WB23070732\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20230902\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20230902\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VC SODIUM ASCORBATE REGULAR (BHN BAKU MAKANAN) COA HPN2305093 S/D HPN2305095\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"VC SODIUM ASCORBATE REGULAR (BHN BAKU MAKANAN) COA HPN2305093 S/D HPN2305095\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROSE ANHYDROUS (BHN BAKU PAKAN HEWAN) COA XW202401001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17023010\", \"uraian\": \"DEXTROSE ANHYDROUS (BHN BAKU PAKAN HEWAN) COA XW202401001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUGLETS (R) SUGAR SPHERES PF006 500/600 (30/35 MESH)... (BHN BAKU PEWARNA TABLET) COA ST519819\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"SUGLETS (R) SUGAR SPHERES PF006 500/600 (30/35 MESH)... (BHN BAKU PEWARNA TABLET) COA ST519819\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NUTRALIPIDS TYPE HY (BHN BAKU KOSMETIK) COA 3506300139\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15179090\", \"uraian\": \"NUTRALIPIDS TYPE HY (BHN BAKU KOSMETIK) COA 3506300139\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2311922379\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2311922379\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLOWER ACIDS (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"FLOWER ACIDS (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFIBER AG (BHN BAKU MAKANAN) COA 311241\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SUNFIBER AG (BHN BAKU MAKANAN) COA 311241\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2023111002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020\", \"uraian\": \"INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2023111002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NAI-WHITE A (BHN BAKU KOSMETIK) COA 2310F02103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32061110\", \"uraian\": \"NAI-WHITE A (BHN BAKU KOSMETIK) COA 2310F02103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ30617016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ30617016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 CRYST FOOD GRADE (BHN BAKU KOSMETIK) COA 012304002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 CRYST FOOD GRADE (BHN BAKU KOSMETIK) COA 012304002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARACETAMOL USP43 (BHN BAKU OBAT) COA 235982,2352997,2353000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"PARACETAMOL USP43 (BHN BAKU OBAT) COA 235982,2352997,2353000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 4-HYDROXYACETOPHENONE (BHN BAKU KOSMETIK) COA 202312029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29145000\", \"uraian\": \"4-HYDROXYACETOPHENONE (BHN BAKU KOSMETIK) COA 202312029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPECWHITE VCE (BHN BAKU KOSMETIK) COA 20230704\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SPECWHITE VCE (BHN BAKU KOSMETIK) COA 20230704\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MOPD (BHN BAKU KOSMETIK) COA 231115001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"MOPD (BHN BAKU KOSMETIK) COA 231115001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANNITOL USP/EP MANNOGEM(R) EZ SPRAY DRIED (BHN BAKU OBAT) COA 122303426\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054300\", \"uraian\": \"MANNITOL USP/EP MANNOGEM(R) EZ SPRAY DRIED (BHN BAKU OBAT) COA 122303426\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHARMABURST (R) C1 (BHN BAKU OBAT) COA 122302947\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069099\", \"uraian\": \"PHARMABURST (R) C1 (BHN BAKU OBAT) COA 122302947\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FRUCTILIANCE (BHN BAKU KOSMETIK) COA PO00041802,PO00043575\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"FRUCTILIANCE (BHN BAKU KOSMETIK) COA PO00041802,PO00043575\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-CARNITINE (EP GRADE)(BHN BAKU KOSMETIK) COA 10100120230248\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29239000\", \"uraian\": \"L-CARNITINE (EP GRADE)(BHN BAKU KOSMETIK) COA 10100120230248\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E15 PREMIUM LV HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2444226864\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E15 PREMIUM LV HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2444226864\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464207168\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464207168\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA D180M1P002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA D180M1P002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464207161\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464207161\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464207176\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464207176\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA D180M23002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA D180M23002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464207167\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464207167\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464207162\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464207162\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2444374841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2444374841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464207178\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464207178\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E4M PREMIUM LV HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464299832\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E4M PREMIUM LV HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464299832\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-54HV (18KG) (BHN BAKU KOSMETIK) COA 401091\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100020\", \"uraian\": \"KF-54HV (18KG) (BHN BAKU KOSMETIK) COA 401091\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) COA 312314\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100020\", \"uraian\": \"KF-56A (18KG) (BHN BAKU KOSMETIK) COA 312314\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-210 (16KG) (BHN BAKU KOSMETIK) COA 311674\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSG-210 (16KG) (BHN BAKU KOSMETIK) COA 311674\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP-101 (15KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSP-101 (15KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP-300 (1KG) (BHN BAKU KOSMETIK) CAS 9002-92-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSP-300 (1KG) (BHN BAKU KOSMETIK) CAS 9002-92-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) COA 312340\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100020\", \"uraian\": \"KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) COA 312340\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE USP (BAHAN BAKU OBAT) COA LCBA0043 S/D LCBA0046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE USP (BAHAN BAKU OBAT) COA LCBA0043 S/D LCBA0046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ADDA0003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123100\", \"uraian\": \"CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ADDA0003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE BP (BAHAN BAKU OBAT) COA MCAA0056,MCAA0057\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE BP (BAHAN BAKU OBAT) COA MCAA0056,MCAA0057\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA 2302420103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA 2302420103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CARBAZOCHROME SODIUM SULFONATE ORAL G (BHN BAKU OBAT)COA AC30617/30719\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"CARBAZOCHROME SODIUM SULFONATE ORAL G (BHN BAKU OBAT)COA AC30617/30719\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETAMETHASONE VALERATE USP 43 (BHN BAKU OBAT) COA APL/BV/01009/A-24\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"BETAMETHASONE VALERATE USP 43 (BHN BAKU OBAT) COA APL/BV/01009/A-24\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DESONIDE MICRONIZED (BHN BAKU OBAT) COA ND1569M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"DESONIDE MICRONIZED (BHN BAKU OBAT) COA ND1569M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MATCHA (BHN BAKU KOSMETIK) CAS 84650-60-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MATCHA (BHN BAKU KOSMETIK) CAS 84650-60-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3512810\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3512810\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 2401003T\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100020\", \"uraian\": \"KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 2401003T\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 196037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 196037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LABRASOL BF (BHN BAKU SUPPLEMEN) COA 198718\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LABRASOL BF (BHN BAKU SUPPLEMEN) COA 198718\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40\u00b0 BRIX) CSB (BHN BAKU KOSMETIK) COA 01/23GL4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40\u00b0 BRIX) CSB (BHN BAKU KOSMETIK) COA 01/23GL4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40\u00b0 BRIX) ECH (BHN BAKU KOSMETIK) COA 01/23GL4, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40\u00b0 BRIX) ECH (BHN BAKU KOSMETIK) COA 01/23GL4, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT23080012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT23080012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30% FS (BHN BAKU MAKANAN) COA UE02307069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 30% FS (BHN BAKU MAKANAN) COA UE02307069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23040136,UT23070233,UT23080261\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23040136,UT23070233,UT23080261\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT23100075,UT23100076\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT23100075,UT23100076\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT23070187\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT23070187\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30% FS (BHN BAKU MAKANAN) COA UE02307069,UE02307070\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 30% FS (BHN BAKU MAKANAN) COA UE02307069,UE02307070\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND (R) PB-21158 GREEN.. (BHN BAKU PEWARNA TABLET) COA GA747541\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"PIGMENT BLEND (R) PB-21158 GREEN.. (BHN BAKU PEWARNA TABLET) COA GA747541\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND (R) PB-21158 GREEN.. (BHN BAKU PEWARNA TABLET) COA GA747541\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"PIGMENT BLEND (R) PB-21158 GREEN.. (BHN BAKU PEWARNA TABLET) COA GA747541\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F19250...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F19250...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50555\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061100\", \"uraian\": \"MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50555\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA 8MT2312144\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30032000\", \"uraian\": \"STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA 8MT2312144\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA MTPFP23013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA MTPFP23013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202401-016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35040000\", \"uraian\": \"SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202401-016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SELOHVITA C (BHN BAKU SUPPLEMEN) COA 3138622\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28429010\", \"uraian\": \"SELOHVITA C (BHN BAKU SUPPLEMEN) COA 3138622\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINC SULFATE 1-HYDRATE, POWDER,USP43 (BHN BAKU OBAT) COA 3117412\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"ZINC SULFATE 1-HYDRATE, POWDER,USP43 (BHN BAKU OBAT) COA 3117412\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINC SULFATE 1-HYDRATE, POWDER,USP43 (BHN BAKU OBAT) COA 3138160\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"ZINC SULFATE 1-HYDRATE, POWDER,USP43 (BHN BAKU OBAT) COA 3138160\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU OBAT) COA 3137011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU OBAT) COA 3137011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM FEREDETATE, POWDER, BP2023 (BHN BAKU OBAT) COA 3130632\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"SODIUM FEREDETATE, POWDER, BP2023 (BHN BAKU OBAT) COA 3130632\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POTASSIUM L-ASPARTATE 0,5 HYDRATE (BHN BAKU OBAT) COA 3138689\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"POTASSIUM L-ASPARTATE 0,5 HYDRATE (BHN BAKU OBAT) COA 3138689\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS GLUCONATE, POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3139454\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"FERROUS GLUCONATE, POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3139454\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS GLUCONATE, POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3139073\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"FERROUS GLUCONATE, POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3139073\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS FUMARATE, FINE POWDER (BHN BAKU MAKANAN) COA 3133483\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"FERROUS FUMARATE, FINE POWDER (BHN BAKU MAKANAN) COA 3133483\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SELOHVITA C (BHN BAKU SUPPLEMEN) COA 3139833\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28429010\", \"uraian\": \"SELOHVITA C (BHN BAKU SUPPLEMEN) COA 3139833\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRICALCIUM CITRATE 4-HYDRATE POWDER (BHN BAKU OBAT) COA 3123568\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181590\", \"uraian\": \"TRICALCIUM CITRATE 4-HYDRATE POWDER (BHN BAKU OBAT) COA 3123568\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COPPER SULFATE, POWDER, PH.EUR.11.ED. (BHN BAKU SUPLEMEN) COA 3138442\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332500\", \"uraian\": \"COPPER SULFATE, POWDER, PH.EUR.11.ED. (BHN BAKU SUPLEMEN) COA 3138442\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COPPER SULFATE, POWDER, PH.EUR.11.ED. (BHN BAKU SUPLEMEN) COA 3138445\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332500\", \"uraian\": \"COPPER SULFATE, POWDER, PH.EUR.11.ED. (BHN BAKU SUPLEMEN) COA 3138445\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM SULFATE DRIED, POWDER... (BHN BAKU OBAT) COA 3130180\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332100\", \"uraian\": \"MAGNESIUM SULFATE DRIED, POWDER... (BHN BAKU OBAT) COA 3130180\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 202342\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 202342\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229.. (BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229.. (BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55041...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55041...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA747651\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA747651\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30% FS (BHN BAKU MAKANAN) COA UE02309072,UE02309073\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 30% FS (BHN BAKU MAKANAN) COA UE02309072,UE02309073\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-III (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-III (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOKUDAMI LIQUID B (BHN BAKU KOSMETIK) COA 231637\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"DOKUDAMI LIQUID B (BHN BAKU KOSMETIK) COA 231637\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HAPPICLOV (BHN BAKU KOSMETIK) COA 231266\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HAPPICLOV (BHN BAKU KOSMETIK) COA 231266\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 232477\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329900\", \"uraian\": \"K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 232477\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 232091\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"MANDARINCLEAR (BHN BAKU KOSMETIK) COA 232091\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 231090\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 231090\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for YUZU CERAMIDE B (BHN BAKU KOSMETIK) COA 231178\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"YUZU CERAMIDE B (BHN BAKU KOSMETIK) COA 231178\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 240154\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 240154\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-III (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-III (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 240029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"IZAYOI (BHN BAKU KOSMETIK) COA 240029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VEGANPROTEOGLYCAN (BHN BAKU KOSMETIK) COA 231763\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VEGANPROTEOGLYCAN (BHN BAKU KOSMETIK) COA 231763\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 1,3-BUTYLENE GLYCOL, COSMETIC QUALITY(BHN BAKU KOSMETIK) COA P0623927BC\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"1,3-BUTYLENE GLYCOL, COSMETIC QUALITY(BHN BAKU KOSMETIK) COA P0623927BC\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAFFEINE BP/EP/USP/CEP(BHN BAKU OBAT) COA 23081515,23081516,23081544,23081674,23081676,23081683\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29393000\", \"uraian\": \"CAFFEINE BP/EP/USP/CEP(BHN BAKU OBAT) COA 23081515,23081516,23081544,23081674,23081676,23081683\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512335\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47069200\", \"uraian\": \"SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512335\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512342,G02512345\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47069200\", \"uraian\": \"SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512342,G02512345\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512335\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47069200\", \"uraian\": \"SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512335\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA ROA243234,ROA320237,ROA321234,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA ROA243234,ROA320237,ROA321234,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE TM PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ABYSSINE TM PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829012074P\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"B-WHITE TM (BHN BAKU KOSMETIK) COA 829012074P\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GREYVERSE TM (BHN BAKU KOSMETIK) COA 833012061P\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"GREYVERSE TM (BHN BAKU KOSMETIK) COA 833012061P\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HELIOGEL TM (BHN BAKU KOSMETIK) CAS 25549-84-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HELIOGEL TM (BHN BAKU KOSMETIK) CAS 25549-84-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) CAS 37350-42-8\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) CAS 37350-42-8\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROGELINE TM (BHN BAKU KOSMETIK) COA 820052242P\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"PROGELINE TM (BHN BAKU KOSMETIK) COA 820052242P\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRIED ALUMINUM HYDROXIDE, SORBITOL BLEND..(BHN BAKU OBAT) COA 102360003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"DRIED ALUMINUM HYDROXIDE, SORBITOL BLEND..(BHN BAKU OBAT) COA 102360003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COENZYM Q10 (FOR COSMETIC USE, FERMENTATIVE) (BHN BAKU KOSMETIK) COA 51-2208176\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29146200\", \"uraian\": \"COENZYM Q10 (FOR COSMETIC USE, FERMENTATIVE) (BHN BAKU KOSMETIK) COA 51-2208176\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRASIL DM350 A2 (BHN BAKU KOSMETIK) COA 2352WKWB15,2352WKWC15\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100090\", \"uraian\": \"MIRASIL DM350 A2 (BHN BAKU KOSMETIK) COA 2352WKWB15,2352WKWC15\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMITOSE R (BHN BAKU KOSMETIK) COA LLH\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"AMITOSE R (BHN BAKU KOSMETIK) COA LLH\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS SILK-1000 (BHN BAKU KOSMETIK) CAS 96690-41-4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS SILK-1000 (BHN BAKU KOSMETIK) CAS 96690-41-4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 23100619,23100626,23100670\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29395900\", \"uraian\": \"DIMENHYDRINATE (BHN BAKU OBAT) COA 23100619,23100626,23100670\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARTAB (R) DIRECTLY COMPRESSIBLE STARCH 4001.. (BHN BAKU PEWARNA TABLET) COA WP874103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARTAB (R) DIRECTLY COMPRESSIBLE STARCH 4001.. (BHN BAKU PEWARNA TABLET) COA WP874103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C YELLOW #6/SUNSET...(BHN BAKU PEWARNA TABLET) COA WP862651:BC0388\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5287 FD&C YELLOW #6/SUNSET...(BHN BAKU PEWARNA TABLET) COA WP862651:BC0388\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5177 FD&C YELLOW #5/TARTRAZ...(BHN BAKU PEWARNA TABLET) COA WP865817:BC2551\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5177 FD&C YELLOW #5/TARTRAZ...(BHN BAKU PEWARNA TABLET) COA WP865817:BC2551\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANNITOL USP/EP MANNOGEM\u00ae EZ SPRAY DRIED (BHN BAKU OBAT) COA 122303427\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054300\", \"uraian\": \"MANNITOL USP/EP MANNOGEM\u00ae EZ SPRAY DRIED (BHN BAKU OBAT) COA 122303427\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-100563,112383\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-100563,112383\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-020883\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-020883\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1240123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1240123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-060693\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-060693\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND NEWAPLE (BHN BAKU KOSMETIK) COA NWPB-022093\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND NEWAPLE (BHN BAKU KOSMETIK) COA NWPB-022093\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-022214\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-022214\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N94107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N94107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA NB6112\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA NB6112\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-011373\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-011373\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-020493\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-020493\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) CAS 233683-84-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) CAS 233683-84-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (B) (BHN BAKU KOSMETIK) COA AMIBD-082693\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"HYUNDAI BIOLAND AMINO ACID COMPLEX (B) (BHN BAKU KOSMETIK) COA AMIBD-082693\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-072123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-072123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-072123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-072123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2311221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2311221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE 230P SCRUB OR (BHN BAKU KOSMETIK) COA 25-10-23\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE 230P SCRUB OR (BHN BAKU KOSMETIK) COA 25-10-23\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILVER CITRATE SOLUTION 2500PPM (BHN BAKU KOSMETIK) COA CPS23-0844\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28432900\", \"uraian\": \"SILVER CITRATE SOLUTION 2500PPM (BHN BAKU KOSMETIK) COA CPS23-0844\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LOTUS FROM VIETNAM ORGANIC OILY EXTRACT (BHN BAKU KOSMETIK) CAS 73398-61-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LOTUS FROM VIETNAM ORGANIC OILY EXTRACT (BHN BAKU KOSMETIK) CAS 73398-61-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230803\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230803\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INCA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK) CAS 68956-68-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"INCA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK) CAS 68956-68-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIE230802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIE230802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETAHISTINE MESYLATE EP (BHN BAKU OBAT) COA EDBHM23007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"BETAHISTINE MESYLATE EP (BHN BAKU OBAT) COA EDBHM23007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRO-LIPO TM NEO (BHN BAKU KOSMETIK) CAS 504-63-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PRO-LIPO TM NEO (BHN BAKU KOSMETIK) CAS 504-63-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834012184P\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834012184P\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CANADIAN WILLOWHERB TM 5% CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CANADIAN WILLOWHERB TM 5% CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANABLUE TM PARABEN FREE (BHN BAKU KOSMETIK) CAS 50-70-4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LANABLUE TM PARABEN FREE (BHN BAKU KOSMETIK) CAS 50-70-4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for WASTAR TM LAVENDER (BHN BAKU KOSMETIK) CAS 90063-37-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"WASTAR TM LAVENDER (BHN BAKU KOSMETIK) CAS 90063-37-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CELLOSIZE TM TEXTURE F4M HYDROXYPROPYL... (BHN BAKU KOSMETIK) COA F410LB8D31\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"CELLOSIZE TM TEXTURE F4M HYDROXYPROPYL... (BHN BAKU KOSMETIK) COA F410LB8D31\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRANOL ULTRA C-32 MB 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP401055MB\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34024990\", \"uraian\": \"MIRANOL ULTRA C-32 MB 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP401055MB\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP24014338,XP24014339\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP24014338,XP24014339\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SERASENSE SF 5 (BAHAN BAKU SUPLEMEN) COA SA40122077\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100090\", \"uraian\": \"SERASENSE SF 5 (BAHAN BAKU SUPLEMEN) COA SA40122077\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GUAIFENESIN USP (B. BAKU OBAT) COA GGE-2308079 S/D GGE- 2308081\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29094900\", \"uraian\": \"GUAIFENESIN USP (B. BAKU OBAT) COA GGE-2308079 S/D GGE- 2308081\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIAMI SCG(S) (BHN BAKU KOSMETIK) COA 240112B5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34023990\", \"uraian\": \"MIAMI SCG(S) (BHN BAKU KOSMETIK) COA 240112B5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT23090207\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT23090207\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ31012229\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ31012229\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT23090207\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT23090207\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101855023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA L101855023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101855023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA L101855023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWDER... (B.BAKU KOSMETIK) CAS 65497-29-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GUAR GUM TREATED AND PULVERISED IN POWDER... (B.BAKU KOSMETIK) CAS 65497-29-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM CARBONATE IPH (BHN BAKU SUPPLEMEN) COA DOC3392321,DOC3112321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"SODIUM CARBONATE IPH (BHN BAKU SUPPLEMEN) COA DOC3392321,DOC3112321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP12306007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU KOSMETIK) COA OP12306007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL (R) SHIELD (BHN BAKU KOSMETIK) COA 0823010640\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL (R) SHIELD (BHN BAKU KOSMETIK) COA 0823010640\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0423040118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HMS (BHN BAKU KOSMETIK) COA 0423040118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0046906\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0046906\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000216273\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000216273\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ30213041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ30213041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02310380\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02310380\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW92312069,XW92312070\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 C (BHN BAKU MAKANAN) COA XW92312069,XW92312070\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0523060065,0523060066,0523060079\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0523060065,0523060066,0523060079\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12306007,OP12306032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12306007,OP12306032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02306076,TL02306077\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02306076,TL02306077\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT23050013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT23050013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT23060177\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT23060177\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT23040228,UT23040229\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT23040228,UT23040229\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02309071\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02309071\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE, TYPE 100 (BHN BAKU SUPPLEMEN) COA UT23110068\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE, TYPE 100 (BHN BAKU SUPPLEMEN) COA UT23110068\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02309071\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02309071\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02308947,TL02308958\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02308947,TL02308958\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA ND2850M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA ND2850M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE S-1-8114 BLACK (BHN BAKU PEWARNA TABLET) COA TKL71056, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPACODE S-1-8114 BLACK (BHN BAKU PEWARNA TABLET) COA TKL71056, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SYN(R)-AKE (BHN BAKU KOSMETIK) COA UE02303003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SYN(R)-AKE (BHN BAKU KOSMETIK) COA UE02303003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPPLEMEN) COA TL02311372\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPPLEMEN) COA TL02311372\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE, TYPE 100 (BHN BAKU SUPPLEMEN) COA UT23110068\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE, TYPE 100 (BHN BAKU SUPPLEMEN) COA UT23110068\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BILBERRY(V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPPLEMEN) COA 23S0292500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BILBERRY(V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPPLEMEN) COA 23S0292500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BILBERRY(V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPPLEMEN) COA 23S0292500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BILBERRY(V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPPLEMEN) COA 23S0292500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VACCINIUM MYRTILLUS DRY EX. (BHN BAKU SUPLEMEN) COA 23S0078800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VACCINIUM MYRTILLUS DRY EX. (BHN BAKU SUPLEMEN) COA 23S0078800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SERENOA REPENS PURIFIED EXT (BHN BAKU SUPLEMEN) COA 23S0098600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SERENOA REPENS PURIFIED EXT (BHN BAKU SUPLEMEN) COA 23S0098600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA/PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 22S0097300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"CENTELLA ASIATICA/PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 22S0097300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for P. GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPPLEMEN) COA 23S0178700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"P. GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPPLEMEN) COA 23S0178700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CURCUMINOIDS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 23S0164408\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"CURCUMINOIDS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 23S0164408\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VACC.MYRT./PINUS PIN. DRY EX (BHN BAKU SUPLEMEN) COA 23S0129300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VACC.MYRT./PINUS PIN. DRY EX (BHN BAKU SUPLEMEN) COA 23S0129300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYMARIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 23B0109100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SILYMARIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 23B0109100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 23B0106200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SILYBIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 23B0106200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 23B0106000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SILYBIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 23B0106000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARTAB (R) DIRECTLY COMPRESSIBLE STARCH 4001.. (BHN BAKU PEWARNA TABLET) COA WP874103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARTAB (R) DIRECTLY COMPRESSIBLE STARCH 4001.. (BHN BAKU PEWARNA TABLET) COA WP874103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5396 ERYTHROSINE ALUMINUM LAKE...(BHN BAKU PEWARNA TABLET) COA WP860981:1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5396 ERYTHROSINE ALUMINUM LAKE...(BHN BAKU PEWARNA TABLET) COA WP860981:1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5177 FD&C YELLOW #5/TARTRAZ...(BHN BAKU PEWARNA TABLET) COA WP865823:BC3941\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5177 FD&C YELLOW #5/TARTRAZ...(BHN BAKU PEWARNA TABLET) COA WP865823:BC3941\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT (R) 6010 D&C YELLOW #10 ALUMINUM ...(BHN BAKU PEWARNA TABLET) COA WP870802:BC5629\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT (R) 6010 D&C YELLOW #10 ALUMINUM ...(BHN BAKU PEWARNA TABLET) COA WP870802:BC5629\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5627 FD&C BLUE #2/INDIGO CA...(BHN BAKU PEWARNA TABLET) COA WP869522:BC4229\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5627 FD&C BLUE #2/INDIGO CA...(BHN BAKU PEWARNA TABLET) COA WP869522:BC4229\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5396 ERYTHROSINE ALUMINUM LAKE...(BHN BAKU PEWARNA TABLET) COA WP860981:1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5396 ERYTHROSINE ALUMINUM LAKE...(BHN BAKU PEWARNA TABLET) COA WP860981:1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C YELLOW #6/SUNSET..(BHN BAKU PEWARNA TABLET) COA WP868324:BC3385\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5287 FD&C YELLOW #6/SUNSET..(BHN BAKU PEWARNA TABLET) COA WP868324:BC3385\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TEFOSE 63 BF (BHN BAKU SUPPLEMEN) COA 198235\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TEFOSE 63 BF (BHN BAKU SUPPLEMEN) COA 198235\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LABRAFIL M 1944 CS BF (BHN BAKU SUPPLEMEN) COA 198640\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LABRAFIL M 1944 CS BF (BHN BAKU SUPPLEMEN) COA 198640\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRANSCUTOL P BF (BHN BAKU SUPPLEMEN) COA 198205\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TRANSCUTOL P BF (BHN BAKU SUPPLEMEN) COA 198205\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPRITOL 888 ATO (BHN BAKU SUPPLEMEN) COA 198506\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"COMPRITOL 888 ATO (BHN BAKU SUPPLEMEN) COA 198506\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELUCIRE 44/14 BF (BHN BAKU SUPPLEMEN) COA 196690\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELUCIRE 44/14 BF (BHN BAKU SUPPLEMEN) COA 196690\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELOIL SC BF (BHN BAKU SUPPLEMEN) COA 197910\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELOIL SC BF (BHN BAKU SUPPLEMEN) COA 197910\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 01/23GL4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 01/23GL4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 01/23GL4, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 01/23GL4, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JAGUAR HP 105 SGI 25KG CARDBOARD CARTON (BHN BAKU KOSMETIK) CAS 39421-75-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"JAGUAR HP 105 SGI 25KG CARDBOARD CARTON (BHN BAKU KOSMETIK) CAS 39421-75-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL ZX (BHN BAKU KOSMETIK) COA 230210082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL ZX (BHN BAKU KOSMETIK) COA 230210082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHARMACEUTICAL CASTOR OIL E.P (BHN BAKU KOSMETIK) COA 0000049092,0000049094\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15152919\", \"uraian\": \"PHARMACEUTICAL CASTOR OIL E.P (BHN BAKU KOSMETIK) COA 0000049092,0000049094\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) CAS 122-99-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) CAS 122-99-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MECOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/1223066\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"MECOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/1223066\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID S 20 (BHN BAKU SUPPLEMEN) COA 572000-2220141\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232011\", \"uraian\": \"LIPOID S 20 (BHN BAKU SUPPLEMEN) COA 572000-2220141\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 23T0078700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 23T0078700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COOLACT 10 (BHN BAKU KOSMETIK) COA T009032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29094900\", \"uraian\": \"COOLACT 10 (BHN BAKU KOSMETIK) COA T009032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL ISOVITALEX ENRICHMENT 10ML 5 EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3284473\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL ISOVITALEX ENRICHMENT 10ML 5 EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3284473\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3319761\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3319761\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3319761\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3319761\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL E COIL H ANTISERUM H7 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3068676\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL E COIL H ANTISERUM H7 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3068676\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTISERUM POLY A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2300548\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTISERUM POLY A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2300548\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SHIGELLA ANTIS POLY A1 LYOPHILIZED(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2335899\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SHIGELLA ANTIS POLY A1 LYOPHILIZED(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2335899\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2335855\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2335855\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL E COLI O ANTISERUM O157 SEROL TEST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3166212\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL E COLI O ANTISERUM O157 SEROL TEST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3166212\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAIN BUFFER FBS 500ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3289239\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"STAIN BUFFER FBS 500ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3289239\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3354146\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3354146\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3257251\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3257251\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3248119\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3248119\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3227268,3338234\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3227268,3338234\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3200363,3200377,.\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3200363,3200377,.\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3206413\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3206413\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3272460\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3272460\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3079261\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3079261\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 3303852\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 3303852\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3107294\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3107294\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3200342\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3200342\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 3275384\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 3275384\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B03F081M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B03F081M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3236876\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3236876\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3236903\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3236903\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3174570\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3174570\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2313348\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2313348\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3234562,3277645\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3234562,3277645\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 3303852\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 3303852\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 2221886\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 2221886\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2229544\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2229544\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2143794\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2143794\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2152796\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2152796\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA TUK PENGEMBANGAN MIKRO ORGANISME), BATCH 3114494\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA TUK PENGEMBANGAN MIKRO ORGANISME), BATCH 3114494\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2256092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2256092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 2034966\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 2034966\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3228048\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3228048\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3096242,321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3096242,321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3137222\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3137222\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2158081\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2158081\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3200342\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3200342\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEMOGLOBIN FREEZE DRIED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3173785\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEMOGLOBIN FREEZE DRIED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3173785\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH. 2104098\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH. 2104098\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2271480\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2271480\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3272841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3272841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE WL DIFFERENTIAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2123844\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE WL DIFFERENTIAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2123844\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3272460\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3272460\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1285556\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1285556\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3277644\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3277644\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3234601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3234601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3272460\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3272460\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M ENDO BROTH MF 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3297811\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M ENDO BROTH MF 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3297811\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) CAS 1332-09-8\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) CAS 1332-09-8\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA P24010008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349920\", \"uraian\": \"PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA P24010008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3512810\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3512810\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HPA82 PURE SENSITIVE (BHN BAKU KOSMETIK) COA 3549437\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"HPA82 PURE SENSITIVE (BHN BAKU KOSMETIK) COA 3549437\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 100 CAN 10 KG (BHN BAKU KOSMETIK) CAS 55965-84-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 100 CAN 10 KG (BHN BAKU KOSMETIK) CAS 55965-84-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 712 CAN 10 KG (BHN BAKU KOSMETIK) CAS 532-32-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 712 CAN 10 KG (BHN BAKU KOSMETIK) CAS 532-32-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 903 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 903 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 940 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 940 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) CAS 122-99-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) CAS 122-99-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIDIN PURE CAN 10 KG (BHN BAKU KOSMETIK) CAS 70775-75-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIDIN PURE CAN 10 KG (BHN BAKU KOSMETIK) CAS 70775-75-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) CAS 122-99-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) CAS 122-99-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE USP (BAHAN BAKU OBAT) COA LCBA0048,LCBA00489,MCBA0053,MCBA0055,MCBA0056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE USP (BAHAN BAKU OBAT) COA LCBA0048,LCBA00489,MCBA0053,MCBA0055,MCBA0056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 1,3-BUTYLENE GLYCOL (NATUROBG) (BHN BAKU KOSMETIK) COA BGC/L08/24\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"1,3-BUTYLENE GLYCOL (NATUROBG) (BHN BAKU KOSMETIK) COA BGC/L08/24\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B191023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B191023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B191023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B191023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LG0521123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LG0521123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB191023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB191023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB191023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB191023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) CAS 7631-86-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNSIL TIN50 (BHN BAKU KOSMETIK) CAS 7631-86-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANNITOL POWDER USP/EP-MANNO (BHN BAKU SUPPLEMEN) COA 292312308\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054300\", \"uraian\": \"MANNITOL POWDER USP/EP-MANNO (BHN BAKU SUPPLEMEN) COA 292312308\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NABUMETON USP (BHN BAKU OBAT) COA H-2011123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29145000\", \"uraian\": \"NABUMETON USP (BHN BAKU OBAT) COA H-2011123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLOPIDOGREL BISULFATE USP 45 FORM II (BHN BAKU OBAT) COA CLOPI/13120252\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"CLOPIDOGREL BISULFATE USP 45 FORM II (BHN BAKU OBAT) COA CLOPI/13120252\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANTOPRAZOLE SODIUM (STERILE) (BHN BAKU OBAT) COA SI/PPZ/00280124,00300124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"PANTOPRAZOLE SODIUM (STERILE) (BHN BAKU OBAT) COA SI/PPZ/00280124,00300124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359 ..(BHN BAKU PEWARNA TABLET)COA GA746921\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359 ..(BHN BAKU PEWARNA TABLET)COA GA746921\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O63173...(BHN BAKU PEWARNA TABLET)COA GA747479\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O63173...(BHN BAKU PEWARNA TABLET)COA GA747479\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET)COA GA747402\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET)COA GA747402\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET)COA GA747539\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET)COA GA747539\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 151-21-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 151-21-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620041..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620041..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO240201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO240201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) CAS 8001-25-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) CAS 8001-25-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT MAGNESIUM CARBONATE POWDER, BP 2023 (BHN BAKU MAKANAN) COA 3139411-01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28369990\", \"uraian\": \"LIGHT MAGNESIUM CARBONATE POWDER, BP 2023 (BHN BAKU MAKANAN) COA 3139411-01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) CAS 5743-47-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) CAS 5743-47-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM HYDROXIDE BEADS (CAUSTIC SODA MICROPRILLS) COA 202309140005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28151100\", \"uraian\": \"SODIUM HYDROXIDE BEADS (CAUSTIC SODA MICROPRILLS) COA 202309140005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-3211223\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29334910\", \"uraian\": \"DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-3211223\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERRIC PYROPHOSPHATE,24PCT - 26PCT FE POWDER,FCC13 (BHN BAKU MAKANAN) COA 3139864\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28353990\", \"uraian\": \"FERRIC PYROPHOSPHATE,24PCT - 26PCT FE POWDER,FCC13 (BHN BAKU MAKANAN) COA 3139864\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU MAKANAN) COA 3137150\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU MAKANAN) COA 3137150\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIPOTASSIUM PHOSPHATE POWDER... (BHN BAKU MAKANAN) COA 3132294\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28352400\", \"uraian\": \"DIPOTASSIUM PHOSPHATE POWDER... (BHN BAKU MAKANAN) COA 3132294\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 2204524696\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 2204524696\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 15B120040...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 15B120040...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F15789...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F15789...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-002-A\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-002-A\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 230210082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 230210082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340499 S/D B340501\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX COMPACTED (BHN BAKU OBAT) COA B340499 S/D B340501\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA MLAH0060124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29341000\", \"uraian\": \"MELOXICAM BP (BHN BAKU OBAT) COA MLAH0060124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE ACETATE ANHYDROUS MICRONISED PH.EUR.USP (BHN BAKU OBAT) COA 2204524696\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE ACETATE ANHYDROUS MICRONISED PH.EUR.USP (BHN BAKU OBAT) COA 2204524696\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID, (BHN BAKU SUPPLEMEN) COA TL02312521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID, (BHN BAKU SUPPLEMEN) COA TL02312521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02306011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02306011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT. A PALM. 1.0 M + VIT. D3 100'000 (BHN BAKU MAKANAN) COA UT23110185\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VIT. A PALM. 1.0 M + VIT. D3 100'000 (BHN BAKU MAKANAN) COA UT23110185\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02306007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02306007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT23050015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT23050015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF (BHN BAKU SUPPLEMEN) COA UE02307031\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO (R) LUTEIN 20PCT SAF (BHN BAKU SUPPLEMEN) COA UE02307031\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT24010069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT24010069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SYN(R)-AKE (BHN BAKU KOSMETIK) COA UE02303004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SYN(R)-AKE (BHN BAKU KOSMETIK) COA UE02303004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ30617015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ30617015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 CRYST FOOD GRADE (BHN BAKU KOSMETIK) COA 012304002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 CRYST FOOD GRADE (BHN BAKU KOSMETIK) COA 012304002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIFE'SGLA (TM) '10' N-6 OIL (BHN BAKU KOSMETIK) COA 3008002CN\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"LIFE'SGLA (TM) '10' N-6 OIL (BHN BAKU KOSMETIK) COA 3008002CN\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MONOPOTASSIUM PHOSPHATE CP (BHN BAKU KOSMETIK) COA 23122001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28352400\", \"uraian\": \"MONOPOTASSIUM PHOSPHATE CP (BHN BAKU KOSMETIK) COA 23122001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW MC YRPN19-1...(ALAT KESEHATAN)COA HL19100L0129\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30061010\", \"uraian\": \"STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW MC YRPN19-1...(ALAT KESEHATAN)COA HL19100L0129\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC YRPN19-84..(ALAT KESEHATAN)COA 6D19100L0129\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30061010\", \"uraian\": \"STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC YRPN19-84..(ALAT KESEHATAN)COA 6D19100L0129\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC YRPN19-84-..(ALAT KESEHATAN)COA HR1938L0129\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30061010\", \"uraian\": \"STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC YRPN19-84-..(ALAT KESEHATAN)COA HR1938L0129\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC YRPN19-1...(ALAT KESEHATAN)COA HR1960L0129\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30061010\", \"uraian\": \"STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC YRPN19-1...(ALAT KESEHATAN)COA HR1960L0129\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW DC YRDN-FE-...(ALAT KESEHATAN)COA DA21110N0129\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30061010\", \"uraian\": \"STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW DC YRDN-FE-...(ALAT KESEHATAN)COA DA21110N0129\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12306032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12306032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT23050162\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT23050162\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000215556\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000215556\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000215556\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000215556\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12306032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12306032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230602\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230602\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230602\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230602\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT23060009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT23060009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT23040011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT23040011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12306032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12306032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT23060009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT23060009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12306032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12306032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT23060177\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT23060177\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02303003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02303003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20230503\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20230503\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02308755\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02308755\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ30510662,UQ30510663\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ30510662,UQ30510663\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02308755\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02308755\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ30510663\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ30510663\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU KOSMETIK) COA UT22120266,UT22120267\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU KOSMETIK) COA UT22120266,UT22120267\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL 75 L (BHN BAKU KOSMETIK) COA TL02210334\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL 75 L (BHN BAKU KOSMETIK) COA TL02210334\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0924020001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX (BHN BAKU KOSMETIK) COA 0924020001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS4881023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS4881023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0723010092\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHS (BHN BAKU KOSMETIK) COA 0723010092\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0523060079\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0523060079\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT23071282\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT23071282\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT23070229\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT23070229\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT23050015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT23050015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ31112266,UQ31112267\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ31112266,UQ31112267\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT23080012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT23080012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETATAB 20PCT S (BHN BAKU SUPPLEMEN) COA UT23050002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"BETATAB 20PCT S (BHN BAKU SUPPLEMEN) COA UT23050002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT23090029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT23090029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT23110068\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT23110068\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT23090207\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT23090207\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT23070050\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT23070050\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL02312500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU MAKANAN) COA TL02312500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL02306396\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL02306396\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT23090029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT23090029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20240209\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20240209\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THEOPHYLLINE ANHYDROUS (BHN BAKU OBAT) COA 23246,23262 S/D 23268\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29395900\", \"uraian\": \"THEOPHYLLINE ANHYDROUS (BHN BAKU OBAT) COA 23246,23262 S/D 23268\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM REGULAR GRADE (BHN BAKU OBAT) COA 23101699,23101700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331900\", \"uraian\": \"METAMIZOLE SODIUM REGULAR GRADE (BHN BAKU OBAT) COA 23101699,23101700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2521023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2521023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRISODIUMCITRATE DIHYDRATE FINE GRANULAR (BHN BAKU SUPPLEMEN) COA UJ406\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"TRISODIUMCITRATE DIHYDRATE FINE GRANULAR (BHN BAKU SUPPLEMEN) COA UJ406\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK) COA 2402EF1811\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"L-ARGININE LO (BHN BAKU KOSMETIK) COA 2402EF1811\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7M IU/G (BHN BAKU KOSMETIK) COA 0423110010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7M IU/G (BHN BAKU KOSMETIK) COA 0423110010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL ALPHA TOCOPHEROL (BHN BAKU KOSMETIK) COA 01231104ES\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL ALPHA TOCOPHEROL (BHN BAKU KOSMETIK) COA 01231104ES\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYBIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 23B0225800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SILYBIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 23B0225800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PASSION FLOWER D.H.E 4PCT (BAHAN BAKU SUPLEMEN) COA 23B0096400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PASSION FLOWER D.H.E 4PCT (BAHAN BAKU SUPLEMEN) COA 23B0096400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HAWTHORN DRY HYDR. EXTR. (BHN BAKU SUPLEMEN) COA 21B0148600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"HAWTHORN DRY HYDR. EXTR. (BHN BAKU SUPLEMEN) COA 21B0148600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BUTCHERBROOM DRY HYDR EX 9-11PCT (BHN BAKU SUPLEMEN) COA 23B0036900\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BUTCHERBROOM DRY HYDR EX 9-11PCT (BHN BAKU SUPLEMEN) COA 23B0036900\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECHINACEA ANG.DRY PURIF. EX. (BHN BAKU SUPPLEMEN) COA 21S0155200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ECHINACEA ANG.DRY PURIF. EX. (BHN BAKU SUPPLEMEN) COA 21S0155200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VACCINIUM MYRTILLUS DRY EX. (BHN BAKU SUPLEMEN) COA 23S0078800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VACCINIUM MYRTILLUS DRY EX. (BHN BAKU SUPLEMEN) COA 23S0078800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GREEN TEA DRY DEC.EX ./PHOSPHOL (BHN BAKU SUPLEMEN) COA 23S0183400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"GREEN TEA DRY DEC.EX ./PHOSPHOL (BHN BAKU SUPLEMEN) COA 23S0183400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 23S0224200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 23S0224200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 23S0196500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 23S0196500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA PA 20 CAN 10 KG (BHN BAKU KOSMETIK) CAS 60-12-8\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA PA 20 CAN 10 KG (BHN BAKU KOSMETIK) CAS 60-12-8\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 720 CAN 10 KG (BHN BAKU KOSMETIK) CAS 65-85-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 720 CAN 10 KG (BHN BAKU KOSMETIK) CAS 65-85-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 903 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 903 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101855023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA L101855023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DURALAC (R) H (BHN BAKU OBAT) COA LC 014-23-805, LC 039-23-805\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"DURALAC (R) H (BHN BAKU OBAT) COA LC 014-23-805, LC 039-23-805\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 INF OIL (BHN BAKU SUPPLEMEN) COA TS00023438\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 INF OIL (BHN BAKU SUPPLEMEN) COA TS00023438\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT24010051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT24010051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 2304441456\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 2304441456\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 2304441456, SAMPLE NO COMMERCIAL\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 2304441456, SAMPLE NO COMMERCIAL\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS 30-100MESH BP/USP/FCC/E330 (BHN BAKU SUPLEMEN) COA 2AX2402016\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS 30-100MESH BP/USP/FCC/E330 (BHN BAKU SUPLEMEN) COA 2AX2402016\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTISHARP NAT. ZEA. 14PCT SAFF. (BHN BAKU SUPPLEMEN) COA 2309119543\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"OPTISHARP NAT. ZEA. 14PCT SAFF. (BHN BAKU SUPPLEMEN) COA 2309119543\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB22080267\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB22080267\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPAGLOS (R) TABLET CORE SEALANT PRODUCT OPAGLOS... (BHN BAKU PEWARNA TABLET) COA DT755956\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPAGLOS (R) TABLET CORE SEALANT PRODUCT OPAGLOS... (BHN BAKU PEWARNA TABLET) COA DT755956\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPASPRAY (R) OPAQUE COLOR CONCENTRATE FOR FILM...(BHN BAKU PEWARNA TABLET) COA DT756652\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPASPRAY (R) OPAQUE COLOR CONCENTRATE FOR FILM...(BHN BAKU PEWARNA TABLET) COA DT756652\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM BISGLYCINATE POWDER... (BHN BAKU SUPPLEMEN) COA 3136971\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"MAGNESIUM BISGLYCINATE POWDER... (BHN BAKU SUPPLEMEN) COA 3136971\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464446250\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464446250\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 2401009T\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100020\", \"uraian\": \"KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 2401009T\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIPOTASSIUM PHOSPHATE ANHYDROUS CP (BHN BAKU KOSMETIK) COA 23112801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28352400\", \"uraian\": \"DIPOTASSIUM PHOSPHATE ANHYDROUS CP (BHN BAKU KOSMETIK) COA 23112801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPPLEMEN) COA WB23060369\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPPLEMEN) COA WB23060369\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB22080267\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB22080267\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP24014350,XP24014351\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP24014350,XP24014351\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL240207\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29094900\", \"uraian\": \"MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL240207\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 12-05-23, 20-04-23, 21-04-23, 26-04-23, 05-07-23\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 12-05-23, 20-04-23, 21-04-23, 26-04-23, 05-07-23\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE 230P SCRUB OR (BHN BAKU KOSMETIK) COA 24-10-23 S/D 27-10-23\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE 230P SCRUB OR (BHN BAKU KOSMETIK) COA 24-10-23 S/D 27-10-23\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 29.06.2022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25070000\", \"uraian\": \"KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 29.06.2022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFER-SODA (R) 12 (BHN BAKU OBAT) COA 122302934\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFER-SODA (R) 12 (BHN BAKU OBAT) COA 122302934\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFER-SODA (R) 12 (BHN BAKU OBAT) COA 122302934,122302935\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFER-SODA (R) 12 (BHN BAKU OBAT) COA 122302934,122302935\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFER-SODA (R) 12 (BHN BAKU OBAT) COA 122302935,122302936,122303469\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFER-SODA (R) 12 (BHN BAKU OBAT) COA 122302935,122302936,122303469\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92401109,XW92401110\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"V003400 (BHN BAKU MAKANAN) COA XW92401109,XW92401110\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT23060177\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT23060177\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT23070039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT23070039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT23050179\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT23050179\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF23041006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF23041006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000216741,0000216742\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000216741,0000216742\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL(R) HS (BHN BAKU KOSMETIK) COA HS6441223\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL(R) HS (BHN BAKU KOSMETIK) COA HS6441223\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02211813,TL02302802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02211813,TL02302802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23050179\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23050179\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0924020001,0924020002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX (BHN BAKU KOSMETIK) COA 0924020001,0924020002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL(R) SHIELD (BHN BAKU KOSMETIK) COA 0823010728\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL(R) SHIELD (BHN BAKU KOSMETIK) COA 0823010728\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0423040118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HMS (BHN BAKU KOSMETIK) COA 0423040118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23060229\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23060229\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323021433,0323021434\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323021433,0323021434\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0523060065\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0523060065\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323021434,0323021435,0323021464\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323021434,0323021435,0323021464\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23060229\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23060229\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES2308902,ES2310918\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"ALLANTOIN (BHN BAKU KOSMETIK) COA ES2308902,ES2310918\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL(R) HS (BHN BAKU KOSMETIK) COA HS6441223\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL(R) HS (BHN BAKU KOSMETIK) COA HS6441223\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02306077\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02306077\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02302802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02302802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL(R) SHIELD (BHN BAKU KOSMETIK) COA 0823010728\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL(R) SHIELD (BHN BAKU KOSMETIK) COA 0823010728\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0523060065\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0523060065\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323021464 ,0323021465\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323021464 ,0323021465\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS 30-100MESH BP/USP/FCC/E330 (BHN BAKU SUPLEMEN) COA 6AX2402020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS 30-100MESH BP/USP/FCC/E330 (BHN BAKU SUPLEMEN) COA 6AX2402020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOTAXIME SODIUM STERILE USP (BHN BAKU OBAT) COA D600100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOTAXIME SODIUM STERILE USP (BHN BAKU OBAT) COA D600100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CAFFEINE BP/EP/USP/CEP(BHN BAKU OBAT) COA 23051041,23051060,23051061,23051064 S/D 23051066,....\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29393000\", \"uraian\": \"CAFFEINE BP/EP/USP/CEP(BHN BAKU OBAT) COA 23051041,23051060,23051061,23051064 S/D 23051066,....\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMPICILLIN SODIUM (STERILE) BP (BHN BAKU OBAT) COA SI/AMP/000502224\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29411020\", \"uraian\": \"AMPICILLIN SODIUM (STERILE) BP (BHN BAKU OBAT) COA SI/AMP/000502224\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT LYOPHIZED (BHN BAKU OBAT) COA ND0221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT LYOPHIZED (BHN BAKU OBAT) COA ND0221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 DHA INF 10 FOOD OIL (BHN BAKU MAKANAN) COA TS00023068\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 DHA INF 10 FOOD OIL (BHN BAKU MAKANAN) COA TS00023068\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20240219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20240219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP04524\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP04524\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA 23D0916832\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA 23D0916832\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 DHA INF 10 FOOD OIL (BHN BAKU MAKANAN) COA TS00023220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 DHA INF 10 FOOD OIL (BHN BAKU MAKANAN) COA TS00023220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT GRANULATION (BHN BAKU SUPPLEMEN) COA WB22119053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT GRANULATION (BHN BAKU SUPPLEMEN) COA WB22119053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IPRATROPIUM BROMIDE (BHN BAKU OBAT) COA 2350001461\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"IPRATROPIUM BROMIDE (BHN BAKU OBAT) COA 2350001461\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TSPL-30-ID (1KG) (BHN BAKU KOSMETIK) CAS 13475-82-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"TSPL-30-ID (1KG) (BHN BAKU KOSMETIK) CAS 13475-82-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 240154\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 240154\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 232422\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 232422\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 232371\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"MANDARINCLEAR (BHN BAKU KOSMETIK) COA 232371\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 231090\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 231090\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIOCELLACT CHAMOMILLA BD (BHN BAKU KOSMETIK) COA 231949\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BIOCELLACT CHAMOMILLA BD (BHN BAKU KOSMETIK) COA 231949\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 231643\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"IZAYOI (BHN BAKU KOSMETIK) COA 231643\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-III (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-III (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 231278\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 231278\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 231761\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ABSORAGE (BHN BAKU KOSMETIK) COA 231761\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPPLEMEN) COA TL02311372\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPPLEMEN) COA TL02311372\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI23040013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI23040013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02312507\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02312507\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHITOSAN (BHN BAKU SUPPLEMEN) COA HK-C24022602\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"CHITOSAN (BHN BAKU SUPPLEMEN) COA HK-C24022602\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANTOPRAZOLE SODIUM (STERILE) (BHN BAKU OBAT) COA SI/PPZ/00540224\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"PANTOPRAZOLE SODIUM (STERILE) (BHN BAKU OBAT) COA SI/PPZ/00540224\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOROLAC TROMETHAMINE USP (BHN BAKU OBAT) COA KM0150323\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"KETOROLAC TROMETHAMINE USP (BHN BAKU OBAT) COA KM0150323\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNBELLIN (BHN BAKU KOSMETIK) COA F210-2311003,2311007, 2311008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"SUNBELLIN (BHN BAKU KOSMETIK) COA F210-2311003,2311007, 2311008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPECWHITE VCE (BHN BAKU KOSMETIK) COA 20230704, 20240108, 20240109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SPECWHITE VCE (BHN BAKU KOSMETIK) COA 20230704, 20240108, 20240109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ADENOSINE(L) (BHN BAKU KOSMETIK) COA C01202309003L, C01202311004L\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"ADENOSINE(L) (BHN BAKU KOSMETIK) COA C01202309003L, C01202311004L\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GF-B331 (BHN BAKU KOSMETIK) COA 20240118001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051090\", \"uraian\": \"GF-B331 (BHN BAKU KOSMETIK) COA 20240118001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPECWHITE 05 (BHN BAKU KOSMETIK) COA 20231007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29222900\", \"uraian\": \"SPECWHITE 05 (BHN BAKU KOSMETIK) COA 20231007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP2010/USP42 (BHN BAKU OBAT) COA NED231209,NED240104\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP2010/USP42 (BHN BAKU OBAT) COA NED231209,NED240104\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISONE USP2023 (BHN BAKU OBAT) COA NPD231015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISONE USP2023 (BHN BAKU OBAT) COA NPD231015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETAMETHASONE BP2022/USP2023 (BHN BAKU OBAT) COA XBE230801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"BETAMETHASONE BP2022/USP2023 (BHN BAKU OBAT) COA XBE230801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE USP2023 (BHN BAKU OBAT) COA NMP240203\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE USP2023 (BHN BAKU OBAT) COA NMP240203\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNISOLONE BP2022/USP2023 (BHN BAKU OBAT) COA XPL231103\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372100\", \"uraian\": \"PREDNISOLONE BP2022/USP2023 (BHN BAKU OBAT) COA XPL231103\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS FUMARATE (BHN BAKU OBAT) COA 2024/20\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"FERROUS FUMARATE (BHN BAKU OBAT) COA 2024/20\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ACID PYROPHOSPHATE FOOD GRADE (BHN BAKU MAKANAN) COA 9240220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28353990\", \"uraian\": \"SODIUM ACID PYROPHOSPHATE FOOD GRADE (BHN BAKU MAKANAN) COA 9240220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECOGEL TM (BHN BAKU KOSMETIK) CAS 85711-58-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ECOGEL TM (BHN BAKU KOSMETIK) CAS 85711-58-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECOSLIM TM (BHN BAKU KOSMETIK) CAS 58-08-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ECOSLIM TM (BHN BAKU KOSMETIK) CAS 58-08-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LANABLUE TM PARABEN FREE (BHN BAKU KOSMETIK) CAS 50-70-4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LANABLUE TM PARABEN FREE (BHN BAKU KOSMETIK) CAS 50-70-4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LYSOFIX TM LIQUID (BHN BAKU KOSMETIK) CAS 1448790-48-4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LYSOFIX TM LIQUID (BHN BAKU KOSMETIK) CAS 1448790-48-4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834012184P\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834012184P\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) CAS 37350-42-8\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) CAS 37350-42-8\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834012184P\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834012184P\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECOGEL TM (BHN BAKU KOSMETIK) CAS 85711-58-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ECOGEL TM (BHN BAKU KOSMETIK) CAS 85711-58-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CANADIAN WILLOWHERB TM 5% CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CANADIAN WILLOWHERB TM 5% CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50% CWS/S (BHN BAKU SUPPLEMEN) COA UT23050014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50% CWS/S (BHN BAKU SUPPLEMEN) COA UT23050014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30701084\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30701084\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50% CWS/S (BHN BAKU SUPPLEMEN) COA UT23050014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50% CWS/S (BHN BAKU SUPPLEMEN) COA UT23050014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12306032\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12306032\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1% WS (BHN BAKU SUPPLEMEN) COA UT23040011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1% WS (BHN BAKU SUPPLEMEN) COA UT23040011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230601\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230601\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU KOSMETIK) COA UT23090206\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU KOSMETIK) COA UT23090206\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL\u00ae SHIELD (BHN BAKU KOSMETIK) COA 0823010728, 0823010729\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL\u00ae SHIELD (BHN BAKU KOSMETIK) COA 0823010728, 0823010729\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000217252\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000217252\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000217252\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000217252\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TILAMAR\u00ae PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA 23D1012832\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"TILAMAR\u00ae PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA 23D1012832\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C\u00ae 50 (BHN BAKU KOSMETIK) COA UE02211046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C\u00ae 50 (BHN BAKU KOSMETIK) COA UE02211046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TILAMAR\u00ae PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA 23D1012832\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"TILAMAR\u00ae PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA 23D1012832\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ30612176\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ30612176\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE02306011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU MAKANAN) COA UE02306011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT23060161\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT23060161\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230601,QZ11230602\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230601,QZ11230602\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE02306011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU MAKANAN) COA UE02306011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL02307093\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU MAKANAN) COA TL02307093\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ30510671\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ30510671\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02308756\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02308756\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ30612176\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ30612176\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNTHEANINE (L-THEANINE) (BHN BAKU MAKANAN) COA 309107\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SUNTHEANINE (L-THEANINE) (BHN BAKU MAKANAN) COA 309107\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2314938\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2314938\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2034962\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2034962\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0335766\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0335766\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1046607\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1046607\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1046610\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1046610\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1075037\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1075037\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3039818\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3039818\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3039818\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3039818\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3039818\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3039818\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3114540\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3114540\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3114540\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3114540\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3114540\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3114540\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AQUACOAT ECD-30 ETHYLCELLULOSE AQUEOUS... (BHN BAKU PEWARNA TABLET) COA 2174490301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"AQUACOAT ECD-30 ETHYLCELLULOSE AQUEOUS... (BHN BAKU PEWARNA TABLET) COA 2174490301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464438852\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464438852\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K4M PREMIUM HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464304789\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K4M PREMIUM HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464304789\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E15 PREMIUM LV HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2444213820\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E15 PREMIUM LV HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2444213820\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2444374841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2444374841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E50 PREMIUM LV HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2444321639\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E50 PREMIUM LV HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2444321639\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464317909\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464317909\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2444374841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2444374841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E5 PREMIUM LV HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2444388891\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E5 PREMIUM LV HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2444388891\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G65197...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G65197...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55410...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55410...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977..(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977..(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51469...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51469...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-30-18037...(BHN BAKU PEWARNA TABLET)CAS 64044-51-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-30-18037...(BHN BAKU PEWARNA TABLET)CAS 64044-51-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM HYDROXIDE PASTE USP BARCROFT... (BHN BAKU OBAT) COA 102329034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"MAGNESIUM HYDROXIDE PASTE USP BARCROFT... (BHN BAKU OBAT) COA 102329034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYPROHEPTADINE HYDROCHLORIDE BP/PH. EUR. (BHN BAKU OBAT) COA CYP/01241003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"CYPROHEPTADINE HYDROCHLORIDE BP/PH. EUR. (BHN BAKU OBAT) COA CYP/01241003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NAI-WHITE A (BHN BAKU KOSMETIK) COA 2401B29102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32061110\", \"uraian\": \"NAI-WHITE A (BHN BAKU KOSMETIK) COA 2401B29102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-15 (16KG) (BHN BAKU KOSMETIK) COA 401653\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100020\", \"uraian\": \"KSG-15 (16KG) (BHN BAKU KOSMETIK) COA 401653\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-54HV (18KG) (BHN BAKU KOSMETIK) COA 403095\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100020\", \"uraian\": \"KF-54HV (18KG) (BHN BAKU KOSMETIK) COA 403095\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) COA 402337\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100020\", \"uraian\": \"KF-56A (18KG) (BHN BAKU KOSMETIK) COA 402337\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-7312K (16KG) (BHN BAKU KOSMETIK) CAS 562705-01-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-7312K (16KG) (BHN BAKU KOSMETIK) CAS 562705-01-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP-300 (1KG) (BHN BAKU KOSMETIK) CAS 9002-92-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSP-300 (1KG) (BHN BAKU KOSMETIK) CAS 9002-92-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP-300 (1KG) (BHN BAKU KOSMETIK) CAS 9002-92-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSP-300 (1KG) (BHN BAKU KOSMETIK) CAS 9002-92-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MOMETASONE FUROATE USP MICRONISED (BHN BAKU OBAT) COA APL/MF/06011/B-24\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"MOMETASONE FUROATE USP MICRONISED (BHN BAKU OBAT) COA APL/MF/06011/B-24\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRICALCIUM CITRATE 4-HYDRATE POWDER (BHN BAKU OBAT) COA 3134800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181590\", \"uraian\": \"TRICALCIUM CITRATE 4-HYDRATE POWDER (BHN BAKU OBAT) COA 3134800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM ASPARTATE DIHYDRATE,... (BHN BAKU SUPPLEMEN) COA 3118345-04\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"MAGNESIUM ASPARTATE DIHYDRATE,... (BHN BAKU SUPPLEMEN) COA 3118345-04\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOPROFEN (BHN BAKU OBAT) COA 204187\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29183000\", \"uraian\": \"KETOPROFEN (BHN BAKU OBAT) COA 204187\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) CAS 7631-86-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNSIL TIN50 (BHN BAKU KOSMETIK) CAS 7631-86-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT23061274,UT23061275\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT23061274,UT23061275\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02306011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02306011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT23070187\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT23070187\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL02312521\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU MAKANAN) COA TL02312521\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT24010006,UT24010009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT24010006,UT24010009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA 8MT2401109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30032000\", \"uraian\": \"STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA 8MT2401109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE USP (BAHAN BAKU OBAT) COA BDBA0008 S/D BDBA0010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE USP (BAHAN BAKU OBAT) COA BDBA0008 S/D BDBA0010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA BDDA0011, BDDA0013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123100\", \"uraian\": \"CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA BDDA0011, BDDA0013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM STARCH GLYCOLATE BP (BAHAN BAKU OBAT) COA ADAA0016,BDAA0017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"SODIUM STARCH GLYCOLATE BP (BAHAN BAKU OBAT) COA ADAA0016,BDAA0017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SORBITOL SPECIAL (R) MDF 85 (BHN BAKU SUPPLEMEN) COA 122303217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054400\", \"uraian\": \"SORBITOL SPECIAL (R) MDF 85 (BHN BAKU SUPPLEMEN) COA 122303217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NUTRALIPIDS TYPE HY (BHN BAKU KOSMETIK) COA 436300140\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15179090\", \"uraian\": \"NUTRALIPIDS TYPE HY (BHN BAKU KOSMETIK) COA 436300140\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 240154\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 240154\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 232422\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 232422\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 232371\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"MANDARINCLEAR (BHN BAKU KOSMETIK) COA 232371\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 231090\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 231090\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIOCELLACT CHAMOMILLA BD (BHN BAKU KOSMETIK) COA 231949\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BIOCELLACT CHAMOMILLA BD (BHN BAKU KOSMETIK) COA 231949\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 231643\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"IZAYOI (BHN BAKU KOSMETIK) COA 231643\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-III (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-III (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 231278\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 231278\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 231761\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ABSORAGE (BHN BAKU KOSMETIK) COA 231761\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITICOLINE SODIUM (BHN BAKU OBAT) COA 240201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"CITICOLINE SODIUM (BHN BAKU OBAT) COA 240201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GLUCOSAMINE SULFATE 2KCL (BHN BAKU OBAT) COA JSTK240218\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329900\", \"uraian\": \"GLUCOSAMINE SULFATE 2KCL (BHN BAKU OBAT) COA JSTK240218\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOTAXIME SODIUM (BHN BAKU OBAT) COA 3042401018\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOTAXIME SODIUM (BHN BAKU OBAT) COA 3042401018\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for N-ACETYL-L-CYSTEINE (BHN BAKU OBAT) COA C103-202311632\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"N-ACETYL-L-CYSTEINE (BHN BAKU OBAT) COA C103-202311632\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202402-029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35040000\", \"uraian\": \"SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202402-029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) SEA EXTRACTS N (BHN BAKU KOSMETIK) COA 10300041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"EXTRAPONE (R) SEA EXTRACTS N (BHN BAKU KOSMETIK) COA 10300041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACTIPONE (R) WHITE TEA GW (BHN BAKU KOSMETIK) COA 10300055\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"ACTIPONE (R) WHITE TEA GW (BHN BAKU KOSMETIK) COA 10300055\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEO EXTRAPONE (R) LEMON (BHN BAKU KOSMETIK) COA 10300025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"NEO EXTRAPONE (R) LEMON (BHN BAKU KOSMETIK) COA 10300025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PIGMENT BLEND (R) PB-21158 GREEN (BHN BAKU PEWARNA TABLET) COA GA750375\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151900\", \"uraian\": \"PIGMENT BLEND (R) PB-21158 GREEN (BHN BAKU PEWARNA TABLET) COA GA750375\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 240102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"OILESS'CITY TM (BHN BAKU KOSMETIK) COA 240102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 240102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"OILESS'CITY TM (BHN BAKU KOSMETIK) COA 240102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 3194984\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 3194984\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIAUTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2335855\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIAUTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2335855\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DISC TAXO V FACTOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3212707\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DISC TAXO V FACTOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3212707\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DISC TAXO X FACTOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3212733\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DISC TAXO X FACTOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3212733\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DISC TAXO VX FACTOR 50 DISCS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3251294\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DISC TAXO VX FACTOR 50 DISCS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3251294\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3335232,33\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3335232,33\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3086871\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3086871\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3208666\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3208666\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 3054163\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 3054163\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 165320\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15159011\", \"uraian\": \"AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 165320\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) CAS 989-51-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) CAS 989-51-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) CAS 989-51-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) CAS 989-51-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) CAS 989-51-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) CAS 989-51-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALUMINUM HYDROXIDE GEL USP.. (BHN BAKU OBAT) COA 102402001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"ALUMINUM HYDROXIDE GEL USP.. (BHN BAKU OBAT) COA 102402001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM HYDROXIDE GEL... (BHN BAKU OBAT) COA 102323013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"MAGNESIUM HYDROXIDE GEL... (BHN BAKU OBAT) COA 102323013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM HYDROXIDE GEL... (BHN BAKU OBAT) COA 102323013, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"MAGNESIUM HYDROXIDE GEL... (BHN BAKU OBAT) COA 102323013, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2229527\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2229527\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HILTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3150802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MUELLER HILTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3150802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MR-VP BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3045918\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MR-VP BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3045918\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3277641\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3277641\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3277644\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3277644\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3261353\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3261353\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2201317\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2201317\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3114643\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3114643\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA TUK PENGEMBANGAN MIKRO ORGANISME), BATCH 3114494\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA TUK PENGEMBANGAN MIKRO ORGANISME), BATCH 3114494\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2305063\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2305063\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2047633\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2047633\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3355723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3355723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2229544\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2229544\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2277784\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2277784\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2269093\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2269093\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 3293059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 3293059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B03G008M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B03G008M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3317803\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3317803\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEART INFUSION BROTH 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3168382\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEART INFUSION BROTH 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3168382\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2201317\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2201317\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2298727\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2298727\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2200729\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2200729\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2158081\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2158081\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3297901,3333720\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3297901,3333720\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3303852\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3303852\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3355723\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3355723\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 4005483\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 4005483\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3300518\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3300518\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3277641\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3277641\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HILTON II AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3304780\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MUELLER HILTON II AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3304780\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 3114504\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 3114504\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2165877\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2165877\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE UNIVERSAL PREENRICHMENT BROTH 500(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH. 2095248\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE UNIVERSAL PREENRICHMENT BROTH 500(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH. 2095248\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3248047\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3248047\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3272841\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3272841\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2217600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2217600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MIO MEDIUM 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3114643\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MIO MEDIUM 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3114643\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1264672\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1264672\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2269098\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2269098\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI23040013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI23040013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI23040013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI23040013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20230503,XH20230802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20230503,XH20230802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230602\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230602\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12308016,OP12308017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12308016,OP12308017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02308757\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02308757\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1% WS (BHN BAKU SUPPLEMEN) COA UT23040011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1% WS (BHN BAKU SUPPLEMEN) COA UT23040011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT23100181\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT23100181\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02303003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02303003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA QZ11230604\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA QZ11230604\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30701084\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30701084\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040129\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040129\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02306011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE02306011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF23041007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF23041007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 1,3-BUTYLENE GLYCOL, COSMETIC QUALITY(BHN BAKU KOSMETIK) COA P0623D01BC\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"1,3-BUTYLENE GLYCOL, COSMETIC QUALITY(BHN BAKU KOSMETIK) COA P0623D01BC\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ISDN 25PCT-LACTOSE 450 75PCT DILUTED (BHN BAKU OBAT) COA 2401756\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329900\", \"uraian\": \"ISDN 25PCT-LACTOSE 450 75PCT DILUTED (BHN BAKU OBAT) COA 2401756\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA C900200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA C900200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA C900300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA C900300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C... (BHN BAKU PEWARNA TABLET) COA WP868322:BC3383\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5287 FD&C... (BHN BAKU PEWARNA TABLET) COA WP868322:BC3383\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5177 FD&C... (BHN BAKU PEWARNA TABLET) COA WP865813:BC2275\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5177 FD&C... (BHN BAKU PEWARNA TABLET) COA WP865813:BC2275\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT (R) 6010 D&C... (BHN BAKU PEWARNA TABLET) COAWP870803:BC5804\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT (R) 6010 D&C... (BHN BAKU PEWARNA TABLET) COAWP870803:BC5804\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT (R) 6010 D&C... (BHN BAKU PEWARNA TABLET) COAWP870803:BC5804\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT (R) 6010 D&C... (BHN BAKU PEWARNA TABLET) COAWP870803:BC5804\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5627 FD&C.. (BHN BAKU PEWARNA TABLET) COA WP869522:BC4229\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5627 FD&C.. (BHN BAKU PEWARNA TABLET) COA WP869522:BC4229\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5177 FD&C... (BHN BAKU PEWARNA TABLET) COA WP865824:BC3945\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5177 FD&C... (BHN BAKU PEWARNA TABLET) COA WP865824:BC3945\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SCHISANDRA EXTRACT (BHN BAKU OBAT) COA SC03-24030301\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SCHISANDRA EXTRACT (BHN BAKU OBAT) COA SC03-24030301\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RUEGENER DREIKRONEN HEILKREIDE 25K (BHN BAKU KOSMETIK) COA 9082325400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25090000\", \"uraian\": \"RUEGENER DREIKRONEN HEILKREIDE 25K (BHN BAKU KOSMETIK) COA 9082325400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA LC48-23-804\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 200 (BHN BAKU OBAT) COA LC48-23-804\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DURALAC H (BHN BAKU OBAT) COA LC04423-805\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"DURALAC H (BHN BAKU OBAT) COA LC04423-805\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COPPER SULFATE, POWDER, PH.EUR.11.ED. (BHN BAKU SUPLEMEN) COA 3138445\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332500\", \"uraian\": \"COPPER SULFATE, POWDER, PH.EUR.11.ED. (BHN BAKU SUPLEMEN) COA 3138445\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-231221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-231221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CROSPOVIDONE XL (BHN BAKU SUPPLEMEN) COA PP231213XL\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"CROSPOVIDONE XL (BHN BAKU SUPPLEMEN) COA PP231213XL\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POVIDONE K-30 (BHN BAKU SUPPLEMEN) COA PK30-240124F32\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39059990\", \"uraian\": \"POVIDONE K-30 (BHN BAKU SUPPLEMEN) COA PK30-240124F32\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02312530,TL02312532\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02312530,TL02312532\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT23080012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT23080012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE, TYPE 100 (BHN BAKU SUPPLEMEN) COA UT23110068\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE, TYPE 100 (BHN BAKU SUPPLEMEN) COA UT23110068\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT24010069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT24010069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2303041 S/D UEB2304044\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2303041 S/D UEB2304044\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT23060009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT23060009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30% FS (BHN BAKU MAKANAN) COA UE02402005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 30% FS (BHN BAKU MAKANAN) COA UE02402005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALUMINUM HYDROXIDE GEL USP BARCROFT TM LV13 (BHN BAKU OBAT) COA 102413001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"ALUMINUM HYDROXIDE GEL USP BARCROFT TM LV13 (BHN BAKU OBAT) COA 102413001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALUMINUM HYDROXIDE GEL USP BARCROFT TM LV13 (BHN BAKU OBAT) COA 102413001, SAMPLE NO COMMERCIAL\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"ALUMINUM HYDROXIDE GEL USP BARCROFT TM LV13 (BHN BAKU OBAT) COA 102413001, SAMPLE NO COMMERCIAL\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EFFER-SODA (R) 12 (BHN BAKU SUPPLEMEN) COA 122303469,122403677\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"EFFER-SODA (R) 12 (BHN BAKU SUPPLEMEN) COA 122303469,122403677\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977.(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977.(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING..(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING..(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-22-17515...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-22-17515...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING..(BHN BAKU PEWARNA TABLET)CAS 121786-16-1-\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING..(BHN BAKU PEWARNA TABLET)CAS 121786-16-1-\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-30-18037..(BHN BAKU PEWARNA TABLET)CAS 64044-51-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-30-18037..(BHN BAKU PEWARNA TABLET)CAS 64044-51-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011..(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011..(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 02F54189..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 02F54189..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F19250..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F19250..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS EK-118(IN) (BHN BAKU KOSMETIK) CAS 59219-71-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS EK-118(IN) (BHN BAKU KOSMETIK) CAS 59219-71-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK-F (BHN BAKU KOSMETIK) CAS 69430-36-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK-F (BHN BAKU KOSMETIK) CAS 69430-36-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMITOSE R (BHN BAKU KOSMETIK) COA BBI\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"AMITOSE R (BHN BAKU KOSMETIK) COA BBI\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VISTANOL GDHR (BHN BAKU KOSMETIK) COA BBI\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"VISTANOL GDHR (BHN BAKU KOSMETIK) COA BBI\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-TARTARIC ACID (BHN BAKU MAKANAN) COA RS01714\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181200\", \"uraian\": \"DL-TARTARIC ACID (BHN BAKU MAKANAN) COA RS01714\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-MALIC ACID (BHN BAKU MAKANAN) COA FS18338FG\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181900\", \"uraian\": \"DL-MALIC ACID (BHN BAKU MAKANAN) COA FS18338FG\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JAGUAR C162 SGI (BHN BAKU KOSMETIK) CAS 71329-50-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"JAGUAR C162 SGI (BHN BAKU KOSMETIK) CAS 71329-50-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10% EM YELLOW (BHN BAKU MAKANAN) COA UT24020002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 10% EM YELLOW (BHN BAKU MAKANAN) COA UT24020002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT23050015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT23050015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEO EXTRAPONE (R) LEMON (BHN BAKU KOSMETIK) COA 10300024,10300025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"NEO EXTRAPONE (R) LEMON (BHN BAKU KOSMETIK) COA 10300024,10300025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101850124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA L101850124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103154523\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103154523\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 70 (BHN BAKU OBAT) COA L101840324\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 70 (BHN BAKU OBAT) COA L101840324\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX TRACE ELEMENTS 751 (BHN BAKU SUPPLEMEN) COA MY62401165\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX TRACE ELEMENTS 751 (BHN BAKU SUPPLEMEN) COA MY62401165\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX TRACE ELEMENTS IF R 125 (BHN BAKU SUPPLEMEN) COA MY62401157\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX TRACE ELEMENTS IF R 125 (BHN BAKU SUPPLEMEN) COA MY62401157\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX VITAMINS FFI 567 (BHN BAKU SUPPLEMEN) COA MY62401156\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX VITAMINS FFI 567 (BHN BAKU SUPPLEMEN) COA MY62401156\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX VITAMINS GUM 414 (BHN BAKU SUPPLEMEN) COA MY62401202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX VITAMINS GUM 414 (BHN BAKU SUPPLEMEN) COA MY62401202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT23050014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT23050014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12308017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12308017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 103093 - A (BHN BAKU MAKANAN) COA XW92402010\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 103093 - A (BHN BAKU MAKANAN) COA XW92402010\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3114540\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3114540\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3158127\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3158127\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3228039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3228039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2314938\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2314938\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2528835\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2528835\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASAMINO ACIDS TECHNICALS 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2137791\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASAMINO ACIDS TECHNICALS 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2137791\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASAMINO ACIDS TECHNICALS 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2137791\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASAMINO ACIDS TECHNICALS 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2137791\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASAMINO ACIDS TECHNICALS 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2137791\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASAMINO ACIDS TECHNICALS 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2137791\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2775753\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2775753\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2775753\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2775753\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERDOSTEINE IH (BAHAN BAKU OBAT) COA EDSF230072\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"ERDOSTEINE IH (BAHAN BAKU OBAT) COA EDSF230072\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEARL ESSENCES 35178MJ (BHN BAKU KOSMETIK) COA D3430787\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32061910\", \"uraian\": \"PEARL ESSENCES 35178MJ (BHN BAKU KOSMETIK) COA D3430787\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2023111002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2023111002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/14020078\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/14020078\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA ROA364234,ROA364236\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA ROA364234,ROA364236\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP12308017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU KOSMETIK) COA OP12308017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000217252,0000217253\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000217252,0000217253\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30701084\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30701084\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0046906\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0046906\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23060229\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23060229\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS6441223\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS6441223\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0423040118,0424040001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL HMS (BHN BAKU KOSMETIK) COA 0423040118,0424040001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02306011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE02306011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001711881,0001717748\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SLX (BHN BAKU KOSMETIK) COA 0001711881,0001717748\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02302802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02302802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23060182\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23060182\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX MILK POWDER FOR ADULTS (BHN BAKU MAKANAN) COA XW92402118\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX MILK POWDER FOR ADULTS (BHN BAKU MAKANAN) COA XW92402118\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02306011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU KOSMETIK) COA UE02306011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02307101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02307101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23060182\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23060182\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL (BHN BAKU KOSMETIK) COA UT23100073\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL (BHN BAKU KOSMETIK) COA UT23100073\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02309788\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02309788\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1% WS (BHN BAKU SUPPLEMEN) COA UT23040011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1% WS (BHN BAKU SUPPLEMEN) COA UT23040011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000217253,0000217254\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000217253,0000217254\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPPLEMEN) COA TL02306379\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPPLEMEN) COA TL02306379\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211046\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211046\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02307106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02307106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT23100181\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT23100181\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02303003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02303003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02306011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02306011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COLAGENO HIDROLISADO TENDOFORTE(R) B (BHN BAKU MAKANAN), COA H4508111\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35040000\", \"uraian\": \"COLAGENO HIDROLISADO TENDOFORTE(R) B (BHN BAKU MAKANAN), COA H4508111\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COLLAGEN HYDROLYSATE VERISOL (R) B (SA) (BHN BAKU MAKANAN), COA H4508569\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35040000\", \"uraian\": \"COLLAGEN HYDROLYSATE VERISOL (R) B (SA) (BHN BAKU MAKANAN), COA H4508569\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COLLAGEN HYDROLYSATE FORTIGEL(R) B (SA) (BHN BAKU MAKANAN), COA H4508235\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35040000\", \"uraian\": \"COLLAGEN HYDROLYSATE FORTIGEL(R) B (SA) (BHN BAKU MAKANAN), COA H4508235\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 233237\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"CHRONOLINE TM (BHN BAKU KOSMETIK) COA 233237\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GREYVERSE TM (BHN BAKU KOSMETIK) COA 833012061P\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"GREYVERSE TM (BHN BAKU KOSMETIK) COA 833012061P\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRO-LIPO TM NEO (BHN BAKU KOSMETIK) CAS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PRO-LIPO TM NEO (BHN BAKU KOSMETIK) CAS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROGELINE TM (BHN BAKU KOSMETIK) COA 820052319R\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"PROGELINE TM (BHN BAKU KOSMETIK) COA 820052319R\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL ALPHA TOCOPHEROL (BHN BAKU KOSMETIK) COA 01231104ES\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL ALPHA TOCOPHEROL (BHN BAKU KOSMETIK) COA 01231104ES\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHARMACEUTICAL CASTOR OIL E.P (BHN BAKU KOSMETIK) COA 0000049094,0000049093\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15152919\", \"uraian\": \"PHARMACEUTICAL CASTOR OIL E.P (BHN BAKU KOSMETIK) COA 0000049094,0000049093\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0092956\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0092956\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RAJOL WP80/LOREAL LIGHT LIQUID PARAFFIN-BP/...(BHN BAKU KOSMETIK) COA 1000240002,1000240003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101990\", \"uraian\": \"RAJOL WP80/LOREAL LIGHT LIQUID PARAFFIN-BP/...(BHN BAKU KOSMETIK) COA 1000240002,1000240003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 23LNC0719SQ434\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101990\", \"uraian\": \"NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 23LNC0719SQ434\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101850324\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA L101850324\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA ROA363232,ROA362236,ROA004246\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA ROA363232,ROA362236,ROA004246\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX TRACE ELEMENTS 751 (BHN BAKU SUPPLEMEN) COA MY62401165\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX TRACE ELEMENTS 751 (BHN BAKU SUPPLEMEN) COA MY62401165\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 04610324,0462034,04630324,0460324,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29359000\", \"uraian\": \"SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 04610324,0462034,04630324,0460324,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FIBER DRUMS (EMPTY DRUMS) NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"48192000\", \"uraian\": \"FIBER DRUMS (EMPTY DRUMS) NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2311952455\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2311952455\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM MONOHYDRATE (BHN BAKU OBAT) COA 2403338,2403340,2403342,2403344,2403345\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331900\", \"uraian\": \"METAMIZOLE SODIUM MONOHYDRATE (BHN BAKU OBAT) COA 2403338,2403340,2403342,2403344,2403345\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM FEREDETATE, POWDER, BP2024 (BHN BAKU OBAT) COA 3141248\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"SODIUM FEREDETATE, POWDER, BP2024 (BHN BAKU OBAT) COA 3141248\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LISINOPRIL DIHYDRATE USP (BAHAN BAKU OBAT ) COA C5170-23-358\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"LISINOPRIL DIHYDRATE USP (BAHAN BAKU OBAT ) COA C5170-23-358\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA EXTRACT 95 PCT (BHN BAKU KOSMETIK) COA GKP 23174 EOU\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"CENTELLA ASIATICA EXTRACT 95 PCT (BHN BAKU KOSMETIK) COA GKP 23174 EOU\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA 0000084160\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA 0000084160\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000084161\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000084161\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000084162\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000084162\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA 0000084163, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA 0000084163, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000084164, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000084164, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000084165, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000084165, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID MONOHYDRATE GRANULAR (BHN BAKU SUPLEMEN) COA UJ307\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID MONOHYDRATE GRANULAR (BHN BAKU SUPLEMEN) COA UJ307\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID MONOHYDRATE GRANULAR (BHN BAKU SUPLEMEN) COA UJ307\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID MONOHYDRATE GRANULAR (BHN BAKU SUPLEMEN) COA UJ307\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA LC48-23-801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 200 (BHN BAKU OBAT) COA LC48-23-801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THEOPHYLLINE ANHYDROUS (BHN BAKU OBAT) COA 24039,24045 S/D 24048,24051 S/D 24061\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29395900\", \"uraian\": \"THEOPHYLLINE ANHYDROUS (BHN BAKU OBAT) COA 24039,24045 S/D 24048,24051 S/D 24061\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METAMIZOLE SODIUM REGULAR GRADE (BHN BAKU OBAT) COA 2403334,2403335,2403338\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331900\", \"uraian\": \"METAMIZOLE SODIUM REGULAR GRADE (BHN BAKU OBAT) COA 2403334,2403335,2403338\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NABUMETON USP (BHN BAKU OBAT) COA H-0020124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29145000\", \"uraian\": \"NABUMETON USP (BHN BAKU OBAT) COA H-0020124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS GLUCONATE FINE GRAN.. (BHN BAKU OBAT) COA 3127778\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"FERROUS GLUCONATE FINE GRAN.. (BHN BAKU OBAT) COA 3127778\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BROMHEXINE HYDROCHLORIDE EP (BHN BAKU OBAT) COA ORX/BRH/2402022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29215900\", \"uraian\": \"BROMHEXINE HYDROCHLORIDE EP (BHN BAKU OBAT) COA ORX/BRH/2402022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIMETHOPRIM MICRONISED BP (BHN BAKU OBAT) COA TMPM24020015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"TRIMETHOPRIM MICRONISED BP (BHN BAKU OBAT) COA TMPM24020015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BEE PANDA HONEY (BHN BAKU KOSMETIK) CAS 8028-66-8\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"BEE PANDA HONEY (BHN BAKU KOSMETIK) CAS 8028-66-8\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPECWHITE VCE (BHN BAKU KOSMETIK) COA 20240205\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SPECWHITE VCE (BHN BAKU KOSMETIK) COA 20240205\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MOPD (BHN BAKU KOSMETIK) COA 231213001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"MOPD (BHN BAKU KOSMETIK) COA 231213001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP2010/USP42 (BHN BAKU OBAT) COA NED240301,NED240302,NED240303\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP2010/USP42 (BHN BAKU OBAT) COA NED240301,NED240302,NED240303\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-7027... (BHN BAKU PEWARNA TABLET)CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-7027... (BHN BAKU PEWARNA TABLET)CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING SYSTEM..(BHN BAKU PEWARNA TABLET)CAS 121786-16-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING SYSTEM..(BHN BAKU PEWARNA TABLET)CAS 121786-16-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) KB LOW VISCOSITY FILM COATING..(BHN BAKU PEWARNA TABLET)CAS 151-21-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) KB LOW VISCOSITY FILM COATING..(BHN BAKU PEWARNA TABLET)CAS 151-21-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-19025-A..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-19025-A..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G640054...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G640054...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 02F52182...(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 02F52182...(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B82443..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03B82443..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA749583\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA749583\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G62402...(BHN BAKU PEWARNA TABLET)CAS .9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G62402...(BHN BAKU PEWARNA TABLET)CAS .9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) FX TM SPECIAL EFFECTS FILM COATING...(BHN BAKU PEWARNA TABLET)CAS 9004-32-4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) FX TM SPECIAL EFFECTS FILM COATING...(BHN BAKU PEWARNA TABLET)CAS 9004-32-4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 100 CAN 10 KG (BHN BAKU KOSMETIK) CAS 55965-84-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 100 CAN 10 KG (BHN BAKU KOSMETIK) CAS 55965-84-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 720 CAN 10 KG (BHN BAKU KOSMETIK) CAS 65-85-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 720 CAN 10 KG (BHN BAKU KOSMETIK) CAS 65-85-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 940 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 940 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIDIN DO CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIDIN DO CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REFINED COCONUT OIL - L (BHN BAKU KOSMETIK) COA 0002779650\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15131990\", \"uraian\": \"REFINED COCONUT OIL - L (BHN BAKU KOSMETIK) COA 0002779650\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HEXYLENE GLYCOL (BHN BAKU KOSMETIK) COA 2004260321400386\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053900\", \"uraian\": \"HEXYLENE GLYCOL (BHN BAKU KOSMETIK) COA 2004260321400386\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM SELENITE IN CARRIER,... (BHN BAKU SUPPLEMEN) COA 3140779\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28429010\", \"uraian\": \"SODIUM SELENITE IN CARRIER,... (BHN BAKU SUPPLEMEN) COA 3140779\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COPPER SULFATE, POWDER, PH.EUR.11.ED. (BHN BAKU SUPLEMEN) COA\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332500\", \"uraian\": \"COPPER SULFATE, POWDER, PH.EUR.11.ED. (BHN BAKU SUPLEMEN) COA\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM FEREDETATE, POWDER, BP2023 (BHN BAKU OBAT) COA 3141248\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"SODIUM FEREDETATE, POWDER, BP2023 (BHN BAKU OBAT) COA 3141248\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM SULFATE DIHYDRATE, POWDER... (BHN BAKU OBAT) COA 3139778\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332100\", \"uraian\": \"MAGNESIUM SULFATE DIHYDRATE, POWDER... (BHN BAKU OBAT) COA 3139778\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POTASSIUM L-ASPARTATE 0,5 HYDRATE (BHN BAKU OBAT) COA 3138689\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"POTASSIUM L-ASPARTATE 0,5 HYDRATE (BHN BAKU OBAT) COA 3138689\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for POTASSIUM SULFATE FINE POWDER,... (BHN BAKU SUPPLEMEN) COA 3134552\""}, {"role": "assistant", "content": "{\"hs_code\" : \"31043000\", \"uraian\": \"POTASSIUM SULFATE FINE POWDER,... (BHN BAKU SUPPLEMEN) COA 3134552\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU OBAT) COA 3111674\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU OBAT) COA 3111674\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIDIN DO CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIDIN DO CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 100 CAN 10 KG (BHN BAKU KOSMETIK) CAS 55965-84-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 100 CAN 10 KG (BHN BAKU KOSMETIK) CAS 55965-84-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 720 CAN 10 KG (BHN BAKU KOSMETIK) CAS 65-85-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 720 CAN 10 KG (BHN BAKU KOSMETIK) CAS 65-85-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 IBC 900 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 IBC 900 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 IBC 900 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 IBC 900 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 IBC 900 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 IBC 900 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SENSIVA SC 50 IBC 900 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SENSIVA SC 50 IBC 900 KG (BHN BAKU KOSMETIK) CAS 70445-33-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-7312K (16KG) (BHN BAKU KOSMETIK) CAS 562705-01-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100020\", \"uraian\": \"KF-7312K (16KG) (BHN BAKU KOSMETIK) CAS 562705-01-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) COA 403340\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100020\", \"uraian\": \"KF-56A (18KG) (BHN BAKU KOSMETIK) COA 403340\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-54HV (18KG) (BHN BAKU KOSMETIK) COA 404099\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100020\", \"uraian\": \"KF-54HV (18KG) (BHN BAKU KOSMETIK) COA 404099\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-210 (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSG-210 (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP-300 (1KG) (BHN BAKU KOSMETIK) CAS 9002-92-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSP-300 (1KG) (BHN BAKU KOSMETIK) CAS 9002-92-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100020\", \"uraian\": \"KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100020\", \"uraian\": \"KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) COA 404351\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100020\", \"uraian\": \"KF-56A (18KG) (BHN BAKU KOSMETIK) COA 404351\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100020\", \"uraian\": \"KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100020\", \"uraian\": \"KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) COA 403348\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100020\", \"uraian\": \"KF-56A (18KG) (BHN BAKU KOSMETIK) COA 403348\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSG-15 (16KG) (BHN BAKU KOSMETIK) COA 401653\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100020\", \"uraian\": \"KSG-15 (16KG) (BHN BAKU KOSMETIK) COA 401653\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340535, B340537, B340538\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX COMPACTED (BHN BAKU OBAT) COA B340535, B340537, B340538\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA SH677386\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA SH677386\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA SH677371\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA SH677371\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA SH677886\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA SH677886\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA SH677390\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA SH677390\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA SH677389\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA SH677389\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA SH677391\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA SH677391\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA SH677393\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA SH677393\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA SH677392\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39061090\", \"uraian\": \"ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA SH677392\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CITRIC ACID ANHYDROUS 30-100MESH BP/USP/FCC/E330 (BHN BAKU SUPLEMEN) COA 6AX2403034\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181400\", \"uraian\": \"CITRIC ACID ANHYDROUS 30-100MESH BP/USP/FCC/E330 (BHN BAKU SUPLEMEN) COA 6AX2403034\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CORTISONE ACETATE MICRONISED PH.EUR JP (BHN BAKU SUPPLEMEN) COA 2401070082\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"CORTISONE ACETATE MICRONISED PH.EUR JP (BHN BAKU SUPPLEMEN) COA 2401070082\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS FUMARATE (BHN BAKU OBAT) COA 2024/52\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"FERROUS FUMARATE (BHN BAKU OBAT) COA 2024/52\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-072123,011524\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-072123,011524\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-011524\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-011524\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-BLACK PEARL POWDER (BHN BAKU KOSMETIK) CAS 73049-73-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND BIO-BLACK PEARL POWDER (BHN BAKU KOSMETIK) CAS 73049-73-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-FRGE PLUS (BHN BAKU KOSMETIK) CAS 56-81-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND BIO-FRGE PLUS (BHN BAKU KOSMETIK) CAS 56-81-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-020493\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-020493\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA NAH112\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA NAH112\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP2240321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP2240321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-112383\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29389000\", \"uraian\": \"HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-112383\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-072123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-072123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND COLINUS (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND COLINUS (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP2240321\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP2240321\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERRIC HYDROXIDE POLYMALTOSE COMPLEX.. (BHN BAKU OBAT) COA 3132372\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29400000\", \"uraian\": \"FERRIC HYDROXIDE POLYMALTOSE COMPLEX.. (BHN BAKU OBAT) COA 3132372\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELUCIRE 44/14 (BHN BAKU SUPPLEMEN) COA 196690\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELUCIRE 44/14 (BHN BAKU SUPPLEMEN) COA 196690\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRANSCUTOL P (BHN BAKU SUPPLEMEN) COA 199835\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TRANSCUTOL P (BHN BAKU SUPPLEMEN) COA 199835\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRECIFAC 95-3 (BHN BAKU SUPPLEMEN) COA 198752\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"PRECIFAC 95-3 (BHN BAKU SUPPLEMEN) COA 198752\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EMULCIRE 61 WL 2659 (BHN BAKU SUPPLEMEN) COA 198932\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"EMULCIRE 61 WL 2659 (BHN BAKU SUPPLEMEN) COA 198932\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRECIROL ATO 5 (BHN BAKU SUPPLEMEN) COA 198903\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"PRECIROL ATO 5 (BHN BAKU SUPPLEMEN) COA 198903\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30512170\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30512170\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-28849...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-28849...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) CAS 233683-84-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) CAS 233683-84-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20240101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20240101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB23070735 S/D WB23070737\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB23070735 S/D WB23070737\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300067\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300067\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) GINSENG (BHN BAKU KOSMETIK) COA 10300057\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021940\", \"uraian\": \"EXTRAPONE (R) GINSENG (BHN BAKU KOSMETIK) COA 10300057\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN E (BHN BAKU KOSMETIK) COA 201202312201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"VITAMIN E (BHN BAKU KOSMETIK) COA 201202312201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP08124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP08124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AVOCADO OIL, REFINED NFEU (BHN BAKU KOSMETIK) COA 1000023686\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15159011\", \"uraian\": \"AVOCADO OIL, REFINED NFEU (BHN BAKU KOSMETIK) COA 1000023686\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRAPESEED OIL, REFINED (BHN BAKU KOSMETIK) COA 8010812001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15152919\", \"uraian\": \"GRAPESEED OIL, REFINED (BHN BAKU KOSMETIK) COA 8010812001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CARBOWAX SENTRY PEG 1450 (BHN BAKU KOSMETIK) COA D684NCSPB2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39072990\", \"uraian\": \"CARBOWAX SENTRY PEG 1450 (BHN BAKU KOSMETIK) COA D684NCSPB2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CARBOWAX SENTRY PEG 1450 (BHN BAKU KOSMETIK) COA D684NCSPB2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39072990\", \"uraian\": \"CARBOWAX SENTRY PEG 1450 (BHN BAKU KOSMETIK) COA D684NCSPB2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE TM PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ABYSSINE TM PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834012285P\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834012285P\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECOGEL TM (BHN BAKU KOSMETIK) CAS 85711-58-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ECOGEL TM (BHN BAKU KOSMETIK) CAS 85711-58-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834012285P\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834012285P\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) CAS 37350-42-8\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) CAS 37350-42-8\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INST'TIGHT TM (BHN BAKU KOSMETIK) CAS 56-81-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"INST'TIGHT TM (BHN BAKU KOSMETIK) CAS 56-81-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMISOL TM 4135 (BHN BAKU KOSMETIK) CAS 8002-43-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AMISOL TM 4135 (BHN BAKU KOSMETIK) CAS 8002-43-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA LC050-23-801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 200 (BHN BAKU OBAT) COA LC050-23-801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMITOSE R (BHN BAKU KOSMETIK) CAS 787607-61-8\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AMITOSE R (BHN BAKU KOSMETIK) CAS 787607-61-8\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) CAS 638164-47-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROTESIL LH (BHN BAKU KOSMETIK) CAS 638164-47-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE 230P SCRUB OR (BHN BAKU KOSMETIK) COA 24-10-23\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE 230P SCRUB OR (BHN BAKU KOSMETIK) COA 24-10-23\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE 230P SCRUB OR (BHN BAKU KOSMETIK) COA 28-04-23\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE 230P SCRUB OR (BHN BAKU KOSMETIK) COA 28-04-23\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX 103093 - A (BHN BAKU MAKANAN) COA XW92403255\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX 103093 - A (BHN BAKU MAKANAN) COA XW92403255\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPPLEMEN) COA DRY VITAMIN E ACETATE 950 NS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPPLEMEN) COA DRY VITAMIN E ACETATE 950 NS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPPLEMEN) COA WB23060369\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPPLEMEN) COA WB23060369\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTISHARP NAT. ZEA. 14PCT SAFF (BHN BAKU SUPPLEMEN) COA 2402107029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"OPTISHARP NAT. ZEA. 14PCT SAFF (BHN BAKU SUPPLEMEN) COA 2402107029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 985-L-MENTHOL CRYSTALS INDIAN NATURAL (BHN BAKU KOSMETIK) COA H3-064-L-23-24\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061100\", \"uraian\": \"985-L-MENTHOL CRYSTALS INDIAN NATURAL (BHN BAKU KOSMETIK) COA H3-064-L-23-24\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZORYALYS (BHN BAKU KOSMETIK) CAS 73398-61-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ZORYALYS (BHN BAKU KOSMETIK) CAS 73398-61-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEPPERMINT ORGANIC FROM FRANCE DISTILLATE (SB) (BHN BAKU KOSMETIK) CAS 84082-70-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PEPPERMINT ORGANIC FROM FRANCE DISTILLATE (SB) (BHN BAKU KOSMETIK) CAS 84082-70-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GREENSIL (BHN BAKU KOSMETIK) CAS 91771-32-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GREENSIL (BHN BAKU KOSMETIK) CAS 91771-32-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02312532\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02312532\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30% FS (BHN BAKU SUPPLEMEN) COA UE02402008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 30% FS (BHN BAKU SUPPLEMEN) COA UE02402008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT23080012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT23080012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A WATER-MISCIBLE, TYPE 100 (BHN BAKU SUPPLEMEN) COA UT23110068\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A WATER-MISCIBLE, TYPE 100 (BHN BAKU SUPPLEMEN) COA UT23110068\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT24010069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT24010069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 30% FS (BHN BAKU SUPPLEMEN) COA UE02402007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 30% FS (BHN BAKU SUPPLEMEN) COA UE02402007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT24011292,UT24011295,UT24021296\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT24011292,UT24011295,UT24021296\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT24020052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT24020052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT24020052\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT24020052\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT24020053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT24020053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT24030231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT24030231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP35823\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP35823\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILVER CITRATE SOLUTION 2500PPM (BHN BAKU KOSMETIK) COA CPS23-0844\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28432900\", \"uraian\": \"SILVER CITRATE SOLUTION 2500PPM (BHN BAKU KOSMETIK) COA CPS23-0844\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 240635\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 240635\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 240154\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 240154\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 240029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"IZAYOI (BHN BAKU KOSMETIK) COA 240029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 240312\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 240312\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNEBUSTERS (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BIOCELLACT CHAMOMILLA BD (BHN BAKU KOSMETIK) COA 231949\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"BIOCELLACT CHAMOMILLA BD (BHN BAKU KOSMETIK) COA 231949\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 232371\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"MANDARINCLEAR (BHN BAKU KOSMETIK) COA 232371\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DOKUDAMI LIQUID B (BHN BAKU KOSMETIK) COA 232229\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"DOKUDAMI LIQUID B (BHN BAKU KOSMETIK) COA 232229\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 240827\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29329900\", \"uraian\": \"K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 240827\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNEBUSTERS (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 240635\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 240635\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 240029\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"IZAYOI (BHN BAKU KOSMETIK) COA 240029\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 231090, 240427\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 231090, 240427\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MANNITOL USP/EP MANNOGEM (R) EZ SPRAY DRIED (BHN BAKU OBAT) COA 122303512\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054300\", \"uraian\": \"MANNITOL USP/EP MANNOGEM (R) EZ SPRAY DRIED (BHN BAKU OBAT) COA 122303512\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM CARBONATE VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 122302553\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28365010\", \"uraian\": \"CALCIUM CARBONATE VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 122302553\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHARMABURST (R) 500 (BHN BAKU OBAT) COA 122403631\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069099\", \"uraian\": \"PHARMABURST (R) 500 (BHN BAKU OBAT) COA 122403631\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3257251\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3257251\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3338234,4016942\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3338234,4016942\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3272500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3272500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3228110,...\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3228110,...\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3086871\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3086871\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH...(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 4058467\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MODIFIED LETHEEN BROTH...(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 4058467\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 40209\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 40209\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S577/23\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S577/23\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPASPRAY (R) OPAQUE COLOR... (BHN BAKU PEWARNA TABLET) COA DT758575\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPASPRAY (R) OPAQUE COLOR... (BHN BAKU PEWARNA TABLET) COA DT758575\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPAGLOS (R) TABLET CORE... (BHN BAKU PEWARNA TABLET) COA DT757071\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPAGLOS (R) TABLET CORE... (BHN BAKU PEWARNA TABLET) COA DT757071\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPALUX (R) OPAQUE COLOR ... (BHN BAKU PEWARNA TABLET) COA DT758576\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPALUX (R) OPAQUE COLOR ... (BHN BAKU PEWARNA TABLET) COA DT758576\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NUTRAFINISH (R) TIO2 FREE FILM COATING 168U220008...(BHN BAKU PEWARNA TABLET) CAS 9004-64-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"NUTRAFINISH (R) TIO2 FREE FILM COATING 168U220008...(BHN BAKU PEWARNA TABLET) CAS 9004-64-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3292368\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3292368\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3355141\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3355141\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2297791\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2297791\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3272841,3354352\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3272841,3354352\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2201317\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2201317\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3114643\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3114643\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3333720\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3333720\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3345733\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3345733\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3293058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3293058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3333597\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3333597\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3355141\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3355141\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3067726\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3067726\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE YEAST NITROGEN BASE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3249791\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE YEAST NITROGEN BASE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3249791\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3292368\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3292368\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2201317\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2201317\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3300630\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3300630\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3236811\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3236811\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3307226\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3307226\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3114494\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3114494\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3270388\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3270388\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3168361\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3168361\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2034966,207\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2034966,207\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3248053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3248053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RAPPAPORT VASSILLIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3272837\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RAPPAPORT VASSILLIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3272837\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3333727\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3333727\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2047633\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2047633\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3010894,3030220\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3010894,3030220\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3040458\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE SABOURAUD DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3040458\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3137222\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3137222\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3304802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3304802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1285556\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1285556\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2152796\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2152796\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3293058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3293058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH 4005483\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH 4005483\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MACCONKEY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1172869\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MACCONKEY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1172869\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3150802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3150802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 3221348\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 3221348\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2165877\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2165877\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3168361\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3168361\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMBROXOL HCL EP (BHN BAKU OBAT) COA VBNC240119\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"AMBROXOL HCL EP (BHN BAKU OBAT) COA VBNC240119\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREDNICARBATE (BHN BAKU OBAT) COA PNC 002/0823\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"PREDNICARBATE (BHN BAKU OBAT) COA PNC 002/0823\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANTOPRAZOLE SODIUM (STERILE) (BHN BAKU OBAT) COA SI/PPZ/00710324\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"PANTOPRAZOLE SODIUM (STERILE) (BHN BAKU OBAT) COA SI/PPZ/00710324\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIPOID S 67 F (BHN BAKU SUPPLEMEN) COA 576200-2240041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29232011\", \"uraian\": \"LIPOID S 67 F (BHN BAKU SUPPLEMEN) COA 576200-2240041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ACETATE ANHYDROUS POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3141073\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29152910\", \"uraian\": \"SODIUM ACETATE ANHYDROUS POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3141073\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLOPURINOL USP (BHN BAKU OBAT) COA ALP0011123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"ALLOPURINOL USP (BHN BAKU OBAT) COA ALP0011123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for N-ACETYL-L-CYSTEINE (BHN BAKU OBAT) COA C103-202404807\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"N-ACETYL-L-CYSTEINE (BHN BAKU OBAT) COA C103-202404807\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AQUACOAT ECD-30 ETHYLCELLULOSE AQUEOUS... (BHN BAKU PEWARNA TABLET) COA 2174520322\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"AQUACOAT ECD-30 ETHYLCELLULOSE AQUEOUS... (BHN BAKU PEWARNA TABLET) COA 2174520322\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA ROA364236,ROA023242\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA ROA364236,ROA023242\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 240304\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 240304\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 240202,240304\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 240202,240304\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 230516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061900\", \"uraian\": \"MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 230516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 230516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061900\", \"uraian\": \"MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 230516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 240206\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"OILESS'CITY TM (BHN BAKU KOSMETIK) COA 240206\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 240206\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"OILESS'CITY TM (BHN BAKU KOSMETIK) COA 240206\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 240202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 240202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COLLAGEN CASING PCS CALIBER 22 MM... (BHN BAKU MAKANAN) COA J0222418T01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39171090\", \"uraian\": \"COLLAGEN CASING PCS CALIBER 22 MM... (BHN BAKU MAKANAN) COA J0222418T01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COLLAGEN CASING PCS CALIBER 23 MM... (BHN BAKU MAKANAN) COA J23219T01\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39171090\", \"uraian\": \"COLLAGEN CASING PCS CALIBER 23 MM... (BHN BAKU MAKANAN) COA J23219T01\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COLLAGEN CASING PDF CALIBER 19 MM... (BHN BAKU MAKANAN) COA J0192418T07\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39171090\", \"uraian\": \"COLLAGEN CASING PDF CALIBER 19 MM... (BHN BAKU MAKANAN) COA J0192418T07\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COLLAGEN CASING PDF CALIBER 20MM... (BHN BAKU MAKANAN) COA J0202418T07\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39171090\", \"uraian\": \"COLLAGEN CASING PDF CALIBER 20MM... (BHN BAKU MAKANAN) COA J0202418T07\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COLLAGEN CASING PDF CALIBER 22 MM... (BHN BAKU MAKANAN) COA J0222419T12\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39171090\", \"uraian\": \"COLLAGEN CASING PDF CALIBER 22 MM... (BHN BAKU MAKANAN) COA J0222419T12\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COLLAGEN CASING PDF CALIBER 23 MM ... (BHN BAKU MAKANAN) COA J0232419T12\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39171090\", \"uraian\": \"COLLAGEN CASING PDF CALIBER 23 MM ... (BHN BAKU MAKANAN) COA J0232419T12\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COLLAGEN CASING PDF CALIBER 24 MM... (BHN BAKU MAKANAN) COA J0242419T12\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39171090\", \"uraian\": \"COLLAGEN CASING PDF CALIBER 24 MM... (BHN BAKU MAKANAN) COA J0242419T12\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COLLAGEN CASING PDF CALIBER 25 MM... (BHN BAKU MAKANAN) COA J0252419T07\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39171090\", \"uraian\": \"COLLAGEN CASING PDF CALIBER 25 MM... (BHN BAKU MAKANAN) COA J0252419T07\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COLLAGEN CASING PDF CALIBER 26 MM... (BHN BAKU MAKANAN) COA J0263118T07\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39171090\", \"uraian\": \"COLLAGEN CASING PDF CALIBER 26 MM... (BHN BAKU MAKANAN) COA J0263118T07\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COLLAGEN CASING PDF CALIBER 27 MM... (BHN BAKU MAKANAN) COA J027418T07\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39171090\", \"uraian\": \"COLLAGEN CASING PDF CALIBER 27 MM... (BHN BAKU MAKANAN) COA J027418T07\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COLLAGEN CASING PDF CALIBER 21 MM... (BHN BAKU MAKANAN) COA J0212418T07\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39171090\", \"uraian\": \"COLLAGEN CASING PDF CALIBER 21 MM... (BHN BAKU MAKANAN) COA J0212418T07\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIDOCAINE BASE (BHN BAKU OBAT) COA 205500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"LIDOCAINE BASE (BHN BAKU OBAT) COA 205500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIDOCAINE HCL (BHN BAKU OBAT) COA 205673\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242990\", \"uraian\": \"LIDOCAINE HCL (BHN BAKU OBAT) COA 205673\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM VALPROATE (BAHAN BAKU OBAT) COA 459831\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29159090\", \"uraian\": \"SODIUM VALPROATE (BAHAN BAKU OBAT) COA 459831\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRECIROL ATO 5 (BHN BAKU SUPPLEMEN) COA 199538\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"PRECIROL ATO 5 (BHN BAKU SUPPLEMEN) COA 199538\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELUCIRE 48/16 PELLETS (BHN BAKU SUPPLEMEN) COA 199069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELUCIRE 48/16 PELLETS (BHN BAKU SUPPLEMEN) COA 199069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE PH (BHN BAKU SUPPLEMEN) COA UQ30808107, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE PH (BHN BAKU SUPPLEMEN) COA UQ30808107, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE PH (BHN BAKU SUPPLEMEN) COA UQ31008120, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE PH (BHN BAKU SUPPLEMEN) COA UQ31008120, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT23060024, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT23060024, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT23080036, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT23080036, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPPLEMEN) COA TL02312506, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPPLEMEN) COA TL02312506, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT23090029, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT23090029, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT23090030, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT23090030, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20240331\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20240331\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP2010/USP42 (BHN BAKU OBAT) COA NED240303,NED240409,NED240411\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP2010/USP42 (BHN BAKU OBAT) COA NED240303,NED240409,NED240411\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0077700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0077700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0078000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0078000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0078100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0078100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0010200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0010200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 24B0010300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 24B0010300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILYMARIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 24B0009100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SILYMARIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 24B0009100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIAMI SCG(S) (BHN BAKU KOSMETIK) COA 240310C5,240322C5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34023990\", \"uraian\": \"MIAMI SCG(S) (BHN BAKU KOSMETIK) COA 240310C5,240322C5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 4-HYDROXYACETOPHENONE (BHN BAKU KOSMETIK) COA 202403014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29145000\", \"uraian\": \"4-HYDROXYACETOPHENONE (BHN BAKU KOSMETIK) COA 202403014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SERASENSE SF 2 (BAHAN BAKU SUPLEMEN) COA SA40401058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100090\", \"uraian\": \"SERASENSE SF 2 (BAHAN BAKU SUPLEMEN) COA SA40401058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1240325\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1240325\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND LICORICE EXTRACT (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND LICORICE EXTRACT (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-020493\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-020493\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA O3M204\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA O3M204\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N94107,NAH112\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N94107,NAH112\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM CARBONATE IPH (BHN BAKU SUPPLEMEN) COA DOC0672421\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"SODIUM CARBONATE IPH (BHN BAKU SUPPLEMEN) COA DOC0672421\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERRIC PYROPHOSPHATE,24PCT - 26PCT FE POWDER,FCC13 (BHN BAKU MAKANAN) COA 3141813\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28353990\", \"uraian\": \"FERRIC PYROPHOSPHATE,24PCT - 26PCT FE POWDER,FCC13 (BHN BAKU MAKANAN) COA 3141813\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS FUMARATE, FINE POWDER (BHN BAKU MAKANAN) COA 3133483\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"FERROUS FUMARATE, FINE POWDER (BHN BAKU MAKANAN) COA 3133483\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU MAKANAN) COA 3139890\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU MAKANAN) COA 3139890\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS GLUCONATE, POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3140463\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"FERROUS GLUCONATE, POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3140463\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB24010741,WB24010755,WB24010756\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB24010741,WB24010755,WB24010756\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3109006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3109006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3228039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3228039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3338149\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3338149\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASAMINO ACIDS TECHNICALS 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2137791\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASAMINO ACIDS TECHNICALS 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2137791\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 2242551\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 2242551\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3338149\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3338149\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN551682\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN551682\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN551681\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN551681\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN551680\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN551680\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN551663\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN551663\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000217254,0000217255\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000217254,0000217255\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92402367,XW92402368\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"V003400 (BHN BAKU MAKANAN) COA XW92402367,XW92402368\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT23110041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT23110041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT23090208\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT23090208\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT23090207,UT23090208\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT23090207,UT23090208\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT23100028\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT23100028\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12308017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12308017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX FOR JELLY DRINK V4 (BHN BAKU MAKANAN) COA XW92402208\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX FOR JELLY DRINK V4 (BHN BAKU MAKANAN) COA XW92402208\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ANTIOXIDANT PREMIX FOR GUMMY (BHN BAKU MAKANAN) COA XW92403026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"ANTIOXIDANT PREMIX FOR GUMMY (BHN BAKU MAKANAN) COA XW92403026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREMIX VITAMIN MINERAL CP (BHN BAKU MAKANAN) COA XW92402207\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PREMIX VITAMIN MINERAL CP (BHN BAKU MAKANAN) COA XW92402207\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN PREMIX FOR MARGARINE SG15-0027 (BHN BAKU MAKANAN) COA XW92403038\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"VITAMIN PREMIX FOR MARGARINE SG15-0027 (BHN BAKU MAKANAN) COA XW92403038\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT23080260\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT23080260\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT23100027\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT23100027\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ31012219\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ31012219\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230602\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230602\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22050237,WB22050239\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22050237,WB22050239\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02306011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02306011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ30701084\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ30701084\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12309011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12309011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT23070039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32041800\", \"uraian\": \"B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT23070039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30512170\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30512170\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT23110041\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT23110041\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02309788\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02309788\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ30610689,UQ30610695\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ30610689,UQ30610695\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30512170\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30512170\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12309011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"NIACINAMIDE (BHN BAKU MAKANAN) COA OP12309011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT23070179\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT23070179\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30701089\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30701089\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02309788\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02309788\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT23060182\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT23060182\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02307101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02307101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT23050014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT23050014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ30610688\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ30610688\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT23060177\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT23060177\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT23090206\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT23090206\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT22070226\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT22070226\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT22070226\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT22070226\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT22070226\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT22070226\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT23040011\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT23040011\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB23050069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB23050069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22050095\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22050095\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT23090207\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT23090207\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30612171\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30612171\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRASIL DM350 A2 (BHN BAKU KOSMETIK) COA 2412WKWB15\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100090\", \"uraian\": \"MIRASIL DM350 A2 (BHN BAKU KOSMETIK) COA 2412WKWB15\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464488634\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K15M PREMIUM HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464488634\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2444431986\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL E6 PREMIUM LV HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2444431986\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F48105...(BHN BAKU PEWARNA TABLET)CAS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F48105...(BHN BAKU PEWARNA TABLET)CAS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET)CAS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET)CAS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A..(BHN BAKU PEWARNA TABLET)CAS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A..(BHN BAKU PEWARNA TABLET)CAS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019..(BHN BAKU PEWARNA TABLET)CAS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019..(BHN BAKU PEWARNA TABLET)CAS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58923...(BHN BAKU PEWARNA TABLET)CAS\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58923...(BHN BAKU PEWARNA TABLET)CAS\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHOLINE L-BITARTRATE (BAHAN BAKU OBAT) COA 3028961,3029009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29231000\", \"uraian\": \"CHOLINE L-BITARTRATE (BAHAN BAKU OBAT) COA 3028961,3029009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP (BHN BAKU OBAT) COA 2304344867\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900\", \"uraian\": \"METHYLPREDNISOLONE MICRONISED PH EUR USP (BHN BAKU OBAT) COA 2304344867\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRAMADOL HCL EP/JP (BHN BAKU OBAT) COA V7532,W7586\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29225090\", \"uraian\": \"TRAMADOL HCL EP/JP (BHN BAKU OBAT) COA V7532,W7586\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM (BHN BAKU OBAT) COA M114383\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM (BHN BAKU OBAT) COA M114383\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM (BHN BAKU OBAT) COA M114312\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM (BHN BAKU OBAT) COA M114312\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP24034300 S/D XP24034303\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29211900\", \"uraian\": \"TAURINE JP8 (BHN BAKU OBAT) COA XP24034300 S/D XP24034303\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02307101\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02307101\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0046906\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0046906\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT23070229\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT23070229\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL 75 L (BHN BAKU KOSMETIK) COA TL02307314\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL 75 L (BHN BAKU KOSMETIK) COA TL02307314\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0824010056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0824010056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323021724,0323021725\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323021724,0323021725\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0723010075\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL EHS (BHN BAKU KOSMETIK) COA 0723010075\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02302802\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02302802\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0523060047\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0523060047\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT23070229\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT23070229\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0224040015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0224040015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040129\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040129\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0924020002,0924020003,0924020014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MAX (BHN BAKU KOSMETIK) COA 0924020002,0924020003,0924020014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA 23D0916832\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA 23D0916832\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0824010056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0824010056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA 23D0916832\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA 23D0916832\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040129,0224040015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040129,0224040015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0824010056\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0824010056\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0524060009\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL MCX (BHN BAKU KOSMETIK) COA 0524060009\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID FINE POWDER (BHN BAKU KOSMETIK) COA TL02306349\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID FINE POWDER (BHN BAKU KOSMETIK) COA TL02306349\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COATL02302802,TL02302803\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"ETHYL PANTHENOL (BHN BAKU KOSMETIK) COATL02302802,TL02302803\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0224040015\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL 340 (BHN BAKU KOSMETIK) COA 0224040015\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23070253\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23070253\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ETORIXOCIB (BHN BAKU OBAT) COA ETC-P/24002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"ETORIXOCIB (BHN BAKU OBAT) COA ETC-P/24002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-54HV (18KG) (BHN BAKU KOSMETIK) COA 404102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100020\", \"uraian\": \"KF-54HV (18KG) (BHN BAKU KOSMETIK) COA 404102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-54HV (18KG) (BHN BAKU KOSMETIK) COA 404102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100020\", \"uraian\": \"KF-54HV (18KG) (BHN BAKU KOSMETIK) COA 404102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-54 (18KG) (BHN BAKU KOSMETIK) CAS 68083-14-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-54 (18KG) (BHN BAKU KOSMETIK) CAS 68083-14-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA021246,ROA023242,ROA027247,ROA3652\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA021246,ROA023242,ROA027247,ROA3652\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MECOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/0324020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"MECOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/0324020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT23010005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT23010005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ30617006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ30617006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN B12 CRYST FOOD GRADE (BHN BAKU KOSMETIK) COA 012304026\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"VITAMIN B12 CRYST FOOD GRADE (BHN BAKU KOSMETIK) COA 012304026\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 0000131198\""}, {"role": "assistant", "content": "{\"hs_code\" : \"25070000\", \"uraian\": \"KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 0000131198\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 1,3-BUTYLENE GLYCOL (NATUROBG) (BHN BAKU KOSMETIK) COA BGC/L21/24\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"1,3-BUTYLENE GLYCOL (NATUROBG) (BHN BAKU KOSMETIK) COA BGC/L21/24\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN E (BHN BAKU KOSMETIK) COA 201202312202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"VITAMIN E (BHN BAKU KOSMETIK) COA 201202312202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA 2304420111\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA 2304420111\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALLOPURINOL USP (BHN BAKU OBAT) COA 24007AY3ARII\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29335990\", \"uraian\": \"ALLOPURINOL USP (BHN BAKU OBAT) COA 24007AY3ARII\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101850624\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA L101850624\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA MLAH0090124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29341000\", \"uraian\": \"MELOXICAM BP (BHN BAKU OBAT) COA MLAH0090124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FRUCTILIANCE (BHN BAKU KOSMETIK) COA PO00043575\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"FRUCTILIANCE (BHN BAKU KOSMETIK) COA PO00043575\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-7027... (BHN BAKU PEWARNA TABLET)CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-7027... (BHN BAKU PEWARNA TABLET)CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM... (BHN BAKU PEWARNA TABLET)CAS 57-50-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM... (BHN BAKU PEWARNA TABLET)CAS 57-50-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A... (BHN BAKU PEWARNA TABLET)CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A... (BHN BAKU PEWARNA TABLET)CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229... (BHN BAKU PEWARNA TABLET)CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229... (BHN BAKU PEWARNA TABLET)CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G62343...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G62343...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING... (BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING... (BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03Z59026...(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03Z59026...(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 00F28484...(BHN BAKU PEWARNA TABLET)CAS 14807-96-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 00F28484...(BHN BAKU PEWARNA TABLET)CAS 14807-96-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-001-B\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-001-B\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OMEPRAZOLE PELLETS 8.5PCT ( BHN BAKU OBAT) COA OP-13430124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"OMEPRAZOLE PELLETS 8.5PCT ( BHN BAKU OBAT) COA OP-13430124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM CARBONATE DC TYPE CS90 PHARMA (BHN BAKU OBAT) COA 202400022\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28365010\", \"uraian\": \"CALCIUM CARBONATE DC TYPE CS90 PHARMA (BHN BAKU OBAT) COA 202400022\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM CARBONATE DC TYPE CS90 PHARMA (BHN BAKU OBAT) COA 202200760\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28365010\", \"uraian\": \"CALCIUM CARBONATE DC TYPE CS90 PHARMA (BHN BAKU OBAT) COA 202200760\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052401\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47063000\", \"uraian\": \"SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052401\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052401\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47063000\", \"uraian\": \"SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052401\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KELCOGEL CG-HA [E] (BAHAN BAKU KOSMETIK) CAS 71010-52-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KELCOGEL CG-HA [E] (BAHAN BAKU KOSMETIK) CAS 71010-52-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2024031201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012090\", \"uraian\": \"INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2024031201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MATCHA (BHN BAKU MAKANAN) COA 2024020504\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012090\", \"uraian\": \"MATCHA (BHN BAKU MAKANAN) COA 2024020504\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SETACIN 103/SPEZIAL OR NP - RSPO - MB (BHN BAKU KOSMETIK) COA 155\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34023990\", \"uraian\": \"SETACIN 103/SPEZIAL OR NP - RSPO - MB (BHN BAKU KOSMETIK) COA 155\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS FUMARATE (BHN BAKU OBAT) COA 2024/58\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"FERROUS FUMARATE (BHN BAKU OBAT) COA 2024/58\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS FUMARATE (BHN BAKU OBAT) COA 2024/52\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"FERROUS FUMARATE (BHN BAKU OBAT) COA 2024/52\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOROLAC TROMETHAMINE USP (BHN BAKU OBAT) COA KM0261123\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"KETOROLAC TROMETHAMINE USP (BHN BAKU OBAT) COA KM0261123\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNOLIA BARK EXTRACT (BHN BAKU KOSMETIK) CAS 35354-74-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"MAGNOLIA BARK EXTRACT (BHN BAKU KOSMETIK) CAS 35354-74-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB180124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB180124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB180124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB180124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LG010324\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LG010324\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B120224\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B120224\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B120224\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B120224\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101850524\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA L101850524\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101850524\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA L101850524\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPASPRAY (R) OPAQUE COLOR... (BHN BAKU PEWARNA TABLET) COA DT759649\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPASPRAY (R) OPAQUE COLOR... (BHN BAKU PEWARNA TABLET) COA DT759649\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA ND2275M\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA ND2275M\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202404-025\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35040000\", \"uraian\": \"SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202404-025\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN551287\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN551287\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN551288\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN551288\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM ...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM ...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM ...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM ...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM ...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM ...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABCOAT TC (R) FILM COATING PRODUCT TC-GFII... (BHN BAKU PEWARNA TABLET) COA GA751571\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"TABCOAT TC (R) FILM COATING PRODUCT TC-GFII... (BHN BAKU PEWARNA TABLET) COA GA751571\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM ...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM ...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM ...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM ...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM ...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM ...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM ...(BHN BAKU PEWARNA TABLET) CAS 1309-37-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM ...(BHN BAKU PEWARNA TABLET) CAS 1309-37-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM ...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM ...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM ...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM ...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 151-21-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 151-21-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 2409050252\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29322090\", \"uraian\": \"SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 2409050252\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) CAS 1332-09-8\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) CAS 1332-09-8\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL240404,MCCPOL240411\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29094900\", \"uraian\": \"MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL240404,MCCPOL240411\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P1B28QA000,P1F06QA000,P1F07QA000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29420000\", \"uraian\": \"PARSOL TX (BHN BAKU KOSMETIK) COA P1B28QA000,P1F06QA000,P1F07QA000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP09924,MTP10024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP09924,MTP10024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP35823\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP35823\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP10624\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP10624\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMLODIPINE BESILATE BP/EP (BHN BAKU OBAT) COA AMB/019/04/24 S/D AMB/022/04/24\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"AMLODIPINE BESILATE BP/EP (BHN BAKU OBAT) COA AMB/019/04/24 S/D AMB/022/04/24\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CURCUMINOIDS PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23S0223602\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"CURCUMINOIDS PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23S0223602\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 23S0230600\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 23S0230600\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMITOSE R (BHN BAKU KOSMETIK) CAS 787607-61-8\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AMITOSE R (BHN BAKU KOSMETIK) CAS 787607-61-8\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS KR-30 (BHN BAKU KOSMETIK) CAS 69430-36-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS KR-30 (BHN BAKU KOSMETIK) CAS 69430-36-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK) COA 2404EF2310\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"L-ARGININE LO (BHN BAKU KOSMETIK) COA 2404EF2310\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340550, B340538\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX COMPACTED (BHN BAKU OBAT) COA B340550, B340538\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 231761\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"ABSORAGE (BHN BAKU KOSMETIK) COA 231761\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNEBUSTERS (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALPINIAWHITE (BHN BAKU KOSMETIK) COA 232597\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"ALPINIAWHITE (BHN BAKU KOSMETIK) COA 232597\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 240213\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 240213\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 240559\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"IZAYOI (BHN BAKU KOSMETIK) COA 240559\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OUGON LIQUID B(N) (BHN BAKU KOSMETIK) COA 240606\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"OUGON LIQUID B(N) (BHN BAKU KOSMETIK) COA 240606\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02311823\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02311823\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT23080260\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT23080260\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02307106\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02307106\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT23090017\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT23090017\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ31110828\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362300\", \"uraian\": \"RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ31110828\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ31012217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ31012217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT23050020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT23050020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT23090208\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362400\", \"uraian\": \"FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT23090208\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW92403201,XW92403202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059\", \"uraian\": \"PX 103070 C (BHN BAKU MAKANAN) COA XW92403201,XW92403202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ31113164\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362200\", \"uraian\": \"THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ31113164\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101851024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA L101851024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA LC050-23-801\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC 200 (BHN BAKU OBAT) COA LC050-23-801\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NG 5 PCT-1,2 PROPYLENGLYCOLE 95PCT (BAHAN BAKU OBAT) COA 2403999\""}, {"role": "assistant", "content": "{\"hs_code\" : \"30039000\", \"uraian\": \"NG 5 PCT-1,2 PROPYLENGLYCOLE 95PCT (BAHAN BAKU OBAT) COA 2403999\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334941 S/D B334943\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX POWDER (BHN BAKU OBAT) COA B334941 S/D B334943\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT GRANULATION (BHN BAKU SUPPLEMEN) COA WB24039069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT GRANULATION (BHN BAKU SUPPLEMEN) COA WB24039069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-4215...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-4215...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA 2464401497\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39123900\", \"uraian\": \"METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA 2464401497\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 8627-650 LIPEX (R) BASSOL C (TM) VEGETABLE OIL (BHN BAKU KOSMETIK) COA 0002750724\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15162049\", \"uraian\": \"8627-650 LIPEX (R) BASSOL C (TM) VEGETABLE OIL (BHN BAKU KOSMETIK) COA 0002750724\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) CAS 8001-25-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) CAS 8001-25-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) CAS 8001-25-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) CAS 8001-25-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) CAS 8001-25-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) CAS 8001-25-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RICE MILK AQUEOUS EXTRACT (SB) (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"RICE MILK AQUEOUS EXTRACT (SB) (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALUMINUM HYDROXIDE GEL USP BARCROFT TM VISCO-9 (BHN BAKU OBAT) COA 102402004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"ALUMINUM HYDROXIDE GEL USP BARCROFT TM VISCO-9 (BHN BAKU OBAT) COA 102402004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) CAS 1119-97-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CETRIMIDE (BHN BAKU KOSMETIK) CAS 1119-97-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND NEWAPLE (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND NEWAPLE (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND PF CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSSBD-010844\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"HYUNDAI BIOLAND PF CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSSBD-010844\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-062323\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-062323\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA O3M204\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000\", \"uraian\": \"HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA O3M204\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1240502\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39139090\", \"uraian\": \"HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1240502\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2510124\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2510124\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT24020053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT24020053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT24030231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT24030231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2311221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2311221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EUXYL K 100 CAN 10 KG (BHN BAKU KOSMETIK) CAS 55965-84-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"EUXYL K 100 CAN 10 KG (BHN BAKU KOSMETIK) CAS 55965-84-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE TM PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ABYSSINE TM PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JAGUAR HP 105 SGI 25KG CARDBOARD CARTON (BHN BAKU KOSMETIK) CAS 39421-75-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"JAGUAR HP 105 SGI 25KG CARDBOARD CARTON (BHN BAKU KOSMETIK) CAS 39421-75-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3292368\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3292368\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT24020053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT24020053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT24030231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT24030231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA 0000084160\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA 0000084160\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000084161\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000084161\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000084162\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000084162\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA 0000084163, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA 0000084163, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000084164, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000084164, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000084165, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000084165, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPASPRAY (R) OPAQUE COLOR... (BHN BAKU PEWARNA TABLET) COA DT759649\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPASPRAY (R) OPAQUE COLOR... (BHN BAKU PEWARNA TABLET) COA DT759649\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101851024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA L101851024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE TM PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ABYSSINE TM PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for JAGUAR HP 105 SGI 25KG CARDBOARD CARTON (BHN BAKU KOSMETIK) CAS 39421-75-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"JAGUAR HP 105 SGI 25KG CARDBOARD CARTON (BHN BAKU KOSMETIK) CAS 39421-75-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-231221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061300\", \"uraian\": \"EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-231221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EDIBLE BOVINE GELATINE 180/20 (BHN BAKU OBAT ) COA 5002301267\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35030049\", \"uraian\": \"EDIBLE BOVINE GELATINE 180/20 (BHN BAKU OBAT ) COA 5002301267\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PARACETAMOL USP (BHN BAKU OBAT) COA 2350408,2350422,2310226,2310233\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29242930\", \"uraian\": \"PARACETAMOL USP (BHN BAKU OBAT) COA 2350408,2350422,2310226,2310233\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3109006\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3109006\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3228039\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3228039\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3338149\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3338149\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASAMINO ACIDS TECHNICALS 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2137791\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASAMINO ACIDS TECHNICALS 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2137791\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 2242551\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 2242551\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3338149\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3338149\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300067\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300067\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) GINSENG (BHN BAKU KOSMETIK) COA 10300057\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021940\", \"uraian\": \"EXTRAPONE (R) GINSENG (BHN BAKU KOSMETIK) COA 10300057\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300035\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300035\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334941 S/D B334943\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX POWDER (BHN BAKU OBAT) COA B334941 S/D B334943\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CARBOWAX SENTRY PEG 1450 (BHN BAKU KOSMETIK) COA D684NCSPB2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39072990\", \"uraian\": \"CARBOWAX SENTRY PEG 1450 (BHN BAKU KOSMETIK) COA D684NCSPB2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CARBOWAX SENTRY PEG 1450 (BHN BAKU KOSMETIK) COA D684NCSPB2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39072990\", \"uraian\": \"CARBOWAX SENTRY PEG 1450 (BHN BAKU KOSMETIK) COA D684NCSPB2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3292368\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3292368\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRECIROL ATO 5 (BHN BAKU SUPPLEMEN) COA 199538\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"PRECIROL ATO 5 (BHN BAKU SUPPLEMEN) COA 199538\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELUCIRE 48/16 PELLETS (BHN BAKU SUPPLEMEN) COA 199069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELUCIRE 48/16 PELLETS (BHN BAKU SUPPLEMEN) COA 199069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPACODE (R) MONOGRAMMING INK S-1-180000 WHITE (BHN BAKU PEWARNA TABLET) COA WP876966\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPACODE (R) MONOGRAMMING INK S-1-180000 WHITE (BHN BAKU PEWARNA TABLET) COA WP876966\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C YELLOW #6/SUNSET... (BHN BAKU PEWARNA TABLET) COA WP868324:BC3385\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5287 FD&C YELLOW #6/SUNSET... (BHN BAKU PEWARNA TABLET) COA WP868324:BC3385\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5406 FD&C RED #40/ALLURA R... (BHN BAKU PEWARNA TABLET) COA WP866896:BC2990\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5406 FD&C RED #40/ALLURA R... (BHN BAKU PEWARNA TABLET) COA WP866896:BC2990\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LAKE PIGMENT HT (R) 5396 ERYTHROSINE ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP860981:1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"LAKE PIGMENT HT (R) 5396 ERYTHROSINE ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP860981:1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for STARTAB (R) DIRECTLY COMPRESSIBLE STARCH 4001 (BHN BAKU PEWARNA TABLET) COA WP873593\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051010\", \"uraian\": \"STARTAB (R) DIRECTLY COMPRESSIBLE STARCH 4001 (BHN BAKU PEWARNA TABLET) COA WP873593\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20240331\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20240331\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASCORBIC ACID 90PCT GRANULATION (BHN BAKU SUPPLEMEN) COA WB24039069\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"ASCORBIC ACID 90PCT GRANULATION (BHN BAKU SUPPLEMEN) COA WB24039069\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 INF OIL (BHN BAKU SUPPLEMEN) COA TS00023438\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 INF OIL (BHN BAKU SUPPLEMEN) COA TS00023438\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIRASIL DM350 A2 (BHN BAKU KOSMETIK) COA 2412WKWB15\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100090\", \"uraian\": \"MIRASIL DM350 A2 (BHN BAKU KOSMETIK) COA 2412WKWB15\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) CAS 122-99-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) CAS 122-99-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334941 S/D B334943\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX POWDER (BHN BAKU OBAT) COA B334941 S/D B334943\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334941 S/D B334943\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX POWDER (BHN BAKU OBAT) COA B334941 S/D B334943\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE PH (BHN BAKU SUPPLEMEN) COA UQ30808107, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE PH (BHN BAKU SUPPLEMEN) COA UQ30808107, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PYRIDOXINE HYDROCHLORIDE PH (BHN BAKU SUPPLEMEN) COA UQ31008120, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"PYRIDOXINE HYDROCHLORIDE PH (BHN BAKU SUPPLEMEN) COA UQ31008120, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT23060024, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT23060024, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT23080036, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT23080036, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPPLEMEN) COA TL02312506, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPPLEMEN) COA TL02312506, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT23090029, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT23090029, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT23090030, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT23090030, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM ASPARTATE DIHYDRATE,... (BHN BAKU SUPPLEMEN) COA 3118345-04\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"MAGNESIUM ASPARTATE DIHYDRATE,... (BHN BAKU SUPPLEMEN) COA 3118345-04\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM SELENITE IN CARRIER,... (BHN BAKU SUPPLEMEN) COA 3127495\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28429010\", \"uraian\": \"SODIUM SELENITE IN CARRIER,... (BHN BAKU SUPPLEMEN) COA 3127495\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for REFINED COCONUT OIL - L (BHN BAKU KOSMETIK) COA 0002779650\""}, {"role": "assistant", "content": "{\"hs_code\" : \"15131990\", \"uraian\": \"REFINED COCONUT OIL - L (BHN BAKU KOSMETIK) COA 0002779650\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA G12101UP\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA G12101UP\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0077700\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0077700\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0078000\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0078000\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0078100\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0078100\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0010200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0010200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 24B0010300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 24B0010300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KETOROLAC TROMETHAMINE USP (BHN BAKU OBAT) COA KM0150323\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"KETOROLAC TROMETHAMINE USP (BHN BAKU OBAT) COA KM0150323\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETAMETHASONE VALERATE USP 43 (BHN BAKU OBAT) COA APL/BV/01029/A-23\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"BETAMETHASONE VALERATE USP 43 (BHN BAKU OBAT) COA APL/BV/01029/A-23\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BETAMETHASONE VALERATE USP 43 (BHN BAKU OBAT) COA APL/BV/01029/A-23\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"BETAMETHASONE VALERATE USP 43 (BHN BAKU OBAT) COA APL/BV/01029/A-23\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM HYDROXIDE USP BARCROFT TM 5300 (BHN BAKU OBAT) COA 102369011,102369012\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"MAGNESIUM HYDROXIDE USP BARCROFT TM 5300 (BHN BAKU OBAT) COA 102369011,102369012\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWDER... (B.BAKU KOSMETIK) CAS 65497-29-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GUAR GUM TREATED AND PULVERISED IN POWDER... (B.BAKU KOSMETIK) CAS 65497-29-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-4215...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-4215...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3292368\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38210090\", \"uraian\": \"BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3292368\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SERASENSE SF 2 (BAHAN BAKU SUPLEMEN) COA SA40401058\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100090\", \"uraian\": \"SERASENSE SF 2 (BAHAN BAKU SUPLEMEN) COA SA40401058\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50555\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061100\", \"uraian\": \"MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50555\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT24020053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT24020053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT24030231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT24030231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPASPRAY (R) OPAQUE COLOR... (BHN BAKU PEWARNA TABLET) COA DT759649\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPASPRAY (R) OPAQUE COLOR... (BHN BAKU PEWARNA TABLET) COA DT759649\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERRIC PYROPHOSPHATE,24PCT - 26PCT FE POWDER,FCC13 (BHN BAKU MAKANAN) COA 3141813\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28353990\", \"uraian\": \"FERRIC PYROPHOSPHATE,24PCT - 26PCT FE POWDER,FCC13 (BHN BAKU MAKANAN) COA 3141813\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS FUMARATE, FINE POWDER (BHN BAKU MAKANAN) COA 3133483\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"FERROUS FUMARATE, FINE POWDER (BHN BAKU MAKANAN) COA 3133483\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU MAKANAN) COA 3139890\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU MAKANAN) COA 3139890\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS GLUCONATE, POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3140463\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"FERROUS GLUCONATE, POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3140463\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SILVER CITRATE SOLUTION 2500PPM (BHN BAKU KOSMETIK) COA CPS23-0844\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28432900\", \"uraian\": \"SILVER CITRATE SOLUTION 2500PPM (BHN BAKU KOSMETIK) COA CPS23-0844\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERRIC PYROPHOSPHATE,24PCT - 26PCT FE POWDER,FCC13 (BHN BAKU MAKANAN) COA 3141813\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28353990\", \"uraian\": \"FERRIC PYROPHOSPHATE,24PCT - 26PCT FE POWDER,FCC13 (BHN BAKU MAKANAN) COA 3141813\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS FUMARATE, FINE POWDER (BHN BAKU MAKANAN) COA 3133483\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"FERROUS FUMARATE, FINE POWDER (BHN BAKU MAKANAN) COA 3133483\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU MAKANAN) COA 3139890\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU MAKANAN) COA 3139890\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS GLUCONATE, POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3140463\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"FERROUS GLUCONATE, POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3140463\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PANTOPRAZOLE SODIUM (STERILE) (BHN BAKU OBAT) COA SI/PPZ/00710324\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29333990\", \"uraian\": \"PANTOPRAZOLE SODIUM (STERILE) (BHN BAKU OBAT) COA SI/PPZ/00710324\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM (BHN BAKU OBAT) COA M114383\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM (BHN BAKU OBAT) COA M114383\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ATORVASTATIN CALCIUM (BHN BAKU OBAT) COA M114312\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"ATORVASTATIN CALCIUM (BHN BAKU OBAT) COA M114312\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT24020053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT24020053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT24030231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT24030231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPASPRAY (R) OPAQUE COLOR... (BHN BAKU PEWARNA TABLET) COA DT759649\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32151990\", \"uraian\": \"OPASPRAY (R) OPAQUE COLOR... (BHN BAKU PEWARNA TABLET) COA DT759649\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20240331\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17029019\", \"uraian\": \"MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20240331\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334941 S/D B334943\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX POWDER (BHN BAKU OBAT) COA B334941 S/D B334943\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALUMINUM HYDROXIDE GEL USP.. (BHN BAKU OBAT) COA 102402001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"ALUMINUM HYDROXIDE GEL USP.. (BHN BAKU OBAT) COA 102402001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM HYDROXIDE GEL... (BHN BAKU OBAT) COA 102323013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"MAGNESIUM HYDROXIDE GEL... (BHN BAKU OBAT) COA 102323013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM HYDROXIDE GEL... (BHN BAKU OBAT) COA 102323013, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"MAGNESIUM HYDROXIDE GEL... (BHN BAKU OBAT) COA 102323013, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-7027... (BHN BAKU PEWARNA TABLET)CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-7027... (BHN BAKU PEWARNA TABLET)CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM... (BHN BAKU PEWARNA TABLET)CAS 57-50-1\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM... (BHN BAKU PEWARNA TABLET)CAS 57-50-1\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A... (BHN BAKU PEWARNA TABLET)CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A... (BHN BAKU PEWARNA TABLET)CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229... (BHN BAKU PEWARNA TABLET)CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229... (BHN BAKU PEWARNA TABLET)CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G62343...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G62343...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING... (BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING... (BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03Z59026...(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 03Z59026...(BHN BAKU PEWARNA TABLET)CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 00F28484...(BHN BAKU PEWARNA TABLET)CAS 14807-96-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 00F28484...(BHN BAKU PEWARNA TABLET)CAS 14807-96-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERRIC PYROPHOSPHATE,24PCT - 26PCT FE POWDER,FCC13 (BHN BAKU MAKANAN) COA 3141813\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28353990\", \"uraian\": \"FERRIC PYROPHOSPHATE,24PCT - 26PCT FE POWDER,FCC13 (BHN BAKU MAKANAN) COA 3141813\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS FUMARATE, FINE POWDER (BHN BAKU MAKANAN) COA 3133483\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"FERROUS FUMARATE, FINE POWDER (BHN BAKU MAKANAN) COA 3133483\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU MAKANAN) COA 3139890\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU MAKANAN) COA 3139890\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS GLUCONATE, POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3140463\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"FERROUS GLUCONATE, POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3140463\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP09924,MTP10024\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28363000\", \"uraian\": \"BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP09924,MTP10024\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104314023\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104314023\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103863623\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103863623\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103152523\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103152523\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101854623\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 200 (BHN BAKU OBAT) COA L101854623\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANULAC (R) 70 (BHN BAKU OBAT) COA L101843823\""}, {"role": "assistant", "content": "{\"hs_code\" : \"17021100\", \"uraian\": \"GRANULAC (R) 70 (BHN BAKU OBAT) COA L101843823\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALUMINUM HYDROXIDE GEL USP.. (BHN BAKU OBAT) COA 102402001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"ALUMINUM HYDROXIDE GEL USP.. (BHN BAKU OBAT) COA 102402001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM HYDROXIDE GEL... (BHN BAKU OBAT) COA 102323013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"MAGNESIUM HYDROXIDE GEL... (BHN BAKU OBAT) COA 102323013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM HYDROXIDE GEL... (BHN BAKU OBAT) COA 102323013, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"MAGNESIUM HYDROXIDE GEL... (BHN BAKU OBAT) COA 102323013, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DL ALPHA TOCOPHEROL (BHN BAKU KOSMETIK) COA 01231104ES\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362800\", \"uraian\": \"DL ALPHA TOCOPHEROL (BHN BAKU KOSMETIK) COA 01231104ES\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALUMINUM HYDROXIDE GEL USP.. (BHN BAKU OBAT) COA 102402001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28183000\", \"uraian\": \"ALUMINUM HYDROXIDE GEL USP.. (BHN BAKU OBAT) COA 102402001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM HYDROXIDE GEL... (BHN BAKU OBAT) COA 102323013\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"MAGNESIUM HYDROXIDE GEL... (BHN BAKU OBAT) COA 102323013\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MAGNESIUM HYDROXIDE GEL... (BHN BAKU OBAT) COA 102323013, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28161000\", \"uraian\": \"MAGNESIUM HYDROXIDE GEL... (BHN BAKU OBAT) COA 102323013, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLUOROMETHOLONE MICRONISED USP BP JP (BHN BAKU OBAT) COA 2201584198\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"FLUOROMETHOLONE MICRONISED USP BP JP (BHN BAKU OBAT) COA 2201584198\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PREGABALIN (BHN BAKU OBAT) COA PU1110423\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"PREGABALIN (BHN BAKU OBAT) COA PU1110423\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERRIC PYROPHOSPHATE,24PCT - 26PCT FE POWDER,FCC13 (BHN BAKU MAKANAN) COA 3141813\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28353990\", \"uraian\": \"FERRIC PYROPHOSPHATE,24PCT - 26PCT FE POWDER,FCC13 (BHN BAKU MAKANAN) COA 3141813\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS FUMARATE, FINE POWDER (BHN BAKU MAKANAN) COA 3133483\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"FERROUS FUMARATE, FINE POWDER (BHN BAKU MAKANAN) COA 3133483\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU MAKANAN) COA 3139890\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU MAKANAN) COA 3139890\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS GLUCONATE, POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3140463\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"FERROUS GLUCONATE, POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3140463\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERRIC PYROPHOSPHATE,24PCT - 26PCT FE POWDER,FCC13 (BHN BAKU MAKANAN) COA 3141813\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28353990\", \"uraian\": \"FERRIC PYROPHOSPHATE,24PCT - 26PCT FE POWDER,FCC13 (BHN BAKU MAKANAN) COA 3141813\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS FUMARATE, FINE POWDER (BHN BAKU MAKANAN) COA 3133483\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"FERROUS FUMARATE, FINE POWDER (BHN BAKU MAKANAN) COA 3133483\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU MAKANAN) COA 3139890\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28332920\", \"uraian\": \"FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU MAKANAN) COA 3139890\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS GLUCONATE, POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3140463\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29181600\", \"uraian\": \"FERROUS GLUCONATE, POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3140463\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MECOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/0324020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362600\", \"uraian\": \"MECOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/0324020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512335\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47069200\", \"uraian\": \"SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512335\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512342,G02512345\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47069200\", \"uraian\": \"SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512342,G02512345\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512335\""}, {"role": "assistant", "content": "{\"hs_code\" : \"47069200\", \"uraian\": \"SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512335\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3512810\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3512810\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HPA82 PURE SENSITIVE (BHN BAKU KOSMETIK) COA 3549437\""}, {"role": "assistant", "content": "{\"hs_code\" : \"33029000\", \"uraian\": \"HPA82 PURE SENSITIVE (BHN BAKU KOSMETIK) COA 3549437\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334941 S/D B334943\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX POWDER (BHN BAKU OBAT) COA B334941 S/D B334943\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROPYPHENAZONE (CEP) (BHN BAKU OBAT UNTUK PEWARNA TABLET) COA 2210246\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29331100\", \"uraian\": \"PROPYPHENAZONE (CEP) (BHN BAKU OBAT UNTUK PEWARNA TABLET) COA 2210246\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRANISETRON HCL EP (BHN BAKU OBAT) COA GRH/121008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29397900\", \"uraian\": \"GRANISETRON HCL EP (BHN BAKU OBAT) COA GRH/121008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 202342\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29332900\", \"uraian\": \"TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 202342\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-4215...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-4215...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA G12101UP\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29053200\", \"uraian\": \"PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA G12101UP\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ACETATE ANHYDROUS POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3141073\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29152910\", \"uraian\": \"SODIUM ACETATE ANHYDROUS POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3141073\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECHINACEA ANG.DRY PURIF. EX. (BHN BAKU SUPPLEMEN) COA 21S0155200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ECHINACEA ANG.DRY PURIF. EX. (BHN BAKU SUPPLEMEN) COA 21S0155200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VACCINIUM MYRTILLUS DRY EX. (BHN BAKU SUPLEMEN) COA 23S0078800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VACCINIUM MYRTILLUS DRY EX. (BHN BAKU SUPLEMEN) COA 23S0078800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GREEN TEA DRY DEC.EX ./PHOSPHOL (BHN BAKU SUPLEMEN) COA 23S0183400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"GREEN TEA DRY DEC.EX ./PHOSPHOL (BHN BAKU SUPLEMEN) COA 23S0183400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 23S0224200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 23S0224200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 23S0196500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 23S0196500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EMULCIRE 61 WL 2659 (BHN BAKU SUPPLEMEN) COA 196936\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"EMULCIRE 61 WL 2659 (BHN BAKU SUPPLEMEN) COA 196936\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRANSCUTOL P (BHN BAKU SUPPLEMEN) COA 195556\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TRANSCUTOL P (BHN BAKU SUPPLEMEN) COA 195556\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40\u00b0 BRIX) (BHN BAKU KOSMETIK) COA 02/22GL4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40\u00b0 BRIX) (BHN BAKU KOSMETIK) COA 02/22GL4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40\u00b0 BRIX) (BHN BAKU KOSMETIK) COA 02/22GL4, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40\u00b0 BRIX) (BHN BAKU KOSMETIK) COA 02/22GL4, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for APIFIL CAR (BHN BAKU SUPPLEMEN) COA 188262\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"APIFIL CAR (BHN BAKU SUPPLEMEN) COA 188262\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LABRAFAC LIPOPHILE WL 1349 (BHN BAKU SUPPLEMEN) COA 195981\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LABRAFAC LIPOPHILE WL 1349 (BHN BAKU SUPPLEMEN) COA 195981\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELEOL MONO AND DIGLYCERIDES NF (BHN BAKU SUPPLEMEN) COA 23E0304\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELEOL MONO AND DIGLYCERIDES NF (BHN BAKU SUPPLEMEN) COA 23E0304\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LABRASOL BF (BHN BAKU SUPPLEMEN) COA 195283\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LABRASOL BF (BHN BAKU SUPPLEMEN) COA 195283\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRECIROL ATO 5 (BHN BAKU SUPPLEMEN) COA 196484\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"PRECIROL ATO 5 (BHN BAKU SUPPLEMEN) COA 196484\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPRITOL 888 PELLETS (BHN BAKU SUPPLEMEN) COA 22E4306\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"COMPRITOL 888 PELLETS (BHN BAKU SUPPLEMEN) COA 22E4306\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPRITOL 888 ATO (BHN BAKU SUPPLEMEN) COA 197169\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"COMPRITOL 888 ATO (BHN BAKU SUPPLEMEN) COA 197169\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-4215...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-4215...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334941 S/D B334943\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29419000\", \"uraian\": \"PURIDROX POWDER (BHN BAKU OBAT) COA B334941 S/D B334943\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS FUMARATE (BHN BAKU OBAT) COA 2024/58\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"FERROUS FUMARATE (BHN BAKU OBAT) COA 2024/58\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FERROUS FUMARATE (BHN BAKU OBAT) COA 2024/52\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29171900\", \"uraian\": \"FERROUS FUMARATE (BHN BAKU OBAT) COA 2024/52\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 240304\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 240304\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 240202,240304\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 240202,240304\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 230516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061900\", \"uraian\": \"MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 230516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 230516\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29061900\", \"uraian\": \"MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 230516\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 240206\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"OILESS'CITY TM (BHN BAKU KOSMETIK) COA 240206\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 240206\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"OILESS'CITY TM (BHN BAKU KOSMETIK) COA 240206\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 240202\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 240202\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SORBITOL SPECIAL (R) MDF 85 (BHN BAKU SUPPLEMEN) COA 122303217\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29054400\", \"uraian\": \"SORBITOL SPECIAL (R) MDF 85 (BHN BAKU SUPPLEMEN) COA 122303217\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZORYALYS (BHN BAKU KOSMETIK) CAS 73398-61-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ZORYALYS (BHN BAKU KOSMETIK) CAS 73398-61-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEPPERMINT ORGANIC FROM FRANCE DISTILLATE (SB) (BHN BAKU KOSMETIK) CAS 84082-70-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PEPPERMINT ORGANIC FROM FRANCE DISTILLATE (SB) (BHN BAKU KOSMETIK) CAS 84082-70-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GREENSIL (BHN BAKU KOSMETIK) CAS 91771-32-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GREENSIL (BHN BAKU KOSMETIK) CAS 91771-32-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RAJOL WP80/LOREAL LIGHT LIQUID PARAFFIN-BP/...(BHN BAKU KOSMETIK) COA 1000240002,1000240003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27101990\", \"uraian\": \"RAJOL WP80/LOREAL LIGHT LIQUID PARAFFIN-BP/...(BHN BAKU KOSMETIK) COA 1000240002,1000240003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for M 1555 N 900/980 76 (BHN BAKU KOSMETIK) COA 267905\""}, {"role": "assistant", "content": "{\"hs_code\" : \"56039300\", \"uraian\": \"M 1555 N 900/980 76 (BHN BAKU KOSMETIK) COA 267905\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for M 1555 N 900/980 76 (BHN BAKU KOSMETIK) COA 267905\""}, {"role": "assistant", "content": "{\"hs_code\" : \"56039300\", \"uraian\": \"M 1555 N 900/980 76 (BHN BAKU KOSMETIK) COA 267905\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-4215...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-4215...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-4215...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-4215...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for NONIVAMIDE (SYNTHETIC CAPSAICIN) (BHN BAKU KOSMETIK) COA 20231020\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29241990\", \"uraian\": \"NONIVAMIDE (SYNTHETIC CAPSAICIN) (BHN BAKU KOSMETIK) COA 20231020\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 231761\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"ABSORAGE (BHN BAKU KOSMETIK) COA 231761\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ACNEBUSTERS (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALPINIAWHITE (BHN BAKU KOSMETIK) COA 232597\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"ALPINIAWHITE (BHN BAKU KOSMETIK) COA 232597\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 240213\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 240213\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 240559\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"IZAYOI (BHN BAKU KOSMETIK) COA 240559\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OUGON LIQUID B(N) (BHN BAKU KOSMETIK) COA 240606\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"OUGON LIQUID B(N) (BHN BAKU KOSMETIK) COA 240606\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ECHINACEA ANG.DRY PURIF. EX. (BHN BAKU SUPPLEMEN) COA 21S0155200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"ECHINACEA ANG.DRY PURIF. EX. (BHN BAKU SUPPLEMEN) COA 21S0155200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VACCINIUM MYRTILLUS DRY EX. (BHN BAKU SUPLEMEN) COA 23S0078800\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"VACCINIUM MYRTILLUS DRY EX. (BHN BAKU SUPLEMEN) COA 23S0078800\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GREEN TEA DRY DEC.EX ./PHOSPHOL (BHN BAKU SUPLEMEN) COA 23S0183400\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021950\", \"uraian\": \"GREEN TEA DRY DEC.EX ./PHOSPHOL (BHN BAKU SUPLEMEN) COA 23S0183400\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 23S0224200\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 23S0224200\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 23S0196500\""}, {"role": "assistant", "content": "{\"hs_code\" : \"13021990\", \"uraian\": \"CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 23S0196500\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ERDOSTEINE IH (BAHAN BAKU OBAT) COA EDSF230072\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"ERDOSTEINE IH (BAHAN BAKU OBAT) COA EDSF230072\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 23100080\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 23100080\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 23100109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 23100109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 23100110\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29221990\", \"uraian\": \"DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 23100110\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2024031201\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012090\", \"uraian\": \"INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2024031201\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MATCHA (BHN BAKU MAKANAN) COA 2024020504\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012090\", \"uraian\": \"MATCHA (BHN BAKU MAKANAN) COA 2024020504\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE TM PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ABYSSINE TM PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-54HV (18KG) (BHN BAKU KOSMETIK) COA 404102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100020\", \"uraian\": \"KF-54HV (18KG) (BHN BAKU KOSMETIK) COA 404102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-54HV (18KG) (BHN BAKU KOSMETIK) COA 404102\""}, {"role": "assistant", "content": "{\"hs_code\" : \"39100020\", \"uraian\": \"KF-54HV (18KG) (BHN BAKU KOSMETIK) COA 404102\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for KF-54 (18KG) (BHN BAKU KOSMETIK) CAS 68083-14-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"KF-54 (18KG) (BHN BAKU KOSMETIK) CAS 68083-14-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 INF OIL (BHN BAKU SUPPLEMEN) COA TS00023438\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 INF OIL (BHN BAKU SUPPLEMEN) COA TS00023438\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ABYSSINE TM PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ABYSSINE TM PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829012074P\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"B-WHITE TM (BHN BAKU KOSMETIK) COA 829012074P\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GREYVERSE TM (BHN BAKU KOSMETIK) COA 833012061P\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"GREYVERSE TM (BHN BAKU KOSMETIK) COA 833012061P\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HELIOGEL TM (BHN BAKU KOSMETIK) CAS 25549-84-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"HELIOGEL TM (BHN BAKU KOSMETIK) CAS 25549-84-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) CAS 37350-42-8\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"LECIGEL TM (BHN BAKU KOSMETIK) CAS 37350-42-8\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROGELINE TM (BHN BAKU KOSMETIK) COA 820052242P\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29224900\", \"uraian\": \"PROGELINE TM (BHN BAKU KOSMETIK) COA 820052242P\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 12-05-23, 20-04-23, 21-04-23, 26-04-23, 05-07-23\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38029090\", \"uraian\": \"IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 12-05-23, 20-04-23, 21-04-23, 26-04-23, 05-07-23\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) CAS 989-51-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) CAS 989-51-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) CAS 989-51-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) CAS 989-51-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) CAS 989-51-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) CAS 989-51-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 23100619,23100626,23100670\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29395900\", \"uraian\": \"DIMENHYDRINATE (BHN BAKU OBAT) COA 23100619,23100626,23100670\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MEG-3 '30' N-3 INF OIL (BHN BAKU SUPPLEMEN) COA TS00023438\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362500\", \"uraian\": \"MEG-3 '30' N-3 INF OIL (BHN BAKU SUPPLEMEN) COA TS00023438\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2311221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"32030010\", \"uraian\": \"ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2311221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for MIAMI SCG(S) (BHN BAKU KOSMETIK) COA 240310C5,240322C5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"34023990\", \"uraian\": \"MIAMI SCG(S) (BHN BAKU KOSMETIK) COA 240310C5,240322C5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNBELLIN (BHN BAKU KOSMETIK) COA F210-2311003,2311007, 2311008\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29339990\", \"uraian\": \"SUNBELLIN (BHN BAKU KOSMETIK) COA F210-2311003,2311007, 2311008\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPECWHITE VCE (BHN BAKU KOSMETIK) COA 20230704, 20240108, 20240109\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362700\", \"uraian\": \"SPECWHITE VCE (BHN BAKU KOSMETIK) COA 20230704, 20240108, 20240109\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ADENOSINE(L) (BHN BAKU KOSMETIK) COA C01202309003L, C01202311004L\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29349990\", \"uraian\": \"ADENOSINE(L) (BHN BAKU KOSMETIK) COA C01202309003L, C01202311004L\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GF-B331 (BHN BAKU KOSMETIK) COA 20240118001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"35051090\", \"uraian\": \"GF-B331 (BHN BAKU KOSMETIK) COA 20240118001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SPECWHITE 05 (BHN BAKU KOSMETIK) COA 20231007\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29222900\", \"uraian\": \"SPECWHITE 05 (BHN BAKU KOSMETIK) COA 20231007\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) CAS 7631-86-9\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"SUNSIL TIN50 (BHN BAKU KOSMETIK) CAS 7631-86-9\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for 4-HYDROXYACETOPHENONE (BHN BAKU KOSMETIK) COA 202403014\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29145000\", \"uraian\": \"4-HYDROXYACETOPHENONE (BHN BAKU KOSMETIK) COA 202403014\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-4215...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-4215...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IONOL CP (BHN BAKU KOSMETIK) COA 01106523\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29071900\", \"uraian\": \"IONOL CP (BHN BAKU KOSMETIK) COA 01106523\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 23100619,23100626,23100670\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29395900\", \"uraian\": \"DIMENHYDRINATE (BHN BAKU OBAT) COA 23100619,23100626,23100670\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT24020053\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT24020053\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT24030231\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362100\", \"uraian\": \"VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT24030231\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA 0000084160\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA 0000084160\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000084161\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000084161\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000084162\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000084162\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA 0000084163, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA 0000084163, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000084164, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000084164, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000084165, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29309090\", \"uraian\": \"THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000084165, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-4215...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-4215...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for DEXAMETHASONE BP2010/USP42 (BHN BAKU OBAT) COA NED240303,NED240409,NED240411\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372200\", \"uraian\": \"DEXAMETHASONE BP2010/USP42 (BHN BAKU OBAT) COA NED240303,NED240409,NED240411\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for SODIUM ACETATE ANHYDROUS POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3141073\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29152910\", \"uraian\": \"SODIUM ACETATE ANHYDROUS POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3141073\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for AMITOSE R (BHN BAKU KOSMETIK) CAS 787607-61-8\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"AMITOSE R (BHN BAKU KOSMETIK) CAS 787607-61-8\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS KR-30 (BHN BAKU KOSMETIK) CAS 69430-36-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS KR-30 (BHN BAKU KOSMETIK) CAS 69430-36-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ZORYALYS (BHN BAKU KOSMETIK) CAS 73398-61-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ZORYALYS (BHN BAKU KOSMETIK) CAS 73398-61-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEPPERMINT ORGANIC FROM FRANCE DISTILLATE (SB) (BHN BAKU KOSMETIK) CAS 84082-70-2\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PEPPERMINT ORGANIC FROM FRANCE DISTILLATE (SB) (BHN BAKU KOSMETIK) CAS 84082-70-2\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) CAS 7732-18-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) CAS 7732-18-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GREENSIL (BHN BAKU KOSMETIK) CAS 91771-32-3\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"GREENSIL (BHN BAKU KOSMETIK) CAS 91771-32-3\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29362900\", \"uraian\": \"VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for EMULCIRE 61 WL 2659 (BHN BAKU SUPPLEMEN) COA 196936\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"EMULCIRE 61 WL 2659 (BHN BAKU SUPPLEMEN) COA 196936\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for TRANSCUTOL P (BHN BAKU SUPPLEMEN) COA 195556\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"TRANSCUTOL P (BHN BAKU SUPPLEMEN) COA 195556\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40\u00b0 BRIX) (BHN BAKU KOSMETIK) COA 02/22GL4\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40\u00b0 BRIX) (BHN BAKU KOSMETIK) COA 02/22GL4\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LEMON SECRETS (LEMON 40\u00b0 BRIX) (BHN BAKU KOSMETIK) COA 02/22GL4, SAMPLE NO COMMERCIAL VALUE\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LEMON SECRETS (LEMON 40\u00b0 BRIX) (BHN BAKU KOSMETIK) COA 02/22GL4, SAMPLE NO COMMERCIAL VALUE\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for APIFIL CAR (BHN BAKU SUPPLEMEN) COA 188262\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"APIFIL CAR (BHN BAKU SUPPLEMEN) COA 188262\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LABRAFAC LIPOPHILE WL 1349 (BHN BAKU SUPPLEMEN) COA 195981\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LABRAFAC LIPOPHILE WL 1349 (BHN BAKU SUPPLEMEN) COA 195981\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for GELEOL MONO AND DIGLYCERIDES NF (BHN BAKU SUPPLEMEN) COA 23E0304\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"GELEOL MONO AND DIGLYCERIDES NF (BHN BAKU SUPPLEMEN) COA 23E0304\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for LABRASOL BF (BHN BAKU SUPPLEMEN) COA 195283\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"LABRASOL BF (BHN BAKU SUPPLEMEN) COA 195283\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PRECIROL ATO 5 (BHN BAKU SUPPLEMEN) COA 196484\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"PRECIROL ATO 5 (BHN BAKU SUPPLEMEN) COA 196484\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPRITOL 888 PELLETS (BHN BAKU SUPPLEMEN) COA 22E4306\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"COMPRITOL 888 PELLETS (BHN BAKU SUPPLEMEN) COA 22E4306\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for COMPRITOL 888 ATO (BHN BAKU SUPPLEMEN) COA 197169\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28399000\", \"uraian\": \"COMPRITOL 888 ATO (BHN BAKU SUPPLEMEN) COA 197169\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) CAS 5743-47-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999\", \"uraian\": \"PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) CAS 5743-47-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYDROCORTISONE ACETATE EP/USP (BHN BAKU OBAT) COA NEHAC220410 BAIK DAN BARU\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900.0\", \"uraian\": \"HYDROCORTISONE ACETATE EP/USP (BHN BAKU OBAT) COA NEHAC220410 BAIK DAN BARU\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTABIO AR10 (ASTAXANTHIN OIL 10PCT) (BHN BAKU OBAT) COA 2205101 BAIK DAN BARU\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059.0\", \"uraian\": \"ASTABIO AR10 (ASTAXANTHIN OIL 10PCT) (BHN BAKU OBAT) COA 2205101 BAIK DAN BARU\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMWITOR \u00bf 372 P (V) FLAKES\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999.0\", \"uraian\": \"IMWITOR \u00bf 372 P (V) FLAKES\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RAJOL WP80/BDF LIGHT LIQUID PARAFFIN-BP/LIGHT MINERAL OIL-USP\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27129090.0\", \"uraian\": \"RAJOL WP80/BDF LIGHT LIQUID PARAFFIN-BP/LIGHT MINERAL OIL-USP\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for IMWITOR \u00bf 372 P (V) FLAKES\""}, {"role": "assistant", "content": "{\"hs_code\" : \"38249999.0\", \"uraian\": \"IMWITOR \u00bf 372 P (V) FLAKES\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RAJOL WP80/BDF LIGHT LIQUID PARAFFIN-BP/LIGHT MINERAL OIL... (BHN BAKU KOSMETIK) COA 1000230001 BAIK DAN BARU\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27129090.0\", \"uraian\": \"RAJOL WP80/BDF LIGHT LIQUID PARAFFIN-BP/LIGHT MINERAL OIL... (BHN BAKU KOSMETIK) COA 1000230001 BAIK DAN BARU\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYDROCORTISONE ACETATE EP/USP (BHN BAKU OBAT) COA NEHAC220711,NEHAC220607 BAIK DAN BARU\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900.0\", \"uraian\": \"HYDROCORTISONE ACETATE EP/USP (BHN BAKU OBAT) COA NEHAC220711,NEHAC220607 BAIK DAN BARU\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RAJOL WP80/BDF LIGHT LIQUID PARAFFIN-BP/LIGHT MINERAL OIL-USP\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27129090.0\", \"uraian\": \"RAJOL WP80/BDF LIGHT LIQUID PARAFFIN-BP/LIGHT MINERAL OIL-USP\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYDROCORTISONE ACETATE EP/USP (BHN BAKU OBAT) COA NEHAC220902 BAIK DAN BARU\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900.0\", \"uraian\": \"HYDROCORTISONE ACETATE EP/USP (BHN BAKU OBAT) COA NEHAC220902 BAIK DAN BARU\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RAJOL WP80/BDF LIGHT LIQUID PARAFFIN-BP/LIGHT MINERAL OIL-USP\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27129090.0\", \"uraian\": \"RAJOL WP80/BDF LIGHT LIQUID PARAFFIN-BP/LIGHT MINERAL OIL-USP\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2205101 (POST BORDER) BAIK DAN BARU\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059.0\", \"uraian\": \"ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2205101 (POST BORDER) BAIK DAN BARU\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RAJOL WP80/BDF LIGHT LIQUID PARAFFIN-BP/LIGHT MINERAL OIL-USP\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27129090.0\", \"uraian\": \"RAJOL WP80/BDF LIGHT LIQUID PARAFFIN-BP/LIGHT MINERAL OIL-USP\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RAJOL WP80/BDF LIGHT LIQUID PARAFFIN-BP/LIGHT MINERAL OIL-USP\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27129090.0\", \"uraian\": \"RAJOL WP80/BDF LIGHT LIQUID PARAFFIN-BP/LIGHT MINERAL OIL-USP\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYDROCORTISONE ACETATE EP7/USP42 (BHN BAKU OBAT) COA NEHAC230606 BAIK DAN BARU\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900.0\", \"uraian\": \"HYDROCORTISONE ACETATE EP7/USP42 (BHN BAKU OBAT) COA NEHAC230606 BAIK DAN BARU\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2302281 BAIK DAN BARU\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059.0\", \"uraian\": \"ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2302281 BAIK DAN BARU\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYDROCORTISONE ACETATE EP7/USP42 (BHN BAKU OBAT) COA NEHAC230613 BAIK DAN BARU\""}, {"role": "assistant", "content": "{\"hs_code\" : \"29372900.0\", \"uraian\": \"HYDROCORTISONE ACETATE EP7/USP42 (BHN BAKU OBAT) COA NEHAC230613 BAIK DAN BARU\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RAJOL WP80/BDF LIGHT LIQUID PARAFFIN-BP/LIGHT MINERAL OIL-USP\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27129090.0\", \"uraian\": \"RAJOL WP80/BDF LIGHT LIQUID PARAFFIN-BP/LIGHT MINERAL OIL-USP\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2302281 BAIK DAN BARU\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059.0\", \"uraian\": \"ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2302281 BAIK DAN BARU\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RAJOL WP80/LOREAL LIGHT LIQUID PARAFFIN-BP/LIGHT... (BHN BAKU KOSMETIK) COA 1000230002 BAIK DAN BARU\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27129090.0\", \"uraian\": \"RAJOL WP80/LOREAL LIGHT LIQUID PARAFFIN-BP/LIGHT... (BHN BAKU KOSMETIK) COA 1000230002 BAIK DAN BARU\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2311221 BAIK DAN BARU\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059.0\", \"uraian\": \"ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2311221 BAIK DAN BARU\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2311221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059.0\", \"uraian\": \"ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2311221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RAJOL WP80/BDF LIGHT LIQUID PARAFFIN-BP/LIGHT MINERAL OIL-USP/NF\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27129090.0\", \"uraian\": \"RAJOL WP80/BDF LIGHT LIQUID PARAFFIN-BP/LIGHT MINERAL OIL-USP/NF\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RAJOL WP80/LOREAL LIGHT LIQUID PARAFFIN-BP/LIGHT... (BHN BAKU KOSMETIK) COA 1000240001\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27129090.0\", \"uraian\": \"RAJOL WP80/LOREAL LIGHT LIQUID PARAFFIN-BP/LIGHT... (BHN BAKU KOSMETIK) COA 1000240001\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2311221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059.0\", \"uraian\": \"ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2311221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) CAS 989-51-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020.0\", \"uraian\": \"CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) CAS 989-51-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) CAS 989-51-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020.0\", \"uraian\": \"CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) CAS 989-51-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) CAS 989-51-5\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020.0\", \"uraian\": \"CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) CAS 989-51-5\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2023111002\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21012020.0\", \"uraian\": \"INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2023111002\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RAJOL WP80/LOREAL LIGHT LIQUID PARAFFIN-BP/...(BHN BAKU KOSMETIK) COA 1000240002,1000240003\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27129090.0\", \"uraian\": \"RAJOL WP80/LOREAL LIGHT LIQUID PARAFFIN-BP/...(BHN BAKU KOSMETIK) COA 1000240002,1000240003\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2311221\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059.0\", \"uraian\": \"ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2311221\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2404161\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059.0\", \"uraian\": \"ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2404161\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RAJOL WP80/LOREAL LIGHT LIQUID PARAFFIN-BP/...(BHN BAKU KOSMETIK) COA 1000240004\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27129090.0\", \"uraian\": \"RAJOL WP80/LOREAL LIGHT LIQUID PARAFFIN-BP/...(BHN BAKU KOSMETIK) COA 1000240004\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA : O3M204\""}, {"role": "assistant", "content": "{\"hs_code\" : \"28321000.0\", \"uraian\": \"HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA : O3M204\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RAJOL WP80/LOREAL LIGHT LIQUID PARAFFIN-BP/...(BHN BAKU KOSMETIK) COA 1000240005\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27129090.0\", \"uraian\": \"RAJOL WP80/LOREAL LIGHT LIQUID PARAFFIN-BP/...(BHN BAKU KOSMETIK) COA 1000240005\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2404161, 2406051\""}, {"role": "assistant", "content": "{\"hs_code\" : \"21069059.0\", \"uraian\": \"ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2404161, 2406051\" }"}]} +{"messages": [{"role": "system", "content": "You are mensa-hsai that able to determine HS Code from a product including product in Bahasa Indonesia"}, {"role": "user", "content": "\"What is the hs code for RAJOL WP80/BDF\nLIGHT LIQUID PARAFFIN-BP/\nLIGHT MINERAL OIL-USP/NF\""}, {"role": "assistant", "content": "{\"hs_code\" : \"27129090.0\", \"uraian\": \"RAJOL WP80/BDF\nLIGHT LIQUID PARAFFIN-BP/\nLIGHT MINERAL OIL-USP/NF\" }"}]} diff --git a/training_gemini.csv b/training_gemini.csv new file mode 100644 index 0000000..e2701ed --- /dev/null +++ b/training_gemini.csv @@ -0,0 +1,38183 @@ +text_input,output +What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592250,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592245,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592249,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592259,38249999 +What is the hs code for OPADRY AMB II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592243,38249999 +What is the hs code for OPADRY AMB II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592244,38249999 +What is the hs code for ACRYL-EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592253,39061090 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592252,39061090 +What is the hs code for OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592161,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592357,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592248,38249999 +What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592251,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592433,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592433,38249999 +What is the hs code for BIOTOX (BHN BAKU OBAT UTK PAKAN TERNAK) COA 020217-109,23099090 +What is the hs code for LIQUIPHOS STRONG (BHN BAKU UTK PAKAN TERNAK) COA 200117-073,23099090 +"What is the hs code for METAMIZOLE SODIUM DAB /EP 7.0 (BHN BAKU OBAT) COA 1701127,29,30,31",29331100 +What is the hs code for EPA DHA 44 37 (BHN BAKU OBAT) COA EE4437-170111,2906130000 +What is the hs code for CEFIXIME (BHN BAKU OBAT) COA AP004-1701-1105,29419000 +What is the hs code for CEFIXIME MICRONIZED (BHN BAKU OBAT) COA AP004-1701-2032,29419000 +What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT)COA. 1603847188,29372200 +What is the hs code for MAPROTILINE HCL (BHN BAKU OBAT) COA 5000/13/16,29214900 +What is the hs code for SALBUTAMOL SULPHATE BP (BHN BAKU OBAT) COA SLL/SS/0217007,29225090 +What is the hs code for ASTABIO ARV-S (BHN BAKU OBAT) COA.1701241K,32030010 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ61202630,29362200 +"What is the hs code for PARSOL MCX ,200KG PLACTIC DRUM (BHN BAKU KOSMETIK) COA 0517010004",29189900 +"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609078,9079",32041900 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT16080047,29362100 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT16030028,32041900 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01609079,32041900 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT16100155",29362100 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT16090080,29362800 +What is the hs code for ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01610585,29362700 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01606108,29362900 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT16030101,29362400 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU.G (TOCO) BHN BAKU MAKANAN, COA UT16090697",29362100 +"What is the hs code for B2 UNIVERSAL FINE POWDER,5KG BAG ALU (B. BAKU MAKANAN) COA UQ60610117",29362300 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT16100279,29362800 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT16080047,29362100 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT16090032,29362900 +What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE01605027,29362100 +What is the hs code for ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01610550,29362700 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT16030028,32041900 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609078,32041900 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01610774,29362400 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01606108,29362900 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT16100279,29362800 +"What is the hs code for DRY VITAMIN D3 100 CWS BHN BAKU SUPLEMEN, COA UT16060009",29362900 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1608010,29362900 +What is the hs code for ASCORBIC ACID 90PCT GRANULATION 25KG BAL(B. BAKU SUPLEMEN) COA WB01016959,29362700 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ60610100,29362300 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (B BAKU SUPLEMEN) COA UT16100155,29362100 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT16030101,29362400 +What is the hs code for D PANTHENOL (BHN BAKU SUPLEMEN) COA TL01609089,29362400 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ61202630,29362200 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (B BAKU MAKANAN) COA UT16090697,29362100 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01607067,32041900 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT16090336,29362400 +"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609078,79",32041900 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT16100155",29362100 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ60903296,29362200 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ60903296,29362200 +What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OPI1608010,29362900 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00216051,29362900 +"What is the hs code for STAY C (BHN BAKU KOSMETIK) COA UE01610072,74",29362700 +"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01609089,90",29362400 +What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91612142,21069059 +What is the hs code for DWI-BI (BHN BAKU MAKANAN) COA XW91612196,21069059 +What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW91612128,21069059 +What is the hs code for PX 103070 C3 (BHN BAKU MAKANAN) COA XW91612129,21069059 +"What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91701095,96",21069059 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (B BAKU SUPLEMEN) COA WB00216021,29362200 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (B. BAKU SUPLEMEN) COA WB00216051,29362900 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT16090116,29362800 +What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01606108,29362900 +"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT16090256,100279",29362800 +What is the hs code for D PANTHENOL (BHN BAKU MAKANAN) COA TL01609089,29362400 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ60713203,29362500 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ60610100,29362300 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT16080049,29362900 +What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL01610550,29362700 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UE16090080,29362800 +"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN), COA UT16080034",29362100 +"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT16070012,21",29362600 +What is the hs code for KF-96A-6CS (BHN BAKU KOSMETIK) COA 702877,39139090 +"What is the hs code for KSG 16 (16KG) BHN BAKU KOSMETIK, COA 612397",39139090 +"What is the hs code for VC SODIUM ASCORBATE REGULAR,25KG BAL (B. BAKU SUPLEMEN)COA HPN1702003,2013",29362700 +"What is the hs code for VC ASCORBIC ACID REGULAR,25KG BAL (BAHAN BAKU SUPLEMEN) COA HPD1701047,2003",29362700 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT16100155,29362100 +"What is the hs code for AMOXICILLIN TRIHYDRATE PURIMOX POWDER (BHN BAKU OBAT) COA M4832 42,43,46,37,41",29411019 +What is the hs code for COATED ASCORBIC ACID TYPE EC (BHN BAKU SUPLEMEN) COA TL01611655,29362700 +What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00116619,29362800 +What is the hs code for GENI VIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010014,29329990 +What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT16110036,29362500 +What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA 20170119,17023010 +What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIVD160903-BGBIO,39139090 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO161104,39139090 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170101,39139090 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170101,39139090 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO-160802,39139090 +What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-170101,39139090 +What is the hs code for ARGAN VIRGIN COLD PRESSED DEODORISED ORGANIC OIL (B BAKU KOSMETIK)COA ARHV170101-SICBIO,39139090 +What is the hs code for INCA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK)COA II170201-AI-D-BIO,39139090 +What is the hs code for KIGELINE (BHN BAKU KOSMETIK) COA KA160904-B,39139090 +What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA VIVD160903-BGBIO,39139090 +What is the hs code for DEXAMETHASONE (BHN BAKU OBAT) COA X5-161217,29372200 +What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN COA 32144/M1,38249999 +What is the hs code for SILYMARIN (BHN BAKU SUPLEMEN) COA 32142/M5,38249999 +What is the hs code for CENTELLA ASIATICA/PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 31730/H1,38249999 +What is the hs code for P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 32190/M1,13021990 +"What is the hs code for MIRTOGENOL (R) BHN BAKU SUPLEMEN, COA 80320/M",38249999 +What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-161002,29397900 +What is the hs code for BETAMETHASONE VALERATE (BHN BAKU OBAT) COA S-X21-161001,29372200 +What is the hs code for DICLOFENAC POTASSIUM (BHN BAKU OBAT) COA 303160625-5,29224900 +What is the hs code for PIROXICAM (BHN BAKU OBAT) COA PRX2016010M,29349990 +What is the hs code for 850/1000 SUGLETS 850/1000 (18/20 MESH) BHN BAKU OBAT UTK PEWARNA TABLET) COA.ST507527,32151900 +What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK)COA ARP-1052296,39139090 +What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-042696,39139090 +"What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT (B.BAKU KOSMETIK) COA HMVBD-061626,011817",39139090 +What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK)COA MCP-N-071116,39139090 +What is the hs code for SK BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK) COA NMSP-D-011516,39139090 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA EHN,39139090 +What is the hs code for VISTANOL GDHR (BHN BAKU KOSMETIK) COA EJF,39139090 +What is the hs code for PROMOIS SILK 1000 (BHN BAKU KOSMETIK) COA DBD,39139090 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6333802,38210010 +What is the hs code for CAPSULAC 60 (BHN BAKU OBAT) COA. L100404916A545,17021100 +"What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. L101854516A542, L101855016A542",17021100 +What is the hs code for SPHEROLAC 100 (BHN BAKU OBAT) COA L103875016A545,17021100 +What is the hs code for TABLETTOSE 80 (BHN BAKU OBAT) COA L104315216A552,17021100 +What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA L101854516A542,17021100 +"What is the hs code for AMPICILLIN TRIHYDRATE PURICILLIN COMPACTED (BHN BAKU OBAT),COA.M842042 S/D 44",29411020 +"What is the hs code for AMPICILLIN TRIHYDRATE PURICILLIN COMPACTED (BHN BAKU OBAT) COA M842040,45,46",29411020 +"What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334429",29419000 +"What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT) COA B334435,36,41,42",29419000 +"What is the hs code for EUXYL PE 9010 CN 10KG KA (BHN BAKU KOSMETIK) COA 1320553, 1320841",38249999 +What is the hs code for SENSIVA SC 50 CN 10 KG KA (BHN BAKU KOSMETIK) COA 1321469,38249999 +What is the hs code for SENSIDIN DO CN 10KG CA (BHN BAKU KOSMETIK) COA 1322047,38249999 +What is the hs code for LIFE'S ARA (TM)'12' N-6 ARA POWDER (BHN BAKU MAKANAN) COA WB00117257,29362500 +What is the hs code for TECA M (BHN BAKU KOSMETIK)COA SX001XF,39139090 +What is the hs code for 87-28-5 SALICYLIC ACID ETHYLENE GLYCOL ESTER/GLYCOL SALICYLATE (B.BAKU KOSMETIK)COA.DE170224,39139090 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT16090080,29362800 +What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW91701272,21069059 +"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01610099,100",29362400 +What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01610452,29362700 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (B. BAKU SUPLEMEN) COA UT16100155,29362100 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT16090080,29362800 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (B. BAKU MAKANAN) COA UT16050032,29362100 +"What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL01610585,589",29362700 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO)(BHN BAKU MAKANAN) COA UT16090697,29362100 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11608011,29362900 +What is the hs code for VITAMIN B12 0.1PCT WS (B BAKU MAKANAN) COA UT16080033,29362600 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT16080033,29362100 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01611783,29362400 +What is the hs code for ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01610589,29362700 +"What is the hs code for ASCORBIC ACID 90PCT GRANULATION,25KG BAL (B. BAKU SUPLEMEN) COA WB01016959",29362700 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT16030101,29362400 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00316016,29362300 +What is the hs code for STAY-C 50 (BHN BAKU KOSMETIK) COA UE01611080,29362700 +What is the hs code for PARSOL HS (BHN BAKU KOSMETIK) COA 0709150075,29189900 +What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P6UI4UA000,29189900 +What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00428949,29189900 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU KOSMETIK) COA UT16090698,29362100 +What is the hs code for NYSTATIN MICRONIZED (BHN BAKU OBAT) COA.C130469,29419000 +What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-0140117,29334910 +What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA.LC 001-7-801,17021100 +What is the hs code for DEANOL BITARTRATE CRYST (BHN BAKU OBAT) COA 16/11180,29221910 +What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ60907011,29189900 +What is the hs code for BELSIL(R) DM 6000 (BAHAN BAKU KOSMETIK) COA OH43774,39139090 +What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA 2614068,33029000 +What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG161104,29362700 +"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ61206139, 6014, 6016, 6018",29362700 +What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1702015 S/D 34,29224900 +What is the hs code for NEOMYCIN SULPHATE(B. BAKU OBAT UTK PAKAN TERNAK)COA 201701039,29419000 +What is the hs code for COLISTIN SULFATE (BHN BAKU OBAT UTK PAKAN TERNAK)COA KA-CS-20170102-1,29419000 +What is the hs code for NICLOSAMIDE ETHANOLAMINE SALT (BHN BAKU OBAT UTK PAKAN TERNAK) COA 20161201 S/D 206,29242990 +What is the hs code for LEVOFLOXACIN HEMIHYDRATE (BHN BAKU OBAT) COA C008-1609101,29419000 +What is the hs code for HU CD3 HORIZON V450 UCHT1 120TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),38210010 +What is the hs code for HU CD45 HORIZON V500 HI30 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),38210010 +What is the hs code for ANTI MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),38210010 +What is the hs code for CD79A PE HM47 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),38210010 +What is the hs code for CD34 PERCP CY5.5 8G12 50 TESTS... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),38210010 +What is the hs code for CD19 PE-CY7 SJ25C1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 5357809,38210010 +What is the hs code for CD7 APC (M-T701) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),38210010 +What is the hs code for CD3 APC H7 SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),38210010 +What is the hs code for CS AND T RUO BEADS 50 TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),38210010 +What is the hs code for BD ACCURI C6 PLUS SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),38210010 +What is the hs code for DELL OPTIPLEX WORKSTATION BUNDLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),38210010 +What is the hs code for KIT C6 FLOW CYTOMETRY FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),38210010 +What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP778251,39059990 +What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP777104,39059990 +What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP777112,39059990 +"What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1701083 S/D 90, 2010 S/D 14",29224900 +What is the hs code for METHOCEL K100M PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180G7P023,39123900 +What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702160382,29372900 +What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND170201,29372200 +What is the hs code for PREDNISOLONE BP93/USP39 (BHN BAKU OBAT) COA.NPL170206,29372100 +What is the hs code for CYANOCOBALAMINE VITAMIN B12 CRYSTALLINE (B.BAKU OBAT) COA.1604544296,29362600 +What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.17100131,29391900 +What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA 17100131,29391900 +What is the hs code for INSTANT BLACK TEA POWDER (BHN BAKU MAKANAN) COA 2017020501,39139090 +"What is the hs code for OMEPRAZOLE PELLETS 8,5 PCT (BHN BAKU OBAT) COA OP0217C016 S/D 19",30034100 +"What is the hs code for VC ASCORBIC ACID REGULAR,25KG BAL (BAHAN BAKU SUPLEMEN) COA HPD1702003,4,17",29362700 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP05117,28363000 +"What is the hs code for VC ASCORBIC ACID REGULAR,25KG BAL (BAHAN BAKU SUPLEMEN) COA HPB1702066",29362700 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592765,38249999 +What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592780,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592779,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592778,38249999 +What is the hs code for OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592769,38249999 +What is the hs code for OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592760,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592781,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592770,38249999 +What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592768,38249999 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592771,38249999 +What is the hs code for ACRYL-EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592802,39061090 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592773,38249999 +What is the hs code for ACRYL-EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592762,39061090 +What is the hs code for ACRYL-EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592763,39061090 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592772,38249999 +What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592761,38249999 +"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 1702EF5711",29224900 +What is the hs code for LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUMPLEMEN) COA 16229,38249999 +What is the hs code for LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 16229,38249999 +What is the hs code for PIX'L CANNULAS (BHN BAKU OBAT) COA 016.633,90189090 +What is the hs code for PIX'L CANNULAS (BHN BAKU OBAT) COA 016.649,90189090 +What is the hs code for RESTYLANE SKINBOOSTERS VITAL LIDOCAINE (BHN BAKU OBAT) COA 14838-2,90189090 +What is the hs code for RESTYLANE SKINBOOSTERS VITAL LIGHT LIDOCAINE (BHN BAKU OBAT) COA 14765-1,90189090 +"What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK), COA.162935",38249999 +What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 162525,13021990 +"What is the hs code for K2 GLYCYRRHIZINATE ( BHN BAKU KOSMETIK), COA 161287",29329990 +What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 161943,13021990 +What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 160173,13021990 +What is the hs code for CLAIR JU (BHN BAKU KOSMETIK) COA 162591,13021990 +What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 162797,13021990 +What is the hs code for NEBIVOLOL HYDROCHLORIDE (BHN BAKU OBAT) COA NH0040217,29329990 +What is the hs code for GENAGEN KB (BHN BAKU KOSMETIK) COA INB3212065,34021990 +"What is the hs code for LECITHIN (BHN BAKU OBAT) COA G0215702, G0215703",29232010 +What is the hs code for CILOSTAZOL USP (BHN BAKU OBAT) COA 6004CB2ARI,29337900 +"What is the hs code for VC ASCORBIC ACID REGULAR,25KG BAL (BAHAN BAKU SUPLEMEN) COA HPB1702126,2143,2027",29362700 +What is the hs code for TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA620157,32151900 +What is the hs code for OPADRY FX YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA819882,38249999 +"What is the hs code for MEG-3 '30' N-3 INF OIL, 4,5KG PJUG (BHN BAKU MAKANAN) COA.TS00007062",29362500 +What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT17020011,29362500 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00616160,29362800 +What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB01116170,29362100 +What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT17020011,29362500 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00616159,29362800 +"What is the hs code for METAMIZOLE SODIUM DAB /EP 7.0 (BHN BAKU OBAT) COA 1701130,1701155, 1702303,2304",29331100 +"What is the hs code for VITASMOOTH (R) 041 ( BHN BAKU OBAT) COA 121607123, 121607271",28365010 +What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 121607216,28363000 +What is the hs code for HYDROCORTISONE ACETATE USP (BHN BAKU OBAT) COA 16004,29372100 +"What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91701290,91",21069059 +What is the hs code for VITAMIN PREMIX 103093-A (BHN BAKU MAKANAN) COA XW91701199,21069059 +"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70102008,9",29362200 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70102009,29362200 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70102009,29362200 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70102009,29362200 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70102009,29362200 +What is the hs code for SPI PX 507 (BHN BAKU MAKANAN) COA XW91701271,21069059 +What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91702010,21069059 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL01611784,29362400 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ60903303,29362200 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01611784,29362400 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ60903303,29362200 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00316016,29362300 +What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01610458,29362700 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ60813243,29362500 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20161227,17029019 +What is the hs code for MELOXICAM BP/EP (BHN BAKU OBAT) COA HMXCPK009,29341000 +What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 17021706,39139090 +What is the hs code for GELLUCIRE 44/14 (BHN BAKU KOSMETIK) COA 162020,28399000 +"What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK)COA NMP-L-1550506, 040827",39139090 +What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-010736,39139090 +What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-091417,39139090 +What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK)COA MUP-031296,39139090 +What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE POWDER(B. BAKU KOSMETIK) COA CHP1170209,39139090 +What is the hs code for OPADRY WHITE (BAHAN BAKU UNTUK PEWARNA TABLET) COA.SH592724,38249999 +What is the hs code for ACRYL-EZE II WHITE (BAHAN BAKU PEWARNA TABLET) COA.SH593050,39061090 +What is the hs code for OPADRY PURPLE (BAHAN BAKU PEWARNA TABLET) COA.SH593051,38249999 +What is the hs code for ACRYL -EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592978,39061090 +What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592966,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592975,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592985,38249999 +What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592988,38249999 +What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592979,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592980,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592987,38249999 +What is the hs code for OPADRY II WHITE(BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592609,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592965,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592976,38249999 +What is the hs code for OPADRY AMB MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592977,38249999 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517020018,19",29189900 +What is the hs code for SELVOL 540 PVOH 25 KG BAG (BHN BAKU KOSMETIK) COA PO41683061,39139090 +What is the hs code for HYDROXOCOBALAMINE CHLORIDE HP (BHN BAKU OBAT) COA IR00002,29362600 +What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA 20170222,11081200 +What is the hs code for MARCOL 52 (BHN BAKU OBAT UTK PAKAN TERNAK) COA 7104HH8502,27101989 +What is the hs code for TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA 16552,29225090 +What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00116619,29362800 +What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB0011161709,29362100 +What is the hs code for GENI VIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010014,29329990 +What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT17020011,29362500 +What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT17010031,29362100 +What is the hs code for NONIVAMIDE (BHN BAKU KOSMETIK) COA.20170215,29242990 +What is the hs code for SILDENAFIL CITRATE USP (BHN BAKU OBAT) COA SLC 429 03 17,29335990 +What is the hs code for GLICLAZIDE (BHN BAKU OBAT) COA 160440,29351000 +"What is the hs code for MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU MAKANAN) COA.TS00007208",29362500 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT16060053,32041900 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT16100279,29362800 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11611005,29362900 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT15060006,29362900 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT16090051,29362900 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI16070004,29362900 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01510014,29362900 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT16060009,29362900 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT16070020,29362600 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01609081,32041900 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01606108,29362900 +What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01611114,29362400 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT16100279,29362800 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT16090051,29362900 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT16090037,29362900 +What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE01605028,29362100 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT16090331,29362400 +What is the hs code for PX TRS1 WITHOUT K1 (BHN BAKU MAKANAN) COA XW91702240,21069059 +What is the hs code for PX TRS2 WITHOUT K1 (BHN BAKU MAKANAN) COA XW91702241,21069059 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT16100703,707",29362100 +What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW91702304,21069059 +What is the hs code for PX 103070 - C3 (BHN BAKU MAKANAN) COA XW91702250,21069059 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT16070020,29362600 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI16070004,29362900 +What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91702099,21069059 +What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91702242,21069059 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU SUPLEMEN) COA UT16090698,699",29362100 +What is the hs code for ASCORBIC ACID FINE POWDER (BHN BAKU SUPLEMEN) COA TL01606527,29362700 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI16070004,29362900 +What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA WB09140224,29362500 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609081,32041900 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU KOSMETIK,COA UT16100155",29362100 +"What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OPI1611006, 007",29362900 +"What is the hs code for BOTTLE RICE EXTRACT AGAR 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7032710",38210010 +"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6336799",38210010 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6293897,38210010 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6313683,38210010 +"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6250573,6271554",38210010 +"What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6277974,...",38210010 +What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6130548,38210010 +"What is the hs code for BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA.6278558",38210010 +"What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6207871,6295747",38210010 +What is the hs code for BOTTLE TC LACTALBUMIN HYDROLYSATE 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 6026771,38210010 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6300873,38210010 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6298992,38210010 +What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8LE116,38210010 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6298992,38210010 +What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8LE116,38210010 +"What is the hs code for BOTTLE POLYSORBATE 80 100G 1 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6363753",38210010 +"What is the hs code for TUBE CRYSTAL E/ ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6182893,6354747",38210010 +What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH H5JA15,38210010 +What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6286718,38210010 +What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6130534,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6146706,38210010 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6040519,38210010 +"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6147880",38210010 +What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009581,38210010 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7005840,38210010 +What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6295747,38210010 +What is the hs code for BOTTLE CASAMINO ACIDS 500G. (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6266538,38210010 +What is the hs code for BOTTLE PROTEOSE PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6256734,38210010 +What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6258957,38210010 +"What is the hs code for BOTTLE BORDET GENGOU AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6250597",38210010 +What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6125618,38210010 +What is the hs code for BOTTLE CZAPEK DOX BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6271600,38210010 +What is the hs code for BOTTLE D-MANNOSE 25G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6314651,38210010 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6292604,38210010 +What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6315878,38210010 +What is the hs code for BOTTLE HEMOGLOBIN FREEZE DRIED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6315896,38210010 +What is the hs code for PAIL LAURYL TRYPTOSE BROTH 2KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6221523,38210010 +What is the hs code for BOTTLE L-ARABINOSE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 5348621,38210010 +What is the hs code for BOTTLE L-ARABINOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 5348620,38210010 +What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6315865,38210010 +What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6229558,38210010 +What is the hs code for BOTTLE MARINE BROTH 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7005834,38210010 +What is the hs code for BOTTLE MR-VP MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6153766,38210010 +What is the hs code for BOTTLE NITRATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6067735,38210010 +What is the hs code for BOTTLE PURPLE BROTH BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6074970,38210010 +What is the hs code for BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH.6229545,38210010 +What is the hs code for BOTTLE TRYPTONE GLUCOSE EXT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6221521,38210010 +What is the hs code for BOTTLE TRYPTOSE PHOSPHATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 6334525,38210010 +What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 6305521,38210010 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6298992,38210010 +What is the hs code for BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6257879,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6336799,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6278835,38210010 +What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6188647,38210010 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6132974,38210010 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6132955,38210010 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6194922,38210010 +What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6293927,38210010 +"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6201909,6291752",38210010 +What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6250612,38210010 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6291710,38210010 +What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6117955,38210010 +What is the hs code for BOTLE POTATO DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6271571,38210010 +"What is the hs code for BOTTLE R2 AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6054655,6257924",38210010 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 6313683,38210010 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6271554,38210010 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6215665,38210010 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6300873,38210010 +What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009829,38210010 +What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7041754,38210010 +"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6354800",38210010 +"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6307974",38210010 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6258712,38210010 +"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6320529,6328593",38210010 +What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6336600,38210010 +"What is the hs code for BOTTLE TRYPTICASE SOY AG ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6306727,6354664",38210010 +What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7030892,38210010 +"What is the hs code for CD34 APC BG12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA.7018612",38210010 +What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6350718,38210010 +What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 6215857,38210010 +What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6326648,38210010 +What is the hs code for CD10 FITC H110A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6354550,38210010 +"What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6183716,..",38210010 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6328593,38210010 +What is the hs code for BOTTLE TRYPTICASE SOY AG L P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6354664,38210010 +"What is the hs code for VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6333739",38210010 +What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6138627,38210010 +What is the hs code for BOTTLE B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009833,38210010 +What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009704,38210010 +What is the hs code for BOTTLE FOLIC ACID ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6090962,38210010 +What is the hs code for BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7025950,38210010 +What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6278712,38210010 +"What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6271585",38210010 +What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6333738,38210010 +What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6239957,38210010 +What is the hs code for VIAL SAL O ANTISERUM GRP A LYOPHILLIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6246962,38210010 +What is the hs code for VIAL SAL O ANTISERUM GRP C1 FTR ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6204871,38210010 +What is the hs code for VIAL SAL VI ANTISERUM LYOPHILLIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6092802,38210010 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 5049770,38210010 +"What is the hs code for ANTI-HLA DR FITC L243... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7005516",38210010 +What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6354550,38210010 +What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6350718,38210010 +What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7030892,38210010 +What is the hs code for CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6306886,38210010 +What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7018612,38210010 +What is the hs code for CD45 PER CP-CY5.5 201 50 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7025817,38210010 +What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6215837,38210010 +What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6326648,38210010 +What is the hs code for MS LG KPA COMP BEAD SE 6ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6158689,38210010 +What is the hs code for VIAL COAG PLASMA EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6258712,38210010 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6258712,38210010 +What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6363745,38210010 +What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7005527,38210010 +What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6228624,38210010 +What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7053972,38210010 +What is the hs code for IFN GAMMA APC RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7058535,38210010 +What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6243861,38210010 +What is the hs code for CYTOFIX/CYTOPERM W/GOLGIPLUG... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7012738,38210010 +What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 6243861,38210010 +What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7005527,38210010 +What is the hs code for CD20 APC L27 100 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6228624,38210010 +What is the hs code for HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6259506,38210010 +What is the hs code for VIAL SAL O ANTIS POLY GRP... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6211814,38210010 +What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG170126,29362700 +What is the hs code for GOTALENE 120 GREEN 23 (BHN BAKU KOSMETIK) COA 3081327,39139090 +"What is the hs code for DROPPER DMACA INDOLA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6307800",38210010 +"What is the hs code for BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6294631",38210010 +What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6246831,38210010 +What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7032755,38210010 +What is the hs code for DROPPER VOGES-PROSKAUER A (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6320902,38210010 +What is the hs code for DROPPER VOGES-PROSKAUER B (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6341681,38210010 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20170227,17029019 +What is the hs code for METAMIZOLE SODIUM TYPE T 25KG (BHN BAKU OBAT) COA N143,29331100 +What is the hs code for DOBUTAMINE HCL (BHN BAKU OBAT) COA.16100696,29222900 +What is the hs code for ACYCLOVIR MICRONIZED (BHN BAKU OBAT) COA 17100164,29335990 +What is the hs code for ACYCLOVIR MICRONIZED (BHN BAKU OBAT) COA 17100164,29335990 +What is the hs code for OPALUX MAROON (BAHAN BAKU PEWARNA TABLET)COA DT659352,32151900 +What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT659381,32151900 +What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT657666,32151900 +What is the hs code for TABLETTOSE 80 (BHN BAKU OBAT) COA L104310117A552,17021100 +What is the hs code for LABRAFIL M 1944 CS (BHN BAKU OBAT) COA.162433,28399000 +What is the hs code for TEFOSE 63 (BHN BAKU OBAT) COA.163016,28399000 +What is the hs code for SUPPOCIRE AM PELLETS (BAHAN BAKU OBAT) COA.16E5008,28399000 +"What is the hs code for CAMELLIA OIL (BHN BAKU KOSMETIK), COA M290146",39139090 +What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91702176,29189900 +"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01607811,TL01610815",29362400 +What is the hs code for NIACINAMIDE PC 20KG BAL (BHN BAKU KOSMETIK) COA OP81609008,29362900 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708160089,90,91",29189900 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT16110338,29362800 +"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01611113,4",29362400 +What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001432940,29189900 +What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OPI1611006,29362900 +"What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0014953",29362500 +"What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01610074, UE01612089",29362700 +What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P6V15UA000,29189900 +What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA MCS1602067,29189900 +"What is the hs code for PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517020019",29189900 +"What is the hs code for PARSOL EHS ,25KG PC (BHN BAKU KOSMETIK) COA MCS1607004",29189900 +What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES1605045,29189900 +"What is the hs code for NIACINAMIDE PC ,20KG BAL (BHN BAKU KOSMETIK) COA OP81609008",29362900 +What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001432940,29189900 +What is the hs code for LINEN OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA LIU170201-H,39139090 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170101,39139090 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO-160802,39139090 +What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK)COA EG543-170101,39139090 +What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-170101,39139090 +What is the hs code for LANOLINE ANHYDROUS (BHN BAKU KOSMETIK) COA 4135,39139090 +What is the hs code for CORTISONE ACETATE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1600926226,29372900 +What is the hs code for LIPOID S 67 F (BHN BAKU OBAT) COA.572000-2160029/007-012,29232010 +What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA 2614068,33029000 +What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA 2614068,33029000 +"What is the hs code for CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 20170302",38249999 +What is the hs code for REFINED TRACED SHEA OLEIN (BHN BAKU KOSMETIK) COA 0000015611,39139090 +What is the hs code for LUZENAC PHARMA M (BHN BAKU KOSMETIK) COA S401/16,25262010 +What is the hs code for ASTABIO ARV-S (BHN BAKU OBAT) COA.1703151K,32030010 +What is the hs code for DL. PANTHENOL 50L (BHN BAKU KOSMETIK) COA.TL01611650,29362400 +What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA.TL01610813,29362400 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01611929,01701331...",29362700 +What is the hs code for THIOGLYCOLIC ACID 99PCT COSMETIC GRADE (BHN BAKU KOSMETIK) COA.0000057944,29309090 +"What is the hs code for AMMONIUM THIOGLYCOLATE 71PCT(60PCT TGA) BHN BAKU KOSMETIK, COA.0000057951",29309090 +"What is the hs code for THIOGLYCOLIC ACID 80PCT COSMETIC GRADE, BHN BAKU KOSMETIK, COA 0000057954",29309090 +"What is the hs code for MONOETHANOLAMINE THIOGLYCOLATE 83PCT (50PCT TGA) BHN BAKU KOSMETIK, COA 0000057943",29221100 +What is the hs code for DPG FG (BHN BAKU KOSMETIK) COA A02311D,29094900 +What is the hs code for PG USP (BHN BAKU KOSMETIK) COA A02311U,29053200 +What is the hs code for HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA MIE160401,39139090 +What is the hs code for POMEGRANATE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA PUG161106-BGBIO,39139090 +What is the hs code for PEPPERMINT ORGANIC DISTILLATE 1:5 SB (BHN BAKU KOSMETIK)COA MEPD160803-BIO,39139090 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593394,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593386,38249999 +What is the hs code for OPADRY AMB II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593387,38249999 +What is the hs code for ACRYL EZE YELLOWE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593385,39061090 +What is the hs code for OPADRY AMB II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593442,38249999 +What is the hs code for OPADRY AMB II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593503,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593390,38249999 +What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593384,32151900 +What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593384,32151900 +What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593384,32151900 +What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593391,38249999 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593413,39061090 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593392,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593417,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593383,38249999 +What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593412,39061090 +What is the hs code for OPADRY AMB GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593393,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593416,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593395,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593538,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593425,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593536,38249999 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517020019,31",29189900 +What is the hs code for B-CAROTENE 10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT16110011,32041900 +What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT17020013,29362500 +What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20170101,29362800 +What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK) COA.16L034SV01,39139090 +What is the hs code for KAOLIN SUPREME LOREAL DECONTAM PD S25 1000 4WHTP (BHN BAKU KOSMETIK) COA. 050217,25070000 +What is the hs code for GOTALENE 120 BLUE 23 (BHN BAKU KOSMETIK) COA 3289011,39139090 +What is the hs code for PROMOIS S-CAQ (BHN BAKU KOSMETIK) COA DBM,39139090 +What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA EJA,39139090 +What is the hs code for VISTANOL GDHR (BHN BAKU KOSMETIK) COA EJF,39139090 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA DCG,39139090 +What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA DCA,39139090 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20170309,17029019 +"What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1611105 ,1612023, 1703032 S/D 41",29224900 +What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-0380217,29334910 +What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 17022101,29309090 +What is the hs code for GLUCOSAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA WA201612004,29329990 +What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND170302,29372200 +What is the hs code for PREDNISONE BP93/USP39 (BHN BAKU OBAT) COA.NPD 170310,29372100 +What is the hs code for METHYLPREDNISOLONE EP5/USP38 (BHN BAKU OBAT) COA.ND170103,29372900 +What is the hs code for OPADRY II RED (BAHAN BAKU OBAT UTK PEWARNA TABLET) COA.SH593390,38249999 +What is the hs code for OPADRY II YELLOW (BAHAN BAKU OBAT UTK PEWARNA TABLET) COA.SH593583,38249999 +What is the hs code for OPADRY AMB YELLOW (BAHAN BAKU OBAT UTK PEWARNA TABLET) COA.SH593582,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593575,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593606,38249999 +What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1602146243,29372900 +What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 1603847188,29372200 +"What is the hs code for AMPICILLIN TRIHYDRATE PURICILLIN COMPACTED (BHN BAKU OBAT),COA.M842056 S/D 60",29411020 +What is the hs code for LUZENAC PHARMA M (BHN BAKU KOSMETIK) COA S820/16,25262010 +What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 70307,39139090 +What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK)COA SFP-N-011427,39139090 +What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-031296,39139090 +What is the hs code for SK BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK) COA CPG-302327,39139090 +What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK)COA,39139090 +What is the hs code for SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-152766,39139090 +"What is the hs code for SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 2016I1001,2016G1532",39139090 +What is the hs code for ASFERM PLUS (BHN BAKU KOSMETIK) COA POTN-022037,39139090 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT16060053,32041900 +What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ60709021,29362300 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01605103,29362900 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT16090039,29362900 +What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01611114,29362400 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT16120061,29362100 +What is the hs code for ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01611705,29362700 +What is the hs code for ASCORBIC ACID 90PCT GRANULATION 25KG BAL (BHN BAKU SUPLEMEN) COA WB01016960,29362700 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1611007,29362900 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ60710127,29362300 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT16100155,29362100 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609082,32041900 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT16060053,32041900 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1611007,29362900 +What is the hs code for PX 204005 (BHN BAKU MAKANAN) COA XW91702343,21069059 +"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT16080034,43",29362100 +What is the hs code for CANTHAXANTHIN 10PCT CWS/S (BHN BAKU MAKANAN) COA UT16120003,32041900 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANANN) COA UQ60710127,29362300 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (B. BAKU MAKANAN) COA UT16110707,08",29362100 +What is the hs code for SPI PX 507 (BHN BAKU MAKANAN) COA XW91703080,21069059 +What is the hs code for D-A TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20160302,29362800 +What is the hs code for D-A TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20160302,29362800 +"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609081,82",32041900 +What is the hs code for EPA DHA 44 37 (BHN BAKU OBAT) COA EE4437-170323,29061300 +What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA.70216,39139090 +What is the hs code for TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA.61101,39139090 +What is the hs code for CLOZAPINE (BHN BAKU OBAT) COA 721112,29335990 +What is the hs code for CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA.1GC01CLB ZP48D 25MT,39139090 +What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA MCS1604004,29189900 +What is the hs code for DISPENSED ISDN NACL 10/90 (BHN BAKU KOSMETIK) COA.193876,29061300 +What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA.LC 003-7-801,17021100 +"What is the hs code for AMOXICILLIN TRIHYDRATE PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M595227,228",29411019 +"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT )COA.ASG/03/030317, ASG/03/040317...",29420000 +What is the hs code for KF-96A-6CS (BHN BAKU KOSMETIK) COA 703882,39139090 +"What is the hs code for KSP 100 (10KG) BHN BAKU KOSMETIK, COA 703494",39139090 +What is the hs code for NIACINAMIDE POWDER (BHN BAKU MAKANAN) COA 0000157322,29362900 +What is the hs code for KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0331216,29339990 +What is the hs code for AMBROXOL HYDROCHLORIDE POWDER (BHN BAKU OBAT) COA AHM/17025,29221990 +"What is the hs code for AMBROXOL HYDROCHLORIDE POWDER (BHN BAKU OBAT) COA AHM/17026,SAMPLE FREE OF CHARGE",29221990 +What is the hs code for BROMHEXINE EP/BP (BHN BAKU OBAT) COA BHH/17001,29221990 +What is the hs code for GUAIFENESIN USP (BHN BAKU OBAT) COA GGE-1702043 S/D 60,29091900 +What is the hs code for FIBRE DRUM (DRUM KOSONG) INVOICE NO COMMERCIAL VALUE,48192000 +"What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1703047,49 S/D 57, 59",29224900 +What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BH01806,29349990 +What is the hs code for ROVIMIX D3-500 (BHN BAKU OBAT UTK PAKAN TERNAK) COA UE01608045,29362900 +"What is the hs code for ROVIMIX E 50 SD (BHN BAKU OBAT UTK PAKAN TERNAK) COA UE01603002,3005",29362800 +"What is the hs code for ROVIMIX AD3 1000/200,20KG BAL (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT16111404 S/D 406",29362100 +What is the hs code for ROVIMIX C-EC (BHN BAKU OBAT UTK PAKAN TERNAK) COA TL01611695,29362700 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT16100099,29362800 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT16090038,29362900 +What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01606108,29362900 +"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA 16100279,UT16110312",29362800 +What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL01611114,29362400 +"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11611007,OP11611016",29362900 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT16120157",29362100 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT16100099,29362100 +"What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL01611711,TL01611714",29362700 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT16120050,29362100 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT16090336,29362400 +What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ61206144,29362700 +"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ61206142, 44",29362700 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70102037,29362200 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70203053,29362200 +"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70102039,83",29362200 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70203053,29362200 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609082,32041900 +"What is the hs code for VITAMIN PREMIX TYPE MM81 (105PCT) BHN BAKU MAKANAN, COA XW91703211",21069059 +"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT16060053,54",32041900 +What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ60809026,29362300 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI16070010,29362900 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01605103,29362900 +"What is the hs code for ASCORBIC ACID 90PCT,GRANULATION 25KG BAL (BHN BAKU SUPLEMEN) COA WB01016965,66",29362700 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT16100279,29362800 +What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01611114,29362400 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT16120007,29362900 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT16090331,29362400 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11611007,29362900 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ60813251,29362500 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ60610107,29362300 +What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01612970,29362700 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)BHN BAKU SUPLEMEN, COA UT16100156",29362100 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT16120052,29362900 +"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK,COA 02/16-GL4",28399000 +"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK,COA 02/16-GL4 ,SAMPLE NO COMMERCIAL VALUE",28399000 +"What is the hs code for CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 016.633",90189090 +"What is the hs code for CANNULA 25G PIX'L 0,5X40 (BHN BAKU OBAT) COA 016.649",90189090 +What is the hs code for RESTYLANE SB VITAL LIDO 1 ML (BHN BAKU OBAT) COA 14838-2,90189090 +What is the hs code for RESTYLANE SB VITAL LIGHT LIDO 1ML (BHN BAKU OBAT) COA 14765-1,90189090 +"What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT17010079,80",29362100 +What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20170101,29362800 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01701354,2757",29362700 +What is the hs code for DL-PANTHENOL 50L (BHN BAKU KOSMETIK) COA TL01703614,29362400 +What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01701802,29362400 +"What is the hs code for DRY VITAMIN E 50PCT SD, 15KG BOXALU (BHN BAKU SUPLEMEN) COA WB02170044",29362800 +What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT17010080,29362100 +What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ61007012,29189900 +What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 162797,13021990 +What is the hs code for CLAIR JU (BHN BAKU KOSMETIK) COA 163044,13021990 +What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 163261,38249999 +What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 163170,13021990 +What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 170083,29329990 +"What is the hs code for L-GLUTAMIC ACID ( BHN BAKU OBAT), COA 1000031052/170310",29224290 +What is the hs code for SODIUM ACORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01611929,29362700 +What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT17020002,29362100 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20170321,17029019 +What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA. DOC0721721,28363000 +What is the hs code for ALDAVINE 5X (BHN BAKU KOSMETIK) COA 5450616,39139090 +What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829015062H,39139090 +What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830015092H,39139090 +What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769014752G,39139090 +What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769014829G,39139090 +"What is the hs code for EXO-H (BHN BAKU KOSMETIK), COA 715024757G",39139090 +"What is the hs code for LANABLUE (BHN BAKU KOSMETIK), COA 5470017",39139090 +What is the hs code for LECIGEL (BHN BAKU KOSMETIK) COA 1631305,39139090 +What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5451416,39139090 +What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828014899G,39139090 +"What is the hs code for PRO-LIPO NEO (BHN BAKU KOSMETIK), COA 1625002",39139090 +What is the hs code for RIBOXYL (BHN BAKU KOSMETIK) COA P186501,39139090 +What is the hs code for SWT-7 L (BHN BAKU KOSMETIK) COA 1628401,39139090 +What is the hs code for TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784024937G,39139090 +What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0014849,39139090 +What is the hs code for AC091KF FUCOGEL 1.5P 25 KG (BHN BAKU KOSMETIK) COA 0014687,39139090 +What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA 20170302,17023010 +What is the hs code for METHOCEL K100M PREMIUM ..(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180GAP003,39123900 +What is the hs code for METHOCEL K100M PREMIUM (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180GAU003,39123900 +What is the hs code for METHOCEL E15 PREMIUM LV (BHN BAKU OBAT UTK PEWARNA TABLET)COA D011GA9L01,39123900 +What is the hs code for METHOCEL E15 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011GA9L01,39123900 +What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NX0560M,29372200 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17020051,29362100 +What is the hs code for CEFOTAXIME SODIUM STERILE (BHN BAKU OBAT) COA 101161130,29419000 +What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA 102160902,29419000 +What is the hs code for CEFTRIAXONE HYDROCHLORIDE (BHN BAKU OBAT) COA 102170332,29419000 +What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-161001,29397900 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP07217,28363000 +"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 1703EF6413",29224900 +What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-020186,39139090 +What is the hs code for SK BIOLAND CUCUMBER EXTRACT (BHN BAKU KOSMETIK) COA CUPD-010937,39139090 +What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-042696,39139090 +What is the hs code for SK BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK)COA MUB-021186,39139090 +What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-061626,39139090 +What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-040316,39139090 +What is the hs code for ESOMEPRAZOLE SODIUM STERILE (34PERCENT TO 38PERCENT W/W)COA AESS16003,29333990 +What is the hs code for CLEANBIO CG (BHN BAKU KOSMETIK) COA.1117-86-8,39139090 +What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA JP511301,38249999 +What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU OBAT) COA 162392,28399000 +What is the hs code for TEFOSE 63 (BHN BAKU OBAT) COA.163386,28399000 +What is the hs code for TRANSCUTOL P (BAHAN BAKU OBAT) COA.162895,28399000 +What is the hs code for DEXAMETHASONE (BHN BAKU OBAT) COA X5-170204,29372200 +What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 184565,29332900 +What is the hs code for VITAMIN B12 1PCT SD (BHN BAKU SUPLEMEN) COA UT17010004,29362600 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT17010010,32041900 +What is the hs code for GENI VIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010014,29329990 +What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED(BHN BAKU OBAT UTK PAKAN TERNAK) COA MTP01317,28363000 +What is the hs code for OPADRY II PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593665,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593703,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592955,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593676,38249999 +What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593675,38249999 +What is the hs code for OPADRY BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593666,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593691,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593674,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593704,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593705,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593706,38249999 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17010017,29362100 +What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT17020014,29362500 +What is the hs code for MEG-3 (TM) '10'N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT17020014,29362500 +What is the hs code for LUZENAC PHARMA M (BHN BAKU KOSMETIK) COA S820/16,25262010 +What is the hs code for PHYTELENE COMPLEX EGX 773 BHN BAKU KOSMETIK)COA PX773-170301-GS,39139090 +What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-170301-GS,39139090 +What is the hs code for LOTUS OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA NEN170202,39139090 +What is the hs code for ROSE OILY EXTRACT (BHN BAKU KOSMETIK)COA ROS170201-H,39139090 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO161104,39139090 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO170301,39139090 +What is the hs code for VITAMIN A PALM 1.0 M + VIT.D3 100.000 (BHN BAKU MAKANAN) COA UT17010038,29362100 +What is the hs code for MEG-3(TM) '10' N-3 FOOD POWDER S/SD (BHN BAKU MAKANAN) COA UT16070007,29362500 +What is the hs code for BICAR PHAMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA.RBA0661700,28363000 +"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0517030045,46",29189900 +What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P6X08UA00,29189900 +What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01612089,29362700 +What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01612089,29362700 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT16110708",29362100 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0517030045,29189900 +What is the hs code for DL A TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT16110338,29362800 +"What is the hs code for D PANTHENOL (BHN BAKU KOSMETIK) COA TL01611121, 25,28",29362400 +What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01610815,29362400 +"What is the hs code for PARSOL 5000 ( BHN BAKU KOSMETIK), COA 0708160091,93",29189900 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA.ROA074174,28363000 +What is the hs code for CLONIDINE HCL (BHN BAKU OBAT) COA 180839,29332900 +What is the hs code for KETOPROFEN (BHN BAKU OBAT) COA 184386,29183000 +"What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334449 S/D 51",29419000 +"What is the hs code for TRISODIUM CITRATE DIHYDRATE FINE GRANULAR (B. BAKU MAKANAN, COA UJ703, UJ711",29181400 +What is the hs code for DOBUTAMINE HCL (BHN BAKU OBAT) COA.17100196,29222900 +What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK)COA SFP-N-022037,39139090 +What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-160127,39139090 +What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-031296,39139090 +What is the hs code for SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK)COA OSLP-042027,39139090 +What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-040827,39139090 +What is the hs code for SK BIOLAND SODIUM HYDROGEN (BHN BAKU KOSMETIK) COA 092016,39139090 +What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (B. BAKU KOSMETIK) COA CHP1170404,39139090 +What is the hs code for LICORICE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA GLG161102-BGBIO,39139090 +What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIVD160903-BGBIO,39139090 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO161104,39139090 +What is the hs code for POMEGRANATE OILY EXTRACT (BHN BAKU KOSMETIK)COA PUG170101-H,39139090 +What is the hs code for KIGELINE (BHN BAKU KOSMETIK)COA KA170201-B,39139090 +What is the hs code for POMEGRANATE ORGANIC OILY EXTRACT (BHN BAKU KOSMETIK)COA PUG170101-H,39139090 +What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK)COA CFM170301 PGH,39139090 +What is the hs code for ULVA LACTUCA ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA ULL170401-GS-BGBIO,39139090 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO170301,39139090 +What is the hs code for VISTANOL GDHR (BHN BAKU KOSMETIK) COA EJF,39139090 +What is the hs code for PROMOIS SILK 1000 (BHN BAKU KOSMETIK) COA DCE,39139090 +What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA DCA,39139090 +What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20170101,29362800 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT17010010,32041900 +What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17020051,29362100 +What is the hs code for LIDOCAINE BASE (BHN BAKU OBAT) COA 183564,29242990 +What is the hs code for LIDOCAINE HCL (BHN BAKU OBAT) COA 183842,29242990 +What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 1703045,29349990 +What is the hs code for GLUCOSAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA WA201701005,29329990 +"What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1703117 S/D 128, 4001,4002",29224900 +What is the hs code for METHYL SULFONYL METHANE USP (BHN BAKU OBAT) COA 17032001,29309090 +What is the hs code for LEVOFLOXACIN HEMIHYDRATE (BHN BAKU OBAT) COA C008-1612610,29419000 +What is the hs code for MEFENAMIC ACID COMPACTED (BHN BAKU OBAT) COA MFAC-1612702-A,29224900 +What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20170212,29309090 +What is the hs code for OXYTETRACYCLINE HYDROCHLORIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 16121107 S/D9,29413000 +What is the hs code for FIBRE DRUM (DRUM KOSONG) SAMPLE NO COMMERCIAL VALUE,48192000 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517030046",29189900 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ60513136,29362500 +What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01612096,29362700 +What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES1611065,29189900 +What is the hs code for PARSOL HS (BHN BAKU KOSMETIK) 0709150100,29189900 +What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001432940,29189900 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01606108,29362900 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT16090083,29362800 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL01701611,29362400 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ60813251,29362500 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ60813251,29362500 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70202084,29362200 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70202084,29362200 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT16120060,29362100 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ61110248,29362300 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT16120060,29362100 +What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91703287,21069059 +What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA XH20160302,29362800 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01609082,32041900 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01701611,29362400 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT16120007,29362900 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT16120007,29362900 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01701603,29362400 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70202084,29362200 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70303063,29362200 +"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01701603,1611",29362400 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01701611,29362400 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00216024,29362200 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00316016,29362300 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00216024,29362200 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00216052,29362900 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ60813251,29362500 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAJANAN) COA UQ70303063,29362200 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT16120024,29362600 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT16090336,29362400 +What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA 20170405,11081200 +"What is the hs code for VIAL SHIGELA ANTIS POLY A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 5275835",38210010 +"What is the hs code for VIAL SHIGELLA ANTIS POLY A1 LYOPHILIZED(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6120544",38210010 +"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6328593,7003501,..",38210010 +What is the hs code for VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6197586,38210010 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6211814,38210010 +"What is the hs code for BOTTLE TRYPTICASE SOY AG ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6354664,7045891",38210010 +What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053972,38210010 +"What is the hs code for MS LG KPA COMP BEAD SET 6ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA.6158677",38210010 +What is the hs code for CD14 APC MPHLP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7030892,38210010 +What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 6183704,38210010 +What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6215857,38210010 +What is the hs code for CD10 FITC H110A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7068890,38210010 +What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6228624,38210010 +What is the hs code for ANTI HLA DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7005516,38210010 +What is the hs code for CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6306886,38210010 +"What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6243861",38210010 +What is the hs code for HU CD36 FITC CB38 (NL07) 100TST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6259506,38210010 +What is the hs code for CD34 PE 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7038867,38210010 +What is the hs code for LYSING BUFFER 10X CONCENTRATE 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6326641,38210010 +What is the hs code for 7-AAD STAINING SOLUTION 2ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6274739,38210010 +What is the hs code for CD45 FITC/CD34 PE 2D1/8G12 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6320578,38210010 +What is the hs code for PERM/WASH BUFFER 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6188876,38210010 +"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6307974",38210010 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6358789,38210010 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7003501,38210010 +What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7045891,38210010 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 5205615,38210010 +What is the hs code for VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6333739,38210010 +What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6138627,38210010 +"What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7032642",38210010 +What is the hs code for BOOTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7038998,38210010 +What is the hs code for BOTTLE FOLIC ACID ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060658,38210010 +What is the hs code for HYCHECK FOT TOTAL COUNT 10/PK (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 16120201,38210010 +What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7006694,38210010 +What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009560,38210010 +What is the hs code for BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7067595,38210010 +What is the hs code for VIAL TINSDALE ENRICHMENT 6X15ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7039771,38210010 +"What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7027501",38210010 +"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7058904",38210010 +What is the hs code for BOTTLE SELENITE CYSTINE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6137923,38210010 +What is the hs code for BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6294631,38210010 +"What is the hs code for NIACINAMIDE PC, 20 KG BAL (B. BAKU KOSMETIK) COA.OP81609009,81701024",29362900 +What is the hs code for O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 010317/004293,39139090 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594028,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594094,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594105,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594105,38249999 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594105,39061090 +What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594093,38249999 +What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593992,38249999 +What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594107,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593884,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594095,38249999 +"What is the hs code for LIFE'S DHA S35-O100, 5KG ALUF (B.BAKU MAKANAN) COA VY00202404",29362500 +What is the hs code for CONCOMBRE HESPERIDE P 107 345 (BHN BAKU KOSMETIK) COA 0000006799,33029000 +What is the hs code for THE MATCHA 1 P001062 (BHN BAKU KOSMETIK) COA 0000003113,33029000 +What is the hs code for PLAISANCE P116808 (BHN BAKU KOSMETIK) COA.0000007332,33029000 +"What is the hs code for PREDNISONE (BHN BAKU OBAT) COA K03B20170114,115,207",29372100 +What is the hs code for GINSENG EXTRACT G115 (COA: G0236801),13021990 +What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA LOT NO. 17021003,38029090 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.SH594262,38249999 +What is the hs code for OPADRY AMB GREY (BAHAN BAKU OBAT UTK PEWARNA TABLET) COA.SH594260,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA.SH594261,38249999 +What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594280,38249999 +What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA 2627088,33029000 +What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG170331,29362700 +What is the hs code for FDANDC YELLOW 6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP773657,32151900 +What is the hs code for FDANDC BLUE 1/BRILLIANT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP775687,32151900 +What is the hs code for FDANDC YELLOW 6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP773654,32151900 +What is the hs code for FDANDC YELLOW 5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP762352,32151900 +What is the hs code for FDANDC BLUE 2/INDIGO CARMINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP776268,32151900 +What is the hs code for FDANDC BLUE 2/INDIGO CARMINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP776268,32151900 +What is the hs code for DANDC YELLOW 10 AL 15PCT - 20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP774844,32151900 +What is the hs code for FDANDC YELLOW 6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP773657,32151900 +What is the hs code for FDANDC YELLOW 5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP762352,32151900 +"What is the hs code for VC ASCORBIC ACID 325 MESH (BAHAN BAKU SUPLEMEN) COA HPD1703038,3074,3080,3081",29362700 +What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BH02707,29349990 +"What is the hs code for CITRIC ACID ANHYDROUS BP98 (8-80MESH) BHN BAKU MAKANAN, COA M703731,",29181400 +"What is the hs code for VC CALCIUM ASCORBATE DC,25KG BAL (BAHAN BAKU SUPLEMEN) COA T201612011",29362700 +"What is the hs code for VC ASCORBIC ACID DC 97%,25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG1702009,2010",29362700 +"What is the hs code for VC SODIUM ASCORBATE DC ,25KG BAL (BAHAN BAKU SUPLEMEN) COA HPS1701038",29362700 +What is the hs code for COATED ASCORBIC ACID TYPE SC (BHN BAKU SUPLEMEN) COA TL01702623,29362700 +What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00116619,29362800 +What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB00217177,29362100 +"What is the hs code for DRY VITAMIN E 50PCT SD,15KG BOX ALU (BHN BAKU SUPLEMEN) COA WB02170044",29362800 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT16080022,32030010 +What is the hs code for MEG-3 (TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT17020004,29362500 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COAUT17010010,32041900 +What is the hs code for OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP780951,32151900 +What is the hs code for OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP780951,32151900 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20170403,17029019 +What is the hs code for OPASPRAY BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT660655,32151900 +What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT660656,32151900 +What is the hs code for OPASPRAY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT660657,32151900 +What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT659402,32151900 +What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT660712,32151900 +What is the hs code for OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP780951,32151900 +What is the hs code for OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP780951,32151900 +What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU SUPLEMEN) COA.8MT170347,30032000 +"What is the hs code for AMLODIPINE BESILATE BP/EP (BHN BAKU OBAT), COA. AMB/026/03/17",29398000 +"What is the hs code for AMPICILLIN TRIHYDRATE PURICILLIN COMPACTED (BHN BAKU OBAT) COA. M842075, 76, 79, 80, 81",29411020 +What is the hs code for NYSTATIN (BHN BAKU OBAT) COA.C114016,29419000 +"What is the hs code for NYSTATIN MICRONIZED (BHN BAKU OBAT) COA CC130521,23",29419000 +"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1730003,1750072, 1750076",29242930 +"What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334406 S/D 8",29419000 +"What is the hs code for MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU MAKANAN) COA.TS00007500",29362500 +What is the hs code for OPALUX BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT660989,32151900 +What is the hs code for OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT660990,32151900 +What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT660656,32151900 +What is the hs code for OPADRY ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA622330,38249999 +What is the hs code for TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA622293,32151900 +"What is the hs code for LIPOID S 67 F (BHN BAKU OBAT) COA.576200-2160029/006, 576200-2160029/013",29232010 +What is the hs code for LIPOID S 67 F (BHN BAKU OBAT) COA.572000-2160029/007-012,29232010 +"What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU OBAT) COA.201600433,201600418",28183000 +"What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 201700036,374",28183000 +What is the hs code for KSP - 100 (BHN BAKU KOSMETIK) COA 703498,39139090 +"What is the hs code for ACNE BUSTERSI (BHN BAKU KOSMETIK), COA.162600",38249999 +What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 163261,38249999 +"What is the hs code for FLAVOSTERONE SB ( BHN BAKU KOSMETIK), COA 163170",13021990 +What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 163170,13021990 +What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 170083,29329990 +What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 162275,13021990 +What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5457516,39139090 +What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830015092H,39139090 +What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769014752G,39139090 +What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769014829G,39139090 +What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769014829G,39139090 +"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK), COA 7850103",39139090 +"What is the hs code for CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK), COA 785014498G",39139090 +What is the hs code for LECIGEL (BHN BAKU KOSMETIK) COA 1631312,39139090 +What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5451416,39139090 +What is the hs code for MELANOSTATINE 5BG (50PPM) (BHN BAKU KOSMETIK) COA 817044648G,39139090 +"What is the hs code for MELANOSTATINE 5PS (50PPM) (BHN BAKU KOSMETIK), COA 817015023H",39139090 +What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828014899G,39139090 +What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025025H,39139090 +What is the hs code for RIBOXYL (BHN BAKU KOSMETIK) COA P0516501,39139090 +What is the hs code for NONIVAMIDE 99PCT (BHN BAKU KOSMETIK) COA.20170410,29242990 +What is the hs code for TECA M (BHN BAKU KOSMETIK)COA 1730310040076,39139090 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594161,38249999 +What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594107,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594163,38249999 +What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH591456,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594147,38249999 +What is the hs code for OPADRY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594143,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594144,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594164,38249999 +What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594146,39061090 +What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594150,39061090 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594157,38249999 +What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594145,39061090 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594149,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594158,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594148,38249999 +"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7068731",38210010 +"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7068731",38210010 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7005704,38210010 +What is the hs code for MATCHED SIP/FLOW CELL DRY (SAMPLE NO COMMERCIAL VALUE),38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6336799,38210010 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7068731,38210010 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6342932,38210010 +"What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA.6277974,6286718",38210010 +What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6130548,38210010 +What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 6130534,38210010 +What is the hs code for BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6336929,38210010 +"What is the hs code for BOTTLE YEAST EXTRACT 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6207871,6295747",38210010 +What is the hs code for BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6257879,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6229763,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6336799,38210010 +"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6146706,6315880",38210010 +What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6315667,38210010 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6132955,38210010 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6293897,38210010 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6040519,38210010 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7068731,38210010 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6194922,38210010 +"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6293927",38210010 +What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6250612,38210010 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6147880,38210010 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6291710,38210010 +What is the hs code for BOTTLE MIO MEDIUM 500G. (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6117955,38210010 +What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6271636,38210010 +What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6305521,38210010 +"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6294544",38210010 +What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6258853,38210010 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6221518,38210010 +What is the hs code for BOTTLE TCBS AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6215665,38210010 +"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6300873,7005840",38210010 +What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7081569,38210010 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6075719,38210010 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7005704,38210010 +What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7081569,38210010 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7003923,38210010 +What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8LE116,38210010 +What is the hs code for BOTTLE PROTEOSE PEPTONE NO 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7044945,38210010 +What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6257503,38210010 +What is the hs code for GASPAK EZ LARGE INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7251515010,38210010 +What is the hs code for BOTTLE GN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6307744,38210010 +What is the hs code for BOTTLE MICRO INOCULUM BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6342747,38210010 +What is the hs code for BOTTLE PALCAM MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6168855,38210010 +What is the hs code for BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 6327604,38210010 +What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 6243907,38210010 +What is the hs code for BOTTLE STOCK CULTURE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6110932,38210010 +What is the hs code for BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7052648,38210010 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID0 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7003923,38210010 +What is the hs code for BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6357513,38210010 +What is the hs code for TUBE CRYSTAL E/ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6354747,38210010 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6362692,38210010 +What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7027523,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009836,38210010 +What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6278668,38210010 +What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7041754,38210010 +What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7080701,38210010 +What is the hs code for BOTTLE PROTEOSE PEPTONE NO 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7069660,38210010 +What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009829,38210010 +What is the hs code for PAIL BACTO AGAR 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7076592,38210010 +What is the hs code for BOTTLE BIGGY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6300828,38210010 +What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 63200616,38210010 +What is the hs code for BOTTLE BRAIN HEART INFUSION BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6090728,38210010 +"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6320903,904",38210010 +What is the hs code for BOTTLE EE BROTH MOSSEL AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6315878,38210010 +What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009564,38210010 +What is the hs code for PAIL LAURYL TRYPTOSE BROTH 2KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7017945,38210010 +What is the hs code for BOTTLE L-ARABINOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 5348620,38210010 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7011542,38210010 +What is the hs code for BOTTLE MOTILITY TEST MEDIUM BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 5348620,38210010 +What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6319885,38210010 +What is the hs code for BOTTLE PHENOL RED BROTH BASE BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6061569,38210010 +What is the hs code for BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6074970,38210010 +What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6243907,38210010 +What is the hs code for BOTTLE STOCK CULTURE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6110932,38210010 +What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009551,38210010 +What is the hs code for BOTTLE TRIPTYCASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6333797,38210010 +What is the hs code for BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6201879,38210010 +What is the hs code for REFERENCE PANEL AUTORDR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6007835,38210010 +What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7081569,38210010 +What is the hs code for SYSTEM GASPAK 150 LARGE ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO OEGANISME) BATCH 6250601,38210010 +What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6315869,38210010 +What is the hs code for BOTTLE TINSDALE BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 5005918,38210010 +What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7081781,38210010 +What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7081781,38210010 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7009568,38210010 +What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7081781,38210010 +What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7081781,38210010 +What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6147899,38210010 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6147899,38210010 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 6291752,38210010 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7017943,38210010 +What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6284972,38210010 +What is the hs code for BOTTLE CASEIN DIGEST 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7030894,38210010 +What is the hs code for BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6188781,38210010 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6342932,38210010 +What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 50-0G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7009849,38210010 +What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6295747,38210010 +What is the hs code for BOTTLE BEEF EXTRACT POWDER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6298524,38210010 +"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT16120050,51",29362100 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT16090336,29362300 +What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ60809026,29362300 +What is the hs code for VITAMIN K1 ( BHN BAKU SUPLEMEN) COA SI16070010,29362900 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT17010053,29362900 +What is the hs code for ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01611726,29362700 +"What is the hs code for ASCORBIC ACID 90PCT GRANULATION ,25KG BAL (BHN BAKU SUPLEMEN) COA WB01016967",29362700 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT16090083,29362800 +What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL01612127,29362400 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT16110312,29362800 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT16090039,29362900 +What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01606108,29362900 +What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL01611726,29362700 +What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE01605029,29362100 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT16060054,32041900 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01609082,32041900 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT16110312,29362800 +What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01612127,29362400 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT16120007,29362900 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT16060009,29362900 +What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ60809026,29362300 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)(BHN BAKU SUPLEMEN) COA UT16120157,29362100 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI16070010,29362900 +What is the hs code for VITAMIN D3 CRYSTALLINE(BHN BAKU SUPLEMEN) COA UE01605103,29362900 +What is the hs code for ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01611726,29362700 +"What is the hs code for ASCORBIC ACID 90PCT GRANULATION ,25KGBAL (BHN BAKU SUPLEMEN) COA WB01016967",29362700 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01606108,29362900 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ61110248,29362300 +What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01701310,29362700 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT17010053,29362900 +"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01609082,83",32041900 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO)(BHN BAKU MAKANAN) COA UT16110711,29362100 +"What is the hs code for B2 UNIVERSAL FINE POWDER, 5K BAG ALU (BHN BAKU MAKANAN) COA UQ60610117",29362300 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17010053,29362900 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70303064,29362200 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO)(BHN BAKU MAKANAN) COA UT16110711,712",29362100 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT16120060,29362100 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT16120157",29362100 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT16110710,711",29362100 +What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW917032,21069059 +What is the hs code for PX 103070-C3 (BHN BAKU MAKANAN) COA XW91703254,21069059 +What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL01611726,29362700 +What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ60809026,29362300 +What is the hs code for ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01611726,29362700 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01606108,29362900 +"What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20160302, 60104",29362800 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70303064,29362200 +What is the hs code for DRY VITAMIN K1 5PCT SD(BHN BAKU MAKANAN) COA UT16120007,29362900 +What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01611086,29362700 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA MCS1603817,818",29189900 +What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91703399,29189900 +What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91703400,29189900 +What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01611086,29362700 +"What is the hs code for SK BIOLAND LICORICE EXTRACT (BHN BAKU KOSMETIK)COA GGB-032986,011017",39139090 +What is the hs code for SK BIOLAND ALWHITE 7 (BHN BAKU KOSMETIK) COA CLHW-020186,39139090 +What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-030126,39139090 +What is the hs code for SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK)COA U170417,39139090 +What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-042696,39139090 +What is the hs code for SK BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-011637,39139090 +What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF(B. BAKU KOSMETIK) COA HMVBD-061626,39139090 +What is the hs code for SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK)COA OSLP-042027,39139090 +What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA,39139090 +What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-040827,39139090 +What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 040717,39139090 +What is the hs code for SK BIOLAND OLIGO HA (BHN BAKU KOSMETIK) COA OHA-040316,39139090 +"What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA.05630217,06670317...",29351000 +"What is the hs code for SULPHAMETHOXAZOLE BP MICRONISED (BHN BAKU OBAT) COA 08430317,09400417...",29351000 +What is the hs code for ALLOPURINOL (BHN BAKU OBAT) COA 17008AY3ARII,29335990 +What is the hs code for DOXYCYCLINE MONOHYDRATE (BHN BAKU OBAT) COA 3042-201704003,29413000 +What is the hs code for CITICOLINE SODIUM (BHN BAKU OBAT) COA 3A26170312,29349990 +"What is the hs code for RANITIDINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA RH006 04 17, RH 007 04 17",29321900 +What is the hs code for RBD SUNFLOWER OIL (BHN BAKU KOSMETIK) COA KKLJ-07/17,39139090 +What is the hs code for ALLOPURINOL BP (BHN BAKU OBAT) COA ALP0051216,29335990 +What is the hs code for CHOLINE L-BITARTRATE (BAHAN BAKU OBAT) COA.3012169,29231000 +What is the hs code for PERFECTAMYL AC (BHN BAKU KOSMETIK)COA G5252805,39139090 +What is the hs code for 87-28-5 SALICYLIC ACID ETHYLENE GLYCOL ESTER/GLYCOL SALICYLATE (B.BAKU KOSMETIK)COA.DE170423,39139090 +What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA.70325,39139090 +What is the hs code for TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA.70216,39139090 +What is the hs code for MAPROTILINE HCL (BHN BAKU OBAT) COA 5000/02/17,29214900 +What is the hs code for CEFOTAXIME SODIUM STERILE (BHN BAKU OBAT) COA P202300,29419000 +What is the hs code for CEFOTAXIME SODIUM STERILE (BHN BAKU OBAT) COA P202800,29419000 +"What is the hs code for CITRIC ACID ANHYDROUS BP98 (8-80MESH) BHN BAKU MAKANAN, COA M703731,",29181400 +"What is the hs code for CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 20170302",38249999 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA.ROA091174,28363000 +What is the hs code for OXYTOCIN POWDER (SYNTHETIC) (BAHAN BAKU OBAT) COA.OP-140317,29371900 +What is the hs code for COMPLEX DRY EXTRACT (BHN BAKU KOSMETIK)COA CHS170401,39139090 +What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIVD160903-BGBIO,39139090 +What is the hs code for LINEN OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA LIU170201-H,39139090 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO161104,39139090 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170302,39139090 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO170301,39139090 +What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91704126,21069059 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70302159,29362200 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT16120024,29362600 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT16120025,29362600 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70303074,29362200 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70302159,29362200 +"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70302159,2161,2164",29362200 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT16120024,29362600 +"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT16120024,25",29362600 +"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN), COA UT16120025",29362600 +What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P6X08UA000,29189900 +What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91704142,29189900 +What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES1611065,29189900 +"What is the hs code for PARSOL HS (BHN BAKU KOSMETIK) COA 0709150100,101",29189900 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01606108,29362900 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70303074,29362200 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11703021,29362900 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT16120025,29362600 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11703021,29362900 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT17010054,29362900 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT16090083,29362800 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT16090039,29362900 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT16110158,29362800 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11703021,29362900 +What is the hs code for KANAMYCIN SULFATE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 16201,29419000 +What is the hs code for OXYTETRACYCLINE DIHYDRATE... (BHN BAKU OBAT UTK PAKAN TERNAK) COA ZT170330,29413000 +What is the hs code for GLUCOSAMINE HCL (BHN BAKU OBAT) COA XH2017040901,29329990 +What is the hs code for METHYL SULFONYL METHANE USP (BHN BAKU OBAT) COA 20170406,29309090 +What is the hs code for INOSITOL (BHN BAKU OBAT) COA 201703071,29061300 +What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 1704028,29349990 +"What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1612024, 4045,4047 S/D 57",29224900 +What is the hs code for OXYTETRACYCLINE HYDROCHLORIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 16121115,29413000 +What is the hs code for PYRANTEL PAMOATE (BHN BAKU OBAT) COA PRP1612022,29349990 +"What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1704084,86 S/D 97",29224900 +What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA.MLAH007041718,29341000 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121607482, 7486",28363000 +What is the hs code for HYOSCINE BUTYLBROMIDE EP/BP (BHN BAKU OBAT) COA.2510417,29397900 +What is the hs code for CYANOCOBALAMINE VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1704770694,29362600 +What is the hs code for FRENCH MARITIME PINE BARK EXTRACT PYCNOGENOL (R) (BHN BAKU OBAT) COA T/5770,39139090 +What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA 20170408,17023010 +What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA.163021,28399000 +What is the hs code for SUPPOCIRE AM PELLETS (BHN BAKU OBAT) COA.16E5008,28399000 +What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU OBAT) COA.01/16-GAAK,28399000 +"What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU OBAT) COA.01/16-GAAK, SAMPLE NO COMM VALUE",28399000 +What is the hs code for CLOZAPINE (BHN BAKU OBAT) COA 710106,29335990 +What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17020002,29189900 +What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17030008,29189900 +What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17030008,29189900 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP09817,28363000 +What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 17011806,38029090 +What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OPI1703021,29362900 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT17010003,29362800 +"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01612128,29",29362400 +What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01610815,29362400 +What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0004132940,29189900 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708160096,97",29189900 +What is the hs code for BEAUPLEX VH (BHN BAKU KOSMETIK) COA UF16335018,29189900 +What is the hs code for PARSOL MCX 25KG PC (BHN BAKU KOSMETIK) COA MCS1605018,29189900 +What is the hs code for NIACINAMIDE PC 20KG BAL (BHN BAKU KOSMETIK) COA OP81702001,29362900 +"What is the hs code for BOTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6130534",38210010 +"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6333858,7009856",38210010 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6333802,38210010 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6278737,38210010 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7005840,38210010 +What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7033659,38210010 +What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7033659,38210010 +What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.SH594583,38249999 +What is the hs code for OPADRY II GREEN (BAHAN BAKU OBAT UTK PEWARNA TABLET) COA.SH594689,38249999 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.SH594423,39061090 +What is the hs code for ALLOPURINOL (BHN BAKU OBAT) COA 17011AY3ARII,29335990 +What is the hs code for PERMETHRIN PHARMA GRADE BHN BAKU OBAT COA 174046001,29163990 +What is the hs code for AMOXICILLIN SODIUM STERILE (BHN BAKU OBAT) COA 25M50060,29411019 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00616156,29362800 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00616156,29362800 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00616156,29362800 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00616156,29362800 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00616156,29362800 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70203030,29362200 +What is the hs code for SILYBIN/PHOSPHOLIPIDS (BAHAN BAKU SUPPLEMEN) COA 10130/M1,38249999 +What is the hs code for SILYBIN/PHOSPHOLIPIDS (BAHAN BAKU SUPPLEMEN) COA 10236/M1,38249999 +What is the hs code for P.GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 32113/M1,13021990 +What is the hs code for CLOTRIMAZOLE MICRONIZED (BHN BAKU OBAT ) COA 201703170316,29332900 +"What is the hs code for MEG-3 '30' N-3 INF OIL, 4,5KG PJUG (BHN BAKU SUPLEMEN) COA.TS00007817",29362500 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20170417,17029019 +What is the hs code for MEG-3 (TM)'10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA.UT17020005,29362500 +"What is the hs code for CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 20170314",38249999 +What is the hs code for KOLLICOAT IR WHITE 2 25KG (BHN BAKU OBAT UTK PEWARNA TABLET) COA 25165316K0,32151900 +What is the hs code for KOLLICOAT IR WHITE 2 25KG (BHN BAKU OBAT UTK PEWARNA TABLET) COA 25165316K0,32151900 +What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA. WP781126,39059990 +What is the hs code for PVAP PHTHALAVIN NF CLEAR (BAHAN BAKU OBAT UTK PEWARNA TABLET) COA. WP781127,39059990 +What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA. WP781130,39059990 +What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP781128,39059990 +"What is the hs code for SULPHAMETHOXAZOLE BP MICRONISED (BHN BAKU OBAT) COA.11170417,11190417...",29351000 +What is the hs code for KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0230716,29339990 +What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NX0562M,29372200 +"What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334453 S/D 55",29419000 +What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ61206150,29362700 +What is the hs code for TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA 16552,29225090 +What is the hs code for DOPAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA.17100091,29222900 +"What is the hs code for CITRIC ACID ANHYDROUS BP98 (8-80MESH) BHN BAKU MAKANAN, COA M704084",29181400 +What is the hs code for LINCOMYCIN HCL (BHN BAKU OBAT) COA 1704069,29419000 +What is the hs code for LEVOFLOXACIN HEMIHYDRATE (BHN BAKU OBAT) COA C008-1702309,29419000 +What is the hs code for INSTANT BLACK TEA POWDER (BHN BAKU MAKANAN) COA 2017020501,21012020 +What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594614,38249999 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH5946,39061090 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594625,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593039,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593538,38249999 +What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594626,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594623,38249999 +What is the hs code for OPADRY PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594605,38249999 +What is the hs code for OPADRY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594604,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594613,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594624,38249999 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594629,39061090 +What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593812,38249999 +What is the hs code for GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUMPLEMEN) COA 17027,39139090 +What is the hs code for LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 16229,38249999 +"What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU OBAT), COA UJ715",29181400 +What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU OBAT) COA UJ715,29181400 +"What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU OBAT), COA UJ717",29181400 +What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU OBAT) COA UJ717,29181400 +What is the hs code for SK BIOLAND ALWHITE 7 (BHN BAKU KOSMETIK) COA CLHW-020186,39139090 +What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-030126,39139090 +What is the hs code for SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK)COA U170511,39139090 +What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012547,39139090 +What is the hs code for SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-040416,39139090 +What is the hs code for SK BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-011637,39139090 +What is the hs code for SK BIOLAND OLIGO HA (BHN BAKU KOSMETIK)COA OHA-040316,39139090 +What is the hs code for MINIPORYL (BHN BAKU KOSMETIK) COA 832015256H,39139090 +What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5471517,39139090 +What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5471517,39139090 +What is the hs code for ALDAVINE 5X (BHN BAKU KOSMETIK) COA 5478717,39139090 +What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830015092H,39139090 +"What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK), COA 769015093H",39139090 +"What is the hs code for CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK), COA 785014499H",39139090 +What is the hs code for MELANOSTATINE 5BG (50PPM) (BHN BAKU KOSMETIK) COA 817044833G,39139090 +What is the hs code for MELANOSTATINE 5PS (50PPM) (BHN BAKU KOSMETIK) COA 817014258G,39139090 +What is the hs code for SWT 7L (BHN BAKU KOSMETIK) COA 1628401,39139090 +"What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK), COA 784025025H",39139090 +What is the hs code for DEFENSCALP (BHN BAKU KOSMETIK) COA 785075173H,39139090 +"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6336799",38210010 +"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6278668",38210010 +What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7047892,38210010 +What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7041754,38210010 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009955,38210010 +What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6286718,38210010 +What is the hs code for BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6278558,38210010 +"What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA.6295747,7033659",38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6336799,38210010 +"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 6315880,7009836",38210010 +What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009849,38210010 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6293897,38210010 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009966,38210010 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7068731,38210010 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6314700,38210010 +"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7009829",38210010 +What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6250612,38210010 +What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7041754,38210010 +"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6271562,7080702",38210010 +What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009813,38210010 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7053795,38210010 +"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6271571,700983",38210010 +"What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7009581",38210010 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009955,38210010 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6139903,38210010 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6320612,38210010 +"What is the hs code for BOTTLE XLD AGAR 500G. (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7005704,7018909",38210010 +What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6160813,38210010 +What is the hs code for PANEL VIEWER EUROPE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 111616,38210010 +"What is the hs code for BOTTLE KOSER CITRATE MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 5055842",38210010 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7065938,38210010 +What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8LE116,38210010 +What is the hs code for TUBE CRYSTAL E/ ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053551,38210010 +What is the hs code for SOLUTION BACTERIOSTAT CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3477C419,38210010 +What is the hs code for SOLUTION CLEANING CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1166C514,38210010 +What is the hs code for KIT MAINTENANCE C6 FLOW CYT 1-YR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),38210010 +What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7083628,38210010 +"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7027991,70549",38210010 +What is the hs code for CULTURESWAB STERILE SINGLE SWAB(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH CACI15,38210010 +What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6130548,38210010 +What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7093593,38210010 +What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7103621,38210010 +What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6278668,38210010 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7068859,38210010 +"What is the hs code for BOTTLE SKIM MILK 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6342932,7009568",38210010 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7109793,38210010 +"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7081569, 7087782",38210010 +What is the hs code for BOTTLE DEXTROSE 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7005857,38210010 +What is the hs code for BOTTLE PHYTONE PEPTONE 454G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6287929,38210010 +What is the hs code for BOTTLE PROTEOSE PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7005507,38210010 +What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7088694,38210010 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6278737,38210010 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6320612,38210010 +What is the hs code for BOTTLE ADONITOL 10G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6314645,38210010 +What is the hs code for PAILACTO AGAR 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6322551,38210010 +What is the hs code for BOTTLE BIGGY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6300828,38210010 +What is the hs code for BOTTLE BILE SALT NO 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6069958,38210010 +What is the hs code for BOTTLE BORDET GENGOU AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6250597,38210010 +What is the hs code for BOTTLE D MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6201884,38210010 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7038965,38210010 +What is the hs code for BOTTLE DUICITOL 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009901,38210010 +What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6315878,38210010 +What is the hs code for BOTTLE ENDO AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6026738,38210010 +What is the hs code for BOTTLE EOSIN METHYLENE BLUE AG HHT 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 63200616,38210010 +What is the hs code for BOTTLE LAURYL SULFATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6307826,38210010 +What is the hs code for BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6278861,38210010 +What is the hs code for BOTTLE L-ARABINOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 5348620,38210010 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7081822,38210010 +What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6320614,38210010 +What is the hs code for BOTTLEOF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7067719,38210010 +What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 4056159,38210010 +What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6315869,38210010 +What is the hs code for BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6074970,38210010 +What is the hs code for BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6258791,38210010 +What is the hs code for BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6229545,38210010 +What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6243907,38210010 +What is the hs code for BOTTLE STANDARD METHODS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7017680,38210010 +What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009551,38210010 +What is the hs code for BOTTLE TRIPTYCASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6278889,38210010 +What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6333797,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009836,38210010 +What is the hs code for PAIL LAURYL TRYPTOSE BROTH0 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7017945,38210010 +What is the hs code for TUBE CRYSTAL E/ ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO OEGANISME) BATCH 7053551,38210010 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7009568,38210010 +What is the hs code for BOTTLE KOSER CITRATE MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 5055842,38210010 +What is the hs code for BOTTLE PPLO BOTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7110677,38210010 +What is the hs code for HUILE DE COPRAH RAFF GV 24/26 (BHN BAKU KOSMETIK)COA BA006245,15131910 +What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK)COA MS/2460/B15/LOREAL/270916,39123900 +"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA MS/70120/B15YOI/LOREAL/021016",39123900 +"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA MS/70120/B15/LOREAL/270916",39123900 +"What is the hs code for DRY VITAMIN E 50PCT SD, 15KG BOX ALU (BHN BAKU SUPLEMEN) COA WB02170045",29362800 +"What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU OBAT), COA UJ7167",29181400 +"What is the hs code for TRISODIUM CITRATE DIHYDRATE FINE GRANULAR (BHN BAKU MAKANAN), COA UJ7147",29181400 +What is the hs code for LIPOID PPL-600 (BHN BAKU OBAT) COA.577200-2170186/005-006 (2),29232010 +What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA 20170412,17023010 +What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1705001 S/D 8,29224900 +What is the hs code for GRISEOFULVIN (BHN BAKU OBAT) COA BP/EP-161223,29419000 +"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6307974",38210010 +"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7003501,7010897",38210010 +What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6347631,38210010 +What is the hs code for VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6197586,38210010 +What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7045891,38210010 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6043596,38210010 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 5205615,38210010 +"What is the hs code for CYTOFIX/CYTOPERM SOLN KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7033753",38210010 +What is the hs code for BOTTLE B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009833,38210010 +What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 7005527,38210010 +"What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7030892,706888",38210010 +What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7018612,38210010 +What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6350858,38210010 +What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6215857,38210010 +What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7068890,38210010 +"What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6354550",38210010 +What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6228624,38210010 +What is the hs code for CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7025817,38210010 +What is the hs code for ANTI HLA DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7055792,38210010 +What is the hs code for CD33 PE P67.6 100 TESTS RUO/ GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7073574,38210010 +"What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6243862,7061652",38210010 +What is the hs code for ANNEXIN V FITC APOP DTEC KIT I 100 TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7026585,38210010 +"What is the hs code for BD CST BEADS KIT 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 63097",38210010 +What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7004830,38210010 +What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7045891,38210010 +What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6258903,38210010 +What is the hs code for VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6197586,38210010 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6043596,38210010 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 5205615,38210010 +"What is the hs code for VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6333739",38210010 +"What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6138627,7060854",38210010 +What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7032642,38210010 +What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6251799,38210010 +What is the hs code for KIT CRYSTAL ANAEROBE ID(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7065850,38210010 +What is the hs code for BOTTLE M-GREEN YEAST AND MOLD... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6278712,38210010 +What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC 9 GROUP D (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7045553,38210010 +What is the hs code for VIAL SAL O ANTISERUM FACTOR 9 GROUP D (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6008891,38210010 +What is the hs code for VIAL SAL O ANTISERUM GRP A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6246962,38210010 +What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6092802,38210010 +What is the hs code for VIAL SAL O ANTISERUM FACTOR 2 GROUP A (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6253972,38210010 +What is the hs code for VIAL VBRIO CHOLERAE ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 5049770,38210010 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6211814,38210010 +"What is the hs code for SOLUTION DECONTAMINATION CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 3477C409",38210010 +"What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7027501",38210010 +What is the hs code for DROPPER DMACA INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7053856,38210010 +What is the hs code for BOTTLE SELENITE CYSTINE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6137923,38210010 +What is the hs code for CYANOCOBALAMINE VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1704790698,29362600 +What is the hs code for METHYLPREDNISOLONE EP6/USP38 (BHN BAKU OBAT) COA.NMP170506,29372900 +What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND170401,29372200 +What is the hs code for PREDNISONE BP93/USP39 (BHN BAKU OBAT) COA.NPD170310,29372100 +What is the hs code for METHOCEL E15 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011GCML01,39123900 +What is the hs code for METHOCEL E15 PREMIUM LV (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011H21L01,39123900 +What is the hs code for METHOCEL K100M PREMIUM (BHN BAKU OBAT UTK PEWARNA TABLET)COA D0180GCG012,39123900 +What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D0180GAV005,39123900 +What is the hs code for METHOCEL K100M PREMIUM (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180GCG012,39123900 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA DDH,39139090 +"What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA DCA, DDB",39139090 +What is the hs code for PROMOIS WK-GB (BHN BAKU KOSMETIK) COA DBN,39139090 +What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA EKB,39139090 +What is the hs code for VISTANOL GDHR (BHN BAKU KOSMETIK) COA EJF,39139090 +"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00447271, 50970",29189900 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT17010007,29362800 +"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01612129,30",29362400 +What is the hs code for BEAUPLEX VH (BHN BAKU KOSMETIK) COA UF16335018,29189900 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT16090083,29362800 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT16090083,29362100 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517030046,40078",29189900 +What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P6X08UA000,29189900 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01606109,29362900 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL01701613,29362400 +"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70203029,70203030",29362200 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609083,32041900 +"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN), COA UT16120057",29362100 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUP0LEMEN), COA UQ61113292,3294",29362500 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01701613,29362400 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00216053,29362900 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00216053,29362900 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01701613,29362300 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70402171,29362200 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70402171,29362200 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (BHN BAKU SUPLEMEN) COA UT16110713,16,17",29362100 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00316017,29362300 +"What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91704126,4127",21069059 +What is the hs code for DWI BI (BHN BAKU MAKANAN) COA XW91704128,21069059 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70402171,29362200 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT16110312,29362800 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN,COA UT16120157",29362100 +What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE01605030,29362100 +"What is the hs code for ECHINACEA PURP D.AQ.E>0,8PCT (BAHAN BAKU SUPPLEMEN) COA 10266/M2",13021990 +"What is the hs code for ECHINACEA PURP D.AQ.E.>0,8PCT (BAHAN BAKU SUPPLEMEN) COA 10226/M2",13021990 +"What is the hs code for VALERIAN D.H.E.>0,8PCT VAL.AC (BHN BAKU SUPLEMEN) COA 10288/M1",13021990 +"What is the hs code for ECHINACEA PURP.D.AQ.E.>0,8PCT (BHN BAKU SUPLEMEN) COA 10226/M2",13021990 +What is the hs code for SILYMARIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 10000/M1,38249999 +What is the hs code for GINKGO BILOBA DRY EXTRACT HF (BHN BAKU SUMPLEMEN) COA 17050,13021990 +What is the hs code for OLIVE POLYPHENOLIC DRY EXTRACT (BHN BAKU SUPLEMEN) COA 16414,13021990 +What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1602146243,29372900 +What is the hs code for EMPILAN CIS (BAHAN BAKU KOSMETIK) COA.BLW0012389,34021390 +What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104311117A552,17021100 +What is the hs code for AMOXICILLIN TRIHYDRATE PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M595269 S/D 71,29411019 +"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1750239,243,245",29242930 +What is the hs code for CENTELLA ASIATICA PHOSPHOLIP BHN BAKU SUPLEMEN COA 31730 M1,38249999 +What is the hs code for GREEN TEA DRY DEC.EX PHOSPHOL BHN BAKU SUPLEMEN COA 32157M1,38249999 +What is the hs code for CENTELLA ASIATICA TRITERPENES BHN BAKU SUPLEMEN COA 32227 M1,38249999 +What is the hs code for BILBERRY V. MYRTILLUS ET. EX 36PCT BHN BAKU SUPLEMEN COA 32361M1,13021990 +What is the hs code for P.GINSENG DRY EXTRACT 10PCT COL BHN BAKU SUPLEMEN COA 32113M1,13021990 +What is the hs code for VACCINIUM MYRTILLUS DRY EX BHN BAKU SUPLEMEN COA 32254M1,13021990 +"What is the hs code for ECHINACEA ANG DRY PURIF.EX BHN BAKU SUPLEMEN, COA 32024M1",13021990 +"What is the hs code for P.GINSENG DRY EXTRACTIDB BHN BAKU SUPLEMEN, COA 32190M1",13021990 +"What is the hs code for MIRTOGENOL R BHN BAKU SUPLEMEN, COA 80320M",38249999 +What is the hs code for TABLETTOSE R 80 BHN BAKU OBAT COA L104311217A552,17021100 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT17010010,32041900 +What is the hs code for COATED ASCORBIC ACID TYPE EC (BHN BAKU SUPLEMEN) COA TL01702765,29362700 +What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00116619,29362800 +What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB0217177,29362100 +What is the hs code for DRY VITAMIN E 50PCT SD (BHN BAKU SUPLEMEN) COA WB02170045,29362800 +What is the hs code for MEG-3 (TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT17020015,29362500 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17020051,29362100 +What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT17010032,29362100 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595056,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595057,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595055,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595042,38249999 +What is the hs code for OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595043,38249999 +What is the hs code for OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595044,38249999 +What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595065,32151900 +What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595065,32151900 +What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595065,32151900 +What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595065,32151900 +What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595065,32151900 +What is the hs code for ACRYL EZE PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595177,39061090 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595175,38249999 +What is the hs code for REFINED TRACED SHEA OLEIN BHN BAKU KOSMETIK COA 0000016816,39139090 +What is the hs code for VIRGIN SWEET ALMOND OIL CONFORM ... BHN BAKU KOSMETIK COA 0000017313,39139090 +What is the hs code for OPADRY ORANGE (BAHAN BAKU UNTUK PEWARNA TABLET) COA. GA623947,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA623944,38249999 +What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20170101,29362800 +What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT17020004,29362100 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01704136,47",29362700 +What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00116619,29362800 +"What is the hs code for DRY VITAMIN E 50PCT SD, 15KGBOX ALU (BHN BAKU SUPLEMEN) COA WB02170045",29362800 +What is the hs code for GENIVIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010015,29329990 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17020051,29362100 +What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT17010032,29362100 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO161104,39139090 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170302,39139090 +What is the hs code for POMEGRANATE OILY EXTRACT (BHN BAKU KOSMETIK)COA PUG170101-H,39139090 +What is the hs code for OLIVE ORGANIC VIRGIN OIL EXTRACT XNE102 (BHN BAKU KOSMETIK)COA OLVH170101-ENBIO,39139090 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO170301,39139090 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA.ROA1311700,28363000 +What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594938,39061090 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594890,39061090 +What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594810,38249999 +What is the hs code for ACRYL II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594623,39061090 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594948,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594948,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594939,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594943,38249999 +What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594944,38249999 +What is the hs code for ACRYL-EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594942,39061090 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594940,38249999 +What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK)COA MS/2460/B15/LOREAL/100517,39123900 +"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA MS/70120/B15/LOREAL/060517",39123900 +"What is the hs code for VC ASCORBIC ACID REGULAR,25KG BAL (BAHAN BAKU MAKANAN) COA HPD1704093,4105",29362700 +What is the hs code for SK BIOLAND SOPHORA ROOT POWDER BHN BAKU KOSMETIK COA SFP-N-022037,39139090 +What is the hs code for SK BIOLAND BIO OSLP BHN BAKU KOSMETIK COA OSLP 071447,39139090 +What is the hs code for SK BIOLAND ARBUTIN BHN BAKU KOSMETIK COA ARP 1052296,39139090 +What is the hs code for SK BIOLAND ALWHITE 7 BHN BAKU KOSMETIK COA CLHW 020186,39139090 +What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF BHN BAKU KOSMETIK COA HMVBD 021447,39139090 +What is the hs code for SK BIOLAND BIO SODIUM HYALURONATE POWDER MMW BHN BAKU KOSMETIK COA CHP1170513,39139090 +What is the hs code for SK BIOLAND OLIGO HA BHN BAKU KOSMETIK COA OHA 040316,39139090 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17010054,29362900 +What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UT1607048,29362100 +"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609083,88",32041900 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17010054,29362900 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT16060057,32041900 +What is the hs code for DWI BI (BHN BAKU MAKANAN) COA XW91704309,21069059 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT16110312,29362800 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI16070010,29362900 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01605103,29362900 +What is the hs code for ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01611828,29362700 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01606109,29362900 +What is the hs code for VP ENG01 (BHN BAKU MAKANAN) COA XW91704261,21069059 +What is the hs code for MILKUAT ZN FE (25PCT CARRIER) (BHN BAKU MAKANAN) COA XW91704310,21069059 +What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91704258,21069059 +What is the hs code for DWI-BI (BHN BAKU MAKANAN) COA XW91704309,21069059 +"What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91704258,59",21069059 +What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01612130,29362400 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) BCOA UQ70402173,29362200 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70402173,29362200 +What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70206027,29362700 +"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70106020,206027",29362700 +What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70106020,29362700 +What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70106020,29362700 +What is the hs code for RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1701002,29362300 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI16070010,29362900 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT16060057,32041900 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT17010020,29362400 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70303084,29362200 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70303084,29362200 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70303084,29362200 +"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70303082,84",29362200 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70303082,29362200 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70303082,29362200 +What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20160302,29362800 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA TL01600099,29362800 +What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE01607048,29362100 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70303084,29362200 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70303084,29362200 +What is the hs code for QUINOLINE YELLOW 70 E 104 (BHN BAKU KOSMETIK)COA 16RM0040,32041710 +What is the hs code for ESOMEPRAZOLE SODIUM STERILE (34PERCENT TO 38PERCENT W/W)COA AESS16003,29333990 +"What is the hs code for PANTOPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W)BHN BAKU OBAT, COA APSS16004",29333990 +"What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU OBAT), COA UJ718",29181400 +What is the hs code for MANNITOL POWDER USP/EP (BHN BAKU OBAT) COA.301704302,29054300 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP17043685, TP17043686",29211900 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT16090332,29362400 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00316017,29362300 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00216024,29362200 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00316017,29362300 +What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB09140224,29362500 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00316017,29362300 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA MCS1603A67 S/D 75,80,81",29189900 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU KOSMETIK) COA UT16120157,29362100 +What is the hs code for PARSOL MCX 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517040078,29189900 +What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91705067,29189900 +"What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0014952",29362500 +What is the hs code for HEXETIDINE (BAHAN BAKU OBAT) COA.FG17200742,29335990 +What is the hs code for DOXYCYCLINE MONOHYDRATE (BHN BAKU OBAT) COA DX170504001,29413000 +What is the hs code for CEFPIROME SULFATE SODIUM CARBONATE (B BAKU OBAT) COA 1704401M,29419000 +What is the hs code for FIBRE DRUM (DRUM KOSONG),48192000 +"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT )COA.ASG/05/020517,030517...",29420000 +What is the hs code for AC019KC PHYTOVITYL C 5KG BHN BAKU KOSMETIK COA 0013570,39139090 +What is the hs code for AC019KC PHYTOVITYL C 5KG BHN BAKU KOSMETIK COA 13570,39139090 +What is the hs code for THE MATCHA CONCOMBRE (BHN BAKU KOSMETIK) COA 2648836,33029000 +What is the hs code for B-CAROTENE 10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT16110011,32041900 +What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20170101,29362800 +What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1705001 S/D 8,29224900 +What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ70107004,29189900 +What is the hs code for CETIRIZINE DIHYDROCHLORIDE PH EUR (BHN BAKU OBAT) COA SLL/CTRI/0417001,29395900 +What is the hs code for GINKGO BILOBA DRY EXTRACT HF (BHN BAKU SUMPLEMEN) COA 17152,13021990 +What is the hs code for LORATADINE MICRONIZED (BHN BAKU OBAT) COA LRH6109,29333990 +What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN0160117,29221990 +What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU KOSMETIK) COA VBN206116,29221990 +"What is the hs code for CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 016.633, 016.664",90189090 +What is the hs code for RESTYLANE SB VITAL LIDO 1 ML (BHN BAKU OBAT) COA 14838-2,90189090 +What is the hs code for RES SB VITAL LIGHT LIDO 1 ML (BHN BAKU OBAT) COA 14765-1,90189090 +What is the hs code for RESTYLANE LIDOCAINE 1 ML D16 (BHN BAKU OBAT) COA 15141-1,90189090 +What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML (BHN BAKU OBAT) COA 15055-1,90189090 +"What is the hs code for CUREBERRY (BHN BAKU KOSMETIK), COA.163186",13021990 +What is the hs code for ALPINIAWHITE (BHN BAKU KOSMETIK) COA 170102,13021990 +"What is the hs code for ALPINIAWHITE( BHN BAKU KOSMETIK), COA 170441",13021990 +What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 170473,38249999 +What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 170083,29329990 +What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 170304,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595108,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595107,38249999 +What is the hs code for OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594997,38249999 +What is the hs code for OPADRY AMB MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595104,38249999 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595105,39061090 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595105,39061090 +What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595065,32151900 +What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595065,32151900 +What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595065,32151900 +What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593384,32151900 +What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595065,32151900 +What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595103,39061090 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595099,38249999 +What is the hs code for ACRYL EZE PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595096,39061090 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595096,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595106,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595145,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595094,38249999 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594890,39061090 +What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594782,38249999 +What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595098,38249999 +What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595097,38249999 +What is the hs code for BIOTOX (R) (BHN BAKU OBAT UTK PAKAN TERNAK) COA 270417-342,23099090 +What is the hs code for ECOTRACE (R) FE 20PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC100516,29224900 +What is the hs code for LIQUIPHOS (R) STRONG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 030417-289,23099090 +What is the hs code for LIQUIPHOS (R) STRONG (BHN BAKU UTK PAKAN TERNAK) COA 020517-356,23099090 +What is the hs code for PERMETHRIN PHARMA GRADE BHN BAKU OBAT COA 174046003,29163990 +What is the hs code for CYANOCOBALAMINE VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1704680165,29362600 +What is the hs code for LABRAFIL M 1944 CS (BHN BAKU OBAT) COA.161499,28399000 +What is the hs code for PRECIROL ATO 5 (BHN BAKU OBAT) COA.163914,28399000 +What is the hs code for SUPPOCIRE AM PELLETS (BAHAN BAKU OBAT) COA.16E3503,28399000 +What is the hs code for TEFOSE 63 (BAHAN BAKU OBAT) COA.163177,28399000 +What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121707734,28363000 +What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK) COA.LDC 98 17,39139090 +What is the hs code for CINNARIZINE (BHN BAKU OBAT) COA 011 05 2017 CIN,29335990 +What is the hs code for AMBROXOL HYDROCHLORIDE POWDER (BHN BAKU OBAT) COA AHM/17035,29420000 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP13417,28363000 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP13417,28363000 +What is the hs code for OPADRY II TAN (BHN BAKU OBAT UTK PEWARNA TABLET) COA.DT660907,38249999 +What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT661988,32151900 +What is the hs code for OPALUX ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT661989,32151900 +What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT661990,32151900 +What is the hs code for SELVOL 540 PVOH 25 KG BAG (BHN BAKU KOSMETIK) COA PO41683061,39139090 +What is the hs code for PIROXICAM (BHN BAKU OBAT) COA PRX2016009M,29349990 +"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609088,89",32041900 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70402224,29362200 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT17010021,29362400 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT17020016,29362800 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA TL017020016,29362800 +"What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL01611911,1920",29362700 +"What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL01611856,859,911",29362700 +What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW91705112,21069059 +"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ61206148, 149,6029...",29362700 +"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70206048,306066",29362700 +What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01702526,29362700 +What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01702526,29362700 +What is the hs code for B2 RIBOFLAVIN UNIVERAL 5KG BAG ALU (BHN BAKU MAKANAN) COA UQ61010219,29362300 +"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70402213,2224",29362200 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70402213,29362200 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL01701616,29362400 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01701617,29362400 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) BCOA TL01701617,29362400 +"What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4452966142",39139090 +What is the hs code for CILOSTAZOL USP (BHN BAKU OBAT) COA 6004CB2ARI,29337900 +What is the hs code for THIOGLYCOLIC ACID 99PCT COSMETIC GRADE (BHN BAKU KOSMETIK) COA.0000058766,29309090 +"What is the hs code for AMMONIUM THIOGLYCOLATE 71PCT(60PCT TGA) BHN BAKU KOSMETIK, COA.0000058767",29309090 +"What is the hs code for THIOGLYCOLIC ACID 80PCT COSMETIC GRADE, BHN BAKU KOSMETIK, COA 0000058768",29309090 +"What is the hs code for MONOETHANOLAMINE THIOGLYCOLATE 83PCT (50PCT TGA) BHN BAKU KOSMETIK, COA 0000058769",29221100 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01704147,286...",29362700 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17010017,29362100 +"What is the hs code for VC ASCORBIC ACID DC 97PCT, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG1704007",29362700 +"What is the hs code for VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPB1704247, HPD1705002",29362700 +"What is the hs code for VC SODIUM ASCORBATE DC ,25KG BAL (BAHAN BAKU SUPLEMEN) COA HPN1705155,68,73,81",29362700 +"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 1705EF8912",29224900 +What is the hs code for SALBUTAMOL SULPHATE BP (BHN BAKU OBAT) COA SLL/55/0317015,29225090 +What is the hs code for ALLOPURINOL BP/EP (BHN BAKU OBAT) COA SLL/ALP/0816003,29335990 +What is the hs code for CYANOCOBALAMINE VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1704951503,29362600 +"What is the hs code for CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 017.420",90189090 +What is the hs code for RESTYLANE SKINB VITLIDO 1 MLD16 (BHN BAKU OBAT) COA 14898-2,90189090 +What is the hs code for REST SKINB VITALLGHLIDO 1 MLD16 (BHN BAKU OBAT) COA 14994-2,90189090 +What is the hs code for RESTYLANE LIDOCAINE 1 ML D16 (BHN BAKU OBAT) COA 15141-1,90189090 +What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML (BHN BAKU OBAT) COA 15055-1,90189090 +"What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK), COA.170304",38249999 +What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 170370,13021990 +"What is the hs code for SAKURA EXTRACT B BHN BAKU KOSMETIK), COA 170433",13021990 +What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 170467,13021990 +What is the hs code for OUBAKU LIQUID BI (BHN BAKU KOSMETIK) COA 170365,13021990 +What is the hs code for KETOPROFEN (BHN BAKU OBAT) COA.184421,29183000 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00616161,29362800 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT16120031,32030010 +What is the hs code for FLORAGLO LUTEIN 20PCT SAF (BHN BAKU SUPLEMEN) COA UE01704031,32030010 +What is the hs code for THE MATCHA 1 P001062 (BHN BAKU KOSMETIK) COA 0000006987,33029000 +What is the hs code for PLAISANCE P116808 (BHN BAKU KOSMETIK) COA.0000008081,33029000 +What is the hs code for LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA.02/16-GL4,28399000 +What is the hs code for LEMON SECRETS (LEMON 40 BRIX) (B. BAKU KOSMETIK) COA02/16-GL4.SAMPLE NO COMMERCIAL VALUE,28399000 +What is the hs code for SUPPOCIRE NA PELLETS (BAHAN BAKU SUPLEMEN) COA.16E3907,28399000 +What is the hs code for SUPPOCIRE NA PELLETS (BAHAN BAKU SUPLEMEN) COA.16E4305,28399000 +What is the hs code for SUPPOCIRE NA PELLETS (BAHAN BAKU SUPLEMEN) COA.17E0707,28399000 +What is the hs code for GELUCIRE 44/14 (BAHAN BAKU SUPLEMEN) COA.163021,28399000 +What is the hs code for SUPPOCIRE AM PELLETS (BHN BAKU SUPLEMEN) COA. 16E3503,28399000 +What is the hs code for CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA.1GC01CLB ZP48D 25MT,39139090 +What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BH04006,29349990 +What is the hs code for MEROPENEM WITH SODIUM CARBONATE (BHN BAKU OBAT) COA P900200,30039000 +What is the hs code for CEFOTAXIME SODIUM STERILE USP (BHN BAKU OBAT) COA Q200900,29419000 +What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA Q600200,29419000 +What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 1603847188,29372200 +What is the hs code for DICLOFENAC SODIUM (BHN BAKU OBAT) COA 170155,29224900 +What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA EKB,39139090 +What is the hs code for PROMOIS WS (BHN BAKU KOSMETIK) COA DCN,39139090 +What is the hs code for PROMOIS S-CAQ (BHN BAKU KOSMETIK) COA DBM,39139090 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA.ROA130177,28363000 +"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6278668",38210010 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7080723,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6336799,38210010 +What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6286718,38210010 +What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6130548,38210010 +"What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6284972,7093593",38210010 +"What is the hs code for BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7030910",38210010 +"What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6295747,7033659",38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 6336799,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009836,38210010 +What is the hs code for BOTTLE BACTO AGAR 454G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009856,38210010 +"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7065608,7081793",38210010 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7018890,38210010 +What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6319905,38210010 +"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6155865",38210010 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009966,38210010 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7068731,38210010 +"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6314700,7045539",38210010 +What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009829,38210010 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7017943,38210010 +What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6278668,38210010 +"What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6250612",38210010 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6278737,38210010 +What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7047892,38210010 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6291710,38210010 +What is the hs code for BOTTLE MALT AGAR 500G. (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7041754,38210010 +"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7080701,702",38210010 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6333840,38210010 +"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7009834",38210010 +What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6257924,38210010 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7080723,38210010 +What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009581,38210010 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6319903,38210010 +"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7005840,7053894",38210010 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6320612,38210010 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053952,38210010 +What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7005857,38210010 +"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7102884,9903",38210010 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7102903,38210010 +What is the hs code for BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060762,38210010 +What is the hs code for SOLUTION BACTERIOSTAT CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3477C419,38210010 +What is the hs code for SOLUTION CLEANING CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0046C521,38210010 +What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7088559,38210010 +What is the hs code for CULTURESWAB STERILE SINGLE SWAB 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH CACI15,38210010 +What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 6287929,38210010 +What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7109998,38210010 +What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009829,38210010 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060731,38210010 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6320612,38210010 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7081822,38210010 +What is the hs code for BOTTLE TRYPTOSE BROTH0 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060807,38210010 +What is the hs code for BOTTLE PROTEOSE PEPTONE NO.3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7107877,38210010 +What is the hs code for BOTTLE BILE SALTS NO 3 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6209796,38210010 +What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7017983,38210010 +What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7005857,38210010 +What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6201884,38210010 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7084577,38210010 +What is the hs code for PAIL LAURYL TRYPTOSE BROTH 2KG(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7017945,38210010 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7068859,38210010 +What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6229558,38210010 +What is the hs code for BOTTLE NITRATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6342774,38210010 +What is the hs code for BOTTLE PHENOL RED MANNITOL BR BBL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 6327837,38210010 +What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7110693,38210010 +What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7088775,38210010 +What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6315869,38210010 +What is the hs code for BOTTLE RAPPAPORT VASSILIADIS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7081822,38210010 +What is the hs code for BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6327604,38210010 +What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6319507,38210010 +What is the hs code for BOTTLE STANDARD METHODS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7017680,38210010 +What is the hs code for BOTTLE TRYPTONE GLUCOSE EXT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060509,38210010 +What is the hs code for BOTTLE YPD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7053905,38210010 +What is the hs code for DROPPER LACTOPHENOL COTTON BLUE STAIN (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6279744,38210010 +What is the hs code for BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7082926,38210010 +What is the hs code for SWUBE SINGLE SWAB STERILE COTTON TIP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 35616008,38210010 +"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6336799",38210010 +"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7041588",38210010 +What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7005527,38210010 +What is the hs code for CD14 APC MPHLP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7068880,38210010 +What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7018612,38210010 +What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6350858,38210010 +What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6215857,38210010 +"What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7068890",38210010 +What is the hs code for CD10 FITC HI10A 60 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6354550,38210010 +What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 6228624,38210010 +What is the hs code for CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7123691,38210010 +What is the hs code for PERM/WASH BUFFER 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6356786B,38210010 +What is the hs code for HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6259506,38210010 +What is the hs code for 7-AAD STINING SOLUTION 2ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6274739A,38210010 +What is the hs code for CD4 APC SK3 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6291874,38210010 +"What is the hs code for FASTIMMUNE IFN-GAMMA/IL... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6343739",38210010 +What is the hs code for CYTOFIX FLXATION BUFFER 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6292698,38210010 +What is the hs code for STAIN BUFFER FBS 500ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6326635,38210010 +What is the hs code for BOTTLE LETHEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6258903,38210010 +What is the hs code for VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6197586,38210010 +What is the hs code for BOTTLE TRYPTICASE SOY AG ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7045891,38210010 +What is the hs code for VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6333739,38210010 +"What is the hs code for VIAL E COLL H ANTISERUM H7 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6281546",38210010 +What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT 10X10MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6251799,38210010 +What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7102829,38210010 +What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7067660,38210010 +What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6092802,38210010 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3MI(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6309655,38210010 +What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA.70325,39139090 +What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 70405,39139090 +"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7095722",38210010 +"What is the hs code for PROTEIN TRANSPORT INHIBITOR SOLN 0.7ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6189672",38210010 +What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M110243,29339990 +"What is the hs code for ALLOPURINOL (BHN BAKU OBAT) COA 17011AY3ARII, 17012AY3ARII",29335990 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121607486,121707734,48",28363000 +What is the hs code for PEG 400 (BAHAN BAKU KOSMETIK) COA.AKW0003785,39139090 +What is the hs code for CLOZAPINE (BHN BAKU OBAT) COA 730106,29335990 +"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO161104, CO160202",39139090 +"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO161104, CO160202",39139090 +"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO161104, CO160202",39139090 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170302,39139090 +What is the hs code for WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK)COA EG138-160301,39139090 +What is the hs code for LINEN OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA LIU170302-H,39139090 +What is the hs code for INCA ANCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK)COA II170405-AI-D-BIO,39139090 +What is the hs code for AMISOL TRIO (BHN BAKU KOSMETIK) COA 1629114,39139090 +What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769015093H,39139090 +What is the hs code for LECIGEL (BHN BAKU KOSMETIK) COA 1631314,39139090 +What is the hs code for LECIGEL (BHN BAKU KOSMETIK) COA 1631315,39139090 +What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5457516,39139090 +What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829015062H,39139090 +"What is the hs code for CAPIXYL (BHN BAKU KOSMETIK), COA 830015198H",39139090 +"What is the hs code for CAPIXYL (BHN BAKU KOSMETIK), COA 830015254H",39139090 +What is the hs code for LANABLUE (BHN BAKU KOSMETIK) COA 5470017,39139090 +What is the hs code for LECIGEL (BHN BAKU KOSMETIK) COA 1700605,39139090 +What is the hs code for LECIGEL (BHN BAKU KOSMETIK) COA 1710601,39139090 +What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5452816,39139090 +What is the hs code for PRO-LIPO NEO (BHN BAKU KOSMETIK) COA 1707301,39139090 +What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025025H,39139090 +What is the hs code for AMISOL TRIO (BHN BAKU KOSMETIK) COA 1629114,39139090 +"What is the hs code for CW 5C 5PCT CLEAR BHN BAKU KOSMETIK, COA 785015305H",39139090 +What is the hs code for LECIGEL (BHN BAKU KOSMETIK) COA 1710601,39139090 +What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015046H,39139090 +What is the hs code for PROGELINE (BHN BAKU KOSMETIK) COA 820053903F,39139090 +What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025025H,39139090 +What is the hs code for ASTABIO ARV-S (BHN BAKU OBAT) COA.1703061K,32030010 +What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA.8MT170367,30032000 +What is the hs code for MAPROTILINE HCL (BHN BAKU OBAT) COA 5000/04/17,29214900 +What is the hs code for SPI PX 507 (BHN BAKU MAKANAN) COA XW91705184,21069059 +What is the hs code for O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 012017/004350,39139090 +What is the hs code for SK BIOLAND BIO SODIUM HYALURONATE POWDER (MMW) (B BAKU KOSMETIK)COA CHP1170530,39139090 +What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-271347,39139090 +What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 040717 061416,39139090 +What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK)COA GSC K 012547,39139090 +What is the hs code for SK BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-021247,39139090 +What is the hs code for SK BIOLAND OLIGO HA (BHN BAKU KOSMETIK) COA OHA 042457,39139090 +What is the hs code for SK BIOLAND ALWHITE 7 (BHN BAKU KOSMETIK)COA CLHW 020186,39139090 +What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD 021447,39139090 +What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702322512,29372900 +What is the hs code for TELMISARTAN (BHN BAKU OBAT) COA TM0140617,29339990 +What is the hs code for GABAPENTIN (BHN BAKU OBAT) COA GBW1705134,29224900 +"What is the hs code for RANITIDINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA RH 118 05 17, RH 119 05 17",29321900 +What is the hs code for EVERMAP 160K (BHN BAKU KOSMETIK) COA.C17031701E160K,38249999 +What is the hs code for VITAMIN PREMIX TYPE MM81 (105PCT) (B. BAKU MAKANAN) COA XW91705186,21069059 +What is the hs code for INSTANT BLACK TEA POWDER TH B430 (BHN BAKU MAKANAN) COA 2017020501,21012020 +What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA LOT NO. 17053104,38029090 +What is the hs code for B-CAROTENE 10PCT EMULS (BHN BAKU MAKANAN) COA UE01611018,32041900 +What is the hs code for VITAMIN A PALM 1.0M + VIT D3 100000 (BHN BAKU MAKANAN) COA UE01611018,29362100 +What is the hs code for MXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20170101,29362800 +What is the hs code for VITAMIN B12 1PCT SD (BHN BAKU SUPLEMEN) COA UT17010007,29362600 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT17010010,32041900 +What is the hs code for COATED ASCORBIC ACID TYPE EC (BHN BAKU MAKANAN) COA TL01703894,29362700 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00616161,29362800 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17020051,29362100 +What is the hs code for VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT17010033,29362100 +What is the hs code for NATURAL MIXED TOCOPHEROLS (BHN BAKU KOSMETIK) COA.170507M002,29362800 +What is the hs code for VISTANOL GDHR (BHN BAKU KOSMETIK) COA EJF,39139090 +What is the hs code for SILASOMA MFA (S) (BHN BAKU KOSMETIK) COA EGB,39139090 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA DDI,39139090 +What is the hs code for PROMOIS WG-SIG (BHN BAKU KOSMETIK) COA DBF,39139090 +What is the hs code for SILASOMA REA (S)BHN BAKU KOSMETIK) COA DBD,39139090 +What is the hs code for METHOCEL E15 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011G8SL01,39123900 +What is the hs code for ETHOCEL STANDARD 20 PREMIUM (BHN BAKU OBAT UTK PEWARNA TABLET) COA D184G1J021,39123900 +What is the hs code for METHOCEL E15M PREMIUM LV (BHN BAKU OBAT UTK PEWARNA TABLET)COA D011GCKL02,39123900 +"What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK), COA.170569",29329990 +What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 170585,38249999 +"What is the hs code for FLAVOSTERONE SB( BHN BAKU KOSMETIK), COA 170569",13021990 +What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 170569,29329990 +What is the hs code for PEACH LEAF LIQUID B (BHN BAKU KOSMETIK) COA 170305,13021990 +What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 170467,13021990 +What is the hs code for ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.SH596112,39061090 +What is the hs code for OPADRY AMB RED (BAHAN BAKU OBAT UTK PEWARNA TABLET) COA.SH595732,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.SH595728,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595828,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595829,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595791,38249999 +What is the hs code for OPADRY AMB PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595797,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595778,38249999 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595176,39061090 +What is the hs code for ACRYL EZE PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595825,39061090 +What is the hs code for ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595826,39061090 +What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595774,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595795,38249999 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595827,39061090 +What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595234,38249999 +What is the hs code for OPADRY AMB BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595799,38249999 +"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA MCS1602079,97",29189900 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ60813235,29362500 +What is the hs code for PARSOL MCX 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517050094,29189900 +"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT17010003,7,16,21",29362800 +"What is the hs code for NIACINAMIDE PC, 29KG BAL (BHN BAKU KOSMETIK) COA OP81702006",29362900 +"What is the hs code for PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517040078",29189900 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA MCS1605116,29189900 +What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001440327,29189900 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA MCS1603C82,D44,D68,E28",29189900 +"What is the hs code for PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517050094",29189900 +What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES1611066,29189900 +"What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA MCS1607004",29189900 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT16100097,29362800 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)BHN BAKU KOSMETIK, COA UT17020158",29362100 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01606109,29362900 +"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA MCS1603E29,30,31,32",29189900 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA MCS1603D88,89,91,92",29189900 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT17010003,29362800 +"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01701001,1007,1008",29362400 +What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01610815,29362400 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708160098,99,123",29189900 +"What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11704017,27",29362900 +"What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7033659",38210010 +"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7103621",38210010 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6293897,38210010 +What is the hs code for BOTTLE D-MANNOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7135976,38210010 +What is the hs code for BOTTLE MALTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7128637,38210010 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7055755,38210010 +What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 170110416,38210010 +"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7041588",38210010 +"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7010897,7065702",38210010 +"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7045535,...",38210010 +What is the hs code for VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6197586,38210010 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6337887,38210010 +What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7045891,38210010 +What is the hs code for NOREPINEPHRINE BITARTRATE (BHN BAKU OBAT) COA 370104,29379010 +What is the hs code for CHOLINE L-BITARTRATE (BAHAN BAKU OBAT) COA.3012605,29231000 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101852217A545,17021100 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP17063035,36",29211900 +What is the hs code for BICAR PHARMA 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA.RBA1651700,28363000 +What is the hs code for VIUSID AQUA ORAL SOLUTION (PAKAN IKAN BERBENTUK CAIR) COA N-6,23099090 +What is the hs code for KSP - 100 (BHN BAKU KOSMETIK) COA 706516,39139090 +What is the hs code for MACADAMIA EXFOL TM 100 (BHN BAKU KOSMETIK) COA.51117,39139090 +What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA.70318,39139090 +"What is the hs code for SULPHAMETHOXAZOLE BP MICRONISED (BHN BAKU OBAT) COA.15380617,15390617...",29351000 +What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.17100272,29391900 +"What is the hs code for METHYLPREDNISOLONE EP6/USP38 (BHN BAKU OBAT) COA.NMP170607, 609",29372900 +What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND170405,29372200 +What is the hs code for ALLOPURINOL BP (BHN BAKU OBAT) COA ALP0010417,29335990 +What is the hs code for LABRAFIL M 1944 CS (BHN BAKU OBAT) COA.162835,28399000 +What is the hs code for TRANSCUTOL P (BHN BAKU OBAT) COA.164103,28399000 +What is the hs code for TEFOSE 63 (BAHAN BAKU OBAT) COA.163177,28399000 +What is the hs code for CETYL PALMITATE PELLETS CAR (BAHAN BAKU OBAT) COA.161792,28399000 +What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 162392,28399000 +What is the hs code for DEFERASIROX (BHN BAKU OBAT) COA DR0010217,29339990 +What is the hs code for CEFIXIME TRIHYDRATE (BHN BAKU OBAT) COA Q200100,29419000 +What is the hs code for CEFIXIME MICRONIZED (BHN BAKU OBAT) COA Q500200,29419000 +What is the hs code for CEFTRIAXONE SODIUM STERILE BP (BHN BAKU OBAT) COA P702200,29419000 +What is the hs code for MEROPENEM WITH SODIUM CARBONATE (BHN BAKU OBAT) COA P900200,30039000 +"What is the hs code for AMLODIPINE BESILATE BP/EP (BHN BAKU OBAT), COA. AMB/052/06/17",29339990 +"What is the hs code for POVIDONE K30 (BHN BAKU OBAT) COA PK30-170522F13, 170528F32",39059990 +What is the hs code for POVIDONE K25 (BHN BAKU OBAT) COA PK25-170224F32,39059990 +"What is the hs code for CROSPOVIDONE XL (BHN BAKU OBAT) COA PP170512XL,513XL SAMPLE NO COMMERCIAL VALUE",39059990 +"What is the hs code for CROSPOVIDONE XL-10 (BHN BAKU OBAT, COA.PP170519XL-10,0516XL-10,SAMPLE NO COMMERCIAL VALUE",39059990 +"What is the hs code for POVIDONE K25 (BHN BKU OBAT) COA PK25-170228F21,224F32 SAMPLE NO COMMERCIAL VALUE",39059990 +"What is the hs code for POVIDONE K30 (BHN BAKU OBAT) COA PK30-170514F11,516F21,32,SAMPLE NO COMMERCIAL VALUE",39059990 +"What is the hs code for POVIDONE K90 (BHN BAKU OBAT) COA PK90-170427FF1, SAMPLE NO COMMERCIAL VALUE",39059990 +What is the hs code for DOPAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA.17100379,29222900 +What is the hs code for KETOROLAC TROMETAMOL /TROMETHAMINE (BHN BAKU OBAT) COA.17100413,29339990 +What is the hs code for NOREPINEPHRINE BITARTRATE (BHN BAKU OBAT) COA 390104,29379010 +What is the hs code for OXFENDAZOLE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 60417025,29242990 +What is the hs code for OXYTETRACYCLINE DIHYDRATE... (BHN BAKU OBAT UTK PAKAN TERNAK) COA ZT170621,29413000 +"What is the hs code for CAPTOPRIL (BHN BAKU OBAT) COA 5103-17-103, 119",29339990 +What is the hs code for INOSITOL (BHN BAKU OBAT) COA 201704145,29061300 +What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 1706025,29349990 +What is the hs code for GLUCOSAMINE HCL (BHN BAKU OBAT) COA XH2017052701,29329990 +What is the hs code for LEVOFLOXACIN HEMIDRATE (FREE ALKALINE) B. BAKU OBAT COA C008-1704602,29349990 +What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20170612,29309090 +What is the hs code for METHYL SULFONYL METHANE USP (B.BAKU OBAT) COA 17060601,29309090 +What is the hs code for LINCOMYCIN HCL EP (BHN BAKU OBAT) COA 1706020,29419000 +What is the hs code for MEFENAMIC ACID COMPACTED (BHN BAKU OBAT) COA MFAC-1705235-A,29224900 +"What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1706009,6201,6217",29224900 +What is the hs code for FIBRE DRUM ( DRUM KOSONG) PRICE AND AMOUNT ARE FOR CUSTOM ONLY,48192000 +"What is the hs code for CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 20170622",38249999 +What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT662844,32151900 +What is the hs code for OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT662847,32151900 +What is the hs code for OPASPRAY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT662696,32151900 +What is the hs code for OPASPRAY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT662850,32151900 +What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT663264,32151900 +"What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK)COA MS/2460/B15/LOREAL/100517,290617",39123900 +"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA MS/70120/B15/LOREAL/280617",39123900 +"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA MS/70120/YOIB155/LOREAL/130417",39123900 +What is the hs code for SENSIVA SC 50 CN 10KG KA (BHN BAKU KOSMETIK) COA.1331519,38249999 +What is the hs code for FDANDC BLUE #2/INDIGO CARMINE... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP776267AX5538,32151900 +What is the hs code for FDANDC RED #40/ALLURA RED AC AL(BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP776679 AX6248,32151900 +What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP758988,32151900 +What is the hs code for FDANDC YELLOW #6/SUNSET YELLOW... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP779705 AX7664,32151900 +What is the hs code for FDANDC YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP778726AX6793,32151900 +What is the hs code for DANDC YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP774846AX4855,32151900 +What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417008,29362500 +What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417008,29362500 +What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417008,29362500 +What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417008,29362500 +What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417008,29362500 +What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417008,29362500 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT17010005,29362900 +What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20160302,29362800 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11704027,29362900 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO)BHN BAKU SUPLEMEN, COA UT17030726",29362100 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609090,32041900 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT16110352,29362800 +What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417008,29362500 +What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE01607055,29362100 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70502239,29362200 +"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70502238,39",29362200 +What is the hs code for CANTHAXANTHIN 10PCT CWS/S (BHN BAKU MAKANAN) COA UT16120004,32041900 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11704027,29362900 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11704027,29362900 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609089,32041900 +What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01606109,29362900 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT16060057,32041900 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)BHN BAKU MAKANAN, COA UT17020158",29362100 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17030726,29362100 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ61210273,29362300 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT16110352,29362800 +What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL01701009,29362400 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT17020158",29362100 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT16060057,32041900 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609089,32041900 +What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01606109,29362900 +What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL01701009,29362400 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT16120060,29362100 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT17010006,29362900 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417030,29362200 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417030,29362200 +"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417005,7008",29362500 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417030,29362200 +"What is the hs code for ASCORBIC ACID 90PCT GRANULATION,25KG BAL (B. BAKU SUPLEMEN) COA WB00117972,73",29362700 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT16110066,32041900 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT16110352,29362800 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11704027,29362900 +What is the hs code for VITAMIN D3 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT17030060,29362900 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SII6070010,29362900 +What is the hs code for ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01704178,29362700 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01606109,29362900 +"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17010007,11",29362400 +"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ61210278,70110001",29362300 +"What is the hs code for VITAMIN PREMIX 103093-A (BHN BAKU MAKANAN) COA XW91705250,51",21069059 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17010055,29362900 +"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70403105,3135",29362200 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT16120025,29362600 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT16120172,29362800 +What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1701006,29362300 +"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70502237,38,39",29362200 +"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70503129,35",29362200 +"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70403105,UQ70503129",29362200 +"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70403104,3105",29362200 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70403104,29362200 +"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70403104,3129,3134,3135",29362200 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17020001,29362100 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT16090336,29362400 +What is the hs code for SPI PX 507 (BHN BAKU MAKANAN) COA XW91705185,21069059 +"What is the hs code for MEG-3 '30' N-3 INF OIL, 4,5KG PJUG (BHN BAKU SUPLEMEN) COA.TS00008021",29362500 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP14817,28363000 +What is the hs code for SK BIOLAND ASTRIN AG BHN BAKU KOSMETIK COA BAG-030126,39139090 +What is the hs code for SK BIOLAND ARBUTIN BHN BAKU KOSMETIK COA ARP 481537,39139090 +What is the hs code for SK BIOLAND ARBUTIN BHN BAKU KOSMETIK COA ARP 1052296,39139090 +What is the hs code for SK BIOLAND PORTULACA EXTRACT BHN BAKU KOSMETIK COA NMP L 333057,39139090 +What is the hs code for SK BIOLAND NANOMOIST D BHN BAKU KOSMETIK COA NMSP D 021157,39139090 +What is the hs code for DPG FG (BHN BAKU KOSMETIK) COA A02691D,29094900 +What is the hs code for PG USP (BHN BAKU KOSMETIK) COA A0269IU,29053200 +"What is the hs code for OATWELL (R) 22,18KG BAG (BHN BAKU MAKANAN) COA SOF164303,04",21069059 +What is the hs code for VITAMIN A PALM 1.0M + VIT D3 100000 (BHN BAKU MAKANAN) COA UT17030039,29362100 +What is the hs code for OPADRY AMB GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596303,38249999 +What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596294,38249999 +What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596293,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595902,38249999 +What is the hs code for OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596306,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596307,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596291,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596305,38249999 +What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596340,32151900 +What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596340,32151900 +What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596340,32151900 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596302,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596316,38249999 +What is the hs code for OPADRY AMB MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596315,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596311,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595148,38249999 +What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596309,38249999 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596301,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596162,38249999 +What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596308,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596317,38249999 +What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596290,39061090 +What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596304,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596310,38249999 +What is the hs code for OPADRY GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596298,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596299,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596292,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596300,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596296,38249999 +What is the hs code for OPADRY RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596297,38249999 +What is the hs code for PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PI0030616 (MC),29349920 +What is the hs code for CORTISONE ACETATE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1600926226,29372900 +What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA Q100300,29419000 +What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA Q600200,29419000 +What is the hs code for CEFTAXIDIME BUFFERED (BHN BAKU OBAT) COA Q101100,29419000 +What is the hs code for CEFOTAXIME SODIUM STERILE USP (BHN BAKU OBAT) COA Q201200,29419000 +"What is the hs code for CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 017.453",90189090 +"What is the hs code for RESTYLANE SKINB VITLIDO 1 MLD16 (BHN BAKU OBAT) COA 14898-2,15058-2",90189090 +What is the hs code for REST SKINB VITALLGHLIDO 1 MLD16 (BHN BAKU OBAT) COA 14994-2,90189090 +What is the hs code for RESTYLANE LIDOCAINE 1 ML D16 (BHN BAKU OBAT) COA 15141-1,90189090 +What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML (BHN BAKU OBAT) COA 15085-2,90189090 +What is the hs code for O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 030117/004441,39139090 +What is the hs code for SELVOL 540 PVOH 25 KG BAG (BHN BAKU KOSMETIK) COA PO41683061,39139090 +What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-1040617,29334910 +"What is the hs code for CAMELLIA OIL (BHN BAKU KOSMETIK), COA M290553",39139090 +What is the hs code for MARCOL 52 (BHN BAKU OBAT UTK PAKAN TERNAK) COA 17121HH702,27101989 +What is the hs code for MARCOL 52 (BHN BAKU PAKAN TERNAK) COA 17419HH701,27101989 +What is the hs code for CAPSULAC (R) 60 (BHN BAKU OBAT) COA. L100400517A545,17021100 +What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103872017A545,17021100 +What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104311417A552,17021100 +What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN0160117,29221990 +What is the hs code for CYANOCOBALAMINE VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1704840986,29362600 +"What is the hs code for PYRAZINAMIDE USP (BHN BAKU OBAT) COA PZ 044 F 17,PZ 045 F 17...",29339990 +"What is the hs code for PURIDROX TM COMPACTED, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B339892 S/D 4",29419000 +What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT17060023,29362500 +"What is the hs code for ROVIMIX AD3 1000/200,20KG BAL (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT17020089,90",29362100 +What is the hs code for ROVIMIX E 50 ADSORBATE (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT17040101,29362800 +What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 190417,25070000 +What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED(BHN BAKU OBAT UTK PAKAN TERNAK) COA MTP02617,28363000 +What is the hs code for LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUMPLEMEN) COA 16229,38249999 +What is the hs code for TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA625326,32151900 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA625404,38249999 +"What is the hs code for MONOCALCIUM PHOSPHATE (B.BAKU OBAT UTK PAKAN TERNAK)COA EVSHUE000313GBF,SAMPLE NO COMM VALUE",28352510 +What is the hs code for MONO-CALCIUM PHOSPHATE (B.BAKU OBAT UTK PAKAN TERNAK)COA BCL HUE000453GBF SAMPLE NO COMM VALUE,28352510 +What is the hs code for DICALCIUM PHOSPHATE (B.BAKU OBAT UTK PAKAN TERNAK) COA L-2/17,28352510 +What is the hs code for PERFECTAMYL AC (BHN BAKU KOSMETIK)COA H1242804,39139090 +"What is the hs code for LIGHT BLUE GLOBEADS L (70-170) BHN BAKU KOSMETIK, COA MS/70120/B15/LOREAL/280617",39123900 +"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA MS/2460/B15/LOREAL/100517",39123900 +What is the hs code for ALDAVINE 5X (BHN BAKU KOSMETIK) COA 5478717,39139090 +What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829015301H,39139090 +What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830015179H,39139090 +What is the hs code for CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 7850104,39139090 +"What is the hs code for LECIGEL (BHN BAKU KOSMETIK), COA 1710601",39139090 +"What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK), COA 828014899G",39139090 +What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015046H,39139090 +What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015208H,39139090 +"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70306068,69",29362700 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ61213328,29362500 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ61213329,29362500 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ61213329,29362500 +What is the hs code for SPI PX 507 (BHN BAKU MAKANAN) COA XW91706127,21069059 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL01702621,29362400 +What is the hs code for PX 103070C (BHN BAKU SUPLEMEN) COA XW91706128,21069059 +What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL01704169,29362700 +What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91705406,21069059 +"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17030060,61",29362900 +What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70306070,29362700 +What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70306071,29362700 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01809090,32041900 +What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01606109,29362900 +What is the hs code for DL A TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT16110352,29362800 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT16120007,29362900 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11705003,29362900 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ61213328,29",29362500 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01605006,29362900 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT16120172,29362800 +"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17010001,5",29362900 +What is the hs code for ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01704169,29362700 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UT61213329,29362500 +What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01703810,29362700 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01702621,29362400 +What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91706071,29362700 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ61210257,29362300 +"What is the hs code for NIACINAMIDE PC,20KG BAL (BHN BAKU KOSMETIK) COA OP81705014",29362900 +"What is the hs code for ARGAN OIL, 10KG PAIL PE(BHN BAKU KOSMETIK) COA AVD0014953",29362500 +"What is the hs code for PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517050089",29189900 +What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P7O06UA000,29189900 +"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00453869,57400",29189900 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01701010,29362400 +What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01701801,29362400 +What is the hs code for BEAUPLEX VH (BHN BAKU KOSMETIK) COA UF17027002,29189900 +What is the hs code for BEAUPLEX VH (BHN BAKU KOSMETIK) COA UF17082001,29189900 +"What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA MCS1605116",29189900 +What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P7O06UA000,29189900 +"What is the hs code for PARSOL EHS ,25KG PC (BHN BAKU KOSMETIK) COA MCS1607004",29189900 +What is the hs code for BARCROFT TM 0325 DRIED AL HYD GEL USP(BHN BAKU OBAT) COA.101758002,28183000 +What is the hs code for OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP783834,32151900 +What is the hs code for OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP783834,32151900 +"What is the hs code for STAY C 50, 20KG BOXNA (BHN BAKU KOSMETIK) COA UT17040035",29362700 +"What is the hs code for AMOXICILLIN TRIHYDRATE PURIMOX COMPACTED (BHN BAKU OBAT) COA M529136,152,162,229",29411019 +What is the hs code for CILOSTAZOL USP (BHN BAKU OBAT) COA 6004CB2ARI,29337900 +What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.17100439,29391900 +What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA P-53,29397900 +What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA P-53,29397900 +What is the hs code for B.I.O.KEY SELENIUM VM (BHN BAKU OBAT UTK PAKAN TERNAK) COA 251016-809,23099090 +What is the hs code for BIOTOX (BHN BAKU OBAT UTK PAKAN TERNAK) COA 280617-530,23099090 +What is the hs code for E.C.O TRACE FE 20PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC12021702,29224900 +What is the hs code for E.C.O TRACE MN 20PCT (BHN BAKU UTK PAKAN TERNAK) COA BC14011702,29224900 +What is the hs code for E.C.O.TRACE ZN 25PCT(BHN BAKU OBAT UTK PAKAN TERNAK) COA BC21041602,29224900 +What is the hs code for LIQUIPHOS STRONG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 020517-356,23099090 +What is the hs code for LIQUIPHOS STRONG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 020517-356,23099090 +What is the hs code for MIRANOL ULTRA C32 200KG PLASCTIC DRUM (BHN BAKU KOSMETIK) COA BP706275R,34029099 +What is the hs code for METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/17060256,29332900 +"What is the hs code for NYSTATIN (BHN BAKU OBAT) COA.C114033,35",29419000 +What is the hs code for EPA DHA 44 37 (BHN BAKU OBAT) COA EE4437-170710,29061300 +What is the hs code for PHENYTOIN SODIUM (BHN BAKU OBAT) COA.17100245,29332100 +What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 17100474,29221990 +What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 17100474,29221990 +"What is the hs code for PANTOPRAZOLE SODIUM (STERILE) BHN BAKU OBAT, COA SI/PPZ/00200617",29333990 +"What is the hs code for PANTOPRAZOLE SODIUM (STERILE) BHN BAKU OBAT, COA SI/PPZ/00200617",29333990 +What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND170405,29372200 +"What is the hs code for AMPICILLIN TRIHYDRATE PURICILLIN COMPACTED (BHN BAKU OBAT) COA. M842102 S/D 4 , 6,7,8",29411020 +What is the hs code for GRAPE SEED ORGANIC OIL C00031 (BHN BAKU KOSMETIK)COA RPH170201-ENBIO-RQ,39139090 +What is the hs code for WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK)COA EG138-170601,39139090 +What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK)COA CFM170301-PGH,39139090 +What is the hs code for LICORICE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA GLG161102-BGBIO,39139090 +What is the hs code for LICORICE ORGANIC OILY EXTRACT (BHN BAKU KOSMETIK)COA GLGT161102-HBIO,39139090 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170302,39139090 +What is the hs code for GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK)COA EG209-160402,39139090 +What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIVD160903-BGBIO,39139090 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO170601,39139090 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO170601,39139090 +"What is the hs code for BOTTLE TRYPTICASE SOY AG LP 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7142814",38210010 +"What is the hs code for HU REGULATORY T CELL ...(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7158981",38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6307974,38210010 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7041588,38210010 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7090816,38210010 +What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7082920,38210010 +What is the hs code for VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6197586,38210010 +"What is the hs code for BOTTLE TRYPTICASE SOY AG LP80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7142814",38210010 +What is the hs code for VIAL SAL O ANTIS POLY GRP AI VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6337887,38210010 +What is the hs code for CYCLETEST PLUS DNA REAGENT KIT RUO/GMP (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 7110822,38210010 +What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7055959,38210010 +"What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6228624,7116960",38210010 +What is the hs code for PERM/WASH BUFFER 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6356786,38210010 +What is the hs code for HU CD36 FITC CB (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7125585,38210010 +What is the hs code for ANNEXIN V FITC APOP DTEC... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7026585,38210010 +"What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7158901",38210010 +What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7068880,38210010 +What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7104797,38210010 +What is the hs code for CD117 PE 10402 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7094972,38210010 +What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6215857,38210010 +What is the hs code for CD14 PERCP MPHIP9 50 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7171991,38210010 +"What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6354550,715984",38210010 +"What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7123691",38210010 +What is the hs code for ANTI HLA DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7159533,38210010 +What is the hs code for CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7115545,38210010 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7041588,38210010 +What is the hs code for VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7088538,38210010 +What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7109549,38210010 +What is the hs code for BOTTLE HEMOGLOBIN SOL 2PCT 100ML 10EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7045874,38210010 +"What is the hs code for KIT CRYSTAL ANNAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7087889",38210010 +What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7102829,38210010 +What is the hs code for VIAL SAL O ANTISERUM GRP A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6246962,38210010 +What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009560,38210010 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6309655,38210010 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA.RBA1811700,28363000 +What is the hs code for METAMIZOLE SODIUM TYPE T 25KG (BHN BAKU OBAT) COA B0003,29331100 +What is the hs code for AC019KC PHYTOVITYL C 5KG BHN BAKU KOSMETIK COA 0013570,39139090 +What is the hs code for VITASMOOTH (R) 041 ( BHN BAKU OBAT) COA 121707720,28365010 +What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT663924,32151900 +What is the hs code for OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT663925,32151900 +What is the hs code for OPASPRAY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT663926,32151900 +What is the hs code for OPADRY II TAN (BHN BAKU OBAT UTK PEWARNA TABLET) COA.DT663920,38249999 +What is the hs code for ASTABIO ARV-S (BHN BAKU OBAT) COA.1703061K,32030010 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17050011,32030010 +What is the hs code for GENIVIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010015,29329990 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT17010010,32041900 +What is the hs code for COATED ASCORBIC ACID TYPE EC (BHN BAKU SUPLEMEN) COA TL01703912,29362700 +What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB00217177,29362100 +What is the hs code for MEG-3 (TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT17060023,29362500 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17020051,29362100 +What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT17010033,29362100 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA. DOC1791772,28363000 +What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT17060023,29362500 +What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ70107003,29189900 +What is the hs code for SK BIOLAND ALWHITE-7 (B BAKU KOSMETIK)COA CLHW-011177,39139090 +What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-590147,39139090 +What is the hs code for SK BIOLAND BIO SODIUM HYALURONATE POWDER (MMW) (B. BAKU KOSMETIK) COA CHP1170621,39139090 +What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK)COA MUP-011017,39139090 +What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 060117,39139090 +What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (B. BAKU KOSMETIK) COA SFP-N-040857,39139090 +What is the hs code for SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK)COA U170622,39139090 +What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD 021447,39139090 +What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702362711,29372900 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO170601,39139090 +What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-170301-GS,39139090 +What is the hs code for ROSE OILY EXTRACT (BHN BAKU KOSMETIK)COA ROS170604-H,39139090 +What is the hs code for LOTUS OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA NEN170605-H,39139090 +"What is the hs code for OMEPRAZOLE PELLETS 8,5 PCT (BHN BAKU OBAT) COA OP0217C044,050",30034100 +What is the hs code for PROMETHAZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA HPHCPL029,29343000 +What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 55166P,39139090 +What is the hs code for SWT 7L (BHN BAKU KOSMETIK) COA 1632001,39139090 +What is the hs code for SWT 7L (BHN BAKU KOSMETIK) COA 1629501,39139090 +What is the hs code for SWT 7L (BHN BAKU KOSMETIK) COA 1632001,39139090 +What is the hs code for PRO LIPO NEO (BHN BAKU KOSMETIK) COA 1713601,39139090 +"What is the hs code for HELIOGEL (BHN BAKU KOSMETIK), COA 1706301",39139090 +"What is the hs code for SWT 7L (BHN BAKU KOSMETIK), COA 1629501",39139090 +What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 17071101,29309090 +What is the hs code for CEFEPIME HYDROCHLORIDE/L-ARGININE STERILE (B BAKU OBAT) COA YS17136,29419000 +What is the hs code for MEROPENEM TRIHYDRATE WITH SODIUM CARBONATE STERILE(B.BAKU OBAT) COA S0820170506,30032000 +What is the hs code for PERMETHRIN PHARMA GRADE BHN BAKU OBAT COA PE0022-S77,29163990 +What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA.121707505,29054300 +"What is the hs code for SORBITOL SPECIAL TM MDF 85, SORBITOL( BHN BAKU OBAT) COA M7013",29054400 +What is the hs code for NYSTATIN MICRONIZED (BHN BAKU OBAT) COA.C130567,29419000 +"What is the hs code for METAMIZOLE SODIUM DAB /EP 7.0 (BHN BAKU OBAT) COA 1705676,5688,5690,5694",29331100 +What is the hs code for MARCOL 52 (BHN BAKU OBAT UTK PAKAN TERNAK) COA 17125HH701,27101989 +"What is the hs code for METAMIZOLE SODIUM DAB /EP 7.0 (BHN BAKU OBAT) COA 1705655,73,74,76",29331100 +What is the hs code for MANNITOL POWDER USP/EP (BHN BAKU OBAT) COA.301706304,29054300 +"What is the hs code for EUXYL K 100 CN 10KG KA (BHN BAKU KOSMETIK) COA 1315385, 1317274",38249999 +"What is the hs code for EUXYL PE 9010 CN 10KG KA (BHN BAKU KOSMETIK) COA 1329272,1331434,1331435",38249999 +What is the hs code for SENSIDIN DO CN 10KG CA (BHN BAKU KOSMETIK) COA 1331493,38249999 +"What is the hs code for EUXYL K 120 CN 10KG KA (BHN BAKU KOSMETIK) COA 1326779,1327068",38249999 +What is the hs code for EUXYL K 900 CN 10KG KA (BHN BAKU KOSMETIK) COA 1316900,38249999 +What is the hs code for GROTANOL 3025 CN 10KG KA (BHN BAKU KOSMETIK) COA 1330940,38249999 +What is the hs code for SENSIVA SC 50 CN 10KG KA (BHN BAKU KOSMETIK) COA 1331519,38249999 +"What is the hs code for EUXYL K 120 100 ML FL (BHN BAKU KOSMETIK) COA 1324731, SAMPLE NO COMMERCIAL VALUE",38249999 +"What is the hs code for EUXYL K 220 100 ML FL (BHN BAKU KOSMETIK) COA 1321271, SAMPLE NO COMMERCIAL VALUE",38249999 +"What is the hs code for EUXYL K 340 100 ML FL (BHN BAKU KOSMETIK) COA 1315684 , SAMPLE NO COMMERCIAL VALUE",38249999 +"What is the hs code for EUXYL K 350 100 ML FL (BHN BAKU KOSMETIK) COA 1330239, SAMPLE NO COMMERCIAL VALUE",38249999 +What is the hs code for EUXYL K 500 SAMPLES 100ML FL (BHN BAKU KOSMETIK) COA 1328484 SAMPLE NO COMMERCIAL VALUE,38249999 +"What is the hs code for EUXYL K 510 100ML FL (BHN BAKU KOSMETIK) COA 1310515,SAMPLE NO COMMERCIAL VALUE",38249999 +What is the hs code for EUXYL K 700 SAMPLES 100 ML FL (BHN BAKU KOSMETIK) COA 1328475 SAMPLE NO COMMERCIAL VALUE,38249999 +"What is the hs code for EUXYL K 702 SAMPLES 100 ML FL (BHN BAKU KOSMETIK) COA 1317499,SAMPLE NO COMMERCIAL VALUE",38249999 +What is the hs code for EUXYL K 703 100 ML FL (BHN BAKU KOSMETIK) COA 1324733 SAMPLE NO COMMERCIAL VALUE,38249999 +"What is the hs code for EUXYL PE 9010 SAMPLES 100 ML FL (BHN BAKU KOSMETIK) COA 1328644, SAMPLE NO COMMERCIAL VALUE",38249999 +"What is the hs code for SENSIVA PA 20 SAMPLES 100 ML FL (BHN BAKU KOSMETIK) COA 1330238, SAMPLE NO COMMERCIAL VALUE",38249999 +"What is the hs code for SENSIVA PA 30 (SAMPLE) 100 ML FL (BHN BAKU KOSMETIK) COA 1324734, SAMPLE NO COMMERCIAL VALUE",38249999 +What is the hs code for PARMETOL A 28 SAMPLE 250 ML FL (BHN BAKU KOSMETIK) COA 1324734 SAMPLE NO COMMERCIAL VALUE,38249999 +"What is the hs code for PARMETOL DF 35 N SAMPLE 250 ML FL (BHN BAKU KOSMETIK) COA 1311473,SAMPLE NO COMMERCIAL VALUE",38249999 +"What is the hs code for PARMETOL K 20 SAMPLE 250 ML FL (BHN BAKU KOSMETIK) COA 1299377,1304762",38249999 +"What is the hs code for PARMETOL MBX SAMPLE 250 ML FL (BHN BAKU KOSMETIK) COA 1314577, SAMPLE NO COMMERCIAL VALUE",38249999 +"What is the hs code for GROTAN BA 21 SAMPLE 250 ML FL (BHN BAKU KOSMETIK) COA 1314740,SAMPLE NO COMMERCIAL VALUE",38249999 +What is the hs code for DL PANTHENOL 50L (BHN BAKU KOSMETIK) COA TL01701604,29362400 +"What is the hs code for STAY C 50, 5KG BALUS (BHN BAKU KOSMETIK) COA UT17030024",29362700 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70502258,29362200 +"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70502258, 59",29362200 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70503148,29362200 +"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70503148,50",29362200 +What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ70309012,29362300 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17010011,29362400 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU MAKANAN) COA UT16120007,29362900 +What is the hs code for PX 103070 C3 (BHN BAKU MAKANAN) COA XW91706238,21069059 +What is the hs code for VITAMIN PREMIX TYPE MM81 (105PCT) (BHN BAKU MAKANAN) COA XW91706241,21069059 +"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70402215,2258",29362200 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70402215,29362200 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70402215,29362200 +"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70503147, 3148",29362200 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417030,29362200 +What is the hs code for DL A TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT17020016,29362800 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT17030728,29362100 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417030,29362200 +What is the hs code for RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1703030,29362300 +What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ70309012,29362300 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70503148,29362200 +"What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 70307028",38210010 +"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7115789",38210010 +What is the hs code for SOLUTION DECONTAMINATION CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2497C319,38210010 +"What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT 10X10MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7137564",38210010 +What is the hs code for ANTI MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7137605,38210010 +"What is the hs code for CD79A PE HM47 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7097800,7165753",38210010 +What is the hs code for CD19 PE CY7 SJ25C1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7146771,38210010 +What is the hs code for CD34 PERCP CY5.5 8G12 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7153914,38210010 +What is the hs code for CD7 APC (M-T701) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7165727,38210010 +"What is the hs code for HU CD3 HORIZON V450 UCHT1 120TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7130596",38210010 +What is the hs code for HU CD45 HORIZON V500 HI30 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7131686,38210010 +What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 7074616,38210010 +What is the hs code for SUPEROX C TM AF (BHN BAKU KOSMETIK) COA.70611,39139090 +What is the hs code for TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA.70517,39139090 +"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7117970",38210010 +"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7173845",38210010 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7173845,38210010 +What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7152953,38210010 +What is the hs code for PANEL VIEWER EUROPE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 111616,38210010 +"What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6286718,...",38210010 +What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6130548,38210010 +"What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7093593",38210010 +What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7033659,38210010 +"What is the hs code for BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 6300912,6333983",38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053881,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6336799,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009836,38210010 +"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009856,7109998",38210010 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060848,38210010 +"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7081793,710288",38210010 +What is the hs code for PAIL BUFFERED PEPTONE WATER 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7075740,38210010 +What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7103621,38210010 +"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6293897,7095842",38210010 +What is the hs code for BOTTLE D SORBITOL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009966,38210010 +What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009829,38210010 +"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7017943,70958",38210010 +"What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6250612",38210010 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6278737,38210010 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7053868,38210010 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6291710,38210010 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6333840,38210010 +What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6257924,38210010 +"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7089764,...",38210010 +"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6342932,7009568",38210010 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7088842,38210010 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053894,38210010 +What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7081569,38210010 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6320612,38210010 +What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7005857,38210010 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7116509,38210010 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053868,38210010 +What is the hs code for SOLUTION BACTERIOSTAT CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3207C313,38210010 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7116509,38210010 +What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7088559,38210010 +What is the hs code for TUBE CRYSTAL E/ ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7053551,38210010 +What is the hs code for BOTTLE GRAM CRYSTAL VIOLET 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7115698,38210010 +What is the hs code for CULTURESWAB LIQUID STUART SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 170715999,38210010 +What is the hs code for SACHET GASPAK E2 CAMPY CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7089775,38210010 +What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7116552,38210010 +What is the hs code for BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6333983,38210010 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7109945,38210010 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7116560,38210010 +What is the hs code for BOTTLE HEART INFUSION AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7142578,38210010 +What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6250612,38210010 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053868,38210010 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R1 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 63206117,38210010 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7114758,38210010 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7075737,38210010 +What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060807,38210010 +What is the hs code for BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060762,38210010 +What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7082650,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 8 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 5201890,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 5 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6278815,38210010 +What is the hs code for BOTTLE BASE HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7135933,38210010 +What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7017983,38210010 +What is the hs code for BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009709,38210010 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7066737,38210010 +What is the hs code for DROPPER LACTOPHENOL COTTON BLUE STAIN (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 7031949,38210010 +What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7143744,38210010 +What is the hs code for GASPAK EZ LARGE INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7261717010,38210010 +What is the hs code for PAIL LAURYL TRYPTOSE BROTH 2KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7143979620,38210010 +What is the hs code for BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7082926,38210010 +What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7135968,38210010 +What is the hs code for BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7067719,38210010 +What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 4056159,38210010 +What is the hs code for BOTTLE PHENOL RED LACTOSE BR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6235657,38210010 +What is the hs code for BOTTLE PHENOL RED SUCROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009818,38210010 +What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7088775,38210010 +What is the hs code for BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6327604,38210010 +What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6243907,38210010 +What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7114681,38210010 +What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121602,38210010 +What is the hs code for BOTTLE BEEF EXTRACT POWDER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6298524,38210010 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7060948,38210010 +What is the hs code for OLIVE POLYPHENOLIC DRY EXTRACT (BHN BAKU SUPLEMEN) COA 17210,13021990 +What is the hs code for MARCOL 52 (BHN BAKU OBAT UTK PAKAN TERNAK) COA 17326HH701,27101989 +What is the hs code for MARCOL 52 (BHN BAKU OBAT UTK PAKAN TERNAK) COA 17125HH701,27101989 +"What is the hs code for PIPERAZINE CITRATE BP/USP (BHN BAKU OBAT) COA PC-140/17, PC-142/17...",29335990 +What is the hs code for PROMOIS EFLS (BHN BAKU KOSMETIK) COA DDK,39139090 +What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA ELC,39139090 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA DEJ,39139090 +What is the hs code for PROMOIS WK-GB (BHN BAKU KOSMETIK) COA DCA,39139090 +"What is the hs code for STAY C 50, 20KG BOXNA (BHN BAKU KOSMETIK) COA UT17040027",29362700 +"What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334470,72,73",29419000 +What is the hs code for CLAIRJU (BHN BAKU KOSMETIK) COA 170509,13021990 +"What is the hs code for CLAIR BLANCHE II( BHN BAKU KOSMETIK), COA 170585",38249999 +What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 170935,13021990 +What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 170467,13021990 +What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 171058,13021990 +"What is the hs code for VC ASCORBIC ACID DC 97PCT, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG1704012,7001,7002",29362700 +"What is the hs code for VC CALCIUM ASCORBIC DC, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPT1706025",29362700 +"What is the hs code for VC ASCORBIC ACID SPECIAL ,25KG BAL (B.BAKU SUPLEMEN) COA HPB1704104 -SAMPLE NO COMM VALUE",29362700 +"What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1707020,23 24,27 S/D 33 209,210",29224900 +What is the hs code for KETOPROFEN (BHN BAKU OBAT) COA.178918,29183000 +What is the hs code for MOXIFLOXACIN HYDROCHLORIDE(BHN BAKU OBAT) COA MP0060517,29334990 +What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702362711,29372900 +"What is the hs code for OATWELL (R) 22,18KG BAG (BHN BAKU MAKANAN) COA SOF172004",21069059 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA. ROA186173,28363000 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA. ROA193173,28363000 +"What is the hs code for SULPHAMETHOXAZOLE BP MICRONISED (BHN BAKU OBAT) COA.17890717,17900717...",29351000 +What is the hs code for SILYBIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10236/M1,38249999 +What is the hs code for SILYMARIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10447/M1,38249999 +What is the hs code for VALERIAN D.H.E > 0.8PCT VAL.AC (BAHAN BAKU SUPPLEMEN) COA 10121/M1,13021990 +What is the hs code for VALERIAN D.H.E >0.8PCT VAL.AC (BAHAN BAKU SUPPLEMEN) COA 10318/M1,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10219/M1,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10399/M1,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10400/M1,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10429/M1,13021990 +What is the hs code for SERENOA REPENS PURIFIED EXT (BHN BAKU SUPLEMEN) COA 32455/B/1,38249999 +What is the hs code for CENTELLA ASIATICA/PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 31730/H1,38249999 +What is the hs code for CURCUMA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 32460/M1,38249999 +What is the hs code for SERENOA REPENS PURIFIED EXT (BHN BAKU SUPLEMEN) COA 32455/B/1,38249999 +What is the hs code for P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 32190/M1,13021990 +What is the hs code for ECHINACEA ANG DRY PURIF EX (BHN BAKU SUPLEMEN) COA 32226/M1,13021990 +What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5457516,39139090 +What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829015126H,39139090 +What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830015300H,39139090 +What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 7850104,39139090 +What is the hs code for LANABLUE (BHN BAKU KOSMETIK) COA 5470017,39139090 +What is the hs code for LANABLUE (BHN BAKU KOSMETIK) COA 5497917,39139090 +What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5462616,39139090 +"What is the hs code for MELANOSTATINE 5 BG (50PPM) BHN BAKU KOSMETIK,COA 817044833G",39139090 +"What is the hs code for MELANOSTATINE 5 PS (50PPM) BHN BAKU KOSMETIK, COA 817014258G",39139090 +What is the hs code for RIBOXYL (BHN BAKU KOSMETIK) COA P0516501,39139090 +What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025335H,39139090 +What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015208H,39139090 +What is the hs code for SWT 7L (BHN BAKU KOSMETIK) COA 1632001,39139090 +What is the hs code for SWT 7L (BHN BAKU KOSMETIK) COA 1629501,39139090 +What is the hs code for SWT 7L (BHN BAKU KOSMETIK) COA 1632001,39139090 +What is the hs code for PRO LIPO NEO (BHN BAKU KOSMETIK) COA 1713601,39139090 +"What is the hs code for HELIOGEL (BHN BAKU KOSMETIK), COA 1706301",39139090 +"What is the hs code for SWT 7L (BHN BAKU KOSMETIK), COA 1629501",39139090 +What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596853,39061090 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596851,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596568,38249999 +What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596862,38249999 +What is the hs code for ACRYL-EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596863,39061090 +What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596859,38249999 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596867,39061090 +What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596857,39061090 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596856,39061090 +What is the hs code for OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596852,38249999 +What is the hs code for ACRYL EZE PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596861,39061090 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596851,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596864,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596858,38249999 +What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596855,32151900 +What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596855,32151900 +What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596855,32151900 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596854,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA OBAT) COA SH595414,38249999 +What is the hs code for TECA M (BHN BAKU KOSMETIK)COA 1730310040076,39139090 +What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NX0562M,29372200 +What is the hs code for TRIAMCINOLONE ACETONIDE MICRONIZED (BHN BAKU OBAT) COA NX1540M,29372200 +"What is the hs code for METAMIZOLE SODIUM DAB /EP 7.0 (BHN BAKU OBAT) COA 1704601,5694,5695,5721",29331100 +What is the hs code for MAPROTILINE HCL (BHN BAKU OBAT) COA 5000/05/17,29214900 +"What is the hs code for IPRATROPIO BROMIDE (B. BAKU OBAT) COA 9800/03/16,SAMPLE NO COMMERCIAL VALUE",29397900 +What is the hs code for EUXYL K 900 CN 10 KG KA (BHN BAKU KOSMETIK) COA.1316900,38249999 +"What is the hs code for EUXYL PE 9010 CN 10KG KA (BHN BAKU KOSMETIK) COA 13331435,1331782",38249999 +What is the hs code for SORBOSIL BFG50 (BHN BAKU OBAT) COA RE17406,28112210 +What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK)COA MS/70120/B15/LOREAL/090717,39123900 +"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA MS/2460/B15/LOREAL/070717",39123900 +"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA MS/70120/YOIB155/LOREAL/130417",39123900 +"What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 171118,170585",38249999 +"What is the hs code for CLAIR BLANCHE II( BHN BAKU KOSMETIK), COA 171118",38249999 +What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA. WP785036,39059990 +What is the hs code for PVAP PHTHALAVIN NF CLEAR (BAHAN BAKU OBAT UTK PEWARNA TABLET) COA. WP785040,39059990 +What is the hs code for FD AND C BLUE 2/INDIGO VARMINE...(BHN BAKU OBAT UTK PEWARNA TABLET) COA. WP781750,32151900 +"What is the hs code for KF-6017 (BHN BAKU KOSMETIK) , COA 707020",39139090 +What is the hs code for KSG-210 (BHN BAKU KOSMETIK) COA 707213,39139090 +What is the hs code for KSP-100 (BHN BAKU KOSMETIK) COA 707520,39139090 +What is the hs code for KSG-710 (BHN BAKU KOSMETIK) COA 706034,39139090 +"What is the hs code for DWI BI (BHN BAKU MAKANAN) COA XW91707041,42",21069059 +"What is the hs code for DWI BI (BHN BAKU MAKANAN) COA XW91706318,19",21069059 +"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ70110003,7",29362300 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT16120061,29362100 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT17010007,29362900 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO)BHN BAKU MAKANAN,COA UT17030729,730",29362100 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11706001,29362900 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17050062,29362900 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT16120061,29362100 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT17030728,729",29362100 +What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0217060071,29189900 +What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91707261,29189900 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01702023,29362400 +"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01701801,3,5",29362400 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708160125,26,27",29189900 +"What is the hs code for PARSOL MCX ,25KG PC (BHN BAKU KOSMETIK) COA MCS1605116",29189900 +What is the hs code for BEAUPLEX VH (BHN BAKU KOSMETIK) COA UF17082001,29189900 +What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11706001,29362900 +What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P8O07UA000,29189900 +"What is the hs code for PARSOL 1789,20 KG BOX (BHN BAKU KOSMETIK) COA 0317050730",29189900 +What is the hs code for EPA DHA 44 37 (BHN BAKU OBAT) COA EE4437-170730,29061300 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170302,39139090 +What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK)COA EG209-160402,39139090 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS170401,39139090 +What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK)COA CFM170301-PGH,39139090 +What is the hs code for CARICILINE SB (BHN BAKU KOSMETIK) COA CAR170301-SB,39139090 +What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB250717,39123900 +"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B290717",39123900 +"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA MS/70120/YOIB15S/LOREAL/080517",39123900 +What is the hs code for KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0150517,29339990 +What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA.MLAH032071718,29341000 +What is the hs code for NYSTATIN (BHN BAKU OBAT) COA.C114052,29419000 +What is the hs code for ADRENALINE TARTRATE/EPINEPHRINE BITARTRATE (BHN BAKU OBAT) COA 060108,29379020 +What is the hs code for IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S471/17,38029090 +"What is the hs code for BD FACS MELODY BRV 9 COLOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6616340009",38210010 +What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA.01/17GAAK,28399000 +What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 162392,28399000 +What is the hs code for LABRAFIL M 1944 CS (BAHAN BAKU OBAT) COA 163292,28399000 +What is the hs code for SUPPOCIRE AM PELLETS (BAHAN BAKU OBAT) COA 16E3503,28399000 +What is the hs code for TRANSCUTOL P (BHN BAKU OBAT) COA 164103,28399000 +What is the hs code for TEFOSE 63 (BHN BAKU OBAT) COA 163177,28399000 +What is the hs code for DICLOFENAC SODIUM (BHN BAKU OBAT) COA 170244,29224900 +"What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334471, 85",29419000 +What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP17073031 S/D 34,29211900 +"What is the hs code for VC ASCORBIC ACID 325MESH ,20KGBOALPO (BAHAN BAKU SUPLEMEN) COA HPD1706033,38,45,52,58...",29362700 +"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1710577,1750943,1750933",29242930 +"What is the hs code for METAMIZOLE SODIUM DAB /EP 7.0 (BHN BAKU OBAT) COA 1704593,1705725,1705759",29331100 +What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121707945,28363000 +What is the hs code for KANAMYCIN ACID SULFATE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 170603,29419000 +What is the hs code for PHARMABURST (R) C1 (BHN BAKU OBAT) COA.121707780,21069099 +What is the hs code for PIRACETAM INJECTABLE GRADE BHN BAKU OBAT COA. PIR02417,29337900 +What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT664474,32151900 +What is the hs code for OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT664475,32151900 +What is the hs code for OPACODE BALCK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT664501,32151900 +What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT664476,32151900 +"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 1707EF8011",29224900 +What is the hs code for CARBOMER (BHN BAKU KOSMETIK) COA JCR170803189,39069099 +"What is the hs code for LIFE'S DHA S35-O100, 5KG ALUF (B.BAKU UPLEMEN) COA VY00219709",29362500 +"What is the hs code for LIFE'S DHA (TM) S35-O300,5KG ALUF (BHN BAKU SUPLEMEN) COA VY00224309",29362500 +What is the hs code for B CAROTENE 10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT17030001,32041900 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17070018,29362100 +What is the hs code for MEG-3 (TM)'10' N-3 FOOD POWDER S/SD (BHN BAKU MAKANAN) COA UT17060002,29362500 +What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB250717,39123900 +"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B290717",39123900 +"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA MS/70120/YOIB15S/LOREAL/080517",39123900 +What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA.70502,39139090 +What is the hs code for TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA.70618,39139090 +What is the hs code for TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA 70618,39139090 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597408,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595234,38249999 +What is the hs code for OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597405,38249999 +What is the hs code for OPADRY II RED (BHN BAKU UTK PEWARNA TABLET) COA SH597409,38249999 +"What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU OBAT), COA UJ728",29181400 +What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU OBAT) COA UJ728,29181400 +What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596568,38249999 +What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597164,39061090 +What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597179,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594654,38249999 +What is the hs code for ACRYL-EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597166,39061090 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597178,39061090 +What is the hs code for OPADRY GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597165,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594927,38249999 +What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597176,39061090 +What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595336,38249999 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597177,39061090 +What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597163,32151900 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597173,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597174,38249999 +What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597168,38249999 +What is the hs code for OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597175,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597172,38249999 +What is the hs code for OPADRY BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597169,38249999 +"What is the hs code for HU TH17/TREG PHENOTYPING KIT 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7191531",38210010 +What is the hs code for BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7095852,38210010 +What is the hs code for BOTTLE GRAM DECOLORIZER 260ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7044940,38210010 +What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7125607,38210010 +What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7128730,38210010 +"What is the hs code for BOTTLE CASAMINO ACIDS 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7177959",38210010 +"What is the hs code for BOTTLE OXGAIL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7074561",38210010 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7193724,38210010 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7193724,38210010 +What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6228993,38210010 +What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 170706516,38210010 +What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 17070651,38210010 +"What is the hs code for CULTURESWAB LIQUID STUART SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 170715499",38210010 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7083743,38210010 +What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 170706516,38210010 +What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6287929,38210010 +What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7192642,38210010 +What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7177823,38210010 +What is the hs code for PERMEABILIZING SOLUTION 2 10X 500 TESTS(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6357992,38210010 +What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 170706516,38210010 +What is the hs code for NOZZLE ASSY 100 MN SQ CUVETTE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),38210010 +What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7093593,38210010 +What is the hs code for BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7065886,38210010 +What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7069545,38210010 +"What is the hs code for BOTTLE PHYTONE PEPTONE 454G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6287929,7121602",38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121569,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009836,38210010 +"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6278835",38210010 +What is the hs code for BOTTLE BACTO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7109998,38210010 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060848,38210010 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 71028840,38210010 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7018890,38210010 +What is the hs code for PAIL BUFFERED PEPTONE WATER 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7117969,38210010 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7152788.,38210010 +"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7095842",38210010 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7045539,38210010 +What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009829,38210010 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053868,38210010 +What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7047892,38210010 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7068859,38210010 +"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6257924,7151674",38210010 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6320611,38210010 +"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7102792,...",38210010 +"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MICROORGANISME) BATCH 7009568,7060731",38210010 +What is the hs code for BOTTLE SOLUBLE STARCH 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7075737,38210010 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRORGANISME) BATCH 7088842,38210010 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7193724,38210010 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6320612,38210010 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7053952,38210010 +"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7081822,7109946",38210010 +What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7060807,38210010 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7068731,38210010 +What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6250612,38210010 +What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7047892,38210010 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7109972,38210010 +What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7114771,38210010 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6320611,38210010 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7135844,38210010 +What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6294620,38210010 +"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7140695,7142532",38210010 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7114800,38210010 +What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121602,38210010 +What is the hs code for BOTTLE AGAR NOBLE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7109502,38210010 +What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7192642,38210010 +What is the hs code for BOTTLE D MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6201884,38210010 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7066737,38210010 +What is the hs code for BOTTLE DULCITOL 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7163609,38210010 +What is the hs code for BOTTLE EE BROTH MOSSAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7143744,38210010 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060948,38210010 +What is the hs code for BOTTLE MARINA AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7135968,38210010 +What is the hs code for BOTTLE PHENOL RED BROTH BASE... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6131892,38210010 +What is the hs code for BOTTLE PHOSPHATE BUFFER PH 7.2...(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121877,38210010 +What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7153977,38210010 +What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6319507,38210010 +What is the hs code for BOTTLE TRYPTONE GLUCOSE EXT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060509,38210010 +What is the hs code for BOTTLE YEAST NITROGEN BASE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6320617,38210010 +"What is the hs code for CD4 APC SK3 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7030773",38210010 +"What is the hs code for FASTIMMUNE IFN GAMMA/IL 4 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6343739",38210010 +What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7159848,38210010 +What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7123691,38210010 +What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7061652,38210010 +What is the hs code for MS LG KPA COMP BEAD SET 6ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6239960,38210010 +What is the hs code for STAIN BUFFER FBS 500ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7031808,38210010 +"What is the hs code for LYSING BUFFER 10X CONCENTRATE 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7061888",38210010 +What is the hs code for PROPIDIUM IODINE STAINING SOLUTION 2ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6308708,38210010 +What is the hs code for ANNEXIN V FITC APOP DTEC KIT I 100TST(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 7040932,38210010 +What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7100675,38210010 +What is the hs code for CD3 PERCP SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7177904,38210010 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7146880,38210010 +What is the hs code for CD3 APC H7 SK7 100 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7201546,38210010 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7041588,38210010 +What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7124644.,38210010 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7146880,38210010 +What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7129883,38210010 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7041588,38210010 +What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060674,38210010 +What is the hs code for VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6197586,38210010 +What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7142814,38210010 +"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7041588",38210010 +"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060674,..",38210010 +What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7142814,38210010 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 5205615,38210010 +What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7109549,38210010 +What is the hs code for BOTTLE FOLIC ACID ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060658,38210010 +What is the hs code for BOTTLE LACTOBACILI AGAR AOAC 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6327907,38210010 +"What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7060799",38210010 +What is the hs code for TUBE PENASE CONCENTRATE 10X20MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7143749,38210010 +What is the hs code for BD FC BEADS PE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7115724,38210010 +What is the hs code for BD FC BEADS PE-CY7 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7115737,38210010 +What is the hs code for BD FC BEADS APC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7115725,38210010 +What is the hs code for BD FC BEADS APC-H7 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7115732,38210010 +What is the hs code for BD FC BEADS BV421 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7138589,38210010 +What is the hs code for BD FC BEADS BV510 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7138591,38210010 +What is the hs code for BD FC BEADS BB515 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7138592,38210010 +"What is the hs code for NONIVAMIDE (SYNTHETIC CAPSAICIN)BHN BAKU KOSMETIK, COA.20170410",29242990 +What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA 20170805,17023010 +"What is the hs code for PARSOL HMS, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA MCS1604107",29189900 +What is the hs code for PREDNISOLONE BP2010/USP38 (BHN BAKU OBAT) COA.NPL170708,29372100 +What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND170404,29372200 +What is the hs code for RIBOFLAVIN 5 PHOSPHATE UNIVERSAL (BHN BAKU SUPLEMEN) COA UEB1703030,29362300 +What is the hs code for RIBOFLAVIN 5 PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1703032,29362300 +What is the hs code for D A TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20160302,29362800 +What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW91707202,21069059 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT17030731",29362100 +What is the hs code for CANTHAXANTHIN 10PCT CWS/S (BHN BAKU MAKANAN) COA UT17040003,32041900 +"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT17020001, 20002",29362800 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT17020002,29362800 +What is the hs code for DL A TOCOPHEROL (BHN BAKU MAKANAN) COA UT17020019,29362800 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT17020159",29362100 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT16120061,29362100 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT16110067,32041900 +What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01702023,29362400 +What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ70309012,29362300 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN) COA UT17020159,29362100 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11706001,29362900 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ70110009,29362300 +What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01606109,29362900 +What is the hs code for B CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT16110067,32041900 +What is the hs code for DL A TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT17010012,29362800 +What is the hs code for D PANTHENOL (BHN BAKU MAKANAN) COA TL01702023,29362400 +What is the hs code for DRY VITAMIN D3 100 CWS/AM(BHN BAKU MAKANAN) COA UT17010007,29362900 +What is the hs code for DL A TOCOPHEROL (BHN BAKU MAKANAN) COA UT17020019,29362800 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ70110009,29362300 +What is the hs code for B CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01610103,32041900 +What is the hs code for DRY VITAMIN K1 50CT SD (BHN BAKU SUPLEMEN) COA UT16120007,29362900 +What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ70309012,29362300 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01606109,29362900 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17010011,29362400 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17010005,29362900 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17010005,29362900 +What is the hs code for ASCORBIC ACID FINE POWDER (BHN BAKU SUPLEMEN) COA TL01611698,29362700 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT17010007,29362900 +What is the hs code for CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB0116017,29362700 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT16120034,29362600 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170803,39139090 +What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK)COA CFM170702-PGH,39139090 +What is the hs code for LINEN OILY XTRACT GT10 (BHN BAKU KOSMETIK)COA LIU170603-H,39139090 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170803,39139090 +What is the hs code for GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK) COA EG209-160402,39139090 +"What is the hs code for DRY VITAMIN E 50PCT SD, 15KG BOXALU (BHN BAKU SUPLEMEN) COA WB02170048",29362800 +What is the hs code for SODIUM BICARBONATE IPH (BHN BAKU SUPLEMEN) COA. DOC1981721,28363000 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA. RBA2141700,28363000 +What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-600347,39139090 +What is the hs code for SK BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-010747,39139090 +What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK)COA MUP-011017,39139090 +What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-222837,39139090 +What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 060117,39139090 +What is the hs code for THE MATCHA 1 P001062 (BHN BAKU KOSMETIK) COA 0000006986,33029000 +What is the hs code for SORBOSIL BFG50 (BHN BAKU OBAT) COA RE17407,28112210 +What is the hs code for EUXYL PE 9010 CN 10 KG KA (BHN BAKU KOSMETIK) COA.1331610,38249999 +"What is the hs code for CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 017.534, 017.453",90189090 +"What is the hs code for CANNULA 25G PIX'L 0,5X40 (BHN BAKU OBAT) COA 017.507",90189090 +What is the hs code for REST SKINB VITLIDO 1 MLD16 (BHN BAKU OBAT) COA 15058-2,90189090 +"What is the hs code for REST SKINB VITALLGHLIDO 1 ML D16 (BHN BAKU OBAT) COA 15126-2, 15430-2",90189090 +"What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML (BHN BAKU OBAT) COA 15264-2,15328-1",90189090 +What is the hs code for CEFOTAXIME SODIUM STERILE (BHN BAKU OBAT) COA Q900400,29419000 +What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA Q701900,29419000 +What is the hs code for CEFTAZIDIME BUFFERED (BHN BAKU OBAT) COA Q102500,29419000 +What is the hs code for MEROPENEM WITH SODIUM CARBONATE (BHN BAKU OBAT) COA Q900100,30039000 +What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597206,38249999 +What is the hs code for OPADRY BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597433,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597448,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597449,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596568,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597446,38249999 +What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597438,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597450,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597437,38249999 +"What is the hs code for PARSOL HMS, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA MCS1604107",29189900 +What is the hs code for DL PANTHENOL 50L (BHN BAKU KOSMETIK) COA TL01705622,29362400 +What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01703804,29362400 +What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT17020008,29362100 +What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT17070018,29362100 +What is the hs code for KOLLICOAT IR WHITE 2 25KG (BHN BAKU OBAT UTK PEWARNA TABLET) COA 82770816K0,32151900 +"What is the hs code for CATECHINS (TEA EXTRACT) BHN BAKU KOSMETIK, COA 706292",39139090 +What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BH07306,29349990 +"What is the hs code for PURIDROX TM COMPACTED, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B339903,07,10",29419000 +What is the hs code for ESOMEPRAZOLE SODIUM STERILE (34PERCENT TO 38PERCENT W/W)COA AESS17001,29333990 +"What is the hs code for PANTOPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W)BHN BAKU OBAT, COA APSS17002",29333990 +"What is the hs code for CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 201707T-CC",38249999 +"What is the hs code for L-GLUTAMIC ACID ( BHN BAKU OBAT), COA 1000033453/170706",29224210 +What is the hs code for VITAMIN PREMIX 103047-D (BHN BAKU MAKANAN) COA XW91707335,21069059 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT17010026,29362400 +"What is the hs code for MEG-3 DHA H POWDER, 0,1KG POS (B.BAKU UPLEMEN) COA XI00004109 SAMPLE NO COMM VALUE",29362500 +"What is the hs code for MEG-3 30PCT K POWDER, 0,1KG POS (B.BAKU SUPLEMEN) COA XI00003797 SAMPLE NO COMM VALUE",29362500 +What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 17050203,38029090 +What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA,39139090 +"What is the hs code for TRISODIUM CITRATE DIHYDRATE FINE GRANULAR (BHN BAKU MAKANAN), COA UJ730",29181400 +What is the hs code for TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA 16636,29225090 +What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01706008,29362700 +"What is the hs code for STAY C 50, 5KG BAL US (BHN BAKU KOSMETIK) COA UT17050062",29362700 +What is the hs code for FLUOROMETHOLONE MICRONISED USP BP JP (BHN BAKU OBAT) COA 1701261241,29372200 +What is the hs code for TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA.70618,39139090 +What is the hs code for TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA 70618,39139090 +"What is the hs code for STAY C 50,20KG BOXNA (BHN BAKU KOSMETIK) COA UT17040039",29362700 +"What is the hs code for STAY C 50, 5KG BALUS (BHN BAKU KOSMETIK) COA UT17040045,49,50",29362700 +What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01706017,29362700 +What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0217070082,29189900 +"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0317050735,738 ,739,748...",29189900 +"What is the hs code for MILKUAT ZN FET (25PCT CARRIER) BHN BAKU MAKANAN, COA XW91707208",21069059 +What is the hs code for D PANTHENOL (BHN BAKU SUPLEMEN) COA TL01703026,29362400 +What is the hs code for B CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01610103,32041900 +What is the hs code for D BIOTIN (BHN BAKU SUPLEMEN) COA UE01704001,29362900 +"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ70110024,26",29362300 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI16070010,29362900 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI16070010,29362900 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI16070010,29362900 +"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70502281, 2284",29362200 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70502281,29362200 +What is the hs code for VP ENG01 (BHN BAKU MAKANAN) COA XW91707209,21069059 +What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70306071,29362700 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT16120034,29362600 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70502281,29362200 +What is the hs code for PX TRS2 WITHOUT K1 (BHN BAKU MAKANAN) COA XW91707336,21069059 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU(TOCO) B. BAKU MAKANAN, COA UT17030160",29362100 +What is the hs code for PREMIX KNPX CH 00 16 (BHN BAKU MAKANAN) COA XW91707253,21069059 +What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91707349,21069059 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70502281,29362200 +"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70306071,72,75",29362700 +"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70502277,81",29362200 +What is the hs code for CALCIUM D PANTOTHENATE (BHN BAKU MAKANAN) COA UT1702632,29362400 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70503143,29362200 +"What is the hs code for CALCIUM D PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01702624,2632",29362400 +What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01705464,29362700 +"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70406084,6090",29362700 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17050063,29362900 +"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70306075,84",29362700 +What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL01704205,29362700 +What is the hs code for VITAMIN D3 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT17050063,29362900 +What is the hs code for CALCIUM D PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01702624,29362400 +What is the hs code for PYRIDOXINE HYDROCHLORIDE(BHN BAKU SUPLEMEN) COA UQ70113033,29362500 +"What is the hs code for CALCIUM D PANTOTHENATE (BHN BAKU MAKANAN) COA TL01702624,2632",29362400 +"What is the hs code for RIBOFLAVIN 5 PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1703032,4051",29362300 +What is the hs code for ALDAVINE 5X (BHN BAKU KOSMETIK) COA 5493217,39139090 +What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830015347H,39139090 +What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769015443H,39139090 +What is the hs code for EXO H (BHN BAKU KOSMETIK) COA 715025400H,39139090 +"What is the hs code for LECIGEL (BHN BAKU KOSMETIK), COA 1710602",39139090 +"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK), COA 5462616",39139090 +What is the hs code for MELITANE GL (200PPM) (BHN BAKU KOSMETIK) COA 818065302H,39139090 +What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784025335H,39139090 +What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025335H,39139090 +"What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK), COA 828015208H",39139090 +What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 110717,25070000 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01704302,4311",29362700 +What is the hs code for POMEGRANATE OF ACORES HYDROGLYCERINED (BHN BAKU KOSMETIK)COA PUGA170602-GL,39139090 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO170601,39139090 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170803,39139090 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO170601,39139090 +What is the hs code for GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 17277,39139090 +What is the hs code for PROMOIS WK-GB (BHN BAKU KOSMETIK) COA DFB,39139090 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA DHN,39139090 +What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA DDD,39139090 +What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA DDB,39139090 +What is the hs code for SHIN ETSU SILICONE X 21 5616 (B. BAKU KOSMETIK) COA 705013 SAMPLE NO COMMERCIAL VALUE,39139090 +"What is the hs code for KF-54 (BHN BAKU KOSMETIK) , COA 705592/ 706596 SAMPLE NO COMMERCIAL VALUE",39139090 +What is the hs code for KF-6028 (BHN BAKU KOSMETIK) COA 706167 SAMPLE NO COMMERCIAL VALUE,39139090 +What is the hs code for KF-6048 (BHN BAKU KOSMETIK) COA 706017 SAMPLE NO COMMERCIAL VALUE,39139090 +What is the hs code for KF-6050 (BHN BAKU KOSMETIK) COA 707019 SAMPLE NO COMMERCIAL VALUE,39139090 +What is the hs code for KF-56A (BHN BAKU KOSMETIK) COA 705219 SAMPLE NO COMMERCIAL VALUE,39139090 +"What is the hs code for KSG-210 (BHN BAKU KOSMETIK) COA 708234,SAMPLE NO COMMERCIAL VALUE",39139090 +"What is the hs code for TMF-1.5 (BHN BAKU KOSMETIK) COA 704028,SAMPLE NO COMMERCIAL VALUE",39139090 +What is the hs code for KSP-441 (BHN BAKU KOSMETIK) COA 704018 SAMPLE NO COMMERCIAL VALUE,39139090 +What is the hs code for X-21-5250 (BHN BAKU KOSMETIK) COA 706030 SAMPLE NO COMMERCIAL VALUE,39139090 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA TP17073513, 3514",29211900 +"What is the hs code for SANOCARE PUR JAR 800G, 6 JARS/CASE(BHN BAKU OBAT UTK PAKAN TERNAK, COA 2117334651",23099090 +What is the hs code for SEP-ART SEPARATOR SET V2 - SAMPLE NO COMMERCIAL VALUE,84212119 +"What is the hs code for KF-6038 (BHN BAKU KOSMETIK) , COA 707181 SAMPLE NO COMMERCIAL VALUE",39139090 +What is the hs code for KP-549 (BHN BAKU KOSMETIK) COA 702280 SAMPLE NO COMMERCIAL VALUE,39139090 +What is the hs code for KF-6011 (BHN BAKU KOSMETIK) COA 708326 SAMPLE NO COMMERCIAL VALUE,39139090 +"What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 70628, 70706",39139090 +What is the hs code for FERROUS FUMARATE USP/EP (BHN BAKU OBAT) COA.2017/203,29171900 +"What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1707111 S/D 7118,8002,8003",29224900 +"What is the hs code for SAKURA EXTRACT B( BHN BAKU KOSMETIK), COA 171058",13021990 +What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 170569,29329990 +What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 171118,38249999 +What is the hs code for CLAIRJU (BHN BAKU KOSMETIK) COA 171204,13021990 +What is the hs code for EMPILAN CIS (BAHAN BAKU KOSMETIK) COA.BLW0012903,34021390 +What is the hs code for REFINED SUNFLOWER OIL (BHN BAKU KOSMETIK) COA KKLJ 11/17,39139090 +What is the hs code for POMEGRANATE OF ACORES HYDROGLYCERINED (BHN BAKU KOSMETIK)COA PUGA170602-GL,39139090 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO170601,39139090 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170803,39139090 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO170601,39139090 +What is the hs code for INSTANT BLACK TEA POWDER TH B430 (BHN BAKU MAKANAN) COA 2017080701,21012020 +"What is the hs code for VC ASCORBIC ACID REGULAR, 25KG BAL (BHN BAKU SUPLEMEN) COA HPB1708105, SAMPLE NO COMM VALUE",29362700 +"What is the hs code for VC ASCORBIC ACID REGULAR, 25KG BAL (BHN BAKU SUPLEMEN) COA HPB1708119,SAMPLE NO COMM VALUE",29362700 +"What is the hs code for VC ASCORBIC ACID REGULAR, 25KG BAL (BHN BAKU SUPLEMEN) COA HPD1708069 SAMPLE NO COMM VALUE",29362700 +"What is the hs code for VC SODIUM ASCORBATE REGULAR, 25KG BAL(BHN BAKU SUPLEMEN) COA HPN1708030, SAMPLE NO COMM VALUE",29362700 +"What is the hs code for VC SODIUM ASCORBATE REGULAR, 25KG BAL (BHN BAKU SUPLEMEN) COA HPN1708075, SAMPLE NO COMM VALUE",29362700 +"What is the hs code for VC SODIUM ASCORBATE REGULAR, 25KG BAL (BHN BAKU SUPLEMEN) COA HPN1708076, SAMPLE NO COMM VALUE",29362700 +What is the hs code for ONDASENTRON HCL USP (BHN BAKU OBAT) COA 17OS001,29332900 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101853017A542,17021100 +What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103872417A545,17021100 +What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104313117A552,17021100 +What is the hs code for LIPOID S67F (BHN BAKU OBAT) COA.576200-2160029/025-030 (6),29232010 +"What is the hs code for DRY VITAMIN E 50PCT SD,15KG BOXALU (BHN BAKU SUPLEMEN) COA WB02170048",29362800 +What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00117637,29362800 +"What is the hs code for DRY VITAMIN E 50PCT SD,15KGBOXALU (BHN BAKU SUPLEMEN) COA WB02170048",29362800 +"What is the hs code for FLORAGLO LUTEIN 5PCT,CWS/S TG (BHN BAKU SUPLEMEN) COA UT17050011",32030010 +"What is the hs code for GENIVIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010014,15",29329990 +What is the hs code for COATED ASCORBIC ACID TYPE EC (BHN BAKU SUPLEMEN) COA TL01705484,29362700 +What is the hs code for DRY VITAMIN E 75HP (BHN BAKU SUPLEMEN) COA WB00517168,29362800 +What is the hs code for DRY VITAMIN E ACETATE 950NS (BHN BAKU SUPLEMEN) COA WB00117637,29362800 +"What is the hs code for DRY VITAMIN E 50PCT SD, 15KGBOXALU (BHN BAKU SUPLEMEN) COA WB02170048",29362800 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17050011,32030010 +What is the hs code for GENIVIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010015,29329990 +What is the hs code for COATED ASCORBIC ACID TYPE EC (BHN BAKU SUPLEMEN) COA TL00705484,29362700 +"What is the hs code for DRY VITAMIN E 50PCT ,15KGBOXALU (BHN BAKU SUPLEMEN) COA WB02170048",29362800 +What is the hs code for VITAMIN A AND D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT17070034,29362100 +What is the hs code for RESTYLANE VOLYME 1 ML (BHN BAKU OBAT) COA 15202-1,90189090 +What is the hs code for RESTYLANE REFYNE 1 ML (BHN BAKU OBAT) COA 15100-1,90189090 +What is the hs code for RESTYLANE DEFYNE 1 ML (BHN BAKU OBAT) COA 15022-1,90189090 +What is the hs code for RESTYLANE KYSSE 1 ML (BHN BAKU OBAT) COA 15001-1,90189090 +"What is the hs code for CANNULA 23G PIXL 0,6X50 (BHN BAKU OBAT) COA 017.534",90189090 +"What is the hs code for CANNULA 25G PIXL 0,5X40 (BHN BAKU OBAT) COA 017.507",90189090 +What is the hs code for RESTYLANE SKINB VITLIDO 1MLD16 (BHN BAKU OBAT) COA 15058-2,90189090 +What is the hs code for REST SKINB VITALLGHLIDO 1MLD16 (BHN BAKU OBAT) COA 15430-2,90189090 +What is the hs code for RESTYLANE LYFT LIDOCAINE 1 ML (BHN BAKU OBAT) COA 15264-2,90189090 +"What is the hs code for BIO SODIUM HYALURONATE POWDER (MMW)BHN BAKU KOSMETIK, COA CHP1170818",39139090 +What is the hs code for GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-020497,39139090 +What is the hs code for ARBUTIN (BHN BAKU KOSMETIK) COA ARP-1071887,39139090 +What is the hs code for SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 071817,39139090 +What is the hs code for OLIGO HA (BHN BAKU KOSMETIK) COA OHA-042457,39139090 +What is the hs code for LICORICE EXTRACT (BHN BAKU KOSMETIK) COA GGB-011017,39139090 +What is the hs code for WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-031477,39139090 +What is the hs code for SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-040857,39139090 +What is the hs code for MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011017,39139090 +What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE USP (BHN BAKU OBAT) COA M110351,29339990 +What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NX1738M,29372200 +What is the hs code for SURELEASE ETHYLCELLULOSE ( BHN BAKU OBAT UTK PEWARNA TABLET) COA. IN535414,32151900 +"What is the hs code for SUPEROX TM AF (BHN BAKU KOSMETIK) COA.70611, 70807",39139090 +What is the hs code for TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA 70618,39139090 +What is the hs code for FD AND C RED #40/ALLURA RED AC AL... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP776692,32151900 +What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP762354,32151900 +What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP769009.1,32151900 +What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP779704...,32151900 +What is the hs code for METHOCEL K4M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180GCR003,39123900 +What is the hs code for METHOCEL E4M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180H5P032,39123900 +What is the hs code for METHOCEL K4M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180F3L001,39123900 +What is the hs code for METHOCEL K4M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180GCR003,39123900 +What is the hs code for METHOCEL E6 PREMIUM LV (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011H14L01,39123900 +What is the hs code for METHOCEL E6 PREMIUM LV (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011GB7L02,39123900 +What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN0160117,29221990 +What is the hs code for CINNARIZINE (BHN BAKU OBAT) COA 011052017CIN,29335990 +What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA. 8MT170642,30032000 +What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 170474,38249999 +"What is the hs code for CLAIR BLANCHE II( BHN BAKU KOSMETIK), COA 171381",38249999 +What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01707019,29362700 +What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00481106,29189900 +What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01707019,29362700 +What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01707019,29362700 +"What is the hs code for D PANTHENOL (BHN BAKU KOSMETIK) COA TL01704036,41",29362400 +What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01703805,29362400 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708160127,128,129",29189900 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0517070149,29189900 +What is the hs code for BEAUPLEX VH (BHN BAKU KOSMETIK) COA UF17082001,29189900 +What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11706005,29362900 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT17030160,29362100 +What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P7O07UA000,29189900 +What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P7O07UA000,29189900 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA TP17073511,3512",29211900 +"What is the hs code for AMLODIPINE BESILATE BP/EP (BHN BAKU OBAT), COA. AMB/086/08/17",29333990 +What is the hs code for KETOROLAC TROMETAMOL /TROMETHAMINE (BHN BAKU OBAT) COA.17100413,29339990 +What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA.201700286,28183000 +What is the hs code for MAGNESIUM HYDROXIDE FLOGEL USP (BHN BAKU OBAT) COA 201700156,28161000 +What is the hs code for DRY VITAMIN E 75PCT HP (BHN BAKU SUPLEMEN) COA WB0517168,29362800 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP24617,28363000 +What is the hs code for CORTISONE ACETATE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1600926226,29372900 +What is the hs code for GLICLAZIDE (BHN BAKU OBAT) COA 1740000389,29351000 +What is the hs code for LEVOFLOXACIN HEMIHYDRATE USP (BHN BAKU OBAT) COA LF17080041,29349990 +"What is the hs code for MATCHA POWDER 101-O (BHN BAKU KOSMETIK) , COA 707063 SAMPLE NO COMMERCIAL VALUE",39139090 +"What is the hs code for VC ASCORBIC ACID DC, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG1705001",29362700 +"What is the hs code for VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPB1707053,8145,8069",29362700 +"What is the hs code for VC SODIUM ASCORBATE REGULAR ,25KG BAL (B.BAKU SUPLEMEN) COA HPN1708148,8152",29362700 +What is the hs code for 1000/1400 SUGLETS 1000/1400 ( BHN BAKU OBAT UTK PEWARNA TABLET) COA. ST507221,32151900 +"What is the hs code for REDIVIVO (R) LYCOPENE 10PCT FS, 5KG ALU (BHN BAKU SUPLEMEN) COA UE01702004",29189900 +"What is the hs code for FLORAGLO LUTEIN 20PCT SAF,1KG BOT PE (BHN BAKU SUPLEMEN) COA UE01704014",32030010 +What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT17080035,29362500 +What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00117637,29362800 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17050011,32030010 +What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17070052,29362100 +What is the hs code for VITAMIN A AND D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT17070034,29362100 +What is the hs code for LANSOPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA LP0217C011,29333990 +What is the hs code for METHYL SULFONYL METHANE USP (BHN BAKU OBAT) COA 20170725,29309090 +What is the hs code for KANAMYCIN SULFATE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 170603,29419000 +What is the hs code for NICLOSAMIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 20170810,29242990 +What is the hs code for LINCOMYCIN HCL EP (BHN BAKU OBAT) COA 1705005,29419000 +What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20170816,29309090 +What is the hs code for CAPTOPRIL (BHN BAKU OBAT) COA 5103-17-119,29339990 +"What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1708046, 47,48,52,53,56, 57",29224900 +What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 17082601,29309090 +What is the hs code for METHYL SULFONYL METHANE USP (B.BAKU OBAT) COA 17082601,29309090 +What is the hs code for BIOTOX (BHN BAKU OBAT UTK PAKAN TERNAK) COA 280817-701,23099090 +What is the hs code for LIQUIPHOS STRONG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 300817-810,23099090 +What is the hs code for LIQUIPHOS STRONG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 300817-810,23099090 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS170802,39139090 +What is the hs code for PEPPERMINT ORGANIC DISTILLATE 1:5 SB (BHN BAKU KOSMETIK)COA MEPD170701-BIO,39139090 +What is the hs code for GRAPEFRUIT PHYTELENE EG 498 (BHN BAKU KOSMETIK)COA EG498-160702,39139090 +What is the hs code for LICOURICE ORGANIC OILY EXTRACT (BHN BAKU KOSMETIK)COA GLGT161102-HBIO,39139090 +What is the hs code for WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK)COA EG138-170601,39139090 +What is the hs code for ROMAN CHAMOMILLE PHYTELENE EG 088 (BHN BAKU KOSMETIK)COA EG088-170101,39139090 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO170601,39139090 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO170601,39139090 +"What is the hs code for OATWELL 22,18KG BAG (BHN BAKU MAKANAN) COA SOF172005, 2203",21069059 +What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598096,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598095,38249999 +What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598062,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598074,39061090 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598087,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598086,38249999 +What is the hs code for OPADRY AMB II WHITE(BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598089,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598094,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598093,38249999 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598052,39061090 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598099,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598088,38249999 +What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598106,32151900 +What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598106,32151900 +What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598106,32151900 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598097,38249999 +What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598090,38249999 +What is the hs code for ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598101,39061090 +What is the hs code for LIPOID PPL-600 (BHN BAKU OBAT) COA.577200-2170186/008-009 (2),29232010 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598416,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598418,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598417,38249999 +What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB090817,39123900 +"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B300717",39123900 +What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7170636,38210010 +What is the hs code for DROPPER VOGES-PROSKAUER A (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7136718,38210010 +"What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7209759",38210010 +"What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7209759",38210010 +What is the hs code for BOTTLE MARK EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7219546,38210010 +What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7209750,38210010 +What is the hs code for BOTTLE KOSER CITRATE MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 5055842,38210010 +What is the hs code for BOTTLE OXFORD MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7198842,38210010 +What is the hs code for BOTTLE TREHALOSE 10G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7228569,38210010 +What is the hs code for BOTTLE TREHALOSE 10G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7228569,38210010 +What is the hs code for BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7143641,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171538,38210010 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053868,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121569,38210010 +What is the hs code for BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7135806,38210010 +"What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7069571,597",38210010 +"What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121602,7171820",38210010 +What is the hs code for BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7143641,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121569,38210010 +"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7109998,7110592",38210010 +"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060848,71099",38210010 +"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7102884,7109903",38210010 +"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7018890",38210010 +What is the hs code for PAIL BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7193678,38210010 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7193678,38210010 +What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7103621,38210010 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7095842,38210010 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009966,38210010 +"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7068731",38210010 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7045539,38210010 +What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7142578,38210010 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7143982,38210010 +What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7114681,38210010 +What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7142628,38210010 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7102868,38210010 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053868,38210010 +What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7047892,38210010 +What is the hs code for PLATE STERILE RODAC EMPTY ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121584,38210010 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6333840,38210010 +What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7114771,38210010 +What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7151674,38210010 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6320611,38210010 +What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 6294620,38210010 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7114758,38210010 +What is the hs code for BOTTLE TCBS AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7193724,38210010 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7130695,38210010 +What is the hs code for BOTTLE VIOLET RED BILR GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6320612,38210010 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7109946,38210010 +"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7111887,...",38210010 +What is the hs code for CULTURESWAB PLUS AMIES W/O ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 170706516,38210010 +What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7136957,38210010 +What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7159717,38210010 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7151905,38210010 +What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7151925,38210010 +What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7131814,38210010 +What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 7146936,38210010 +What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121848,38210010 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009966,38210010 +What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060702,38210010 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7142625,38210010 +What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060815,38210010 +What is the hs code for BOTTLE DESTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7005857,38210010 +What is the hs code for BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060762,38210010 +What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7047892,38210010 +What is the hs code for BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7074531,38210010 +What is the hs code for BOTTLE CZAPEK DOX BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7024575,38210010 +What is the hs code for BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009518,38210010 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060948,38210010 +What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7152953,38210010 +What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7135968,38210010 +What is the hs code for BOTTLE MICRO INOCULUM BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6342747,38210010 +What is the hs code for BOTTLE NUTRIENT GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7030541,38210010 +What is the hs code for BOTTLE OXGALL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7074561,38210010 +What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7177823,38210010 +What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7088775,38210010 +What is the hs code for BOTTLE RAPPAPORT VASSILLIADIS MSRV 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6314689,38210010 +What is the hs code for BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 7212562,38210010 +What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6319507,38210010 +What is the hs code for BOTTLE SIM MEDIUM BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7009822,38210010 +What is the hs code for BOTTLE TRYPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7009838,38210010 +What is the hs code for SOLUTION BACTERIOSTAT CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2057C324,38210010 +"What is the hs code for O RING 0,028IN DIAX 0,009IN DIA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)",38210010 +What is the hs code for PHOSFLOW PERM BUFFER III 125ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7111910,38210010 +What is the hs code for NOZZLE ASSEMBLY 100UM S-TYPE (MEDIA UTK PENGEMBANGAN MIKROORGANISME),38210010 +What is the hs code for BOTTLE MALT EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7158801,38210010 +What is the hs code for BOTTLE MALT EXTRACT (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7158801,38210010 +What is the hs code for BOTTLE BEEF EXTRACT POWDER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6298524,38210010 +What is the hs code for BOTTLE PROTEOSE PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7102762,38210010 +What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 4056159,38210010 +What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7009551,38210010 +"What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7219674",38210010 +"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7041671",38210010 +What is the hs code for BD FC BEADS PERCP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7150701,38210010 +What is the hs code for CUSTOM CS AND T RUO BEADS (50T) (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7206861,38210010 +What is the hs code for FACS ACCUDROP BEADS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6284736,38210010 +What is the hs code for FC BEADS DILUTION BUFFER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7116699,38210010 +"What is the hs code for BD FC BEADS FITC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7156984",38210010 +What is the hs code for BD FC BEADS APC-R700 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7194809,38210010 +What is the hs code for BD FC BEADS APC CY7 (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7194807,38210010 +What is the hs code for BD FC BEADS V450 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7150941,38210010 +What is the hs code for BD FC BEADS V500-C (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7115984,38210010 +What is the hs code for BD FC BEADS PERCP CY5.5 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7150699,38210010 +What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7201782,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6307974,38210010 +"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3 MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7041671",38210010 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7111776,38210010 +What is the hs code for VIAL SAL O ANTIS POLY GRP ...(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6337887,38210010 +What is the hs code for BOTTLE TRYPTICASE SOY AG ...(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7142814,38210010 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7146880,38210010 +"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7111776,7117554",38210010 +What is the hs code for VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6197586,38210010 +"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7146880",38210010 +What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7109549,38210010 +What is the hs code for BOTTLE D/E NEUTRALIZING AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7153501,38210010 +What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7129876,38210010 +What is the hs code for VIAL E COLI H ANTISERUM H7 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6323840,38210010 +What is the hs code for BOTTLE HEMOGLOBIN SOL 2PCT... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7045874,38210010 +"What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7117574,7200569",38210010 +"What is the hs code for BOTTLE LACTOBACILLI MRS BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7129880",38210010 +What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7102829,38210010 +What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP A (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6239952,38210010 +What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP C (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6054509,38210010 +What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP W135 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6267761,38210010 +What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP Y 1MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7117785,38210010 +What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP B (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6210869,38210010 +What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP D (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6274754,38210010 +What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060799,38210010 +What is the hs code for VIAL SAL O ANTISERUM POLY A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6134963,38210010 +What is the hs code for CD19 PE CY7 SJ25C1 100 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7223772,38210010 +What is the hs code for STAIN BUFFER FBS 500ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7031808,38210010 +What is the hs code for HU CD3 HORIZON V450 UCHT1 120TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7130596,38210010 +What is the hs code for HU CD45 HORIZON V500 HI30 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7188870,38210010 +What is the hs code for CD3 APC-H7 SK7 100 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7212822,38210010 +What is the hs code for CD43 APC 8G12 100 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7186970,38210010 +What is the hs code for CD45 FITC/CD34 PE 2D1/8G12 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7157909,38210010 +What is the hs code for CD45 PER CP 2D1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7058522,38210010 +What is the hs code for CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7201538,38210010 +What is the hs code for CD13 PE L138 100 TESTS RUO/GMP( MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7174889,38210010 +What is the hs code for MS LG G1 KPA LTCI PE MOPC 21 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7125847,38210010 +What is the hs code for MS LG G1 KPA LTCI FITC MOPC 21 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6301865,38210010 +What is the hs code for LYSING BUFFER 10X CONCENTRATE 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7180899,38210010 +What is the hs code for HUMAN FOXP3 STAINING KIT PE 100 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),38210010 +What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 72196742,38210010 +What is the hs code for BD CST BEADS KIT 50 TESTS(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 68954,38210010 +What is the hs code for HU CD11C APC B-IY6 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7124669,38210010 +What is the hs code for HU CD209 APC DCN46 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7075780,38210010 +What is the hs code for HU CD163 PE GHI/61 100TST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7160585,38210010 +What is the hs code for HU CD64 HITC 10.1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6280735,38210010 +What is the hs code for HU CD274 PE MIH1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7069869,38210010 +What is the hs code for HU CD86 FITC 2331 (FUN-1) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7132528,38210010 +What is the hs code for HU CD206 FITC 19.2 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7069986,38210010 +What is the hs code for CD11C PE CE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7179827,38210010 +What is the hs code for HU CD40 FITC 5C3 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 7132522,38210010 +What is the hs code for HU HLA DR FITC L243 (G46-6) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6263631,38210010 +What is the hs code for MS LGG1KPA LTCI FITC MOPC-21 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6301865,38210010 +"What is the hs code for ROVIMIX AD3 1000/200,20KG BAL (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT17020176, 189",29362100 +"What is the hs code for ROVIMIX E 50 SD, 20KG BAG (BHN BAKU OBAT UTK PAKAN TERNAK) COA WB04170123,130",29362800 +What is the hs code for ROVIMIX E-50 ADSORBATE (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT17060171,29362800 +What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ70207006,29189900 +What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0018859,39139090 +What is the hs code for AC091KF FUCOGEL 1.5P 25 KG (BHN BAKU KOSMETIK) COA 0019047,39139090 +What is the hs code for ASTABIO ARV-S (BHN BAKU OBAT) COA.1706131K,32030010 +"What is the hs code for METAMIZOLE SODIUM DAB /EP 7.0 (BHN BAKU OBAT) COA 1705718,24,58,89",29331100 +What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND170704,29372200 +"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK,COA 01/17GL4",28399000 +"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK,COA 02/16-GL4 ,SAMPLE NO COMMERCIAL VALUE",28399000 +What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 16E5006,28399000 +What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 17E2402,28399000 +"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 1709EF3311",29224900 +What is the hs code for ZINDIDONE 5KG (BHN BAKU KOSMETIK) COA 0017961,29337900 +What is the hs code for THIOGLYCOLIC ACID 99PCT COSMETIC GRADE (BHN BAKU KOSMETIK) COA.0000060086,29309090 +"What is the hs code for AMMONIUM THIOGLYCOLATE 71PCT(60PCT TGA) BHN BAKU KOSMETIK, COA.0000060063",29309090 +"What is the hs code for MONOETHANOLAMINE THIOGLYCOLATE 83PCT (50PCT TGA) BHN BAKU KOSMETIK, COA 0000060062",29221100 +"What is the hs code for AMMONIUM THIOGLYCOLATE 71PCT (60PCT TGA) B.BAKU KOSMETIK, COA 0000060080,SAMPLE NO COMM VALUE",29309090 +"What is the hs code for DIAMMONIUM DITHIODIGLYCOLATE 48PCT... (BHN BAKU KOSMETIK),COA 0000060081,SAMPLE NO COMM VALUE",29309090 +"What is the hs code for MONOETHANOLAMINE THIOGLYCOLATE 83PCT... (BHN BAKU KOSMETIK),COA 0000060082 SAMPLE NO COMM VALUE",29309090 +"What is the hs code for POTASSIUM THIOGLYCOLATE 43PCT (30PCT TGA)B.BAKU KOSMETIK, COA 0000060083,SAMPLE NO COMM VALUE",29309090 +"What is the hs code for THIOGLYCOLIC ACID 99PCT PURE(BHN BAKU KOSMETIK) COA 0000060084,SAMPLE NO COMM VALUE",29309090 +"What is the hs code for THIOGLYCOLIC ACID 80PCT, COSMETIC GRADE(BHN BAKU KOSMETIK) COA 000006085,SAMPLE NO COMM VALUE",29309090 +What is the hs code for HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 2688201,33029000 +What is the hs code for B CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT16110070,32041900 +What is the hs code for B CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01611105,32041900 +What is the hs code for DL A TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17010012,29362800 +What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01704041,29362400 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT16120007,29362900 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17010011,29362400 +What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ70309009,29362300 +What is the hs code for CALCIUM D PANTOTHENATE (BHN BAKU MAKANAN) COA TL01703648,29362400 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11706005,29362900 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ70210055,29362300 +What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01704041,29362400 +What is the hs code for RIBOFLAVIN 5 PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1705063,29362300 +What is the hs code for CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB01116017,29362700 +What is the hs code for D-A TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20160302,29362800 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ70210055,29362300 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ70210056,29362300 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417031,29362200 +What is the hs code for ROCOAT THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA WB00417031,29362200 +What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01704108,29362900 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01704108,29362900 +What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01704108,29362900 +What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91708220,21069059 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70602301,29362200 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN)) COA UT17020002,29362800 +"What is the hs code for VITAMIN PREMIX TYPE MM81 (105PCT) BHN BAKU MAKANAN, COA XW91708169",21069059 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT17050014,29362900 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70602301,29362200 +What is the hs code for RIBOFLAVIN 5 PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1705063,29362300 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17040013,29362900 +What is the hs code for RIBOFLAVIN 5 PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1705063,29362300 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL01703648,29362400 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17040733,29362100 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17050062,29362900 +What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91708078,21069059 +What is the hs code for CALCIUM D PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01703648,29362400 +What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70506115,29362700 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70213050,3051",29362500 +What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01705492,29362700 +What is the hs code for CALCIUM D PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01703648,29362400 +What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01705492,29362700 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70503138,29362200 +What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01705492,29362700 +What is the hs code for B CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT16110070,32041900 +What is the hs code for DL A TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT17010012,29362800 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT17050014,29362900 +"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70406094,95",29362700 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70213050,29362500 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT17030160",29362100 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI16070010,29362900 +What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01705492,29362700 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1706005,29362900 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT16090336,29362400 +"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT17050022,12",29362600 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17050022,29362600 +What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01705492,29362700 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN535463,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN535480,35051010 +What is the hs code for SELVOL 540 PVOH 25 KG BAG (BHN BAKU KOSMETIK) COA PO41683061,39139090 +What is the hs code for DPG FG (BHN BAKU KOSMETIK) COA A0292ID,29094900 +What is the hs code for PG USP (BHN BAKU KOSMETIK) COA A02921U,29053200 +What is the hs code for INSTANT BLACK TEA POWDER TH B430 (BHN BAKU MAKANAN) COA 2017090402,21012020 +"What is the hs code for ARGAN OIL, 10KG PAIL PE(BHN BAKU KOSMETIK) COA AVD0015511",29362500 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0317050734,736,737,748,779,780",29189900 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517070147",29189900 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)BHN BAKU KOSMETIK, COA UT17030160",29362100 +What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01703805,29362400 +What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708160129,29189900 +What is the hs code for BEAUPLEX VH (BHN BAKU KOSMETIK) COA UF17082001,29189900 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517040082,84,86.70147",29189900 +"What is the hs code for PARSOL 340,25KG PC(BHN BAKU KOSMETIK) COA 0217070082",29189900 +"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0217060064",29189900 +What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00494228,29189900 +"What is the hs code for STAY C 50 (BHN BAKU KOSMETIK), COA UE01706008,6011",29362700 +"What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01706011,14",29362700 +What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91708174,29189900 +What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA OP81705019,29362900 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ7041308447,29362500 +"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT )COA.ASG/07/310717,08/260817...",29420000 +What is the hs code for SODIUM VALPROATE (BAHAN BAKU OBAT) COA.450183,29159090 +What is the hs code for CHOLINE L-BITARTRATE (BAHAN BAKU OBAT) COA.3012866,29231000 +"What is the hs code for METAMIZOLE SODIUM DAB /EP 7.0 (BHN BAKU OBAT) COA 17071023,25,1148,1215",29331100 +What is the hs code for CETIRIZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA 17028CZ6RII,29335990 +What is the hs code for AMPICILLIN TRIHYDRATE PURICILLIN COMPACTED (BHN BAKU OBAT) COA. M842138 S/D 42,29411020 +"What is the hs code for AMOXICILLIN TRIHYDRATE PURIMOX COMPACTED (BHN BAKU OBAT) COA M529259,286,289",29411019 +What is the hs code for AMOXICILIN TRIHYDRATE PURIMOX POWDER (BHN BAKU OBAT) COA M483449,29411019 +"What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK), COA.170864",13021990 +What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 171058,13021990 +What is the hs code for CLAIRJU (BHN BAKU KOSMETIK) COA 170508,13021990 +What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 170864,13021990 +What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 170864,13021990 +What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 171335,13021990 +What is the hs code for MATIPURE OIL FREE (BHN BAKU KOSMETIK) COA 1714402,39139090 +What is the hs code for SILIGEL (BHN BAKU KOSMETIK) COA 1719401,39139090 +What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5457516,39139090 +What is the hs code for B WHITE (BHN BAKU KOSMETIK) COA 829015126H,39139090 +What is the hs code for B WHITE (BHN BAKU KOSMETIK) COA 829015243H,39139090 +What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830015347H,39139090 +"What is the hs code for LANABLUE (BHN BAKU KOSMETIK), COA 5497917",39139090 +"What is the hs code for MELANOSTATINE 5BG (50PPM) (BHN BAKU KOSMETIK), COA 817044833G",39139090 +What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025335H,39139090 +What is the hs code for HELIOGEL (BHN BAKU KOSMETIK) COA 1706301,39139090 +What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5471517,39139090 +What is the hs code for B WHITE (BHN BAKU KOSMETIK) COA 829015243H,39139090 +What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769015349H,39139090 +What is the hs code for CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785015248H,39139090 +"What is the hs code for CW 5C 5PCT CLEAR BHN BAKU KOSMETIK, COA 785015305H",39139090 +What is the hs code for HELIOGEL (BHN BAKU KOSMETIK) COA 1706301,39139090 +What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5497617,39139090 +What is the hs code for PRO-LIPO NEO (BHN BAKU KOSMETIK) COA 1713601,39139090 +What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025335H,39139090 +What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597966,38249999 +What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598223,38249999 +What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598214,38249999 +What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598222,38249999 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598221,39061090 +What is the hs code for OPADRY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598211,38249999 +What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598210,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598218,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598217,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598225,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598213,38249999 +What is the hs code for OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598219,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598224,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598226,38249999 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00517168,29362800 +What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU SUPLEMEN) COA XH20170701,29362800 +"What is the hs code for FLORAGLO LUTEIN 20PCT SAF, IKG BOT PE (BHN BAKU SUPLEMEN) COA UE01704014",32030010 +What is the hs code for GENIVIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010016,29329990 +What is the hs code for SK BIOLAND ASTRIN AG (BHN BAKU KOSMETIK)COA BAG-030126,39139090 +What is the hs code for SK BIOLAND GRAPE SED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-020497,39139090 +What is the hs code for SK BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUP-021367,39139090 +"What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK)COA HMVBD-031477,040597",39139090 +What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-1110597,39139090 +What is the hs code for SK BIOLAND LICORICE EXTRACT (BHN BAKU KOSMETIK) COA GGB-022887,39139090 +What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011017,39139090 +"What is the hs code for SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK)COA OSLP-142287, OSLP-152487",39139090 +"What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-040857,051277",39139090 +What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 071817,39139090 +What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 110717,25070000 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA DIB,39139090 +What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA DHC,39139090 +What is the hs code for PROMOIS HYDROMILK (BHN BAKU KOSMETIK) COA DED,39139090 +What is the hs code for VISTANOL GDHR (BHN BAKU KOSMETIK) COA EJF,39139090 +"What is the hs code for OXYTETRACYCLINE DIHYDRATE (BHN BAKU OBAT) COA ZT170758,0926",29413000 +What is the hs code for PHENYTOIN SODIUM (BHN BAKU OBAT) COA.17100504,29332100 +"What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.17100555,556",29391900 +What is the hs code for VACCINIUM MYRTILLUS DRY EX (BHN BAKU SUPLEMEN) COA 32485/M1,13021990 +What is the hs code for CURCUMA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 32489/M7,38249999 +"What is the hs code for WHITE WILLOW BARK 50/20PCT BHN BAKU KOSMETIK, COA 20161014-610",39139090 +"What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1708066,69,70,73,74,76,78 S/D 80,83",29224900 +What is the hs code for IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S358/17,38029090 +What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB090817,39123900 +"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B300717",39123900 +"What is the hs code for PANTOPROZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT,COA APSS17004",29333990 +"What is the hs code for MEG-3 '30' N-3 INF OIL, 4,5KG PJUG (BHN BAKU SUPLEMEN) COA.TS00008657",29362500 +What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 01/17GAAK,28399000 +"What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU OBAT) COA.01/17GAAK,SAMPLE NO COMM VALUE",28399000 +What is the hs code for TEFOSE 63 (BAHAN BAKU OBAT) COA.163794,28399000 +What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M.31PCT (BHN BAKU OBAT) COA 101729021,28161000 +"What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7082920,7214775",38210010 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70313056,29362500 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN) COA UT17070161,29362100 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17030160,29362100 +"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70503156,58",29362200 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01611106,32041900 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17010020,29362800 +What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01704042,29362400 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT17030160,29362100 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01612020,29362900 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT16110070,32041900 +What is the hs code for CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB00517033,29362700 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01704108,29362900 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17030085,29362400 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1706007,29362900 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ70210059,29362300 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT17020002,29362800 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70602307,29362200 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G TOCO) (BHN BAKU MAKANAN) COA UT17070161,29362100 +What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91708341,21069059 +What is the hs code for DWI BI (BHN BAKU MAKANAN) COA XW91708343,21069059 +What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91709064,21069059 +What is the hs code for PREMIX KNPX CH 00 16 (BHN BAKU MAKANAN) COA XW91709080,21069059 +What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW91709090,21069059 +"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17010011,30085",29362400 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT17040739,29362100 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT17030019,29362800 +"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN), COA UT17020002",29362800 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17020017,29362100 +What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ70309009,29362300 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01612020,29362900 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01611106,32041900 +What is the hs code for CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB00517033,29362700 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01704108,29362900 +What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20160302,29362800 +What is the hs code for GRAPE SEED ORGANIC OIL C00031 (BHN BAKU KOSMETIK)COA RPH170903-ENBIO,39139090 +What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA170901,39139090 +What is the hs code for LINEN OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA LIUH170804-H,39139090 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO170601,39139090 +What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-170301-GS,39139090 +What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA.70607,39139090 +What is the hs code for SUPEROX C TM AF (BHN BAKU KOSMETIK) COA.70807,39139090 +What is the hs code for WILDPLUM HARVERST TM AF (BHN BAKU KOSMETIK) COA 70803,39139090 +What is the hs code for TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA 70913,39139090 +What is the hs code for TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA 70618,39139090 +What is the hs code for BARCROFT TM 0325 DRIED AL HYD GEL USP(BHN BAKU OBAT) COA.101758042,28183000 +"What is the hs code for COLCHICINE USP (BHN BAKU SUPLEMEN) COA 55032/1,SAMPLE NO COMMERCIAL VALUE",29397900 +What is the hs code for THE MATCHA 1 P001062 (BHN BAKU KOSMETIK) COA 0000006988,33029000 +What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA.0000005734,33029000 +What is the hs code for GINSENG DRY EXTRACT 2PCT COLOR (BAHAN BAKU SUPPLEMEN) COA 10430/M1,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10504/M1,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10399/M1,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10400/M1,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10429/M1,13021990 +"What is the hs code for LIPOID S 20 (BHN BAKU OBAT) COA.572000-2170117/037-039 (3), 572000-2170117/051",29232010 +What is the hs code for PEG 400 (BAHAN BAKU KOSMETIK) COA.AKW0004371,39139090 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01708425,31,36",29362700 +"What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT17080010,11",29362100 +What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20170701,29362800 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598218,38249999 +What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598405,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598404,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598414,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598543,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598409,38249999 +What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598407,39061090 +What is the hs code for ACRYL EZE PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598408,39061090 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598412,39061090 +What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598403,38249999 +What is the hs code for OPADRY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598400,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598414,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598413,38249999 +"What is the hs code for PURIDROX TM COMPACTED, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B339914,17,18,19",29419000 +What is the hs code for METHOCEL E5 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011G6KL03,39123900 +What is the hs code for METHOCEL E6 PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011GBFL01,39123900 +What is the hs code for METHOCEL E6 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011GADL01,39123900 +What is the hs code for METHOCEL E50 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011GB0L03,39123900 +What is the hs code for METHOCEL K4M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180G33001,39123900 +What is the hs code for ETHOCEL STANDARD 20 PREMIUM... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D184H75021,39123900 +What is the hs code for VITAMIN MINERAL PREMIX FOR MICRONUTRIENT POWDER (BHN BAKU MAKANAN) COA MY61709168,21069059 +"What is the hs code for CARVEDILOL USP (BHN BAKU OBAT) COA 17CVM1002,003,005",29398000 +What is the hs code for LANOLINE ANHYDROUS (BHN BAKU KOSMETIK) COA 4501,39139090 +What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20170701,29362800 +What is the hs code for VIT A PALM 1.0 M AND VIT D3 100000 (BHN BAKU MAKANAN) COA UT17090043,29362100 +What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00617194,29362100 +What is the hs code for JAGUAR C 162 CARDBOARD BOX 25 KG (BHN BAKU KOSMETIK) COA MJAC17255A,39139090 +"What is the hs code for OPTISHARP NAT,ZEA 5PCT CWS/S... (B. BAKU SUPLEMEN) COA EW16115002 SAMPLE NO COMM VALUE",32041900 +What is the hs code for OPTISHARP NAT.ZEA 5PCT CWS/S... (B. BAKU SUPLEMEN) COA EW16115003 SAMPLE NO COMM VALUE,32041900 +"What is the hs code for ASCORBIC ACID 0,050 KG SAMPLE (B. BAKU SUPLEMEN) COA TL01701285 SAMPLE NO COMM VALUE",29362700 +"What is the hs code for ASCORBIC ACID, 0,050 KG SAMPLE (B. BAKU SUPLEMEN) COA TL01706844 SAMPLE NO COMM VALUE",29362700 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00915140 SAMPLE NO COMM VALUE,29362800 +What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (B. BAKU SUPLEMEN) COA UT16110050 SAMPLE NO COMM VALUE,29362100 +What is the hs code for CALCIUM D PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01702635 SAMPLE NO COMM VALUE,29362400 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01607020 SAMPLE NO COMM VALUE,29362900 +What is the hs code for VC ASCORBIC ACID REGULAR (BHN BAKU SUPLEMEN) COA D201612002 SAMPLE NO COMM VALUE,29362700 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT17010010 SAMPLE NO COMM VALUE,32041900 +What is the hs code for VC ASCORBIC ACID REGULAR ...(BHN BAKU SUPLEMEN) COA D201612002 SAMPLE NO COMM VALUE,29362700 +What is the hs code for VC ASCORBIC ACID REGULAR... (BHN BAKU SUPLEMEN) COA B201612033 SAMPLE NO COMM VALUE,29362700 +What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00816163 SAMPLE NO COMM VALUE,29362100 +What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00816163 SAMPLE NO COMM VALUE,29362100 +"What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB01016164, SAMPLE NO COMM VALUE",29362100 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (BHN BAKU SUPLEMEN) COA UT17040739 SAMPLE NO COMM VALUE,29362100 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT17010054,29362900 +What is the hs code for VITAMIN B12 1PCT SD (BHN BAKU SUPLEMEN) COA UT17010001 SAMPLE NO COMM VALUE,29362600 +What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00816163 SAMPLE NO COMM VALUE,29362100 +What is the hs code for DL A TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT17020016 SAMPLE NO COMM VALUE,29362800 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI16070010 SAMPLE NO COMM VALUE,29362900 +What is the hs code for OPTISHARP NAT.ZEA 5PCT CWS/S... (BHN BAKU SUPLEMEN) COA EW16115001 SAMPLE NO COMM VALUE,32041900 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT16020014 SAMPLE NO COMMERCIAL VALUE,29362900 +What is the hs code for CALCIUM D PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01702635 SAMPLE NO COMM VALUE,29362400 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (B. BAKU SUPLEMEN) COA WB00715010 SAMPLE NO COMM VALUE,29362300 +What is the hs code for RESTYLANE VOLYME 1 ML (BHN BAKU OBAT) COA 15063-1,90189090 +What is the hs code for RESTYLANE DEFYNE 1 ML (BHN BAKU OBAT) COA 15022-1,90189090 +"What is the hs code for CANNULA 23G PIXL 0,6X50 (BHN BAKU OBAT) COA 10005023/190717",90189090 +"What is the hs code for CANNULA 25G PIXL 0,5X40 (BHN BAKU OBAT) COA 10005022/140617",90189090 +What is the hs code for RESTYLANE SKINB VITLIDO 1MLD16 (BHN BAKU OBAT) COA 15430-2,90189090 +What is the hs code for RESTYLANE LYFT LIDOCAINE 1 ML (BHN BAKU OBAT) COA 15317-2,90189090 +What is the hs code for RESTYLANE LYFT LIDOCAINE 1 ML (BHN BAKU OBAT) COA 15317-2,90189090 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA. RBA2491700,28363000 +"What is the hs code for PRO LIPO NEO (BHN BAKU KOSMETIK) COA 1721501, 1715801",39139090 +What is the hs code for B WHITE (BHN BAKU KOSMETIK) COA 829015350H,39139090 +What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769015349H,39139090 +What is the hs code for CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785015444H,39139090 +What is the hs code for CS 5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785015526H,39139090 +What is the hs code for CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785015305H,39139090 +"What is the hs code for LANABLUE (BHN BAKU KOSMETIK), COA 5497917",39139090 +"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK), COA 1710602",39139090 +What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5457416,39139090 +What is the hs code for MELANOSTATINE 5 PS (50PPM) (BHN BAKU KOSMETIK) COA 817015255H,39139090 +What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015372H,39139090 +What is the hs code for SWT 7TH H (BHN BAKU KOSMETIK) COA 1714501,39139090 +What is the hs code for SWT 7 TM L (BHN BAKU KOSMETIK) COA 1632001,39139090 +What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025335H,39139090 +What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025335H,39139090 +What is the hs code for OPALUX GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT666487,32151900 +What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT666488,32151900 +What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT666478,32151900 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA ROA240174,28363000 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA ROA243173,28363000 +"What is the hs code for OATWELL 22,18KG BAG (BHN BAKU MAKANAN) COA SOF172005, 2204",21069059 +What is the hs code for CELLATOSE(R) 80 (BHN BAKU OBAT) COA L1004630017A535,17021100 +What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE USP (BHN BAKU OBAT) COA M110365,29339990 +What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE USP (BHN BAKU OBAT) COA M110365,29339990 +What is the hs code for PHARMABURST (R) C1 (BHN BAKU OBAT) COA.121707830,21069099 +"What is the hs code for TEAVIGO (1KG), BHN BAKU MAKANAN, COA 708161",39139090 +"What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK), COA.171728",38249999 +What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 171383,13021990 +What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 170864,13021990 +What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 171728,38249999 +What is the hs code for OPADRY QX YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598863,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598900,38249999 +What is the hs code for ETHOCEL STANDARD 14 PREMIUM... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.D184G71021,39123900 +What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP779705...,32151900 +What is the hs code for FD AND C RED #40/ALLURA RED AC AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP784985...,32151900 +What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP779706...,32151900 +"What is the hs code for JAGUAR HP 105, 25KG CARDBOARD CARTON (BHN BAKU KOSMETIK) COA H1707157D",39139090 +What is the hs code for AC019KC PHYTOVITYL C 5KG BHN BAKU KOSMETIK COA 0016267,39139090 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517050117",29189900 +"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00494230,4231,4961,5421",29189900 +"What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11706007,6009",29362900 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT17030160,29362100 +"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01704043,5045",29362400 +What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01703806,29362400 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708160129,130",29189900 +What is the hs code for BEAUPLEX VH (BHN BAKU KOSMETIK) COA UF17082001,29189900 +What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P7P24UA000,29189900 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01706055 S/D 57,29362400 +What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01703806,29362400 +What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01706014,29362700 +"What is the hs code for PARSOL HS (BHN BAKU KOSMETIK) COA 0709150116, 0709160001",29189900 +"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91709283,84",29189900 +What is the hs code for PROCATEROL HCL HEMIHYDRATE MICRONIZED (B.BAKU OBAT) COA 860020315M1,29337900 +What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-001-U,39139090 +What is the hs code for TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA629366,32151900 +What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND170705,29372200 +What is the hs code for O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 030117/004441,39139090 +"What is the hs code for FLOWLAC (R) 100 (BHN BAKU OBAT) COA. L101503617A537, L101512617A537",17021100 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101853717A545,17021100 +What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA.17100596,29221990 +"What is the hs code for BIO SODIUM HYALURONATE POWDER (MMW)BHN BAKU KOSMETIK, COA CHP1170926",39139090 +"What is the hs code for SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 071817,2017G1492",39139090 +What is the hs code for SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-051277,39139090 +What is the hs code for ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-011177,39139090 +What is the hs code for ARBUTIN (BHN BAKU KOSMETIK) COA ARP-1110597,39139090 +What is the hs code for ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-010337,39139090 +What is the hs code for CUCUMBER EXTRACT (BHN BAKU KOSMETIK) COA CUPD-033067,39139090 +What is the hs code for OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-122697,39139090 +What is the hs code for WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-052297,39139090 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598649,38249999 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598648,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598652,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598637,38249999 +What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598653,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598655,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598656,38249999 +What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK) COA.LDC 238 17,39139090 +"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7187993",38210010 +What is the hs code for DL. PANTHENOL 50L (BHN BAKU KOSMETIK) COA TL01702609,29362400 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0317050781 S/D 785",29189900 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ60913275,29362500 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK), COA 051705017,30",29189900 +"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA OP81706018,19",29362900 +"What is the hs code for ARGAN OIL,19KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0015511",29362500 +"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0317050785,786",29189900 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK), COA 0517060131",29189900 +What is the hs code for D BIOTIN (BHN BAKU KOSMETIK) COA UE01704108,29362900 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA. ROA274173,28363000 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170904,39139090 +What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-171002-GS,39139090 +What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIVD160903-BGBIO,39139090 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO170601,39139090 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170904,39139090 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO170601,39139090 +What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK)COA EG543-170905,39139090 +What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH170903-ENBIO,39139090 +What is the hs code for HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIE170702,39139090 +What is the hs code for LICORICE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA GLG171001-BGBIO,39139090 +What is the hs code for LIQUORICE ORGANIC OILY EXTRACT (BHN BAKU KOSMETIK) COA GLGT171001-HBIO,39139090 +What is the hs code for WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK) COA EG138-170601,39139090 +What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM170702-PGH,39139090 +What is the hs code for ALLOPURINOL BP (BHN BAKU OBAT) COA ALP0060817,29335990 +"What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7209759",38210010 +"What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7157502",38210010 +What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6201884,38210010 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7116560,38210010 +What is the hs code for BOTTLE MALT EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7158801,38210010 +What is the hs code for BOTTLE PROTEOSE PEPTONE NO 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7107877,38210010 +What is the hs code for BOTTLE BEEF EXTRACT POWDER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6298524,38210010 +"What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7109930",38210010 +What is the hs code for BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060762,38210010 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 7171993,38210010 +What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7205816,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 8 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 5201890,38210010 +What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7135933,38210010 +What is the hs code for BOTTLE CELLOBIOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7156992,38210010 +What is the hs code for BOTTLE D-MANNOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7135976,38210010 +"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7207681",38210010 +What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7143744,38210010 +What is the hs code for BOTTLE ENDO AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6026738,38210010 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060948,38210010 +What is the hs code for BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7075670,38210010 +What is the hs code for BOTTLE MARINE BROTH 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7156792,38210010 +What is the hs code for BOTTLE MICRO INOCULUM BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6342747,38210010 +"What is the hs code for BOTTLE PHENOL RED LACTOSE BR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7082956",38210010 +What is the hs code for BOTTLE PHENOL RED SUCROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009818,38210010 +What is the hs code for BOTTLE PHENOL RED BROTH BASE BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6131892,38210010 +What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7177823,38210010 +What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7153977,38210010 +What is the hs code for BOTTLE RAPPAPORT CASSILIADIS MSRV 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6314689,38210010 +What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7193914,38210010 +"What is the hs code for BOTTLE WL DIFFERENTIAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7009556",38210010 +What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7206693,38210010 +What is the hs code for KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7229653,38210010 +What is the hs code for KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7229653,38210010 +What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7255892,38210010 +What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7209759,38210010 +What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7255892,38210010 +What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7069597,38210010 +What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7209759,38210010 +"What is the hs code for BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7100982,9925",38210010 +What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7101832,38210010 +What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6228993,38210010 +What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7255892,38210010 +What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171820,38210010 +What is the hs code for BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7143641,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121569,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171538,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 6278835,38210010 +What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7110592,38210010 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7018890,38210010 +What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121848,38210010 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009966,38210010 +"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7068731,7171993",38210010 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7116560,38210010 +What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7142578,38210010 +What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7114681,38210010 +What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7142628,38210010 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7198804,38210010 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7095554,38210010 +What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7041754,38210010 +What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060815,38210010 +What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060602,38210010 +What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7102910,38210010 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6333840,38210010 +What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 7114771,38210010 +What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7151674,38210010 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6320611,38210010 +"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7135844,71639",38210010 +What is the hs code for BOTTLE SABOURAUD DEXTROSE BROT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7053897,38210010 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7128678,38210010 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7193724,38210010 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7130695,38210010 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6320612,38210010 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7193733,38210010 +What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7005857,38210010 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7109946,38210010 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7143815,38210010 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009966,38210010 +What is the hs code for NOXXLE ASSEMBLY 70UM S TYPE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),38210010 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7179844,38210010 +What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7255892,38210010 +"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7156641,7208917",38210010 +"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7152964,.",38210010 +What is the hs code for VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6197586,38210010 +What is the hs code for VIAL SAL O ANTIS POLY GRP ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6337887,38210010 +What is the hs code for BOTTLE TRYPTICASE SOY AG ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7142814,38210010 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7237643,38210010 +What is the hs code for CD7 APC (M-T701) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7240826,38210010 +"What is the hs code for BD CST BEADS KIT 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 68954",38210010 +What is the hs code for HY MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7219674,38210010 +What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 7186970,38210010 +What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7174889,38210010 +What is the hs code for HU REGULATORY T CELL CKTL 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7234824,38210010 +What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171565,38210010 +What is the hs code for CD117 PE 1-4D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7094972,38210010 +What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7241637,38210010 +"What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7212855",38210010 +What is the hs code for HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7125585,38210010 +What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7214775,38210010 +What is the hs code for BOTTLE M GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7102829,38210010 +What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060854,38210010 +What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7200569,38210010 +What is the hs code for BOTTLE LEPTOSPIRA ENRICHMENT... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7188915,38210010 +"What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP A (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6239952",38210010 +What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP C (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6054509,38210010 +What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP W135 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6267761,38210010 +What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP Y 1MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7117785,38210010 +What is the hs code for BOTTLE UREA BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7220790,38210010 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6309655,38210010 +What is the hs code for IFN GAMMA APC RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7236968,38210010 +"What is the hs code for CD19 PERCP CY5.5 SJ25C1 50 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7128512",38210010 +What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702444279,29372900 +What is the hs code for HYOSCINE BUTYL BROMIDE EP/BP (BHN BAKU OBAT) COA.2530517,29397900 +What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) BAHAN BAKU OBAT) COA.4453012184,39139090 +What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00617194,29362100 +What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17070052,29362100 +What is the hs code for THEOPHYLLIN BP/EP (BHN BAKU OBAT) COA 17304 S/D 17313,29395900 +What is the hs code for FERROUS FUMARATE USP/EP (BHN BAKU OBAT) COA.2017/261,29171900 +What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA.01/17GAAK,28399000 +"What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 01/17GAAK,SAMPLE NO COMM VALUE",28399000 +What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BAHAN BAKU OBAT) COA 163815,28399000 +What is the hs code for TRANSCUTOL P (BAHAN BAKU OBAT) COA 165110,28399000 +What is the hs code for LABRAFIL M 1944 CS (BHN BAKU OBAT) COA 164849,28399000 +What is the hs code for AMOXICILLIN TRIHYDRATE PURIMOX POWDER (BHN BAKU OBAT) COA M483509,29411019 +"What is the hs code for AMOXICILLIN TRIHYDRATE PURIMOX COMPACTED (BHN BAKU OBAT) COA M529404,405",29411019 +"What is the hs code for AMOXICILLIN TRIHYDRATE PURIMOX POWDER GRADE C (BHN BAKU OBAT) COA M631507, 510",29411019 +"What is the hs code for SULPHAMETHOXAZOLE BP (BHN BAKU OBAT) COA.26241017,26251017...",29351000 +"What is the hs code for RANITIDINE HCL (BHN BAKU OBAT) COA RH/10 2017 1315, RH 10 2017 1316",29321900 +"What is the hs code for SULPHAMETHOXAZOLE BP MICRONISED (BHN BAKU OBAT) COA.26371017,26381017...",29351000 +What is the hs code for EUXYL K 900 CN 10 KG KA (BHN BAKU KOSMETIK) COA.1336571,38249999 +"What is the hs code for SENSIDIN DO CN 10KG CA (BHN BAKU KOSMETIK) COA.1336925,8671",38249999 +"What is the hs code for WITCH HAZEL (14PCT STANDARD ALCOHOL) BHN BAKU KOSMETIK, COA A10212",39139090 +What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17090010,29189900 +What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17090010,29189900 +What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17090010,29189900 +"What is the hs code for MEG-3 '30' N-3 INF OIL, 4,5KG PJUG (BHN BAKU SUPLEMEN) COA.TS00008874",29362500 +"What is the hs code for NIACINAMIDE PC,20KG BAL (BHN BAKU KOSMETIK) COA OP81706019,21",29362900 +What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0317050786 S/D 91,29189900 +What is the hs code for MEROPENEM TRIHYDRATE WITH SODIUM CARBONATE STERILE (BHN BAKU OBAT) COA S0820170806,30032000 +What is the hs code for NEOMYCIN SULPHATE (BHN BAKU OBAT) COA 201708050,29419000 +"What is the hs code for LEVOFLOXACIN HEMIHYDRATE (FREE ALKALINE) BHN BAKU OBAT, COA C008-1701102",29349990 +What is the hs code for D-GLUCOSAMINE SULPHATE POTASSIUM (BHN BAKU OBAT) COA XH2017092501,29329990 +What is the hs code for FENOFIBRATE MICRONIZED (BHN BAKU OBAT) COA W-F03-20170506-06,29189900 +What is the hs code for PRAVASTATIN SODIUM (BHN BAKU OBAT) COA PV201607173,29189900 +What is the hs code for SENTRY POLYOX WSR 303 LEO NF ( BHN BAKU OBAT UTK PEWARNA TABLET) COA. D682H4QRR4,39123900 +What is the hs code for ALDAVINE 5X (BHN BAKU KOSMETIK) COA 5493217,39139090 +What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830015440H,39139090 +"What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK), COA 769015443H",39139090 +"What is the hs code for HELIOGEL TM (BHN BAKU KOSMETIK), COA 1624901",39139090 +What is the hs code for HELIOGEL (BHN BAKU KOSMETIK) COA 1628101,39139090 +What is the hs code for LECIGEL (BHN BAKU KOSMETIK) COA 1710603,39139090 +What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5509217,39139090 +What is the hs code for PRO-LIPO TM NEO (BHN BAKU KOSMETIK) COA 1726901,39139090 +What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025335H,39139090 +What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5471517,39139090 +What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA.70704,39139090 +What is the hs code for SUPEROX C TM AF (BHN BAKU KOSMETIK) COA.70910,39139090 +What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 70910,39139090 +What is the hs code for TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA 70618,39139090 +What is the hs code for B CAROTENE 10PCT EMULS (BHN BAKU MAKANAN) COA UE01710009,32041900 +"What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334487,88,90",29419000 +What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA Q701900,29419000 +What is the hs code for MEROPENEM WITH SODIUM CARBONATE (BHN BAKU OBAT) COA Q900100,30039000 +What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA Q100700,29419000 +What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT17080037,29362500 +"What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT17080035,37",29362500 +"What is the hs code for DRY VITAMIN E 50PCT SD ,15KG BOXALU (BHN BAKU SUPLEMEN) COA WB01870237",29362800 +"What is the hs code for ROVIMIX A 1000,20KG BAL (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT17060596,597, 600",29362100 +What is the hs code for POLYQUTA 400KC (BHN BAKU KOSMETIK) COA. 70922135,39129090 +What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA.MLAH053091718,29341000 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT17030019,29362800 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70313060,62,64",29362500 +What is the hs code for CALCIUM D-PANTOTHNATE (BHN BAKU MAKANAN) COA TL01705671,29362400 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01611107,32041900 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70413083,29362500 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70413083,29362500 +What is the hs code for ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01704374,29362700 +What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01707061,29362400 +What is the hs code for ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01704374,29362700 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01611107,32041900 +"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70603197,98",29362200 +What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91709254,21069059 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT17050024,29362600 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT17010034,29362400 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT17050024,29362600 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17050024,29362600 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17050024,29362600 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17050024,29362600 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17050024,29362600 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17030011,32041900 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17050024,29362600 +What is the hs code for RIBOFLAVIN 5PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1704053,29362300 +What is the hs code for CALCIUM D PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01705671,29362400 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT16120007,29362900 +What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ70309009,29362300 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01612020,29362900 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17040013,29362900 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17050062,29362900 +What is the hs code for VITAMIN PREMIX 103093-A (BHN BAKU MAKANAN) COA XW91709154,21069059 +"What is the hs code for VITAMIN PREMIX, TYPE MM81 (105PCT) BHN BAKU MAKANAN, COA XW91709155",21069059 +What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91709329,21069059 +What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91709336,21069059 +What is the hs code for DWI-BI (BHN BAKU MAKANAN) COA XW91709330,21069059 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT17050014,29362900 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN, COA U17050741",29362100 +What is the hs code for DL A TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17010020,29362800 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT17070161",29362100 +What is the hs code for CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB00517033,29362700 +What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01706057,29362400 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17030085,29362400 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11706016,29362900 +What is the hs code for RIBOFLAVIN 5 PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1704053,29362300 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17040013,29362900 +What is the hs code for CALCIUM D PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01705671,29362400 +What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW91710014,21069059 +What is the hs code for PX 103070 C3 (BHN BAKU MAKANAN) COA XW91710015,21069059 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL01705671,29362400 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)BHN BAKU MAKANAN, COA UT17070162",29362100 +"What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER (B.BAKU MAKANAN) COA WB00717300, SAMPLE NO COMM VALUE",29362500 +What is the hs code for EVERMAP 160K (BHN BAKU KOSMETIK) COA.C17050101E160K,38249999 +What is the hs code for CEFIXIME TRYHYDRATE (BHN BAKU OBAT) COA Q900100,29419000 +What is the hs code for CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA.1GC01CLB ZP48D 25MT,39139090 +What is the hs code for GRAPE SEED ORGANIC OIL C00031 (BHN BAKU KOSMETIK)COA RPH171004-ENBIO-RQ,39139090 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO170601,39139090 +What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK)COA EG543-170905,39139090 +What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIV171001-BGBIO,39139090 +What is the hs code for PEPPERMINT ORGANIC DISTILLATE 1:5 SB (BHN BAKU KOSMETIK) COA MEPD170701-BIO,39139090 +What is the hs code for LICORICE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA GLG171001-BGBIO,39139090 +What is the hs code for LIQUORICE ORGANIC OILY EXTRACT (BHN BAKU KOSMETIK) COA GLGT171001-HBIO,39139090 +What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA VIV171001-BGBIO,39139090 +What is the hs code for DICLOFENAC SODIUM (BHN BAKU OBAT) COA 170244,29224900 +What is the hs code for MAPROTILINE HCL (BHN BAKU OBAT) COA 1750000147,29214900 +What is the hs code for ERYTHROMYCIN ETHYL SUCCINATE BP (BHN BAKU OBAT) COA EES 061 117,29415000 +What is the hs code for PEG 400 (BAHAN BAKU KOSMETIK) COA.AKW0004548,39139090 +What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 17090806,38029090 +"What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 71003, 71004",39139090 +"What is the hs code for PIRACETAM INJECTABLE GRADE, BHN BAKU OBAT COA. PIR03317",29337900 +"What is the hs code for CAFFEIN (BHN BAKU OBAT) COA 17091487,492, 493,495,500,501",29393000 +"What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334489,93,97",29419000 +"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1752045, 1752065, 1752079",29242930 +What is the hs code for DESOXIMETASONE MICRONISED USP (BHN BAKU OBAT) COA 1601665549,29372200 +What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA. 17E2501,28399000 +What is the hs code for DAMIANA EXTRACT (BHN BAKU OBAT) COA BNPD170903,39139090 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP27917,28363000 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP27917,28363000 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP27917,28363000 +What is the hs code for ALLOPURINOL BP (BHN BAKU OBAT) COA ALP0060817,29335990 +"What is the hs code for OXYTETRACYCLINE DIHYDRATE (BHN BAKU OBATUTK PAKAN TERNAK) COA ZT170903, ZT170927",29413000 +What is the hs code for OXYTETRACYCLINE HYDROCHLORIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 17101109 S/D 111,29413000 +What is the hs code for COLLISTIN SULFATE (BHN BAKU OBAT UTK PAKAN TERNAK) COA KB-CS-1707011,29419000 +What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20171011,29309090 +What is the hs code for LOSARTAN POTASSIUM (BHN BAKU OBAT) COA C5455-17-096,29332900 +What is the hs code for CAPTOPRIL (BHN BAKU OBAT) COA 5103-16-361,29339990 +What is the hs code for GLUCOSAMINE HCL (BHN BAKU OBAT) COA XH2017100501,29329990 +What is the hs code for METHOCEL E6 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011H2LL02,39123900 +What is the hs code for METHOCEL E6 PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011H21L02,39123900 +What is the hs code for METHOCEL K100M PREMIUM (BHN BAKU OBAT UTK PEWARNA TABLET)COA D180H6G001,39123900 +What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180H6C003,39123900 +What is the hs code for METHOCEL E5 PREMIUM LV (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011G9NL02,39123900 +What is the hs code for METHOCEL K4M PREMIUM CR (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180G33001,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180G81031,39123900 +What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG170616,29362700 +"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0217060072",29189900 +"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0217060064",29189900 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517090185,186",29189900 +"What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P7024UA000, P7S22UA000",29189900 +What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01706014,29362700 +"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00496046,47",29189900 +"What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA MCS1605151",29189900 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708160130,131",29189900 +"What is the hs code for PARSOL MCX , 25KG PC (BHN BAKU KOSMETIK) COA MCS1605151",29189900 +"What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01706014,15",29362700 +"What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11706016, 7005",29362900 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT17070162,29362100 +"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01703807,810",29362400 +"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1752065, 1752079, 1711302",29242930 +What is the hs code for MEFENAMIC ACID COMPACTED (BHN BAKU OBAT) COA MFAC-1707393-A,29224900 +What is the hs code for SIMVASTATIN (BHN BAKU OBAT) COA DK40-1710012,29322090 +What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702564864,29372900 +What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 57422P,39139090 +What is the hs code for MEROPENEM TRIHYDRATE WITH SODIUM CARBONATE STERILE (B. BAKU OBAT) COA S0820170806,30032000 +What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598035,38249999 +What is the hs code for OPADRY AMB PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599255,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599254,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599278,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599244,38249999 +What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599248,39061090 +What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599261,39061090 +What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599253,38249999 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599276,39061090 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599257,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599256,38249999 +What is the hs code for OPADRY 200 BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599246,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597939,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599277,38249999 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599260,38249999 +What is the hs code for ACRYL EZE PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599245,39061090 +What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599265,38249999 +What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599335,39061090 +What is the hs code for THE MATCHA 1 P001062 (BHN BAKU KOSMETIK) COA 0000006989,33029000 +"What is the hs code for PARSOL HMS, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA MCS1604115",29189900 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20171013,17029019 +What is the hs code for SK BIOLAND BIO SODIUM HYALURONATE POWDER (MMW) (B. BAKU KOSMETIK)COA CHP1170926,39139090 +What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-022307,39139090 +What is the hs code for SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-181207,39139090 +What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK)COA NMP-L-333057,39139090 +What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-062297,39139090 +What is the hs code for SK BIOLAND ALWHITE 7 (BHN BAKU KOSMETIK) COA CLHW-011177,39139090 +What is the hs code for SK BIOLAND APRICOT EXTRACT (BHN BAKU KOSMETIK) COA PAS-013007,39139090 +What is the hs code for SK BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK)COA PSFAC-010347,39139090 +"What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-020497,033107",39139090 +What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-052297,39139090 +What is the hs code for SK BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-062587,39139090 +What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599820,38249999 +What is the hs code for OPADRY AMB RED(BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599820,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599822,38249999 +What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599823,39061090 +What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00617194,29362100 +"What is the hs code for ASCORBIC ACID ULTRA F.POWDER, 20KG BOX (BHN BAKU SUPLEMEN) COA TL01710783",29362700 +What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA. 8MT170656,30032000 +"What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0019501,SAMPLE NO COMM VALUE",29337900 +"What is the hs code for CUIRIDONE 5KG (BHN BAKU KOSMETIK) COA 001924,SAMPLE NO COMM VALUE",39139090 +"What is the hs code for MICROCELAC 100 (BHN BAKU OBAT) COA L103151617A535, SAMPLE NO COMM VALUE",17021100 +What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP779713,32151900 +What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP781192X6248,32151900 +What is the hs code for FD AND C RED #40/ALLURA RED AC AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP784989,32151900 +What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP779713,32151900 +What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP787026,32151900 +What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP779311,32151900 +What is the hs code for AMLODIPINE BESILATE BP (BHN BAKU OBAT) COA AB H 1710004,29339990 +What is the hs code for METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/17100536,29332900 +"What is the hs code for CATECHINS (TEA EXTRACT) TEAVIGO (1KG), BHN BAKU MAKANAN, COA 709152",21012020 +"What is the hs code for NEEM LEAF LIQUID B (BHN BAKU KOSMETIK), COA.170630",13021990 +What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 171058,13021990 +What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 171728,38249999 +What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 171383,13021990 +"What is the hs code for SWERTIANIN P (BHN BAKU KOSMETIK) COA 170729, 171891",13021990 +What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 170864,13021990 +What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 170569,29329990 +What is the hs code for CLAIRJU (BHN BAKU KOSMETI) COA 171204,13021990 +What is the hs code for KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0130417,29339990 +"What is the hs code for KF-96A-6CS (16KG) BHN BAKU KOSMETIK, COA 710929, 711930",39139090 +"What is the hs code for KF-6038 (16KG) BHN BAKU KOSMETIK, COA 710185",39139090 +What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK COA B261017,39123900 +"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB231017",39123900 +"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG301017",39123900 +What is the hs code for DL A TOCOPHEROL (BHN BAKU KOSMETIK) COA UT17020023,29362800 +What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11707005,29362900 +What is the hs code for BEAUPLEX VH (BHN BAKU KOSMETIK) COA UF17082001,29189900 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708160131,70045, 70046",29189900 +"What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA MCS1605151",29189900 +What is the hs code for PARSOL HS (BHN BAKU KOSMETIK) COA 0709160001,29189900 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01704011,29362900 +What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01706015,29362700 +What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT667466,32151900 +What is the hs code for OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT667467,32151900 +What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT665884,32151900 +What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND170706,29372200 +What is the hs code for AC019KC PHYTOVITYL C 5KG BHN BAKU KOSMETIK COA 0018132,39139090 +What is the hs code for CLOZAPINE (BHN BAKU OBAT) COA 720106,29335990 +What is the hs code for CLOZAPINE (BHN BAKU OBAT) COA 720106,29335990 +What is the hs code for EMPILAN CIS (BAHAN BAKU KOSMETIK) COA.BLW0012900,34021390 +"What is the hs code for DRY VITAMIN E 50PCT SD, 15KGBOXALU (BHN BAKU SUPLEMEN) COA WB02170048, 0237",29362800 +"What is the hs code for VISTANOL GDHR (BHN BAKU KOSMETIK) COA DIG, DJH, DKI",39139090 +What is the hs code for VISTANOL NPGC (BHN BAKU KOSMETIK) COA DJI,39139090 +"What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA DHC, DKD",39139090 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA DKD,39139090 +What is the hs code for PROMOIS W-32U (BHN BAKU KOSMETIK) COA DGC,39139090 +What is the hs code for CILOSTAZOL USP (BHN BAKU OBAT) COA 6004CB2ARI,29337900 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01704311,4344,9537",29362700 +What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20170701,29362800 +What is the hs code for CARICILINE SB (BHN BAKU KOSMETIK)COA CAR170301-SB,39139090 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS170802,39139090 +What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH17902-ENBIO-RQ,39139090 +What is the hs code for ROMAN CHAMOMILLE PHYTELENE EG 088 (BHN BAKU KOSMETIK)COA EG088-170101,39139090 +What is the hs code for OLIVE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA OLE161101,39139090 +What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-171002-GS,39139090 +What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-171104-GS,39139090 +What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5497417,39139090 +What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5497417,39139090 +What is the hs code for ALDAVINE 5X (BHN BAKU KOSMETIK) COA 5493617,39139090 +What is the hs code for B WHITE (BHN BAKU KOSMETIK) COA 829015555H,39139090 +What is the hs code for B WHITE (BHN BAKU KOSMETIK) COA 829015555H,39139090 +What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830015655H,39139090 +"What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK), COA 769015525H",39139090 +"What is the hs code for LANABLUE (BHN BAKU KOSMETIK), COA 5497917",39139090 +What is the hs code for LANABLUE (BHN BAKU KOSMETIK) COA 5512317,39139090 +What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5509217,39139090 +What is the hs code for MELANOSTATINE 5 BG (50PPM) (BHN BAKU KOSMETIK) COA 817045132H,39139090 +What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025654H,39139090 +What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025654H,39139090 +What is the hs code for EXO H(BHN BAKU KOSMETIK) COA 715025629H,39139090 +What is the hs code for B WHITE (BHN BAKU KOSMETIK) COA 829015243H,39139090 +What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830015554H,39139090 +What is the hs code for CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785015526H,39139090 +What is the hs code for EMULMETIK TM 100 (BHN BAKU KOSMETIK) COA 1627802,39139090 +What is the hs code for HELIOGEL TM (BHN BAKU KOSMETIK) COA 1719501,39139090 +What is the hs code for MELANOSTATINE 5BG (50PPM) (BHN BAKU KOSMETIK) COA 817044833G,39139090 +What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) COA 1634916,39139090 +What is the hs code for PRO LIPO TM NEO (BHN BAKU KOSMETIK) COA 1726902,39139090 +What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025654H,39139090 +What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015372H,39139090 +"What is the hs code for CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 10005022",90189090 +"What is the hs code for CANNULA 25G PIX'L 0,5 X40 (BHN BAKU OBAT) COA 10005022",90189090 +What is the hs code for RESTYLANE SKINB VITLIDO 1MLD16 (BHN BAKU OBAT) COA 15320-2,90189090 +What is the hs code for REST SKINB VITALLGHLIDO 1MLD16 (BHN BAKU OBAT) COA 15430-2,90189090 +What is the hs code for RESTYLANE LYFT LIDOCAINE 1 ML (BHN BAKU OBAT) COA 15468-1,90189090 +What is the hs code for RESTYLANE REFYNE 1ML (BHN BAKU OBAT) COA 15100-1,90189090 +What is the hs code for RESTYLENE KYSSE 1ML (BHN BAKU OBAT) COA 15268-1,90189090 +"What is the hs code for MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU SUPLEMEN) COA.TS00008992",29362500 +"What is the hs code for MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU MAKANAN) COA TA00008992",29362500 +What is the hs code for METHYLOREDNISOLONE (BHN BAKU OBAT) COA 04.1064-171002,29372900 +What is the hs code for METHYLPREDNISOLONE MICRONIZED (BHN BAKU OBAT) COA F-04 1064-171001,29372900 +What is the hs code for CAPSULAC (R) 60 (BHN BAKU OBAT) COA. L100413917A545,17021100 +What is the hs code for MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103153017A535,17021100 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101853917A533,17021100 +What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BH08407,29349990 +What is the hs code for GABAPENTIN (BHN BAKU OBAT) COA GBW1710282,29224900 +What is the hs code for TRANSCUTOL P (BHN BAKU OBAT) COA.165110,28399000 +What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 01/17GAAK,28399000 +"What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU OBAT) COA 01/17GAAK,SAMPLE NO COMM VALUE",28399000 +What is the hs code for SUPPOCIRE AM PELLETS (BAHAN BAKU OBAT) COA 17E3907,28399000 +"What is the hs code for VISTANOL GDHR (BHN BAKU KOSMETIK) COA DIG, DJH, DKI",39139090 +What is the hs code for VISTANOL NPGC (BHN BAKU KOSMETIK) COA DJI,39139090 +"What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA DHC, DKD",39139090 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA DKD,39139090 +What is the hs code for PROMOIS W-32U (BHN BAKU KOSMETIK) COA DGC,39139090 +"What is the hs code for PANTOPROZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT,COA APSS17004",29333990 +"What is the hs code for CULTURESWAB LIQUID STUART SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 171475299",38210010 +"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7171538",38210010 +What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009699,38210010 +"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7193780,7242803",38210010 +What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6228993,38210010 +What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7255892,38210010 +"What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121602,7171820",38210010 +What is the hs code for BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7143641,38210010 +"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121569,7227521",38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171538,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053919,38210010 +What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7110592,38210010 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7109945,38210010 +"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7018890",38210010 +What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121848,38210010 +"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7103621,3675",38210010 +"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009966,7102560",38210010 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7171993,38210010 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7116560,38210010 +What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7142578,38210010 +"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7177772",38210010 +What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7114681,38210010 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7251531,38210010 +What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7047892,38210010 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7095554,38210010 +What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7116556,38210010 +"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7109972,7193548",38210010 +What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242928,38210010 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171972,38210010 +What is the hs code for BOTTLE SACCHAROSE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7157502,38210010 +"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7114758,7152671",38210010 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121863,38210010 +What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7005857,38210010 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7109946,38210010 +What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060807,38210010 +What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 170707116,38210010 +"What is the hs code for KIT CRYSTAL ENTERIC /NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7213860,...",38210010 +What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7159723,38210010 +What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7185935,38210010 +What is the hs code for SACHET GASPAK EX CAMPY CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7277634,38210010 +What is the hs code for POUCH GASPAK EZ CO2 SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7215899,38210010 +What is the hs code for BOTTLE TRYPTOSE 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 6278558,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171538,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053919,38210010 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7109945,38210010 +What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7103675,38210010 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7095842,38210010 +What is the hs code for BOTTLE D SORBITOL 500G. (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7102560,38210010 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171993,38210010 +What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7208901,38210010 +What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7271779,38210010 +What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7151674,38210010 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7193661,38210010 +What is the hs code for BOTTLE D-MANITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 6201884,38210010 +What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060807,38210010 +What is the hs code for BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7220797,38210010 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7142625,38210010 +What is the hs code for BOTTLE AGAR NOBLE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7256726,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7198993,38210010 +What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121860,38210010 +What is the hs code for BOTTLE CORN MEAL AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121881,38210010 +"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7207682,7684",38210010 +What is the hs code for BOTTLEEE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7143744,38210010 +What is the hs code for GASPAK EZ STANDARD INCUBATIO CONTAINER (M.UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7261716010,38210010 +What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7235830,38210010 +What is the hs code for BOTTLE GN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7235667,38210010 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7198543,38210010 +What is the hs code for PAIL LAURYL TRYPTOSE BROTH 2KG (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7143979,38210010 +What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7135968,38210010 +What is the hs code for BOTTLEMICRO INOCULUM BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6342747,38210010 +What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7009699,38210010 +What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7177823,38210010 +What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7153977,38210010 +What is the hs code for BOTTLE PURPLE BROTH BASE BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7163988,38210010 +What is the hs code for BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 7164997,38210010 +What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7193914,38210010 +What is the hs code for BOTTLE TINSDALE BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6026724,38210010 +What is the hs code for BOTTLE TRYPTONE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7143892,38210010 +What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7109953,38210010 +What is the hs code for BOTTLE WL DIFFERENTIAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7220799,38210010 +What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7206693,38210010 +"What is the hs code for BOTTLE FOLIC ACID ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7277529",38210010 +What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7221976,38210010 +"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7221983,7228753",38210010 +What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060854,38210010 +What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7215691,38210010 +What is the hs code for VIAL TINSDALE ENRICHMENT 6X15ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7110837,38210010 +What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7276698,38210010 +What is the hs code for ANNEXIN V FITC APOP DTEC KIT I 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7303806,38210010 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7152580,38210010 +What is the hs code for CD56 PE NCAM16.2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7235819,38210010 +What is the hs code for FASTIMMUNE TNF-ALP APC 6401.1111 100 TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6357648,38210010 +What is the hs code for ANTI BCL 2 FITC 100 50 TST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7212889,38210010 +"What is the hs code for MS LGG1 ISOTYPE CONTROL APC X40 ASR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7262746",38210010 +What is the hs code for CD23 PE EBVCS 5 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7226533,38210010 +What is the hs code for CD25 PE 2A3 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7293821,38210010 +What is the hs code for HUMAN IL 2 APC 5344.111 100 TESTS(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7144744560,38210010 +What is the hs code for CD4 PERCP CY5.5 SK3 RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7159644,38210010 +What is the hs code for FASTIMMUNE COSTIM CD28/CD49D 0.3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7157921,38210010 +What is the hs code for CD3 FITC SK7 50 TESTS IVD(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7221981,38210010 +"What is the hs code for HU IL4 APC MP4-25D2 100UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7005833",38210010 +What is the hs code for HU IL-10 APC JES3-19F1 100UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7124679,38210010 +What is the hs code for CYTOFIX/CYTOPERM W/GOLG/PLUG KLT 250TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7012738,38210010 +What is the hs code for HU CD19 PE HIB19 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7217557,38210010 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X31MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7152580,38210010 +"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7240715,7271504",38210010 +"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7187918",38210010 +What is the hs code for VIAL ISOVITALEX ENRICHMENT 10ML 5 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7237592,38210010 +What is the hs code for HU HLA-A2 FITC BB7.2 100UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7110642,38210010 +"What is the hs code for CD8 PER-CY5.5 SK1 50 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7226531,7304693",38210010 +What is the hs code for HU CD25 PE M-A251 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7012613,38210010 +What is the hs code for HU CD69 PE FN50 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171993,38210010 +What is the hs code for HU CD8 FITC HIT8A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7032886,38210010 +What is the hs code for HU LGG FITC G18-145 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6263638,38210010 +What is the hs code for HU IL-17A PE N49-653 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7097563,38210010 +What is the hs code for HU CD127 PE-CY7 HIL 7R M21 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7137618,38210010 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7141671,38210010 +"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7240707,715",38210010 +What is the hs code for VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6197586,38210010 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7187918,38210010 +What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7198968,38210010 +What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7102829,38210010 +What is the hs code for CD11C PE CE (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH 7254547,38210010 +What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7186970,38210010 +What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7226996,38210010 +What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7226520,38210010 +What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7305643,38210010 +What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7251512,38210010 +What is the hs code for IFN GAMMA APC RUO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7236968,38210010 +What is the hs code for CD3 PERCP SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7177904,38210010 +What is the hs code for CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7255772,38210010 +What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7174889,38210010 +What is the hs code for HU CD206 FITC 19.2 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7258565,38210010 +What is the hs code for HU CD209 APC DCN46 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 7201902,38210010 +What is the hs code for HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7125585,38210010 +What is the hs code for HU CD64 FITC 10.1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6280735,38210010 +What is the hs code for HU CD40 FITC 5C3 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7132522,38210010 +What is the hs code for HU CD86 FITC 2331 (FUN-1) 100TST (MEDIA PENGEMBANGAN MIKRO ORGANISME) BATCH 7132528,38210010 +What is the hs code for MS LGG1KPA LTCL FITC MOPC-21 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6301865,38210010 +What is the hs code for HU HLA-DR FITC L243 (G46-6) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6263631,38210010 +What is the hs code for LYSING BUFFER 10X CONCENTRATE 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7220684,38210010 +What is the hs code for HU CD163 PE GHI/61 100TST (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7160585,38210010 +What is the hs code for HU CD274 PE MIH1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7096869,38210010 +What is the hs code for HU CD11C APC B-LY6 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7124669,38210010 +What is the hs code for HU REGULATORY TCELL CKTL 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7234824,38210010 +What is the hs code for ANTI LAMBDA FITC 1-155-2 50TST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7236555,38210010 +What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7200567,38210010 +What is the hs code for ANTI HLA DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7159533,38210010 +What is the hs code for CYTOFIX FIXATION BUFFER 100ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7031802,38210010 +What is the hs code for STAIN BUFFER FBS 500ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7180893,38210010 +What is the hs code for HU CD4 FITC RPA-T4 100TST(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6340599,38210010 +What is the hs code for HU IL-10 PE JES3-19F1 100TST (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6238570,38210010 +What is the hs code for CYANOCOBALAMINE VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1705232691,29362600 +What is the hs code for NYMPHELINE PROV 5KG (BHN BAKU KOSMETIK) COA 0020265,39139090 +"What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1710062,63,78,79,11004 S/D 19",29224900 +What is the hs code for B.I.O KEY SELENIUM VM (BHN BAKU OBAT UTK PAKAN TERNAK) COA 150917-755,23099090 +What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7186680,38210010 +What is the hs code for DROPPER DMACA INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7143639,38210010 +What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7235677,38210010 +"What is the hs code for EUXYL PE 9010 (SAMPLES) 100 ML FL (BHN BAKU KOSMETIK) COA 1332918 ,SAMPLE NO COMMERCIAL VALUE",38249999 +"What is the hs code for EUXYL K 712 100ML FL (BHN BAKU KOSMETIK) COA 1335589, SAMPLE NO COMM VALUE",38249999 +What is the hs code for S AND M PHENOXYETHANOL RCH 100 ML FL (BHN BAKU KOSMETIK) COA 1333316,38249999 +"What is the hs code for EUXYL PE 9010 CN 10KG KA (BHN BAKU KOSMETIK) COA 1331782,1334383,1335942",38249999 +What is the hs code for EUXYL K 100 CN 10KG KA (BHN BAKU KOSMETIK) COA 1335179,38249999 +"What is the hs code for SENSIVA SC 50 CN 10KG KA (BHN BAKU KOSMETIK) COA 1331636,1333518, 1335594",38249999 +"What is the hs code for SENSIDIN DO CN 10KG CA (BHN BAKU KOSMETIK) COA 1336925, 1338671",38249999 +What is the hs code for GROTANOL 3025 CN 10 KG KA (BHN BAKU KOSMETIK) COA 1333897,38249999 +What is the hs code for EUXYL K 900 CN 10 KG KA (BHN BAKU KOSMETIK) COA 1336571,38249999 +What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA 20171024,17023010 +What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA 20171019,11081200 +What is the hs code for TECA 80160W (BHN BAKU KOSMETIK)COA 170929040256,39139090 +What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 185622,29332900 +"What is the hs code for DOPAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA.17100531,532",29222900 +What is the hs code for METHOCEL K4M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180GCR001,39123900 +What is the hs code for METHOCEL K4M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180H4I001,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180G6P003,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180G1B001,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180FCT001,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D0180G7Q031,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180FCL002,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180G7V031,39123900 +What is the hs code for GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUMPLEMEN) COA 17277,39139090 +What is the hs code for LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 16490,38249999 +"What is the hs code for AMOXICILLIN TRIHYDRATE PURIMOX COMPACTED (BHN BAKU OBAT) COA M529461, 465",29411019 +What is the hs code for AMOXICILLIN TRIHYDRATE PURIMOX POWDER (BHN BAKU OBAT) COA M483534,29411019 +"What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334492,94,95",29419000 +What is the hs code for LIVER DESSICATED POWDER (BHN BAKU OBAT) COA 5815 1123,39139090 +What is the hs code for PUROLAN PD-LO (BHN BAKU KOSMETIK) COA 01140917,39139090 +What is the hs code for FLUOROMETHOLONE MICRONISED USP BP JP (BHN BAKU OBAT) COA 1701261241,29372200 +What is the hs code for VASELINE BLANCHE CODEX 236 FUT 175KG (BHN BAKU KOSMETIK) COA 17J26V02,39139090 +"What is the hs code for INSTANT TEA POWDER (TEA EXTRACT) BHN BAKU MAKANAN, COA 711191, 92",39139090 +What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA.LC 037-7-201,17021100 +"What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA.LC 038-7-801, LC 040-7-801",17021100 +What is the hs code for CYPROTERONE ACETATE MICRONIZED (BHN BAKU OBAT) COA NX2124M,29372900 +What is the hs code for TRIAMCINOLONE ACETONIDE MICRONIZED (BHN BAKU OBAT) COA NX2347M,29372200 +What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NW2230M,29372200 +What is the hs code for METHISOPRINOL (BHN BAKU OBAT) COA.MTP7100404,29349990 +What is the hs code for OPADRY II GRAY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600189,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600190,38249999 +"What is the hs code for PARSOL 1789, 25KG BOX (BHN BAKU KOSMETIK) COA 031705098,99",29189900 +"What is the hs code for NIACINAMIDE PC,20KG BAL (BHN BAKU KOSMETIK) COA OP81706022,7014",29362900 +"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01707068,61",29362400 +"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91711063,64",29189900 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517090186,200",29189900 +"What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01706010,15",29362700 +What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01706015,29362700 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70313065,29362500 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A(BHN BAKU SUPLEMEN) COA UT17020017,29362100 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70702397,29362200 +What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91710093,21069059 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17050746,47",29362100 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT17050015,29362900 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17020017,29362100 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17050745,29362100 +"What is the hs code for VITAMIN PREMIX,TYPE MM81 (105PCT) (BHN BAKU MAKANAN) COA UT17050745",21069059 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70702397,29362200 +"What is the hs code for CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB00517033,35",29362700 +What is the hs code for FERROUS FUMARATE USP/EP (BHN BAKU OBAT) COA.2017/279,29171900 +What is the hs code for SILYBIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10495/M1,38249999 +What is the hs code for SILYMARIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10447/M1,38249999 +What is the hs code for IVY DRY HYDR EXTR 10PCT HPLC (BAHAN BAKU SUPLEMEN) COA 09745/M1,13021990 +What is the hs code for BUTCHERBROOM DRY HYDR EX 9-11PCT (BAHAN BAKU SUPLEMEN) COA 10438/M1,13021990 +What is the hs code for CENTELLA ASIATICA TRITERP (BHN BAKU SUPLEMEN) COA 32465/M1,38249999 +What is the hs code for CENTELLA ASIATICA/PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 31730/H1,38249999 +What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 32465/M1,38249999 +What is the hs code for ECHINACEA ANG DRY PURIF EX (BHN BAKU SUPLEMEN) COA 32226/M1,13021990 +What is the hs code for P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 32190/M1,13021990 +What is the hs code for VACCINIUM MYRTILLUS DRY EX (BHN BAKU SUPLEMEN) COA 32501/M1,13021990 +What is the hs code for CEFEPIME FOR INJECTION (BHN BAKU OBAT) COA SI/CFP/00601117,30032000 +"What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334502,503,505",29419000 +What is the hs code for BIOTOX (R) (BHN BAKU OBAT UTK PAKAN TERNAK) COA 131017-830,23099090 +What is the hs code for E.C.O TRACE(R) ZN 25PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC11021702,29224900 +What is the hs code for E.C.O TRACE(R) MN 20PCT (BHN BAKU UTK PAKAN TERNAK) COA BC22011702,29224900 +What is the hs code for E.C.O.TRACE(R) FE 20PCT(BHN BAKU OBAT UTK PAKAN TERNAK) COA BC17051602,29224900 +What is the hs code for B.I.O.KEY SELENIUM VM (BHN BAKU OBAT UTK PAKAN TERNAK) COA 241017-875,23099090 +What is the hs code for LIQUIPHOS (R) STRONG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 270917-782,23099090 +"What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK), COA.172031",29329990 +What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 171728,38249999 +What is the hs code for CLAIRJU (BHN BAKU KOSMETIK) COA 171895,13021990 +What is the hs code for MANDARIN CLEAR (BHN BAKU KOSMETIK) COA 172038,13021990 +What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 171548,13021990 +What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20170301,29362800 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT17020023,29362800 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT17020023,29362800 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT17020014,29362800 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT17050027,29362600 +"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01701017, UE01611108",32041900 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT17050027,29362600 +What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20170301,29362800 +What is the hs code for VITAMIN B12 0.1PCT WS(BHN BAKU SUPLEMEN) COA UT17050027,29362600 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT17050015,29362900 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17050027,29362600 +What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE1704011,29362900 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT17050015,29362900 +What is the hs code for ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01705495,29362700 +What is the hs code for RIBOFLAVIN 5 PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1704054,29362300 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17060064,29362900 +What is the hs code for CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB00517035,29362700 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11707006,29362900 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT17050063,29362900 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17030089,29362800 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17070024,29362900 +What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01707066,29362400 +"What is the hs code for RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1704053,54",29362300 +What is the hs code for CALCIUM D-PANTOTHNATE (BHN BAKU SUPLEMEN) COA TL01706703,29362400 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70803256,29362200 +"What is the hs code for B-CAROTENE 10PCT CWS ( BHN BAKU SUPLEMEN), COA UT17050030",32041900 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17030089,29362800 +What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ70309009,29362300 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT17070162,29362100 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT17050063,29362900 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01612020,29362900 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01611108,32041900 +What is the hs code for CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB00517035,29362700 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01704011,29362900 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT16120008,29362900 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11707006,29362900 +"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN), COA UQ70310071",29362300 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ70310071,29362300 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17060064,29362900 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT17060064,29362900 +"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17050063,64",29362900 +"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT17030020,21",29362800 +"What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT17090049,50",29362500 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599902,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599885,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599901,38249999 +What is the hs code for OPADRY AMB PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599884,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599900,38249999 +What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599913,38249999 +What is the hs code for OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599880,38249999 +What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599820,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599881,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599893,38249999 +What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599883,39061090 +What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599892,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599907,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599879,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599882,38249999 +What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599908,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599914,38249999 +What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB00617195,29362100 +"What is the hs code for DRY VITAMIN E 50PCT SD,15KGBOXALU (BHN BAKU SUPLEMEN) COA WB08170237",29362800 +"What is the hs code for FLORAGLO LUTEIN 5PCT,CWS/S TG (BHN BAKU SUPLEMEN) COA UT17090018",32030010 +What is the hs code for GENIVIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010017,29329990 +What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17070052,29362100 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT17060025,32041900 +What is the hs code for COATED ASCORBIC ACID TYPE EC (BHN BAKU SUPLEMEN) COA TL01707080,29362700 +What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00517653,29362800 +What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00617195,29362100 +"What is the hs code for DRY VITAMIN E 50PCT SD, 15KGBOXALU (BHN BAKU SUPLEMEN) COA WB08170237",29362800 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17090018,32030010 +What is the hs code for VITAMIN A AND D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT17080035,29362100 +What is the hs code for CYANOCOBALAMINE VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1705061866,29362600 +What is the hs code for LIDOCAINE HCL (BHN BAKU OBAT) COA 186065,29242990 +What is the hs code for OPADRY ORANGE (BAHAN BAKU UNTUK PEWARNA TABLET) COA. GA631023,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA631024,38249999 +"What is the hs code for MATCHA GREEN TEA EXTRACT ( BHN BAKU KOSMETIK), COA CSP 17013 EOU",39139090 +What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599806,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600477,38249999 +"What is the hs code for PREDNISONE (BHN BAKU OBAT) COA.K03B20171101, 102,103",29372100 +What is the hs code for BETAMETHASONE VALERATE USP (BHN BAKU OBAT) COA.S-X21-170901,29372200 +What is the hs code for LIPOID S 20 (BHN BAKU OBAT) COA.572000-2170118/001-028 (28),29232010 +What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20171108,29309090 +"What is the hs code for LEVOFLOXACIN HEMIHYDRATE (FREE ALKALINE) B. BAKU OBAT, COA C008-1705602",29349990 +What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA 20171024,17023010 +What is the hs code for LIPOID S 67 F (BHN BAKU OBAT) COA.576200-2160029/020-024 (5),29232010 +What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA171002,39139090 +What is the hs code for MAGOUSTAN HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA GAM171101-B,39139090 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO170601,39139090 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170904,39139090 +What is the hs code for LOTUS OILY EXTRACT (BHN BAKU KOSMETIK)COA NEN171107-H,39139090 +What is the hs code for ROSE OILY EXTRACT (BHN BAKU KOSMETIK) COA ROS171006-H,39139090 +What is the hs code for LINEN OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA LIU170905-H,39139090 +What is the hs code for HORSECHESTNUT PHYTELENE EG042 (BHN BAKU KOSMETIK) COA EG042-151103,39139090 +What is the hs code for PREMIX VITAMIN OIL TYPE GBP (BHN BAKU MAKANAN) COA XW91711334,21069059 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN535963,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN535962,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN535970,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN535966,35051010 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01611108,32041900 +What is the hs code for GARCINIA CAMBOGIA 60PCT(B. BAKU OBAT) COA FGC1711008 SAMPLE NO COMM VALUE,39139090 +What is the hs code for SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK)COA U171201,39139090 +What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-033107,39139090 +What is the hs code for SK BIOLAND LICORICE EXTRACT (BHN BAKU KOSMETIK) COA GGB-022887,39139090 +What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK)COA OHA-132607,39139090 +What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-052297,39139090 +What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 2017G1492,39139090 +What is the hs code for SK BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSFAC-010347,39139090 +What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE 1PCT SOLUTION (BHN BAKU KOSMETIK)COA HASC-391517,39139090 +What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP2170926,39139090 +What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011017,39139090 +"What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-051277, SFP-N-071007",39139090 +What is the hs code for SK BIOLAND GREEN TEA SEED OIL (BHN BAKU KOSMETIK) COA CSSO-042817,39139090 +What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-022017,39139090 +What is the hs code for SK BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-032007,39139090 +What is the hs code for SK BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-062587,39139090 +What is the hs code for SK BIOLAND ROYAL JELLY EXTRACT (BHN BAKU KOSMETIK) COA RJE-010867,39139090 +What is the hs code for SK BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK) COA CPG-642867,39139090 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO170601,39139090 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO171102,39139090 +What is the hs code for CHAMOMILLA COESMELENE (BHN BAKU KOSMETIK)COA MAC-CO171102,39139090 +What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-170905,39139090 +What is the hs code for ALOE PHYTELENE COLORLESS EG 543(BHN BAKU KOSMETIK) COA EG543-171106,39139090 +What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-171105-GS,39139090 +What is the hs code for WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK) COA EG138-160301,39139090 +What is the hs code for LOTUS OILY EXTRACT (BHN BAKU KOSMETIK) COANEN171107-H,39139090 +What is the hs code for ROSE OILY EXTRACT (BHN BAKU KOSMETIK) COA ROS171006-H,39139090 +What is the hs code for CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA.1GC01CLB ZP48D 25MT,39139090 +What is the hs code for PLAISANCE P116808 (BHN BAKU KOSMETIK) COA 0000008112,33029000 +What is the hs code for THE MATCHA 1 P001062 (BHN BAKU KOSMETIK) COA.0000010552,33029000 +What is the hs code for SODIUM VALPROATE (BAHAN BAKU OBAT) COA.450871 (550),29159090 +"What is the hs code for AMOXICILLIN TRIHYDRATE PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M595575,84",29411019 +What is the hs code for PROMOIS W-32 (BHN BAKU KOSMETIK) COA DFC,39139090 +What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA DKD,39139090 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA DLE,39139090 +What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK) COA.LDC 239 17,39139090 +What is the hs code for SPI PX 507 (BHN BAKU MAKANAN) COA XW91711020,21069059 +What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91711043,21069059 +What is the hs code for PX 103070-C3 (BHN BAKU MAKANAN) COA XW91711127,21069059 +"What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91711043, 42, 44",21069059 +"What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 25KG BAL (BHN BAKU MAKANAN) COA WB00817997",29362700 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN) COA UT17070757,758,761",29362100 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT17030089,29362800 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17050016,29362600 +"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT17050012,16",29362600 +"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT17050029,12",29362600 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT17060036,29362800 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT17060036,29362800 +"What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 25KG BAL(BHN BAKU SUPLEMEN) COA WB00817997",29362700 +"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70702404,10",29362200 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70803257,29362200 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70702404,29362200 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT17060036,29362800 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT17060036,29362800 +"What is the hs code for THIAMINE MONONITRATE ( BHN BAKU MAKANAN) COA UQ70803257,61",29362200 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ70610106,29362300 +What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91711253,21069059 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT17060036,29362800 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU MAKANAN) COA UT16120008,29362900 +What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1704054,29362300 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17030089,29362800 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70702410,29362200 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01704011,29362900 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11707006,29362900 +What is the hs code for EPERISONE HYDROCHLORIDE SYN-TECH (BAHAN BAKU OBAT) COA.E10-17036,29333990 +"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK,COA 01/17GL4",28399000 +"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK,COA 01/17-GL4 ,SAMPLE NO COMMERCIAL VALUE",28399000 +What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 17EO606,28399000 +What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 17E2501,28399000 +What is the hs code for CORTISONE ACETATE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1700931387,29372900 +What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN0160117,29221990 +What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN1400917,29221990 +What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01709537,29362700 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01710871,884",29362700 +"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7254257",38210010 +What is the hs code for PLATE TSA IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7222082,38210010 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7254257,38210010 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7254255,38210010 +"What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6320612,7121",38210010 +What is the hs code for BOTTLE DERMATOPHYTE TEST MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7284789,38210010 +What is the hs code for BOTTLE UNIVERSAL PREENRICHMENT BROTH...(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7102708,38210010 +What is the hs code for BOTTLE MYCOPLASMA BROTH BASE FREY 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7153943,38210010 +What is the hs code for BOTTLE COLUMBIA CNA AGAR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7157948,38210010 +What is the hs code for BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7234535,38210010 +What is the hs code for PERMEABILIZING SOLUTION 2 10X 500 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6357992,38210010 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242704,38210010 +"What is the hs code for TUBE CRYSTAL E ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7257856",38210010 +What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7191543,38210010 +What is the hs code for BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7234535,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171538,38210010 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7250997,38210010 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7250997,38210010 +What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7103675,38210010 +"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7095842",38210010 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7171993,38210010 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7142625,38210010 +What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7205816,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7198993,38210010 +What is the hs code for PAIL BACTO AGAR 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7277945,38210010 +"What is the hs code for BOTTLE BORDET GENGOU AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7114770",38210010 +What is the hs code for BOTTLE CELLOBIOSE 25G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7156992,38210010 +What is the hs code for BOTTLE CHROMAGAR ORIENTATION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242742,38210010 +What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7143744,38210010 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7198543,38210010 +What is the hs code for BOTTLE MALT EXTRACT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7094426,38210010 +What is the hs code for BOTTLE MARINE BROTH 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7156792,38210010 +What is the hs code for BOTTLE MOTILITY TEST MEDIUM BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7271845,38210010 +What is the hs code for BOTTLE MR-VP BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7235673,38210010 +What is the hs code for BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7153524,38210010 +What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7102574,38210010 +What is the hs code for BOTTLE PHOSPHATE BUFFER PH 7.2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121877,38210010 +What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7153977,38210010 +What is the hs code for BOTTLE RAPPAPORT VASSILIADIS MSRV 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7306707,38210010 +"What is the hs code for BOTTLE SABOURAUD AGAR MODIFIED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7214816,727177",38210010 +What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7206693,38210010 +What is the hs code for KIT CRYSTAL ENTERIC/ NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7289696,38210010 +What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 170707116,38210010 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7254257,38210010 +What is the hs code for BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7156929,38210010 +What is the hs code for BOTTLE L-ARABINOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121810,38210010 +What is the hs code for LANSOPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA LP0217C028,29333990 +What is the hs code for RAMIPRIL USP (BHN BAKU OBAT) COA RL/17008,29339990 +What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE USP (BHN BAKU OBAT) COA M110395,29339990 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01707059,32041900 +What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT17080082,29362100 +What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01710962,29362700 +What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 1717614,39139090 +What is the hs code for B WHITE (BHN BAKU KOSMETIK) COA 829015350H,39139090 +What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830015574H,39139090 +"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK), COA 1727604",39139090 +"What is the hs code for MELANOSTATINE 5 BG (50PPM) (BHN BAKU KOSMETIK), COA 817045132H",39139090 +What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025654H,39139090 +What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5471517,39139090 +What is the hs code for B WHITE (BHN BAKU KOSMETIK) COA 829015350H,39139090 +What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769015443H,39139090 +What is the hs code for CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785015713H,39139090 +What is the hs code for ECOGEL TM (BHN BAKU KOSMETIK) COA 1727302,39139090 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1727604,39139090 +What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5515717,39139090 +What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015528H,39139090 +What is the hs code for EXO H (BHN BAKU KOSMETIK) COA 715025820H,39139090 +What is the hs code for HUMAN FOXP3 STAINING KIT PE 100 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),38210010 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7152580,38210010 +What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7235889,38210010 +What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7226996,38210010 +What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7251512,38210010 +What is the hs code for CD3 PERCP SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7299641,38210010 +What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7242832,38210010 +What is the hs code for STAIN BUFFER FBS 500ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7180893,38210010 +What is the hs code for HU CD4 FITC RPA-T4 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6340599,38210010 +What is the hs code for HU CD25 PE M-A251 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7012613,38210010 +What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7219674,38210010 +What is the hs code for CD4 APC SK3 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7030773,38210010 +"What is the hs code for MS LG KPA COMP BEAD SET 6ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7109904",38210010 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7152580,38210010 +"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7271522,7289680",38210010 +"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7263772,...",38210010 +What is the hs code for VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6197586,38210010 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I AND VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7187918,38210010 +What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7102829,38210010 +"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6307974",38210010 +What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7271856,38210010 +"What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7214775,7256541",38210010 +What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7102829,38210010 +What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7263732,38210010 +What is the hs code for TUBE PENASE CONCENTRATE 10X20MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7284808,38210010 +"What is the hs code for CD22 FITC S-HCL-1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7243688",38210010 +What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7276698,38210010 +What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7251512,38210010 +What is the hs code for CD3 PERCP SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7299641,38210010 +What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7200567,38210010 +What is the hs code for LYSING BUFFER 10X CONCENTRATE 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7297866,38210010 +What is the hs code for FASTIMMUNE CD69/CD3 PERCP/PE 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7023965,38210010 +What is the hs code for FASTIMMUNE IFN GAMMA/IL 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7278807,38210010 +What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7220771,38210010 +What is the hs code for VIAL NOVOBIOCIN SUPPLEMENT 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7201793,38210010 +What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7263786,38210010 +What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7263786,38210010 +What is the hs code for D-XYLOSE CRYSTALLINE (B. BAKU KOSMETIK) COA B161024130 SAMPLE NO COMM VALUE,39139090 +What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600166,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600172,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599332,38249999 +What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600168,38249999 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600176,39061090 +What is the hs code for OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600164,38249999 +What is the hs code for OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600163,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600170,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600167,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600160,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599047,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600175,38249999 +What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599806,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600177,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600169,38249999 +What is the hs code for OPADRY 200 PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600162,38249999 +"What is the hs code for KF-96A-6CS (BHN BAKU KOSMETIK) , COA 711933",39139090 +What is the hs code for KF-6017 (BHN BAKU KOSMETIK) COA 711041,39139090 +What is the hs code for KSG-710 (BHN BAKU KOSMETIK) COA 710058,39139090 +What is the hs code for KSG-210 (BHN BAKU KOSMETIK) COA 710058,39139090 +What is the hs code for GARLIC EXTRACT 1PCT ALLICIN (BHN BAKU OBAT) COA BNPGE170910,39139090 +What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA 20171127,17023010 +What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA 20171205,11081200 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20171203,17029019 +"What is the hs code for ZINC PICOLINATE BAHAN BAKU OBAT, COA 17055",29333910 +"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0217060072",29189900 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0317050799,800,801",29189900 +"What is the hs code for ARGAN OIL,10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0015511",29362500 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ70413105,29362500 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01708070,29362400 +"What is the hs code for NIACINAMIDE PC,25KG BOX (BHN BAKU KOSMETIK) COA 0000169583 ,584,993,994",29362900 +"What is the hs code for PARSOL MCX, 2OOKG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517100200,228",29189900 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01708070,29362400 +What is the hs code for TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA.71112,39139090 +What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA.70708,39139090 +What is the hs code for SUPEROX C TM AF (BHN BAKU KOSMETIK) COA 71025,39139090 +What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 70708,39139090 +What is the hs code for SUPEROX C TM AF (BHN BAKU KOSMETIK) COA 71025,39139090 +What is the hs code for TAZMAN PEPPER TM AF ( BHN BAKU KOSMETIK) COA 71112,39139090 +What is the hs code for REFINED TRACED SHEA OLEIN BHN BAKU KOSMETIK COA 0000019916,39139090 +What is the hs code for FLOWLAC (R) 90 (BHN BAKU OBAT) COA L1015328,17021100 +What is the hs code for ISOSORBIDE DINITRATE MIXTURE 25PCT (BHN BAKU OBAT) COA 1715496,29329990 +"What is the hs code for PYRAZINAMIDE USP (BHN BAKU OBAT) COA PZ 107 J 17,PZ 108 J 17...",29339990 +What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.17100622,29391900 +"What is the hs code for B2 UNIVERSAL FINE POWDER, 5KG BAG ALU (BHN BAKU MAKANAN) COA UQ61010232",29362300 +What is the hs code for BARCROFT TM 0325 DRIED AL HYD GEL USP(BHN BAKU OBAT) COA.101758003,28183000 +"What is the hs code for CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 10005022",90189090 +"What is the hs code for CANNULA 25G PIX'L 0,5 X40 (BHN BAKU OBAT) COA 10005023",90189090 +What is the hs code for RESTYLANE SKINB VITLIDO 1MLD16 (BHN BAKU OBAT) COA 15320-2,90189090 +"What is the hs code for REST SKINB VITALLGHLIDO 1MLD16 (BHN BAKU OBAT) COA 15526-2, 15615-2",90189090 +What is the hs code for RESTYLANE LYFT LIDOCAINE 1 ML (BHN BAKU OBAT) COA 15618-1,90189090 +What is the hs code for RESTYLANE SUBQ 2ML (BHN BAKU OBAT) COA 10130130/310117,90189090 +What is the hs code for RESTYLANE LIDOCAINE 1ML D16 (BHN BAKU OBAT) COA 15316-2,90189090 +"What is the hs code for RESTYLANE VOLYME 1ML (BHN BAKU OBAT) COA 15202-1, 15370-1",90189090 +What is the hs code for RESTYLANE REFYNE 1ML (BHN BAKU OBAT) COA 15022-1,90189090 +What is the hs code for RESTYLANE DEFYNE 1ML (BHN BAKU OBAT) COA 15022-1,90189090 +What is the hs code for RESTYLANE KYSSE 1ML (BHN BAKU OBAT) COA 15268-1,90189090 +What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA Q700600,29419000 +What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA P-61,29397900 +"What is the hs code for METHOCEL K100 (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180G3O3A,SAMPLE NO COMM VALUE",39123900 +"What is the hs code for PUROLAN PD-LO (BHN BAKU KOSMETIK) COA 01120917, 01130917",39139090 +What is the hs code for DES LORATADINE PH.EUR (BHN BAKU OBAT) COA DLRD/1709003,29333990 +"What is the hs code for WHITE WILLOW BARK 50/20PCT BHN BAKU KOSMETIK, COA 20161014-610",39139090 +What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0019501,29337900 +What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK COA B081117,39123900 +"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB181117",39123900 +What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702605740,29372900 +What is the hs code for NOREPINEPHRINE BITARTRATE (BHN BAKU OBAT) COA 400104,29379010 +What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7292695,38210010 +"What is the hs code for NIACINAMIDE PC,25KG BOX (BHN BAKU KOSMETIK) COA 0000169995,996,997,593,594",29362900 +"What is the hs code for NIACINAMIDE PC,25KG BOX (BHN BAKU KOSMETIK) COA 0000169594,595",29362900 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517110228,229",29189900 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA TP17123099, TP17123100",29211900 +"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-2191217, S-2201217",29334910 +What is the hs code for AMOXICILLIN SODIUM STERILE (BHN BAKU OBAT) COA 25M50200,29411019 +What is the hs code for AMOXICILLIN SODIUM STERILE (BHN BAKU OBAT) COA 25M50200,29411019 +"What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA.LC 038-7-801, LC 040-7-801",17021100 +"What is the hs code for L-GLUTAMIC ACID ( BHN BAKU OBAT), COA 1000035737/170725",29224290 +What is the hs code for HYDROCORTISONE ACETATE EP7/USP38 (BHN BAKU OBAT) COA.NEHAC170716,29372100 +What is the hs code for PREDNISOLONE BP2010/USP38 (BHN BAKU OBAT) COA.NPL171113,29372100 +What is the hs code for CLONIDINE HCL (BHN BAKU OBAT) COA 180839,29332900 +What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA.MLAH076121718,29341000 +What is the hs code for LIDOCAINE BASE (BHN BAKU OBAT) COA 186034,29242990 +What is the hs code for KETOPROFEN SALE DI LISINA (BHN BAKU OBAT) 183578,29183000 +"What is the hs code for DEXAMETHASONE (BHN BAKU OBAT) COA X5-171113, 1114",29372200 +What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0021413,39139090 +What is the hs code for AC091KF FUCOGEL 1.5P 25 KG (BHN BAKU KOSMETIK) COA 0021607,39139090 +What is the hs code for DOXYCYCLINE MONOHYDRATE(BHN BAKU OBAT) COA DX171204001,29413000 +What is the hs code for PERMETHRIN PHARMA GRADE BHN BAKU OBAT COA PE0022-S77,29163990 +What is the hs code for PERMETHRIN PHARMA GRADE BHN BAKU OBAT COA 174046008,29163990 +"What is the hs code for MEG-3 '30' N-3 INF OIL, 4,5KG PJUG (BHN BAKU SUPLEMEN) COA.TS00009237",29362500 +What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT668932,32151900 +What is the hs code for OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT668933,32151900 +What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT667327,32151900 +What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT668893,32151900 +What is the hs code for OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA 667974,32151900 +What is the hs code for PIROXICAM (BHN BAKU OBAT) COA PRX2017009M,29349990 +What is the hs code for L-CARNITINE FUMARATE (BHN BAKU OBAT) COA 10100320171106,29239000 +"What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B339924,26,27,34",29419000 +"What is the hs code for OMEPRAZOLE PELLETS 8,5 PCT (BHN BAKU OBAT) COA OP0217C082",30034100 +What is the hs code for MELOXICAM BP/EP (BHN BAKU OBAT) COA HMXCPL009,29341000 +What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG170908,29362700 +What is the hs code for METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180G7Q031,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180GA8031,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180G81031,39123900 +What is the hs code for METHOCEL E15 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011H3LL01,39123900 +What is the hs code for METHOCEL K15M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180H81003,39123900 +What is the hs code for METHOCEL K15M PREMIUM CR ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D0180GCK001,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180GCL001,39123900 +What is the hs code for METHOCEL E5 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D011H37L01,39123900 +What is the hs code for METHOCEL K4M PREMIUM CR (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180G33001,39123900 +What is the hs code for METHOCEL K4M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180GCR001,39123900 +"What is the hs code for NONIVAMIDE (SYNTHETIC CAPSAICIN)BHN BAKU KOSMETIK, COA.20171016",29242990 +What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01709537,29362700 +What is the hs code for MEG 3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT17090050,29362500 +What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20170701,29362800 +"What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT17080013,14",29362100 +What is the hs code for DL-PANTHENOL 50L (BHN BAKU KOSMETIK) COA TL01709646,29362400 +What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01707812,29362400 +What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110017,29189900 +What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110017,29189900 +What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110017,29189900 +What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110017,29189900 +What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110017,29189900 +What is the hs code for CLOPIDOGREL BISULPHATE USP 39 FORM II (BHN BAKU OBAT) COA CLOPI/17060108,29349990 +"What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453012184",39139090 +What is the hs code for LANSOPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA LP0217C030,29333990 +What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121708247,28363000 +"What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1711020 S/D 31, 89 S/D 94, 97 S/D 99",29224900 +"What is the hs code for SULPHAMETHOXAZOLE BP (BHN BAKU OBAT) COA.32581217,32591217...",29351000 +"What is the hs code for RANITIDINE HCL (BHN BAKU OBAT) COA RH/10 2017 1638, 1639, 1640, 1641",29321900 +What is the hs code for NICLOSAMIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 20171124,29242990 +What is the hs code for NEOMYCIN SULPHATE USP (BHN BAKU OBAT) COA 201711020,29419000 +What is the hs code for METHYL SULFONYL METHANE USP (BHN BAKU OBAT) COA 20171120,29309090 +What is the hs code for LINCOMYCIN HCL EP (BHN BAKU OBAT) COA 1711023,29419000 +What is the hs code for MICONAZOLE NITRATE (BHN BAKU OBAT) COA 20171002,29332900 +What is the hs code for INOSITOL (BHN BAKU OBAT) COA 201710137,29061300 +What is the hs code for IRBESARTAN (BHN BAKU OBAT) COA C5409-17-044,29332900 +What is the hs code for TYLOSIN TARTRATE (BHN BAKU OBAT) COA J201710342,29419000 +"What is the hs code for OXYTETRACYCLINE DIHYDRATE INJECTABLE GRADE BP/EP(B BAKU OBAT UTK PAKAN TERNAK)COA ZT171109,1150",29413000 +"What is the hs code for OXYTETRACYCLINE HYDROCHLORIDE (BHN BAKU OBAT UTK PAKAN TERNAK)COA 17121464, 65, 66",29413000 +What is the hs code for NICLOSAMIDE (BHN BAKU OBAT UTK PAKAN TERNAK COA 29171124,29242990 +"What is the hs code for COLISTIN (BHN BAKU OBAT UTK PAKAN TERNAK) COA KB-CS-1707016,17,18,20",29419000 +What is the hs code for METHYL SULFONYL METHANE USP (BHN BAKU OBAT) COA 20171108,29309090 +What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20171108,29309090 +What is the hs code for FIBRE DRUM (DRUM KOSONG) PRICE AND AMOUNT ARE FOR CUSTOM ONLY,48192000 +"What is the hs code for ADRENALINE TARTRATE EPINEPHRINE BITARTRATE (B.BAKU OBAT) COA 060108 ,SAMPLE NO COMM VALUE",29379020 +What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW91711443,21069059 +What is the hs code for VITAMIN PREMIX 103047-D (BHN BAKU MAKANAN) COA XW91711442,21069059 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT17050034,32041900 +"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT17050039,41,60048",29362800 +What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91711445,21069059 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17080048,29362100 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17080053,29362100 +"What is the hs code for PX TRS2 WITHOUT K1 (BHN BAKU MAKANAN) COA XW91712012,13",21069059 +What is the hs code for DWI BI (BHN BAKU MAKANAN) COA XW91711474,21069059 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17090164,29362100 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17090164,29362100 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17070223,29362400 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17070223,29362400 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI17100009,29362900 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI1700009,29362900 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17050034,32041900 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17050034,32041900 +"What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20170303,305",29362800 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT17070066,29362900 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17070066,29362900 +What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01706015,29362700 +"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00501894,95",29189900 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT17060749",29362100 +What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) P7S22UA000,29189900 +What is the hs code for PARSOL HS (BHN BAKU KOSMETIK) COA 0709160036,29189900 +What is the hs code for BEAUPLEX VH (BHN BAKU KOSMETIK) COA UF17082002,29189900 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) TL01708070,29362400 +What is the hs code for ETHYL PANTHENOL ( BHN BAKU KOSMETIK) COA TL01703810,29362400 +"What is the hs code for PARSOL MCX ,25KG PC (BHN BAKU KOSMETIK) COA MCS16051",29189900 +What is the hs code for PARSOL HS (BHN BAKU KOSMETIK) COA 0709160036,29189900 +What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OPI1708009,29362900 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT17060048,29362800 +What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OPI1708009,29362900 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01708070,29362400 +What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001461085,29189900 +What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01706015,29362700 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01704011,29362900 +"What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0015511",29362500 +"What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA MCS1607004",29189900 +What is the hs code for STAY C 50KG BALUS (BHN BAKU KOSMETIK) COA UT17060074,29362700 +What is the hs code for LANOLINE ANHYDROUS (BHN BAKU KOSMETIK) COA 4504,39139090 +What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600959,38249999 +What is the hs code for OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600985,38249999 +What is the hs code for ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600990,39061090 +What is the hs code for ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595902,39061090 +What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600965,32151900 +What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600965,32151900 +What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600965,32151900 +What is the hs code for OPADRY 200 PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600963,38249999 +What is the hs code for OPADRY QX ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600961,38249999 +What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600988,39061090 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600977,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600511,38249999 +What is the hs code for OPADRY BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600960,38249999 +What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600962,39061090 +What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600982,38249999 +What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600964,38249999 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600979,39061090 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600987,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600973,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600972,38249999 +What is the hs code for OPADRY 200 BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600958,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600983,38249999 +What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600975,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600984,38249999 +What is the hs code for ACRYL EZE PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600989,39061090 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600978,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600971,38249999 +What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600975,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600976,38249999 +What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600970,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600974,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600981,38249999 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT17060048,29362800 +What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11708009,29362900 +What is the hs code for BEAUPLEX VH (BHN BAKU KOSMETIK) COA UF17082002,29189900 +What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001461085,29189900 +"What is the hs code for NIACINAMIDE PC,25KG BOX (BHN BAKU KOSMETIK) COA OP81707025,26",29362900 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT17090164,29362100 +What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01703810,29362400 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0317101367,435,537...",29189900 +"What is the hs code for PARSOL 340 ,25KG PC (BHN BAKU KOSMETIK) COA MCS1602029",29189900 +What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91712053,29189900 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708170046,47,48",29189900 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708170048,49",29189900 +What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01703810,29362400 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT17030080,29362800 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0317101542",29189900 +What is the hs code for REFINED TRACED SHEA OLEIN (BHN BAKU KOSMETIK) COA 0000020039,39139090 +What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5525317,39139090 +What is the hs code for RIBOXYL TM (BHN BAKU KOSMETIK) COA Q0316501,39139090 +What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015528H,39139090 +What is the hs code for ALDAVINE 5X (BHN BAKU KOSMETIK) COA 5504917,39139090 +What is the hs code for HELIOGEL TM (BHN BAKU KOSMETIK) COA 1728401,39139090 +What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5471517,39139090 +"What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK), COA 1717614",39139090 +"What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK), COA 1634914",39139090 +What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830015716H,39139090 +What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830015775H,39139090 +What is the hs code for CS 5C 5PCTCLEAR (BHN BAKU KOSMETIK) COA 785015527H,39139090 +What is the hs code for EXO H (BHN BAKU KOSMETIK) COA 715025820H,39139090 +What is the hs code for HELIOGEL TM (BHN BAKU KOSMETIK) COA 1728401,39139090 +What is the hs code for LANABLUE (BHN BAKU KOSMETIK) COA 5497917,39139090 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1727604,39139090 +What is the hs code for LECIGEL (BHN BAKU KOSMETIK) COA 1727802,39139090 +What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5525317,39139090 +What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015372H,39139090 +What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015909H,39139090 +What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015528H,39139090 +What is the hs code for PROGELINE (BHN BAKU KOSMETIK) COA 820055303H,39139090 +What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025654H,39139090 +What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025824H,39139090 +What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025654H,39139090 +What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830015716H,39139090 +What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769015443H,39139090 +What is the hs code for B.I.O KEY SELENIUM VM (BHN BAKU OBAT UTK PAKAN TERNAK) COA 150917-755,23099090 +What is the hs code for SODIUM ASCORBATE 99PCT TG (BHN BAKU SUPLEMEN) COA WB01117423,29362700 +What is the hs code for SODIUM ASCORBATE 99PCT TG (BHN BAKU SUPLEMEN) COA WB01117424,29362700 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT17060025,32041900 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17100025,32030010 +What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17110017,29189900 +What is the hs code for VITAMIN B12 1PCT SD (BHN BAKU SUPLEMEN) COA UT17090016,29362600 +What is the hs code for SODIUM ASCORBATE 99PCT TG (BHN BAKU SUPLEMEN) COA WB01117424,29362700 +What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA WB01117424,29189900 +What is the hs code for GARCINIA CAMBOGIA 60PCT(B. BAKU OBAT) COA FGC1711008,39139090 +What is the hs code for TRIAMCINOLONE ACETONIDE MICRONIZED (BHN BAKU OBAT) COA NX2475M,29372200 +What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NX2230M,29372200 +What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 172071,13021990 +What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 172434,38249999 +What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 172020,13021990 +What is the hs code for SAKURA EXTRACT (BHN BAKU KOSMETIK) COA 171058,13021990 +What is the hs code for OUBAKU LIQUID B (BHN BAKU KOSMETIK) COA 172296,13021990 +What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETI) COA 171720,38249999 +What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA.17100775,29395900 +What is the hs code for SK BIOLAND PF SC GLUCAN (BHN BAKU KOSMETIK)COA CPG-10-12627,39139090 +What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-011177,39139090 +What is the hs code for SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK) COA U171226,39139090 +What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK)COA MCP-N-042507,39139090 +What is the hs code for SK BIOLAND CUCUMBER EXTRACT (BHN BAKU KOSMETIK) COA CUPD-042517,39139090 +What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-020497,39139090 +"What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (B.BAKU KOSMETIK) COA HMVBD-052297, 062017",39139090 +What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK)COA ARP-1542627,39139090 +What is the hs code for SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-211227,39139090 +What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 071817,39139090 +What is the hs code for 87-28-5 SALICYLIC ACID ETHYLENE GLYCOL ESTER/GLYCOL SALICYLATE (B.BAKU KOSMETIK)COA.DE171213,39139090 +What is the hs code for SEBUSTOP UP 5KG (BHN BAKU KOSMETIK) COA 0022006,39139090 +What is the hs code for NYMPHELINE PROV 5KG (BHN BAKU KOSMETIK) COA 0020265,39139090 +What is the hs code for NYMPHELINE PROV 5KG (BHN BAKU KOSMETIK) COA 0022184,39139090 +What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH171204-ENBIO,39139090 +What is the hs code for LINEN OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA LIU170905-H,39139090 +What is the hs code for CHAMOMILLA COESMELENE (BHN BAKU KOSMETIK)COA MAC-CO171102,39139090 +What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-171105-GS,39139090 +What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-171001,39139090 +What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-171106,39139090 +What is the hs code for PEPERMINT ORGANIC DISTILLATE 1;5 SB (BHN BAKU KOSMETIK) COA MEPD170701-BIO,39139090 +What is the hs code for SUNFLOWER FLOWER BHYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA171002,39139090 +What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT(BHN BAKU KOSMETIK) COA HEA171002,39139090 +What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA171002,39139090 +"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 1712EF4811",29224900 +What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 58686P,39139090 +"What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP779485,AY2516",32151900 +"What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP787026, AY1537",32151900 +"What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP789485,AY2516",32151900 +"What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP787036,AY1870",32151900 +"What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP787036,AY1870",32151900 +"What is the hs code for FD AND C RED #40/ALLURA RED AC AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP785006,AY0482",32151900 +"What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP787026, AY1537",32151900 +"What is the hs code for FD AND C #40/ALLURA RED AC AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP785006,AY0482",32151900 +"What is the hs code for FD AND C BLUE #1/BRILLIANT BLUE...( BHN BAKU OBAT UTK PEWARNA TABLET) COA WP776167,AX5379",32151900 +"What is the hs code for METAMIZOLE SODIUM DAB /EP 7.0 (BHN BAKU OBAT) COA 17111591,592,595, 628",29331100 +"What is the hs code for TRISODIUM CITRATE DIHYDRATE FINE GRANULAR (BHN BAKU MAKANAN), COA UJ746",29181400 +What is the hs code for CHOLINE L-BITARTRATE (BAHAN BAKU MAKANAN) COA.3013648,29231000 +"What is the hs code for ROVIMIX A 1000,20KGBAL (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT17080779,780",29362100 +"What is the hs code for RONOZYME ME(R) HIPHOS GT, 20KG BAGDK (BHN BAKU OBAT UTK PAKAN TERNAK) COA HK921261",29369000 +What is the hs code for ROVIMIX D3-500 (BHN BAKU OBAT UTK PAKAN TERNAK) COA UE01701019,29362900 +What is the hs code for VITASMOOTH (R) 041 ( BHN BAKU OBAT) COA 121708193,28365010 +What is the hs code for RESTYLANE VOLYME 1 ML (BHN BAKU OBAT) COA 15370-1,90189090 +"What is the hs code for RESTYLANE REFYNE 1 ML (BHN BAKU OBAT) COA 15100-1,15521-1",90189090 +"What is the hs code for RESTYLANE DEFYNE 1 ML (BHN BAKU OBAT) COA 15022-1, 15613-1",90189090 +What is the hs code for RESTYLANE KYSSE 1 ML (BHN BAKU OBAT) COA 15268-1,90189090 +"What is the hs code for CANNULA 23G PIXL 0,6X50 (BHN BAKU OBAT) COA 017.588, 017.572",90189090 +"What is the hs code for CANNULA 25G PIXL 0,5X40 (BHN BAKU OBAT) COA 017.553",90189090 +What is the hs code for RESTYLANE SUBQ 2 ML D16 (BHN BAKU OBAT) COA 15014-2A,90189090 +What is the hs code for REST SKINB VITALLGHLIDO 1MLD16 (BHN BAKU OBAT) COA 15615-2,90189090 +What is the hs code for RESTYLANE LIDOCAINE 1 ML D16 (BHN BAKU OBAT) COA 15316-2,90189090 +What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 18014060,39139090 +What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702605740,29372900 +What is the hs code for ASTABIO ARV-S (BHN BAKU OBAT) COA.1711211K,32030010 +What is the hs code for ASTABIO AW1 (BHN BAKU OBAT) COA 1710031,32030010 +What is the hs code for ASTABIO AW1 (BHN BAKU OBAT) COA 1710031,32030010 +"What is the hs code for CARBAZOCHROME SODIUM SULFONATE (ORAL GRADE) BHN BAKU OBAT,COA",29339990 +"What is the hs code for KTP-09R (BHN BAKU KOSMETIK) , COA 706001, SAMPLE NO COMMERCIAL VALUE",39139090 +"What is the hs code for KTP-09Y (BHN BAKU KOSMETIK) COA 711003, SAMPLE NO COMMERCIAL VALUE",39139090 +"What is the hs code for KTP-09B (BHN BAKU KOSMETIK) COA 706001, SAMPLE NO COMMERCIAL VALUE",39139090 +"What is the hs code for KTP-09W (BHN BAKU KOSMETIK) COA 706003, SAMPLE NO COMMERCIAL VALUE",39139090 +What is the hs code for LIQUORICE LC (BHN BAKU KOSMETIK) COA.109796/P72025-P72028,13021920 +What is the hs code for LIQUORICE LC (BHN BAKU KOSMETIK) COA 109796/P72998-P73000,13021920 +What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA DKD,39139090 +What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA DKD,39139090 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA DLE,39139090 +What is the hs code for PROMOIS EF-118 (IS) (BHN BAKU KOSMETIK) COA DIG,39139090 +What is the hs code for PROMOIS WK-GB(BHN BAKU KOSMETIK) COA DLD,39139090 +What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA DJG,39139090 +"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7177772",38210010 +"What is the hs code for BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7208538",38210010 +What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7240894,38210010 +What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7255892,38210010 +What is the hs code for BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7234535,38210010 +What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7171820,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7227521,38210010 +"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7171538",38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053919,38210010 +What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7271780,38210010 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7250997,38210010 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7018890,38210010 +What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7018890,38210010 +What is the hs code for PAIL BUFFERED PEPTONE WATER 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7152551,38210010 +What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7103675,38210010 +"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7102560",38210010 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7116560,38210010 +What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6132955,38210010 +What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7114681,38210010 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7198804,38210010 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7198804,38210010 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7142625,38210010 +What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7193991,38210010 +What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7226556,38210010 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7193548,38210010 +What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7151674,38210010 +What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7151674,38210010 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171972,38210010 +"What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7157502",38210010 +What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6201884,38210010 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7109946,38210010 +What is the hs code for BOTTLE TRYPTONE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 70600807,38210010 +"What is the hs code for BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7208538,7226906",38210010 +"What is the hs code for PAIL TRYPTOSE PJOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7240892,894",38210010 +What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7255892,38210010 +What is the hs code for BOTTLE TRYPTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7234535,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053881,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7227521,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171538,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7053919,38210010 +What is the hs code for BOTTLE BAIRD PARKER AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7250997,38210010 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7250997,38210010 +What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7109930,38210010 +What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121848,38210010 +What is the hs code for PAIL BUFFERED PEPTONE WATER 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7152551,38210010 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7215989,38210010 +What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7103675,38210010 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7095842,38210010 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7102560,38210010 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171993,38210010 +What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7178809,38210010 +What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7114681,38210010 +What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7142628,38210010 +"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7102868,7198804",38210010 +What is the hs code for BOTTLE MACCONKEY BROTH 50 MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7251521,38210010 +What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7047892,38210010 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7142625,38210010 +What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7193991,38210010 +What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242928,38210010 +What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7151674,38210010 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171972,38210010 +What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7157502,38210010 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 7193661,38210010 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7193724,38210010 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121863,38210010 +What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6201884,38210010 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7109946,38210010 +What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060807,38210010 +What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH170706816,38210010 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7277595,38210010 +What is the hs code for CULTURESWAB LIQUID STUART SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 171672599,38210010 +What is the hs code for BOTTLE STANDARD METHODS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7262589,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7227521,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7242852,38210010 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7250997,38210010 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7018890,38210010 +What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7291775,38210010 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7235794,38210010 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7278642,38210010 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7325792,38210010 +What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7047892,38210010 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7142625,38210010 +What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7193991,38210010 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7306543,38210010 +What is the hs code for BOTTLE R2 AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7297672,38210010 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7271748,38210010 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7193661,38210010 +What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7209759,38210010 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7325764,38210010 +What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7271779,38210010 +What is the hs code for BOTTLE AGAR NOBLE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 7256726,38210010 +What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7214708,38210010 +What is the hs code for BOTTLE CELLOBIOSE 25G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7156992,38210010 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7256591,38210010 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7198543,38210010 +What is the hs code for PAIL LAURYL TRYPTOSE BROTH 2KG (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7234887,38210010 +What is the hs code for BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6278861,38210010 +What is the hs code for BOTTLE MR-VP MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7262698,38210010 +What is the hs code for BOTTLE PHOSPHATE BUFFER PH 7.2 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7121877,38210010 +What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6319507,38210010 +What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7102731,38210010 +"What is the hs code for PLATE TSA W LP IC XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7262212,13",38210010 +What is the hs code for PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7254256,38210010 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7326688,38210010 +What is the hs code for BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7156929,38210010 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7251523,38210010 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7278561,38210010 +What is the hs code for TUBE CRYSTAL INOCULUM BROTH (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 7257857,38210010 +"What is the hs code for PLATE TSA W LP IC-XT PACK MM 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 7254256,7277108",38210010 +What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7324657,38210010 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) 7324913,38210010 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7324913,38210010 +What is the hs code for BOTTLE BEEF EXTRACT POWDER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7135945,38210010 +What is the hs code for BOTTLE CASAMINO ACIDS TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7073600,38210010 +What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7297554,38210010 +What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKROORGANISME) COA 7303629,38210010 +What is the hs code for CITRIC ACID MONOHYDRATE BP2009/E330 8-40 MESH(BHN BAKU SUPLEMEN) COA 1MT1712533,29181400 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT17060025,32041900 +What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17070052,29362100 +What is the hs code for VIT A PALM 1.0 M AND VIT D3 100'000 (BHN BAKU SUPLEMEN) COA UT17110045,29362100 +What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT17090051,29362500 +What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00617195,29362100 +"What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF, 1KG BOT PE (BHN BAKU SUPLEMEN) COA UE01710068",32030010 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT17060025,32041900 +What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00617195,29362100 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17100025,32030010 +What is the hs code for REDIVIVO (R)LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110017,29189900 +What is the hs code for VITAMIN A WATER MISCIBLE TYOE 100 (BHN BAKU SUPLEMEN) COA UT17070052,29362100 +What is the hs code for VITAMIN A AND D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT17080035,29362100 +What is the hs code for METHYLPREDNISOLONE MICRONIZED (BHN BAKU OBAT) COA.F-04.1064-180101,29372900 +What is the hs code for TRAMADOL HCL (BHN BAKU OBAT) COA. TH/3/15010/00E,29225090 +"What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND170802, ND 170804",29372200 +"What is the hs code for PURICILLIN COMPACTED (BHN BAKU OBAT) COA. M842210,12 S/D 17",29411020 +"What is the hs code for PURIDROX TM POWDER MONOHYDRAT (BHN BAKU OBAT),COA.B334499,334501, 504",29419000 +What is the hs code for PURIDROX TM POWDER MONOHYDRAT (BHN BAKU OBAT) COA B334500,29419000 +"What is the hs code for RANITIDINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA RH 021 01 18, RH 022 01 18...",29321900 +What is the hs code for MEROPENEM WITH SODIUM CARBONATE (BHN BAKU OBAT) COA Q900100,30039000 +"What is the hs code for NIACINAMIDE PC ,25KG BOX (BHN BAKU KOSMETIK) COA 0000170005 S/D 7, 9",29362900 +"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00504773,511322",29189900 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT17090195,29362800 +What is the hs code for BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7235808,38210010 +What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7227994,38210010 +What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7277945,38210010 +"What is the hs code for HU TH17/TREG PHENOTYPING KIT 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7326783",38210010 +"What is the hs code for FASTIMMUNE IL-6 FITC AS12 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7307604",38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7153980,38210010 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7282812,38210010 +What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7277766,38210010 +What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7198968,38210010 +What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7102829,38210010 +"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7153980",38210010 +What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7277766,38210010 +What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7291650,38210010 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7146880,38210010 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7282812,38210010 +What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7248503,38210010 +What is the hs code for VIAL SAL H ANTISERUM A 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6274878,38210010 +What is the hs code for VIAL SAL H ANTISERUM C 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7293599,38210010 +"What is the hs code for VIAL SAL H ANTISERUM D 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6225901",38210010 +What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7251512,38210010 +What is the hs code for HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7125585,38210010 +What is the hs code for HU HLA DR FITC L243 (G46-6) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6263631,38210010 +What is the hs code for PERM/WASH BUFFER 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7136715,38210010 +What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7291650 7198804,38210010 +What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7198968,38210010 +What is the hs code for CALCIUM ASSAY KIT 10 PLATES (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),38210010 +What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7235889,38210010 +What is the hs code for CD34 APC BG12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7186970,38210010 +What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7226996,38210010 +What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7250529,38210010 +What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7305643,38210010 +"What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7220771",38210010 +What is the hs code for CD45 PER CP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7333763,38210010 +What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7345542,38210010 +What is the hs code for ANTI HLA DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7299623,38210010 +What is the hs code for CD45 PERCP 2D1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7194660,38210010 +What is the hs code for BD CST BEADS KIT 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 72926,38210010 +What is the hs code for CD10 PE HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7304664,38210010 +What is the hs code for BOTTLE TRYPTOSE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7289995,38210010 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7146880,38210010 +What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7341769,38210010 +What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT 10X10MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7228748,38210010 +What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7326679,38210010 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I &VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7187918,38210010 +What is the hs code for HU FOXP3 BUFFER SET 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7222681,38210010 +What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU OBAT UTK PAKAN TERNAK) COA.201700281,28183000 +What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU MAKANAN) COA UT17110001,32041900 +What is the hs code for METHOCEL K15M PREMIUM CR...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180H5N001,39123900 +"What is the hs code for CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 201801T-CCH",38249999 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA. ROA003187,28363000 +"What is the hs code for MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU MAKANAN) COA.TS00009339",29362500 +"What is the hs code for MEG-3 '30' N-3 FOOD OIL ,4,5 KG PJUG (BHN BAKU MAKANAN) COA TS00009339",29362500 +What is the hs code for EPA DHA 44 37 (BHN BAKU OBAT) COA EE4437-180102,29061300 +"What is the hs code for AMLODIPINE BESILATE BP/EP (BHN BAKU OBAT), COA. AMB/139/12/17, AMB/140/12/17...",29333990 +"What is the hs code for PURIDROX TM POWDER MONOHYDRAT (BHN BAKU OBAT),COA.B334515,17,19",29419000 +What is the hs code for LABRAFIL M 1944 CS (BHN BAKU SUPLEMEN) COA.166910,28399000 +What is the hs code for TEFOSE (BHN BAKU SUPLEMEN) COA 166939,28399000 +What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU KOSMETIK) COA 01/17GAAK,28399000 +"What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU KOSMETIK) COA 01/17GAAK,SAMPLE NO COMM VALUE",28399000 +What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 164862,28399000 +What is the hs code for METHYLPREDNISOLONE MICRONIZED (BHN BAKU OBAT) COA.F-04.1064-180101,29372900 +What is the hs code for OLIO VINACCIOLI RAFFINATO (BHN BAKU OBAT) COA.B1700291,15152919 +What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P7W01PA000,29189900 +What is the hs code for REFINED SUNFLOWER OIL (BHN BAKU KOSMETIK) COA KKLJ 15/17,39139090 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180106,17029019 +What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE POWDER (B.BAKU KOSMETIK)COA CHP1180112,39139090 +What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-162827,39139090 +What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-893107,39139090 +What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK)COA SFP-N-080917,39139090 +"What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-033107, 042217",39139090 +What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 071817,39139090 +What is the hs code for SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK) COA U180125,39139090 +What is the hs code for MAGNOLIA BARK EXTRACT (BHN BAKU KOSMETIK) COA MBE05-171002,39139090 +What is the hs code for COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-1706123,39139090 +What is the hs code for ULTALUX FF25 KG BAG (BHN BAKU KOSMETIK) COA D041742562,39139090 +"What is the hs code for NIACINAMIDE PC ,25KG BOX (BHN BAKU KOSMETIK) COA 0000170021",29362900 +What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91712339,29189900 +What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01707028,29362700 +"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0703160002,5,6",29189900 +What is the hs code for THE MATCHA 1 P001062 (BHN BAKU KOSMETIK) COA 0000010553,33029000 +What is the hs code for PLAISANCE P116808 (BHN BAKU KOSMETIK) COA.0000012945,33029000 +What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA 0000006375,33029000 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17080764,29362100 +"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01705041,7058",32041900 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17090164,29362100 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01707058,32041900 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT17080762,29362100 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA UT01710765,29362400 +What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91711231,21069059 +What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW91712166,21069059 +What is the hs code for PX 103070 -C3 (BHN BAKU MAKANAN) COA XW91712167,21069059 +"What is the hs code for ASCORBIC ACID 90PCT GRANULATION ,25KG BAL (BHN BAKU MAKANAN) COA WB00917901",29362700 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT17110004,29362900 +What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01707063,29362400 +What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01707063,29362400 +What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01707063,29362400 +What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01707063,29362400 +What is the hs code for RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1706072,29362300 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT17060049,29362800 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT17060049,29362800 +What is the hs code for CANTHAXANTHIN 10PCT CWS/S (BHN BAKU MAKANAN) COA UT17040003,32041900 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17080035,29362100 +"What is the hs code for DWI BI (BHN BAKU MAKANAN) COA XW91712070 ,XW91712071",21069059 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17080053,29362100 +What is the hs code for METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/18010016,29332900 +"What is the hs code for DRY VITAMIN E 50PCT SD,15KG BOXALU (BHN BAKU SUPLEMEN) COA WB08170237",29362800 +What is the hs code for KETOROLAC TROMETAMOL /TROMETHAMINE (BHN BAKU OBAT) COA.17100583,29339990 +What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.17100760,29391900 +What is the hs code for NYSTATIN (BHN BAKU OBAT) COA.C130654,29419000 +What is the hs code for GRANULAC (R) 70 (BHN BAKU OBAT) COA L101883217A545,17021100 +What is the hs code for METHISOPRINOL (BHN BAKU OBAT) COA.MTP7110445,29349990 +What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 17E3805,28399000 +What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 17E4005,28399000 +What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 17E4402,28399000 +What is the hs code for JAGUAR C 162 CARDBOARD BOX 25 KG (BHN BAKU KOSMETIK) COA MJAC17324A,39139090 +What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA180101,39139090 +What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA180101,39139090 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170904,39139090 +What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-180101,39139090 +What is the hs code for OLIVE ORGANIC VIRGIN OIL... (BHN BAKU KOSMETIK)COA OLVH180101-ENBIO,39139090 +What is the hs code for KOLLICOAT IR WHITE 2 25KG(BHN BAKU OBAT UTK PEWARNA TABLET) COA 25165316K0,32151900 +What is the hs code for KOLLICOAT IR WHITE 2 25KG (BHN BAKU OBAT UTK PEWARNA TABLET) COA 25165316K0,32151900 +What is the hs code for KOLLICOAT IR WHITE 2 25KG (BHN BAKU OBAT UTK PEWARNA TABLET) COA 25165316K0,32151900 +What is the hs code for CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA. 1GC01CLB ZP48D 25MT,39139090 +What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601181,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598035,38249999 +What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600964,38249999 +What is the hs code for OPADRY RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601177,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601145,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600977,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH6001185,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601183,38249999 +What is the hs code for ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601187,39061090 +What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601277,38249999 +What is the hs code for OPADRY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601174,38249999 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601182,38249999 +What is the hs code for OPADRY AMB ORANGE(BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601195,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601184,38249999 +What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600988,39061090 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH6001175,38249999 +What is the hs code for HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 2722767,33021090 +What is the hs code for HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 2731857,33021090 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP00518,28363000 +What is the hs code for KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0401217,29339990 +"What is the hs code for LIPOID S 67 F (BHN BAKU OBAT) COA.576200-2170030/001-016 (16),576200-2170030/17",29232010 +"What is the hs code for DL PANTHENOL 50L (BHN BAKU KOSMETIK) COA TL01703615,6630",29362400 +"What is the hs code for EUXYL K 100 CN 10KG KA (BHN BAKU KOSMETIK) COA 1336274,1339381,1340596",38249999 +"What is the hs code for EUXYL K 900 CN 10KG KA (BHN BAKU KOSMETIK) COA 1500210,1501073",38249999 +"What is the hs code for EUXYL PE 9010 CN 10KG KA (BHN BAKU KOSMETIK) COA 1338431,1341214,1341215",38249999 +What is the hs code for GROTANOL 3025 CN 10KG KA (BHN BAKU KOSMETIK) COA 1340232,38249999 +"What is the hs code for SENSIDIN DO CN 10KG CA (BHN BAKU KOSMETIK) COA 1340439,1500730",38249999 +"What is the hs code for SENSIVA SC 50 CN 10KG KA (BHN BAKU KOSMETIK) COA 1340534,1341087,1341528",38249999 +"What is the hs code for EUXYL K 903 (SAMPLE) 100ML FL (BHN BAKU KOSMETIK) COA 1332917, SAMPLE FREE OF CHARGE",38249999 +"What is the hs code for SENSIDIN DO 100 ML FL (BHN BAKU KOSMETIK) COA 1325548,1332922,1335611.SAMPLE FREE OF CHARGE",38249999 +"What is the hs code for EUXYL K 940 (SAMPLE) 100ML FL (BHN BAKU KOSMETIK) COA 1333310, SAMPLE FREE OF CHARGE",38249999 +"What is the hs code for SENSIVA SC 50 SAMPLE(S) 100ML FL (BHN BAKU KOSMETIK) COA 1323757,1335586,1337764",38249999 +What is the hs code for SWT 7TM H (BHN BAKU KOSMETIK) COA 1729201,39139090 +What is the hs code for ALDAVINE 5X (BHN BAKU KOSMETIK) COA 5504917,39139090 +What is the hs code for B WHITE (BHN BAKU KOSMETIK) COA 829015555H,39139090 +What is the hs code for BODY 3 COMPLEX (BHN BAKU KOSMETIK) COA B3C010317,38249999 +"What is the hs code for CAPIXYL (BHN BAKU KOSMETIK), COA 830015906H",39139090 +"What is the hs code for CAPIXYL (BHN BAKU KOSMETIK), COA 8300015775H",39139090 +What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769015443H,39139090 +What is the hs code for HELIOGEL TM (BHN BAKU KOSMETIK) COA 1719801,39139090 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1727802,39139090 +What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015909H,39139090 +What is the hs code for PROGELINE (BHN BAKU KOSMETIK) COA 820055712H,39139090 +What is the hs code for SWT 7TM L (BHN BAKU KOSMETIK) COA 1725601,39139090 +What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025824H,39139090 +What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA.18100057,29221990 +What is the hs code for GRANULAC 70 (BHN BAKU OBAT) COA LC 001-7-870,17021100 +What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB020118,39123900 +"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B261217",39123900 +What is the hs code for NICOTINAMIDE US/EP (BHN BAKU KOSMETIK) COA 17-18/NMD(P)/U/229 S/D 233,29362900 +What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 172434,38249999 +What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 172528,13021990 +What is the hs code for SAKURA EXTRACT (BHN BAKU KOSMETIK) COA 171058,13021990 +What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 172071,13021990 +What is the hs code for O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 080817/004810,39139090 +What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7319547...,38210010 +What is the hs code for DL PANTHENOL 50L (BHN BAKU KOSMETIK) COA TL01706630,29362400 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ70413105,29362500 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0317111626,629,631 S/D 634",29189900 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU KOSMETIK) UT17060751,29362100 +"What is the hs code for PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0317111626",29189900 +"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01708070,71",29362400 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) UT17060049,29362800 +What is the hs code for BEAUPLEX VH ( BHN BAKU KOSMETIK) COA UF17082002,29189900 +"What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0015511",29362500 +What is the hs code for DICLOFENAC POTASSIUM BP (BHN BAKU OBAT) COA DFK/7100058,29224900 +What is the hs code for MEROPENEM TRIHYDRATE WITH SODIUM CARBONATE STERILE (BHN BAKU OBAT) COA S0820171104,30032000 +What is the hs code for DEXAMETHASONE (BHN BAKU OBAT) COA X5-171212,29372200 +What is the hs code for OPACODE WHITE ( BHN BAKU OBAT UTK PEWARNA TABLET) COA. WP793254,32151900 +What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602195,38249999 +What is the hs code for OPADRY II RED(BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602212,38249999 +What is the hs code for OPADRY AMB GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602207,38249999 +"What is the hs code for ROVIMIX A 1000, 20KGBAL (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT17080789,796",29362100 +"What is the hs code for ROVIMIX E 50 ADSORBATE, 25KG BAG (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT17110269",29362800 +What is the hs code for EPA DHA 44 37 (BHN BAKU OBAT) COA EE4437-180102,29061300 +"What is the hs code for AMBROXOL HYDROCHLORIDE POWDER (BHN BAKU OBAT) COA AHM/18003,18004",29221990 +What is the hs code for FLOWLAC (R) 90 (BHN BAKU OBAT) COA L101534717A535,17021100 +What is the hs code for SODIUM VALPROATE (BAHAN BAKU OBAT) COA.450871 (550),29159090 +What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 181217,25070000 +What is the hs code for LUBRIPHARM (R) SSF NF/JP SODIUM STEARYL FUMARATE (BHN BAKU OBAT) COA 121707950,28161000 +What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702605740,29372900 +What is the hs code for CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA. 1GC01CLB ZP48D 25MT,39139090 +What is the hs code for PEG 400 (POLYETHYLENE GLYCOL) BAHAN BAKU KOSMETIK) COA.AKW0003785,39139090 +What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 183779,29332900 +What is the hs code for PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) COA 96244,38249999 +What is the hs code for HYDROXOCOBALAMIN CHLORIDE HP (BHN BAKU OBAT) COA.541783,29362600 +What is the hs code for HEXETIDINE (BAHAN BAKU OBAT) COA.FG18200013,29335990 +What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA. NY0008M,29372200 +What is the hs code for LIDOCAINE BASE (BHN BAKU OBAT) COA. 186134,29242990 +What is the hs code for LIDOCAINE HCL (BHN BAKU OBAT) COA.186175,29242990 +What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA. 20180108,11081200 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180105,17029019 +What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA. 20180106,17023010 +What is the hs code for MANNITOL POWDER USP/EP - MANNO (BHN BAKU OBAT) COA.301711305,29054300 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602114,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602500,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602388,38249999 +What is the hs code for CHOLINE L-BITARTRATE (BAHAN BAKU OBAT) COA.3014156,29231000 +What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA. WP787390,39059990 +What is the hs code for PVAP PHTHALAVIN NF CLEAR (BAHAN BAKU OBAT UTK PEWARNA TABLET) COA. WP787399,39059990 +What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA. WP787395,39059990 +What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP787394,39059990 +What is the hs code for SODIUM BICARBONATE IPH (BHN BAKU SUPLEMEN) COA. DOC0101821,28363000 +"What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT17080014,15,16",29362100 +What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01709545,29362700 +What is the hs code for MEG 3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT17090052,29362500 +What is the hs code for LEVOFLOXACIN HEMIHYDRATE USP (BHN BAKU OBAT) COA LF17080046,29349990 +"What is the hs code for KF-96A-6CS (BHN BAKU KOSMETIK) , COA 801941",39139090 +What is the hs code for KF-6028 (BHN BAKU KOSMETIK) COA 712179,39139090 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518010008",29189900 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708170176,177",29189900 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01708071,29362400 +"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA MCS1602029,53",29189900 +"What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11708017,22",29362900 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01704011,29362900 +"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT17090195,196",29362800 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01708071,29362400 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT17090164",29362100 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT17090164",29362100 +"What is the hs code for CALCITRIOL (BHN BAKU OBAT) COA F074-856R003-1, SAMPLE NO COMMERCIAL VALUE",29061900 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN536027,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN536073,35051010 +What is the hs code for STARCAP 1500 CO PROCESSED (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN535916,35051010 +What is the hs code for CEFTAZIDIME BUFFERED (BHN BAKU OBAT) COA Q104000,29419000 +What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M529699,29411019 +"What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX POWDER (BHN BAKU OBAT) COA M483604,605,607,609",29411019 +"What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX POWDER GRADE C (BHN BAKU OBAT) COA M631689,631691",29411019 +What is the hs code for OPACODE WHITE ( BHN BAKU OBAT UTK PEWARNA TABLET) COA. WP793723,32151900 +What is the hs code for FDANDC YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP789485,32151900 +What is the hs code for FDANDC YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP789484,32151900 +What is the hs code for DANDC YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP787034,32151900 +What is the hs code for DANDC YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP787038,32151900 +What is the hs code for FDANDC BLUE #2/INDIGO CARMINE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP781752,32151900 +What is the hs code for FDANDC BLUE #2/INDIGO CARMINE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP781742,32151900 +What is the hs code for LIPOID PPL 600 (BHN BAKU OBAT) COA.577200-2170209/011-012 (2),29232010 +What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-0180118,29334910 +What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 2017L1396,39139090 +What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUO-012218,39139090 +What is the hs code for SK BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK)COA KFB-L-030827,39139090 +What is the hs code for SK BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-091617,39139090 +What is the hs code for SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-022097,39139090 +What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-062017,39139090 +What is the hs code for SK BIOLAND GREEN TEA SEED OIL (BHN BAKU KOSMETIK) COA CSSO-010728,39139090 +What is the hs code for SK BIOLAND LICORICE EXTRACT (BHN BAKU KOSMETIK) COA GGB-022887,39139090 +What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-040818,39139090 +What is the hs code for LISINOPRIL DIHYDRATE (BHN BAKU OBAT) COA C5170-17-057,29339990 +What is the hs code for SODIUM LACTATE SOLUTION (BHN BAKU OBAT) COA CE180101D,29181900 +What is the hs code for METHYL SULFONYL METHANA (BHN BAKU OBAT) COA 18012501,29309090 +"What is the hs code for EUXYL PE 9010 CN 10 KG KA (BHN BAKU KOSMETIK) COA.1501227,1503258",38249999 +"What is the hs code for L-GLUTAMIC ACID ( BHN BAKU OBAT), COA 180130",29224900 +What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 71025,39139090 +What is the hs code for TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA 80102,39139090 +What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA. 20180120,17023010 +What is the hs code for VITAMIN A PALMITATE /. 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT17100019,29362100 +"What is the hs code for DRY VITAMIN E 50PCT, 15KG BOXALU (BHN BAKU SUPLEMEN) COA WB08170238",29362800 +"What is the hs code for DL-PANTHENOL 50L ,1000KG IBC (BHN BAKU KOSMETIK) COA TL01712658",29362400 +What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ70407015,29189900 +What is the hs code for OLIVE POLYPHENOLIC DRY EXTRACT (BHN BAKU SUPLEMEN) COA 17447,13021990 +What is the hs code for LABRAFIL M 1944 CS (BHN BAKU SUPLEMEN) COA.167167,28399000 +What is the hs code for TEFOSE 63 (BHN BAKU SUPLEMEN) COA 167738,28399000 +What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU KOSMETIK) COA 01/17GAAK,28399000 +"What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU KOSMETIK) COA 01/17GAAK,SAMPLE NO COMM VALUE",28399000 +What is the hs code for SUPPOCIRE AM PELLETS (BHN BAKU SUPLEMEN) COA 17E4403,28399000 +What is the hs code for MOXIFLOXACIN HYDROCHLORIDE EP (BHN BAKU OBAT) COA ADMXH-B007092017,29334910 +What is the hs code for MOXIFLOXACIN HYDROCHLORIDE EP (BHN BAKU OBAT) COA ADMXH-B007092017,29334910 +What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91712220,21069059 +"What is the hs code for DWI BI (BHN BAKU MAKANAN) COA XW91801221,1222",21069059 +What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91712250,21069059 +What is the hs code for D PANTHENOL (BHN BAKU MAKANAN) COA TL01707063,29362400 +"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70803288,99",29362200 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11708022,29362900 +"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17070223,224",29362400 +"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70803289,99",29362200 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL01711802,29362400 +"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ70810150,151",29362300 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT17090164",29362100 +"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN), COA UT17010034",29362400 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL01711802,29362400 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70802464,29362200 +"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70803283,89",29362200 +"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ70810148,151",29362300 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ70810151,29362300 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G TOCO (BHN BAKU SUPLEMEN) COA UT17090164,29362100 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17080039,29362100 +What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL01708070,29362400 +What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01704011,29362900 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT17050019,29362900 +"What is the hs code for VITAMIN MINERAL PREMIX 170299 (BHN BAKU MAKANAN), COA XW91801201 S/D 204",21069059 +"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN), COA UT17070027",29362900 +What is the hs code for D-BIOTIN ( BHN BAKU MAKANAN) COA UE01704011,29362900 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT17070219,29362400 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT17070027,29362900 +What is the hs code for SILVERION 2400 (BHN BAKU KOSMETIK) COA.17-06535,38249999 +What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT670908,32151900 +What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT670909,32151900 +What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT666547,32151900 +What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT670777,32151900 +What is the hs code for OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT669988,32151900 +What is the hs code for PUROLAN E 171 (BHN BAKU KOSMETIK) COA 5619815,38249999 +"What is the hs code for INSTANT TEA POWDER (TEA EXTRACT) BHN BAKU MAKANAN, COA 802011, 802021",9022010 +"What is the hs code for KAHLWAX 2956 (BHN BAKU KOSMETIK) COA F1802008-001, 09-001, 38-001",15211000 +"What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA.03140118,03160118...",29351000 +"What is the hs code for SULPHAMETHOXAZOLE BP MICRONISED (BHN BAKU OBAT) COA 03200118,03210118...",29351000 +What is the hs code for FIBRE DRUM (EMPTY DRUMS) FREE OF COST NO COMMERCIAL VALUE,48192000 +"What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334525,526,532",29419000 +"What is the hs code for AMBROXOL HYDROCHLORIDE POWDER (BHN BAKU OBAT) COA AHM/18003,18005",29221990 +What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7227994,38210010 +What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7277961,38210010 +"What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 71205, 80124",38249999 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP02118,28363000 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP02118,28363000 +"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7332596.",38210010 +"What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8031555",38210010 +What is the hs code for QUANTIBRITE CD64 PE/CD45 PERCP MD22/2D1 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7341724,38210010 +What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7352771,38210010 +What is the hs code for CD3 FITC SK7 50 TESTS IVD (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8011762,38210010 +What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 73477530,38210010 +What is the hs code for BOTTLE MYCOPLASMA SUPLLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7332596,38210010 +"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7340561",38210010 +What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7340561,38210010 +What is the hs code for CYCLETEST PLUS DNA REAGENT KIT RUO/GMP (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7296955,38210010 +What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8016851,38210010 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7354931,38210010 +What is the hs code for VIAL TINSDALE ENRICHMENT 6X15ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7354892,38210010 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7268937,38210010 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7354931,38210010 +"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7319536",38210010 +What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7291650,38210010 +What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7325717,38210010 +What is the hs code for VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7314928,38210010 +What is the hs code for BOTTLE TRYPTICASE SOY AG L P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7289995,38210010 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7146880,38210010 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7237643,38210010 +What is the hs code for CD11C PE CE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7179827,38210010 +What is the hs code for CYCLETEST PLUS DNA REAGENT KIT RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7347625,38210010 +What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7235889,38210010 +"What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7186970,7333561",38210010 +What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7226996,38210010 +What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8016851,38210010 +"What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7250529",38210010 +What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7305643,38210010 +What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7220771,38210010 +What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7333763,38210010 +What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7345542,38210010 +What is the hs code for CD45 PERCP 2D1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7317768,38210010 +What is the hs code for CD33 PE 67.6 100 TESTS TUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8005840,38210010 +What is the hs code for HU CD206 FITC 19.2 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7258565,38210010 +What is the hs code for HU CD209 APC DCN46 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7201902,38210010 +What is the hs code for HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7125585,38210010 +What is the hs code for HU CD64 FITC 10.1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7250584,38210010 +What is the hs code for HU CD86 FITC 2331 (FUN-1) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7132528,38210010 +What is the hs code for MS LGG1KPA LTCI FITC MOPC-21 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6301865,38210010 +What is the hs code for HU HLA DR FITC L243 (G46-6) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6263631,38210010 +What is the hs code for HU CD163 PE GHI/61 100 TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7160585,38210010 +What is the hs code for HU CD274 PE MIH1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7096869,38210010 +What is the hs code for HU CD11C APC B-LY6 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7124669,38210010 +What is the hs code for BD CST BEADS KIT 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 72926,38210010 +What is the hs code for ANTI-MPO FITC 588 50 TESTS RUO/GMP (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7293950,38210010 +What is the hs code for CD3 APC SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7332754,38210010 +What is the hs code for HU CD40 FITC 5C3 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7132522,38210010 +What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060854,38210010 +What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7326679,38210010 +What is the hs code for VIAL NOVOBIOCIN SUPPLEMENT 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7347756,38210010 +What is the hs code for HU HLA-A2 FITC BB7.1 100UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7110642,38210010 +What is the hs code for VIAL SAL O ANTIS POLY GRP AI VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7187918,38210010 +"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8012723",38210010 +"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7319856",38210010 +What is the hs code for PLATE TSA W LP IC XT PACK 90MM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8003895,38210010 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7251523,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7227521,38210010 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7251523,38210010 +What is the hs code for BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7208538,38210010 +"What is the hs code for BOTTLE TRYPTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7234535,7270946",38210010 +What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171820,38210010 +What is the hs code for BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7156929,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7227521,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171538,38210010 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7250997,38210010 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7018890,38210010 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7251541,38210010 +"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7103675",38210010 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7095842,38210010 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7102560,38210010 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7116560,38210010 +"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7114681,7208901",38210010 +What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7142628,38210010 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7198804,38210010 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7325792,38210010 +What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7297545,38210010 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7142625,38210010 +What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7193991,38210010 +What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7289581,38210010 +"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7193548,7306543",38210010 +"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7151674",38210010 +What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7262700,38210010 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7193661,38210010 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121863,38210010 +"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242958,7325764",38210010 +"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7005857,7157987",38210010 +What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060807,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171538,38210010 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7250997,38210010 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7081890,38210010 +What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7109930,38210010 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7116560,38210010 +What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7178809,38210010 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7198804,38210010 +What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7297545,38210010 +"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7206720,...",38210010 +"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7152571,7297693",38210010 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7193724,38210010 +What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7209759,38210010 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242803,38210010 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121863,38210010 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242958,38210010 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7332778,38210010 +What is the hs code for BOTTLE POLYSORBATE 80 100G 1 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7263958,38210010 +What is the hs code for TUBE CRYSTAL INOCULUM BROTH (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7335882,38210010 +What is the hs code for TUBE CRYSTAL E/ID INOCULUM FLUID(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7335881,38210010 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7319856,38210010 +"What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7296590,7326806",38210010 +What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7303629,38210010 +What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7304548,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7306827,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242852,38210010 +What is the hs code for BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7220797,38210010 +What is the hs code for BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7317688,38210010 +What is the hs code for BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 7325773,38210010 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7261795,38210010 +What is the hs code for BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7220787,38210010 +What is the hs code for GASPAK EZ STANDARD INCUBATION CONTAINER(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7261716010,38210010 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7198543,38210010 +What is the hs code for PAIL LAURYL TRYPTOSE BROTH 2KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7234887,38210010 +What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7177823,38210010 +What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7220793,38210010 +What is the hs code for BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7325649,38210010 +What is the hs code for BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7250994,38210010 +What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7102731,38210010 +What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7109953,38210010 +What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7206693,38210010 +What is the hs code for BOTTLE YEAST CARBON BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7256543,38210010 +What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7297698,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121569,38210010 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7171993,38210010 +What is the hs code for PLATE TSA IC XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7317878,38210010 +What is the hs code for PLATE TSA IC XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7317878,38210010 +What is the hs code for PLATE TSA W LP IC XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7317895,38210010 +What is the hs code for PLATE TSA IC XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7339575,38210010 +What is the hs code for PLATE TSA IC XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7339579,38210010 +What is the hs code for PLATE TSA W LP IC XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7317895,38210010 +What is the hs code for PLATE TSA W LP IC XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7317895,38210010 +What is the hs code for PLATE TSA IC XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7317878,38210010 +What is the hs code for NICOTINAMIDE US/EP (BHN BAKU KOSMETIK) COA 17-18/NMD(P)/U/235 S/D 240,29362900 +"What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M595695,96",29411019 +What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA180102,39139090 +What is the hs code for DULSE PHYTELENE EG 745 (BG) (BHN BAKU KOSMETIK)COA EG745-180101-GS-B,38249999 +What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH180202-ENBIO,39139090 +What is the hs code for AC019KC PHYTOVITYL C 5KG BHN BAKU KOSMETIK COA 0019724,39139090 +What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-001-V,39139090 +What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN1400917,29221990 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA ROA040183,28363000 +What is the hs code for THIOGLYCOLIC ACID 99PCT COSMETIC GRADE (BHN BAKU KOSMETIK) COA.0000061945,29309090 +"What is the hs code for AMMONIUM THIOGLYCOLATE 71PCT(60PCT TGA) BHN BAKU KOSMETIK, COA.0000061946",29309090 +"What is the hs code for MONOETHANOLAMINE THIOGLYCOLATE 83PCT (50PCT TGA) BHN BAKU KOSMETIK, COA 0000061947",29221100 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP02118,28363000 +What is the hs code for MIRANOL ULTRA C32 200KG PLASCTIC DRUM (BHN BAKU KOSMETIK) COA BP801011R,34029099 +What is the hs code for PG USP (BHN BAKU KOSMETIK) COA B01231UP,29053200 +What is the hs code for DPG FG (BHN BAKU KOSMETIK) COA B01231DP,29094900 +"What is the hs code for PG USP (FREE SAMPLE) BHN BAKU KOSMETIK, COA B01231UP,SAMPLE NO COMM VALUE",29053200 +"What is the hs code for CARBAZOCHROME SODIUM SULFONATE (ORAL GRADE) BHN BAKU OBAT,COA AC71201/80112",29339990 +What is the hs code for HUILE DE COPRAH RAFF GV 24/26 (BHN BAKU KOSMETIK)COA BA007207,15131910 +What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.18100077,29391900 +"What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA DKD, KAE",39139090 +What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA DKD,39139090 +What is the hs code for PROMOIS WS (BHN BAKU KOSMETIK) COA KAC,39139090 +What is the hs code for SILASOMA MFA (S) (BHN BAKU KOSMETIK) COA DGC,39139090 +What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601910,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601916,38249999 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601915,39061090 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601908,38249999 +What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601921,39061090 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601920,38249999 +What is the hs code for OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601914,38249999 +What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601929,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601913,38249999 +What is the hs code for OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601906,38249999 +What is the hs code for OPADRY AMB II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601905,38249999 +What is the hs code for OPADRY QX ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601904,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601723,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601630,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601630,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601911,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601912,38249999 +What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601919,39061090 +What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601907,39061090 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599845,38249999 +What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601922,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601903,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602114,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602417,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602211,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601908,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602209,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602217,38249999 +What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602208,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602213,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602214,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602210,38249999 +What is the hs code for OPADRY BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602216,38249999 +What is the hs code for OPADRY II GRAY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602200,38249999 +What is the hs code for OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602201,38249999 +What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602117,38249999 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602113,39061090 +What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599892,38249999 +What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601921,39061090 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602107,39061090 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602111,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602112,38249999 +What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602101,39061090 +What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602186,38249999 +What is the hs code for OPADRY II BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602116,38249999 +What is the hs code for OPADRY II BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602103,38249999 +"What is the hs code for DOCUSATE SODIUM (BAHAN BAKU OBAT) COA.SD7071636, SAMPLE NO COMMERCIAL VALUE",29171900 +What is the hs code for METAMIZOL SODIUM TYPE T 25 (BHN BAKU OBAT) COA.171286,29331100 +What is the hs code for PF.ANTI SHINE WASH (BHN BAKU KOSMETIK)COA 10300065,38249999 +What is the hs code for ANTISHINE WASH 1 (BHN BAKU KOSMETIK) COA 10300107,38249999 +What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG171103,29362700 +"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 1801EF4113",29224900 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180203,17029011 +"What is the hs code for CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 017.629",90189090 +"What is the hs code for CANNULA 25G PIX'L 0,5 X40 (BHN BAKU OBAT) COA 017.533,017.615",90189090 +What is the hs code for REST SKINB VITALLGHLIDO 1MLD16 (BHN BAKU OBAT) COA 15615-2,90189090 +"What is the hs code for RESTYLANE LYFT LIDOCAINE 1 ML (BHN BAKU OBAT) COA 15618-1, 15664-1",90189090 +What is the hs code for RESTYLANE REFYNE 1ML (BHN BAKU OBAT) COA 15521-1,90189090 +What is the hs code for RESTYLANE DEFYNE 1ML (BHN BAKU OBAT) COA 15613-1,90189090 +"What is the hs code for RESTYLANE KYSSE 1ML (BHN BAKU OBAT) COA 15268-1, 15761-1",90189090 +"What is the hs code for LIFE'S DHA S35-O100, 5KG ALUF (B.BAKU SUPLEMEN) COA VY00249307",29362500 +What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602724,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602729,38249999 +What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602728,38249999 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 051801003137...",29189900 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518010031",29189900 +"What is the hs code for STAY C (R) 50, 20KG BOX NA (BHN BAKU KOSMETIK) COA UT17090152,145",29362700 +"What is the hs code for STAY C (R) 50, 5KG BAG ALU EX US (BHN BAKU KOSMETIK) COA UT17060074,91",29362700 +What is the hs code for D.BIOTIN (BHN BAKU KOSMETIK) COA UE01704011,29362900 +What is the hs code for BEAUPLEX (BHN BAKU KOSMETIK) COA UF17082002,29189900 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO170601,39139090 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO171102,39139090 +What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-171106-GS,39139090 +What is the hs code for GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK)COA EG209-171001,39139090 +What is the hs code for ALOE PHYTELENE COLORLESS EG 543(BHN BAKU KOSMETIK) COA EG543-180101,39139090 +What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA VIV171001-BGBIO,39139090 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS170802,39139090 +What is the hs code for HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIE170702,38249999 +What is the hs code for PEPPERMINT ORGANIC DISTILLATE 1:5 SB (BHN BAKU KOSMETIK) COA MEPD170701-BIO,39139090 +What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM170702-PGH,39139090 +What is the hs code for POMEGRANATE OILY EXTRACT (BHN BAKU KOSMETIK) COA PUG170803-H,39139090 +What is the hs code for WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK) COA EG138-171102,39139090 +What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB01217203,29362100 +What is the hs code for CW 5C 50CT CLEAR (BHN BAKU KOSMETIK) COA 785015905J,39139090 +What is the hs code for ISOCELL TM SLIM (BHN BAKU KOSMETIK) COA 1731305,39139090 +"What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK), COA 1724516",39139090 +"What is the hs code for SWT 7TM H (BHN BAKU KOSMETIK), COA 1732601",39139090 +What is the hs code for CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785015905J,39139090 +What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5526617,39139090 +What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015909H,39139090 +What is the hs code for TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA634466,32151900 +What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0021968,29337900 +What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE01706008,29362100 +"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01707058,59",32041900 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17070066,29362900 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL01711802,29362400 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01708248",29362700 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01704011,29362900 +"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17070224,225",29362400 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11708023,29362900 +What is the hs code for DL A TOCOPHEROL (BHN BAKU MAKANAN) COA UT17060049,29362800 +What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ70309009,29362300 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17070225,29362400 +What is the hs code for RIBOFLAVIN RABLET GRADE (BHN BAKU SUPLEMEN) COA UQ70309009,29362300 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17070224,29362400 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17070224,29362400 +"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17080053,54",29362100 +"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT17080048,49",29362100 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17050034,32041900 +"What is the hs code for B2 UNIVERSAL FINE POWDER, 5KG BAG ALU (BHN BAKU MAKANAN) COA UQ70410087,88",29362300 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UT1704011,29362900 +What is the hs code for DRY VITAMIN K1 5PCT SD(BHN BAKU SUPLEMEN) COA UT17110004,29362900 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11708023,29362900 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01704011,29362900 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ70910158,29362300 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT17070027,29362900 +What is the hs code for DL A TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT17060049,29362800 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01707059,32041900 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01710072,32041900 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UT1707059,32041900 +What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL01708248,29362700 +What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL01708248,29362700 +What is the hs code for DL A TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17100212,29362800 +What is the hs code for DL A TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT17100212,29362800 +What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL01708248,29362700 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11708023,29362900 +What is the hs code for RONOXAN A (BHN BAKU SUPLEMEN) COA UE01706008,29362100 +What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE01706008,29362100 +What is the hs code for DEXAMETASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 1703935854,29372200 +"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-0310218, S-0330218",29334910 +"What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND171001, ND171002",29372200 +What is the hs code for SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 1707384793,29322090 +What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB01217203,29362100 +What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA.MLAH0080118,29341000 +What is the hs code for GINKGO EXTRACT (BHN BAKU OBAT) COA 1269505,13021950 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602833,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602834,38249999 +"What is the hs code for KF-6017 (BHN BAKU KOSMETIK) , COA 801053",39139090 +"What is the hs code for KSG-210 (16KG) BHN BAKU KOSMETIK, COA 802430",39139090 +What is the hs code for OPASPRAY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT670910,32151900 +"What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF,1KG BOT PE (BHN BAKU SUPLEMEN) COA UE01710068",32030010 +What is the hs code for GENIVIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010017,29329990 +What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110017,29329990 +What is the hs code for GENIVIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010017,29329990 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010013,32041900 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB01017173,29362800 +What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110017,29329990 +What is the hs code for VITAMIN A AND D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18020037,29362100 +"What is the hs code for COATED ASCORBIC ACID,TYPE EC (BHN BAKU SUPLEMEN) COA TL01801736, 1742",29362700 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT18010785,29362100 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010013,32041900 +What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110017,29329990 +"What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF, 1KG BOT PE (BHN BAKU SUPLEMEN) COA UE01710068",32030010 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010013,32041900 +What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702605740,29372900 +What is the hs code for IBUPROFEN 40 GRADE (BHN BAKU OBAT) COA 4050-3220,29163990 +What is the hs code for CINNARIZINE (BHN BAKU OBAT) COA 032122017CIN,29335990 +What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 19-01-18,25070000 +What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA. 20180125,17023010 +"What is the hs code for ASTRIN-AG (BHN BAKU KOSMETIK)COA BAG-030126, SAMPLE NO COMM VALUE",38249999 +"What is the hs code for BIO SODIUM HYALURONATE 1PCT...(B BAKU KOSMETIK) COA HASC-081946,SAMPLE NO COMM VALUE",39139090 +"What is the hs code for CUCUMBER EXTRACT(BHN BAKU KOSMETIK) COA CUPD-022966, SAMPLE NO COMM VALUE",38249999 +"What is the hs code for FRUCTAN (BHN BAKU KOSMETIK)COA LSN-011717, SAMPLE NO COMMERCIAL VALUE",38249999 +"What is the hs code for GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GTB-022097, SAMPLE NO COMMERCIAL VALUE",38249999 +"What is the hs code for GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-022097, SAMPLE NO COMM VALUE",38249999 +"What is the hs code for HASU LIQUID (BHN BAKU KOSMETIK) COA NFH-021307, SAMPLE NO COMM VALUE",38249999 +"What is the hs code for LEMON EUCALYPTUS OIL (BHN BAKU KOSMETIK)COA SY-010924,SAMPLE NO COMM VALUE",38249999 +"What is the hs code for LIRORICE EXTRACT (BHN BAKU KOSMETIK) COA S-012017, SAMPLE NO COMM VALUE",38249999 +"What is the hs code for MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-21367,SAMPLE NO COMM VALUE",38249999 +"What is the hs code for OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-021066,SAMPLE NO COMMERCIAL VALUE",38249999 +"What is the hs code for PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-11711056,SAMPLE NO COMMERCIAL VALUE",38249999 +"What is the hs code for SC GLUCAN PF (BHN BAKU KOSMETIK) COA CPG-162426, SAMPLE NO COMM VALUE",38249999 +"What is the hs code for SNAIL SECRETION FILTRATE(BHN BAKU KOSMETIK) COA SAFW-082816, SAMPLE NO COMM VALUE",38249999 +"What is the hs code for SOYPOL SP PF (BHN BAKU KOSMETIK) COA CPS-022126, SAMPLE NO COMM VALUE",39139090 +"What is the hs code for MARIGOLD EXTRACT (BHN BAKU KOSMETIK) COA MGA-010347,SAMPLE NO COMM VALUE",39139090 +What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK) COA.LDC 45 18,38249999 +What is the hs code for LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUMPLEMEN) COA 16490,38249999 +What is the hs code for BOSWELIA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 18021,38249999 +"What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453119019",39139090 +"What is the hs code for KETAMINE HCL (BHN BAKU OBAT), COA 0255017P",29223900 +"What is the hs code for NEOSTIGMINE METHYLSULPHATE (BHN BAKU OBAT), COA NMS0217002",29242990 +What is the hs code for CILOSTAZOL USP (BHN BAKU OBAT) COA 6008CB2RIAX,29337900 +What is the hs code for FUROSEMIDE NON STERILE (BHN BAKU OBAT) COA 17172HRII,29359000 +What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA.165210,28399000 +What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA.01/17GAAK,28399000 +"What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU KOSMETIK) COA.01/17GAAK,SAMPLE NO COMMERCIAL VALUE",28399000 +What is the hs code for GELUCIRE 44/14 (BAHAN BAKU OBAT) COA.167226,28399000 +What is the hs code for LABRAFIL M 1944 CS ( BAHAN BAKU OBAT) COA.167589,28399000 +What is the hs code for TEFOSE 63 (BAHAN BAKU OBAT) COA.167900,28399000 +What is the hs code for TEFOSE 63 (BAHAN BAKU OBAT) COA.168039,28399000 +What is the hs code for CETYL PALMITATE PELLETS CAR (BHN BAKU OBAT) COA 166673,28399000 +What is the hs code for SUPPOCIRE BM PELLETS (BHN BAKU OBAT) COA 18E0405,28399000 +What is the hs code for SUPPOCIRE AM PELLETS (BHN BAKU OBAT) COA 18E0403,28399000 +What is the hs code for TRANSCUTOL P (BHN BAKU OBAT) COA 166850,28399000 +What is the hs code for SUPPOCIRE A PELLETS (BHN BAKU OBAT) COA 18E0504,28399000 +What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA.201700284,28183000 +What is the hs code for ETHOCEL STANDARD 20 PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D184F43021,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180HBO002,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180HBO002,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180HBP002,39123900 +What is the hs code for METHOCEL K4M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180H58001,39123900 +What is the hs code for METHOCEL K15M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D0180H4B002,39123900 +What is the hs code for METHOCEL K15M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180H5K002,39123900 +What is the hs code for METHOCEL K15M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180H5N001,39123900 +What is the hs code for METHOCEL E50 PREMIUM LV ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011H24L01,39123900 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180125,17029019 +What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA. 20180202,17023010 +What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA. 20180205,11081200 +What is the hs code for VIRGIN SWEET ALMOND OIL CONFORM TO THE EUR ( BHN BAKU KOSMETIK) COA 0000020843,39139090 +What is the hs code for VIRGIN OLIVE OIL CONFORM TO THE EUR PH (BHN BAKU KOSMETIK) COA 0000020394,38249999 +"What is the hs code for NIACINAMIDE PC ,25KG BOX (BHN BAKU KOSMETIK) COA 0000170011,21,687",29362900 +What is the hs code for GLICLAZIDE (BHN BAKU OBAT) COA 1740001442,29359000 +What is the hs code for NYSTATIN (BHN BAKU OBAT) COA.C114132,29419000 +What is the hs code for NOREPINEPHRINE BITARTRATE (BHN BAKU OBAT) COA 420104,29379010 +What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 201700284,28183000 +What is the hs code for IONOL CP (BHN BAKU KOSMETIK) COA 01134317,29420000 +What is the hs code for VALERIAN D.H.E >0.8PCT (BAHAN BAKU SUPLEMEN) COA 10465/M1,13021990 +What is the hs code for HAWTHORN DRY EXTRACT >1.8PCT (BAHAN BAKU SUPLEMEN) COA 10431/M1,13021990 +What is the hs code for PASSION FLOWER D.H.E > 4PC0T (BAHAN BAKU SUPPLEMEN) COA 09798/M1,13021990 +What is the hs code for BUTCHERBROOM DRY HYDR.EX 9-11PCT (BAHAN BAKU SUPPLEMEN) COA 10438/M1,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10219/M1,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10508/M1,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10509/M1,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10510/M1,13021990 +What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 10499/M1,38249999 +What is the hs code for SILYMARIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 10462/M1,38249999 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708160080, SAMPLE NO COMMERCIAL VALUE",29189900 +What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT17120017,29362100 +"What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT17120016,17",29362100 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01709545,9562,801643",29362700 +What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) COA 7766001,38249999 +What is the hs code for SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK)COA OSLP-022418,39139090 +"What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-00918, HMVBD-062017",39139090 +"What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-033107, 042217",39139090 +What is the hs code for SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK) COA U180222,39139090 +What is the hs code for LINEN OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA LIU180101-H,39139090 +What is the hs code for LAVENDER ESSENSIAL OIL (FRANCE/MAILLETTE) (BHN BAKU KOSMETIK)COA LAM180201-IL,38249999 +What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA180203,39139090 +What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA180102,39139090 +What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 171058,13021990 +What is the hs code for NEEM LEAF LIQUID B (BHN BAKU KOSMETIK) COA 172789,13021990 +What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 172513,38249999 +What is the hs code for CLAIRJU (BHN BAKU KOSMETIK) COA 172567,13021990 +What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 172071,13021990 +What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETI) COA 172645,38249999 +What is the hs code for ALPINAWHITE (BHN BAKU KOSMETIK) COA 172512,13021990 +"What is the hs code for VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU MAKANAN) COA HPB1711138",29362700 +"What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1802032 S/D 34, 36 S/D42",29224900 +What is the hs code for CLONIDINE HCL (BHN BAKU OBAT) COA 180839,29332900 +"What is the hs code for PANTOPRAZOLE SODIUM (STERILE) BHN BAKU OBAT, COA SI/PPZ/00090118",29333990 +What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121808520,28363000 +What is the hs code for PF.ANTI SHINE WASH (BHN BAKU KOSMETIK)COA 10300110,38249999 +What is the hs code for CLOMIPHENE CITRATE USP/EP (BHN BAKU OBAT ) COA 201706240002,29221990 +What is the hs code for CLOPIDOGREL BISULFATE USP(BHN BAKU OBAT) COA Q300600,29349990 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101854517A533,17021100 +What is the hs code for CELLACTOSE (R) 80 (BHN BAKU OBAT) COA L100464617A535,17021100 +What is the hs code for GRANULAC (R) 70 (BHN BAKU OBAT) COA L101845017A545,17021100 +What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104315117A552,17021100 +What is the hs code for FLOWLAC (R) 90 (BHN BAKU OBAT) COA L101534717A535,17021100 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602840,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602839,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602836,38249999 +What is the hs code for P GINSENG DRY EXTRACT/ IDB (BHN BAKU SUPLEMEN) COA 32190/M1,13021990 +What is the hs code for VACCINIUM MYRTILLUS DRY EX (BHN BAKU SUPLEMEN) COA 32501/M1,13021990 +What is the hs code for ECHINACEA ANG DRY PURIF EX (BHN BAKU SUPLEMEN) COA 32226/M1,13021990 +What is the hs code for SERENOA REPENS PURIFIED EXT (BHN BAKU SUPLEMEN) COA 32455/B/1,38249999 +What is the hs code for CENTELLA ASIATICA TRITERP (BHN BAKU SUPLEMEN) COA 32529/M1,38249999 +What is the hs code for CENTELLA ASIATICA /PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 31730/H1,38249999 +What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 32529/M1,38249999 +"What is the hs code for MIRTOGENOL (R) BHN BAKU SUPLEMEN, COA 80343/M",38249999 +What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5497417,39139090 +What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5497417,39139090 +What is the hs code for AMISOL TRIO (BHN BAKU KOSMETIK) COA 1717614,39139090 +What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829015555H,39139090 +"What is the hs code for CAPIXYL (BHN BAKU KOSMETIK), COA 830015925H",39139090 +"What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK), COA 769015525H",39139090 +What is the hs code for EXO H (BHN BAKU KOSMETIK) COA 715025820H,39139090 +What is the hs code for LANABLUE (BHN BAKU KOSMETIK) COA 5533018,39139090 +What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015372H,39139090 +What is the hs code for SILIGEL TM (BHN BAKU KOSMETIK) COA 1732901,39139090 +What is the hs code for TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784025908H,39139090 +What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830015769H,39139090 +What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769015578H,39139090 +What is the hs code for HELIOGEL TM (BHN BAKU KOSMETIK) COA 1732101,39139090 +What is the hs code for LANABLUE (BHN BAKU KOSMETIK) COA 5533018,39139090 +What is the hs code for LUBRIPHARM (R) SSF NF/JP SODIUM STEARYL FUMARATE (BHN BAKU OBAT) COA 121707690,28161000 +"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218010005",29420000 +What is the hs code for DL PANTHENOL 50L (BHN BAKU KOSMETIK) COA TL01706630,29362400 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518010031,32",29420000 +What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00511322,29420000 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO)(BHN BAKU KOSMETIK) COA UT17070761,29420000 +What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180033 S/D 36,29420000 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT17090164,29362100 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180036,37,38",29420000 +What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001461085,29420000 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0518010031,29420000 +"What is the hs code for PARSOL MCX ,200KG PLASTIC DRUM(BHN BAKUMKOSMETIK) COA 0518010031",29420000 +"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT17110248,254",29362800 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0317111726,728 S/D 732",29420000 +What is the hs code for PARSOL HS (BHN BAKU KOSMETIK) COA 0709160052,29420000 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01709083,29362400 +"What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU OBAT) COA 201700426, SAMPLE NO COMMERCIAL VALUE",28183000 +"What is the hs code for KF-6038 (BHN BAKU KOSMETIK) , COA 802192",38249999 +"What is the hs code for KF-96A-6CS (16KG) BHN BAKU KOSMETIK, COA 802944",38249999 +What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-0420218,29334910 +What is the hs code for SURELEASE ETHYLCELLULOSE ( BHN BAKU OBAT UTK PEWARNA TABLET) COA IN536166,32151900 +What is the hs code for ASTABIO ARV-S (BHN BAKU OBAT) COA.1711211K,32030010 +What is the hs code for EPA DHA 44 37 (BHN SUPLEMEN KESEHATAN) COA EE4437-180226,29061300 +What is the hs code for KAHLWAX 2956 (BHN BAKU KOSMETIK) COA F1807055-001,15211000 +"What is the hs code for SK BIOLAND BIO SODIUM HYALURONATE POWDER (MMW) (B. BAKU KOSMETIK)COA CHP2171025,1180221, 227",39139090 +"What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-132607, OHA-022328",39139090 +What is the hs code for SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-022418,39139090 +What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK)COA NMP-L-893107,39139090 +What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-012218,39139090 +"What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-092717, 010528",39139090 +What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-021127,39139090 +What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK)COA ARP-1110597,39139090 +What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-022017,39139090 +What is the hs code for SK BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSFAC-021617,39139090 +What is the hs code for SK BIOLAND GRAPE SEED EXTRACT(BHN BAKU KOSMETIK) COA GSC-K-012518,39139090 +"What is the hs code for CENTELLA ASIATICA EXTRACT ( BHN BAKU KOSMETIK), COA GKP 17084 EOU",38249999 +What is the hs code for CYANACOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPLEMEN KESEHATAN) COA.1705724344,29362600 +What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 17111307,38029090 +What is the hs code for ALLOPURINOL BP (BHN BAKU OBAT) COA ALP0010218,29335990 +What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BIO1207,29349990 +"What is the hs code for RANITIDINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA RH193 02 18, 194 02 18...",29321900 +What is the hs code for DRY VITAMIN E 50PCT SD (BHN BAKU SUPLEMEN) COA WB08170239,29362800 +"What is the hs code for CAROCARE NAT BC 20PCT CWS/S-TG, 10KG BAG (BHN BAKU SUPLEMEN) COA EW19022001",29362500 +What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110003,32041900 +What is the hs code for GENIVIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010017,29329990 +"What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX ALU (BHN BAKU SUPLEMEN) COA WB01217437",29362700 +"What is the hs code for DRY VITAMIN E 50PCT SD, 15KG BOXALU (BHN BAKU SUPLEMEN) COA WB08170238,239",29362800 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17070052,29362100 +"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17070052,53",29362100 +"What is the hs code for DRY VITAMIN E 50PCT SD, 15KGBOXALU (BHN BAKU SUPLEMEN) COA WB08170239",29362800 +"What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0020663",29420000 +What is the hs code for OLIO VINACCIOLI RAFFINATO (BHN BAKU OBAT) COA.B1800050,15152919 +What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0417070100,29420000 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180225,17029019 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ70613155,29362500 +What is the hs code for D PANTHENOL (BHN BAKU KOSMETIK) COA TL01709083,29362400 +"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91802205,206,207",29420000 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT17090061,29362800 +What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OPI1710005,29362900 +What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01703810,29362400 +What is the hs code for ETHYL PANTHENOL 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01703810,29362400 +What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA,39139090 +What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA,39139090 +What is the hs code for PROMOIS KR-30 (BHN BAKU KOSMETIK) COA,38249999 +What is the hs code for VISTANOL GDHR (BHN BAKU KOSMETIK) COA,39139090 +What is the hs code for ETHOCEL STANDARD 20 PREMIUM (BHN BAKU OBAT UTK PEWARNA TABLET) COA D184HC1021,39123900 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602857,39061090 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602802,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602843,38249999 +What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602842,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602855,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602856,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602858,38249999 +What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602844,38249999 +What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602887,38249999 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602857,39061090 +What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602853,38249999 +What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602847,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602860,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602852,38249999 +What is the hs code for OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602886,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601630,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602859,38249999 +What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602841,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602833,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602846,38249999 +What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602854,38249999 +"What is the hs code for CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 017.629",90189090 +"What is the hs code for CANNULA 25G PIX'L 0,5 X40 (BHN BAKU OBAT) COA 017.615",90189090 +"What is the hs code for CANNULA 27G PIX'L 0,4X40 (BHN BAKU OBAT) COA 016,661",90189090 +What is the hs code for RESTYLANE SUBQ 2ML D16 (BHN BAKU OBAT) COA 15351-1,90189090 +What is the hs code for RESTYLANE SKINB VITLIDO 1MLD16 (BHN BAKU OBAT) COA 15616-2,90189090 +What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML (BHN BAKU OBAT) COA 15713-2,90189090 +What is the hs code for RESTYLANE DEFYNE 1ML (BHN BAKU OBAT) COA 15613-1,90189090 +"What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA.201800078, 51",28183000 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP18013291, 292",29211900 +What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702625877,29372900 +What is the hs code for TETRACYCLINE HYDROCHLORIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 180202-61,29413000 +"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP 5300 (BHN BAKU OBAT) COA 101769010,1769014",28161000 +"What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334541, 45,46, 47",29419000 +"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7324913",38210010 +"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7242852",38210010 +What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009829,38210010 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7325792,38210010 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7324913,38210010 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7193661,38210010 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7340723,38210010 +"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 7312572",38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242852,38210010 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7250997,38210010 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7018890,38210010 +What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7291775,38210010 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7235794,38210010 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7198804,38210010 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7325793,38210010 +"What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7297545",38210010 +"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7142625,730565",38210010 +What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7193991,38210010 +What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7324657.,38210010 +"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7306543,7321586",38210010 +What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 715167428,38210010 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7283691,38210010 +"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7297693,8011939",38210010 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7312538,38210010 +What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7283675,38210010 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7325764,38210010 +What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7339618,38210010 +What is the hs code for KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7299963,38210010 +"What is the hs code for PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8022543",38210010 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8022544,38210010 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8022544,38210010 +What is the hs code for PLATE TSA W LP IC-XT PACK 90MM 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8022543,38210010 +What is the hs code for PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8022543,38210010 +What is the hs code for BOTTLE BUFFERED PEPTONE WAT 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7332733,38210010 +What is the hs code for BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7317688,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7349600,38210010 +What is the hs code for PAIL BAIRD PARKER AGAR BASE 2KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7325760,38210010 +What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7317819,38210010 +What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7276846,38210010 +What is the hs code for BOTTLE D-MANNOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7135976,38210010 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7276777,38210010 +What is the hs code for BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7220787,38210010 +What is the hs code for BOTTLE EE BROTH MOSSEL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7143744,38210010 +What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7297698,38210010 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7198543,38210010 +What is the hs code for BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7142616,38210010 +What is the hs code for BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6278861,38210010 +What is the hs code for BOTTLE TRYPTICASE SOY BROTH STERILE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6271694,38210010 +What is the hs code for BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7363785,38210010 +What is the hs code for BOTTLE MICRO INOCULUM BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6342747,38210010 +What is the hs code for BOTTLE MYCOPLASMA BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7306938,38210010 +What is the hs code for BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7153524,38210010 +What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7220793,38210010 +What is the hs code for BOTTLE PSEUDOMONAS AGAR F 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7177860,38210010 +What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7153977,38210010 +What is the hs code for BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7156779,38210010 +What is the hs code for BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7291693,38210010 +What is the hs code for BOTTLE SALICIN 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8032973,38210010 +What is the hs code for BOTTLE STOCK CULTURE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242925,38210010 +What is the hs code for BOTTLE TRYPTICASE SOY BROTH STERILE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 62716947,38210010 +What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7296858,38210010 +"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7129691,802485",38210010 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7340723,38210010 +What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7339766,38210010 +What is the hs code for TUBE CRYSTAL E/ ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7335881,38210010 +What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7339624,38210010 +What is the hs code for BOTTLE TRYPTICASE SOY BROTH STERIL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6271694,38210010 +What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8010924,38210010 +What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8045999953,38210010 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8031785,38210010 +What is the hs code for PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8022543,38210010 +What is the hs code for KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7299963,38210010 +What is the hs code for BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8037783,38210010 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8022544,38210010 +What is the hs code for PLATE TSA IC XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7339579,38210010 +What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7338553,38210010 +What is the hs code for BOTTLE BEEF EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7296821,38210010 +What is the hs code for BOTTLE PROTEOSE PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8009830,38210010 +What is the hs code for PAIL CASAMINO ACIDS TECHNICAL 10KG (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7114555,38210010 +What is the hs code for BOTTLE GRAM IODINE STABILIZED 250ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7340980,38210010 +What is the hs code for BOTTLE CELLOBIOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8023615,38210010 +What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB01217203,29362100 +What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20171201,29362800 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01801643,1667,1756",29362700 +What is the hs code for MEG 3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT17090053,29362500 +"What is the hs code for DL-PANTHENOL 50L, 1000 KG IBC (BHN BAKU KOSMETIK) COA TL01801601",29362400 +"What is the hs code for ETHYL PANTHENOL, 1000KG IBC (BHN BAKU MAKANAN) COA TL01710816,817",29362400 +"What is the hs code for PLASTIBASE 55W (BAHAN BAKU OBAT) COA.106788, SAMPLE NO COMMERCIAL VALUE",27129090 +What is the hs code for DAMIANA EXTRACT (BHN BAKU OBAT) COA BNPD180201,39139090 +"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA ROA056184, ROA057187",28363000 +"What is the hs code for PEG 400 (POLYETHYLENE GLYCOL) BAHAN BAKU KOSMETIK) COA.AKW0005174,5133,5043",38249999 +What is the hs code for CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA. 1GC01CLB ZP48D 250MT,38249999 +What is the hs code for LIQUORICE LC (BHN BAKU KOSMETIK) COA.110036/P74489-P74492,13021920 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN536075,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN536519,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN536097,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN536090,35051010 +What is the hs code for ASTABIO ARV-S (BHN BAKU OBAT) COA.1711211K,32030010 +What is the hs code for METHYL SULFONYL METHANE USP (BHN BAKU OBAT) COA 18021401,29309090 +What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20180216,29309090 +What is the hs code for GLUCOSAMINE HCL (BHN BAKU OBAT) COA JST20180128,29329990 +"What is the hs code for IRBESARTAN (BHN BAKU OBAT) COA C5465-17-036, C5465-17-044,045",29332900 +What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 1802026,29349990 +"What is the hs code for INOSITOL (BHN BAKU OBAT) COA 201712147,48",29061300 +What is the hs code for INOSITOL (BHN BAKU OBAT) COA 201712128,29061300 +What is the hs code for FIBRE DRUM (DRUM KOSONG),48192000 +What is the hs code for TETRACYCLINE HYDROCHLORIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 180202-61,29413000 +What is the hs code for CYTOFIX/CYTOPERM W/GOLGI STOP KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7346857,38210010 +What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7227994,38210010 +What is the hs code for BOTTLE GRAM SAFRANIN 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7347668,38210010 +What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7340813,38210010 +"What is the hs code for VIAL B. PERTUSSIS ANTISERUM 1MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8045548",38210010 +"What is the hs code for KIT CRYSTAL GP ID EXPORT ONL (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8010945",38210010 +What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7291650,38210010 +What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7347753,38210010 +What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7289995,38210010 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7146880,38210010 +What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8031555,38210010 +"What is the hs code for CD3 FITC SK7 50 TESTS IVD (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 8011762",38210010 +What is the hs code for STAIN BUFFER FBS 500ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7342968,38210010 +What is the hs code for LYSING BUFFER 10X CONCENTRATE 100ML (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7346596,38210010 +What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7235889,38210010 +What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8026653,38210010 +What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8016851,38210010 +What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8044954,38210010 +What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8026870,38210010 +"What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7220771",38210010 +What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7333763,38210010 +What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7345542,38210010 +What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8044550,38210010 +What is the hs code for CD34 PERCP CY5.5 8G12 50 TESTS G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8043794,38210010 +What is the hs code for CYTOFIX /CYTOPERM SOLN KIT(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7346888,38210010 +What is the hs code for HU CD183 PE-CY7 1C6/CXCR3 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7188713,38210010 +What is the hs code for CD4 APC SK3 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7030773,38210010 +What is the hs code for CD4 PERCP SK3 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6285891,38210010 +What is the hs code for HU IL 4 APC MP4-25D2 100UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7286765,38210010 +What is the hs code for HU CD25 FITC M-A251 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7019546,38210010 +What is the hs code for HU FOXP3 ALEXA 647 259D/C7 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7177697,38210010 +What is the hs code for HU IL-17A PE N49-653 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8004580,38210010 +"What is the hs code for CD20 FITC L27 100TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7303974",38210010 +What is the hs code for HU CD64 APC H7 10.1 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7306651,38210010 +What is the hs code for HU CD36 HORIZON V450 CB38 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7251514,38210010 +What is the hs code for HU CD7 APC M-T701 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7144949,38210010 +What is the hs code for HU CD3 BV421 UCHT1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8036773,38210010 +What is the hs code for HU CD10 BV421 HI10A 100TST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7040983,38210010 +What is the hs code for HU CD138 BV421 MI15 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7341707,38210010 +What is the hs code for HU CD19 BV510 SJ25C1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7292805,38210010 +What is the hs code for HU CD14 BV421 MPHIP9 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7145789,38210010 +What is the hs code for CD43 APCH7 (1G10) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7181820,38210010 +What is the hs code for HU CD103 BV421 BER-ACT8 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6266926,38210010 +What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7324962,38210010 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8010945,38210010 +What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7291650,38210010 +What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7354964,38210010 +What is the hs code for BOTTLE LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7220822,38210010 +What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7060799,38210010 +What is the hs code for TUBE PENASE CONCENTRATE 10X20MI (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7340551,38210010 +What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7220790,38210010 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6309655,38210010 +What is the hs code for HU CD30 PE BERH8 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7272949,38210010 +What is the hs code for CD4 APC SK3 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7318894,38210010 +What is the hs code for FASTIMMUNE HU IFN-GMA FITC 25723 11 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7116967,38210010 +"What is the hs code for FASTIMMUNE HU IL 2 FITC 5344,111 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7307569",38210010 +What is the hs code for CD4 V4 FITC L120 50 YESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7108877,38210010 +What is the hs code for CD10 APC HI10A 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7348976,38210010 +What is the hs code for CD11B APC D12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8040948,38210010 +What is the hs code for CD56 APC NCAM16.2 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7346929,38210010 +What is the hs code for CD10 PE CY7 HI10A 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8024781,38210010 +What is the hs code for ANTI KAPPA FITC/ANTI LAMBDA PE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8023901,38210010 +What is the hs code for CD20 V500-C RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7296977,38210010 +What is the hs code for CD200 APC (MRC OX-104) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8032634,38210010 +What is the hs code for CD23 FITC EBVCS-5 RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8038570,38210010 +What is the hs code for CD38 APC-H7 (HB7) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8046672,38210010 +What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP A (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6239952,38210010 +What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP C (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7335666,38210010 +What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP W135 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6267761,38210010 +What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP Y 1MI(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7117785,38210010 +What is the hs code for VIAL SAL O MENINGITIDIS POLY A (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7272548,38210010 +What is the hs code for VIAL BIBRIO CHOLERAE ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6309655,38210010 +"What is the hs code for HU FOXP3 BUFFER SET 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7222681,7303573",38210010 +What is the hs code for VITASMOOTH (R) 041 (BHN BAKU OBAT) COA.121708222,28365010 +"What is the hs code for EFFERSODA (R) 12 BHN BAKU OBAT, COA 121808483",28363000 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121808399, 121808400",28363000 +"What is the hs code for EFFERSODA (R) 12 BHN BAKU OBAT, COA 121708249,121808399",28363000 +What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA.M110433,29339990 +"What is the hs code for KP-550 (BHN BAKU KOSMETIK) , COA 801087, SAMPLE NO COMMERCIAL VALUE",38249999 +"What is the hs code for X-21-5666 (BHN BAKU KOSMETIK) , COA 707038, SAMPLE NO COMMERCIAL VALUE",38249999 +What is the hs code for OPADRY ORANGE (BAHAN BAKU UNTUK PEWARNA TABLET) COA. GA636230,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA636231,38249999 +"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 1802EF8411",29224900 +What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA. 20180225,17023010 +What is the hs code for CITRIC ACID MONOHYDRATE BP2009/E330 8-40 MESH(BHN BAKU SUPLEMEN) COA 2AX1802040,29181400 +What is the hs code for NATURAL SOURCE MIXED TOCOPHEROLS (BHN BAKU KOSMETIK) COA 180111M001,29362800 +What is the hs code for CITRIC ACID MONOHYDRATE BP2009/E330 8-40 MESH(BHN BAKU SUPLEMEN) COA 1MT1802535,29181400 +What is the hs code for CITRIC ACID MONOHYDRATE BP2009/E330 8-40 MESH(BHN BAKU SUPLEMEN) COA 2AX1802012,29181400 +What is the hs code for ALPINIAWHITE (BHN BAKU KOSMETIK) COA 173199,13021950 +What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 173046,29329990 +What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 172434,38249999 +What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 172964,13021950 +What is the hs code for CINDERELLACARE (BHN BAKU KOSMETIK) COA 172128,13021950 +What is the hs code for IZAYOI (BHN BAKU KOSMETI) COA 172648,13021950 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP06218,28363000 +What is the hs code for CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB01217057,29362700 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT17110079,29362800 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17070024,29362900 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70803300,29362200 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17050034,32041900 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT17090165",29362100 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17050034,32041900 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01704011,29362900 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT17110004,29362900 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17070225,29362400 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01709533",29362700 +"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ71110181, 182",29362300 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17070024,29362900 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01710073,32041900 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17090165,29362100 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17110233,29362800 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17050034,32041900 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17070225,29362400 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ70910171,29362300 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT17090165,29362100 +"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ70910172, UQ71110181",29362300 +"What is the hs code for ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL0179533",29362700 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT17110079,29362800 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17070024,29362900 +"What is the hs code for DL-A-TOCOPHERYL ACETATE ( BHN BAKU SUPLEMEN), COA UT17110233",29362800 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01710073,32041900 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT17090165,29362100 +What is the hs code for B CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17050034,32041900 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17110233,29362800 +"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01707060,10072",32041900 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17070024,29362900 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17110233,29362800 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT17090165,29362100 +What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70706164,29362700 +What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL01708070,29362400 +"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN), COA UT17080054",29362100 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17090165,29362100 +What is the hs code for CANTHAXANTHIN 10PCT CWS/S (BHN BAKU MAKANAN) COA UT17040004,32041900 +What is the hs code for ASCORBIC ACID 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01709533,29362700 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01705010,29362900 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT17110004,29362900 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11710005,29362900 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17080255,29362400 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17050034,32041900 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17080255,29362400 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1710005,29362900 +"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417064,65",29362900 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO),BHN BAKU SUPLEMEN, COA UT17080762,63,64",29362100 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT17080054,29362100 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)BHN BAKU SUPLEMEN, COA UT17090165",29362100 +"What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334549,43,37",29419000 +What is the hs code for METHISOPRINOL (BHN BAKU OBAT) COA.MTP8020089,29349990 +"What is the hs code for CLOPIDOGREL BISULFATE (BHN BAKU OBAT) COA AALH003210,2207,3317...",29349990 +What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA P-63,29397900 +"What is the hs code for VC SODIUM ASCORBATE REGULAR, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPN1712158,61",29362700 +"What is the hs code for VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPB1712113",29362700 +What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH180202-ENBIO,39139090 +What is the hs code for ARGAN VIRGIN COLD PRESSED DEODORISED... (BHN BAKU KOSMETIK)COA ARHVD171105-SICBIO,38249999 +What is the hs code for LOTUS OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA NEN180202-H,39139090 +What is the hs code for ROSE OILY EXTRACT (BHN BAKU KOSMETIK)COA ROS180101-H,39139090 +What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-180101,39139090 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI17100009,29362900 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01709533",29362700 +What is the hs code for CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB01217057,29362700 +"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01712820,22",29362400 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70803300,29362200 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70803301,29362200 +"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70803300, 3301",29362200 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01709533",29362700 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT17110079,29362800 +What is the hs code for CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB01217057,29362700 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01710073,32041900 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01710073,32041900 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01710073,32041900 +"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01710072,73",32041900 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70803301,29362200 +What is the hs code for PX 103070-C3 (BHN BAKU MAKANAN) COA XW91712168,21069059 +What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91802065,21069059 +What is the hs code for DWI BI (BHN BAKU MAKANAN) COA XW91802004,21069059 +What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91801288,21069059 +What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91801291,21069059 +What is the hs code for DWI BI (BHN BAKU MAKANAN) COA XW91802004,21069059 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17120040,29362600 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17120040,29362600 +What is the hs code for METHOCEL K100M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180H9G011,39123900 +What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180HAF033,39123900 +What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180HAF002,39123900 +What is the hs code for METHOCEL K4M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180H5D004,39123900 +What is the hs code for METHOCEL K4M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D0180GCR003,39123900 +What is the hs code for METHOCEL E15 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D011H8IL03,39123900 +What is the hs code for O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 112917/005062,38249999 +What is the hs code for SUPPOCIRE BM PELLETS (BHN BAKU OBAT) COA 18E0405,28399000 +What is the hs code for GELLUCIRE 44/14 (BHN BAKU OBAT) COA 168325,28399000 +What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA 168325,28399000 +What is the hs code for FASTIMMUNE CD8 INTCELAR IFN N-GMA DTEC KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH7313842,38210010 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8051824,38210010 +What is the hs code for BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8053758,38210010 +"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8031750,8051824",38210010 +What is the hs code for PUROLAN E 171 (BHN BAKU KOSMETIK) COA 5636115,38249999 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01801756,2876,2897",29362700 +"What is the hs code for PURIDROX TM COMPACTED, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B339954,60,63,64,65",29419000 +"What is the hs code for CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 20180317",38249999 +What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK COA B090218,39123900 +"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB060218",39123900 +"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG301017",39123900 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603386,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603391,38249999 +What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603403,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603317,38249999 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603413,39061090 +What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601324,38249999 +What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603412,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603387,38249999 +What is the hs code for OPADRY AMB I WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603129,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601630,38249999 +What is the hs code for OPADRY AMB GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603396,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603406,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603405,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603392,38249999 +What is the hs code for OPADRY AMB BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603407,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603397,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603410,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603399,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603411,38249999 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603398,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603400,38249999 +What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603468,32151900 +What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603468,32151900 +What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603468,32151900 +"What is the hs code for VC CALCIUM ASCORBATE DC, 25KG BAL (BHN BAKU SUPLEMEN) , COA HPT1801019",29362700 +What is the hs code for CALCIUM GLUCONATE EP (BHN BAKU OBAT) COA CGA-EP1802017,29181600 +What is the hs code for AMIKACIN SULFATE (BHN BAKU OBAT) COA 7H0313H20,29419000 +What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-171202,29397900 +"What is the hs code for CITICOLINE SODIUM (BHN BAKU OBAT), COA 171101",29349990 +What is the hs code for DOXYCYCLINE HYDROCHLORIDE (BHN BAKU OBAT) COA DX180204004,29413000 +What is the hs code for INSTANT BLACK TEA POWDER TH B430 (BHN BAKU MAKANAN) COA 2018022401,9022010 +"What is the hs code for MEG-3 '30' N-3 INF OIL, 4,5KG PJUG (BHN BAKU SUPLEMEN) COA.TS00009740",29362500 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP18023040,41",29211900 +What is the hs code for CLOTRIMAZOLE MICRONIZED (BHN BAKU OBAT ) COA 201708010020,29332900 +What is the hs code for CEFOTAXIME SODIUM EP (BHN BAKU OBAT) COA Q900500,29419000 +What is the hs code for METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT (BHN BAKU OBAT) COA. NX2695,29372900 +What is the hs code for LIDOCAINE BASE (BHN BAKU OBAT) COA. 186187,29242990 +"What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK)COA ARP-160628, ARP-222028",39139090 +What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-1110597,39139090 +What is the hs code for SK BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK) COA CPG-1012627,39139090 +What is the hs code for SK BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK)COA KFB-L-030827,39139090 +What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 2018B1010,39139090 +"What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-011918, 022228",39139090 +What is the hs code for SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK) COA U180222,39139090 +What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-021127,39139090 +What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-022017,39139090 +What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-893107,39139090 +What is the hs code for SK BIOLAND CAMELLIA JAPONICA SEED OIL(BHN BAKU KOSMETIK) COA CJSO-022628,38249999 +"What is the hs code for VC SODIUM ASCORBATE REGULAR, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPN1802094",29362700 +What is the hs code for HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 2752724,38249999 +What is the hs code for RYBOXYL TM (BHN BAKU KOSMETIK) COA Q0566501,39139090 +What is the hs code for CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785016095J,39139090 +What is the hs code for CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785015905J,39139090 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1800201,39139090 +"What is the hs code for MATIPURE TM OIL FREE (BHN BAKU KOSMETIK), COA 1732002",38249999 +"What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK), COA 828016098J",39139090 +What is the hs code for LANACHRYS (DISC) (BHN BAKU KOSMETIK) COA 793024744G,39139090 +What is the hs code for PRO LIPO TM NEO (BHN BAKU KOSMETIK) COA 1803101,39139090 +What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 82901571H,39139090 +What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830015981J,39139090 +What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769015926J,39139090 +What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5541818,38249999 +What is the hs code for TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784025908H,39139090 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0703160006,29420000 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0703160006,29420000 +What is the hs code for PARSOL HS (BHN BAKU KOSMETIK) COA 0709160067,29420000 +"What is the hs code for STAY C @50 ,20KG BOX NA (BHN BAKU KOSMETIK) COA UT17090154,155",29362700 +"What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01703810",29362400 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP07118,28363000 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180227,17029019 +What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 171058,13021990 +What is the hs code for BARCROFT TM AL HYD GEL VISCO-9 USP (BHN BAKU OBAT) COA 101702042,28183000 +"What is the hs code for AMBROXOL HYDROCHLORIDE POWDER (BHN BAKU OBAT) COA AHM/18003,18035",29221990 +What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603762,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603113,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603763,38249999 +What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603856,32151900 +What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603856,32151900 +What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603856,32151900 +What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603869,39061090 +"What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA.LC 049-7-801, 050-7-801, 051-7-801",17021100 +"What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA.08720318, 08710318,...",29359000 +"What is the hs code for SULPHAMETHOXAZOLE BP MICRONISED (BHN BAKU OBAT) COA 08760318, 08770318...",29359000 +"What is the hs code for SENSIVA SC 50 CN 10KG KA (BHN BAKU KOSMETIK) COA 1341529,1500432",38249999 +"What is the hs code for GROTANOL 3025 CN 10KG KA (BHN BAKU KOSMETIK) COA 1340232,1501870",38249999 +"What is the hs code for EUXYL K 100 CN 10KG KA (BHN BAKU KOSMETIK) COA 1500429,1504890,1505113",38249999 +"What is the hs code for EUXYL PE 9010 CN 200KG FA (BHN BAKU KOSMETIK) COA 1500517, 1504229",38249999 +"What is the hs code for EUXYL PE 9010 CN 10KG KA (BHN BAKU KOSMETIK) COA 1503895,1504622,1505152",38249999 +What is the hs code for EUXYL K 300 10KG KA (BHN BAKU KOSMETIK) COA 1335976,38249999 +What is the hs code for EUXYL K 900 CN 10KG KA (BHN BAKU KOSMETIK) COA 1505836,38249999 +"What is the hs code for EUXYL K 100 SAMPLE(S) 100 ML FL (B.BAKU KOSMETIK) COA 1333305,SAMPLE FREE OF CHARGE",38249999 +"What is the hs code for EUXYL K 120 100ML FL (BHN BAKU KOSMETIK) COA 1333306, SAMPLE FREE OF CHARGE",38249999 +"What is the hs code for EUXYL K 712 100ML FL (BHN BAKU KOSMETIK) COA 1340274,1500578",38249999 +"What is the hs code for EUXIL PE 9010 SAMPLE(S) 100 ML FL (BHN BAKU KOSMETIK) COA 1340276 , SAMPLE FREE OF CHARGE",38249999 +What is the hs code for SENSIVA SC 50 SAMPLE(S) 100 ML FL (BHN BAKU KOSMETIK) COA 1337764 SAMPLE(S) FREE OF CHARGE,38249999 +What is the hs code for SENSIDIN DO 100ML FL (BHN BAKU KOSMETIK) COA 1335611 SAMPLE FREE OF CHARGE,38249999 +"What is the hs code for ROVIMIX C-EC, 25KG BOX/ALU (BHN BAKU OBAT UTK PAKAN TERNAK) COA TL01708312",29362700 +What is the hs code for CAROPHYLL YELLOW 10PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA UE01709532,32041900 +"What is the hs code for PANTOPROZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT,COA APSS17005",29333990 +"What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M529770,772,773",29411019 +What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX POWDER (BHN BAKU OBAT) COA M483637,29411019 +"What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M595751,M595754",29411019 +What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M529771,29411019 +"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK,COA 01/17GL4",28399000 +"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK,COA 01/17-GL4 ,SAMPLE NO COMMERCIAL VALUE",28399000 +What is the hs code for LEMON SECRET (LEMON 40 BRIX) (BHN BAKU OBAT) COA 01/17GL4,28399000 +What is the hs code for LEMON SECRET (LEMON 40 BRIX) (BHN BAKU OBAT) COA 01/17GL4 SAMPLE NO COMM VALUE,28399000 +What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121808568,28363000 +What is the hs code for LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 18092,38249999 +What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU SUPLEMEN) COA UT18030084,29362100 +What is the hs code for VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18010036,29362100 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S -TG (BHN BAKU SUPLEMEN) COA UT18010002,32030010 +What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17110003,32041900 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010013,32041900 +What is the hs code for GENIVIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010017,29329990 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17110053,29362100 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010013,32041900 +What is the hs code for VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18010036,29362100 +What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0021988,38249999 +"What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA.08830318,08840318...",29359000 +What is the hs code for RANITIDINE HCL (BHN BAKU OBAT) COA RH/03/2018 0386...,29321900 +What is the hs code for KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0070118,29339990 +"What is the hs code for CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 017.629",90189090 +"What is the hs code for CANNULA 23G PIX'L 0,6 X50 (BHN BAKU OBAT) COA 018.422",90189090 +"What is the hs code for CANNULA 25G PIX'L 0,5X40 (BHN BAKU OBAT) COA 017.657",90189090 +"What is the hs code for CANNULA 25G PIX'L 0,5X40 (BHN BAKU OBAT) COA 018.405",90189090 +"What is the hs code for CANNULA 27G PIX'L 0,4X40 (BHN BAKU OBAT) COA 016.661",90189090 +What is the hs code for RESTYLANE SUBQ 2ML D16 (BHN BAKU OBAT) COA 15351-1,90189090 +What is the hs code for RESTYLANE SKINB VITLIDO 1MLD16 (BHN BAKU OBAT) COA 15616-2,90189090 +What is the hs code for RESTYLANE LIDOCAINE 1ML D16 (BHN BAKU OBAT) COA 15801-2,90189090 +What is the hs code for RESTYLANE LYFT LLIDOCAINE 1ML (BHN BAKU OBAT) COA 15755-2,90189090 +What is the hs code for RESTYLANE LYFT LIDOCAINE 1 ML (BHN BAKU OBAT) COA 15799-2,90189090 +What is the hs code for RESTYLANE DEFYNE 1ML (BHN BAKU OBAT) COA 15808-1,90189090 +What is the hs code for RESTYLANE KYSSE 1ML (BHN BAKU OBAT) COA15761-1,90189090 +What is the hs code for WITCH HAZEL PHYTLENE EG 138 (BHN BAKU KOSMETIK)COA EG138-171102,38249999 +What is the hs code for WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK)COA EG138- 170601,38249999 +What is the hs code for WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK)COA EG138 - 171102,38249999 +What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH180303-ENBIO,38249999 +What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA.201800106,28183000 +What is the hs code for TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA636683,32151900 +What is the hs code for METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180HCV002,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180HCU002,39123900 +What is the hs code for BIOTOX (R) (BHN BAKU OBAT UTK PAKAN TERNAK) COA 050418-256,23099090 +What is the hs code for E.C.O TRACE ZN 25PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC270218,29224900 +What is the hs code for E.C.O TRACE MN 20PCT (BHN BAKU UTK PAKAN TERNAK) COA BC290118,29224900 +What is the hs code for BETAPRO 300 (BHN BAKU OBAT UTK PAKAN TERNAK) COA 220318-219,23099090 +What is the hs code for OPADRY FX YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA637160,38249999 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP07418,28363000 +What is the hs code for MAGNOLIA BARK EXTRACT (BHN BAKU KOSMETIK) COA MBE05-171202,38249999 +What is the hs code for COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-1709020/35678,38249999 +What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 59090P,38249999 +"What is the hs code for PYRAZINAMIDE USP (BHN BAKU OBAT) COA PZ 212 C 18, PZ 213 C 18...",29339990 +What is the hs code for RANITIDINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA RH229 03 18...,29321900 +What is the hs code for FRAMYCETINE SULFATE (BHN BAKU OBAT) COA F1700008/02,29419000 +What is the hs code for KETOPROFEN (BHN BAKU OBAT) COA.187512,29183000 +What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA.201800091,28183000 +What is the hs code for DEXAMETHASONE ACETATE ANHYDROUS MICRONISED PH EUR USP (BHN BAKU OBAT) COA 1502103347,29372200 +What is the hs code for FLUOROMETHOLONE MICRONISED USP BP JP (BHN BAKU OBAT) COA 1701255296,29372200 +What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA P-63,29397900 +What is the hs code for MAPROTILINE HCL (BHN BAKU OBAT) COA 1750001555,29214900 +What is the hs code for P GINSENG DRY EXTRACT10PCT COL (BHN BAKU SUPLEMEN) COA 32446/M1,13021990 +What is the hs code for GINSENG DRY EXTRACT 2PCT COLOR (BAHAN BAKU SUPPLEMEN) COA 10726/M1,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10727/M1,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10399/M1,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10729/M1,13021990 +What is the hs code for LORATADINE EP (MICRONIZED) (BHN BAKU SUPLEMEN) COA LRH8092,29333990 +"What is the hs code for ACRYLPOL 980 BAHAN BAKU KOSMETIK) COA 11517068, 69",38249999 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180316,17029019 +What is the hs code for PLAISANCE P116808 (BHN BAKU KOSMETIK) COA 0000013174,33029000 +What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA.0000013176,33029000 +What is the hs code for THE MATCHA 1 P001062 (BHN BAKU KOSMETIK) COA 0000011542,33029000 +"What is the hs code for STAY C (R) 50, 20KG BOX NA (BHN BAKU KOSMETIK) COA UT17090155,160,161",29362700 +"What is the hs code for D. PANTHENOL 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01710098,12104",29362400 +What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OPI1710010,29362900 +What is the hs code for DL. PANTHENOL 50L (BHN BAKU KOSMETIK) COA TL01706630,29362400 +"What is the hs code for ETHYL PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01703810,7811,14",29362400 +What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001467727,29420000 +"What is the hs code for STAY C (R) 50 ,20KG BOX ALU (BHN BAKU KOSMETIK) COA UE01707028,29",29362700 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01705010,29362900 +"What is the hs code for PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0817030011",29420000 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0317111743",29420000 +"What is the hs code for STAY C (R) 50, 5KG BAG ALU EX US (BHN BAKU KOSMETIK) COA UT17060074",29362700 +"What is the hs code for STAY C (R) 50, 5KG ALU EX US (BHN BAKU KOSMETIK) COA UT17060074",29362700 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0317111743 S/D 751",29420000 +What is the hs code for MEG-3 3020 EE P OIL (BHN BAKU SUPLEMEN) COA.TS00009887,29362500 +"What is the hs code for NONIVAMIDE (SYNTHETIC CAPSAICIN)BHN BAKU KOSMETIK, COA.20180305",38249999 +"What is the hs code for TERPINEOL ( BHN BAKU OBAT), COA 232-268-1, SAMPLE NO COMMERCIAL VALUE",39139090 +What is the hs code for AVOCADO OIL REFINED DAC EXTRACT (BHN BAKU KOSMETIK) COA 144955,38249999 +What is the hs code for JOJOBA OIL VIRGIN LOW ODOUR (BHN BAKU KOSMETIK) COA 142876,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604085,38249999 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010013,32041900 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB01017174,29362800 +What is the hs code for VITAMIN A+ D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18020037,29362100 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB01017174,29362800 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18030017,32030010 +What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17110018,29420000 +What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17110053,29362100 +"What is the hs code for VITAMIN A AND D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18010036,37",29362100 +"What is the hs code for GENIVIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010017,22",29329990 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010013,32041900 +"What is the hs code for COATED ASCORBIC ACID TYPE EC ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01802855",29362700 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB01017174,29362800 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18030017,32030010 +What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17110018,29420000 +What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17110053,29362100 +What is the hs code for VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18020037,29362100 +"What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX ALU (BHN BAKU SUPLEMEN) COA WB01217437",29362700 +What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P8O13QA000,29420000 +What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ70407016,29420000 +What is the hs code for FDANDC BLUE #1/BRILLIANT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP794695,32151900 +What is the hs code for FDANDC BLUE #1/BRILLIANT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP794694,32151900 +What is the hs code for DANDC YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP787037,32151900 +What is the hs code for FDANDC RED #40/ALLURA RED AC AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP791916,32151900 +What is the hs code for FDANDC YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP789485,32151900 +What is the hs code for DANDC YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP787036,32151900 +What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP769011,32151900 +What is the hs code for FD AND C BLUE #1/BRILLIANT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP776213,32151900 +What is the hs code for AC019KC PHYTOVITYL C 5KG (BHN BAKU KOSMETIK) COA 0021618,38249999 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0703160010,29420000 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18010019,29362800 +"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218010005",29420000 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0703160010,29420000 +What is the hs code for DL-PANTHENOL 50L (BHN BAKU KOSMETIK) COA TL01706630,29362400 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0703160010,29420000 +"What is the hs code for DL.A.TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18010019,21",29362800 +"What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA MCS1605181",29420000 +What is the hs code for ASTABIO ARV-S (BHN BAKU OBAT) COA.1711211K,32030010 +What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702625877,29372900 +"What is the hs code for VC ASCORBIC ACID DC 97PCT, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG1712006,1712007,1801002",29362700 +What is the hs code for VISTANOL NPGC (BHN BAKU KOSMETIK) COA KCK,38249999 +What is the hs code for VISTANOL GDHR (BHN BAKU KOSMETIK) COA DKI,38249999 +What is the hs code for PROMOIS SILK-1000 (BHN BAKU KOSMETIK) COA KDM,38249999 +What is the hs code for PROMOIS S-CAQ (BHN BAKU KOSMETIK) COA KBB,38249999 +What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA KCF,38249999 +What is the hs code for MILD TALCUM MOD1 (BHN BAKU KOSMETIK)COA 10300125,38249999 +What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 17-03-18,25070000 +What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121808631,28363000 +What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M.31.0PCT (BHN BAKU OBAT) COA 101729037,28161000 +What is the hs code for NIACINAMIDE POWDER (BHN BAKU MAKANAN) COA 0000159087,29362900 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA ROA086183,28363000 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA ROA088184,28363000 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603113,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603549,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603646,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603643,38249999 +What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603649,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603637,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603633,38249999 +What is the hs code for OPADRY AMB MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603650,38249999 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603636,38249999 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603635,38249999 +What is the hs code for OPADRY GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603630,38249999 +What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603638,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603645,38249999 +What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603648,39061090 +What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603634,39061090 +What is the hs code for ACRYL EZE PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603632,39061090 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603644,38249999 +What is the hs code for OPADRY 200 PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603631,38249999 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17070024,29362900 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI17100009,29362900 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17080255,29362400 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11710008,29362900 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU MAKANAN) COA WB00417070,29362900 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01801011,32041900 +What is the hs code for DL ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17120259,29362800 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ71210205,29362300 +What is the hs code for DL ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17120259,29362800 +What is the hs code for DL A TOCOPHEROL (BHN BAKU MAKANAN) COA UT17110077,29362800 +"What is the hs code for ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01709595",29362700 +"What is the hs code for ASCORBIC ACID, 254KG BOX/ALU (BHN BAKU MAKANAN) COA TL01709595",29362700 +What is the hs code for DL A TOCOPHEROL (BHN BAKU MAKANAN) COA UT17110077,29362800 +What is the hs code for DL A TOCOPHEROL (BHN BAKU MAKANAN) COA UT17110077,29362800 +What is the hs code for DL A TOCOPHEROL (BHN BAKU MAKANAN) COA UT17110077,29362800 +What is the hs code for B CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01801010,32041900 +What is the hs code for CALCIUM D PANTOTHENATE (BHN BAKU MAKANAN) COA TL01711797,29362400 +"What is the hs code for B CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01801010, 1801011",32041900 +What is the hs code for CALCIUM D PANTOTHENATE (BHN BAKU MAKANAN) COA TL01711797,29362400 +What is the hs code for CALCIUM D PANTOTHENATE (BHN BAKU MAKANAN) COA TL01711797,29362400 +"What is the hs code for CALCIUM D PANTOTHENATE, 25KG BOXI (BHN BAKU SUPLEMEN) COA TL01711797",29362400 +What is the hs code for B CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01801010,32041900 +What is the hs code for B CAROTENE 10PCT CW/S (BHN BAKU SUPLEMEN) COA UT17110063,32041900 +What is the hs code for B CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01801011,32041900 +What is the hs code for B CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01801011,32041900 +What is the hs code for B CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17110063,32041900 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01701110,29362900 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17070024,29362900 +What is the hs code for RIBOFLAVIN UNIVERSAL GRADE (BHN BAKU SUPLEMEN) COA UQ70309009,29362300 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI17100009,29362900 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01701110,29362900 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01705010,29362900 +"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11710008,10010",29362900 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417070,29362900 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00517027,29362300 +"What is the hs code for ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01709595",29362700 +What is the hs code for D A TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20170305,29362800 +What is the hs code for DRY VITAMIN K1 5PCT SD(BHN BAKU SUPLEMEN) COA UT17110004,29362900 +"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17080068,69",29362900 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17090069,29362900 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17090069,29362900 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17090069,29362900 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17090069,29362900 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT17080068,29362900 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17080068,29362900 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17080068,29362900 +"What is the hs code for B CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01710074,83",32041900 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17080068,29362900 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT17080068,29362900 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17080068,29362900 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT17110082,29362800 +"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT17110081,82",29362800 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT17110082,29362800 +What is the hs code for DL A TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT17090061,29362800 +What is the hs code for DL A TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT17090061,29362800 +What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01705010,29362900 +What is the hs code for DL A TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT17120259,29362800 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT17110082,29362800 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602850,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602851,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603401,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603153,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603402,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603788,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603939,38249999 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603944,39061090 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603945,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603947,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604118,38249999 +What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603928,39061090 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603644,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603942,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603927,38249999 +What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91803133,21069059 +"What is the hs code for D PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01708082",29362400 +What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01708082,29362400 +What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01708082,29362400 +"What is the hs code for DL A TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT17110077,79",29362800 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL01708082",29362400 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17120062,29362100 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT17120065,29362100 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT17120062,29362100 +What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01708070,29362400 +What is the hs code for ASCORBIC ACID FINE POWDER (BHN BAKU SUPLEMEN) COA TL01611698,29362700 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11710008,29362900 +What is the hs code for DL ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17120259,29362800 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT17110082,29362800 +What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01705010,29362900 +What is the hs code for DL A TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT17120259,29362800 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70813196,29362500 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70813196,29362500 +What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91802195,21069059 +What is the hs code for PREMIX 204005 (BHN BAKU MAKANAN) COA XW91803167,21069059 +What is the hs code for SUPPOCIRE AM PELLETS (BHN BAKU OBAT) COA 18E0104,28399000 +What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 17E5106,28399000 +What is the hs code for ALUMINIUM HYDROXIDE GEL VAC 20 STERILISED (BHN BAKU OBAT UTK PAKAN TERNAK) COA.201700426,28183000 +What is the hs code for LIPOID S 67F (BHN BAKU OBAT) COA.576200-2180021/001-006 (6),29232010 +"What is the hs code for INOSITOL (BHN BAKU OBAT) COA 201801020, 201801021",29061300 +What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 1803039,29349990 +What is the hs code for ETHOCEL STANDARD 100 (BHN BAKU OBAT UTK PEWARNA TABLET) COA D184H6K021,39123900 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP04018,28363000 +What is the hs code for VIUSID AQUA ORAL SOLUTION (PAKAN IKAN BERBENTUK CAIR) COA R-1 01-21,23099090 +"What is the hs code for VIUSID AQUA APLICATIONS CATALOGUE, GOODS WITHOUT COMMERCIAL VALUE",49111010 +"What is the hs code for VIUSID AQUA PRODUCTIVITY CATALOQUE, GOODS WITHOUT COMMERCIAL VALUE",49111010 +"What is the hs code for VIUSID AQUA INGLES SHRIMP PRODUCTIVITY CATALOQUE, GOODS WITHOUT COMMERCIAL VALUE",49111010 +What is the hs code for MAGNOLIA BARK EXTRACT (BHN BAKU KOSMETIK) COA MBE05-180301/39880,38249999 +What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604395,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604269,38249999 +What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604402,38249999 +"What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA.18100227, 230",29221990 +What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 23-03-18,25070000 +"What is the hs code for BARCROFT TM AL HYD GEL VISCO 9 , USP (BHN BAKU OBAT) COA.101802002",28183000 +What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA.101823002,28161000 +What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 101823002,28161000 +What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU OBAT) COA. 201700426,28183000 +What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702605740,29372900 +What is the hs code for IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S67/18,38029090 +What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 17E5106,28399000 +What is the hs code for LEVOFLOXACIN HEMIHYDRATE (FREE ALKALINE) (BHN BAKU OBAT) COA C008-1706607,29349990 +"What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8010924",38210010 +"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7363823",38210010 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8043642,38210010 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7109945,38210010 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8068984,38210010 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8043642,38210010 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7333552,38210010 +"What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 7338553",38210010 +What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7178809,38210010 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7332733,38210010 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7363823,38210010 +"What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6228993,7251553",38210010 +What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7363844,38210010 +"What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7305888,5891",38210010 +What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060815,38210010 +"What is the hs code for PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8045524",38210010 +What is the hs code for BOTTLE L ARABINOSE 25G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8058779,38210010 +What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8079517,38210010 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7278689,38210010 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8043642,38210010 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8043642,38210010 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8037570,38210010 +"What is the hs code for PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8045524,...",38210010 +What is the hs code for PERMEABILIZING SOLUTION 2 10X 500 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7353841,38210010 +What is the hs code for SOLUTION CLEANING CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1747C509,38210010 +What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7207624,38210010 +What is the hs code for BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8037783,38210010 +What is the hs code for ASSY FSC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) SAMPLE CUSTOM DECLARATION PURPOSE ONLY,38210010 +What is the hs code for ASSY SSC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) SAMPLE CUSTOM DECLARATION PURPOSE ONLY,38210010 +What is the hs code for MATCHED SIP/FLOW CELL DRY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) SAMPLE CUSTOM DECLARATION...,38210010 +What is the hs code for PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8051624,38210010 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8037572,38210010 +What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7317828,38210010 +What is the hs code for BOTTLE XLD AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7349609,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7349600,38210010 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7198543,38210010 +What is the hs code for BOTTLE BEEF EXTRACT POWDER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8011683,38210010 +What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7291775,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 5 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7177779,38210010 +What is the hs code for BOTTLE BRAIN HEART INFUSION AGAR 500 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7220797,38210010 +What is the hs code for BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8081784,38210010 +What is the hs code for BOTTLE DERMATOPHYTE TEST MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8024888,38210010 +What is the hs code for BOTTLE D-MANNOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7135976,38210010 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7306629,38210010 +What is the hs code for BOTTLE DULCITOL 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8066833,38210010 +What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7143744,38210010 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7198543,38210010 +What is the hs code for BOTTLE LITMUS MILK BBL 500GI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8058939,38210010 +"What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7177823,7363845",38210010 +What is the hs code for BOTTLE PSEUDOMONAS AGAR F 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7177860,38210010 +What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7153977,38210010 +What is the hs code for BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7156779,38210010 +What is the hs code for BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7291693,38210010 +What is the hs code for BOTTLE STOCK CULTURE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8012616,38210010 +What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8012632,38210010 +What is the hs code for DROPPER LACTOPHENOL COTTON BLUE STAIN (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7332867,38210010 +What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7193914,38210010 +What is the hs code for BOTTLE PROTEOSE PEPTONE NO.3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8059926,38210010 +What is the hs code for BOTTLE AGAR NOBLE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7256726,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MED 3 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7278568,38210010 +What is the hs code for GASPAK EZ LARGE INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7279340010,38210010 +What is the hs code for KIT MAINTENANCE FLOW CYT 2 MONTH (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8046672,38210010 +"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7268937",38210010 +"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8031750",38210010 +"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7319536,...",38210010 +What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8046743,38210010 +What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8012638,38210010 +What is the hs code for VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7314928,38210010 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7356665,38210010 +"What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 7289995",38210010 +What is the hs code for VIAL VIBRIO CHOLARAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8005940,38210010 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3MI (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7237643,38210010 +What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7324962,38210010 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7268937,38210010 +"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8031750,8043649",38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7153980,38210010 +What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8058733,38210010 +"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7153980",38210010 +"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7347753,..",38210010 +"What is the hs code for CD10 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7352771,8059702",38210010 +What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7235889,38210010 +What is the hs code for CD3 APC SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8064632,38210010 +What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7333561,38210010 +What is the hs code for CD17 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8026653,38210010 +What is the hs code for ANTI MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8025579.,38210010 +What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8044954,38210010 +What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8026870,38210010 +What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8009536,38210010 +What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8046521,38210010 +What is the hs code for CD3 PERCP SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8051656,38210010 +What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7345542,38210010 +What is the hs code for ANTI HLA DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8015843,38210010 +"What is the hs code for CD45 PERCP 2D1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7317768,8022712",38210010 +What is the hs code for FASTIMMUNE COSTIM CD28/CD49D 0.3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7299715,38210010 +What is the hs code for CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8031925,38210010 +"What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8044550,8073612",38210010 +What is the hs code for HU CD4 FITC RPA-T4 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6340599,38210010 +What is the hs code for HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7125585,38210010 +What is the hs code for HU HLA DR FITC L243 (G46-6) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8046823,38210010 +What is the hs code for LYSING BUFFER 10X CONCENTRATE 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8024769,38210010 +What is the hs code for ANNEXIN V FITC APOP DTEC KIT I 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7347717,38210010 +What is the hs code for BD CST BEADS KIT 50TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 72926,38210010 +What is the hs code for CD3 APC H7 SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8024881,38210010 +What is the hs code for CD34 PE 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7159622,38210010 +What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121830,38210010 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7237643,38210010 +What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT 10X10MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7228748,38210010 +What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8031760,38210010 +What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8031760,38210010 +What is the hs code for VIAL SUPPLEMENT C 6X5ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8030960,38210010 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6309655,38210010 +What is the hs code for AMBERLITE IRP88 POLACRILIN( BHN BAKU OBAT UTK PEWARNA TABLET) COA. E709I17004,38249999 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA ROA088183,28363000 +What is the hs code for METHOCEL E4M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180FB8021,39123900 +What is the hs code for METHOCEL K4M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180HB7002,39123900 +What is the hs code for METHOCEL A15 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180H9U021,39123900 +What is the hs code for METHOCEL A15 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180H2J02B,39123900 +What is the hs code for METHOCEL A15 PREMIUM LV ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180H9U021,39123900 +What is the hs code for METHOCEL E15 PREMIUM LV ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011G93L01,39123900 +What is the hs code for METHOCEL E15 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D011GBQL02,39123900 +What is the hs code for METHOCEL E5 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D011HA5L01,39123900 +What is the hs code for METHOCEL E5 PREMIUM LV ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011HA2L02,39123900 +What is the hs code for METHOCEL E5 PREMIUM LV ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011H6DL01,39123900 +What is the hs code for METHOCEL E5 PREMIUM LV ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011G9NL02,39123900 +What is the hs code for METHOCEL K15M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180H5N001,39123900 +What is the hs code for METHOCEL K15M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180HAR001,39123900 +What is the hs code for METHOCEL K15M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180HAN002,39123900 +What is the hs code for METHOCEL K15M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180HAK002,39123900 +"What is the hs code for LANOLINE ANHYDROUS (BHN BAKU KOSMETIK) COA 4137, 4503",38249999 +"What is the hs code for MATCHA GREEN TEA EXTRACT CSP 6 TC ( BHN BAKU KOSMETIK), COA CSP 18002 EOU",38249999 +What is the hs code for BIOTOX (BHN BAKU OBAT UTK PAKAN TERNAK) COA 050418-256,23099090 +What is the hs code for E.C.O TRACE ZN 25PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC270218,29224900 +What is the hs code for E.C.O TRACE MN 20PCT (BHN BAKU UTK PAKAN TERNAK) COA BC290118,29224900 +What is the hs code for BETAPRO 300 (BHN BAKU OBAT UTK PAKAN TERNAK) COA 220318-219,23099090 +What is the hs code for E.C.O TRACE FE 20PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC310118,29224900 +What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 18040309,38249999 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP18043162, 43163",29211900 +"What is the hs code for PANTOPROZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT,COA APSS17005",29333990 +What is the hs code for FERROUS FUMARATE USP/EP (BHN BAKU OBAT) COA.2018/86,29171900 +"What is the hs code for ALLOPURINOL (BHN BAKU OBAT) COA 17073AY3ARII, 17081AY3ARII",29335990 +What is the hs code for BIOTOX (BHN BAKU OBAT UTK PAKAN TERNAK) COA 050418-256,23099090 +What is the hs code for E.C.O TRACE ZN 25PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC270218,29224900 +What is the hs code for BETAPRO 300 (BHN BAKU UTK PAKAN TERNAK) COA 220318-219,23099090 +What is the hs code for LIQUIPHOS STRONG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 030418-258,23099090 +What is the hs code for LIQUIPHOS STRONG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 030418-258,23099090 +What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M 31.0PCT (BHN BAKU OBAT) COA.101829001,28161000 +What is the hs code for MANDARIN CLEAR (BHN BAKU KOSMETIK) COA 173098,13021950 +What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 171058,13021950 +What is the hs code for ALPINIAWHITE (BHN BAKU KOSMETI) COA 180328,13021950 +"What is the hs code for MEG-3 '30' N-3 INF OIL, 4,5KG PJUG (BHN BAKU SUPLEMEN) COA.TS00009947",29362500 +What is the hs code for KIT C6 FLOW CYTO STARTER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),38210010 +What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7347501,38210010 +What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7340819,38210010 +What is the hs code for MIRANOL ULTRA C32 200KG PLASCTIC DRUM (BHN BAKU KOSMETIK) COA BP803170R,34029099 +What is the hs code for PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) COA PH01160217,38249999 +What is the hs code for PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PI18030002,29341000 +What is the hs code for PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PI18030002,29341000 +What is the hs code for ULVA LACTUCA ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA ULL180301-GS-BGBIO,38249999 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO180301,38249999 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO180302,38249999 +What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH180304-ENBIO,38249999 +What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT673784,32151900 +What is the hs code for OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT673988,32151900 +What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT673948,32151900 +What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT672502,32151900 +What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK)COA BAG-022017,38249999 +"What is the hs code for SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK) COA U180413, U180425",38249999 +What is the hs code for SK BIOLAND LICORICE EXTRACT (BHN BAKU KOSMETIK) COA GGB-022887,38249999 +What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK)COA OHA-071648,38249999 +What is the hs code for SK BIOLAND SNAIL SECREATION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-020638,38249999 +What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-331238,38249999 +What is the hs code for SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-010218,38249999 +What is the hs code for SK BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK)COA KFB-L-030827,38249999 +What is the hs code for SK BIOLAND PC SC-GLUCAN (BHN BAKU KOSMETIK) COA CPG-232738,38249999 +What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) COA 7766002,38249999 +What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG180202,29420000 +What is the hs code for BIOTOX (BHN BAKU OBAT UTK PAKAN TERNAK) COA 050418-256,23099090 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01801004",29362400 +What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA PLVH180304-ENBIOO,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-180202,38249999 +What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-171106-GS,38249999 +What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH180405-ENBIO,38249999 +What is the hs code for DPG FG (BHN BAKU KOSMETIK) COA B02451DG,29094900 +What is the hs code for PG USP (BHN BAKU KOSMETIK) COA B02451UG,29053200 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518030083",29420000 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ70613160,29362500 +"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218010005,30047",29420000 +"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00511323,514833",29420000 +What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11803004,29362900 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0317121889,890",29420000 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518030083",29420000 +"What is the hs code for PARSOL HMS, 25KG PC (BHN BAKU KOSMETIK) COA MCS1604083",29420000 +"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01801004",29362400 +What is the hs code for GLICLAZIDE (BHN BAKU OBAT) COA 1840000648,29359000 +"What is the hs code for VITAMIN B12 0.1PCT WS, 15KG BOXALU (BHN BAKU MAKANAN) COA UT18010003",29362600 +What is the hs code for VITAMIN A PALMITATE/M 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17100019,29362100 +What is the hs code for PRAVASTATIN SODIUM (BHN BAKU OBAT) COA PV201711018,29189900 +"What is the hs code for PURIDROX TM COMPACTED, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B339967,74.75",29419000 +What is the hs code for OLIVE POLYPHENOLIC DRY EXTRACT (BHN BAKU SUMPLEMEN) COA 18080,13021950 +What is the hs code for LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 18092,38249999 +What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5497417,38249999 +What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829015717H,38249999 +What is the hs code for EXO-T (BHN BAKU KOSMETIK) COA 715016075J,38249999 +What is the hs code for LANACITYN PF (BHN BAKU KOSMETIK) COA 794025577H,38249999 +"What is the hs code for TYROSTAT-11 (BHN BAKU KOSMETIK), COA 784026174J",38249999 +"What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK), COA 5497417",38249999 +What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829015717H,38249999 +What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830016021J,38249999 +What is the hs code for EXO-P (BHN BAKU KOSMETIK) COA 715036001H,39139090 +What is the hs code for MELANOSTATINE-5BG (50PPM) (BHN BAKU KOSMETIK) COA 817046077J,38249999 +What is the hs code for PROGELINE (BHN BAKU KOSMETIK) COA 820055823 H,38249999 +What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604611,38249999 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604599,39061090 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604486,38249999 +"What is the hs code for ROVIMIX (R) C-EC, 25KG BOXALU (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT01708315,16,26",29362700 +"What is the hs code for ROVIMIX AD3 1000/200, 20KG BAG (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT17121210",29362100 +What is the hs code for CAROPHYLL RED 10PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA UE01711008,32041900 +What is the hs code for ROVIMIX NIACIN (BHN BAKU OBAT UTK PAKAN TERNAK) COA 25755,29362900 +"What is the hs code for RONOZYME (R) HIPHOS GT, 25KG BAGDK (BHN BAKU OBAT UTK PAKAN TERNAK) COA HK921271",29369000 +"What is the hs code for RONOZYME MULTIGRAIN (GT) 20KG PBAG (BHN BAKU OBAT UTK PAKAN TERNAK) COA VF900207,209",29369000 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT(BHN BAKU SUPLEMEN) COA WB00917087,29362900 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70903302,29362200 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT18010779,29362100 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17120037,29362600 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17120037,29362600 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17120037,29362600 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17120037,29362600 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80302092,29362200 +"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80302092,2103",29362200 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70813198,29362500 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70903302,29362200 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70813196,29362500 +What is the hs code for VITAMIN A PALMITATE 1.7MIU/G (TOCO)(BHN BAKU SUPLEMEN) COA UT18010779,29362100 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17110772,774,18010779",29362100 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17110771,772",29362100 +What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ71206183,29362700 +"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ71206183,84",29362700 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70813210,29362500 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70813196,98",29362500 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17120037,29362600 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT17110166,29362100 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17120037,29362600 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT17110166,UT18010167",29362100 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ71103349,29362200 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17120036,29362900 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70813198,29362500 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT18010167,29362100 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT18010167,29362100 +What is the hs code for THIAMINE MONONITRATE ((BHN BAKU SUPLEMEN) COA UQ70903302,29362200 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17110166,29362100 +"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UT70803301,3302",29362200 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17110166,29362100 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)(BHN BAKU MAKANAN) COA UT17110166,29362100 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT17110166",29362100 +What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91803395,21069059 +What is the hs code for PX 103070 - C3 (BHN BAKU MAKANAN) COA XW91803423,21069059 +What is the hs code for PX 103070 - C3 (BHN BAKU MAKANAN) COA XW91803423,21069059 +What is the hs code for VITAMIN PREMIX 103093-A (BHN BAKU MAKANAN) COA XW91803409,21069059 +What is the hs code for PX 204005 (BHN BAKU MAKANAN) COA XW91803390,21069059 +"What is the hs code for VITAMIN PREMIX ,TYPE MM81 (105PCT) BHN BAKU MAKANAN, COA XW91803396",21069059 +What is the hs code for VITAMIN PREMIX 103093-A (BHN BAKU MAKANAN) COA XW91803410,21069059 +What is the hs code for CANTHAXANTHIN 10PCT CWS/S (BHN BAKU MAKANAN) COA UT17040005,32041900 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU MAKANAN) COA UT17110004,29362900 +"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ71206200,6201,6003",29362700 +What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121808584,28363000 +What is the hs code for METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/18040192,29332900 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE 25KG BOX(BHN BAKU MAKANAN) COA TL01802927,3143,3159",29362700 +"What is the hs code for DRY VITAMIN A PALMITATE TYPE 250CWS/F(BHN BAKU MAKANAN) COA UT18020001,20002",29362100 +What is the hs code for JAGUAR C 162 CARDBOARD BOX 25 KG (BHN BAKU KOSMETIK) COA MJAC18067A,38249999 +"What is the hs code for PURIDROX TM COMPACTED, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B339990, 91,92",29419000 +What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA.M113071,29339990 +What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M110465,29339990 +"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M110380,M110417",29339990 +What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604524,38249999 +What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604395,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604497,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604555,38249999 +What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604510,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604502,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604498,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604486,38249999 +What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604515,32151900 +What is the hs code for OPADRY II GRAY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604495,38249999 +What is the hs code for OPADRY AMB MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604501,38249999 +What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604496,38249999 +What is the hs code for OPADRY PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604514,38249999 +What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604485,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604775,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604690,38249999 +What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604760,38249999 +"What is the hs code for CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 018.472",90189090 +What is the hs code for RESTYLANE SKINB VITLIDO 1MLD16 (BHN BAKU OBAT) COA 15864-2,90189090 +What is the hs code for RESTYLANE SKINB VITALLGHLIDO 1MLD16 (BHN BAKU OBAT) COA 15706-2,90189090 +What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML (BHN BAKU OBAT) COA 15912-2,90189090 +What is the hs code for RESTYLANE REFYNE 1ML (BHN BAKU OBAT) COA 15521-1,90189090 +What is the hs code for RESTYLANE DEFYNE 1ML (BHN BAKU OBAT) COA 15856-1,90189090 +What is the hs code for RESTYLANE KYSSE 1ML (BHN BAKU OBAT) COA 15884-1,90189090 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18040076,29362800 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01708082",29362400 +What is the hs code for KAOLIN SUPREME (BHN BAKU KOSMETIK) COA 060817,25070000 +What is the hs code for ALLOPURINOL (BHN BAKU OBAT) COA E-2018061049 S/D 1053,29335990 +What is the hs code for ONDASENTRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA 17OS001,29332900 +What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M 31.0PCT (BHN BAKU OBAT) COA.101829003,28161000 +"What is the hs code for DL-PANTHENOL 50L, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01801602,1603",29362400 +What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT17090053,29362500 +What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT18030084,29362100 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01802897,2927",29362700 +"What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT17120020,UT18020001",29362100 +What is the hs code for B-CAROTENE 10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT17110006,32041900 +"What is the hs code for CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 20180418",38249999 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180038,39,40",29420000 +"What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA MCS1605181",29420000 +What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11803004,29362900 +"What is the hs code for BEAUPLEX (TM) VH, 5KG BAG ALU (BHN BAKU KOSMETIK) COA UF18004050",29420000 +"What is the hs code for DL. PANTHENOL 50L (BHN BAKU KOSMETIK) COA TL01706630,7638,8644",29362400 +What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01707814,29362400 +What is the hs code for ESCIN FREE ACID (BHN BAKU SUPLEMEN) COA 32591/M3,13021950 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121808584,654",28363000 +What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 121808654,28363000 +"What is the hs code for ECHINACEA PURP.D.AQ E.0,8PCT (BAHAN BAKU SUPLEMEN) COA 10226/M2",13021950 +What is the hs code for SILYMARIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10462/M1,38249999 +What is the hs code for DIETHYL CARBAMAZINE CITRATE BP (BHN BAKU OBAT) COA SAM/DCC/0318034,29395900 +What is the hs code for FERROUS FUMARATE USP/EP (BHN BAKU OBAT) COA.2018/106,29171900 +What is the hs code for CURCUMA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 32576/M1,38249999 +What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 32619/M1,38249999 +What is the hs code for ECHINACEA ANG DRY PURIF EX (BHN BAKU SUPLEMEN) COA 32226/M1,13021950 +What is the hs code for ECHINACEA ANG. DRY PURIF. EX (BHN BAKU SUPLEMEN) COA 32527/M1,13021950 +What is the hs code for VACCINIUM MYRTILLUS DRY EX (BHN BAKU SUPLEMEN) COA 32501/M1,13021950 +What is the hs code for PHASEOLUS VULGARIS DRY EXTRACT (BHN BAKU SUPLEMEN) COA 32690/M1,13021950 +What is the hs code for NOSCAPINE BASE BP (BHN BAKU OBAT) COA P200618,29391900 +"What is the hs code for GUAIFENESIN USP (BHN BAKU OBAT) COA GGE-1803084 S/D 89, 93 S/D 106",29094900 +What is the hs code for TETRACYCLINE HYDRACHLORIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 180326-61,29413000 +What is the hs code for LOTUS NELUMBIUM NEL.FLOWER (BHN BAKU KOSMETIK) COA AM070124,13021950 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010013,32041900 +What is the hs code for VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18020037,29362100 +What is the hs code for PIPERAZINE CITRATE BP/USP (BHN BAKU OBAT) COA PC-095/18 S/D 099/18,29395900 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537106,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537077,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537108,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537107,35051010 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604598,38249999 +What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604586,39061090 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603799,39061090 +What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604391,38249999 +What is the hs code for OPADRY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604617,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603939,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604590,38249999 +What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604587,39061090 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604599,39061090 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601993,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604502,38249999 +What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604611,38249999 +What is the hs code for OPADRY AMB PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604589,38249999 +What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604591,38249999 +What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604597,38249999 +What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604780,38249999 +What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK)COA 010918,38249999 +What is the hs code for FDANDC BLUE #1/INDIGO CARMINE AL... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP795446,32151900 +What is the hs code for FDANDC YELLOW #5/TARTRAZINE AL... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP787028,32151900 +What is the hs code for FDANDC RED #40/ALLURA RED AC AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP791919,32151900 +What is the hs code for FDANDC YELLOW #5/TARTRAZINE AL... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP796058,32151900 +What is the hs code for GINKGO EXTRACT (BHN BAKU OBAT) COA 1271580,13021950 +What is the hs code for FERROUS FUMARATE USP/EP (BHN BAKU OBAT) COA.2018/107,29171900 +What is the hs code for IONOL CP (BHN BAKU KOSMETIK) COA 01422917,29420000 +"What is the hs code for KF-6028 (BHN BAKU KOSMETIK) , COA 804183",38249999 +"What is the hs code for KF-6028 (16KG) BHN BAKU KOSMETIK, COA 804183",38249999 +"What is the hs code for KF-96A-6CS (16KG) BHN BAKU KOSMETIK, COA 804954",38249999 +What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA 0000013177,33029000 +What is the hs code for THE MATCHA 1 P001062 (BHN BAKU KOSMETIK) COA.0000013169,33029000 +What is the hs code for PLAISANCE P116808 (BHN BAKU KOSMETIK) COA 0000013175,33029000 +What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 01/17GAAK,28399000 +"What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 01/17GAAK ,SAMPLE NO COMMERCIAL VALUE",28399000 +What is the hs code for LABRAFIL M 1944 CS (BAHAN BAKU SUPLEMEN) COA 168850,28399000 +What is the hs code for TEFOSE 63 (BAHAN BAKU SUPLEMEN) COA 169160,28399000 +What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 165210,28399000 +What is the hs code for LABRASOL (BHN BAKU SUPLEMEN) COA 167978,28399000 +"What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND171003, ND171105, ND171106",29372200 +"What is the hs code for RANITIDINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA RH287 04 18, RH 288 04 18...",29321900 +"What is the hs code for RANITIDINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA RH 290 04 18, RH 291 04 18...",29321900 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP18043349, X18043350",29211900 +What is the hs code for CALCIUM GLUCONATE EP (BHN BAKU OBAT) COA CGA-EP1804045,29181600 +"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17120063, 80049,80050",29362100 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17120063,29362100 +What is the hs code for DL A TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18030043,29362800 +"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01801004",29362400 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT18010167,29362100 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01801004,29362400 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01801005,29362400 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18030043,29362800 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT18010167,29362100 +"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91804410, 11,12",29420000 +"What is the hs code for PARSOL EHS ,25KG PC (BHN BAKU KOSMETIK) COA MCS1607099",29420000 +What is the hs code for DESONIDE MICRONIZED (BHN BAKU OBAT) COA NX2299M,29372900 +What is the hs code for DROSPIRENONE MICRONIZED (BHN BAKU OBAT) COA NY0462M,29372900 +What is the hs code for TRIAMCINOLONE ACETONIDE (BHN BAKU OBAT) COA NY0780M,29372200 +What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NY0865M,29372200 +What is the hs code for ULTALUX FF25 KG BAG (BHN BAKU KOSMETIK) COA D0417X1872,38249999 +What is the hs code for PUROLAN E 171 (BHN BAKU KOSMETIK) COA 5635115,38249999 +What is the hs code for CYTOFIX/CYTOPERM W/GOLGI STOP KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7346857,38210010 +What is the hs code for ACRYLPOL 980 BAHAN BAKU KOSMETIK) COA 11518003,38249999 +"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 1804EF1113",29224900 +What is the hs code for OPADRY ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA638391,38249999 +What is the hs code for CATCOL C 135 (L) GRADE (BAHAN BAKU KOSMETIK) COA 395/18,38249999 +What is the hs code for PROPYPHENAZONE (ST) (BHN BAKU OBAT UTK PEWARNA TABLET) COA 1711300,29331100 +What is the hs code for OLIVE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA OLE180202-RQ,38249999 +"What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8087522",38210010 +"What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7324962",38210010 +What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7289995,38210010 +What is the hs code for VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7314928,38210010 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7338913,38210010 +"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8068917,8068939",38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7153980,38210010 +"What is the hs code for BOTTLE LETHERN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 8046743",38210010 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7338913,38210010 +What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 8011977...,38210010 +What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8109595,38210010 +What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7332587,38210010 +What is the hs code for VIAL SAIL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7356665,38210010 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7338913,38210010 +What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8059702,38210010 +"What is the hs code for CD14 APC MPHIP9 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7235889",38210010 +What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8078616,38210010 +What is the hs code for FASTIMMUNE HUMAN IL2 PE 5344 .111 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8060777,38210010 +What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8026653,38210010 +What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8109595,38210010 +What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8044954,38210010 +What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8026870,38210010 +What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8009536,38210010 +What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8046521,38210010 +"What is the hs code for CD8 PERCP CY5.5 SK1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7304693,...",38210010 +What is the hs code for IFN GAMMA APC RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8081704,38210010 +"What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7345542,8033517",38210010 +What is the hs code for ANTI HLA DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8015843,38210010 +"What is the hs code for FASTIMMUNE COSTIM CD28/CD49 0.3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7299715",38210010 +What is the hs code for CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8031925,38210010 +"What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8044550,8073612",38210010 +What is the hs code for CD3 FITC SK7 50 TESTS IVD (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8057718,38210010 +What is the hs code for PERM/WASH BUFFER 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7180888-B,38210010 +What is the hs code for HU CD4 FITC RPA-T4 100TST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8037703,38210010 +What is the hs code for HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7125585,38210010 +What is the hs code for LYSING BUFFER 10X CONCENTRATE 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8045509,38210010 +What is the hs code for HU REGULATORY T CELL CKTL 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7286518,38210010 +What is the hs code for BD CST BEADS KIT 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 80759,38210010 +What is the hs code for HU CD28 PE CD28.2 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7297748,38210010 +What is the hs code for KI-67 ALEXA 647 B56 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7348582,38210010 +What is the hs code for CS&T RUO BEADS 50 TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8074640,38210010 +"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH7353854,8032932",38210010 +What is the hs code for BOTTLE UREA AGAR BASE BBL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7332918,38210010 +"What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8053841,8092819",38210010 +What is the hs code for KIT CRYSTAL ANAEROBE ID AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8068562,38210010 +What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8087522,38210010 +What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP A (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6239952,38210010 +What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP C (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7335666,38210010 +What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP W135 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6267761,38210010 +What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT 10X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7228748,38210010 +What is the hs code for CD4 APC SK3 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7318894,38210010 +What is the hs code for CD10 PE HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8059814,38210010 +What is the hs code for CD10 APC HI10A 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7348976,38210010 +What is the hs code for CD11B APC D12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8040948,38210010 +What is the hs code for ANTI LAMBDA FITC 1-155-2 50TST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8107891,38210010 +What is the hs code for CD20 FITC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8059699,38210010 +What is the hs code for PI/RNASE STINING BUFFER SOLUTION 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8019561,38210010 +What is the hs code for HU IL-17A PE N49-653 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8004580,38210010 +What is the hs code for HU CD64 APC-H7 10.1 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7306651,38210010 +What is the hs code for HU CD19 BV510 SJ25C1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7292805,38210010 +What is the hs code for HU CD14 BV421 MPHIP9 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8004920,38210010 +What is the hs code for CD38 APC-H7 (HB7) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8046672,38210010 +"What is the hs code for ANTI KAPPA PE TB28-2 50 TESTS RUO/G,P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8029550",38210010 +What is the hs code for HU CD3 FITC UCHT1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8029550,38210010 +What is the hs code for ANTI-BCL-2 FITC 100 50 TST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8044528,38210010 +What is the hs code for CD23 PE EBVCS-5 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8059872,38210010 +What is the hs code for CYTOFIX/CYTOPERM W/GOLGIPLUG KIT 250TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7076742,38210010 +What is the hs code for HU CD25 PE M-A251 100TST (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8086986,38210010 +What is the hs code for FENOFIBRATE MICRONIZED (BHN BAKU OBAT) COA W-F03-20180301-02,29189900 +What is the hs code for BISOPROLOL FUMARATE USP(BAHAN BAKU OBAT)COA LT-OBFM/005/17-18,29221990 +"What is the hs code for AMLODIPINE BESILATE BP/EP (BHN BAKU OBAT), COA. AMB/050/04/18, AMB/051/04/18...",29333990 +"What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU OBAT), COA UJ817",29181400 +"What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA.18100312, 313",29395900 +What is the hs code for MEROPENEM TRIHYDRATE WITH SODIUM CAROBATE STERILE (B.BAKU OBAT) COA.S0820180402,30032000 +What is the hs code for CANDESARTAN CILEXETIL (BHN BAKU OBAT) COA 5668-18-006,29339990 +What is the hs code for OXYTETRACYCLINE DIHYDRATE INJ GRADE BP/EP (BHN BAKU OBAT UTK PAKAN TERNAK ) COA ZT180327,29413000 +What is the hs code for CITICOLINE SODIUM (BHN BAKU OBAT) COA 3A26180315,29349990 +"What is the hs code for IRBESARTAN (BHN BAKU OBAT) COA C5465-17-036, C5465-17-044,050,051",29332900 +What is the hs code for GLUCOSAMINE HCL (BHN BAKU OBAT) COA JST20180420,29329990 +What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20180419,29309090 +What is the hs code for FIBRE DRUM (DRUM KOSONG),48192000 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7312572,38210010 +"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 7171538,7306827",38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242852,38210010 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7363777,38210010 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7018890,38210010 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7235794,38210010 +What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7178809,38210010 +What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7284524,38210010 +"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7321587",38210010 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8054962,38210010 +What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7297545,38210010 +What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7349833,38210010 +What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7338657,38210010 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7321586,38210010 +What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7151674,38210010 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8068984,38210010 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7283691,38210010 +"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8011939,8032502",38210010 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7312538,38210010 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7278689,38210010 +What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8066783,38210010 +"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8032527",38210010 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7341765,38210010 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7349609,38210010 +"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8052641,806854",38210010 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8003644,38210010 +"What is the hs code for BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7317830,7325915",38210010 +What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7338553,38210010 +What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7255556,38210010 +What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7363740,38210010 +What is the hs code for PAIL BUFFERED PEPTONE WATER 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8053800,38210010 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7332733,38210010 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8012723,38210010 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7095842,38210010 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7262745,38210010 +What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7251553,38210010 +What is the hs code for BOTTLE LB BROTH MILLER 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8012609,38210010 +What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7363844,38210010 +What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7305891,38210010 +What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7060815,38210010 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8065670,38210010 +What is the hs code for PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8072638,38210010 +What is the hs code for SOLUTION BACTERIOSTAT CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0957C118,38210010 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8003644,38210010 +What is the hs code for PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8072638,38210010 +What is the hs code for BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6278861,38210010 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7321587,38210010 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7341765,38210010 +What is the hs code for PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8072638,38210010 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8065670,38210010 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7193724,38210010 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7349609,38210010 +"What is the hs code for PAIL LAURYL TRYPTOSE BROTH 2KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7234887,8012733",38210010 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8003644,38210010 +What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8030866,38210010 +What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8003673,38210010 +What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8018795,38210010 +What is the hs code for BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8037783,38210010 +What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7291775,38210010 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8068984,38210010 +What is the hs code for BOTTLE SIM MEDIUM BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7291684,38210010 +What is the hs code for BOTTLE ACTINOMYCETES ISOLATION AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7317688,38210010 +What is the hs code for BOTTLE MACCONKEY II AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7250648,38210010 +What is the hs code for BOTTLE AGAT NOBLE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8003633,38210010 +What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 72327270,38210010 +What is the hs code for BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7325649,38210010 +What is the hs code for BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7220787,38210010 +What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8012740,38210010 +What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8046922,38210010 +What is the hs code for BOTTLE NITRATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7198978,38210010 +What is the hs code for BOTTLE YEAST NITROGEN BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8011965,38210010 +What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7220793,38210010 +What is the hs code for BOTTLE BORDET GENGOU AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7114770,38210010 +What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7363845,38210010 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7306691,38210010 +What is the hs code for DROPPER LACTOPHENOL COTTON BLUE STAIN (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7332867,38210010 +What is the hs code for BOTTLE TRYPTOSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7332884,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7135939,38210010 +What is the hs code for BOTTLE STARCH AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7255527,38210010 +What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7220823,38210010 +What is the hs code for BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 7250994,38210010 +What is the hs code for BOTTLE TINSDALE BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6026724,38210010 +What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7335617,38210010 +What is the hs code for BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7363785,38210010 +What is the hs code for BOTTLE PSEUDOMONAS ISOLATION AG 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7235847,38210010 +What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 2KG (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8032581,38210010 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8012609,38210010 +"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7363823,8032527",38210010 +What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7291775,38210010 +What is the hs code for BOTTLE PROTEOSE PEPTONE NO 3 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8059926,38210010 +What is the hs code for BOTTLE PEPSIN 1 TO 10000 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7242856,38210010 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8032542,38210010 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8032542,38210010 +What is the hs code for PANTOPRAZOLE SODIUM (BHN BAKU OBAT) COA PS1561017,29333990 +"What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.18100077, 18100237",29391900 +What is the hs code for ANTI SHINE WASH (BHN BAKU KOSMETIK) COA 10300067,38249999 +What is the hs code for ANTI SHINE WASH (BHN BAKU KOSMETIK) COA 10300067,38249999 +What is the hs code for OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605253,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605221,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605460,38249999 +What is the hs code for SUPREME TM WP AGAIN (BHN BAKU KOSMETIK) COA 1730901,38249999 +What is the hs code for ALDAVINE 5X (BHN BAKU KOSMETIK) COA 5515217,38249999 +What is the hs code for AMISOL TM 4135 (BHN BAKU KOSMETIK) COA 1724701,38249999 +What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829015924J,38249999 +"What is the hs code for BODY 3 COMPLEX (BHN BAKU KOSMETIK), COA B3C010317",38249999 +"What is the hs code for LANACHRYS 2B PF (PRESERVATIVE) BHN BAKU KOSMETIK, COA 5520717",38249999 +What is the hs code for MELANOSTATINE-5BG (50PPM) (BHN BAKU KOSMETIK) COA 817046077J,38249999 +What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015528H,38249999 +What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) COA 1724516,39139090 +What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784026174J,38249999 +What is the hs code for ABBYSINE 657 (BHN BAKU KOSMETIK) COA 5541718,38249999 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1804005,38249999 +What is the hs code for METHOCEL E15 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011HAGL01,39123900 +What is the hs code for METHOCEL E5M PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011HAML01,39123900 +What is the hs code for METHOCEL E15 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011HAAL02,39123900 +"What is the hs code for NIACINAMIDE USP (BHN BAKU KOSMETIK) COA 17-18/NMD(P)/U/292 S/D 295, 18-19/NMD(P)/U/005",29362900 +"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1810133, 1810142, 1810171",29242930 +What is the hs code for METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT LYOPHILIZED (BHN BAKU OBAT)COA NY0659,29372900 +What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M.31.0PCT (BHN BAKU OBAT) COA 101829002,28161000 +"What is the hs code for CLOPIDOGREL BISULFATE (BHN BAKU OBAT) COA AALH002720,3475,3863,3871...",29349990 +What is the hs code for HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 2771527,38249999 +What is the hs code for NOREPINEPHRINE BITARTRATE (BHN BAKU OBAT) COA 430104,29379010 +"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1810127, 130, 139",29242930 +"What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M529878,912,915",29411019 +What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX POWDER (BHN BAKU OBAT) COA M483670,29411019 +What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M595800,29411019 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604673,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604674,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604555,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604670,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604675,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604672,38249999 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604720,39061090 +What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604705,39061090 +What is the hs code for OPADRY AMB MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604501,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604690,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604706,38249999 +What is the hs code for JAGUAR C 162 CARDBOARD BOX 25 KG (BHN BAKU KOSMETIK) COA MJAC18067A,38249999 +"What is the hs code for COATED ASCORBIC ACID TYPE EC,25KG BOX (BHN BAKU SUPLEMEN) COA TL01803242",29362700 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB01017174,29362800 +What is the hs code for VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18020037,29362100 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010013,32041900 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010013,32041900 +What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S TG(BHN BAKU SUPLEMEN) COA UT17110018,29420000 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17110053,29362100 +What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ70407016,29420000 +"What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0020663",29420000 +"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18030043,49",29362800 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518040093",29420000 +"What is the hs code for VITAMIN PREMIX, TYPE MM81 (105PCT) BHN BAKU MAKANAN, COA XW91804331",21069059 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80110031,29362300 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80110031,29362300 +"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT17120259,UT18020026",29362800 +What is the hs code for CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB00418077,29362700 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70813198,29362500 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17080284,29362400 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01801011,32041900 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17120036,29362900 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00917087,29362900 +What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00917018,29362500 +What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91804027,21069059 +What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91804192,21069059 +What is the hs code for DWI BI (BHN BAKU MAKANAN) COA XW91804371,21069059 +What is the hs code for DWI BI (BHN BAKU MAKANAN) COA XW91804124,21069059 +"What is the hs code for DWI BI (BHN BAKU MAKANAN) COA XW91804124, 4371",21069059 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70903302,29362200 +"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ71103353,3358",29362200 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17090070,29362900 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80102047,29362200 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ80102044,29362200 +"What is the hs code for THIAMINE HYDROCHLORIDE ( BHN BAKU MAKANAN), COA UQ80102044,47",29362200 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT17110079,29362800 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11801020,29362900 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11801020,29362900 +"What is the hs code for ASCORBIC ACID ,25KG BOX ALU (BHN BAKU SUPLEMEN) COA TL01709678",29362700 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00917087,29362900 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT17080253,29362400 +"What is the hs code for -CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01801011,12",32041900 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT17110004,29362900 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70813198,29362500 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01701110,29362900 +"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN), COA UE01705017",29362900 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01801011,32041900 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP1180120,29362900 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01801011,32041900 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01801011,32041900 +What is the hs code for PREMIX VITAMIN OIL TYPE GBP (BHN BAKU MAKANAN) COA XW91804208,21069059 +"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01710079, UE01801011",32041900 +What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91804109,21069059 +"What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU MAKANAN) COA TL01711797",29362400 +"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL01711797",29362400 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL01711797,29362400 +What is the hs code for RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1710134,29362300 +"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN), COA UQ80102044",29362200 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU MAKANAN) COA UT17110004,29362900 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01710099",29362400 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT17110004,29362900 +"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01710099",29362400 +"What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL01708082,1710099",29362400 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT18020017,29362900 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT18010003,29362900 +What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20170305,29362800 +What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20170305,29362800 +"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01711799",29362400 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT17120065,29362100 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17120065,29362100 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT17120037,29362600 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT18010781,782",29362100 +"What is the hs code for DOCUSATE SODIUM (BHN BAKU OBAT), COA SD7103055",29171900 +"What is the hs code for NONIVAMIDE (SYNTHETIC CAPSAICIN)BHN BAKU KOSMETIK, COA.20180427",38249999 +What is the hs code for VITAMIN A PALMITATE MIU/G (BHN BAKU MAKANAN) COA UT17100019,29362100 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18040076,29362800 +"What is the hs code for DL-PANTHENOL 50L, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01802610",29362400 +"What is the hs code for ETHYL PANTHENOL, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01803803",29362400 +What is the hs code for NYSTATIN POWDER ROW (BHN BAKU OBAT) COA C114166,29419000 +What is the hs code for NYSTATIN MICRONIZED ROW (BHN BAKU OBAT) COA C130738,29419000 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101851318A533,17021100 +What is the hs code for FLOWLAC (R) 100 (BHN BAKU OBAT) COA L101500618A537,17021100 +What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104315117A552,17021100 +What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-0660318,29334910 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101851418A533,17021100 +What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA KCJ,38249999 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA KDJ,38249999 +What is the hs code for VISTANOL GDHR (BHN BAKU KOSMETIK) COA DKI,38249999 +What is the hs code for STARCAP 1500 CO-PROCESSED (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN536494,35051010 +What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605231,38249999 +What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605232,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605230,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605233,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604943,38249999 +"What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA.09820318, 09830318,...",29359000 +"What is the hs code for SULPHAMETHOXAZOLE BP MICRONISED (BHN BAKU OBAT) COA 14470518, 11480518",29359000 +"What is the hs code for PANTOPROZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT,COA APSS18001",29333990 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP04018,28363000 +What is the hs code for METRONIDAZOLE BP MICRONISED (BHN BAKU OBAT) COA MTZ/8040655,29332900 +What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN1400917,29221990 +What is the hs code for PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) COA PH02160218,38249999 +What is the hs code for CITRIC ACID MONOHYDRATE BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX1805008,29181400 +What is the hs code for SK BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK)COA SPG-390258,38249999 +What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-022017,38249999 +What is the hs code for SK BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK) COA NMSP-D-032127,38249999 +"What is the hs code for SK BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK)COA KFB-L-010858, KFB-L-030827",38249999 +What is the hs code for SK BIOLAND CUCUMBER EXTRACT (BHN BAKU KOSMETIK) COA CUPD-022648,38249999 +What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-010528,38249999 +What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-022228,38249999 +What is the hs code for KIT 488NM JDSU TO OBIS RETRO COMPLETE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),38210010 +"What is the hs code for RIBOFLAVIN 5' PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1710138, 139",29362300 +"What is the hs code for RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1710142, 143",29362300 +What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB100418,39123900 +"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B180418",39123900 +"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG260418",39123900 +What is the hs code for CHAMONILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO171102,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-180403,38249999 +What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-180401-GS,38249999 +What is the hs code for GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK)COA EG209-180101,38249999 +What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB00318212,29362100 +What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 101769017,28161000 +"What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA.18100312, 359",29395900 +"What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 18100313, 360",29395900 +"What is the hs code for REFINED MACADAMIA OIL (BCE1010) BHN BAKU KOSMETIK, COA 899509",38249999 +"What is the hs code for ETHYL PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01707814,18",29362400 +"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000173222,172347",29362900 +What is the hs code for METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I4P003,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I4P003,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D080I4K001,39123900 +What is the hs code for CILOSTAZOL USP (BHN BAKU OBAT) COA 17007CB2ARI,29337900 +What is the hs code for REFINED SUNFLOWER OIL (BHN BAKU KOSMETIK) COA KKLJ 06/18,38249999 +What is the hs code for LIQUORICE LC (BHN BAKU KOSMETIK) COA.110349/P76692,13021920 +"What is the hs code for FLAVOSTERONE SB ( BHN BAKU KOSMETIK), COA 180150",13021950 +What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 180260,38249999 +What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 170083,29329990 +What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 172648,13021950 +What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIV171001-BGBIO,38249999 +What is the hs code for HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA MIE180301,38249999 +What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH180506-ENBIO,38249999 +What is the hs code for ROSA DAMASCENA ORGANIC DISTILLA 1:20 (SB) (BHN BAKU KOSMETIK)COA ROSD180403-BIO,38249999 +What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA180102,38249999 +What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA180203,38249999 +What is the hs code for LINEN OILY EXTRACT GT10 (BHN BAKU KOSMETIK) COA LIU180403-H,38249999 +"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA RBA0961800, RBA0951800",28363000 +What is the hs code for BILBERRY (V.MYRTILLUS) ET EX 36PCT (BHN BAKU SUPLEMEN) COA 32454/M3,13021950 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605729,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605660,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605659,38249999 +What is the hs code for PIROXICAM (BHN BAKU OBAT) COA PRX2018003M,29349990 +What is the hs code for REFINED TRACED SHEA OLEIN (BHN BAKU KOSMETIK) COA 0000021463,38249999 +What is the hs code for O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 112917/005062,38249999 +What is the hs code for GELUCIRE 44/14 (BHN BAKU SUPLEMEN) COA 169220,28399000 +What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 01/17GAAK,28399000 +"What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 01/17GAAK, SAMPLE NO COMMERCIAL VALUE",28399000 +What is the hs code for LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 18092,38249999 +What is the hs code for CYANACOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPLEMEN KESEHATAN) COA. 1806151027,29362600 +What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA. DOC01131821,28363000 +"What is the hs code for CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 018.436",90189090 +What is the hs code for RESTYLANE SKINB VITLIDO 1MLD16 (BHN BAKU OBAT) COA 15926-1,90189090 +What is the hs code for RESTYLANE SKINB VITALLGHLIDO 1MLD16 (BHN BAKU OBAT) COA 15981-2,90189090 +What is the hs code for RESTYLANE SKINB VITALLGHLIDO 1MLD16 (BHN BAKU OBAT) COA 16112-1,90189090 +What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML (BHN BAKU OBAT) COA 15912-2,90189090 +What is the hs code for RESTYLANE REFYNE 1ML (BHN BAKU OBAT) COA 15842-1,90189090 +What is the hs code for RESTYLANE DEFYNE 1ML (BHN BAKU OBAT) COA 15856-1,90189090 +What is the hs code for PURE GREEN B&W PIT (BHN BAKU KOSMETIK)COA 10300031,38249999 +"What is the hs code for KF-96A-6CS (BHN BAKU KOSMETIK) , COA 805958",38249999 +What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0023236,38249999 +What is the hs code for CUIVRIDONE 5KG (BHN BAKU KOSMETIK) COA 0021095,38249999 +What is the hs code for LANSOPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA LP0218C016,29333990 +What is the hs code for NORIT SX SUPER E 153 (BHN BAKU KOSMETIK) COA 4332393,38249999 +What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 80222,38249999 +What is the hs code for GLIMEPIRIDE MICRONISED 25KG (BHN BAKU OBAT) COA U790,29359000 +What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA.M113071,29339990 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121808671,672",28363000 +What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 121808672,28363000 +What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702646305,29372900 +What is the hs code for AC019KC PHYTOVITYL C 5KG (BHN BAKU KOSMETIK) COA 0022844,38249999 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET)COA IN536519,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN536447,35051010 +"What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453119183",39139090 +"What is the hs code for ESOMEPRAZOLE SODIUM STERILE (BHN BAKU OBAT), COA SI/EPZ/00010318",29333990 +"What is the hs code for ARTESUNATE STERILE (BHN BAKU OBAT), COA SI/ARS/00160418",29329990 +What is the hs code for OMEPRAZOLE SODIUM STERILE (BHN BAKU OBAT) COA SI/OPZ/00070418,30039000 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA RBA1201800,28363000 +"What is the hs code for MATCHA GREEN TEA EXTRACT CSP 6 TC ( BHN BAKU KOSMETIK), COA CSP 18005 EOU",38249999 +What is the hs code for ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605081,39061090 +What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605085,38249999 +What is the hs code for OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605084,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605083,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605075,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605076,38249999 +What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605074,38249999 +What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605079,38249999 +What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605079,38249999 +What is the hs code for LANOLINE ANHYDROUS (BHN BAKU KOSMETIK) COA 4550,38249999 +"What is the hs code for SUPPOCIRE AM PELLETS (BHN BAKU OBAT),COA 18E0702",28399000 +What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 18E1105,28399000 +What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 18E1702,28399000 +"What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT),COA 169220",28399000 +What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK) COA.LDC 129 18T,38249999 +What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 240418,25070000 +"What is the hs code for LIFE'S ARA (TM) 12 N-6 ARA POWDER (BHN BAKU MAKANAN) COA WB00118310,12",29362500 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA ROA142184,28363000 +"What is the hs code for DANDC YELLOW #10 AL 15PCT-20PCT. (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP787038,...",32151900 +What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP7881301,32151900 +What is the hs code for DANDC YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP796877,32151900 +What is the hs code for FDANDC RED #40/ALLURA RED AC AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP785006,32151900 +What is the hs code for OPACODE WHITE ( BHN BAKU OBAT UTK PEWARNA TABLET) COA WP798737,32151900 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605247,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604708,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605916,38249999 +What is the hs code for CATCOL C 135 (L) GRADE (BAHAN BAKU KOSMETIK) COA 432/18,38249999 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA ROA143184,28363000 +"What is the hs code for SEP-ART GSL .195 NPG (SEP-ART GSL) BHN BAKU OBAT UTK PAKAN IKAN, COA 7118223352",5119120 +"What is the hs code for SEP-ART GSL..210 NPG (SEP-ART GSL) BHN BAKU OBAT UTK PAKAN IKAN, COA 7118223353",5119120 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01803159,1804443,1804593",29362700 +"What is the hs code for MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU MAKANAN) COA.TS00009862",29362500 +"What is the hs code for MEG-3 '30' N-3 FOOD OIL,4,5KG PJUG (BHN BAKU MAKANAN) COA TS00009862",29362500 +"What is the hs code for SERASENSE SF CM5 (BAHAN BAKU KOSMETIK) COA PA80605049,6004,6006",29319049 +What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20180303,29362800 +What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20180303,29362800 +What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG180511,29420000 +What is the hs code for THE MATCHA CONCOMBRE (BHN BAKU KOSMETIK) COA 2780005,33029000 +What is the hs code for CITRIC ACID MONOHYDRATE BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 2AX1805053,29181400 +"What is the hs code for SUNTHEANINE U001 (BHN BAKU SUPLEMEN KESEHATAN), COA 710271",29224900 +What is the hs code for DPG FG (BHN BAKU KOSMETIK) COA B00651DP,29094900 +What is the hs code for PG USP (BHN BAKU KOSMETIK) COA B00651UP,29053200 +What is the hs code for OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606393,38249999 +"What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX POWDER (BHN BAKU OBAT) COA M483706,727,746,733,747,748",29411019 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS180201,38249999 +"What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH180507-ENBIO, OLVH180508-ENBIO",38249999 +What is the hs code for WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK)COA EG138-180401,38249999 +What is the hs code for LOTUS OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA NEN180303-H,38249999 +What is the hs code for ROSE OILY EXTRACT (BHN BAKU KOSMETIK) COA ROS1800503-H,38249999 +What is the hs code for AVOCADO ORGANIC OIL XNE019 (BHN BAKU KOSMETIK) COA PEGH180201-OLIBIO,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS180201,38249999 +What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) COA PEGH180201-OLIBIO,38249999 +What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM170702-PGH,38249999 +"What is the hs code for NIACINAMIDE USP (BHN BAKU KOSMETIK) COA 18-19/NMD(P)/U/028, 030 S/D 32, 41",29362900 +What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK)COA MUP-012218,38249999 +"What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-893107, NMP-L-032628",38249999 +What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-021127,38249999 +What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA MCP-N-010318,38249999 +What is the hs code for SK BIOLAND GREEN TEA SEED OIL (BHN BAKU KOSMETIK) COA CSSO-010728,38249999 +What is the hs code for SK BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-010858,38249999 +What is the hs code for SK BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK)COA NMSP-D-032127,38249999 +What is the hs code for SK BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK) COA CPG-39-0258,38249999 +"What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-030948, SFP-N-041458",38249999 +What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE(BHN BAKU KOSMETIK) COA 2018D1321,38249999 +What is the hs code for SK BIOLAND BIO BLACK PEARL POWDER (BHN BAKU KOSMETIK) COA PDEG-021527,38249999 +What is the hs code for SK BIOLAND LICORICE EXTRACT (BHN BAKU KOSMETIK) COA GGB-032607,38249999 +What is the hs code for SK BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-010448,38249999 +What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-053058,38249999 +What is the hs code for SK BIOLAND BIO-SIP (BHN BAKU KOSMETIK) COA STOD-011168,38249999 +What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 18051819,38249999 +"What is the hs code for CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 201805T-CCH",38249999 +What is the hs code for FLOWLAC (R) 100 (BHN BAKU OBAT) COA. L101500918A537,17021100 +What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103861018A545,17021100 +What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104311018A552,17021100 +What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA 0000013178,33029000 +What is the hs code for PLAISANCE P116808 (BHN BAKU KOSMETIK) COA.0000016118,33029000 +What is the hs code for THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000013170,33029000 +What is the hs code for CYANACOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPLEMEN KESEHATAN) COA. 1806271436,29362600 +What is the hs code for BILBERRY (V.MYRTILLUS) ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 32454/M3,13021950 +What is the hs code for BILBERRY (V.MYRTILLUS) ET EX.36PCT (BHN BAKU SUPLEMEN) COA 32701/M3,13021950 +What is the hs code for BILBERRY (V. MYRTILLUS) ET. EX.36PCT (BHN BAKU SUPLEMEN) COA 32701/M3,13021950 +What is the hs code for MIRTOGENOL (R) (BHN BAKU SUPLEMEN) COA 80365/M,38249999 +What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605910,38249999 +What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605913,38249999 +What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605914,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605916,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605915,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605911,38249999 +"What is the hs code for PYRAZINAMIDE USP (BHN BAKU OBAT) COA PZ 039 E 18, PZ 040 E 18...",29339990 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01801005,29362400 +"What is the hs code for D. PANTHENOL 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01801005,2019",29362400 +What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001474299,29420000 +What is the hs code for DL.A TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18030049,29362800 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT18010782,29362100 +"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00515943,516074,523423.523426",29420000 +"What is the hs code for PARSOL MCX,25 KG PC (BHN BAKU KOSMETIK) COA MCS1605181",29420000 +What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91805232,29420000 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318040605, 607, 608",29420000 +What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES1702026,29420000 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318040608,609,610,611",29420000 +"What is the hs code for DL-PANTHENOL 50L (BHN BAKU KOSMETIK) COA TL01709650, 712660",29362400 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT18020168",29362100 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT18020168",29362100 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318040611,612,613",29420000 +"What is the hs code for PARSOL MAX, 25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0918030007",29420000 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT18020168",29362100 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT18020168,29362100 +What is the hs code for CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB00418077,29362700 +What is the hs code for RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1711161,29362300 +What is the hs code for CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB00418077,29362700 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80310073,29362300 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ80202059,29362200 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80202059,29362200 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80202059,29362200 +"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UW80202077,2095,2104",29362200 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT17110096,29362800 +"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01801008",29362400 +What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20170401,29362800 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT17110004,29362900 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT17120037,29362600 +"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT17120037,39",29362600 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ71213303,29362500 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17120065,29362100 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL01802619,29362400 +"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01802619",29362400 +"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18020042,30043",29362800 +"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX ( BHN BAKU SUPLEMEN), COA TL01802619GB",29362400 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00817037,29362200 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18020026,29362800 +What is the hs code for VITAMIN PREMIX 103047-D(BHN BAKU MAKANAN) COA XW91805212,21069059 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT18010010,29362800 +What is the hs code for VITAMIN PREMIX (BHN BAKU SUPLEMEN) COA XW91805211,21069059 +What is the hs code for PX 204005 (BHN BAKU MAKANAN) COA XW91805210,21069059 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ80202059,29362200 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17090071,29362900 +What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ70309009,29362300 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT18020168,29362100 +"What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN), COA UQ70309009",29362300 +What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ80206051,29362700 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL01712104",29362400 +"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ80102049,2059",29362200 +"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ80206047,50",29362700 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17080285,29362400 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17120065,29362100 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT18010010,29362800 +What is the hs code for VITAMIN MINERAL PREMIX INSTANT DRINK (BHN BAKU MAKANAN) COA XW91805249,21069059 +"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18040002,3",29362100 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1803005,29362900 +"What is the hs code for ASCORBIC ACID,25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01801631,40",29362700 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN), COA UT18020168",29362100 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ71103359,29362200 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ80310073,29362300 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ80102049,29362200 +"What is the hs code for ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01709690",29362700 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01801012,32041900 +What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18020026,29362800 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17120036,29362900 +What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ70309009,29362300 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1803005,29362900 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01705017,29362900 +"What is the hs code for EUXYL K 100 CN 10KG KA (BHN BAKU KOSMETIK) COA 1506726, 1508191",38249999 +What is the hs code for EUXYL PE 9010 CN 200KG FA (BHN BAKU KOSMETIK) COA 1508857,38249999 +What is the hs code for EUXYL PE 900 CN 10KG KA (BHN BAKU KOSMETIK) COA 15010129,38249999 +"What is the hs code for GROTANOL 3025 CN 10KG KA (BHN BAKU KOSMETIK) COA 1501870,1509426",38249999 +"What is the hs code for SENSIVA SC 50 CN 10KG KA (BHN BAKU KOSMETIK) COA 1507293,1510115",38249999 +What is the hs code for EUXYL K 120 CN 10KG KA (BHN BAKU KOSMETIK) COA 1505458,38249999 +"What is the hs code for SENSIDIN DO CN 10KG CA (BHN BAKU KOSMETIK) COA 1501867,1503339",38249999 +"What is the hs code for EUXYL PE 9010 CN 200KG FA (BHN BAKU KOSMETIK) COA 1507542,1510104",38249999 +What is the hs code for ANTI SHINE WASH (BHN BAKU KOSMETIK) COA 10300112,38249999 +What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA KCJ,38249999 +What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA KDG,38249999 +What is the hs code for PROMOIS S-CAQ (BHN BAKU KOSMETIK) COA KDC,38249999 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA KFM,38249999 +What is the hs code for PROMOIS W-32 (BHN BAKU KOSMETIK) COA KAE,38249999 +What is the hs code for VISTANOL GDHR ( BHN BAKU KOSMETIK) COA DKI,38249999 +"What is the hs code for LIPOID S 20 (BHN BAKU OBAT) COA.572000-2180119/033-039 (7), 572000-2180119/136-143 (8)",29232010 +What is the hs code for HORSE-CHESNUT DRY EXTR STAND (BAHAN BAKU SUPLEMEN) COA 10653/M1,38249999 +What is the hs code for SERASENSE GB 10 (BAHAN BAKU KOSMETIK) COA SF9902E,39100020 +"What is the hs code for BRB 1740, DRUM 180 KG ( BHN BAKU KOSMETIK) COA B049325",39100020 +"What is the hs code for FERROUS FUMARATE ( BHN BAKU OBAT), COA 2018/131",29171900 +What is the hs code for LINCOMYCIN HCL EP (BHN BAKU OBAT) COA 1805022,29419000 +What is the hs code for BARCROFT TM AL HYD GEL VISCO-9 USP (BHN BAKU OBAT) COA.101802002,28183000 +What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 101823005,28161000 +"What is the hs code for BIOTOX (BHN BAKU OBAT UTK PAKAN TERNAK) COA 050418-256, 040518-334",23099090 +What is the hs code for LIQUIPHOS STRONG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 030418-258,23099090 +What is the hs code for LIQUIPHOS STRONG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 030418-258,23099090 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP18053166,167",29211900 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP18053001,53002",29211900 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP18053318,53319",29211900 +What is the hs code for VALERIAN D.H.E.0.8PCT VAL .AC (BAHAN BAKU SUPLEMEN) COA 10782/M1,13021950 +What is the hs code for SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10740/M1,38249999 +What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA. 20180526,11081200 +What is the hs code for FDANDC RED #40/ALLURA RED AC AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP79087,32151900 +What is the hs code for FDANDC YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP789489,32151900 +What is the hs code for DANDC YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP787039,32151900 +What is the hs code for FDANDC BLUE #1/BRILLIANT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP794694,32151900 +What is the hs code for FDANDC BLUE #1/BRILLIANT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP79465,32151900 +What is the hs code for FDANDC YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP789491,32151900 +What is the hs code for FD AND C B YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP796058,32151900 +What is the hs code for FDANDC BLUE #2/INDIGO CARMINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP796431,32151900 +"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1850622, 1850612",29242990 +What is the hs code for CYCLETEST PLUS DNA REAGENT KIT RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8106849,38210010 +What is the hs code for KIT C6 FLOW CYTO STARTER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),38210010 +What is the hs code for BOTTLE TERGITOL 4 XLT4 SUPPLEMENT 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH SLBV8046,38210010 +What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8057556,38210010 +What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8057556,38210010 +What is the hs code for BOTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8066910,38210010 +What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7347501,38210010 +What is the hs code for BOTTLE GRAM IODINE STABILIZED 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8085868,38210010 +"What is the hs code for BOTTLE L-ARABINOSE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8114629",38210010 +"What is the hs code for PAIL CASAMINO ACIDS TECHNICAL 10KG(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7241559,8059990",38210010 +What is the hs code for PLATE TSA W LP IC XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8103884,38210010 +What is the hs code for PLATE TSA W LP IC XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8103888,38210010 +"What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7214802,730584",38210010 +What is the hs code for BOTTLE TCBS AGARA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7178809,38210010 +What is the hs code for BOTTLE MANITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8031785,38210010 +"What is the hs code for BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7362716,8038940",38210010 +What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7208901,38210010 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8024866,38210010 +What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7255556,38210010 +What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7325835,38210010 +What is the hs code for PAIL BUFFERED PEPTONE WATER 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8053800,38210010 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8011876,38210010 +"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7151674,8045613",38210010 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8068984,38210010 +"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8012723,8058565",38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7312572,38210010 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7095842,38210010 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7262745,38210010 +"What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7297545",38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242852,38210010 +What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7251553,38210010 +"What is the hs code for PLATE TSA W LP IC XT PACK 90MM 100E(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8072638,810388",38210010 +"What is the hs code for PLATE TSA W LP IC XT PACK RODAC 100EA (M. UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8085912,810388",38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7306827,38210010 +"What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7305896,734885",38210010 +What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060807,38210010 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7278689,38210010 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7018890,38210010 +What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060815,38210010 +What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8092912,38210010 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8073950,38210010 +What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7103675,38210010 +"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8053866,8066907",38210010 +What is the hs code for PAIL LAURYL TRYPTOSE BROTH 2KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8012733,38210010 +"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079866,80926",38210010 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8058979,38210010 +What is the hs code for BOTTLE POLYSORBATE 80 100G 1 EA (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7356700,38210010 +What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8003647,38210010 +What is the hs code for TUBE CRYSTAL E/ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8081587,38210010 +What is the hs code for TUBE CRYSTAL INOCULUM BROTH (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7363698,38210010 +What is the hs code for BOTTLE POLYSORBATE 80 100G 1 EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7356700,38210010 +What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7304649,38210010 +What is the hs code for BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8037783,38210010 +What is the hs code for KIT MAINTENANCE FLOW CYT 2MONTH (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),38210010 +What is the hs code for BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8086753,38210010 +What is the hs code for BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8086753,38210010 +What is the hs code for KIT MAINTENANCE C6 FLOW CYT 1-YR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),38210010 +What is the hs code for BOTTLE PROTEOSE PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8009830,38210010 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079540,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079535,38210010 +What is the hs code for BOTTLE ENDO AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8031775,38210010 +What is the hs code for BOTTLE MOTILITY TEST MEDIUM BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 7325815,38210010 +What is the hs code for BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7317688,38210010 +What is the hs code for BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6278861,38210010 +What is the hs code for BOTTLE L-ARABINOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8121960,38210010 +What is the hs code for BOTTLE RAPPAPORT VASSILIADIS MSRV 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8121572,38210010 +What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8012740,38210010 +What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8046922,38210010 +What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8115632,38210010 +What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7220793,38210010 +What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7153977,38210010 +What is the hs code for BOTTLE STOCK CULTURE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8012616,38210010 +What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7363845,38210010 +What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8046735,38210010 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7321912,38210010 +What is the hs code for BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8103707,38210010 +What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7335617,38210010 +What is the hs code for BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7363785,38210010 +What is the hs code for BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8081784,38210010 +What is the hs code for BOTTLE DNASE TEST AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8109825,38210010 +What is the hs code for BOTTLE DESOXYCHOLATE CITRATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7114749,38210010 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8114795,38210010 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8031768,38210010 +What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7291775,38210010 +What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7349833,38210010 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 8068984,38210010 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8032527,38210010 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8032527,38210010 +What is the hs code for BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7075670,38210010 +What is the hs code for BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7156779,38210010 +What is the hs code for BOTTLE UNIVERSAL PREENRICHMENT BROTH 500 (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8003533,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 4 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6342760,38210010 +What is the hs code for BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7212562,38210010 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8032527,38210010 +What is the hs code for BOTTLE RVS SOY BROTH 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7332690,38210010 +What is the hs code for PLATE TSA IC XT PACK 90MM 100EA (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8109781,38210010 +What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8092912,38210010 +What is the hs code for VIAL TINSDALE ENRICHMENT 6X15ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8116913,38210010 +"What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8101679",38210010 +What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7254884,38210010 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7356665,38210010 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7338913,38210010 +"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8068947,8101875",38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7153980,38210010 +"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8075737,...",38210010 +What is the hs code for BEADS SPHEROTECH 6-PEAK 2X4ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),38210010 +What is the hs code for CD4 PERCP SK3 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7348718,38210010 +What is the hs code for CD34 PE-CY7 8G12 Y7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8116646,38210010 +What is the hs code for CD38 APC HB7 100 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8074869,38210010 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8005840,38210010 +What is the hs code for CD3 APC-H7 SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8118706,38210010 +What is the hs code for CD34 PERCP CY5.5 8G12 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8115842,38210010 +What is the hs code for ANTI-MPO FITC 5BB 50 TESTS RUO/ (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8078589,38210010 +What is the hs code for CD7 APC (M-T701) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8124755,38210010 +What is the hs code for CD79A PE HM47 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8099949,38210010 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7356665,38210010 +What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8032932,38210010 +What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT 10X10MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7228748,38210010 +"What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7220790",38210010 +What is the hs code for VIAL SHIGELLA ANTIS POLY A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6351747,38210010 +What is the hs code for BOTTLE FOLIC ACID ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7277529,38210010 +What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8068562,38210010 +What is the hs code for BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7332595,38210010 +What is the hs code for VIAL SAL O ANTISERUM FACTOR 12 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7342874,38210010 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8005940,38210010 +What is the hs code for VIAL SAL H ANTISERUM POLY A 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8026563,38210010 +What is the hs code for VIAL SAL O ANTISERUM GRP A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7160930,38210010 +What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 800591,38210010 +What is the hs code for VIAL E COLI O ANTISERUM O157 SEROL TEST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7321876,38210010 +What is the hs code for VIAL NOVOBIOCIN SUPPLEMENT 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8095662,38210010 +What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7256877,38210010 +What is the hs code for CD3 APC SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8064632,38210010 +What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8078616,38210010 +What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8046791,38210010 +What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8134604,38210010 +What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8075807,38210010 +What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8046521,38210010 +What is the hs code for CD10 PE-CY7 HI10A 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8142706,38210010 +What is the hs code for CD19 PE-CY7 SJ25C1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8109758,38210010 +What is the hs code for ANNEXIN V FITC APOP DTEC KIT I 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8029889,38210010 +What is the hs code for HU CD64 APC-H7 10.1 50TST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8039787,38210010 +What is the hs code for HU CD36 HORIZON V450 CB38 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7251514,38210010 +What is the hs code for HU CD7 APC M-T701 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8018957,38210010 +What is the hs code for HU CD3 BV421 UCHT1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8036773,38210010 +What is the hs code for BD CST BEADS KIT 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 80759,38210010 +What is the hs code for CD3 APC-H7 SK7 100TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8118706,38210010 +What is the hs code for CD7 APC (M-T701) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8124755,38210010 +What is the hs code for CD43 APC-H7 (1G10) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8115549,38210010 +What is the hs code for CD38 APC-H7 (HB7) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8135875,38210010 +What is the hs code for CD25 PE 2A3 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8064502,38210010 +What is the hs code for HUMAN FOXP3 STAINING KIT PE 100 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),38210010 +What is the hs code for MS CD4 PE H129.19 200UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8033706,38210010 +What is the hs code for GOLGI PLUG PROTEIN TRSNP INHB 1ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7146718,38210010 +What is the hs code for HU CD14 APC M5E2 25 TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7195873,38210010 +What is the hs code for BEADS SPHEROTECH S PEAK VALIDATION 4ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),38210010 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8124811,38210010 +What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7354884,38210010 +What is the hs code for MS CD8A FITC 53-6.7 25UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7122801,38210010 +What is the hs code for GEMCITABINE HYDROCHLORIDE (BHN BAKU OBAT) COA 180521,29349990 +What is the hs code for OXILIPLATIN (BHN BAKU OBAT) COA L20180408,28439000 +What is the hs code for DOPAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA.18100236,29222900 +What is the hs code for NATTOKINASE (BHN BAKU OBAT)COA H185SAF001,29146200 +"What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA.18100393, 395",29221990 +What is the hs code for GINKGO BILOBA DRY EXTRACT HF (BHN BAKU SUPLEMEN) COA 17451,38249999 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA ROA165187,28363000 +What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-004-V,38249999 +What is the hs code for EPA DHA 44 37 (BHN SUPLEMEN KESEHATAN) COA EE4437-180612,29061300 +What is the hs code for CLAIR BLANCHE (BHN BAKU KOSMETIK) COA 180797,38249999 +What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 180854,13021950 +What is the hs code for TEFOSE 63 (BHN BAKU SUPLEMEN) COA 169232,28399000 +What is the hs code for COMPRITOL 888 ATO (BHN BAKU SUPLEMEN) COA 169630,28399000 +What is the hs code for GELUCIRE 44/14 (BAHAN BAKU SUPLEMEN) COA 169573,28399000 +What is the hs code for PLURESSENCE LEMON 5001 BA (BAHAN BAKU SUPLEMEN) COA 5140428,28399000 +What is the hs code for GELOIL SC (BHN BAKU SUPLEMEN) COA 169611,28399000 +What is the hs code for SUPPOCIRE BM PELLETS (BHN BAKU SUPLEMEN) COA 18E0405,28399000 +What is the hs code for NOREPINEPHRINE BITARTRATE (BHN BAKU OBAT) COA 440104,29379010 +What is the hs code for DL. ALPHA TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT17050110,29362800 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518050123",29420000 +What is the hs code for PARSOL HS (BHN BAKU KOSMETIK) COA 1017090017,29420000 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518050123",29420000 +"What is the hs code for PARSOL HS, 10KG BAG (BHN BAKU KOSMETIK) COA 1017090018, 19",29420000 +"What is the hs code for VITAMIN MINERAL PREMIX 170299 (BHN BAKU MAKANAN) COA XW91805294, 95",21069059 +"What is the hs code for VITAMIN MINERAL PREMIX 170299 (BHN BAKU MAKANAN) COA XW91805292,93",21069059 +"What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB00318911",29362700 +"What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB00318911",29362700 +What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-0890618,29334910 +"What is the hs code for LIFE'S DHA S35-O100, 5KG ALUF (B.BAKU SUPLEMEN) COA VY00249313",29362500 +"What is the hs code for FLORAGLO LUTEIN 20PCT SAF, 1KG ALUF (BHN BAKU SUPLEMEN) COA UE01803014",32030010 +What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 61026P,38249999 +"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1810187, 212, 214",29242930 +"What is the hs code for METAMIZOLE SODIUM (BHN BAKU OBAT) COA 1803381,82,88, 89",29331100 +"What is the hs code for ACETYLSALICYLIC ACID (BHN BAKU OBAT) COA 18051548, 51452",29182200 +What is the hs code for NEBIVOLOL HYDROCHLORIDE(BHN BAKU OBAT) COA NH0100518,29329990 +What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA 102180404,29419000 +What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA. 8MT180357,30032000 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606129,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606200,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606201,38249999 +What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606126,39061090 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606128,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606127,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605929,38249999 +What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606137,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606130,38249999 +What is the hs code for ACRYL EZE PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606140,39061090 +What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606141,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604287,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605755,38249999 +What is the hs code for OPADRY VIOLET (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606157,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606157,38249999 +What is the hs code for PIGMENT BLEND YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606123,32151900 +What is the hs code for PIGMENT BLEND YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606123,32151900 +What is the hs code for PIGMENT BLEND YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606123,32151900 +What is the hs code for ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606125,39061090 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606131,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606132,38249999 +What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606124,32151900 +What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606124,32151900 +What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606124,32151900 +What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605914,38249999 +"What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1806041 S/D 44, 46, 216,219 S/D 222",29224900 +What is the hs code for CAROPHYLL YELLOW 10PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA UE01709534,32041900 +"What is the hs code for CAROPHYLL RED 10PCT, 5KG BAG ALU (BHN BAKU OBAT UTK PAKAN TERNAK) COA UE01802573",32041900 +"What is the hs code for ROVIMIX AD3 1000/200, 20KG BAG (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT18040317",29362100 +What is the hs code for ROVIMIX D3-500 (BHN BAKU OBAT UTK PAKAN TERNAK) COA UE01711038,29362900 +"What is the hs code for RONOZYME (R) HIPHOS GT, 25KG BAGDK (BHN BAKU OBAT UTK PAKAN TERNAK) COA HK921274",29369000 +"What is the hs code for VC CALCIUM ASCORBATE, 25KG BAL (BHN BAKU SUPLEMEN) COA HPT1805006",29362700 +"What is the hs code for CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 20180604",38249999 +What is the hs code for PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) COA PH01230118,38249999 +What is the hs code for CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA. 1GC01CLB ZP48D 250MT,38249999 +What is the hs code for NYSTATIN (BHN BAKU OBAT) COA.C130790,29419000 +What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BIO5907,29349990 +What is the hs code for AMBROXOL HYDROCHLORIDE POWDER (BHN BAKU OBAT) COA AHM/18082 S/D 18084,29221990 +"What is the hs code for DOCUSATE SODIUM (BHN BAKU OBAT), COA SD6060320, SAMPLE NO COMMERCIAL VALUE",29171900 +"What is the hs code for DOCUSATE SODIUM (BHN BAKU OBAT) COA SD7071636, SAMPLE NO COMMERCIAL VALUE",29171900 +What is the hs code for METHOCEL K4M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I11005,39123900 +What is the hs code for ETHOCEL STANDARD 20 PREMIUM... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D184HC1021,39123900 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180519,17029019 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP05518,28363000 +"What is the hs code for BICAR FOOD 27/50 SODIUM BICARBONATE (B.BAKU OBAT) COA MTP15918, SAMPLE NO COMM VALUE",28363000 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO171102,38249999 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO171102,38249999 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO171102,38249999 +What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIV171001-BGBIO,38249999 +What is the hs code for POMEGRANATE OF AQORES HYDROGLYCERINED EXTRACT (BHN BAKU KOSMETIK) COA PUGA180501-GL,38249999 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO180601,38249999 +"What is the hs code for PARSOL HMS ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0418020041",29420000 +What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P8Q09QA000,29420000 +What is the hs code for SALBUTAMOL SULPHATE BP (BHN BAKU OBAT) COA SLL/SS/0618032,29225090 +What is the hs code for SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 1801761339,29322090 +What is the hs code for CORTISONE ACETATE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1700941534,29372900 +What is the hs code for CHLOROLINE (BHN BAKU KOSMETIK) COA 769016299J,38249999 +What is the hs code for PRO LIPO TM NEO (BHN BAKU KOSMETIK) COA 1809602,38249999 +What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016098J,38249999 +What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830016073J,38249999 +"What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK), COA 5497417",38249999 +"What is the hs code for ABYSSINE 657 BHN BAKU KOSMETIK, COA 5541718",38249999 +What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829015924J,38249999 +What is the hs code for CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785016095J,38249999 +What is the hs code for MELANOSTATINE 5BG (50PPM) (BHN BAKU KOSMETIK) COA 817046077J,38249999 +What is the hs code for MELANOSTATINE 5BG (50PPM) (BHN BAKU KOSMETIK) COA 817046330J,38249999 +What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016246J,38249999 +What is the hs code for PROGELINE (BHN BAKU KOSMETIK) COA 820055712H,38249999 +What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016246J,38249999 +"What is the hs code for TSPL-30-ID (BHN BAKU KOSMETIK) , COA 703009, SAMPLE NO COMMERCIAL VALUE",38249999 +"What is the hs code for KF-6048 (BHN BAKU KOSMETIK) , COA 803019, SAMPLE NO COMMERCIAL VALUE",38249999 +"What is the hs code for KF-96A-20CS (BHN BAKU KOSMETIK) COA 803801, SAMPLE NO COMMERCIAL VALUE",38249999 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP16718,28363000 +"What is the hs code for CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 018.436, 018.453",90189090 +What is the hs code for RESTYLANE SKINB VITLIDO 1MLD16 (BHN BAKU OBAT) COA 15926-1,90189090 +What is the hs code for RESTYLANE SKINB VITALLGHLIDO 1MLD16 (BHN BAKU OBAT) COA 16112-1,90189090 +"What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML (BHN BAKU OBAT) COA 15912-2, 15925-1",90189090 +What is the hs code for RESTYLANE REFYNE 1ML (BHN BAKU OBAT) COA 15842-1,90189090 +"What is the hs code for RESTYLANE DEFYNE 1ML (BHN BAKU OBAT) COA 15856-1, 16013-1",90189090 +What is the hs code for SK BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK)COA PSFAC-012568,38249999 +What is the hs code for SK BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK) COA CPG-421968,38249999 +What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-021168,38249999 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA RBA1731800,28363000 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605790,39061090 +What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606222,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606154,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606214,38249999 +What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606215,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606216,38249999 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606227,38249999 +What is the hs code for OPADRY 200 PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606219,38249999 +What is the hs code for OPADRY BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606217,38249999 +What is the hs code for OPADRY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606236,38249999 +What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606210,38249999 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606213,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606233,38249999 +What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606209,39061090 +What is the hs code for OPADRY PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606234,38249999 +What is the hs code for OPADRY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606235,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605871,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606228,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605929,38249999 +What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606223,39061090 +What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606226,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606225,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606221,38249999 +What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606210,38249999 +What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606208,39061090 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606218,38249999 +What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA Q900400,29419000 +What is the hs code for CEFOPERASONE SODIUM STERILE (BHN BAKU OBAT) COA R900400,29419000 +What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.18100462,29391900 +What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.18100462,29391900 +"What is the hs code for AMOXICILLIN TRIHYDRATE PURIMOX COMPACTED GRADE A(BHN BAKU OBAT) COA M530079,94",29411019 +What is the hs code for AMOXICILLIN TRIHYDRATE PURIMOX POWDER (BHN BAKU OBAT) COA M483755,29411019 +"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT )COA.ASG/06/050618, ...060618",29420000 +"What is the hs code for PURIDROX TM COMPACTED, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B340002,4,5,7",29419000 +What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA. 20180612,11081200 +What is the hs code for SODIUM SALICYLATE (BHN BAKU KOSMETIK)COA 201702009,38249999 +What is the hs code for KETOPROFEN SALE DI LISINA (BHN BAKU OBAT) COA 187667,29183000 +What is the hs code for HU CD195 APC 2D7/CCR5 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7286766,38210010 +What is the hs code for HU CD184 PE 12G5 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8086757,38210010 +What is the hs code for HU CD11C BV421 B-LY6 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7125636,38210010 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180603,17029019 +"What is the hs code for OXYTETRACYCLINE DIHYDRATE (BHN BAKU OBAT UTK PAKAN TERNAK) COA ZT1800428,536",29413000 +What is the hs code for IRBESARTAN (BHN BAKU OBAT) COA C5465-17-051 S/D 53,29332900 +What is the hs code for MICONAZOLE NITRATE (BHN BAKU OBAT) COA H20180601,29332900 +What is the hs code for LINCOMYCIN HCL EP (BHN BAKU OBAT) COA 1805023,29419000 +What is the hs code for METHYL SULFONYL METHANE USP (BHN BAKU OBAT) COA 20180602,29309090 +What is the hs code for METHYL SULFONYL METHANE USP (BHN BAKU OBAT) COA 20180608,29309090 +"What is the hs code for TETRACYCLINE HYDROCHLORIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 180604-61, 62",29413000 +What is the hs code for CROSPOVIDONE XL-10 (BHN BAKU OBAT) COA PP180507XL-10,39059990 +What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT676237,32151900 +What is the hs code for OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT676238,32151900 +What is the hs code for OPASPRAY BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT676239,32151900 +What is the hs code for OPASPRAY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT676240,32151900 +What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT674313,32151900 +What is the hs code for OPAGLOS YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT676241,32151900 +What is the hs code for OPATINT RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT675418,32151900 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT18010783,29362100 +"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91805438,5439",29420000 +"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000173224,172349,173095",29362900 +"What is the hs code for PARSOL 1789, 20 KG BOX (BHN BAKU KOSMETIK) COA 0318040613,614,615",29420000 +"What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA MCS1605181",29420000 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01803026,29362400 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL1803026,29362400 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01803026,29362400 +What is the hs code for KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0281017,29339990 +What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0023236,38249999 +What is the hs code for LOTUS NELUMBIUM NEL.FLOWER (BHN BAKU KOSMETIK) COA AM070124,13021950 +What is the hs code for RALTEGRAVIR POTASSIUM (BHN BAKU OBAT) COA RLTE/A302/8D/37,29061300 +"What is the hs code for CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 201806T-CCH",38249999 +What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702646305,29372900 +"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1711150,1801005",29362300 +What is the hs code for OLIO VINACCIOLI RAFFINATO (BHN BAKU KOSMETIK) COA.B1800069,15152919 +What is the hs code for MILD TALCUM MOD1 (BHN BAKU KOSMETIK) COA 10300129,38249999 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO180602,38249999 +"What is the hs code for WHITE WILLOW BARK 50PCT BHN BAKU KOSMETIK, COA 20161014-610",13021950 +What is the hs code for CLOTRIMAZOLE MICRONIZED (BHN BAKU OBAT ) COA 201712140177,29332900 +What is the hs code for MOXIFLOXACIN HYDROCHLORIDE(BHN BAKU OBAT) COA MP0060517,29334990 +What is the hs code for MOXIFLOXACIN HYDROCHLORIDE (BHN BAKU OBAT) COA MP0060618,29334990 +What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 201800193,28183000 +What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110004,32041900 +What is the hs code for VITAMIN B12 1PCT SD (BHN BAKU SUPLEMEN) COA UT18050006,29362600 +"What is the hs code for COATED ASCORBIC ACID, TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01804552",29362700 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18030018,32030010 +What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17110018,29420000 +What is the hs code for VITAMIN A AND D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18020037,29362100 +What is the hs code for VITAMIN A AND D3 WATER MISCIBLE 100 (BHN BAKU SUPLEMEN) COA UT17110053,29362100 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00218192,29362800 +What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110004,32041900 +What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF... (BHN BAKU SUPLEMEN) COA UE01803014,32030010 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180621,17029019 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607096,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607095,38249999 +What is the hs code for LIQUORICE LC (BHN BAKU KOSMETIK) COA.110657/P78475-P78478,13021920 +"What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) , COA 806966",38249999 +What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 18061806,38249999 +What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00318213,29362100 +What is the hs code for P.GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 32446/M1,13021990 +What is the hs code for MIRTOGENOL (R) (BHN BAKU SUPLEMEN) COA 80376/M,38249999 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP18063563, XP18063564",29211900 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP18063346, XP18063347",29211900 +What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND170703,29372200 +What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA.18100482,29395900 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518060151",29420000 +What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 270518,25070000 +What is the hs code for MAX11013 (BHN BAKU MAKANAN) COA XW91806255,21069059 +"What is the hs code for LIGHT LIQUID PARAFFIN BP (SAVONOL 16) BAHAN BAKU KOSMETIK, COA.LDC 18218T",27101990 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP17618,28363000 +What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA MTP18218,28363000 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518060151",29420000 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518060151",29420000 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518060151",29420000 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518060151",29420000 +What is the hs code for IONOL CP (BHN BAKU KOSMETIK) COA 01117118,29420000 +What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA WP780946,32151900 +What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP787039,32151900 +What is the hs code for FD AND C RED #40 ALLURA RED AC AL...(BHN BAKU OBAT UTK PEWARNA TABLET) COA WP794082,32151900 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607210,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607160,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607123,38249999 +What is the hs code for OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607159,38249999 +What is the hs code for SOLUTION DECONTAMINATION CONCENTRATE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 18D2556778,38210010 +What is the hs code for KIT C6 FLOW CYTO STARTER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),38210010 +"What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8108705",38210010 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7341765,38210010 +What is the hs code for PLATE TSA W LP IC XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8128688,38210010 +What is the hs code for BOTTLE PEPSIN 1 TO 10000 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242856,38210010 +"What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8023610",38210010 +What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7262700,38210010 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8053834,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242852,38210010 +What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8129687,38210010 +What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8015615,38210010 +"What is the hs code for BOTTLE SABOURAUD DEXTROSE 500G...(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8031768,8066789",38210010 +What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7291775,38210010 +What is the hs code for BOTTLE NUTRIENT AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7349833,38210010 +What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7157987,38210010 +What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7262700,38210010 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8053804,38210010 +"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8068984",38210010 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8058565,38210010 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7095842,38210010 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8053834,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242852,38210010 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8012609,38210010 +What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8129687,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079535,38210010 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7278689,38210010 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7018890,38210010 +What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060815,38210010 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8094796,38210010 +What is the hs code for BOTTLE CASITONE 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8164638,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8066869,38210010 +What is the hs code for BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8023900,38210010 +What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8029645,38210010 +What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8064638,38210010 +"What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8074670,811375",38210010 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8059906,38210010 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8054962,38210010 +What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8032581,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8066869,38210010 +What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8129687,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8079535,38210010 +"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8079887,...",38210010 +What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8087945,38210010 +What is the hs code for BOTTLE POLYPEPTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8155588,38210010 +What is the hs code for BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8086753,38210010 +What is the hs code for PLATE TSA LC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8128683,38210010 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8079887,38210010 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8094796,38210010 +What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8101836,38210010 +What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8031738,38210010 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8128684,38210010 +What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7157987,38210010 +What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8079881,38210010 +What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7332690,38210010 +What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7297698,38210010 +What is the hs code for PLATE TSA LC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8128683,38210010 +What is the hs code for BOTTLE COOKED MEAT MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6123884,38210010 +What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7103675,38210010 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7095842,38210010 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8066789,38210010 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 7278689,38210010 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8053834,38210010 +What is the hs code for BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8012999,38210010 +What is the hs code for BOTTLE STANDARD METHODS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8057835,38210010 +What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7102731,38210010 +What is the hs code for BOTTLE M TGE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8037685,38210010 +What is the hs code for BOTTLE D-MANNOSE 25G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7135976,38210010 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7338913,38210010 +"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8128800",38210010 +What is the hs code for VIAL TINSDALE ENRICHMENT 6X15ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8131963,38210010 +What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8092819,38210010 +What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP Y 1ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6162764,38210010 +"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7354884",38210010 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7356665,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7153980,38210010 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8124811,38210010 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7338913,38210010 +"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8101875,8120718,..",38210010 +What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8121789,38210010 +What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8145547,38210010 +What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8094872,38210010 +What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8109595,38210010 +What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8094883,38210010 +What is the hs code for CD10 FITC HI10A 5 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8134604,38210010 +"What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8057807",38210010 +What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8046521,38210010 +What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8033517,38210010 +"What is the hs code for ANTI HLA-DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8015843,...",38210010 +What is the hs code for CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8122889,38210010 +What is the hs code for HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8081908,38210010 +What is the hs code for ANTI-MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8078589,38210010 +What is the hs code for CD4 V4 FITC L120 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7108877,38210010 +What is the hs code for CD56 APC NCAM16.2 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8072654,38210010 +What is the hs code for CD10 PE-CY7 HI10A 100TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8142706,38210010 +What is the hs code for HU CD10 BV421 HI10A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8109662,38210010 +What is the hs code for HU CD138 BV421 MI15 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7341707,38210010 +What is the hs code for CD20 V500-C RUO (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8150884,38210010 +What is the hs code for CD200 APC (MRC OX-104) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8092811,38210010 +What is the hs code for FASTIMMUNE CD56/CD69/CD45 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8072998,38210010 +"What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8046743, 8134776",38210010 +What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8032932,38210010 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6309655,38210010 +What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8092819,38210010 +What is the hs code for BOTTLE LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 7220822,38210010 +What is the hs code for VIAL PENICILLINASE 10000000 KU/ML 1 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6306981,38210010 +"What is the hs code for VIAL ISOVITALEX ENRICHMENT 10ML 5 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7275653,...",38210010 +What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8054920,38210010 +What is the hs code for MTOR (PS2448) PE O21-404 507ST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8116629,38210010 +What is the hs code for AKT (PS473) PE M89-61 250TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7208554..,38210010 +What is the hs code for PLATE TRYPTICASE SOY AGAR 5PCT SB 20 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8137910,38210010 +"What is the hs code for LEVAMISOLE (BHN BAKU OBAT UTK PAKAN TERNAK) COA H180309-1,308-1, 308-2, 307-1,301-2",29349990 +What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702646305,29372900 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101852218,17021100 +What is the hs code for ACRYLPOL 980 BAHAN BAKU KOSMETIK) COA 11518015,39069099 +What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU SUPLEMEN) COA 165210,28399000 +What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 01/17GAAK,28399000 +"What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 01/17GAAK, SAMPLE NO COMMERCIAL VALUE",28399000 +What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 165210,28399000 +What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016246J,38249999 +What is the hs code for TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784026310J,38249999 +What is the hs code for LEVOFLOXACIN HEMIHYDRATE USP (BHN BAKU OBAT) COA LF17080046,29349990 +What is the hs code for PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PI18030004,29349920 +"What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 201800256,195",28183000 +What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA MS/70120,39123900 +"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA MS/2460",39123900 +What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA. 20180612,11081200 +What is the hs code for ECODIAR POWDER (HERACLEOTICUM) (BHN BAKU OBAT UTK PAKAN TERNAK) COA. P0118072018,33029000 +What is the hs code for GINKGO EXTRACT (BHN BAKU OBAT) COA 81661611,13021950 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00218192,29362800 +What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB01017666,29362800 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18030018,32030010 +What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17110018,29420000 +What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17110053,29362100 +"What is the hs code for COATED ASCORBIC ACID TYPE EC,25KG BOX (BHN BAKU SUPLEMEN) COA TL01805648",29362700 +"What is the hs code for REDIVIVO (R) LYCOPENE 10PCT FS, 5KG ALU (BHN BAKU SUPLEMEN) COA UE01805001",29420000 +"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000173096, 175262",29362900 +"What is the hs code for PARSOL 340KG, 25KG PC (BHN BAKU KOSMETIK) COA 0218060107",29420000 +"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218060107",29420000 +"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218060107",29420000 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT18020788,789",29362100 +"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT17120040,41",29362600 +What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ80106025,29362700 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80402166,29362200 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ80310073,29362300 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18050008,29362100 +What is the hs code for DRY VITAMIN A ACETATE 325CWS/A (BHN BAKU MAKANAN) COA UT18040004,29362100 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11803008,29362900 +"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT17110096,UT18050003",29362800 +What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01802031,29362700 +What is the hs code for CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB00418077,29362700 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80310073,29362300 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01801750,1758",29362700 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01801758",29362700 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18040126,29362400 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01801758",29362700 +What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91805291,21069059 +What is the hs code for PX 204005 (BHN BAKU MAKANAN) COA XW91806254,21069059 +What is the hs code for PX 204005 (BHN BAKU MAKANAN) COA XW91806254,21069059 +"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT18010010,15,17",29362800 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01801750",29362700 +"What is the hs code for THIAMINE MONONITRATE ( BHN BAKU MAKANAN), COA UQ71103361",29362200 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT18010072,29362900 +What is the hs code for B2 UNIVERSAL FINE POWDER 5KG BAG ALU (BHN BAKU MAKANAN) COA UQ80110011,29362300 +"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01801014,16",32041900 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO)BHN BAKU SUPLEMEN, COA UT18010783",29362100 +"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17110063,64",32041900 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17120036,29362900 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ71103361,29362200 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT18010072,29362900 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01802002,29362900 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01705019,29362900 +"What is the hs code for ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU SUPLEMEN), COA TL01801750",29362700 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI17100009,29362900 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU (TOCO) (BHN BAKU SUPLEMEN) COA UT18020169,29362100 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01801016,32041900 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00817039,29362200 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT17080253,29362400 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT17080253,29362400 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT18010003,29362800 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT18010783,29362100 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT17120041,29362600 +What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ80106025,29362700 +"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01801008",29362400 +"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN), COA WB00917090",29362900 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00517027,29362300 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00517027,29362300 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17120036,29362900 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01802002,29362900 +What is the hs code for D-A-TOCOPHERYL ACETATE(BHN BAKU SUPLEMEN) COA XH20170401,29362800 +"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18050003,15",29362800 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18050003,29362800 +What is the hs code for DRY VITAMIN E 50PCT CWS/S0 (BHN BAKU MAKANAN) COA UT18050003,29362800 +"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01802620,21,34,35",29362400 +"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01802620",29362400 +"What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU MAKANAN) COA TL01802620",29362400 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11803008,29362900 +"What is the hs code for D-PANTHENOL ,20KG PAIL PE(BHN BAKU SUPLEMEN) COA TL01801008",29362400 +What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BI06306,29349990 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101851918A533,17021100 +What is the hs code for FLOWLAC (R) 100 (BHN BAKU OBAT) COA L101501718A537,17021100 +"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK,COA 01/18GL4",28399000 +What is the hs code for ROSUVASTATIN CALCIUM (BHN BAKU OBAT) COA RVM1230518,29359000 +What is the hs code for ESOMEPRAZOLE MUPS 22.5PCT (BHN BAKU OBAT) COA EO1818C001,29333990 +What is the hs code for AMITOSE R (BHN BAKU KOSMETIK) COA KFG,38249999 +What is the hs code for SILASOMA MFA (S) (BHN BAKU KOSMETIK) COA KEF,38249999 +What is the hs code for VEGETAMIDE 18MEA-NJ (BHN BAKU KOSMETIK) COA KCA,38249999 +What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA KEK,38249999 +What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA KDG,38249999 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA KFM,38249999 +What is the hs code for PROMOIS EFLS (BHN BAKU KOSMETIK) COA KGN,38249999 +What is the hs code for DPG FG (BHN BAKU KOSMETIK) COA B01791DG,29094900 +What is the hs code for PG USP (BHN BAKU KOSMETIK) COA B01791UP,29053200 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18050011,29362100 +What is the hs code for ORLISTAT 50PCT WW PELLETS (BHN BAKU OBAT) COA OR/SF/0430718,29061300 +What is the hs code for PHASEOLUS VULGARIS DRY EXTRACT (BHN BAKU SUPLEMEN) COA 32599/M1,13021950 +What is the hs code for NYSTATIN POWDER (BHN BAKU OBAT) COA.C114209,29419000 +What is the hs code for NYSTATIN MICRONIZED (BHN BAKU OBAT) COA C130837,29419000 +What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN1400917,29221990 +"What is the hs code for IZAYOI (BHN BAKU KOSMETIK), COA 180786",13021950 +What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 180807,29329990 +What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 180854,13021950 +What is the hs code for SILYBIN/ PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10837/M1,38249999 +What is the hs code for SILYMARIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10462/M1,38249999 +What is the hs code for SK BIOLAND MULBERRY EXTRACT (BHN BAKU KOSMETIK)COA MUB-010448,38249999 +What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-082148,38249999 +What is the hs code for SK BIOLAND SNAIL SECREATION FILTRATE (BHN BAKU KOSMETIK)COA SAFW-020638,38249999 +What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-021168,38249999 +"What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-041458, SFP-N-051868",38249999 +What is the hs code for CEFTRIAXONE SODIUM STERILE (BHN BAKU OBAT) COA 3051806020,29419000 +What is the hs code for CEFOTAXIME SODIUM STERILE (BHN BAKU OBAT) COA 3041806048,29419000 +What is the hs code for COMPLEX BROWN HAIR (BHN BAKU KOSMETIK)COA JURF180701,38249999 +What is the hs code for COMPLEX FAIR HAIR (BHN BAKU KOSMETIK)COA MAC180701,38249999 +What is the hs code for COMPLEX HAIR LUSTRE - KARKADE (BHN BAKU KOSMETIK)COA HSK180101,38249999 +What is the hs code for HORSECHESTNUT PHYTELENE EG 042 (BHN BAKU KOSMETIK)COA EG042-180601,38249999 +What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA180704,38249999 +What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA180704,38249999 +What is the hs code for HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIE170702,38249999 +What is the hs code for ROSA DAMASCENA ORGANIC DISTILLATE 1:20 (BHN BAKU KOSMETIK) COA ROSD180704-BIO,38249999 +What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-180702,38249999 +What is the hs code for INCA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK) COA II180608-AI-D-BIO,38249999 +What is the hs code for SAFFLOWER REFINED OIL (BHN BAKU KOSMETIK) COA CARHR180701-DW,38249999 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO180703,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-180605,38249999 +What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA EG543-180605,38249999 +What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-180602-GS,38249999 +What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-180602-GS,38249999 +What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180040 S/D 45,29420000 +"What is the hs code for ETHYL PANTHENOL ,20KG PAIL PE(BHN BAKU KOSMETIK) COA TL01710818",29362400 +"What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0718030056",29420000 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01705019,29362900 +"What is the hs code for STAY-C (R) 50,5KG BAG ALU EX US (BHN BAKU KOSMETIK) COA UT17070104",29362700 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01705019,29362900 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18050096,29362800 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01705019,29362900 +"What is the hs code for STAY-C (R) 50, 20KG BOX NA (BHN BAKU KOSMETIK) COA UT17090162,17120220,18010226",29362700 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318040620,623,624",29420000 +"What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01803635",29362400 +"What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01803635",29362400 +"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01803635",29362400 +"What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU MAKANAN) COA TL01803635",29362400 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17110064,32041900 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI17100009,29362900 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ71213302,29362500 +What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607481,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607489,38249999 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180703,17029019 +What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA.121808875,29054300 +"What is the hs code for DOCUSATE SODIUM (BHN BAKU OBAT), COA SD8022810",29171900 +"What is the hs code for DOCUSATE SODIUM (BHN BAKU OBAT), COA SD8022810",29171900 +What is the hs code for MEFENAMIC ACID COMPACTED (BHN BAKU OBAT) COA MFAC-1805050-A,29224900 +What is the hs code for CITICOLINE SODIUM (BHN BAKU OBAT) COA 180412,29349990 +What is the hs code for MEROPENEM TRIHYDRATE WITH SODIUM CARBONATE STERILE (BHN BAKU OBAT)COA S0820180414,30032000 +"What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P8Q28PA000, 29PA000,30PA000",29420000 +"What is the hs code for D-PANTHENOL 75L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01805326",29362400 +What is the hs code for MILD TALCUM MOD1 (BHN BAKU KOSMETIK) COA 10300133,38249999 +What is the hs code for ANTISHINE WASH (BHN BAKU KOSMETIK) COA 10300002,38249999 +What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121808870,28363000 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 121808672, 8676, 8862, 8869",28363000 +"What is the hs code for DOBUTAMINE HCL (BHN BAKU OBAT), COA 18100465",29222900 +"What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA.18100482, 525",29395900 +What is the hs code for LANSOPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA LPC18035,29333990 +What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA R700500,29419000 +"What is the hs code for ECODIAR POWDER (HERACLEOTICUM)B. BAKU UTK OBAT UTK PAKAN TERNAK, COA OIL O611",33029000 +What is the hs code for METHOCEL E4M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180FB8021,39123900 +What is the hs code for METHOCEL E6 PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011HC2L02,39123900 +What is the hs code for METHOCEL E4M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180H5P032,39123900 +What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180HCP002,39123900 +What is the hs code for METHOCEL K100M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180HBQ001,39123900 +What is the hs code for METHOCEL K100M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180HBK003,39123900 +What is the hs code for METHOCEL K100 PREMIUM LVCR ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180H71022,39123900 +What is the hs code for METHOCEL K100 PREMIUM LVCR ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I1J021,39123900 +What is the hs code for METHOCEL K100 PREMIUM LVCR ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180F3M022,39123900 +What is the hs code for METHOCEL K100 PREMIUM LVCR ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180H88021,39123900 +What is the hs code for NEOMYCIN SULPHATE USP (BHN BAKU OBAT) COA 201806030,29419000 +What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-180604,29397900 +What is the hs code for IMWITOR (R) GMIS (BAHAN BAKU KOSMETIK) COA 807023,38249999 +What is the hs code for ETHOCEL STANDARS 14 PREMIUM (BHN BAKU OBAT UTK PEWARNA TABLET) COA D184I39021,39123900 +What is the hs code for PERMETHRIN (PHARMA GRADE) BHN BAKU OBAT COA 184046001,29163990 +What is the hs code for METAMIZOLE SODIUM (BHN BAKU OBAT) COA 1803392,29331900 +"What is the hs code for THEOPHYLLINE ANHYDROUS (B. BAKU OBAT) COA 18039 S/D 41, 18115 S/D 118",29395900 +What is the hs code for CLONIDINE HCL (BHN BAKU OBAT) COA 180839,29332900 +What is the hs code for CHOLINE L-BITARTRATE (BAHAN BAKU OBAT) COA.3015183,29231000 +What is the hs code for ERYTHROSINE AL 38PCT- 42PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP798863:1,32151900 +What is the hs code for FDANDC BLUE #2/INDIGO CARMINE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP795448,32151900 +What is the hs code for FDANDC BLUE #2/INDIGO CARMINE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP795444,32151900 +What is the hs code for DANDC YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP788730,32151900 +What is the hs code for COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-1711133,38249999 +What is the hs code for MAGNOLIA BARK EXTRACT (BHN BAKU KOSMETIK) COA MBE05-180601,38249999 +What is the hs code for MAGNOLIA BARK EXTRACT (BHN BAKU KOSMETIK) COA MBE05-180301,38249999 +What is the hs code for 87-28-5 SALICYLIC ACID ETHYLENE GLYCOL ESTER/GLYCOL SALICYLATE (B.BAKU KOSMETIK)COA.DE180722,38249999 +What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5541718,38249999 +What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829015924J,38249999 +What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829015924J,38249999 +What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830016094J,38249999 +"What is the hs code for CAPIXYL (BHN BAKU KOSMETIK), COA 830016074J",38249999 +What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785016298J,38249999 +What is the hs code for EXO-T (BHN BAKU KOSMETIK) COA 715016096J,38249999 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1803403,38249999 +What is the hs code for MINIPORYL (BHN BAKU KOSMETIK) COA 832016173J,38249999 +What is the hs code for PRO-LIPO TN NEO (BHN BAKU KOSMETIK) COA 1809401,38249999 +What is the hs code for SWT-7TM L (BHN BAKU KOSMETIK) COA 1807903,38249999 +What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015909H,38249999 +What is the hs code for LANABLUE (BHN BAKU KOSMETIK) COA 5533018,38249999 +"What is the hs code for LANACHRYS 2B PF (PRESERVATIVE)BHN BAKU KOSMETIK, COA 5523017",38249999 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1803403,38249999 +What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015528H,38249999 +What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 270518,25070000 +What is the hs code for CITRIC ACID MONOHYDRATE BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 1AX1806043,29181400 +What is the hs code for CORN STARCH (BHN BAKU OBAT) COA 20180720,11081200 +"What is the hs code for PREMIX MY200318-SD (BHN BAKU MAKANAN) COA E180000577, SAMPLE NO COMMERCIAL VALUE",21069059 +What is the hs code for RESTYLANE SUBQ 2 ML D16 (BHN BAKU OBAT) COA 15351-1,90189090 +What is the hs code for RESTYLANE SKINB VITLIDO 1MLD16 (BHN BAKU OBAT) COA 16037-2,90189090 +What is the hs code for RESTYLANE SKINB VITALLGHLIDO 1MLD16 (BHN BAKU OBAT) COA 16112-1,90189090 +What is the hs code for RESTYLANE SKINB VITALLGHLIDO 1MLD16 (BHN BAKU OBAT) COA 16191-1,90189090 +What is the hs code for RESTYLANE VOLYME 1ML (BHN BAKU OBAT) COA 16046-1,90189090 +What is the hs code for RESTYLANE DEFYNE 1ML (BHN BAKU OBAT) COA 16013-1,90189090 +What is the hs code for RESTYLANE KYSSE 1ML (BHN BAKU OBAT) COA 15887-1,90189090 +What is the hs code for RESTYLANE KYSSE 1 ML (BHN BAKU OBAT) COA 15900-1,90189090 +What is the hs code for CALCIUM CARBONATE (BHN BAKU OBAT) COA 22.12.2017/25/120,25090000 +What is the hs code for OPADRY ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA642118,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA641951,38249999 +What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 18051103,38029090 +What is the hs code for IMERCARE 04K (BHN BAKU KOSMETIK) COA 18051103,38029090 +What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ80407002,29420000 +What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT18010008,29362500 +What is the hs code for VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18060038,29362100 +What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT18010008,29362500 +"What is the hs code for CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 20180712",38249999 +What is the hs code for IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S281/8,38029090 +"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 18042501, 18041301",38029090 +What is the hs code for THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000013171,33029000 +What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA.0000013179,33029000 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607175,38249999 +What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607179,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607194,38249999 +What is the hs code for OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607169,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606993,38249999 +What is the hs code for OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606459,38249999 +What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607174,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607180,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607565,38249999 +What is the hs code for OPADRY 200 GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607179,38249999 +What is the hs code for OPADRY AMB PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607172,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607173,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607732,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607182,39061090 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605718,38249999 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607181,39061090 +What is the hs code for VALERIAN D.H.E.0.8PCT VAL .AC (BAHAN BAKU SUPLEMEN) COA 10784/M1,13021950 +"What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334570",29419000 +"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1851079, 1810699",29242930 +"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1810639, 1810856,1851099",29242930 +What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA.M113093,29339990 +"What is the hs code for AMIKACIN SULFATE (BHN BAKU OBAT) COA 8F0011H20, ...12H20,...13H20",29419000 +What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK)COA MUP-0121168,38249999 +"What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-051868, 060678",38249999 +What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK)COA 062818,38249999 +What is the hs code for SK BIOLAND CUCUMBER EXTRACT (BHN BAKU KOSMETIK) COA CUPD-022648,38249999 +What is the hs code for SK BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-010858,38249999 +What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-062378,38249999 +What is the hs code for SK BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK)COA CPG-472678,38249999 +What is the hs code for SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-020538,38249999 +What is the hs code for THIOGLYCOLIC ACID 99PCT COSMETIC GRADE (BHN BAKU KOSMETIK) COA.0000063992,29309090 +"What is the hs code for AMMONIUM THIOGLYCOLATE 71PCT(60PCT TGA) BHN BAKU KOSMETIK, COA.0000063993",29309090 +"What is the hs code for MONOETHANOLAMINE THIOGLYCOLATE 83PCT (50PCT TGA) BHN BAKU KOSMETIK, COA 0000063994",29221100 +"What is the hs code for AMMONIUM THIOGLYCOLATE 71PCT (60PCT TGA) B.BAKU KOSMETIK,COA 0000064010, SAMPLE NO COMM VALUE",29309090 +"What is the hs code for DIAMMONIUM DITHIODIGLYCOLATE 48PCT... (B. BAKU KOSMETIK), COA 0000064012,SAMPLE NO COMM VALUE",29309090 +"What is the hs code for MONOETHANOLAMINE THIOGLYCOLATE 83PCT ...(B. BAKU KOSMETIK), COA 0000064013,SAMPLE NO COMM VALUE",29221100 +"What is the hs code for POTASSIUM THIOGLYCOLATE 43PCT (30PCT TGA)B. BAKU KOSMETIK, COA 0000064037,SAMPLE NO COMM VALUE",29309090 +"What is the hs code for THIOGLYCOLIC ACID 99PCT PURE, B BAKU KOSMETIK, COA 0000064039, SAMPLE NO COMM VALUE",29309090 +"What is the hs code for THIOGLYCOLIC ACID 80PCT, COSMETIC GRADE (BHN BAKU KOSMETIK) COA 64040,SAMPLE NO COMM VALUE",29309090 +"What is the hs code for KAHLWAX 2956 (BHN BAKU KOSMETIK) COA F1827017-001, F1827018-002",15211000 +What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607800,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607792,38249999 +What is the hs code for OPADRY II GRAY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607799,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607791,38249999 +What is the hs code for OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607810,38249999 +"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000175263,64",29362900 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ70813199,29362500 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01803026,29362400 +"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218060107",29420000 +What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91807108,29420000 +"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218060107",29420000 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518060153",29420000 +"What is the hs code for PARSOL EHS ,25KG PC (BHN BAKU KOSMETIK) COA 0718030056",29420000 +What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES1702026,29420000 +"What is the hs code for STAY-C (R) 50, 5KG BAG ALU EX US (BHN BAKU KOSMETIK) COA UT17070104",29362700 +"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01803026,38,39",29362400 +What is the hs code for FENOFIBRATE MICRONIZED (BHN BAKU OBAT) COA W-F03-20180511-01,29189900 +What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607581,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607576,38249999 +What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607593,39061090 +What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607594,39061090 +What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607575,38249999 +What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607583,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607578,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607577,38249999 +What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607580,38249999 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607182,39061090 +What is the hs code for OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606459,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607588,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607579,38249999 +What is the hs code for ACRYL-EZE PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607585,39061090 +What is the hs code for OPADRY PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607570,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607586,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607751,38249999 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA RBA1731800,28363000 +What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-1360818,29334910 +"What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC 005-8-801, LC 011-8-801",17021100 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101852418,17021100 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101852418,17021100 +What is the hs code for CEFOTAXIME SODIUM EP (BHN BAKU OBAT) COA Q900500,29419000 +What is the hs code for NEOMYCIN SULPHATE USP (BHN BAKU OBAT) COA 201808002,29419000 +What is the hs code for OPTIVEGETOL GUARANA P107 HYDRO (BHN BAKU KOSMETIK) COA 168482,28399000 +What is the hs code for GELOT 64 (BHN BAKU SUPLEMEN) COA 170277,28399000 +What is the hs code for TEFOSE 63 (BHN BAKU SUPLEMEN) COA 169919,28399000 +"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 101869003,5",28161000 +What is the hs code for CALCIUM GLUCONATE EP (BHN BAKU OBAT) COA CGA-EP1807080,29181600 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8068881,38210010 +"What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8101679",38210010 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7356665,38210010 +"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8005940,81596",38210010 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8068881,38210010 +"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8130543,8143530",38210010 +What is the hs code for TUBE HEYA W/ANV AND MYCOBACTIN J 10EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8131957,38210010 +What is the hs code for VIAL ANTIMICROBIC K 6X10ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8142921,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7153980,38210010 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8143530,38210010 +"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7362985,...",38210010 +What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8134776,38210010 +What is the hs code for FASTIMMUNE CD56/CD69/CD45 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8191869,38210010 +What is the hs code for KIT CRYSTAL SNSEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8123664,38210010 +What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT 10X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8151581,38210010 +What is the hs code for VIAL E COLI ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7321876,38210010 +What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8123664,38210010 +What is the hs code for BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7332595,38210010 +What is the hs code for VIAL E COLI H ANTISERUM H7 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6323840,38210010 +What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8121789,38210010 +What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8094872,38210010 +"What is the hs code for FASTIMMUNEHU IFN-GMA FITC 25723.11 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8163563",38210010 +What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8109595,38210010 +What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8094883,38210010 +What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8075807,38210010 +What is the hs code for CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8046521,38210010 +What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8156919,38210010 +What is the hs code for ANTI-HLA-DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8192942,38210010 +What is the hs code for CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8122889,38210010 +What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8135805,38210010 +What is the hs code for CD34 PE 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8103659,38210010 +What is the hs code for CYTOFIX/CYTOPERM W/GOLGIPLUG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8144860,38210010 +What is the hs code for HU IL-17A PE N49-653 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8004580,38210010 +What is the hs code for HU CD183 PE-CY7 1C6/CXCR3 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8106559,38210010 +What is the hs code for CYTOLIX/CYTOPERM SOIN KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8080967,38210010 +What is the hs code for CD19 PE-CY7 SJ25C1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8180953,38210010 +What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8152901,38210010 +What is the hs code for CD4 APC SK3 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7318894,38210010 +What is the hs code for CD8 PERCP-CY5.5 SK1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8114784,38210010 +What is the hs code for ANNEXIN V FITC APOP DTEC KIT I 100TST (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8072965,38210010 +What is the hs code for CD45 PERCP 2D1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8075987,38210010 +What is the hs code for PERM/WASH BUFFER 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8088837,38210010 +What is the hs code for LYSING BUFFER 10X CONCENTRATE 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8149712,38210010 +What is the hs code for MS CD3 MOLCPX PE-CY7 17A2 50UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7235504,38210010 +What is the hs code for HU CD196 (CCR6) APC 11A9 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7180922,38210010 +What is the hs code for CD4 PERCP -CY5.5 SK3 RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8116650,38210010 +What is the hs code for HU CD55 PE IA10 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7335810,38210010 +What is the hs code for HU CD59 FITC P282 (H19) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7177716,38210010 +What is the hs code for CD5 FITC L17F12 100 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8010928,38210010 +What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG180713,29362700 +"What is the hs code for PURIDROX COMPACTED, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B340009 S/D 12",29419000 +What is the hs code for METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I5C002,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I5J002,39123900 +"What is the hs code for SERASENSE SF CM5 (BAHAN BAKU KOSMETIK) COA PA80801034,2042,2044,2046",29319049 +"What is the hs code for VC ASCORBIC ACID SPECIAL , 25KG BAL (BHN BAKU SUPLEMEN) COA HPD1803111",29362700 +"What is the hs code for ESOMEPRAZOLE SODIUM STERILE (BHN BAKU OBAT), COA SI/EPZ/00010318",29333990 +What is the hs code for CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA. 1GC01CLB ZP48D 250MT,38249999 +"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 1807EF6113",29224900 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101852618,17021100 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01804593, 7004",29362700 +What is the hs code for GRANULAC 70 (BHN BAKU OBAT) COA LC 051-7-870,17021100 +What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8178744,38210010 +"What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8178744",38210010 +What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 81787445,38210010 +What is the hs code for BOTTLE RHAMNOSE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8193542,38210010 +What is the hs code for BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8052992,38210010 +"What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8029645",38210010 +"What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8015615,8103503",38210010 +What is the hs code for PAIL CASAMINO ACIDS TECHNICAL 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8101901,38210010 +What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8164638,38210010 +What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8074670,38210010 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8024866,38210010 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8059906,38210010 +"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7102560,7249871",38210010 +What is the hs code for PAIL BUFFERED PEPTONE WATER 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8085791,38210010 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7341765,38210010 +"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8054962,8079524",38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242852,38210010 +"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8066869",38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079535,38210010 +"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079887,...",38210010 +"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8094584,593",38210010 +"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8116634,37",38210010 +What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7157987,38210010 +What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7291775,38210010 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7349871,38210010 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7262745,38210010 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8079540,38210010 +What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7324991,38210010 +What is the hs code for BOTTLE MANNITOL SALT AGAR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8066794,38210010 +What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8064953,38210010 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8066907,38210010 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8176945,38210010 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7095842,38210010 +What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079881,38210010 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8134769,38210010 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8053834,38210010 +What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 7349833,38210010 +What is the hs code for PLATE TSA LC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8158919,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8129691,38210010 +What is the hs code for BOTTLE STANDARD METHODS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8057835,38210010 +What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8116718,38210010 +What is the hs code for BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8130513,38210010 +What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7304669,38210010 +What is the hs code for BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8037783,38210010 +What is the hs code for KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8078889,38210010 +What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8178744,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8129691,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8129691,38210010 +What is the hs code for BOTTLE S-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8023610,38210010 +What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8079802,38210010 +What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8079802,38210010 +What is the hs code for BOTTLE SABOURAUD MALTOSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6167751,38210010 +What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 801167190,38210010 +What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7254544,38210010 +What is the hs code for BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 81417944,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 4 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6342760,38210010 +What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 71539772,38210010 +What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8046735,38210010 +What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 8101873,38210010 +What is the hs code for BOTTLE MULLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7009699,38210010 +What is the hs code for BOTTLE POLYPEPTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8155588,38210010 +What is the hs code for BOTTLE MALT EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8113905,38210010 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7341765,38210010 +What is the hs code for BOTTLE HEMOGLOBIN FREEZE DRIED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8053834,38210010 +What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8053838,38210010 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8164501,38210010 +What is the hs code for ULTALUX FF25 KG BAG (BHN BAKU KOSMETIK) COA D041831361,38249999 +"What is the hs code for 1,3 BUTYLENE GLYCOL, COSMETIC QUALITY(BHN BAKU KOSMETIK) COA. P0618608CC",29053200 +What is the hs code for BICAR FOOD 0/50 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP20518,28363000 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537827,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537847,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537789,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537834,35051010 +What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608107,39061090 +What is the hs code for ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607950,39061090 +"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18050010, 50008",29362100 +"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01802012,20",29362400 +"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ80306074, 75",29362700 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18010001,29362600 +"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18010001,60006",29362600 +What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ80306074,29362700 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL01802012",29362400 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18060006,29362600 +"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01802020,3039",29362400 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00917090,29362900 +"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00917090,91",29362900 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ1213304,29362500 +"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80610102, 104",29362300 +What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01803151,29362700 +What is the hs code for ASCORBIC ACID 25KG BOX ALU (BHN BAKU MAKANAN) COA TL01802834,29362700 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01802834",29362700 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT18040145,29362400 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ71213304,29362500 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01705019,29362900 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ80402171,29362200 +What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE1705019,29362900 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1803009,29362900 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1803009,29362900 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17080285,29362400 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17080285,29362400 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17080285,29362400 +"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ71103362,UQ80203027",29362200 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT18010072,29362900 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO)BHN BAKU MAKANAN, COA UT18010783, 784",29362100 +"What is the hs code for B2 UNIVERSAL FINE POWDER, 5KG BAG ALU (BHN BAKU MAKANAN) COA UQ80110011,14",29362300 +"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01803636",29362400 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00817039,29362200 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80402171,29362200 +What is the hs code for SODIUM ASCORBATE CRYSTALLINE 25KG BOX (BHN BAKU SUPLEMEN) COA TL01803151,29362700 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17110064,32041900 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN), COA UQ71213304",29362500 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ80203026,29362200 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU (TOCO) (BHN BAKU SUPLEMEN) COA UT18020169,29362100 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT18010072,29362900 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI17100009,29362900 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01802002,29362900 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18060006,29362600 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT17110004,29362900 +What is the hs code for MILKUAT ZN FE (25PCT CARRIER) (BHN BAKU MAKANAN) COA XW91807106,21069059 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT18010010,29362800 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01801016,32041900 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17110064,32041900 +"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN), COA UE01801016",32041900 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ80610104,29362300 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ80203027,29362200 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01802012",29362400 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80610104,29362300 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80402171,29362200 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80402171,29362200 +"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18050007,8",29362100 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18040005,29362100 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ71213304,29362500 +"What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ80203026,27",29362200 +"What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453194746",39139090 +"What is the hs code for AMOXICILLIN TRIHYDRATE /PURIMOX COMPACTED GRADE A(BHN BAKU OBAT) COA M530195,196,221 S/D 223",29411019 +"What is the hs code for AMOXICILLIN TRIHYDRATE /PURIMOX POWDER(BHN BAKU OBAT) COA M483783,785",29411019 +What is the hs code for INOSITOL (BHN BAKU OBAT) COA 201804135,29061300 +What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 1807037,29349990 +What is the hs code for TETRACYCLINE HYDROCHLORIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 180624-62,29413000 +What is the hs code for METHYL SULFONYL METHANE USP (BHN BAKU OBAT) COA 18073001,29309090 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180713,17029019 +What is the hs code for DAMIANA EXTRACT (BHN BAKU OBAT) COA BNPD180721,29329990 +What is the hs code for ANTI SHINE WASH (BHN BAKU KOSMETIK) COA 10300068,38249999 +What is the hs code for CHRONO CHARDY (BHN BAKU KOSMETIK) COA 172847,13021950 +What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 180991,38249999 +What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 181146,13021950 +What is the hs code for MANDARIN INCLEAR (BHN BAKU KOSMETIK) COA 181137,13021950 +"What is the hs code for PHYTTO COLLAGE B (N) BHN BAKU KOSMETI, COA 180264",13021950 +What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 80503,13021950 +What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 80608,13021950 +What is the hs code for SUPEROX C TM AF (BHN BAKU KOSMETIK) COA 80610,13021950 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1803403,38249999 +What is the hs code for SWT-7 TM L (BHN BAKU KOSMETIK) COA 1807901,38249999 +"What is the hs code for SWT-7 TM L (BHN BAKU KOSMETIK), COA 1815001",38249999 +"What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK), COA 5541718",38249999 +What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 1724514,38249999 +What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785016298J,38249999 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1804005,38249999 +What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015909H,38249999 +What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016427J,38249999 +What is the hs code for PHYTELENE COMPLEX EGX 773(BHN BAKU KOSMETIK)COA PX773-180803-GS,38249999 +What is the hs code for MANGOUSTAN HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA GAM171101-B,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS180201,38249999 +What is the hs code for POMEGRANATE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA PUG180501-BGBIO,38249999 +What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA180705,38249999 +What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM170702-PGH,38249999 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO180301,38249999 +What is the hs code for SK BIOLAND LICORICE EXTRACT (BHN BAKU KOSMETIK)COA GGB-010478,38249999 +What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUB-010448,38249999 +"What is the hs code for SK BIOLAND PF SC GLUCAN (BHN BAKU KOSMETIK)COA CPG-472678, CPG-500688",38249999 +What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 2018D1321,38249999 +What is the hs code for SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-150578,38249999 +What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-011388,38249999 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ70813211,29362500 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18060170,29362800 +"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000175792,174770",29362900 +"What is the hs code for STAY C(R) 50, 20KG BOX NA (BHN BAKU KOSMETIK) COA UT18010226,227",29362700 +"What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF18004052",29420000 +"What is the hs code for STAY-C (R) 50, 5KG BAG ALU (BHN BAKU KOSMETIK) COA UE01801009,1011",29362700 +"What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC 011-8-801, 012-8-801, 004-8-801, 011-8-801",17021100 +What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP800632,39059990 +What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP796425,39059990 +What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP796410,39059990 +What is the hs code for CORN STARCH (BHN BAKU OBAT) COA 20180725,11081200 +What is the hs code for NIACINAMIDE USP (BHN BAKU KOSMETIK) COA 18-19/NMD(P)/U/068 S/D 072,29362900 +What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18070054,29362100 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00218194,29362800 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18070054,29362100 +"What is the hs code for FLORAGLO LUTEIN 20PCT SAF,1KG ALUF (BHN BAKU SUPLEMEN) COA UE01806039",32030010 +"What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00218443",29362700 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010014,32041900 +"What is the hs code for COATED ASCORBIC ACID TYPE EC ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01806790",29362700 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010014,32041900 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18060032,29362800 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT18060032,29362800 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01807089",29362700 +What is the hs code for TRIAMCINOLONE ACETONIDE MICRONIZED (BHN BAKU OBAT) COA NY1271M,29372200 +What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NY0865M,29372200 +What is the hs code for MOXIFLOXACIN HYDROCHLORIDE(BHN BAKU OBAT) COA MP0100718,29334990 +What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M.31.0PCT (BHN BAKU OBAT) COA 101829018,28161000 +What is the hs code for PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) COA PH01230318,38249999 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00817039,29362200 +"What is the hs code for ASCORBIC ACID ,25KG BOX /ALU (BHN BAKU SUPLEMEN) COA TL01802834",29362700 +What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91807109,21069059 +What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91807332,21069059 +"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01801016, 18,19",32041900 +What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW91807146,21069059 +What is the hs code for PX 103070 C3 (BHN BAKU MAKANAN) COA XW91807147,21069059 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01803261",29362700 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01803261",29362700 +What is the hs code for PX 204005 (BHN BAKU MAKANAN) COA XW91807248,21069059 +"What is the hs code for RIBOFLAVIN 5-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1801005,2024,2030",29362300 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01803636,29362400 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT17110004,29362900 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1803009,29362900 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01803261",29362700 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18060006,29362600 +"What is the hs code for ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01802834",29362700 +"What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01803636",29362400 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01705019,29362900 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00817039,29362200 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01803261",29362700 +What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW91808057,21069059 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT18050023,29362900 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT18050023,29362900 +What is the hs code for DRY VITAMIN D3 100CWS (BHN BAKU SUPLEMEN) COA UT18050023,29362900 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT18060196,29362400 +What is the hs code for PX 103070 - C3 (BHN BAKU MAKANAN) COA XW91808032,21069059 +What is the hs code for PX 103070 - C3 (BHN BAKU MAKANAN) COA XW91808032,21069059 +What is the hs code for STARCAP 1500 CO-PROCESSED (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537452,35051010 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18060039,29362800 +What is the hs code for REFINED TRACED SHEA OLEIN (BHN BAKU KOSMETIK) COA 0000021935,38249999 +"What is the hs code for JAGUAR HP 105, 25KG CARDBOARD CARTON (BHN BAKU KOSMETIK) COA H1806198D",38249999 +What is the hs code for CARE PROTECTOR C6 PELICAN (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),38210090 +What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607700,38249999 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607955,39061090 +What is the hs code for ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607950,39061090 +What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607732,38249999 +What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607963,39061090 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607965,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607954,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607957,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607951,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607952,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607958,38249999 +What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607964,38249999 +What is the hs code for JAGUAR C 162 CARDBOARD BOX 25 KG (BHN BAKU KOSMETIK) COA MJAC18150A,38249999 +What is the hs code for LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 18092,38249999 +"What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1808048,51 S/D 57,59 S/D 61",29224900 +What is the hs code for VISTANOL GDHR (BHN BAKU KOSMETIK) COA KHJ,38249999 +What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA KDG,38249999 +What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA KEK,38249999 +What is the hs code for PROMOIS EU-118 (IS) (BHN BAKU KOSMETIK) COA KGN,38249999 +"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01612023, SAMPLE NO COMMERCIAL VALUE",29362900 +What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA. DOC2251821,28363000 +What is the hs code for GINSENG DRY EXTRACT 2PCT COLOR (BAHAN BAKU SUPPLEMEN) COA 10730/M1,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10731/M1,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10732/M1,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10733/M1,13021990 +What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 181401,13021990 +What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND180801,29372200 +What is the hs code for INSTANT BLACK TEA POWDER TH B430 (BHN BAKU MAKANAN) COA 2018022401,21012020 +What is the hs code for BIOTOX (BHN BAKU OBAT UTK PAKAN TERNAK) COA 050818-628,23099090 +What is the hs code for E.C.O TRACE ZN 25PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC310118,29224900 +What is the hs code for E.C.O TRACE MN 20PCT (BHN BAKU UTK PAKAN TERNAK) COA BC290118,29224900 +What is the hs code for E.C.O TRACE FE 20PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC310118,29224900 +What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA R700500,29419000 +What is the hs code for GELUCIRE 48/16 PELLETS (BHN BAKU SUPLEMEN) COA 161003,28399000 +What is the hs code for ARIA III 6B/2R ACDU BASIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 4828202012,38210010 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180803,17029019 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608123,38249999 +What is the hs code for ACRYL-EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608130,39061090 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608131,39061090 +What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608131,39061090 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608133,39061090 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608136,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607732,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608125,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608124,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606853,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608122,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608126,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608127,38249999 +What is the hs code for OPADRY GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608128,38249999 +What is the hs code for ACRYL-EZE PURPLE(BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608129,39061090 +What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608135,32151900 +What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608135,32151900 +What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606124,32151900 +What is the hs code for FLOWLAC (R) 100 (BHN BAKU OBAT) COA. L101502918,17021100 +What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104312818,17021100 +What is the hs code for ESCIN FREE ACID (BHN BAKU SUPLEMEN) COA 32591/M4,13021950 +"What is the hs code for ASCORBIC ACID 90PCT GRANULATION ,25KG BOX (BHN BAKU SUPLEMEN) COA WB00818950",29362700 +"What is the hs code for PURICILLIN COMPACTED (BHN BAKU OBAT) COA. M842378 S/D 80,99,2400",29411020 +What is the hs code for PURICILLIN POWDER (BHN BAKU OBAT) COA M780733,29411020 +What is the hs code for EPA DHA 44 37 (BHN SUPLEMEN KESEHATAN) COA EE4437-180803,29061300 +"What is the hs code for METAMIZOLE SODIUM (BHN BAKU OBAT) COA 1805674,753 ,754,904",29331900 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180805,17029019 +What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB210718,39123900 +"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B130718",39123900 +"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG160818",39123900 +"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA.LDC 223 18T",27101990 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121808884,8932",28363000 +What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA R900500,29419000 +"What is the hs code for FERROUS FUMARATE ( BHN BAKU OBAT), COA 2018/209",29171900 +"What is the hs code for L-GLUTAMIC ACID ( BHN BAKU SUPLEMEN), COA 1000040931/180730",29224900 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708160078 S/D 80, SAMPLE NO COMMERCIAL VALUE",29420000 +What is the hs code for CONFECTIONERY INK CI-250002 RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA TKL45591,32151900 +What is the hs code for CONFECTIONERY INK CI-205002 BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA TKL45590,32151900 +"What is the hs code for PARSOL 1789,20KG BOX (BHN BAKU KOSMETIK) COA 0318040631 S/D 34",29420000 +"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0218060099",29420000 +"What is the hs code for NIACINAMIDE PC,25KG BOX (BHN BAKU KOSMETIK) COA 0000175793,74770",29362900 +"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00550066,67",29420000 +"What is the hs code for PARSOL 1789,20KG BOX (BHN BAKU KOSMETIK) COA 0318040634,40635, 50787",29420000 +What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES1804058,29420000 +"What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL1801802",29362400 +What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91808150,29420000 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT18020169,29362100 +What is the hs code for OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608588,38249999 +What is the hs code for BETAHISTINE MESILATE EP (BHN BAKU OBAT) COA EDBHM0818004,29333990 +What is the hs code for CIPROFLOXACIN HCL (BHN BAKU OBAT) COA HB00N1808029 S/D 36,29335990 +"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1851660,666,1811049,",29242930 +"What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453198471",39139090 +What is the hs code for CORN STARCH (BHN BAKU OBAT) COA 20180815,11081200 +What is the hs code for OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT678338,32151900 +What is the hs code for OPALUX PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT678343,32151900 +What is the hs code for OPASPRAY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT678347,32151900 +"What is the hs code for 250/355 SUGLETS 250/355 (45/60 MESH) BHN BAKU OBAT UTK PEWARNA TABLET, COA ST510217",32151900 +"What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA.24700818,24710818,24720818...",29359000 +What is the hs code for FIBRE DRUM (DRUM KOSONG) FREE OF COST NO COMMERCIAL VALUE,48192000 +What is the hs code for NORIT SX SUPER E 153 (BHN BAKU KOSMETIK) COA 4332393,38021000 +What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK)COA SFP-N-072378,38249999 +What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-010248,38249999 +What is the hs code for SK BIOLAND LICORICE EXTRACT (BHN BAKU KOSMETIK) COA GGB-010478,38249999 +What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-082148,38249999 +What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-062378,38249999 +"What is the hs code for SK BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK)COA PSFAC-012568, 021088",38249999 +What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-170388,38249999 +What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE(BHN BAKU KOSMETIK) COA 080718,38249999 +What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-112478,38249999 +"What is the hs code for EUXYL K 100 CN 10KG KA (BHN BAKU KOSMETIK) COA 1513045, 1514878",38249999 +What is the hs code for EUXYL K 900 10KG KA (BHN BAKU KOSMETIK) COA 1514236,38249999 +What is the hs code for GROTANOL 3025 CN 10KG KA (BHN BAKU KOSMETIK) COA 1509426,38249999 +What is the hs code for SENSIVA SC 50 10KG KA (BHN BAKU KOSMETIK) COA 1514016,38249999 +"What is the hs code for SENSIDIN DO CN 10KG CA (BHN BAKU KOSMETIK) COA 1507933,1514728",38249999 +"What is the hs code for EUXYL PE 9010 CN 10KG KA (BHN BAKU KOSMETIK) COA 1510110,1513317",38249999 +"What is the hs code for EUXYL PE 9010 CN 10KG KA (BHN BAKU KOSMETIK) COA 1510110,1513317,1514952",38249999 +"What is the hs code for EUXYL PE 9010 CN 200KG FA (BHN BAKU KOSMETIK) COA 1511296,1515235",38249999 +What is the hs code for VIT A PALM 1.0M + VIT D3 100.000 (BHN BAKU KOSMETIK) COA UT18060054,29362100 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE ,25KG BOX (BHN BAKU MAKANAN) COA TL01804593",29362700 +What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01804593,29362700 +What is the hs code for VIT A PALM 1.0M +VIT D3 100.000 (BHN BAKU MAKANAN) COA UT18060054,29362100 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01804593001",29362700 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01807004",29362700 +"What is the hs code for PACLITAXEL SEMISYNTHETIC (USP,TEST-2) (BHN BAKU OBAT) COA 898NSH005",29329990 +What is the hs code for HANDHELD RAMAN SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),38210090 +What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH180809-ENBIO,38249999 +What is the hs code for LINEN OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA LIU180504-H,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS180201,38249999 +What is the hs code for JOB'S TEARS HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA COL180801-B-RQ,38249999 +"What is the hs code for CYANACOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPLEMEN KESEHATAN) COA. 1806431963, 11836",29362600 +What is the hs code for AMOXICILLIN TRIHYDRATE /PURIMOX COMPACTED GRADE A(BHN BAKU OBAT) COA M483832,29411019 +What is the hs code for AMOXICILLIN TRIHYDRATE /PURIMOX COMPACTED GRADE A(BHN BAKU OBAT) COA M530240,29411019 +What is the hs code for AMOXICILLIN TRIHYDRATE /PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M595986,29411019 +What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND180901,29372200 +What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01806756,29362700 +What is the hs code for B-CAROTENE 10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT18030004,32041900 +"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18060013,16",29362100 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE ,20KG BOX(BHN BAKU MAKANAN) COA QZ11180412",29362500 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE ,20KG BOX (BHN BAKU MAKANAN) COA QZ11180412",29362500 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18070213,29362800 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE ,20KG BOX (BHN BAKU MAKANAN) COA QZ11180412",29362500 +What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18070207,29362800 +"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18060019,21",29362100 +What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA. 20180820,17023010 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00517027,29362200 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00517027,29362300 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00517027,29362300 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18060024,29362100 +What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91808014,21069059 +"What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91808174, XW91808175",21069059 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18060024,29362100 +"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18060012,13,19",29362100 +"What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01803646",29362400 +What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ80209005,29362300 +What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ80209005,29362300 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418095,29362900 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00517027,29362300 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT18050023,29362900 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00517027,29362300 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT18030171,29362100 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01802002,29362900 +"What is the hs code for ASCORBIC ACID,25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01803255,3258",29362700 +What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418026,29362500 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1804015,29362900 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1804015,29362900 +"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1803012, 4015",29362900 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1803012,29362900 +"What is the hs code for ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ80406081,506120",29362700 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00817040,29362200 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT18050023,29362900 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00817040,29362200 +"What is the hs code for ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ80306079,81",29362700 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18060024,29362100 +What is the hs code for OPADRY SGR TRANSLUCENT (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA643700,38249999 +"What is the hs code for NIACINAMIDE PC,25KG BOX (BHN BAKU KOSMETIK) COA 0000175798,174770,175739",29362900 +"What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 041802004,070137",29420000 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18060170,29362800 +"What is the hs code for STAY C (R) 50,5KG BAG ALU EX US (BHN BAKU KOSMETIK) COA UT17070104",29362700 +What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB00718222,29362100 +"What is the hs code for PURIDROX TM POWDER,CEFADROXIL MONOHYDRATE (BHN BAKU OBAT) COA.B334583,584",29419000 +"What is the hs code for RESTYLANE SKINB VITLIDO 1MLD16 , COA 16200-2",90189090 +"What is the hs code for RESTYLANE SKINB VITALLGHLIDO 1MLD16 , COA 16191-1",90189090 +"What is the hs code for RESTYLANE SKINB LYFT LIDOCAINE 1ML , COA 16177-1",90189090 +"What is the hs code for RESTYLANE VOLYME 1ML , COA 16046-1",90189090 +"What is the hs code for RESTYLANE REFYNE 1ML , COA 15842-1",90189090 +"What is the hs code for RESTYLANE DEFYNE 1ML , COA 16013-1",90189090 +"What is the hs code for RESTYLANE KYSSE 1 ML , COA 16207-1",90189090 +What is the hs code for PASSION FLOWER D.H.E >4PCT (BAHAN BAKU SUPLEMEN) COA 10713/M1,13021950 +What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1802720674,29372900 +What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-180604,29397900 +"What is the hs code for PANTOPROZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT,COA APSS180016",29333990 +What is the hs code for BD FACS MELODY BR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6615880031,38210010 +What is the hs code for COMPRESSOR AIR EXT 230V/50HZ 0-120PSL 4L (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),38210010 +What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D18015D003,39123900 +What is the hs code for METHOCEL K100M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I6G002,39123900 +What is the hs code for METHOCEL A15 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180HBF022,39123900 +What is the hs code for ACYCLOVIR MICRONIZED (BHN BAKU OBAT) COA 18100535,29335990 +What is the hs code for HUILE DE COPRAH RAFF GV 24/26 (BHN BAKU KOSMETIK)COA BA007906,15131910 +What is the hs code for CILOSTAZOL USP (BHN BAKU OBAT) COA 17007CB2ARI,29337900 +"What is the hs code for NONIVAMIDE (SYNTHETIC CAPSAICIN)BHN BAKU KOSMETIK, COA.20180726",29241990 +What is the hs code for DPG FG (BHN BAKU KOSMETIK) COA B01921DG,29094900 +What is the hs code for PG USP (BHN BAKU KOSMETIK) COA B01921UP,29053200 +"What is the hs code for LANOLINE ANHYDROUS (BHN BAKU KOSMETIK) COA 4506,4551,4819",38249999 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180817,17029019 +"What is the hs code for CEFADROXILE MONOHYDRATE (PURIDROX POWDER) BHN BAKU OBAT,COA.B334574, S/D 77",29419000 +"What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT) COA B334570,73,74",29419000 +"What is the hs code for PURILEX TM COMPACTED, CEFALEXIN MONOHYDRATE (BHN BAKU OBAT) COA B460291",29419000 +What is the hs code for TRIAMCINOLONE ACETONIDE MICRONIZED (BHN BAKU OBAT) COA NY1413M,29372200 +What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK)COA HMVBD-062378,38249999 +What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA HMVBD-070698,38249999 +What is the hs code for SK BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK)COA KFB-L-010858,38249999 +What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-122488,38249999 +What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) BHN BAKU KOSMETIK) COA CHP1180802,38249999 +What is the hs code for BIOTOX (R) (BHN BAKU OBAT UTK PAKAN TERNAK) COA 300818-652,23099090 +What is the hs code for BETAPRO 300 (BHN BAKU OBAT UTK PAKAN TERNAK) COA 200818-632,23099090 +What is the hs code for E.C.O TRACE ZN 25PCT (BHN BAKU UTK PAKAN TERNAK) COA BC270218,29224900 +What is the hs code for E.C.O.TRACE MN 20PCT(BHN BAKU OBAT UTK PAKAN TERNAK) COA BC290118,29224900 +What is the hs code for E.C.O TRACE FE 20PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC050718,29224900 +What is the hs code for BIOKEY SELENIUM (BHN BAKU OBAT UTK PAKAN TERNAK) COA 210218-148,23099090 +What is the hs code for LIQUIPHOS STRONG (BHN BAKU UTK PAKAN TERNAK) COA 270818-667,23099090 +What is the hs code for LIQUIPHOS STRONG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 270818-667,23099090 +What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-1690918,29334910 +What is the hs code for MAPROTILINE HCL (BHN BAKU OBAT) COA 1850001426,29214900 +What is the hs code for BOSWELLIA SERRATA PHOSPHOLIPID (BHN BAKU SUMPLEMEN) COA 18432,38249999 +What is the hs code for BOSWELLIA SERRATA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 18342,38249999 +"What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7297545",38210010 +"What is the hs code for BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8130513",38210010 +What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8155535,38210010 +What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8178744,38210010 +What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8239573,38210010 +What is the hs code for BOTTLE RHAMNOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8211705,38210010 +"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8094593,....",38210010 +"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 8150739",38210010 +"What is the hs code for BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8122582,8157606",38210010 +What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 8059873,38210010 +"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7349834,8101800",38210010 +What is the hs code for BOTTLE SACCHAROSE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8046747,38210010 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7341765,38210010 +What is the hs code for PAIL LAURYL TRYPTOSE BROTH 2KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8155560,38210010 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8155557,38210010 +"What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8129687",38210010 +What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8129687,38210010 +What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060807,38210010 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7018890,38210010 +What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060815,38210010 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7363777,38210010 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8234703,38210010 +"What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7291775,8073792",38210010 +What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8023610,38210010 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7349871,38210010 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8171517,38210010 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079540,38210010 +What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7324991,38210010 +"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8066794",38210010 +What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8064953,38210010 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8066907,38210010 +What is the hs code for BOTTLE XLD AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183849,38210010 +What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079802,38210010 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8127705,38210010 +What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079881,38210010 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8085825,38210010 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8134769,38210010 +"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8053834,8134709",38210010 +What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8032534,38210010 +What is the hs code for PLATE TSA LC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8194978,38210010 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8066907,38210010 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8127705,38210010 +What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8079881,38210010 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8085825,38210010 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8134769,38210010 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8053834,38210010 +What is the hs code for BOTTLE OF BASAL MEDIUM 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8103707,38210010 +What is the hs code for BOTTLE AGAR TECHNICAL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8127781,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8129691,38210010 +What is the hs code for BOTTLE MALT EXTRACT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8101775,38210010 +What is the hs code for BOTTLE MICRO ASSAY CULTURE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6327982,38210010 +What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8046735,38210010 +What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8101873,38210010 +What is the hs code for BOTTLE M ENDO BROTH MF 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8053859,38210010 +What is the hs code for BOTTLE ISP MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242953,38210010 +What is the hs code for BOTTLE ISP MEDIUM 4 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8115820,38210010 +What is the hs code for BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7075670,38210010 +What is the hs code for BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8081784,38210010 +What is the hs code for BOTTLE ISP MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7363779,38210010 +What is the hs code for BOTTLE YEAST NITOGEN BASE W/O AA 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183886,38210010 +What is the hs code for BOTTLE MIDDLEBROOK 7H9 BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8045590,38210010 +What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8103503,38210010 +What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8164642,38210010 +"What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8011687,...",38210010 +What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141534,38210010 +What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141534,38210010 +What is the hs code for BOTTLE GRAM CRYSTAL VIOLET 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8172940,38210010 +What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7335917,38210010 +What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8031739,38210010 +What is the hs code for BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8037783,38210010 +What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8101787,38210010 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8234703,38210010 +What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8239573,38210010 +What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7363718,38210010 +What is the hs code for BOTTLE PHOSPHATE BUFFER PH 7.2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8141591,38210010 +What is the hs code for BOTTLE TRYPTICASE SOY AGAR MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7254544,38210010 +What is the hs code for BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8080511,38210010 +What is the hs code for BOTTLE MR-VP MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7262698,38210010 +What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8046757,38210010 +What is the hs code for LOOPS INOCULATING 10/TUBE 10 MICROLITER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8802416,38210010 +What is the hs code for BOTTLE MULLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8134700,38210010 +What is the hs code for BOTTLE NITRATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8129685,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 5 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8197524,38210010 +What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8115632,38210010 +What is the hs code for BOTTLE MICRO ASSAY CULTURE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8206622,38210010 +What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183877,38210010 +What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8207815,38210010 +What is the hs code for BOTTLE BRAIN HEART INFUSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8037753,38210010 +What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7153977,38210010 +What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8134767,38210010 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8004586,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 8 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8240940,38210010 +What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8101873,38210010 +What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7009699,38210010 +What is the hs code for BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8193979,38210010 +What is the hs code for SOLUTION BACTERIOSTAT CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 18H0256415,38210010 +What is the hs code for SOLUTION BACTERIOSTAT CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 18H0256415,38210010 +What is the hs code for BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8151583,38210010 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7341765,38210010 +"What is the hs code for BOTTLE CASITONE 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8164638,8164642",38210010 +What is the hs code for PLATE TSA W LP IC XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8194646,38210010 +What is the hs code for BOTTLE RAPPAPORT VASSILIADIS MSRV 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8121572,38210010 +What is the hs code for BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8141794,38210010 +What is the hs code for BOTTLE POLYPEPTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8155588,38210010 +What is the hs code for BOTTLE BEEF EXTRACT POWDER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 80011683,38210010 +What is the hs code for LOOPS INOCULATING 10/TUBE 1 MICROLITER (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8802314,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MED 3 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) 7278568,38210010 +What is the hs code for BOTTLE PEPSIN 1 TO 10000 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7242856,38210010 +What is the hs code for BOTTLE LB AGAR LENNOX 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8170911,38210010 +What is the hs code for KIT MAINTENANCE FLOW CYT 2 MONTH (MEDIA UTK PENGEMBANGAN MIKROORGANISME),38210010 +"What is the hs code for ESOMEPRAZOLE SODIUM STERILE (BHN BAKU OBAT), COA SI/BEPZ/0010818",29333990 +What is the hs code for PANTOPRAZOLE SODIUM (BHN BAKU OBAT) COA PSFP18031,29333990 +What is the hs code for SENSIVA SC 50CN 10KG KA (BHN BAKU KOSMETIK) COA 1516344,29420000 +What is the hs code for DOCETAXEL TRIHYDRATE (BHN BAKU OBAT) COA 201808002,29329990 +What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8135632...,38210010 +"What is the hs code for HU CD22 PE HIB22 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8226903",38210010 +"What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8101679,...",38210010 +What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7314928,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7153980,38210010 +"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8101883,8110566",38210010 +What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8024571,38210010 +What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8134776,38210010 +What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8092819,38210010 +What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8220620,38210010 +What is the hs code for ANTI-EP CAM APC EBA-1 100TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8213706,38210010 +What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT 10X10M (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8151581,38210010 +What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7220790,38210010 +What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8054920,38210010 +What is the hs code for BOTTLE FOLIC ACID ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8114908,38210010 +"What is the hs code for VIAL NOVOBIOCIN SUPPLEMENT 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8151586,...",38210010 +What is the hs code for VIAL POLYMYCIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8158997,38210010 +What is the hs code for VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8142921,38210010 +What is the hs code for BOTTLE B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 81838300,38210010 +What is the hs code for BOTTLE LACTOBACILL MRS BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8192943,38210010 +What is the hs code for BOTTLE LACTOBACILI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8211699,38210010 +What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8121789,38210010 +What is the hs code for CD24 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8094872,38210010 +What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8075807,38210010 +What is the hs code for CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8116667,38210010 +What is the hs code for IFN GAMMA APC RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8121877,38210010 +What is the hs code for CD4 PERCP CY5.5 SK3 RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 816650,38210010 +What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8156919,38210010 +What is the hs code for ANTI HLA DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8192942,38210010 +What is the hs code for FASTIMMUNE COSTIN CD28/CD49D 0.3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 82118169,38210010 +What is the hs code for CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8122889,38210010 +What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8218565,38210010 +What is the hs code for ANTI-KAPPA FITC/ANTI-LAMBDA PE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8162536,38210010 +What is the hs code for CYTOFIX /CYTOPERM SOIN KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 81767383,38210010 +What is the hs code for ANNEXIN V FITC APOP DTEC KIT I 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8074726,38210010 +What is the hs code for CD23FITC EBVCS-5 RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8190541,38210010 +What is the hs code for FASTIMMUNE TNF-AIP 6401.1111 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8073770,38210010 +What is the hs code for HU CD62P PE AK-4 100TST (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 4197881,38210010 +What is the hs code for HU CD154 FITC TRAP1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 80238737,38210010 +What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 81039172,38210010 +What is the hs code for HU CD90 PE 5E10 100UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8086725,38210010 +What is the hs code for HU CD45 FITC HI30 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8120939,38210010 +What is the hs code for LINEAGE COCKTAIL 1 (LIN 1) FITC 50 TESTS(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8178601,38210010 +What is the hs code for HU CD34 FITC 581 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7354566,38210010 +What is the hs code for HU CD105 APC 266 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7222945,38210010 +What is the hs code for HU CD56 FITC B159 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7348691,38210010 +What is the hs code for VALERIAN D.H.E> 0.8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 10786/M1,13021950 +What is the hs code for ALPINAWHITE (BHN BAKU KOSMETIK) COA 181207,13021950 +"What is the hs code for TSPL-30-ID (BHN BAKU KOSMETIK) , COA 805010, SAMPLE NO COMMERCIAL VALUE",38249999 +"What is the hs code for KF-6038 (BHN BAKU KOSMETIK) , COA 809198, SAMPLE NO COMMERCIAL VALUE",38249999 +"What is the hs code for KSP-101 (BHN BAKU KOSMETIK) COA 808268, SAMPLE NO COMMERCIAL VALUE",38249999 +"What is the hs code for TSPL-30-D5 (BHN BAKU KOSMETIK) COA 705052, SAMPLE NO COMMERCIAL VALUE",38249999 +"What is the hs code for KP-578 (BHN BAKU KOSMETIK) COA 804075, SAMPLE NO COMMERCIAL VALUE",39139090 +What is the hs code for NANORAM 2 TOP COVER ASSEMBLY 2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),38210090 +What is the hs code for NANORAM 2 CORE MODULE BOARD (MEDIA UTK PENGEMBANGAN MIKROORGANISME),38210090 +What is the hs code for SPARES FPOR RAMAN SPECTROMETER (MEDIA UTK PENGEMBANGAN MIKROORGANISME),38210090 +What is the hs code for NANORAM 2 CORE MODULE BOARD (MEDIA UTK PENGEMBANGAN MIKROORGANISME),38210090 +What is the hs code for NANORAM 2 CORE MODULE BOARD (MEDIA UTK PENGEMBANGAN MIKROORGANISME),38210090 +What is the hs code for NR2 SPECTROMETER PCB (MEDIA UTK PENGEMBANGAN MIKROORGANISME),38210090 +What is the hs code for CALCIUM CARBONATE (BHN BAKU KOSMETIK) COA 2201725120,25090000 +What is the hs code for BOTTLE SELENITE CYSTINE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8141548,38210010 +What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8172970,38210010 +What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8135947,38210010 +What is the hs code for METHOCEL E6 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011HCLL01,39123900 +What is the hs code for METHOCEL E50 PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011H3KL02,39123900 +What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-005-V,38249999 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01705019,29362900 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT18020789,29362100 +"What is the hs code for BEAUPLEX (TM) VH,5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF18004052",29420000 +"What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF18004052",29420000 +"What is the hs code for DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01801607,4614",29362400 +"What is the hs code for DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01804614",29362400 +"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000175739,176817",29362900 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ71213305,29362500 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ71213305,3312",29362500 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ71213312,29362500 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ71213312,29362500 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ80610105,29362300 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU MAKANAN) COA UT17110004,29362900 +"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01803039",29362400 +"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01803039",29362400 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT18010072,29362900 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO)(BHN BAKU MAKANAN) COA UT18040796,29362100 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ80203028,29362200 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01804434,4448",29362700 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17110064,32041900 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01801019,32041900 +"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418095,96",29362900 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418096,29362900 +"What is the hs code for CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00718099",29362700 +"What is the hs code for CALCIUM ASCORBATE ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00718099",29362700 +"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80502240,2275",29362200 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80610105,29362300 +"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN), COA UQ80602275",29362200 +"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80602275,2276",29362200 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ71213305,29362500 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80602276,29362200 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ71213312,29362500 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80610105,29362300 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18040126,29362400 +"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN), COA UT180401126",29362400 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18040126,29362400 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00817040,29362200 +What is the hs code for DWI BI (BHN BAKU MAKANAN) COA XW91808115,21069059 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01801019,32041900 +"What is the hs code for RIBOFLAVIN 5'- PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UE01802030,40",29362300 +What is the hs code for SENSIVA SC 50 CN 10KG KA (BHN BAKU KOSMETIK) COA.1508811,29420000 +What is the hs code for EPIRUBICIN HYDROCHLORIDE BP/PHARMM EUR (BHN BAKU OBAT) COA FX0494,29419000 +What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA. 20180822,17023010 +What is the hs code for SODIUM SALICYLATE (BHN BAKU KOSMETIK)COA 201806003,29182100 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318050787 S/D 90",29420000 +"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0218060099",29420000 +"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01803041, 3043",29362400 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01803043,29362400 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518080199",29420000 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01803041,29362400 +"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01803043",29362400 +"What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA MCS1605181,0518080198",29420000 +"What is the hs code for STAY C(R) 50, 20KG BOX NA (BHN BAKU KOSMETIK) COA UT18010229,231",29362700 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518060154,199",29420000 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518080199",29420000 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK), COA 0518080199",29420000 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE,25KG BOX (BHN BAKU MAKANAN) COA TL01808307",29362700 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010014,32041900 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00218194,29362800 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18030018,32030010 +What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17110004,32041900 +What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18070054,29362100 +What is the hs code for VITAMIN A AND D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18070039,29362100 +What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ80507005,29420000 +What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA 20180827,11081200 +"What is the hs code for FRENCH MARITIME PINE BARK EXTRACT PYCNOGENOL (R) (B.BAKU OBAT) COA U/6300,SAMPLE NO COMM VALUE",13021950 +"What is the hs code for FRENCH MARITIME PINE BARK EXTRACT PYCNOGENOL (R) B. BAKU OBAT, COA U/6160,SAMPLE NO COMM VALUE",13021950 +"What is the hs code for FRENCH MARITIME PINE BARK EXTRACT PYCNOGENOL (R) B. BAKU OBAT, COA U/6280, SAMPLE NO COMM VALUE",13021950 +What is the hs code for ANTI SHINE WASH 45414.1 (BHN BAKU KOSMETIK) COA 10300068,38249999 +What is the hs code for PURE GREEN B&W PIT (BHN BAKU KOSMETIK) COA 10300034,38249999 +What is the hs code for ANTISHINE WASH 1 (BHN BAKU KOSMETIK) COA 10300116,38249999 +What is the hs code for ALDAVINE 5X (BHN BAKU KOSMETIK) COA 5521817,38247900 +What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 1717614,38247900 +What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830016100J,38247900 +"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK), COA 1810103",38247900 +What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5570218,38247900 +What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5579618,38247900 +What is the hs code for TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784026462J,38247900 +What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829016392J,38247900 +What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785016298J,38247900 +What is the hs code for KOLLAREN BG (100PPM) (BHN BAKU KOSMETIK) COA 821056301J,38247900 +What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016427J,38247900 +What is the hs code for SUNFLOHAIR TM (BHN BAKU KOSMETIK) COA 1747542,38247900 +What is the hs code for KAHLWAX 2956 (BHN BAKU KOSMETIK) COA F1830021-001,15211000 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180823,17029019 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180825,17029019 +What is the hs code for METHOTREXATE (BHN BAKU OBAT),29335990 +What is the hs code for LOTUS NELUMBIUM NEL.FLOWER HS(BAHAN BAKU KOSMETIK) COA AM070938,13021950 +What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91808285,21069059 +What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91808287,21069059 +"What is the hs code for VITAMIN B12 0.PCT WS (BHN BAKU MAKANAN) COA UT18060005,6",29362600 +What is the hs code for VITAMIN B12 0.PCT WS (BHN BAKU MAKANAN) COA UT18060006,29362600 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418043,29362200 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11804015,29362900 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11804015,29362900 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11804015,29362900 +"What is the hs code for ASCORBYL PALMITATE,25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ80506121",29362700 +"What is the hs code for ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ80506121,22,26",29362700 +"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1802022,26,32",29362300 +"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1802032,33",29362300 +What is the hs code for POVIDONE K25 (BHN BAKU OBAT) COA PK25-180824F11,39059990 +What is the hs code for SILYBIN/ PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10839/M1,13021950 +What is the hs code for VALERIAN D.H.E>0.8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 10885/M1,13021950 +What is the hs code for PHENYTOIN SODIUM (BHN BAKU OBAT) COA 18100497,29332100 +"What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.18100536,18100605",29391900 +What is the hs code for AMBROXOL HYDROCHLORIDE POWDER (BHN BAKU OBAT) COA AHM/18127 S/D AHM/18129,29221990 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101852818,17021100 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO180601,38249999 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO170601,38249999 +What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK)COA EG209-180702,38249999 +What is the hs code for GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK)COA EG209-180702,38249999 +What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM180901-PGH,38249999 +"What is the hs code for POLYQUTA 400KC (BHN BAKU KOSMETIK) COA 180913107,180915116",39129090 +What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 80218,38247900 +What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 80503,38247900 +What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 80610,38247900 +What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 32716/M1,13021950 +What is the hs code for TEFOSE 63 (BHN BAKU SUPLEMEN) COA 171252,28399000 +What is the hs code for LABRAFIL M 1944 CS (BHN BAKU SUPLEMEN) COA 171005,28399000 +What is the hs code for LABRAFIL M 1944 CS (BAHAN BAKU SUPLEMEN) COA 171005,28399000 +What is the hs code for COMPRITOL 888 ATO (BAHAN BAKU SUPLEMEN) COA 169798,28399000 +What is the hs code for TEFOSE 63 BF (BHN BAKU SUPLEMEN) COA 171041,28399000 +"What is the hs code for PYRAZINAMIDE EP/USP (BHN BAKU OBAT) COA WPOZ 089 I18, 090 I 18...",29339990 +What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA.MLAH089918,29341000 +What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA.18100604,29221990 +"What is the hs code for PEG 400 (POLYETHYLENE GLYCOL) BAHAN BAKU KOSMETIK) COA.AKW0006129,6075",39072010 +What is the hs code for PROMOIS WK-GB (BHN BAKU KOSMETIK) COA KGI,38249999 +What is the hs code for PROMOIS EU-118(IS) (BHN BAKU KOSMETIK) COA KGN,38249999 +What is the hs code for SILASOMA MFA(S) (BHN BAKU KOSMETIK) COA KEF,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-180906,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-180907,38249999 +What is the hs code for OLIVE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA,38249999 +What is the hs code for WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK)COA EG138-180401,38249999 +"What is the hs code for AMLODIPINE BESILATE BP/EP (BHN BAKU OBAT), COA. AMB/122/09/18 S/D AMB/125/09/18, 128 S/D 134",29333990 +"What is the hs code for ASTABIO ARV-S (BHN BAKU OBAT) COA.1711211K, 1806061K",32030010 +What is the hs code for ASTABIO AW1 (BHN BAKU OBAT) COA 1809051,32030010 +What is the hs code for CONFECTIONERY INK CI-250005 RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA TSUK 1447548-1.1,32151900 +"What is the hs code for KF-6038 (BHN BAKU KOSMETIK) , COA 809200",38249999 +What is the hs code for KF-96A-6CS (BHN BAKU KOSMETIK) COA 809981,38249999 +"What is the hs code for EUXYL PE 9010 (BHN BAKU KOSMETIK) COA. 1515313, 1516944",29420000 +"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218080130",29420000 +"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218080130",29420000 +"What is the hs code for STAY C (R) 50, 20KG BOX NA (BHN BAKU KOSMETIK) COA UT18010231",29362700 +"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0318050790 S/D 792, 50793,61027",29420000 +What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001476503,29420000 +"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00550067,773, 1276",29420000 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT18020169,29362100 +"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18060170,70197",29362800 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180045,46 61",29420000 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01705019,29362900 +What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18080219,29362800 +"What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0718030047",29420000 +"What is the hs code for STAY-C (R) 50,5KG BAG ALU EX US (BHN BAKU KOSMETIK) COA UT17070104",29362700 +What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11803004,29362900 +"What is the hs code for PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0818040071",29420000 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ70913226,29362500 +What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW91809269,21069059 +"What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01803646",29362400 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ80203028,29362200 +What is the hs code for VITAMIN A PALMIATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT18030171,29362100 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT18010072,29362900 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01802002,29362900 +What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18020026,29362800 +"What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN), COA UT18020026",29362800 +What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18020026,29362800 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT18050009,29362800 +"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18060006,8",29362600 +What is the hs code for D-PANTHENOL 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01803039,29362400 +What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0218060107,29420000 +"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218080130",29420000 +"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN), COA UT18060030",29362800 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT18070024,29362900 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT18070024,29362900 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT18070024,29362900 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18050009,29362800 +What is the hs code for RIBOFLAVIN 5PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1803040,29362300 +"What is the hs code for CIPROFLOXACIN HCL (BHN BAKU OBAT) COA HB00N1809021 S/D 27, 1809003H",29335990 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101852918,17021100 +What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND180902,29372200 +What is the hs code for PANTOPRAZOLE SODIUM (BHN BAKU OBAT) COA PSFP18033,29333990 +"What is the hs code for FLORAGLO OPTISHARP 5/1 24 FS (B.BAKU SUPLEMEN) COA UE01803001, SAMPLE NO COMM VALUE",32030010 +"What is the hs code for FLORAGLO OPTISHARP 5/1 24PCT FS (B. BAKU SUPLEMEN) COA UE01803002, SAMPLE NO COMM VALUE",32030010 +"What is the hs code for FLORAGLO OPTISHARP 5/1 24PCT FS (B. BAKU SUPLEMEN) COA UE01803003, SAMPLE NO COMM VALUE",32030010 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608679,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608997,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607209,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605730,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608964,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608965,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608972,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608962,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608997,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608959,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608959,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608980,38249999 +What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608947,39061090 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608958,38249999 +What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608960,38249999 +What is the hs code for OPADRY BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608948,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608961,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608992,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608972,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608995,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608865,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608993,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608993,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608358,38249999 +What is the hs code for OPADRY RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608846,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608679,38249999 +What is the hs code for OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608863,38249999 +What is the hs code for OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608863,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608679,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608754,38249999 +What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608856,39061090 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608851,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608852,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608864,38249999 +What is the hs code for OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608892,38249999 +What is the hs code for OPADRY II GRAY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608855,38249999 +What is the hs code for OPADRY AMB II PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608847,38249999 +What is the hs code for OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608848,38249999 +What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK)COA SFP-N-080398,38249999 +What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK)COA 090718,38249999 +What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-170388,38249999 +What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-011388,38249999 +What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-070698,38249999 +What is the hs code for SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK)COA HMVBD-082198,38249999 +What is the hs code for SK BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK) COA HMVBD-082198,38249999 +What is the hs code for CORN STARCH (BHN BAKU OBAT) COA 20180906,11081200 +"What is the hs code for PURICILLIN COMPACTED (BHN BAKU OBAT) COA M842377,842419,842422,23,26,16",29411020 +"What is the hs code for PURIDROX TM POWDER CEFADROXILE MONOHYDRATE (BHN BAKU OBAT) COA M334582,586,587",29419000 +What is the hs code for SODIUM VALPROATE (BAHAN BAKU OBAT) COA.452035,29159090 +What is the hs code for METAMIZOLE SODIUM INJECTABLE GRADE(BHN BAKU OBAT) COA 17091363,29331900 +"What is the hs code for METAMIZOLE SODIUM MONOHYDRATE (BHN BAKU OBAT) COA 1805646,5676,18091384,386",29331900 +"What is the hs code for PYRAZINAMIDE EP/USP (BHN BAKU OBAT) COA WPOZ 1081 18, 1091 18...",29339990 +"What is the hs code for OXYTETRACYCLINE DIHYDRATE INJ GRADE BP/EP (B BAKU OBAT UTK PAKAN TERNAK) COA ZT180809,721",29413000 +What is the hs code for DOXORUBICIN HYDROCHLORIDE EP (BHN BAKU OBAT) COA 061803055,29335990 +What is the hs code for CARBOPLATIN EP9 (BAHAN BAKU OBAT) COA 275180010,29335990 +What is the hs code for CARBOPLATIN EP9 (BHN BAKU OBAT) COA 275180010,29335990 +What is the hs code for CARBOPLATIN EP9 (BHN BAKU OBAT) COA 275180010,29335990 +What is the hs code for CARBOPLATIN EP9 (BHN BAKU OBAT) COA 275180010,29335990 +"What is the hs code for 1,3 BUTYLENE GLYCOL, COSMETIC QUALITY(BHN BAKU KOSMETIK) COA P0618706BC, P0618730AC",29053200 +What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 189134,29332900 +"What is the hs code for TEFOSE 63 (BHN BAKU KOSMETIK),COA 170796",28399000 +What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5497417,38249999 +What is the hs code for AMISOL TM 4135 (BHN BAKU KOSMETIK) COA 1731001,38249999 +What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829016600J,38249999 +What is the hs code for BODY 3 COMPLEX (BHN BAKU KOSMETIK) COA B3C010318,38249999 +"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK), COA 1814002",38249999 +What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 1735914,38249999 +What is the hs code for SWT-7 TM L (BHN BAKU KOSMETIK) COA 1821001,38249999 +What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829016600J,38249999 +What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785016298J,38249999 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1814003,38249999 +What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016427J,38249999 +What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830016100J,38249999 +What is the hs code for GUAIFENESIN USP (BHN BAKU OBAT) COA GGE-1809328 S/D 9330,29094900 +"What is the hs code for PANTOPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT,COA APSS18003",29333990 +What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG,29362700 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN538108,35051010 +What is the hs code for STARCAP 1500 CO-PROCESSED (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537454,35051010 +What is the hs code for O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 040418/005357,38249999 +What is the hs code for CYPROHEPTADINE HCL BP/PH.EUR (BHN BAKU OBAT) COA CYP/08181011,29333990 +"What is the hs code for MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU MAKANAN) COA.TS00011052",29362500 +What is the hs code for KIT C6 FLOW CYTO STARTER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),38210010 +What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8198931,38210010 +What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8135947,38210010 +"What is the hs code for CUSTOM CS&T RUO BEADS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7222727,SAMPLE NO COMM VAL",38210010 +"What is the hs code for FACS ACCUDROP BEADS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8226993,SAMPLE NO COMM VALUE",38210010 +"What is the hs code for ACCUDROP FLUORESCENT BEAD ...(M. UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7311735,SAMPLE NO COMM",38210010 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18080219,29362800 +What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT018080009,29362100 +What is the hs code for VIT A PALM 1.0M+VIT D3 100'000 (BHN BAKU MAKANAN) COA UT18070055,29362100 +"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01803043",29362400 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01803043",29362400 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01803043",29362400 +"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000176817",29362900 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01803043,4049,6058198",29362400 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA UT1806058,29362400 +"What is the hs code for PARSOL HS, 10KG BAG (BHN BAKU KOSMETIK) COA 1017090022",29420000 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8253602,38210010 +"What is the hs code for BOTTLE D-XYLOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8241700",38210010 +What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8250526,38210010 +What is the hs code for PLATE TSA IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8214910,38210010 +What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8248690,38210010 +"What is the hs code for BOTTLE PEPTONE DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8101800,8241622",38210010 +What is the hs code for BOTTLE BUFFER PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8155504,38210010 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8206906,38210010 +What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8215542,38210010 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255613,38210010 +"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8066907,8109821",38210010 +What is the hs code for PLATE TSA IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8214910,38210010 +What is the hs code for PAIL CASAMINO ACIDS TECHNICAL 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8101901,38210010 +What is the hs code for PLATE TSA IC-XT 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8214910,38210010 +What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8079881,38210010 +What is the hs code for BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8194606,38210010 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8115797,38210010 +"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8253602",38210010 +"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141815,8211649",38210010 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8234703,38210010 +What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8064953,38210010 +What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8178628,38210010 +What is the hs code for VIAL UNIVERSAL VIRAL TRANSPORT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 181067300,38210010 +"What is the hs code for PLATE TSA IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8208727,8214910",38210010 +"What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121602,7338553",38210010 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8241622,38210010 +What is the hs code for PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8128688,38210010 +What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206549,38210010 +What is the hs code for BOTTLE CASAMINO ACIDS 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8197978,38210010 +What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8239573,38210010 +"What is the hs code for BOTTLE PHOSPHATE BUFFER PH 7,2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8141591",38210010 +What is the hs code for BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8080511,38210010 +What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7332727,38210010 +What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8046757,38210010 +What is the hs code for BOTTLE TRYPTONE GLUCOSE EXT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8193807,38210010 +What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8134700,38210010 +What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8141811,38210010 +What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183877,38210010 +What is the hs code for BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8037753,38210010 +What is the hs code for GASPAK EZ STANDARD INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 727933901,38210010 +What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009699,38210010 +What is the hs code for BOTTLE MARINE BROTH 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8162748,38210010 +What is the hs code for BOTTLE MIDDLEBROOK 7H9 BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8045590,38210010 +What is the hs code for BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8032739,38210010 +What is the hs code for BOTTLE MIDDLEBROOK 7H10 AGAR 500 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8046736,38210010 +What is the hs code for PLATE TSA IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8199596,38210010 +What is the hs code for PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8219820,38210010 +What is the hs code for PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8219820,38210010 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8123681,38210010 +What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8101787,38210010 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8183888,38210010 +What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8101787,38210010 +What is the hs code for BOTTLE LETHEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8211630,38210010 +"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8158503..",38210010 +"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8110566,20929,76606",38210010 +What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8214977,38210010 +What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8201702,38210010 +What is the hs code for CD10 RTC HI110A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8220620,38210010 +What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8116667,38210010 +What is the hs code for IFN GAMMA APC RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8190547,38210010 +What is the hs code for ANTI-EPCAM APC EBA-1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8213706,38210010 +What is the hs code for CYTOFIX/CYTOPERM SOLN KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8150698,38210010 +What is the hs code for MS LGG1KPA ITCI PE MOPC-21 100TST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8024788,38210010 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8124811,38210010 +What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8151919,38210010 +What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8190858,38210010 +What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8241974,38210010 +What is the hs code for VIAL H INFLUENZAE ANTISERUM TYPE B (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8088628,38210010 +What is the hs code for HU VIMENTIN PE RV202 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7083575,38210010 +"What is the hs code for CD3 FITC SK7 50 TESTS IVD(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8181542",38210010 +What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7332690,38210010 +What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M-31PCT (BHN BAKU OBAT) COA 101829025,28161000 +"What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML , COA 16222-1, SAMPLE NO COMMERCIAL VALUE",90189090 +"What is the hs code for RESTYLANE DEFYNE 1ML , COA 16013-1, SAMPLE NO COMMERCIAL VALUE",90189090 +"What is the hs code for RESTYLANE SKINB VITLIDO 1MLD16 , COA 16200-2",90189090 +"What is the hs code for RESTYLANE SKINB VITALLGHLIDO 1MLD16 , COA 16191-1",90189090 +"What is the hs code for RESTYLANE LIDOCAINE 1ML D16 , COA 16199-2",90189090 +"What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML , COA 16222-1",90189090 +"What is the hs code for RESTYLANE REFYNE 1ML , COA 16326-1",90189090 +"What is the hs code for RESTYLANE DEFYNE 1ML , COA 16013-1, 16283-1",90189090 +"What is the hs code for RESTYLANE KYSSE 1 ML , COA 16207-1",90189090 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180909,17029019 +What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA R700500,29419000 +What is the hs code for CEFTAZIDIME BUFFERED (BHN BAKU OBAT) COA R100100,29419000 +What is the hs code for METRONIDAZOLE BP (BHN BAKU OBAT) COA MTZ/8091566,29332900 +What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0029124,38249999 +What is the hs code for AC091KF FUCOGEL 1.5P 25 KG (BHN BAKU KOSMETIK) COA 0029184,38249999 +What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA 0000013180,33029000 +What is the hs code for THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA.0000013172,33029000 +What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA 0000013180,33029000 +What is the hs code for MIRANOL ULTRA C32 200KG PLASCTIC DRUM (BHN BAKU KOSMETIK) COA BP808500R,34029099 +What is the hs code for DURALAC (R) H (BHN BAKU OBAT) COA LC 015-18-805,17021100 +What is the hs code for P.GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 32113/M1,13021990 +What is the hs code for METRONIDAZOLE BP (BHN BAKU OBAT) COA MTZ/8091537,29332900 +What is the hs code for OPADRY AMB II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609458,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609431,38249999 +What is the hs code for OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609457,38249999 +What is the hs code for COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-1709025/35678,38249999 +What is the hs code for AC019KC PHYTOVITYL C 5KG (BHN BAKU KOSMETIK) COA 0028393,38249999 +What is the hs code for BILBERRY (V.MYRTILLUS) ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 32752/M2,13021950 +What is the hs code for CORTISONE ACETATE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1800951018,29372200 +"What is the hs code for OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET), COA WP804215",32151900 +"What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND171001, ND180904",29372200 +What is the hs code for LANSOPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA LP0218C026,29333990 +What is the hs code for ONDASENTRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA 18OS001,29332900 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE,25KG BOX (BHN BAKU MAKANAN) COA TL01807089, 8307",29362700 +What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 181243,13021990 +What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 180264,13021990 +What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 186131,13021990 +What is the hs code for ALPINIAWHITE (BHN BAKU KOSMETIK) COA 181474,13021990 +What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 180807,29329990 +What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETI) COA 181104,13021990 +What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20180701,29362800 +What is the hs code for BICAR FOOD 0/50 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP26418,28363000 +What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT679972,32151900 +What is the hs code for OPALUX TAN (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT679528,32151900 +What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT678523,32151900 +What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609469,38249999 +What is the hs code for PIROXICAM (BHN BAKU OBAT) COA PRX2018011M,29349990 +What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 18092006,38249999 +What is the hs code for TRIAMCINOLONE ACETONIDE MICRONIZED (BHN BAKU OBAT) COA NY1698M,29372200 +What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NY0865M,29372200 +What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT (BHN BAKU KOSMETIK)COA HMVBD-082198,38249999 +What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-010248,38249999 +What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-010248,38249999 +What is the hs code for SK BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSFAC-021088,38249999 +What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 2018G1505,38249999 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518080200,0518090229",29420000 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518090229",29420000 +"What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA 0518080198,0518090230",29420000 +"What is the hs code for DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01805619,TL01806623",29362400 +"What is the hs code for PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0318061028 S/D 31",29420000 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)(BHN BAKU KOSMETIK) COA UT18020170,29362100 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18070197,29362800 +"What is the hs code for PARSOL EHS,25KG PC (BHN BAKU KOSMETIK) COA 0718030047",29420000 +"What is the hs code for STAY C (R) ,5KG BAG/ALU (BHN BAKU KOSMETIK) COA UE01802016",29362700 +"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218080130,143",29420000 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518090229",29420000 +"What is the hs code for RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1802033, 1803038",29362300 +"What is the hs code for ASCORBIC ACID 90PCT GRANULATION ,25KG BOX(BHN BAKU SUPLEMEN) COA WB00618917",29362700 +"What is the hs code for ASCORBIC ACIDS 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB00618917",29362700 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18040126,29362400 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT18070024,29362900 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11804015,29362900 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18040126,29362400 +"What is the hs code for ASCORBIC ACID, 25KG BOX ALU (BHN BAKU SUPLEMEN) COA TL01804362",29362700 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01807008, 7099",29362700 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418043,29362200 +"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18060030, 60039",29362800 +"What is the hs code for ASCORBYL PALMITATE ,25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ80506126,6127",29362700 +"What is the hs code for ASCORBYL PALMITATE,25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ80506127,28,42,43",29362700 +What is the hs code for PX 103070-C3 (BHN BAKU MAKANAN) COA XW91809349,21069059 +What is the hs code for RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1803039,29362300 +What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1803039,29362300 +"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1803039,44",29362300 +What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1803044,29362300 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18060007,29362600 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT18010072,29362900 +What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ80606143,29362700 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01804362,4400",29362700 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT18040136,29362400 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18060180,29362800 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18060024,29362100 +"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01803040",29362400 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418096,29362900 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418096 S/D 98,29362900 +"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418098,99",29362900 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3 PCT (BHN BAKU SUPLEMEN) COA WB00418099,29362900 +"What is the hs code for CALCIUM ASCORBATE ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00718099",29362700 +"What is the hs code for ASCORBYL PALMITATE, 5KG BOX ALU(BHN BAKU MAKANAN) COA UQ80606133",29362700 +"What is the hs code for CALCIUM ASCORBATE, 25KG BOX ALU (BHN BAKU SUPLEMEN) COA WB00718099",29362700 +What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1802033,29362300 +"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN), COA UQ8060228",29362200 +"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80602279,87",29362200 +"What is the hs code for CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00718099",29362700 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00517030,29362300 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00517030,29362300 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18060007,29362600 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00517030,29362300 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT18060039,29362800 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01801020,32041900 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01801020,32041900 +"What is the hs code for KF-6048 (BHN BAKU KOSMETIK) , COA 80902, SAMPLE NO COMMERCIAL VALUE",38249999 +"What is the hs code for KSP-100 (BHN BAKU KOSMETIK) COA 809627, SAMPLE NO COMMERCIAL VALUE",38249999 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN )COA RBA2611800,28363000 +What is the hs code for GUAIFENESIN USP (BHN BAKU OBAT) COA GCE-1809335 S/D 354,29094900 +What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-2031018,29334910 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180923,17029019 +What is the hs code for OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609050,38249999 +What is the hs code for OPADRY BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609429,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609572,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609430,38249999 +What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609469,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609431,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609431,38249999 +What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609187,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609438,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609439,38249999 +What is the hs code for OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609441,38249999 +What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609440,32151900 +What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609460,32151900 +What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609460,32151900 +What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609460,32151900 +What is the hs code for OPADRY AMB II PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609433,38249999 +What is the hs code for OPADRY AMB II PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609434,38249999 +What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609437,39061090 +"What is the hs code for VC ASCORBIC ACID SPECIAL , 25KG BAL (BHN BAKU SUPLEMEN) COA HPD1803135",29362700 +What is the hs code for DIACEREIN EP (BHN BAKU OBAT) COA DCN/40510918,29189900 +"What is the hs code for PURICILLIN COMPACTED (BHN BAKU OBAT) COA. M842426,27 29,30,34",29411020 +What is the hs code for LIPOID PPL-600 (BHN BAKU OBAT) COA.572000-2180222/007-008 (2),29232010 +What is the hs code for B-CAROTENE 10PCT EMULS (BHN BAKU MAKANAN) COA UE01806010,32041900 +"What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF, 1KG ALUF (BHN BAKU SUPLEMEN) COA UE01806039",32030010 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00218194,29362800 +"What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF, 1KG ALUF (BHN BAKU SUPLEMEN) COA UE01806039",32030010 +What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17110018,29420000 +What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18070054,29362100 +What is the hs code for VITAMIN A AND D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18090040,29362100 +What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB01017666,29362800 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010014,32041900 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00218194,29362800 +What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB01017666,29362800 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18030018,32030010 +What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17110018,29420000 +What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT18040040,29362500 +What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110004,32041900 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18070054,29362100 +What is the hs code for VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT180090040,29362100 +"What is the hs code for REDIVIVO (R) LYCOPENE 10PCT FS ,5KG ALU (BHN BAKU SUPLEMEN) COA UE01805005",29420000 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00218194,29362800 +What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17110004,32041900 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18030018,32030010 +"What is the hs code for KF-96A-6CS (BHN BAKU KOSMETIK) , COA 810987",38249999 +What is the hs code for METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT LYOPHILIZED (BHN BAKU OBAT)COA NY2401,29372900 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101853418,17021100 +What is the hs code for LUBRIPHARM (R) SSF NF/EP/JP (BHN BAKU OBAT) COA 121808941,28161000 +"What is the hs code for STAY C (R) 50, 5KG BOX/ALU (BHN BAKU KOSMETIK) COA UE01802023",29362700 +What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18060145,29362800 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180061,62,63",29420000 +What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OPI1803004,29362900 +"What is the hs code for NIACINAMIDE PC, 20KG BAL (BHN BAKU KOSMETIK) COA OP81801005",29362900 +"What is the hs code for D-PHANTENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL01806063",29362400 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01803040,6063",29362400 +What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418026,29362500 +"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418026,8028",29362500 +What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418028,29362500 +What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418028,29362500 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ80810152,29362300 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80810152,29362300 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80810152,29362300 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT18070021,32041900 +"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 1809EF6010",29224900 +What is the hs code for METHOCEL E15 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011HCCL01,39123900 +What is the hs code for METHOCEL E6 PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011HC2L02,39123900 +What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I65001,39123900 +What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I65001,39123900 +What is the hs code for METHOCEL K100M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I1M003,39123900 +What is the hs code for METHOCEL K100 PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I6D003,39123900 +What is the hs code for METHOCEL K4M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I41002,39123900 +"What is the hs code for ASCORBIC ACID 90PCT, GRANULATION 25KG BOX (BHN BAKU SUPLEMEN) COA WB00818950,51",29362700 +What is the hs code for OLIO VINACCIOLI RAFFINATO (BHN BAKU KOSMETIK) COA.B1800252,15152919 +"What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 80317, 80320",38029090 +What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 62855P,38249999 +What is the hs code for TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA645321,32151900 +"What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1808038,40 S/D 42,44 S/D 46, 48 S/D 50",29224900 +"What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 29671018,29681018,29691018...",29359000 +"What is the hs code for RIFAMPICIN POWDER (BHN BAKU OBAT) COA 2272, SAMPLE NO COMMERCIAL VALUE",29419000 +"What is the hs code for TSPL-30-ID (BHN BAKU KOSMETIK) , COA 805010, SAMPLE NO COMMERCIAL VALUE",38249999 +What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 02/17GAAK,28399000 +"What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 02/17GAAK, SAMPLE NO COMM VALUE",28399000 +What is the hs code for GELOIL SC (BHN BAKU SUPLEMEN) COA 169611,28399000 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA KJE,38249999 +What is the hs code for VISTANOL GDHR (BHN BAKU KOSMETIK) COA KHJ,38249999 +What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA KGM,38249999 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN )COA RBA2781800,28363000 +What is the hs code for CALCIUM GLUCONATE EP (BHN BAKU OBAT) COA CGA-EP1807080,29181600 +What is the hs code for CENTELLA ASIATICA TRITERPP./C (BHN BAKU SUPLEMEN) COA 32716/M3,38249999 +What is the hs code for ECHINACEA ANG. DRY PURIF. EX (BHN BAKU SUPLEMEN) COA 32527/M1,13021950 +What is the hs code for BILBERRY (V. MYRTILLUS) ET. EX.36PCT (BHN BAKU SUPLEMEN) COA 32752/M3,13021950 +What is the hs code for SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10918/M1,38249999 +What is the hs code for KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0280618,29339990 +"What is the hs code for SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 1807502477,77,1607046576",29322090 +What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA.M113123,29339990 +What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113123,29339990 +What is the hs code for SILVERION 2400 (BHN BAKU KOSMETIK) COA.17-09093,38249999 +What is the hs code for CLOZAPINE (BHN BAKU OBAT) COA 740106,29335990 +What is the hs code for NOREPINEPHRINE BITARTRATE (BHN BAKU OBAT) COA 450104,29379010 +What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA.18100640,29395900 +"What is the hs code for DOPAMINE HYDROCHLORIDE (BHN BAKU OBAT), COA 18100236",29222900 +What is the hs code for NYSTATIN (BHN BAKU OBAT) COA.C114236,29419000 +What is the hs code for NYSTATIN MICRONIZED (BHN BAKU OBAT) COA C130870,29419000 +What is the hs code for IBUPROFEN 40 GRADE (BHN BAKU OBAT) COA 4050-3373,29163990 +What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN1380618,29221990 +"What is the hs code for PURIDROX TM POWDER CEFADROXILE MONOHYDRATE (BHN BAKU OBAT) COA M340031,32,33",29419000 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101853018,17021100 +What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103862518,17021100 +What is the hs code for POLYQUTA 400KC (BHN BAKU KOSMETIK) COA 181024142,39129090 +What is the hs code for AC019KC PHYTOVITYL C 5KG (BHN BAKU KOSMETIK) COA 0028393,38249999 +What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ80507006,29420000 +"What is the hs code for STAY-C (R) 50, 20KG BOX /ALU (BHN BAKU KOSMETIK) COA UE01809037,9045",29362700 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO180703,38249999 +What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-180803-GS,38249999 +What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIV171001-BGBIO,38249999 +What is the hs code for SAFFLOWER REFINED OIL (BHN BAKU KOSMETIK) COA CARHR181003-DW,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS180201,38249999 +What is the hs code for LOTUS OILY EXTRACT GT10 (BHN BAKU KOSMETIK) COA NEN180606-H,38249999 +What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP796060,32151900 +What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP797454,32151900 +What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP796063,32151900 +What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP798864,32151900 +What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP800665,39059990 +What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP804017,39059990 +What is the hs code for LIQUORICE LC (BHN BAKU KOSMETIK) COA.111279/P82508-P82510,13021920 +"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91810118,119",29420000 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318061033",29420000 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18080229,29362800 +What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001476503,29420000 +"What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01801802,TL01804807",29362400 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT18020170",29362100 +"What is the hs code for ETHYL PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01804807",29362400 +"What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11803004,OP11805017",29362900 +"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000175446, 0000176817",29362900 +"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000176817,0000177122",29362900 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI17100009,29362900 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI1700009,29362900 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI1700009,29362900 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18080227,29362800 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18080227,29362800 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18080227,29362800 +What is the hs code for DL-A- TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18080227,29362800 +What is the hs code for DL-A- TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18080227,29362800 +"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18080227,229",29362800 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UT01805032,32041900 +What is the hs code for PX 204005 (BHN BAKU MAKANAN) COA XW91809229,21069059 +"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18040126,128",29362400 +What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18060145,29362800 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18060145,29362800 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18060145,29362800 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18080229,29362800 +What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT680653,32151900 +What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT678420,32151900 +What is the hs code for OPATINT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT680654,32151900 +What is the hs code for OPATINT YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT680655,32151900 +What is the hs code for ALPINAWHITE (BHN BAKU KOSMETIK) COA 181914,13021950 +"What is the hs code for RIFAMPICIN POWDER (BHN BAKU OBAT) COA 2272, E736, SAMPLE NO COMMERCIAL VALUE",29419000 +"What is the hs code for SPIRAMYCIN (BHN BAKU OBAT) COA 180917043M, 40M",29419000 +What is the hs code for PIRACETAM (BHN BAKU OBAT) COA 20181003,29337900 +What is the hs code for KETOROLAC TROMETHAMOL/TROMETHAMINE (BHN BAKU OBAT) COA. 18100672,29339990 +"What is the hs code for VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU MAKANAN) COA HPB1802140",29362700 +What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK COA B270918,39123900 +"What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 201800311,293",28183000 +What is the hs code for SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10918/M1,38249999 +What is the hs code for SILYMARIN/ PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 10935/M1,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609899,38249999 +What is the hs code for OPADRY KB WHITE(BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609888,38249999 +What is the hs code for OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609888,38249999 +What is the hs code for ACRYL-EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609875,39061090 +What is the hs code for ACRYL-EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609874,39061090 +What is the hs code for ACRYL-EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609574,39061090 +What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609882,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608134,38249999 +What is the hs code for ACRYL-EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609887,39061090 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609982,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609884,38249999 +What is the hs code for ACRYL-EZE II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609904,39061090 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609876,38249999 +What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609873,38249999 +What is the hs code for OPADRY AMB MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609889,38249999 +What is the hs code for OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609905,38249999 +What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0026163,38249999 +What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP797597,32151900 +What is the hs code for FD AND C YELLOW #5/TARTRAZINE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP796063,32151900 +What is the hs code for MATIPURE TM OIL FREE (BHN BAKU KOSMETIK) COA 1822301,38249999 +What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 1735914,38249999 +What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 1724514,38249999 +What is the hs code for B- WHITE (BHN BAKU KOSMETIK) COA 829016600J,38249999 +"What is the hs code for CAPIXYL (BHN BAKU KOSMETIK), COA 830016094J",38249999 +What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830016105J,38249999 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1814003,38249999 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1817802,38249999 +What is the hs code for TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784026462J,38249999 +What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK)COA MUP-021168,38249999 +What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK)COA MCP-N-052768,38249999 +"What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA 0518090230",29420000 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518090229",29420000 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518090229,253",29420000 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518090253",29420000 +What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P8U15QA000,29420000 +What is the hs code for TRANSCUTOL HP (BHN BAKU SUPLEMEN) COA 171859,28399000 +What is the hs code for COMPRITOL 888 ATO (BHN BAKU SUPLEMEN) COA 170488,28399000 +"What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT),COA 18E2006",28399000 +What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 18E2203,28399000 +What is the hs code for EMULCIRE 61 WL 2659 (BHN BAKU OBAT) COA 170106,28399000 +What is the hs code for IONOL CP (BHN BAKU KOSMETIK) COA 01140518,29420000 +What is the hs code for METHOCEL E6 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011HCLL01,39123900 +What is the hs code for METHOCEL K4M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I86001,39123900 +What is the hs code for ETHOCEL STANDARD 10 PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D184I5A021,39123900 +What is the hs code for METHOCEL K4M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180142001,39123900 +What is the hs code for SK BIOLAND PF SC GLUCAN (BHN BAKU KOSMETIK)COA CPG-500688,38249999 +What is the hs code for PERMETHRIN PHARMA GRADE BHN BAKU OBAT COA PE0022-S77,29163990 +"What is the hs code for TEXBIND TG BH (BHN BAKU MAKANAN),COA 2018103001",35051090 +What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP79604,32151900 +What is the hs code for ERYTRHROSINE AL 38PCT-42PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP7988631,32151900 +What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP797606,32151900 +What is the hs code for FD AND C BLUE #1/BRILLIANT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP795612,32151900 +What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 180807,29329990 +What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 181522,13021990 +What is the hs code for MANDARIN CLEAR (BHN BAKU KOSMETIK) COA 181472,13021990 +What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 181755,38249999 +What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 201800311,28183000 +What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 18290070,30039000 +What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 18290097,30039000 +What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 18290100,30039000 +What is the hs code for GLICLAZIDE (BHN BAKU OBAT) COA 1840002430,29359000 +What is the hs code for LIPOID S20 (BHN BAKU OBAT) COA.572000-2180121/075-089 (15),29232010 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101853718,17021100 +What is the hs code for NIACINAMIDE USP (BHN BAKU KOSMETIK) COA 18-19/NMD(P)/U/122,29362900 +What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA. 8MT180873,30032000 +What is the hs code for PHASEOLUS VULGARIS DRY EXTRACT (BHN BAKU SUPLEMEN) COA 32599/M1,13021950 +What is the hs code for SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10918/M1,38249999 +What is the hs code for VALSARTAN BP/USP (BAHAN BAKU OBAT) COA.2-PXO-0690919,29332900 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01808079,29362400 +"What is the hs code for D-PANTHENOL, 20KG PAIL (BHN BAKU KOSMETIK) COA TL01808079",29362400 +"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01808079",29362400 +What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91810353,29420000 +"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91811002,003",29420000 +"What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA 0518090260",29420000 +"What is the hs code for STAY C (R) 50, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UE01802023",29362700 +"What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0718030056",29420000 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318101510 S/D 13",29420000 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318101513 S/D 15",29420000 +"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0218060099,0218090158",29420000 +What is the hs code for BISOPROLOL FUMARATE USP (BHN BAKU OBAT) COA SLL/BF/0918004,29221990 +"What is the hs code for PYRAZINAMIDE EP/USP (BHN BAKU OBAT) COA WPOZ 131 J 18, WHOPZ 1312 J 18...",29339990 +What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA KJI,38249999 +What is the hs code for PROMOIS S-CAQ (BHN BAKU KOSMETIK) COA KHD,38249999 +What is the hs code for SILASOMA MFA(S) (BHN BAKU KOSMETIK) COA KKG,38249999 +What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 181401,13021990 +What is the hs code for SOLBROL P (BHN BAKU KOSMETIK) COA PR18780518,29182910 +"What is the hs code for VITAMIN A PALMITATE /M 1.0 MIU (BHN BAKU MAKANAN) COA UT18040020,21",29362100 +"What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00218443",29362700 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18060028,32030010 +"What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110018,19",29420000 +What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT18010012,29362500 +What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P8U15QA000,29420000 +"What is the hs code for VALERIAN D.H.E > 0,8PCT VAL.AC (BHN BAKU SUPLEMEN) COA 10945/M1",13021950 +"What is the hs code for FENTACARE 2231 EF (BHN BAKU KOSMETIK )COA ZH18J0604,1905,0106,711,712",34021990 +What is the hs code for BICAR FOOD 0/50 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP30118,28363000 +"What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (B BAKU OBAT) COA MTP28918,SAMPLE NO COMM VALUE",28363000 +"What is the hs code for BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU OBAT) COA MTP28918, SAMPLE NO COMM VALUE",28363000 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT18070024,29362900 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80313068,29362500 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18040129,29362400 +"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01806063",29362400 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL01806063",29362400 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL01806063",29362400 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11805017,29362900 +What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA WB00418028,29362500 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518033,29362300 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT18040172,29362100 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT18010072,29362900 +"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18040128,129",29362400 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT18050798,29362100 +What is the hs code for VITAMIN B12 0.PCT WS (BHN BAKU MAKANAN) COA UT18060014,29362600 +What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE01807002,29362100 +What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01807003,29362900 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01807003,29362900 +What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418028,29362500 +"What is the hs code for VITAMIN PREMIX, TYPE MM81 (105PCT) BHN BAKU MAKANAN,COA XW91810159",21069059 +What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE01807002,29362100 +What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01807003,29362900 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01807003,29362900 +What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418028,29362500 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518033,29362300 +"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18050006,60024",29362100 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18050003,29362800 +"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18050003,60039",29362800 +"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN), COA UT18080022",29362600 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18080022,29362600 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18060015,29362600 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18060015,29362600 +"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18060008,60014",29362600 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01805032,32041900 +What is the hs code for ASCORBIC ACID 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01804459,29362700 +"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN), COA UT18040136",29362400 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ80403076,29362200 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01805032,32041900 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01804459",29362700 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11805017,29362900 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ80403076,29362200 +"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA EB00418028,29",29362500 +What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418029,29362500 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518033,29362300 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610334,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610371,39061090 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607478,38249999 +What is the hs code for ACRYL-EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610328,39061090 +What is the hs code for OPADRY BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610333,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610332,38249999 +What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609501,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609501,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610536,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610329,38249999 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8127705,38210010 +"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8241622",38210010 +What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8165971,38210010 +What is the hs code for BOTTLE LACTONE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079881,38210010 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8041622,38210010 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8193816,38210010 +What is the hs code for BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8171598,38210010 +"What is the hs code for KIT CRYSTAL ENTERIC /NONFERMENTER(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8110699,740",38210010 +What is the hs code for BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8130513,38210010 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8222649,38210010 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8092580,38210010 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8222649,38210010 +What is the hs code for PLATE TSA W LP IC-XT PACK 90MM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8219820,38210010 +What is the hs code for KIT C6 FLOW CUTOMETRY FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1811556540,38210010 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7349871,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8206836,38210010 +"What is the hs code for PLATE TSA W LP IC-XT PACK 90MM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219820,8239772..",38210010 +What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8073877,38210010 +What is the hs code for PLATE TSA IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8242965,38210010 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8241622,38210010 +What is the hs code for KIT MAINTENANCE C6 FLOW CYT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),38210010 +What is the hs code for TUBE CRYSTAL E/ ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8235668,38210010 +What is the hs code for SOLUTION DECONTAMINATION CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1811536538,38210010 +What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7338553,38210010 +What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8059873,38210010 +What is the hs code for BOTTLE SABORAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183667,38210010 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8155504,38210010 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 82822931,38210010 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255613,38210010 +What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8164642,38210010 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8073950,38210010 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183888,38210010 +"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8115797,8141537",38210010 +What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8064953,38210010 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8134769,38210010 +What is the hs code for POUCH GASPAK EZ CO2 SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7339794,38210010 +What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8212919,38210010 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8114740,38210010 +What is the hs code for KIT C6 FLOW CYTOMETRY FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1811556540,38210010 +What is the hs code for BOTTLE PEPTONE WATER 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7332727,38210010 +"What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 82122903,8229637",38210010 +What is the hs code for PAI; TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8261624.828357,38210010 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8219737,38210010 +What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8228637,38210010 +What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8058982,38210010 +What is the hs code for BOTTLE PROTEOSE PEPTONE NO 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 82327928009830,38210010 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141966,38210010 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183841,38210010 +What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8215542,38210010 +"What is the hs code for BOTTLE MONNITOL SALT AGAR BBL,500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8206562",38210010 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8227609,38210010 +What is the hs code for BOTTLE TRYTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141903,38210010 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8193816,38210010 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8233861,38210010 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8127705,38210010 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8242960,38210010 +"What is the hs code for PLATE TSA IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8242965,8239768",38210010 +What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8011671,38210010 +What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8206558,38210010 +What is the hs code for BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8080511,38210010 +What is the hs code for BOTTLE L-ARABINOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8211671,38210010 +What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7332727,38210010 +What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8046757,38210010 +What is the hs code for BOTTLE UNIVERSAL PREENRICHMENT BROTH500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8171952,38210010 +What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8141811,38210010 +What is the hs code for BOTTLE CZAPEK DOX BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8215544,38210010 +What is the hs code for PANEL VIEWER EUROPE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 457987,38210010 +What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8134767,38210010 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8037719,38210010 +What is the hs code for BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7250994,38210010 +What is the hs code for BOTTLE TINSDALE BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8178912,38210010 +What is the hs code for BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8193979,38210010 +What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8206699833,38210010 +What is the hs code for BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7363785,38210010 +What is the hs code for BOTTLE M FC BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8103692,38210010 +What is the hs code for BOTTLE PSEUDOMONAS ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7235847,38210010 +What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA.MLAH1001018,29341000 +What is the hs code for MELOXICAM USP (BHN BAKU OBAT) COA MLAH0981018,29341000 +What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8135947,38210010 +What is the hs code for BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8134797,38210010 +What is the hs code for MANNITOL POWDER USP/EP - MANNO (BHN BAKU OBAT) COA.301810303,29054300 +What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8162741,38210010 +"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8159661",38210010 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8176609,38210010 +What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7314928,38210010 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8124811,38210010 +What is the hs code for BOTTLE HEMOGLOBIN SOL 2PCT 100ML 10 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8218557,38210010 +What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7220790,38210010 +What is the hs code for BOTTLE FOLIC ACID ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8114908,38210010 +What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8190858,38210010 +What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8151919,38210010 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8155510,38210010 +What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8151919,38210010 +What is the hs code for CD N34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8220609,38210010 +What is the hs code for CD7 FITC M-T701 50 TESTS RUO/G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8197824,38210010 +What is the hs code for CD10 FITC HI 10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8220620,38210010 +What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8220589,38210010 +What is the hs code for BD CST BEADS KIT 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 80759,38210010 +What is the hs code for CD3 PERCP SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8220687,38210010 +What is the hs code for CD45 PERCP 2D1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8270855,38210010 +What is the hs code for CD34 PE 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8285754,38210010 +What is the hs code for CD38 APC HB7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8204729,38210010 +What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8204557,38210010 +What is the hs code for IFN GAMMA APC RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8190547,38210010 +What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8232501,38210010 +What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8214977,38210010 +What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8201702,38210010 +What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8256655,38210010 +What is the hs code for ANTI HLA-DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 81987610,38210010 +What is the hs code for CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8254780,38210010 +What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8268724,38210010 +What is the hs code for ANTI-MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8250847,38210010 +What is the hs code for CD79A PE HM47 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8179861,38210010 +What is the hs code for ACCUDROP FLUORESCENT BEADS 25 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8059791,38210010 +What is the hs code for LINEAGE COCKTAIL 1 (LIN 1) FITC 50 TESTS (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8178601,38210010 +What is the hs code for CD45 FITC 2D1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8214831,38210010 +What is the hs code for HU CD4 FITC RPA-T4 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8037703,38210010 +What is the hs code for STAIN BUFFER FBS 500ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8166639,38210010 +What is the hs code for LYSING BUFFER 10X CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8220866,38210010 +What is the hs code for HU CD25 FITC M-A251 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8143577,38210010 +What is the hs code for MS LG KPA COMP BEAD SET 6ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8087701,38210010 +What is the hs code for VIA-PROBE CELL VIABILITY SOLUTION (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8169990,38210010 +What is the hs code for MS LG G1KPA ITCI PE MOPC0-21 100TS(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8024788,38210010 +What is the hs code for HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8081908,38210010 +What is the hs code for HU CD45 HORIZON V500 H130 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8170906,38210010 +What is the hs code for HU CD26 FITC M-A-261 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8088577,38210010 +What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8141691,38210010 +What is the hs code for BOTTLE EGG YOLK TELTURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7362985,38210010 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8155510,38210010 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8159608,38210010 +"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8176609,8213631",38210010 +What is the hs code for HU REGULATORY T CELL CKTL 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8281833,38210010 +What is the hs code for CD34 PE 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8285754,38210010 +What is the hs code for MS LG KPA COMP BEAD SET 6ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8197547,38210010 +What is the hs code for HU CD4 PE CY7 SK3 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 71809421671,38210010 +What is the hs code for VIAL TINSDALE ENRICHMENT 6X15ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8269970,38210010 +What is the hs code for CD3 APC SK7 100TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8249595,38210010 +What is the hs code for CD3 APC SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8249595,38210010 +What is the hs code for FACS ACCUDROP BEADS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8226993,38210010 +"What is the hs code for RESTYLANE SKINB VITLIDO 1MLD16 , COA 16200-2, 16419-1",90189090 +"What is the hs code for RESTYLANE SKINB VITALLGHLIDO 1MLD16 , COA 16373-1",90189090 +"What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML , COA 16378-1.16445-1",90189090 +"What is the hs code for RESTYLANE VOLYME 1ML , COA 16046-1",90189090 +"What is the hs code for RESTYLANE KYSSE 1 ML , COA 16207-1",90189090 +What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML (BHN BAKU OBAT) COA 16378-1 SAMPLE NO COMMMERCIAL VALUE,90189090 +What is the hs code for VIRGIN OLIVE OIL CONFORM TO THE EUR ( BHN BAKU KOSMETIK) COA 0000022783,38249999 +What is the hs code for VIRGIN SWEET ALMOND OIL CONFORM TO THE EUR PH (BHN BAKU KOSMETIK) COA 0000023467,38249999 +What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT18090087,29362100 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18090249,29362800 +"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18090272,273",29362800 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01804593001",29362700 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418043,29362200 +"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418043,44",29362200 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB0418044,29362200 +"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ80606145,6146",29362700 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ80910167,29362300 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80910167,29362300 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ80710124,29362300 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ80710124,29362300 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80810157,29362300 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01805032,32041900 +"What is the hs code for PARSOL 340,25KG PC (BHN BAKU KOSMETIK) COA 0218100179",29420000 +"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218100179",29420000 +"What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF18127017",29420000 +"What is the hs code for STAY C (R) 50,20KG BOX ALU (BHN BAKU KOSMETIK) COA UE01809037",29362700 +"What is the hs code for BEAUPLEX (TM) VH,5KG BAG ALU (BHN BAKU KOSMETIK) COA UF18127017",29420000 +"What is the hs code for DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01806623",29362400 +What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 81008,38247900 +What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 81008,38247900 +What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 80809,38247900 +What is the hs code for OILESS CITY TM (BHN BAKU KOSMETIK) COA 71104,38247900 +"What is the hs code for MATCHA GREEN TEA EXTRACT CSP 6 TC ( BHN BAKU KOSMETIK), COA CSP 18014 EOU",38249999 +What is the hs code for ISOCELL TM SLIM (DISC) (BHN BAKU KOSMETIK) COA 1823202,38249999 +What is the hs code for ISOCELL TM SLIM (DISC) (BHN BAKU KOSMETIK) COA 1823202,38249999 +What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5541718,38249999 +What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 1735914,38249999 +"What is the hs code for B-WHITE (BHN BAKU KOSMETIK), COA 829016600J",38249999 +What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830016105J,38249999 +What is the hs code for EXO-T (BHN BAKU KOSMETIK) COA 715016602J,38249999 +What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016605J,38249999 +What is the hs code for TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784026310J,38249999 +What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1802823436,29372900 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN538434,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN538389,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN538468,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN538522,35051010 +What is the hs code for STARCAP 1500 CO-PROCESSED (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537461,35051010 +What is the hs code for ETHOCEL STANDARD 14 PREMIUM (BHN BAKU OBAT UTK PEWARNA TABLET) COA D184139021,39123900 +What is the hs code for RANITIDINE HYDROCHLORIDE USP(INJECTABLE USE) (BHN BAKU OBAT) COA RH 1128 11 18,29321900 +"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1830671, 1852295,1852302",29242930 +"What is the hs code for EUXYL K 100 CN 10KG KA (BHN BAKU KOSMETIK) COA 1514878, 1516802",38249999 +"What is the hs code for EUXYL PE 9010 CN 10KG KA (BHN BAKU KOSMETIK) COA 1515976,1517645",38249999 +What is the hs code for GROTANOL 3025 CN 10KG KA (BHN BAKU KOSMETIK) COA 1509426,38249999 +What is the hs code for SENSIVA SC 50 10KG KA (BHN BAKU KOSMETIK) COA 1518695,38249999 +What is the hs code for SENSIDIN DO CN 10KG CA (BHN BAKU KOSMETIK) COA 1518078,38249999 +What is the hs code for EUXYL PE 9010 CN 10KG KA (BHN BAKU KOSMETIK) COA 1516151,38249999 +What is the hs code for EUXYL K 900 CN 10KG KA (BHN BAKU KOSMETIK) COA 1516505,38249999 +What is the hs code for FERROUS FUMARATE USP/EP (BHN BAKU OBAT) COA.2018/291,29171900 +What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA.01/18GAAK,28399000 +"What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU KOSMETIK) COA.01/17GAAK,SAMPLE NO COMMERCIAL VALUE",28399000 +What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BAHAN BAKU KOSMETIK) COA.168645,28399000 +What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BAHAN BAKU OBAT) COA.168645,28399000 +What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU KOSMETIK) COA.01/18GAAK,28399000 +"What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU OBAT) COA.01/18GAAK, SAMPLE NO COMMERCIAL VALUE",28399000 +What is the hs code for COMPRITOL 888 CG ATO (BHN BAKU OBAT) COA 68552,28399000 +What is the hs code for HEXETIDINE (BHN BAKU OBAT) COA FG18201998,29335990 +What is the hs code for ROSE OILY EXTRACT (BHN BAKU KOSMETIK)COA ROS180805-H,38249999 +What is the hs code for LINEN OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA LIU180705-H,38249999 +What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-181105-GS,38249999 +What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-181105-GS,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS181002,38249999 +What is the hs code for KIGELINE (BHN BAKU KOSMETIK) COA KA180502-B,38249999 +What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM180901-PGH,38249999 +What is the hs code for SILYMARIN (BHN BAKU SUPLEMEN) COA 32703/M5,38249999 +What is the hs code for MIRANOL ULTRA C32 200KG PLASCTIC DRUM (BHN BAKU KOSMETIK) COA BP808500R,34029099 +What is the hs code for BD DNA QC PATICLES 25 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8127923,38210010 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18080016,29362600 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18080016,29362600 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18070015,32041900 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00218194,29362800 +What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB01017666,29362800 +What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110019,29420000 +What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18100002,32041900 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18100055,29362100 +"What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00218443",29362700 +What is the hs code for PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 2829534,33029000 +"What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND 181104, ND181107, ND181108",29372200 +"What is the hs code for PREDNISONE USP41 (BHN BAKU OBAT) COA NPD 180518, NPD 181009",29372100 +"What is the hs code for CLOPIDOGREL BISULFATE (BHN BAKU OBAT) COA AALH003866,3258,3190...",29349990 +"What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK)COA CHP1181114,1180813",38249999 +What is the hs code for SK BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-01232B,38249999 +What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK)COA BAG-011388,38249999 +What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA MCP-N-060598,38249999 +"What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-021638, GSC-K-031458",38249999 +What is the hs code for SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK)COA GTB-020538,38249999 +What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-122488,38249999 +What is the hs code for SK BIOLAND SNAIL SECREATION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-0206388,38249999 +What is the hs code for SK BIOLAND NANOMOIST D (BHN BAKU KOSMETIK) COA NMSP-D-011018,38249999 +What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-021168,38249999 +"What is the hs code for KF-96A-6CS (BHN BAKU KOSMETIK) , COA 811994",38249999 +"What is the hs code for KF-6028 (16KG) BHN BAKU KOSMETIK, COA 811197",38249999 +"What is the hs code for KF-96A-6CS (16KG) BHN BAKU KOSMETIK, COA 811995",38249999 +What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA R700500,29419000 +What is the hs code for CEFOTAXIME SODIUM STERILE USP (BHN BAKU OBAT) COA R202100,29419000 +What is the hs code for CEFOTAXIME SODIUM EP (BHN BAKU OBAT) COA R201300,29419000 +What is the hs code for PROMETHAZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA HPHCPM050,29343000 +What is the hs code for THIOGLYCOLIC ACID 99PCT COSMETIC GRADE (BHN BAKU KOSMETIK) COA.0000065168,29309090 +"What is the hs code for AMMONIUM THIOGLYCOLATE 71PCT(60PCT TGA) BHN BAKU KOSMETIK, COA.0000065169",29309090 +"What is the hs code for MONOETHANOLAMINE THIOGLYCOLATE 83PCT (50PCT TGA) BHN BAKU KOSMETIK, COA 0000065170",29221100 +"What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA.18100743, 18100744",29395900 +What is the hs code for CYANACOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPLEMEN KESEHATAN) COA. 1805982916,29362600 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610787,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610783,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610788,38249999 +What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610785,39061090 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610699,38249999 +What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610797,39061090 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610786,38249999 +What is the hs code for CORTISONE ACETATE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1800951018,29372200 +What is the hs code for GINSENG DRY EXTRACT 2PCT COLOR (BAHAN BAKU SUPPLEMEN) COA 10910/M1,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10911/M1,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10912/M1,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10921/M1,13021990 +What is the hs code for SILYMARIN /PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 10935/M1,38249999 +"What is the hs code for PURIDROX TM POWDER CEFADROXILE MONOHYDRATE (BHN BAKU OBAT) COA M334596,599,602",29419000 +What is the hs code for BIOTOX (R) (BHN BAKU OBAT UTK PAKAN TERNAK) COA 081118-854,23099090 +What is the hs code for E.C.O TRACE ZN 25PCT (BHN BAKU UTK PAKAN TERNAK) COA BC250818,29224900 +What is the hs code for E.C.O.TRACE MN 20PCT(BHN BAKU OBAT UTK PAKAN TERNAK) COA BC190918,29224900 +What is the hs code for E.C.O TRACE FE 20PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC140918,29224900 +What is the hs code for LIQUIPHOS STRONG (BHN BAKU UTK PAKAN TERNAK) COA 181018-815,23099090 +What is the hs code for NABUMETONE USP (BAHAN BAKU OBAT) COA.H-1170718,29145000 +"What is the hs code for MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU SUPLEMEN) COA.TS00011207",29362500 +"What is the hs code for MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU MAKANAN) COA.TS00011207",29362500 +What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) COA 7766004,38249999 +"What is the hs code for METAMIZOLE SODIUM (BHN BAKU OBAT) COA 18091447 S/D 449, 1455",29331900 +What is the hs code for GINKGO BILOBA DRY EXTRACT HF (BHN BAKU SUPLEMEN) COA 18432,13021950 +What is the hs code for GRAPE SEED DRY EXTRACT (BHN BAKU SUPLEMEN) COA 18400,13021950 +What is the hs code for MAGNOLIA BARK EXTRACT (BHN BAKU KOSMETIK) COA MBE05-180801,38249999 +What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA MS/70120,39123900 +"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA MS/2460",39123900 +What is the hs code for ASTABIO ARV-S (BHN BAKU OBAT) COA.1806061K,32030010 +"What is the hs code for RESTYLANE SUBQ 2 ML D16 , COA 15351-1,15608-2",90189090 +"What is the hs code for RESTYLANE SKINB VITLIDO 1MLD16 , COA 16419-1",90189090 +"What is the hs code for RESTYLANE SKINB VITALLGHLIDO 1MLD16 , COA 16503-1",90189090 +"What is the hs code for RESTYLANE LIDOCAINE 1 ML D16 ,COA 1616199-2",90189090 +"What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML , COA 16445-1",90189090 +"What is the hs code for RESTYLANE VOLYME 1ML , COA 16046-1",90189090 +"What is the hs code for RESTYLANE REFYNE 1ML, COA 16326-1",90189090 +"What is the hs code for RESTYLANE DEFYNE 1 ML ,COA 16283-1",90189090 +"What is the hs code for RESTYLANE KYSSE 1 ML , COA 16207-1",90189090 +"What is the hs code for RESTYLANE LYFT LIDOCAINE 1 ML , COA 16445-1,SAMPLE NO COMMERCIAL VALUE",90189090 +What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 181402,13021990 +What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 181104,13021990 +What is the hs code for ALPHINIAWHITE (BHN BAKU KOSMETIK) COA 181981,13021990 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA ROA319187,28363000 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN )COA ROA3041800,28363000 +What is the hs code for FLUOROMETHOLONE MICRONISED USP BP JP (BHN BAKU OBAT) COA 1801354152,29372200 +"What is the hs code for SAVONOL 10 (BAHAN BAKU KOSMETIK), COA.LDC37318T",27101990 +What is the hs code for BD FACSMELODY BRV COLOR PLATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),38210010 +"What is the hs code for MEG-3 DHA H POWDER, 0,1KG POS (BHN BAKU MAKANAN) COA XI00005285, SAMPLE NO COMM VALUE",29362500 +"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 18042501,18051103",38029090 +"What is the hs code for IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S281/18,S648/18, S708/18",38029090 +"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1852283,2317,2318",29242930 +What is the hs code for NOREPINEPHRINE BITARTRATE (BHN BAKU OBAT) COA 460104,29379010 +What is the hs code for TEFOSE 63 (BHN BAKU SUPLEMEN) COA 172219,28399000 +What is the hs code for COMPRITOL 888 ATO (BHN BAKU KOSMETIK) COA 45013,28399000 +What is the hs code for SUPPOCIRE A PELLETS (BHN BAKU SUPLEMEN) COA 18E2201,28399000 +What is the hs code for LEVOFLOXACIN HEMIHYDRATE (BHN BAKU OBAT) COA C008-1808610,29349990 +What is the hs code for BETAMETHASONE VALERATE USP (BHN BAKU OBAT) COA M-X21-181001,29372200 +What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG,29362700 +"What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453294475",39139090 +"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA.M113134,M113121",29339990 +What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113121,29339990 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518090271",29420000 +"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0218090158",29420000 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518090260",29420000 +"What is the hs code for PARSOL HMS, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0418090195",29420000 +"What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.18100608,18100793",29391900 +What is the hs code for COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-1801114,38249999 +What is the hs code for CYPROHEPTADINE HCL BP/PH.EUR (BHN BAKU OBAT) COA CYP/11181012,29333990 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18070015,32041900 +What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18100055,29362100 +What is the hs code for VITAMIN A+D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18090041,29362100 +What is the hs code for JOJOBA OIL VIRGIN LOW ODOUR (BHN BAKU KOSMETIK) COA 146272,15159011 +What is the hs code for JOJOBA OIL VIRGIN LOW ODOUR (BHN BAKU KOSMETIK) COA 146881,15159011 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01808069",29362400 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01808069",29362400 +"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01808069",29362400 +"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01808069",29362400 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518090271",29420000 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318101522,23, 55 S/D 57",29420000 +What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 18111205,38249999 +What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8248918,38210010 +What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8135947,38210010 +"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8129694",38210010 +"What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8289953",38210010 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8234703,38210010 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8241622,38210010 +"What is the hs code for PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8242970,...",38210010 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255627,38210010 +What is the hs code for PLATE TSA IC--XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8278796,38210010 +"What is the hs code for BOTTLE POLYPEPTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7289534",38210010 +What is the hs code for BOTTLE MAIL EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8177885,38210010 +What is the hs code for BOTTLE MR-VP MEDIUM 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7262698,38210010 +What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8248690,38210010 +What is the hs code for BOTTLE M-PA-C AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206646,38210010 +What is the hs code for BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8274532,38210010 +What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 181652915,38210010 +What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8260559,38210010 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183667,38210010 +"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8197998,8227609",38210010 +What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7079881,38210010 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8155504,38210010 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7341765,38210010 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8141537,38210010 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8171517,38210010 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255534,38210010 +What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8227776,38210010 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183841,38210010 +What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7338553,38210010 +"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8162538,8241622",38210010 +"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7349871",38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206836,38210010 +What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8162545,38210010 +What is the hs code for BOTTLE MR-VP MEDIUM 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7262698,38210010 +What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8297983,38210010 +What is the hs code for BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 83175255,38210010 +"What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8248690,8281627",38210010 +What is the hs code for BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7250994,38210010 +What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8242653,38210010 +What is the hs code for KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8274719,38210010 +What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8046747,38210010 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8114795,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8129691,38210010 +What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8306679,38210010 +What is the hs code for BOTTLE TAT BROTH BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183873,38210010 +"What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8011687,...",38210010 +What is the hs code for BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8194606,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8253602,38210010 +What is the hs code for BOTTLE SKIM MILK 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255627,38210010 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8234703,38210010 +What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8101787,38210010 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183873,38210010 +What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8306679,38210010 +What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233944,38210010 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183888,38210010 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8155504,38210010 +What is the hs code for BOTTLE TREHALOSE 10G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8248746,38210010 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8150647,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206336,38210010 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8241614,38210010 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183841,38210010 +What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233944,38210010 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233583,38210010 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8241935,38210010 +"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079881,...",38210010 +What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206558,38210010 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8309568,38210010 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8271781,38210010 +What is the hs code for PLATE TSA W LP IC-XT PACK 90MM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8284533,38210010 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8248911,38210010 +What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8165971,38210010 +What is the hs code for PLATE TSA IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8284529,38210010 +What is the hs code for BOTTLE PROTEOSE PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8197669,38210010 +What is the hs code for BOTTLE POLYPEPTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 82835918,38210010 +What is the hs code for BOTTLE EOSIN METHYLENE BLUE AG HHT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8045543,38210010 +What is the hs code for BOTTLE MR-VP BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7235673,38210010 +What is the hs code for BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8233701,38210010 +What is the hs code for BOTTLE BACTO AGAR 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 819750298,38210010 +What is the hs code for BOTTLE L-ARABINOSE 25G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8211671,38210010 +What is the hs code for BOTTLE DULCITOL 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8178635,38210010 +What is the hs code for BOTTLE TREHALOSE 10G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8248746,38210010 +What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7332727,38210010 +What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8141811,38210010 +What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8227623,38210010 +What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7153977,38210010 +What is the hs code for BOTTLE TRYPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8256662,38210010 +What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8241939,38210010 +What is the hs code for BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8274532,38210010 +What is the hs code for BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8274532,38210010 +What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8165971,38210010 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8241622,38210010 +What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8215542,38210010 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8127705,38210010 +What is the hs code for PLATE TSA IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8284529,38210010 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8255627,38210010 +What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8057815,38210010 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 802380183,38210010 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8284532,38210010 +What is the hs code for BOTTLE MALONATE BROTH 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7297545,38210010 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE 25KG BOX (BHN BAKU MAKANAN) COA TL01811086,1811106",29362700 +What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01811106,29362700 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT18080174,75",29362100 +What is the hs code for TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA647244,32151900 +What is the hs code for KETOPROFEN SALE DI LISINA (BHN BAKU OBAT) COA 188610,29183000 +"What is the hs code for LIFE'S GLA (TM) '10'N-6 OIL (BHN BAKU SUPLEMEN) COA 7011016CN, SAMPLE NO COMMERCIAL VALUE",29362500 +What is the hs code for GABAPENTIN ( BHN BAKU OBAT) COA CGBU180282,29224900 +What is the hs code for MAPROTILINE HCL (BHN BAKU OBAT) COA 1850003486,29214900 +"What is the hs code for PURICILLIN COMPACTED (BHN BAKU OBAT) COA. M842446 S/D 2449, 2364,2443",29411020 +"What is the hs code for PARSOL ZX, 0,500KG PAIL (BHN BAKU KOSMETIK) COA 18052527, SAMPLE NO COMMERCIAL VALUE",29420000 +"What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8331948",38210010 +"What is the hs code for CD34 APC BG12 1001 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8316581",38210010 +What is the hs code for CD79A PE HM47 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8274645,38210010 +What is the hs code for ANTI-MPO FITC 5B8 50 TESTS RUO GMP (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8250847,38210010 +What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8318567,38210010 +What is the hs code for ANTI-HLA-DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8198761,38210010 +What is the hs code for CD33 PE P67 6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8254780,38210010 +"What is the hs code for ACCUDROP FLUORESCENT BEADS 25 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 8172971",38210010 +What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8296712,38210010 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 8159608,38210010 +What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141516,38210010 +What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8162741,38210010 +What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219521,38210010 +What is the hs code for VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7314928,38210010 +What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141691,38210010 +What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8239832,38210010 +What is the hs code for HU NEURAL LINEAGE ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8311570,38210010 +What is the hs code for HU MESENCHYMAL SG ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8296712,38210010 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8159661,38210010 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8247729,38210010 +What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7314928,38210010 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8159608,38210010 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8247729,38210010 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8155510,38210010 +What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8296712,38210010 +What is the hs code for NESTIN PE 25/NESTIN 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8213902,38210010 +"What is the hs code for GFAP ALEXA 647 1B4 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8192940",38210010 +What is the hs code for HU CD8 FITC HIT8A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7331888,38210010 +What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8268724,38210010 +What is the hs code for CD3 FITC SK7 50 TESTS IVD (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8181542,38210010 +What is the hs code for PLATE SDA WLP AND CMP IC-XT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8278808,38210010 +What is the hs code for PLATE SDA WLP AND CMP IC-XT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8278808,38210010 +What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8151581,38210010 +What is the hs code for VIAL E COIL H ANTISERUM H7 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 73356084,38210010 +What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7220790,38210010 +What is the hs code for VIAL E COLI ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7321876,38210010 +What is the hs code for BOTTLE FOLIC ACID ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8114908,38210010 +What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255628,38210010 +What is the hs code for CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8268723,38210010 +What is the hs code for CD45 PER CP 2D1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8075987,38210010 +What is the hs code for CD3 APC-H7 SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8180964,38210010 +What is the hs code for 7-AAD STAINING SOLUTION 2ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8008681-A,38210010 +What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA. DOC3161821,28363000 +What is the hs code for MEROPENEM TRIHYDRATE WITH SODIUM CARBONATE STERILE (BHN BAKU OBAT) COA S0820180715,30032000 +What is the hs code for METHOCEL E15 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011I6BL02,39123900 +What is the hs code for METHOCEL E6 PREMIUM LV (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011HCLL01,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180173001,39123900 +What is the hs code for O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 040418/005357,38249999 +What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/11/171118,29420000 +"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA.LDC38418T",27101990 +What is the hs code for METHOCEL E5 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011I2JL01,39123900 +What is the hs code for METHOCEL E15 PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011I77L01,39123900 +What is the hs code for METHOCEL A15 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I5V021,39123900 +What is the hs code for METHOCEL A15 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I1R021,39123900 +What is the hs code for METHOCEL A15 PREMIUM LV ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I61021,39123900 +What is the hs code for SERASENSE GB 10 (BAHAN BAKU KOSMETIK) COA SF9902E,39100020 +What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA. 20181210,17023010 +What is the hs code for NIACINAMIDE USP (BHN BAKU KOSMETIK) COA 18-19/NMD(P)/U/146 S/D 151,29362900 +"What is the hs code for CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 20181206",38249999 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101854718,17021100 +"What is the hs code for CAPSULAC (R) 60 BHN BAKU OBAT, COA L100411718A533",17021100 +"What is the hs code for SERASENSE SF CM5 (BAHAN BAKU KOSMETIK) COA PA81207025,27,38,44",29319049 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA ROA347182,28363000 +"What is the hs code for PURIDROX TM POWDER CEFADROXILE MONOHYDRATE (BHN BAKU OBAT) COA M334601,603.600",29419000 +What is the hs code for FENOFIBRATE (BHN BAKU OBAT) COA F03-20180603,29189900 +What is the hs code for PIROXICAM (BHN BAKU OBAT) COA PRX2018013M,29349990 +What is the hs code for METRONIDAZOLE BP (BHN BAKU OBAT) COA MBO-18120680,29332900 +What is the hs code for NICLOSAMIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 180923,29242990 +What is the hs code for POVIDONE K-30 EX JHNH (BHN BAKU OBAT) COA PK30-180819F41,39059990 +What is the hs code for INOSITOL (BHN BAKU OBAT) COA 201811005,29061300 +What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 18101204,29349990 +What is the hs code for SUCRALOSE (BHN BAKU OBAT) COA 18101204,29321400 +What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610808,38249999 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611445,39061090 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611428,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611431,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611437,38249999 +What is the hs code for OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611042,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611442,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611430,38249999 +What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611434,38249999 +What is the hs code for OPADRY 200 PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611460,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611459,38249999 +What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH6114330,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611437,38249999 +What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611436,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611427,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH6113611,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611423,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611429,38249999 +What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610784,38249999 +What is the hs code for LIDOCAINE BASE (BHN BAKU OBAT) COA. 187936,29242990 +What is the hs code for LIDOCAINE HCL (BHN BAKU OBAT) COA 188842,29242990 +"What is the hs code for STAY C (R) 50, 5KG BAG ALU (BHN BAKU KOSMETIK) COA CS18060016,17,18",29362700 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11805018,29362900 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418098,29362900 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18060045,29362800 +"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418098,99",29362900 +"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418099, 418100",29362900 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518033,29362300 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80910167,29362300 +"What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91811082,083",21069059 +What is the hs code for DWI BI (BHN BAKU MAKANAN) COA XW91811245,21069059 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18090044,29362100 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418044,29362200 +"What is the hs code for D-PANTHENOL,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01806063,7064",29362400 +"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01807064",29362400 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418044,29362200 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418104,29362900 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT18050023,29362900 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418100,29362900 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT18090044,29362100 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18060045,29362800 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418098,29362900 +"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN), COA UT18060045",29362800 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18060045,29362800 +"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18080016,17",29362600 +"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18080017,22",29362600 +"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01807064",29362400 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610544,38249999 +What is the hs code for OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610794,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611290,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610795,38249999 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610799,39061090 +What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610776,39061090 +What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610777,39061090 +What is the hs code for ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610798,39061090 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610343,39061090 +What is the hs code for ACRYL EZE PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610796,39061090 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610790,38249999 +What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610778,39061090 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610780,38249999 +What is the hs code for OPADRY AMB II PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610781,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610789,38249999 +What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610779,38249999 +What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610784,38249999 +What is the hs code for CYCLOSERINE USP ( BHN BAKU OBAT) COA CCLU180007,29061300 +What is the hs code for BICAR FOOD 27/50 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA MTP34818,28363000 +"What is the hs code for BICAR PHARMA EXCIPIENT 0/13 SODIUM BICAR... (B.BAKU MAKANAN) COA MTP31118, SAMPLE NO COMM VALUE",28363000 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN )COA MTP33218,28363000 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA. RBA3181800,28363000 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO180601,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-181009,38249999 +What is the hs code for PHYTELENE COMPLEX EGX 232 (BHN BAKU KOSMETIK)COA EG543-181009,38249999 +What is the hs code for PHYTELENE COMPLEX EGX 232 (BHN BAKU KOSMETIK)COA PX232-181102,38249999 +What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 201800377,28183000 +"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A,20KG BA (BHN BAKU MAKANAN) COA WB01118394,95",29362100 +What is the hs code for JAGUAR C 162 CARDBOARD BOX 25 KG (BHN BAKU KOSMETIK) COA MJAC18319,38249999 +"What is the hs code for NONIVAMIDE (SYNTHETIC CAPSAICIN)BHN BAKU KOSMETIK, COA.20180926",29241990 +What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB00718222,29362100 +What is the hs code for LIQUORICE LC (BHN BAKU KOSMETIK) COA.111957/P86599-P86601,13021920 +"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 18062902, 18052301",38029090 +What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG181207,29362700 +What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 64881P,38249999 +What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK)COA CHP1181210,38249999 +"What is the hs code for SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-150578, 211198,221898",38249999 +What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK)COA NMP-L-170388,38249999 +What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-010248,38249999 +What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-031458,38249999 +What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK)COA CLHW-022208,38249999 +What is the hs code for SK BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSFAC-021088,38249999 +What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-022208,38249999 +"What is the hs code for D-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01806623,6627",29362400 +What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) XW91811241,29420000 +"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000178369",29362900 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01808081",29362400 +What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18070207,29362800 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18080237,29362800 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT018050038,29362800 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT18030171,172",29362100 +What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001476503,29420000 +"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000178369",29362900 +"What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0021803",29362500 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ80213064,29362500 +"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00555844, VE00561967",29420000 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT18050800",29362100 +"What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU OBAT UTK PAKAN TERNAK) COA 201800243,235",28183000 +"What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND181104, ND181108, ND181109...",29372200 +What is the hs code for PREDNISOLONE BP2010/USP40 (BHN BAKU OBAT) COA NPL181109,29372100 +What is the hs code for NOREPINEPHRINE BITARTRATE (BHN BAKU OBAT) COA 460104,29379010 +What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA KJI,38249999 +What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 182281,13021990 +What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 181755,38249999 +What is the hs code for SWERTANIN- P (BHN BAKU KOSMETIK) COA 181625,13021990 +What is the hs code for NATURAL SOURCE MIXED TOCOPHEROLS (BHN BAKU KOSMETIK) COA 181012M001,29362800 +"What is the hs code for OMEPRAZOLE PELLETS 8,5 PCT (BHN BAKU OBAT) COA OP0218C051",30039000 +"What is the hs code for OMEPRAZOLE PELLETS 8,5 PCT (BHN BAKU OBAT) COA OP0218C052",30039000 +"What is the hs code for ACRYLPOL 980 (20KG) BAHAN BAKU KOSMETIK, COA 11518073 S/D 76",39069099 +What is the hs code for ECOSLIM TM (BHN BAKU KOSMETIK) COA 1811601,38249999 +What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829016600J,38249999 +What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830016739J,38249999 +"What is the hs code for CAPIXYL (BHN BAKU KOSMETIK), COA 830016847J",38249999 +What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785016391J,38249999 +What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785016677J,38249999 +What is the hs code for HELIOGEL TM (BHN BAKU KOSMETIK) COA 18207013,38249999 +What is the hs code for MINIPORYL (BHN BAKU KOSMETIK) COA 832016464J,38249999 +What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016605J,38249999 +What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016716J,38249999 +What is the hs code for SILIGEL TM (BHN BAKU KOSMETIK) COA 1820409,38249999 +What is the hs code for TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784026310J,38249999 +"What is the hs code for TYROSTAT-11 (BHN BAKU KOSMETIK), COA 784026462J",38249999 +What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785016677J,38249999 +What is the hs code for AC019KC PHYTOVITYL C 5KG (BHN BAKU KOSMETIK) COA 0029885,38249999 +What is the hs code for PRAYPHOS DKP FG (BHN BAKU KOSMETIK) COA 1833031,29420000 +What is the hs code for PHOSPHATE MONOPOTASSIQUE (BHN BAKU KOSMETIK) COA 1833031,29420000 +What is the hs code for PURE GREEN B&W PIT (BHN BAKU KOSMETIK) COA 10300044,38249999 +What is the hs code for DEEP IMPACT FACE (BHN BAKU KOSMETIK) COA 10300037,38249999 +"What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) , COA 812200",38249999 +"What is the hs code for KF-96A-6CS (16KG) BHN BAKU KOSMETIK, COA 812001,812002",38249999 +"What is the hs code for COATED ASCORBIC ACID, TYPE EC ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01810913",29362700 +What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT18040034,29362500 +What is the hs code for VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18090041,29362100 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18090031,32041900 +"What is the hs code for GENIVIDA (TM) TG, 1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT17080005,6",29329990 +What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ80407003,29420000 +What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA.MLAH1081118,29341000 +What is the hs code for LANSOPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA LP0218C035,29333990 +What is the hs code for CYANACOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPLEMEN KESEHATAN) COA. 1806833337,29362600 +What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1802823436,29372900 +What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00718222,29362100 +What is the hs code for NECTAR DE MATCHA FEMA P114 6 BHN BAKU KOSMETIK COA 0000023629,33029000 +"What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7314928",38210010 +"What is the hs code for VIAL SAL O ANTIS POLY GRP-A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8155510",38210010 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8159661,38210010 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8247729,38210010 +What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8247729,38210010 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8235876,38210010 +"What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 8141516",38210010 +What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8162741,38210010 +What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 8219521,38210010 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8155510,38210010 +What is the hs code for VIAL SAL H ANTIS POLY 3ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7314928,38210010 +"What is the hs code for BOTTLE TRYPTICASE SOY AG L &P 80 500G (M. UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141691,823951",38210010 +What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8309581,38210010 +What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8239511,38210010 +What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8162741,38210010 +What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8211630,38210010 +What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8162741,38210010 +What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7314928,38210010 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8155510,38210010 +What is the hs code for GOLGIPLUG PROTEIN TRNSP INHB 1ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8114699,38210010 +What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P8V29QA000,29420000 +"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218100200",29420000 +"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01809086",29362400 +"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01809086",29362400 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM ( BHN BAKU KOSMETIK) COA 0518100300",29420000 +"What is the hs code for PARSOL MCX, 200KG PLASTIK DRUM (BHN BAKU KOSMETIK) COA 0518100300",29420000 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518100300,324",29420000 +"What is the hs code for DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01806627",29362400 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318101565,567",29420000 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318101567,1568,1585,1586",29420000 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318101586,101605,11832,33",29420000 +"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0218090158,203",29420000 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180063,65,67 S/D 73",29420000 +What is the hs code for VITAMIN B12 0.PCT WS (BHN BAKU SUPLEMEN) COA UT18080022,29362600 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518046,29362200 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT18070048,29362800 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18080029,29362100 +"What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB00618931",29362700 +What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418030,29362500 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT18070021,32041900 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01805040,32041900 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT18070024,29362900 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT18050023,29362900 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1806002,29362900 +"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN), COA WB00418105",29362900 +What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20170401,29362800 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418105,29362900 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518034,29362300 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18060018,29362100 +What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91811269,21069059 +What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW91811293,21069059 +What is the hs code for PX 103070 - C3 (BHN BAKU MAKANAN) COA XW91811294,21069059 +What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91811257,21069059 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT18080822,29362100 +What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18070207,29362800 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU MAKANAN) COA UT18070024,29362900 +What is the hs code for B-CAROTENE 1PCT CWS/M (BHN BAKU MAKANAN) COA UT18050021,32041900 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01805040,32041900 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT18070024,29362900 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT18050023,29362900 +What is the hs code for DL-A-TOCOPHEROL ( BHN BAKU MAKANAN) COA UT18070048,29362800 +What is the hs code for SILDENAFIL CITRATE USP (BHN BAKU OBAT) COA SLC 314 12 18,29335990 +What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1802844514,29372900 +"What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC 011-8-801, 012-8-801, 004-8-801, 011-8-801",17021100 +"What is the hs code for FD AND C YELLOW #5/TARTRASINE AL 36PCT-39PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP804545,..",32151900 +What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP798863.1,32151900 +What is the hs code for FD AND C BLUE #1/BRILLIANT BLUE ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP795612,32151900 +What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP796877,32151900 +What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP797602,32151900 +What is the hs code for FD AND C BLUE #2/INDIGO CARMINE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP803613,32151900 +"What is the hs code for DOCUSATE SODIUM (BHN BAKU OBAT), COA SD8042416",29171900 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101854818,17021100 +What is the hs code for ETORICOXIB (BHN BAKU OBAT) COA.ERB/1812004,29333990 +"What is the hs code for MAGNESIUM CHLORIDE HEXAHYDRATE CRYST (BHN BAKU KOSMETIK), COA A1239632",28273100 +What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-181206-GS,38249999 +What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH181110-ENBIO,38249999 +What is the hs code for LIPOID PPL-600 (BHN BAKU OBAT) COA.577200-2180223/001-002,29232010 +What is the hs code for PLAISANCE P116808 (BHN BAKU KOSMETIK) COA 0000017026,33029000 +What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA.0000013173,33029000 +"What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU OBAT UTK PAKAN TERNAK) COA 201800243,235",28183000 +What is the hs code for NECTAR DE MATCHA FEMA P114 6 BHN BAKU KOSMETIK COA 0000023629,33029000 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA MTP33218,28363000 +"What is the hs code for BOTTLE INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8274532",38210010 +"What is the hs code for VIAL UNIVERSAL VIRAL TRANSPORT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 181214500",38210010 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8193816,38210010 +What is the hs code for BOTTLE BRUCELLA AGAR BBL AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8011671,38210010 +What is the hs code for BOTTLE RHAMNOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8332926.,38210010 +What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01A317M,38210010 +"What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7324991",38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8129691,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 8312962,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8179827,38210010 +What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8215542,38210010 +What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8046747,38210010 +What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8289953,38210010 +What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8162545,38210010 +What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6066834,38210010 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7349871,38210010 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8141537,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8256652,38210010 +What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8227776,38210010 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8282931,38210010 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255613,38210010 +What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8306679,38210010 +What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8215542,38210010 +What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233944,38210010 +"What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8227510",38210010 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183888,38210010 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206562,38210010 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8227609,38210010 +What is the hs code for BOTTLE BEEF EXTRACT POWDER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233778,38210010 +What is the hs code for BOTTLE BEEF EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7296821,38210010 +What is the hs code for BOTTLE MALT EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8177885,38210010 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8222649,38210010 +What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8306679,38210010 +What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01A292M,38210010 +What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8318951,38210010 +"What is the hs code for BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8218523,8232685,8240967",38210010 +What is the hs code for BOTTLE HEART INFUSION AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255977,38210010 +What is the hs code for BOTTLE D-MANNOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7135976,38210010 +What is the hs code for BOTTLE RHAMNOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8332926,38210010 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8156600,38210010 +What is the hs code for BOTTLE EC MEDIUM 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 81715177,38210010 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141537,38210010 +What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8170726,38210010 +What is the hs code for BOTTLE PROTEOSE PEPTONE NO 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8232795,38210010 +What is the hs code for BOTTLE POLYSORBATE 80 100 1 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8262934,38210010 +What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8260559,38210010 +What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8228997,38210010 +What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8302980,38210010 +What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8141903,38210010 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8150647,38210010 +"What is the hs code for EFFERSODA (R) 12 BHN BAKU OBAT, COA 121809280",28363000 +What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 121809210,29054300 +"What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF,1KG ALUF (BHN BAKU SUPLEMEN) COA UE01806039",32030010 +What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18090041,29362100 +What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU SUPLEMEN) COA UT18090021,29362100 +What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU SUPLEMEN) COA UT18090021,29362100 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00218196,29362800 +What is the hs code for MEG-3 (TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT18040034,29362500 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18090031,32041900 +What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB01017666,29362800 +What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18090041,29362100 +"What is the hs code for OPTISHARP NAT ZEA 5PCT CWS/S-TG, 10KG BAG (BHN BAKU SUPLEMEN) COA EW18095010",32041900 +What is the hs code for FLOWLAC (R) 100 (BHN BAKU OBAT) COA. L101504318,17021100 +What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103863418,17021100 +What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L1043114618,17021100 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO180601,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-181009,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) COA EG543-181008,38249999 +What is the hs code for OPASPRAY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT682899,32151900 +What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT682900,32151900 +What is the hs code for METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT LYOPHIZED (BHN BAKU OBAT) COA NY2877,29372900 +"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-2651218,S-2771218",29334910 +What is the hs code for LUBRIPHARM (R) SSF NF/EP/JP SODIUM STEARYL FUMARATE(BHN BAKU OBAT) COA 121809641,28161000 +What is the hs code for LUBRIPHARM (R) SSF/NF/EP/JP SODIUM STEARYL FUMARATE (BHN BAKU OBAT) COA L121809287,28161000 +What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC 037-18-801,17021100 +What is the hs code for OPADRY EZ CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611901,38249999 +"What is the hs code for CARBAZOCHROME SODIUM SULFONATE (ORAL GRADE) BHN BAKU OBAT,COA AC81005/81121",29339990 +"What is the hs code for GUAIFENESIN USP (BHN BAKU OBAT) COA GGE-1812442,GGE-1812461",29094900 +What is the hs code for TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA648782,32151900 +What is the hs code for BARCROFT TM AL HYD GEL VISCO-9 USP (BHN BAKU OBAT) COA.1018802027,28183000 +What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHNN BAKU OBAT) COA 101823008,28161000 +"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA.LDC41018T",27101990 +"What is the hs code for LANOLINE ANHYDROUS (BHN BAKU KOSMETIK) COA 4552,4553,4554",38249999 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA KLH,38249999 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA KLJ,38249999 +What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA KHN,38249999 +What is the hs code for SPIRAMYCIN (BHN BAKU OBAT) COA SP181405,29419000 +What is the hs code for EPERISONE HYDROCHLORIDE SYN-TECH (BHN BAKU OBAT) COA.E10-18043,29333990 +What is the hs code for ROSUVASTATIN CALCIUM (BHN BAKU OBAT) COA RVM2811218,29359000 +"What is the hs code for D-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01806627",29362400 +"What is the hs code for PARSOL1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318121895, 896",29420000 +What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES1806072,29420000 +"What is the hs code for ARGAN OIL ,10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0021803",29362500 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18080237,29362800 +"What is the hs code for NIACINAMIDE PC ,20KG BAL (BHN BAKU KOSMETIK) COA OP81802001",29362900 +What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000178370,29362900 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318121896,897",29420000 +What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001503757,29420000 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT18050045,29362800 +What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11805017,29362900 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT18040172,29362100 +What is the hs code for LEVOFLOXACIN HEMIHYDRATE USP (BHN BAKU OBAT) COA LF18120113,29349990 +"What is the hs code for NEOSTIGMINE METHYLSULPHATE (BHN BAKU OBAT), COA DNMS0218003",29242990 +What is the hs code for E.C.O TRACE ZN 25PCT (BHN BAKU UTK PAKAN TERNAK) COA,29224900 +What is the hs code for E.C.O.TRACE MN 20PCT(BHN BAKU OBAT UTK PAKAN TERNAK) COA,29224900 +What is the hs code for E.C.O TRACE FE 20PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA,29224900 +"What is the hs code for METAMIZOLE SODIUM (BHN BAKU OBAT) COA 18111716,724,731,734",29331900 +What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA. 20181230,17023010 +What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 189135,29332900 +What is the hs code for LEUCOCYANIDINS PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 18333,38249999 +What is the hs code for FD AND C BLUE #1/BRILLIANT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP803378,32151900 +What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP797599,32151900 +What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL 36PCT-39PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP804548,32151900 +What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP805755,32151900 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612084,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610808,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612075,38249999 +What is the hs code for OPADRY AMB II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612086,38249999 +What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612073,39061090 +What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612072,39061090 +What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612083,39061090 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH512078,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612079,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612007,39061090 +What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612002,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612082,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612081,38249999 +What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612071,32151900 +What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612071,32151900 +What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612071,32151900 +What is the hs code for OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612070,38249999 +What is the hs code for OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612070,38249999 +What is the hs code for OPADRY AMB GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612077,38249999 +What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612080,32151900 +What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612080,32151900 +What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612080,32151900 +What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612080,32151900 +What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612080,32151900 +What is the hs code for ACRYL-EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612089,39061090 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612002,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612076,38249999 +What is the hs code for OPADRY BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612088,38249999 +What is the hs code for OPADRY 200 PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612087,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612074,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612085,38249999 +What is the hs code for OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612069,38249999 +What is the hs code for VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 121809477,28365010 +What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND181204,29372200 +"What is the hs code for PREDNISONE USP40 (BHN BAKU OBAT) COA NPD181009, NPD181209",29372100 +What is the hs code for TEFOSE 63 BF (BHN BAKU OBAT) COA 172486,28399000 +What is the hs code for TRANSCUTOL P (BAHAN BAKU OBAT) COA 172226,28399000 +What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU KOSMETIK) COA.01/18GAAK,28399000 +"What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU KOSMETIK) COA.01/18GAAK, SAMPLE NO COMMERCIAL VALUE",28399000 +What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BAHAN BAKU OBAT) COA 168645,28399000 +"What is the hs code for RESTYLANE SKINB VITALLGHLIDO 1MLD16 , COA 16503-1",90189090 +"What is the hs code for RESTYLANE LIDOCAINE 1 ML D16 ,COA 16199-3",90189090 +"What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML , COA 16445-1",90189090 +"What is the hs code for RESTYLANE REFYNE 1ML , COA 16326-1",90189090 +"What is the hs code for RESTYLANE DEFYNE 1ML, COA 16283-1",90189090 +"What is the hs code for RESTYLANE DEFYNE 1 ML ,COA 16572-1",90189090 +"What is the hs code for RESTYLANE KYSSE 1 ML , COA 16207-1",90189090 +What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 180807,29329990 +What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 182567,13021990 +What is the hs code for MANDARIN CLEAR (BHN BAKU KOSMETIK) COA 182564,13021990 +What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 181522,13021990 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612422,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612126,38249999 +What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN2451118,29221990 +What is the hs code for OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612838,38249999 +What is the hs code for OPADRY AMB II WHITE(BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612321,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612569,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612570,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612605,38249999 +What is the hs code for ACRYL-EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612564,39061090 +What is the hs code for ACRYL-EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612563,39061090 +What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612479,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612390,39061090 +What is the hs code for ACRYL-EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612565,39061090 +What is the hs code for ACRYL-EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612566,39061090 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612577,38249999 +What is the hs code for GENTAMYCIN SULPHATE (BHN BAKU OBAT) COA 181121011,29419000 +What is the hs code for BETAMETHASONE DIPROPIONATE (BHN BAKU OBAT) COA X39-181002,29372200 +What is the hs code for LINCOMYCIN HCL EP (BHN BAKU OBAT) COA 1812010,29419000 +"What is the hs code for CONFECTIONERY INK CI205002 BLUE(B.BAKU OBAT UTK PEWARNA TABLET)COA TKL47272,SAMPLE NO COMM VALU",32151900 +What is the hs code for MIRANOL ULTRA C32 200KG PLASCTIC DRUM (BHN BAKU KOSMETIK) COA BP808500R,34029099 +"What is the hs code for DL-PANTHENOL 50L, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01811652",29362400 +"What is the hs code for ETHYL PANTHENOL, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01809812",29362400 +"What is the hs code for DL-PANTHENOL 50L, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01811652",29362400 +"What is the hs code for ETHYL PANTHENOL ,1000KG IBC (BHN BAKU KOSMETIK) COA TL01809812",29362400 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01811259,274",29362700 +What is the hs code for FRAMYCETINE SULFATE (BHN BAKU OBAT) COA F1700008/01,29419000 +What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P8V25QA000,29420000 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01807002,29362900 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ80313067,29362500 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT18080818,29362100 +What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11805017,29362900 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)(BHN BAKU KOSMETIK) COA UT18040172,29362100 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18090273,29362800 +"What is the hs code for NIACINAMIDE PC, 20KG BAL (BHN BAKU KOSMETIK) COA OP81710024,OP81802001",29362900 +"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000179090",29362900 +"What is the hs code for PARSOL EHS ,25KG PC (BHN BAKU KOSMETIK) COA 0718030056,0718050071",29420000 +"What is the hs code for STAY-C (R) 50, 5KG BAG ALU (BHN BAKU KOSMETIK) COA CS18060018,19",29362700 +"What is the hs code for STAY C (R) 50, 5KG BAG ALU (BHN BAKU KOSMETIK) COA CS18060019",29362700 +"What is the hs code for DL-PANTHENOL 50L ,20KG PAIL PE (BHN BAKU KOSMETIK), COA TL01806627,7634",29362400 +"What is the hs code for EFFERSODA (R) 12 BHN BAKU OBAT, COA 121809229",28363000 +What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 121809281,28363000 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 121809229,9250",28363000 +What is the hs code for ANTISHINE WASH 1 (BHN BAKU KOSMETIK) COA 10300119,38249999 +What is the hs code for DEEP IMPACT FACE (BHN BAKU KOSMETIK) COA 10300077,38249999 +"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK,COA 01/18GL4",28399000 +"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK, COA 01/18LG4",28399000 +What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 168645,28399000 +What is the hs code for VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 121809477,28365010 +What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP 5300 (BHN BAKU OBAT) COA 101869007,28161000 +What is the hs code for THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000017018,33029000 +What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA.0000017019,33029000 +What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK)COA HMVBD-101228,38249999 +What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA MCP-N-060598,38249999 +What is the hs code for LINEN OILY EXTRACT (BHN BAKU KOSMETIK)COA LIU181106-H,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS181002,38249999 +What is the hs code for GRAPE SEED ORGANIC OIL (BHN BAKU KOSMETIK)COA RPH181202-ENBIO,38249999 +What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK)COA CFM180901-PGH,38249999 +What is the hs code for LICORICE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA GLG171001-BGBIO,38249999 +What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) COA OLVH190101-ENBIO,38249999 +What is the hs code for LOTUS OILY EXTRACT GT10 (BHN BAKU KOSMETIK) COA NEN180907-H,38249999 +What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA VIV180701-BGBIO,38249999 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO180903,38249999 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO18190101,38249999 +What is the hs code for PHYTELENE COMPLEX EGX773 (BHN BAKU KOSMETIK) COA PX773-190101-GS,38249999 +What is the hs code for CORTISONE ACETATE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1800951018,29372200 +What is the hs code for MIRANOL C2M CONC NP 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP901004R,34029099 +What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA R703600,29419000 +What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA R703600,29419000 +What is the hs code for SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK)COA GTB-033088,38249999 +What is the hs code for SK BIOLAND SNAIL SECREATION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-041098,38249999 +What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-022208,38249999 +What is the hs code for SK BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) COA MSEEC-050918,38249999 +What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-041128,38249999 +What is the hs code for SK BIOLAND SNAIL SECREATION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-041098,38249999 +What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-101228,38249999 +What is the hs code for MIRANOL C2M CONC NP 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA HG28235,34029099 +What is the hs code for LIQUORICE LC (BHN BAKU KOSMETIK) COA.112431/P89456-P89459,13021920 +What is the hs code for VIUSID AQUA ORAL SOLUTION (PAKAN IKAN BERBENTUK CAIR) COA R-8/10-21,23099090 +What is the hs code for ONDASENTRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA 18OS002,29332900 +What is the hs code for THEOPHYLLINE ANHYDROUS (B. BAKU OBAT) COA 18292 S/D 301,29395900 +"What is the hs code for OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET), COA WP807999",32151900 +"What is the hs code for NIACINAMIDE USP (NICOTINAMIDE) (BHN BAKU KOSMETIK) COA 015012019/A, 016012019/A...",29362900 +"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 281018, 141118",25070000 +"What is the hs code for NYSTATIN (BHN BAKU OBAT) COA.C114229, 30",29419000 +What is the hs code for NYSTATIN MICRONIZED (BHN BAKU OBAT) COA C130995,29419000 +What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00718225,29362100 +What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00718225,29362100 +"What is the hs code for EUXYL PE 9010 CN 200KG FA (BHN BAKU KOSMETIK) COA 1521722,1522260",38249999 +What is the hs code for EUXYL K 120 CN 10KG KA (BHN BAKU KOSMETIK) COA 1521517,38249999 +What is the hs code for EUXYL K 900 CN 10KG KA (BHN BAKU KOSMETIK) COA 1522345,38249999 +"What is the hs code for SENSIVA SC 50 CN 10KG KA (BHN BAKU KOSMETIK) COA 1516344,1518342,1521364",38249999 +What is the hs code for SENSIDIN DO CN 10KG CA (BHN BAKU KOSMETIK) COA 1518078,38249999 +What is the hs code for EUXYL K 100 10 KG KA (BHN BAKU KOSMETIK) COA 1521530,38249999 +"What is the hs code for EUXYL K 340 CN 10KG KA (BHN BAKU KOSMETIK) COA 1519442, SAMPLE NO COMMERCIAL VALUE",38249999 +"What is the hs code for EUXYL K 700 SAMPLE(S) 100 ML FL (BHN BAKU KOSMETIK) COA 1515358 ,SAMPLE NO COMMERCIAL VALUE",38249999 +"What is the hs code for EUXYL K 702 SAMPLE(S) 100ML FL (BHN BAKU KOSMETIK) COA 1522849, SAMPLE NO COMMERCIAL VALUE",38249999 +"What is the hs code for EUXYL K 703 100ML FL (BHN BAKU KOSMETIK) COA 1515816,SAMPLE NO COMMERCIAL VALUE",38249999 +What is the hs code for EUXYL K 712 SAMPLE 100 ML FL (BHN BAKU KOSMETIK) COA 1518619 SAMPLE NO COMMERCIAL VALUE,38249999 +"What is the hs code for EUXYL K 702 SAMPLES 100 ML FL (BHN BAKU KOSMETIK) COA 1317499,SAMPLE NO COMMERCIAL VALUE",38249999 +What is the hs code for EUXYL K 830 100 ML FL (BHN BAKU KOSMETIK) COA 1520202 SAMPLE NO COMMERCIAL VALUE,38249999 +"What is the hs code for EUXYL 940 (SAMPLE) 100 ML FL (BHN BAKU KOSMETIK) COA 1333310, SAMPLE NO COMMERCIAL VALUE",38249999 +"What is the hs code for EUXYL K 940 (SAMPLE) 100ML FL (BHN BAKU KOSMETIK) COA 1333310, SAMPLE NO COMMERCIAL VALUE",38249999 +"What is the hs code for EUXYL PE 9010 SAMPLE(S) 100ML FL (BHN BAKU KOSMETIK) COA 1509374,... SAMPLE NO COMMERCIAL VALUE",38249999 +What is the hs code for SENSIVA PA 40 (SAMPLE) 100 ML FL (BHN BAKU KOSMETIK) COA 1501346 SAMPLE NO COMMERCIAL VALUE,38249999 +"What is the hs code for SENSIVA SC 10 100 ML FL (BHN BAKU KOSMETIK) COA 1340277,1512096,SAMPLE NO COMMERCIAL VALUE",38249999 +What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00718222,29362100 +What is the hs code for ECOSLIM TM (BHN BAKU KOSMETIK) COA 1813603,38249999 +What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830016739J,38249999 +What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785016677J,38249999 +What is the hs code for CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785016832J,38249999 +"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK), COA 1820301",38249999 +What is the hs code for MATIPURE TM OIL FREE (BHN BAKU KOSMETIK) COA 1831101,38249999 +What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5584418,38249999 +What is the hs code for MELANOSTATINE 5BG (50PPM) (BHN BAKU KOSMETIK) COA 817046674J,38249999 +What is the hs code for MINIPORYL (BHN BAKU KOSMETIK) COA 832016604J,38249999 +What is the hs code for PROGELINE (BHN BAKU KOSMETIK) COA 820056838J,38249999 +What is the hs code for TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784026310J,38249999 +What is the hs code for DEFENSCALP (BHN BAKU KOSMETIK) COA 785076470J,38249999 +What is the hs code for B WHITE (BHN BAKU KOSMETIK) COA 829016718J,38249999 +"What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK), COA 55417187",38249999 +What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829016884J,38249999 +What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 828016718J,38249999 +"What is the hs code for MELANOSTATINE-5BG (50PPM) BHN BAKU KOSMETIK, COA 817046522J",38249999 +What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016716J,38249999 +What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016911J,38249999 +What is the hs code for SWT 7TM L (BHN BAKU KOSMETIK) COA 1828801,38249999 +What is the hs code for TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784026462J,38249999 +What is the hs code for CATCOL C 135 (L) GRADE (BAHAN BAKU KOSMETIK) COA 082/19,38249999 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA MTP01219,28363000 +"What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) , COA 901005",38249999 +"What is the hs code for KF-6028 (16KG) BHN BAKU KOSMETIK, COA 812200",38249999 +What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK COA B030119,39123900 +"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG151218",39123900 +What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0031409,38249999 +What is the hs code for METHOCEL E6 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011I34L01,39123900 +What is the hs code for METHOCEL K15M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I8G001,39123900 +What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB301218,39123900 +"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG180119",39123900 +What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA.M113154,29339990 +What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113157,29339990 +What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113123,29339990 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8297692,38210010 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8297692,38210010 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8297692,38210010 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8297692,38210010 +What is the hs code for PLURESSENCE LEMON 5001BA (BHN BAKU SUPLEMEN) COA 284616,28399000 +What is the hs code for BICAR FOOD 0/50 SODIUM BICARBONATE (BHN BAKU SUPLEMEN )COA MTP02419,28363000 +What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 182069,13021990 +"What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453294475,4453391519",39139090 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612340,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612350,38249999 +What is the hs code for OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612320,38249999 +What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612325,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612330,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612126,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612333,38249999 +What is the hs code for OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612319,38249999 +What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612342,38249999 +What is the hs code for OPADRY AMB MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612341,38249999 +What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612324,38249999 +What is the hs code for OPADRY AMB PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612323,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612321,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612321,38249999 +What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612331,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612348,38249999 +What is the hs code for OPADRY PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612349,38249999 +What is the hs code for OPADRY AMB II PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612332,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612520,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612522,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612521,38249999 +What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612523,38249999 +What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612342,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611868,38249999 +What is the hs code for OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612524,38249999 +What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612516,32151900 +What is the hs code for PIGMENT BLEND GREEN ( BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612516,32151900 +What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612516,32151900 +"What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 80605, 80726",38029090 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO180302,38249999 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO190102,38249999 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO180302,38249999 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO180903,38249999 +What is the hs code for VISTANOL GDHR (BHN BAKU KOSMETIK) COA WAK,38249999 +What is the hs code for PROMOIS S-CAQ (BHN BAKU KOSMETIK) COA KLE,38249999 +What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA KLJ,38249999 +What is the hs code for FEF CETRIMIDE PH EUR EP (BHN BAKU OBAT) COA JXOB984,38249999 +"What is the hs code for MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU MAKANAN) COA.TS00011052",29362500 +"What is the hs code for 1,3 BUTYLENE GLYCOL, COSMETIC QUALITY(BHN BAKU KOSMETIK) COA P0618D13EC",29053200 +What is the hs code for OPADRY II TAN (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT684063,38249999 +What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT683189,32151900 +What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT684061,32151900 +What is the hs code for CONFECTIONERY INK BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT684001,32151900 +What is the hs code for CONFECTIONERY INK BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT684262,32151900 +"What is the hs code for PURILEX TM COMPACTED, CEFALEXIN MONOHYDRATE (PURIDROX POWDER) BHN BAKU OBAT,COA.B427609",29419000 +"What is the hs code for PURILEX TM COMPACTED, CEFALEXIN MONOHYDRATE (BHN BAKU OBAT) COA B427595,7645",29419000 +"What is the hs code for VITAMIN PREMIX 103093 A (BHN BAKU MAKANAN) COA XW91901193,1194",21069059 +What is the hs code for ACYCLOVIR MICRONIZED (BHN BAKU OBAT) COA 19100067,29335990 +"What is the hs code for RANITIDINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA RH 077 01 19, 078 01 19",29321900 +"What is the hs code for RANITIDINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA RH 080 01 19, RH 081 01 19",29321900 +What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA R901000,29419000 +What is the hs code for METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT LYOPHIZED (BHN BAKU OBAT) COA NY3411,29372900 +What is the hs code for O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 071818/005600,38249999 +What is the hs code for GRANULAC (R) 200 H(BHN BAKU OBAT) COA. L105715118,17021100 +What is the hs code for CINNARIZINE (BHN BAKU OBAT) COA 003012019CIN,29335990 +What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 18290153,30039000 +What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00718225,29362100 +What is the hs code for ISOFLAVONES 150 BDF (BHN BAKU KOSMETIK) COA 7275779,13021990 +"What is the hs code for AMPROLIUM HCL (BHN BAKU OBAT UTK PAKAN TERNAK) COA 20190112, 113",29335990 +What is the hs code for INOSITOL (BHN BAKU OBAT) COA 201812062,29061300 +What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 1901026,29349990 +What is the hs code for POVIDONE K-30 (BHN BAKU OBAT) COA PK30-180819F41,39059990 +What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1901227 S/D 1231,29224900 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT18080824,825",29362100 +"What is the hs code for DL-PANTHENOL 50 L,1000KG IBC (BHN BAKU KOSMETIK) COA TL01812658",29362400 +"What is the hs code for DL-PANTHENOL 50L, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01812658",29362400 +"What is the hs code for ETHYL PANTHENOL, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01811814",29362400 +"What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P8W27QA000, P8W28QA000",29420000 +"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20180701,0706",29362800 +What is the hs code for VITAMIN A PALMITATE/M 1.0 MIU/G (BHN BAKU MAKANAN) COA UT18090021,29362100 +What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT18040035,29362500 +"What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8260559",38210010 +"What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8260559",38210010 +What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8260559,38210010 +What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8227600,38210010 +What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8337538,38210010 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8297702,38210010 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206906,38210010 +"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 8241935",38210010 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8361674,38210010 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 8241622,38210010 +What is the hs code for PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7250997,38210010 +What is the hs code for BOTTLE TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141903,38210010 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8291771,38210010 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8282931,38210010 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8271802,38210010 +"What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8241972",38210010 +What is the hs code for BOTTLE LITMUS MILK BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8058939,38210010 +What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8283686,38210010 +What is the hs code for BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8283698,38210010 +What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8281627,38210010 +What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8312890,38210010 +What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8115632,38210010 +What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7153977,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7135939,38210010 +What is the hs code for BOTTLE M.ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8313588,38210010 +What is the hs code for BOTTLE MARINE BROTH 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8282904,38210010 +What is the hs code for BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8032739,38210010 +What is the hs code for BOTTLE TETRATHIONATE BR BASE HAJNA 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8155901,38210010 +"What is the hs code for BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8274532",38210010 +What is the hs code for PLATE TSA W LP IC-XT PACK 90MM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8284533,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8179827,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8256652,38210010 +What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8291800,38210010 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219994,38210010 +What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8194606,38210010 +What is the hs code for BOTTLE TRYPTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8331841,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8129691,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8291589,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206836,38210010 +What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8162545,38210010 +What is the hs code for BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8240967,38210010 +What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8228997,38210010 +What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8302980,38210010 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8241614,38210010 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255630,38210010 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8183841,38210010 +What is the hs code for BOTTLE CASITONE 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8289953,38210010 +What is the hs code for BOTTLE DEXTROSE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233944,38210010 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7349871,38210010 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233583,38210010 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8219987,38210010 +What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255977,38210010 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8241935,38210010 +What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8079881,38210010 +What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206558,38210010 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8170732,38210010 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8291715,38210010 +What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8129682,38210010 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8193816,38210010 +What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8227776,38210010 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8291939,38210010 +What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8317859,38210010 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8297842,38210010 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255627,38210010 +What is the hs code for BOTTLE SOLUBLE STRACH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8241699,38210010 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183873,38210010 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8282931,38210010 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8271802,38210010 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8271696,38210010 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8234653,38210010 +What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8194606,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8129691,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8291589,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8206836,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8256652,38210010 +What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8162545,38210010 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255630,38210010 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8281593,38210010 +What is the hs code for BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8270639,38210010 +"What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8302980,712",38210010 +What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8228997,38210010 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183841,38210010 +"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8293816, 965",38210010 +What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8289953,38210010 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8310579,38210010 +What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 82339448,38210010 +What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8066834,38210010 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7349871,38210010 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8233583,38210010 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8219987,38210010 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 8241935,38210010 +What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8255977,38210010 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8255932,38210010 +What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8079881,38210010 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8079540,38210010 +What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8206558,38210010 +What is the hs code for BOTTLE LYSINE DECATBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7324991,38210010 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8170732,38210010 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8299808,38210010 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8291715,38210010 +What is the hs code for BOTTLE MALT AGAR 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7312565,38210010 +What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8129682,38210010 +What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7338553,38210010 +"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8227776,8271874",38210010 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8291939,38210010 +What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8291800,38210010 +What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8317859,38210010 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 8206906,38210010 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 8297842,38210010 +What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8227610,38210010 +"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8255627, 8346795",38210010 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8241699,38210010 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8183873,38210010 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8282931,38210010 +What is the hs code for BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8331841,38210010 +What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) COA 8141903,38210010 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8271696,38210010 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8271802,38210010 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8234653,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8291589,38210010 +What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKIROORGANISME) BATCH 8228997,38210010 +What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8337538,38210010 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8281593,38210010 +What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8026869,38210010 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8255630,38210010 +What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8305685,38210010 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8299812,38210010 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8219987,38210010 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8346795,38210010 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8183873,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8291589,38210010 +What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8141903,38210010 +What is the hs code for BOTTLE ENDO AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH 8031775,38210010 +What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7254544,38210010 +What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8281627,38210010 +What is the hs code for BOTTLE UNIVERSAL PREENRICHMENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8171952,38210010 +What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME( BATCH 8260573,38210010 +What is the hs code for BOTTLE NITRATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8129685,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 5 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8197524,38210010 +What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7297554,38210010 +What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8134767,38210010 +What is the hs code for BOTTLE APT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8134772,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7135939,38210010 +What is the hs code for BOTTLE YEAST MOLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8291647,38210010 +What is the hs code for BOTTLE SS AGAR 500G ( MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7250994,38210010 +What is the hs code for BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7250994,38210010 +What is the hs code for BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8171598,38210010 +What is the hs code for BOTTLE M-PA-C AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8206646,38210010 +What is the hs code for BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8274532,38210010 +What is the hs code for FCAP V3.0 DVD ASSY WITH DONGLE (MEDIA UTK PENGEMBANGAN MIKROORGANISME),38210010 +What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8227600,38210010 +What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH B02B009M,38210010 +What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8227600,38210010 +What is the hs code for BOTTLE CATRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8306679,38210010 +What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8306679,38210010 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8299812,38210010 +What is the hs code for SOLUTION BACTERIOSTAT CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 18K3056904,38210010 +What is the hs code for BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8331841,38210010 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8183841,38210010 +What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8228997,38210010 +What is the hs code for INSTRUMENT PHOENIXSPEC (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1806,38210010 +What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH B02B009M,38210010 +What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8289613,38210010 +What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500 (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8227600,38210010 +What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8306679,38210010 +What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7297545,38210010 +What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612773,38249999 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612949,38249999 +What is the hs code for OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612524,38249999 +What is the hs code for OPADRY AMB II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612952,38249999 +What is the hs code for OPADRY SGR TRANSLUCENT (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA649861,38249999 +What is the hs code for OPADRY SGR CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA649889,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA649856,38249999 +What is the hs code for OPADRY ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA649860,38249999 +What is the hs code for OPADRY SGR TRANSLUCENT (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA649861,38249999 +What is the hs code for CITRIC ACID MONOHYDRATE BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 2AX1812043,29181400 +What is the hs code for POVIDONE K-25 (BHN BAKU OBAT) COA PK25-190103F42,39059990 +What is the hs code for NEOMYCIN SULPHATE USP (BHN BAKU OBAT) COA 201901039,29419000 +"What is the hs code for PURIDROX TM POWDER CEFADROXILE MONOHYDRATE (BHN BAKU OBAT) COA M334610,11,12",29419000 +What is the hs code for METHOCEL K100 PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I79002,39123900 +What is the hs code for METHOCEL K100 PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I5D002,39123900 +What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I19001,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I5Q002,39123900 +What is the hs code for METHOCEL K100 PREMIUM CR ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I5C002,39123900 +What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8316601,38210010 +"What is the hs code for BEAUPLEX (TM) VH, 5KG BAG ALU (BHN BAKU KOSMETIK) COA UF18316007",29420000 +"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91812173,2174",29420000 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318121901,902",29420000 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708170127,131,192",29420000 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01809090",29362400 +"What is the hs code for DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01807634",29362400 +"What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01804807,7810",29362400 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318121898,899",29420000 +"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91812089,90,91",29420000 +"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01809090",29362400 +"What is the hs code for STAY-C (R) 50, 5KG BAG ALU (BHN BAKU KOSMETIK) COA CS18060020 S/D 23",29362700 +"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0218100203,20242",29420000 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK), COA 0318121899, 900,901",29420000 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT18080823",29362100 +What is the hs code for CAROPHYLL PINK 10PCT CWS (BHN BAKU OBAT UTK PAKAN TERNAK) COA UE01805620,32041900 +What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA. 20181230,17023010 +What is the hs code for FASTIMMUNE CD56/CD69/CD45 50 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8311523,38210010 +"What is the hs code for FASTIMMUNE HUMAN IL-2 PE... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8149610",38210010 +What is the hs code for CD79A PE HM47 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8274645,38210010 +What is the hs code for ANTI-MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8348900,38210010 +What is the hs code for CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8268723,38210010 +What is the hs code for CD3 FITC SK7 50 TESTS IVD (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8335832,38210010 +What is the hs code for CS&T RUO BEADS 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8260522,38210010 +What is the hs code for HU LEPTIN RCPTR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 72222961,38210010 +What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8312963,38210010 +What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8222563,38210010 +What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 82535459,38210010 +What is the hs code for PLATE COLUMBIA AGAR 5PCT SB 20 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8341506,38210010 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8247729,38210010 +What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8162741,38210010 +What is the hs code for CD200 APC (MRC OX-104) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8312558,38210010 +What is the hs code for CD5 FITC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8270690,38210010 +What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8331948,38210010 +What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8295519,38210010 +What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9016637,38210010 +What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8204557,38210010 +What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8307942,38210010 +What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8267852,38210010 +"What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8220589, 91",38210010 +What is the hs code for CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8268723,38210010 +What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8348845,38210010 +What is the hs code for HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8222879,38210010 +What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8309579,38210010 +"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8162741,825558",38210010 +"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8162741,8255580",38210010 +What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8233839,38210010 +What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8054920,38210010 +What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8054920,38210010 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8232579,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8207980,38210010 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8232579,38210010 +"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8247729,8267844",38210010 +What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8309579,38210010 +What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8141516,38210010 +What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219521,38210010 +What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255580,38210010 +"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8227874,8242626.",38210010 +What is the hs code for VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7314928,38210010 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8155510,38210010 +What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8239511,38210010 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8159661,38210010 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8235876,38210010 +What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8331948,38210010 +What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8295519,38210010 +What is the hs code for CD4 APC SK3 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8332733,38210010 +"What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8204557,8278991",38210010 +What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8307942,38210010 +What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8267852,38210010 +What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 82206205,38210010 +What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8353691,38210010 +What is the hs code for CD45 PERCP 2D1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8150765,38210010 +What is the hs code for HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8222879,38210010 +What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8309579,38210010 +What is the hs code for SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA 19011411,38249999 +What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC 043-18-801,17021100 +"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 1901EF3710",29224900 +"What is the hs code for VC ASCORBIC ACID 325, 20KG BOAIPO (BAHAN BAKU SUPLEMEN) COA HPD1901070,76,82,90,97,99,107",29362700 +"What is the hs code for VC ASCORBIC ACID DC97PCT, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG1811003,4",29362700 +"What is the hs code for AMOXICILLIN TRIHYDRATE /PURIMOX COMPACTED GRADE A(BHN BAKU OBAT) COA M530635 S/D 658, 634",29411019 +What is the hs code for GRANULAC (R) 200 H(BHN BAKU OBAT) COA. L101855218,17021100 +What is the hs code for DOCUSATE SODIUM BP (BHN BAKU OBAT) COA DSW9002,29171900 +What is the hs code for SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 1907660483,29322090 +What is the hs code for LEUCOCYANIDINS PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 18333,38249999 +"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA.LDC44218T",27101990 +What is the hs code for PROTEIN TRANSPORT INHIBITOR SOLN 0.7ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8033974-B,38210010 +What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK)COA MUP-030728,38249999 +What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-030728,38249999 +What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK)COA BAG-011388,38249999 +What is the hs code for SK BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) COA MSEEC-050918,38249999 +What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-020719,38249999 +"What is the hs code for RESTYLANE SB VITALLGHLIDO LIDOCAINE 1ML , COA 16419-1",33049990 +"What is the hs code for RESTYLANE SB VITAL LIGHT LIDOCAINE 1 ML ,COA 16503-1",33049990 +"What is the hs code for RESTYLANE LIDOCAINE 1ML , COA 16374-1",33049990 +"What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML , COA 16545-1",33049990 +"What is the hs code for RESTYLANE REFYNE 1ML, COA 16326-1",33049990 +"What is the hs code for RESTYLANE DEFYNE 1 ML ,COA 16572-1",33049990 +"What is the hs code for RESTYLANE KYSSE 1 ML , COA 16207-1",33049990 +What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 141118,25070000 +What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5588618,38249999 +"What is the hs code for CALCITRIOL (BHN BAKU OBAT) COA F074-856R053-1, SAMPLE NO COMMERCIAL VALUE",29362900 +What is the hs code for METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I5R002,39123900 +What is the hs code for METHOCEL K100 PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I6F021,39123900 +What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB01017666,29362800 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18100055,29362100 +"What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF,1KG ALUF (BHN BAKU SUPLEMEN) COA UE01811060",32030010 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18090031,32041900 +What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT18040036,29362500 +"What is the hs code for GENIVIDA (TM) TG ,1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT17080006",29329990 +What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18100055,29362100 +"What is the hs code for COATED ASCORBIC ACID TYPE EC,25KG BOX (BHN BAKU SUPLEMEN) COA TL01812503",29362700 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT18110039,32030010 +What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18100055,29362100 +What is the hs code for VITAMIN A +D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18100042,29362100 +What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT18040036,29362500 +"What is the hs code for GENIVIDA (TM) TG,1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT17080006",29329990 +What is the hs code for DPG FG (BHN BAKU KOSMETIK) COA C02201DG,29094900 +What is the hs code for PG USP (BHN BAKU KOSMETIK) COA C02201UG,29053200 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01806052,32041900 +What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18080219,29362800 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1807003,29362900 +What is the hs code for RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1808118,29362300 +What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20170401,29362800 +"What is the hs code for ASCORBIC ACID, 25KG BOX ALU (BHN BAKU MAKANAN) COA TL01807116",29362700 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ80503144,29362200 +What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ81209022,29362300 +What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ81209022,29362300 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01810781",29362700 +"What is the hs code for ASCORBIC ACID ,25KG BOX /ALU (BHN BAKU MAKANAN) COA TL01807116",29362700 +"What is the hs code for ASCORBIC ACID,25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01807110,7116",29362700 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT18090057,29362800 +"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT18090314,315",29362400 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT18090083,29362900 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT18080827,29362100 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT18080827,29362100 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT18080024,32041900 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT18090057,29362800 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1808009,29362900 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT18090057,29362800 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1808009,29362900 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518046,29362200 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01807116",29362700 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT18090057,29362800 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01808076",29362400 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI17100012,29362900 +What is the hs code for DRY VITAMIN D3 100CWS (BHN BAKU SUPLEMEN) COA UT17120037,29362900 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18090045,29362100 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18090057,29362800 +What is the hs code for PX 103070C (BHN BAKU MAKANAN) COA XW91812154,21069059 +What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE01809013,29362100 +"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UE01810305,306",29362800 +"What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB01118970",29362700 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18080017,29362600 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18070244,29362400 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT18070024,32041900 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01806052,32041900 +What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18080219,29362800 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT18070024,29362900 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1807003,29362900 +What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ81209022,29362300 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18080017,29362600 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT18090083,29362900 +"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN), COA UT18070244",29362400 +What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1808118,29362300 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01807116",29362700 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01810781",29362700 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ80703172,29362200 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT18040136,29362400 +What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18080219,29362800 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ81110224,29362300 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT18090083,29362900 +"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18080016,17",29362600 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01805043,32041900 +"What is the hs code for CALCIUM D PANTOTHENATE ,25KG BOX (BHN BAKU MAKANAN) COA TL01804678",29362400 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1807003,29362900 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ80503136,29362200 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT18040136,29362400 +What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COAUT18100299,29362800 +"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT18090083,84",29362900 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ80703172,29362200 +"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01805040,5041",32041900 +"What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU MAKANAN) COA TL01804678",29362400 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1807003,29362900 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ80413101,29362500 +What is the hs code for PX 204005 (BHN BAKU MAKANAN) COA XW91811312,21069059 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ80513135,29362500 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT18090045,29362100 +"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB-00418105,106",29362900 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01805043,32041900 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1807003,29362900 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518032,29362300 +What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ81209022,29362300 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT18080824",29362100 +What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1808118,29362300 +What is the hs code for PX 103070C (BHN BAKU MAKANAN) COA XW91812153,21069059 +What is the hs code for TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA649414,32151900 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612765,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612757,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612756,38249999 +What is the hs code for OPADRY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612755,38249999 +What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612754,39061090 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612771,39061090 +What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613043,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612772,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612779,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612766,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612766,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610807,38249999 +What is the hs code for OPADRY AMB II PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612758,38249999 +What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612769,38249999 +What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612773,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612753,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613449,38249999 +What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612768,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612614,38249999 +What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612523,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612778,38249999 +What is the hs code for KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0441018,29339990 +What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 182920,38249999 +What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 182751,13021990 +What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 180807,29329990 +What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769016576J,38249999 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1817804,38249999 +What is the hs code for MINIPORYL (BHN BAKU KOSMETIK) COA 832016604J,38249999 +"What is the hs code for CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK), COA 785016832J",38249999 +What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016911J,38249999 +What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829016718J,38249999 +What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 1821114,38249999 +What is the hs code for LABRAFIL M 1944 CS (BHN BAKU SUPLEMEN) COA 173317,28399000 +What is the hs code for DESONIDE MICRONIZED (BHN BAKU OBAT) COA NX2299M,29372900 +What is the hs code for MOMETASONE FUROATE MICRONIZED (BHN BAKU OBAT) COA NX2467M,29372200 +What is the hs code for TRIAMCINOLONE ACETONIDE MICRONIZED (BHN BAKU OBAT) COA NZ0111M,29372200 +What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NY2130M,29372200 +What is the hs code for NYSTATIN POWDER ROW (BHN BAKU OBAT) COA.C114267,29419000 +What is the hs code for NYSTATIN MICRONIZED ROW (BHN BAKU OBAT) COA C131009,29419000 +What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED(BHN BAKU OBAT UTK PAKAN TERNAK) COA. ROA0519,28363000 +What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN2451118,29221990 +"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A,20KG BA (BHN BAKU MAKANAN) COA WB01118400",29362100 +"What is the hs code for PARSOL MCX,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518120391,0519010009",29420000 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519010003",29420000 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518120391",29420000 +What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01812478,29362700 +What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01812478,29362700 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18090031,32041900 +"What is the hs code for COATED ASCORBIC ACID, TYPE EC,25KG BOX (BHN BAKU SUPLEMEN) COA TL01812569",29362700 +What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB01017666,29362800 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110039,32030010 +What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110014,29420000 +What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT18040036,29362500 +What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18100055,29362100 +What is the hs code for VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18100042,29362100 +What is the hs code for VITAMIN A PALMITATE/M 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT18090021,29362100 +"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT19010008,UT19020012",29362800 +What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ80407002,29420000 +What is the hs code for CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA. 1GC01CLB ZP48D 250MT,38249999 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190207,17029019 +What is the hs code for PROMOIS S-CAQ (BHN BAKU KOSMETIK) COA KLE,38249999 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA KLH,38249999 +"What is the hs code for EFFERSODA (R) 12 BHN BAKU OBAT, COA 121809620",28363000 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 121809620, 121809621",28363000 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 121809621,9623",28363000 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613476,39061090 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613472,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613475,38249999 +What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00818229,29362100 +What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK)COA GSC-K-041128,38249999 +What is the hs code for SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-033088,38249999 +What is the hs code for SK BIOLAND SNAIL SECREATION FILTRATE (BHN BAKU KOSMETIK)COA SAFW-041098,38249999 +What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-101228,38249999 +What is the hs code for SK BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSFAC-021088,38249999 +What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK)COA MCP-N-060598,38249999 +What is the hs code for SK BIOLAND YUZU EXTRACT (BHN BAKU KOSMETIK) COA CJUBD-012919,38249999 +What is the hs code for SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-033088,38249999 +"What is the hs code for FENTACARE 2231 EF (BHN BAKU KOSMETIK )COA ZH19B1704,2003",34029019 +What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00818229,29362100 +What is the hs code for MC-GLUCAN (BHN BAKU KOSMETIK) COA MCGL190129,39139090 +What is the hs code for CILOSTAZOL USP (BHN BAKU OBAT) COA 18004CB2ARI,29337900 +What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BJ01209,29349990 +"What is the hs code for PYRAZINAMIDE EP/USP (BHN BAKU OBAT) COA WPOZ 195 A19,WHOPZ 194 A19...",29339990 +"What is the hs code for CALCITRIOL (BHN BAKU OBAT) COA F074-856R053-1, SAMPLE NO COMMERCIAL VALUE",29362900 +What is the hs code for GRANULAC (R) 200 H(BHN BAKU OBAT) COA. L101850319,17021100 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO190101,38249999 +What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-190202-GS,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS181002,38249999 +What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK)COA CFM180901-PGH,38249999 +What is the hs code for ICHA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK) COA II181118-AI-D-BIO,38249999 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613250,38249999 +What is the hs code for OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613252,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613243,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613230,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613243,38249999 +What is the hs code for OPADRY 200 GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613235,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613241,38249999 +What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613249,39061090 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612205,39061090 +What is the hs code for ACRYL EZE II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613242,39061090 +What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613231,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613258,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613043,38249999 +What is the hs code for OPADRY II WHITE(BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613160,38249999 +What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613229,39061090 +"What is the hs code for OMEPRAZOLE PELLETS 8,5 PCT (BHN BAKU OBAT) COA OP0219C008",30039000 +What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-2741218,29334910 +"What is the hs code for METAMIZOLE SODIUM (BHN BAKU OBAT) COA 1901006,7,8,2044",29331900 +"What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND181206,190202",29372200 +What is the hs code for PREDNISONE USP40 (BHN BAKU OBAT) COA NPD190109,29372100 +What is the hs code for GABAPETIN (BHN BAKU OBAT) COA CGBU190109,29224900 +"What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) , COA 902012",38249999 +"What is the hs code for KSP-100 (10KG) BHN BAKU KOSMETIK, COA 902669",38249999 +"What is the hs code for RESTYLANE SB VITALLGHLIDO LIDOCAINE 1ML , COA 16486-1",33049990 +"What is the hs code for RESTYLANE SB VITAL LIGHT LIDOCAINE 1 ML ,COA 16503-1",33049990 +"What is the hs code for RESTYLANE SB VITAL LIGHT LIDOCAINE 1ML , COA 16683-1",33049990 +"What is the hs code for RESTYLANE LIDOCAINE 1ML , COA 16374-1",33049990 +"What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML, COA 16619-1",33049990 +"What is the hs code for RESTYLANE VOLYME 1 ML ,COA 16278-1",33049990 +"What is the hs code for RESTYLANE REFYNE 1 ML , COA 16326-1",33049990 +"What is the hs code for RESTYLANE DEFYNE 1 ML , COA 16572-1",33049990 +"What is the hs code for RESTYLANE KYSSE 1 ML , COA 16207-1",33049990 +"What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE A(BHN BAKU OBAT) COA. M530697,530717,M530768...",29411019 +What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA. 20190215,17023010 +What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA R703600,29419000 +What is the hs code for CEFOTAXIME SODIUM EP (BHN BAKU OBAT) COA R202700,29419000 +What is the hs code for IMERCARE 400D S (BHN BAKU KOSMETIK) COA 1708A4-10,38029090 +What is the hs code for LIPOID PPL-600 (BHN BAKU OBAT) COA.577200-2180223/011-012,29232010 +What is the hs code for PREDNISONE (BHN BAKU OBAT) COA K03B20180712M,29372100 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613655,38249999 +What is the hs code for OPADRY AMB BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613651,38249999 +What is the hs code for OLIO VINACCIOLI RAFFINATO (BHN BAKU KOSMETIK) COA.B1900045,15152919 +What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG190201,29362700 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613447,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613510,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613511,38249999 +What is the hs code for OPADRY AMB GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613519,38249999 +What is the hs code for ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613517,39061090 +What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613037,38249999 +What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613503,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613478,38249999 +What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613487,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613488,38249999 +What is the hs code for OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613252,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613490,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613500,38249999 +What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613499,32151900 +What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613499,32151900 +What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613499,32151900 +What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613499,32151900 +What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613499,32151900 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613489,38249999 +What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612682,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613160,38249999 +What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613477,39061090 +What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613518,38249999 +What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613504,39061090 +What is the hs code for OPADRY AMB MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613512,38249999 +What is the hs code for CITRIC ACID MONOHYDRATE BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX1902017,29181400 +"What is the hs code for VC ASCORBIC ACID DS 97PCT, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG1811004 S/D 6 ,2002,2016",29362700 +What is the hs code for SILYBIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10918/M1,38249999 +What is the hs code for SILYBIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10919/M1,38249999 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10921/M1,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10922/M1,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10930/M1,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0003700,13021990 +What is the hs code for GINSENG DRY EXT 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0003800,13021990 +What is the hs code for SILYMARIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 19B0002700,38249999 +What is the hs code for CENTELLA ASIATICA TRITERP/C (BHN BAKU SUPLEMEN) COA 19S0003400,38249999 +What is the hs code for PHASEOLUS VULGARIS DRY EXTRACT (BHN BAKU SUPLEMEN) COA 071019,13021990 +"What is the hs code for PHASEOLUS VULGARIS DRY EXTRACT (BHN BAKU SUPLEMEN) COA 071019,SAMPLE NO COMMERCIAL VALUE",13021990 +What is the hs code for VACCINIUM MYRTILLUS DRY EX (BHN BAKU SUPLEMEN) COA 064984,13021990 +What is the hs code for VACCINIUM MYRTILLUS DRY EX (BHN BAKU SUPLEMEN) COA 069402,13021990 +What is the hs code for CENTELLA ASIATICA /PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 073983,38249999 +What is the hs code for P. GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 074506,13021990 +"What is the hs code for BILBERRY (V.MYRTILLUS) ET.EX 36PCT (BHN BAKU SUPLEMEN), COA 074664",13021990 +What is the hs code for SERENOA REPENS PURIFIEDEXT (BHN BAKU SUPLEMEN) COA 075070,38249999 +What is the hs code for CENTELLA ASIATICA /PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 073983,38249999 +What is the hs code for ECHINACEA ANG DRY PURIF.EX (BHN BAKU SUPLEMEN) COA 070823,13021990 +What is the hs code for P. GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 074506,13021990 +What is the hs code for P.GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 074506,13021990 +What is the hs code for PHASEOLUS VULGARIS DRY EXTRACT (BHN BAKU SUPLEMEN) COA 071019,13021990 +"What is the hs code for PHASEOLUS VULGARIS DRY EXTRACT (BHN BAKU SUPLEMEN) COA 071019,SAMPLE NO COMMERCIAL VALUE",13021990 +What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA 173371,28399000 +What is the hs code for TRANSCUTOL P (BAHAN BAKU OBAT) COA 173156,28399000 +What is the hs code for SODIUM VALPROATE (BAHAN BAKU OBAT) COA.452718 (641),29159090 +What is the hs code for LIQUORICE LC (BHN BAKU KOSMETIK) COA.112431/P89471-P89474,13021920 +What is the hs code for LIQUORICE LC (BHN BAKU KOSMETIK) COA 113189/P94725-P94728,13021920 +What is the hs code for REFINED SUNFLOWER OIL (BHN BAKU KOSMETIK) COA KKU 04/19,38249999 +What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA C02201UG,29053200 +"What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8183841",38210010 +"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8241935",38210010 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8206906,38210010 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8241935,38210010 +What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8227600,38210010 +"What is the hs code for BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 9002638",38210010 +What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8337538,38210010 +What is the hs code for BOTTLE BACTO TSM BROTH 10KG (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 8337538,38210010 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255630,38210010 +What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9010685,38210010 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8225932,38210010 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8170732,38210010 +What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8227610,38210010 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8291939,38210010 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9002615,38210010 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183873,38210010 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8297692,38210010 +What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9002997,38210010 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8282931,38210010 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8271802,38210010 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8325637,38210010 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255932,38210010 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9002615,38210010 +What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9002997,38210010 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8234653,38210010 +"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9002997",38210010 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255932,38210010 +What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9002997,38210010 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8234653,38210010 +What is the hs code for BOTTLE MOTILITY TEST MEDIUM BBL (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9015933,38210010 +What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141903,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8256652,38210010 +What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9002997,38210010 +What is the hs code for PLATE TSA W LP IC-XT PACK 90MM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8332998,38210010 +What is the hs code for PLATE TSA IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9010977,38210010 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9017883,38210010 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8170732,38210010 +What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8057815,38210010 +What is the hs code for BOTTLE MYP AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7363783,38210010 +What is the hs code for BOTTLE RVS SOY BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8260535,38210010 +What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 181737816,38210010 +What is the hs code for KIT UNIVERSAL VIRAL TRANSPORT STD (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 181391500,38210010 +What is the hs code for SACHET GASPAK EZ CAMPY (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8290657,38210010 +What is the hs code for MEDIMACHINE II (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),38210010 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8241935,38210010 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8310579,38210010 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8271696,38210010 +What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8227600,38210010 +What is the hs code for BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8331841,38210010 +What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8162545,38210010 +"What is the hs code for BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8270639,8282854",38210010 +What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8337538,38210010 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8281593,38210010 +What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8026869,38210010 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255630,38210010 +What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 90106851,38210010 +What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079881,38210010 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255932,38210010 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8170732,38210010 +What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8227610,38210010 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8291715,38210010 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8297965,38210010 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8291939,38210010 +What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8317859,38210010 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297842,38210010 +What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8291800,38210010 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9002615,38210010 +What is the hs code for BOTTLE LB BROTH MILTER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8079540,38210010 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183873,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8256652,38210010 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297692,38210010 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8282931,38210010 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8271802,38210010 +What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8344948,38210010 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8183841,38210010 +"What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8291707",38210010 +"What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8219521",38210010 +What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8219521,38210010 +What is the hs code for BOTTLE LETHERN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8233839,38210010 +What is the hs code for TUBE EGG YOLK ENRICHMENT50PCT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 83354877,38210010 +"What is the hs code for TUBE PENASE CONCENTRATE 10X20ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 8360781",38210010 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8156756,38210010 +What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 8312963,38210010 +What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255563,38210010 +What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8334893,38210010 +What is the hs code for VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8270846,38210010 +What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8332781,38210010 +What is the hs code for BOTTLE D/E NEUTRALIZING AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9031762,38210010 +What is the hs code for VIAL PERICILLINASE 10000000 KU/ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 83389029,38210010 +What is the hs code for VIAL SHIGELLA ANTIS POLY A1 LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 81036295,38210010 +What is the hs code for VIAL SAL O ANTISERUM FACTOR 9 GROUP D (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8341611,38210010 +What is the hs code for VIAL SAL O ANTISERUM GRP C1 FTR 6/7 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8306817,38210010 +What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8338844,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8207980,38210010 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8232579,38210010 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8267844,38210010 +What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8291707,38210010 +What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255580,38210010 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255510,38210010 +What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7314928,38210010 +"What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8239511",38210010 +What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8295519,38210010 +What is the hs code for CD3 APC SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9016646,38210010 +What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9016637,38210010 +What is the hs code for CD79A PE HM47 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8274645,38210010 +What is the hs code for ANTI-MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8348900,38210010 +What is the hs code for CD7 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8307942,38210010 +What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8341873,38210010 +What is the hs code for CD10 APC HI10A 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9009891,38210010 +What is the hs code for CD11B APC D12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9010912,38210010 +What is the hs code for CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8268723,38210010 +What is the hs code for CD25 PE 2A3 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8292598,38210010 +What is the hs code for CD56 APC NCAM 16.2 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8072654,38210010 +What is the hs code for CD10 PE-CY 7 HI10A 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9017648,38210010 +What is the hs code for CD19 PE-CY7 SJ25C1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9017531,38210010 +What is the hs code for CD34 PERCP CY5.5 8G12 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9010980,38210010 +What is the hs code for CD5 FITC L1/F12 100 TESTS RUO/GMP (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8270690,38210010 +What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8348845,38210010 +What is the hs code for CD45 PERCP 2D1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8150765,38210010 +What is the hs code for CD20 FITC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8320767,38210010 +What is the hs code for CD34 PE-CY7 BG12 Y7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8344849,38210010 +What is the hs code for ANTI KAPPA FITC/ANTI LAMBDA PE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8325669,38210010 +What is the hs code for CD3 APC H7 SK7 100 TEST RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9042932,38210010 +What is the hs code for CD20 V500-C RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 90077401,38210010 +What is the hs code for CD7 APC (M-T701) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8354761,38210010 +What is the hs code for CD200 APC (MRX OX-104) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9012744,38210010 +What is the hs code for CD43 APC-H7 (1G10) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9014684,38210010 +What is the hs code for CD23 FITC EBVCS 5 RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9046764,38210010 +What is the hs code for CD38 APC-H7 (HB7) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9022820,38210010 +What is the hs code for HU CD3 HORIZON V450 UCHT1 120TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9002639,38210010 +What is the hs code for HU CD45 HORIZON V500 HI30 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8257900,38210010 +What is the hs code for HU CD64 APC-H7 10.1 50TST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8297936,38210010 +What is the hs code for HU CD36 HORIZON V450 CB38 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8337814,38210010 +What is the hs code for HU CD7 APC M-T701 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8087803,38210010 +What is the hs code for HU CD3 B421 UCHT1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8316512,38210010 +What is the hs code for HU CD10 BV421 HI10A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8330923,38210010 +What is the hs code for HU CD138 BV421 MI15 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8276889,38210010 +What is the hs code for HU CD19 BV510 SJ25C1 100TST (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 802,38210010 +What is the hs code for HU CD14 BV421 MPHIP9 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8236752,38210010 +What is the hs code for HU CD103 BV421 BER ACT8 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8250690,38210010 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8232579,38210010 +What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8347637,38210010 +What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255580,38210010 +What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8239511,38210010 +What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8219521,38210010 +What is the hs code for MIRANOL C2M CONC NP 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP808517R,34029099 +"What is the hs code for MEG-3 '30' N-3 INF OIL ,4,5KG PJUG (BHN BAKU SUPLEMEN) COA TS00012079",29362500 +"What is the hs code for GENIVIDA (TM) TG ,1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT17080006",29329990 +"What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00518468",29362700 +What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT18010016,29362500 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01901719",29362700 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT19020838,839",29362100 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE,25KG BOX (BHN BAKU SUPLEMEN) COA TL01812478",29362700 +"What is the hs code for BEAUPLEX (TM) VH,5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF18316006",29420000 +"What is the hs code for PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0319010176,177",29420000 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01808076,10101,10102,11116",29362400 +"What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01807810",29362400 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0319010177,178",29420000 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708170192,80091,80092",29420000 +"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000179586",29362900 +What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001520830,29420000 +"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01811116",29362400 +"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18100317,318",29362800 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0319010178",29420000 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT18040172,29362100 +"What is the hs code for PARSOL EHS, 20KG PC (BHN BAKU KOSMETIK) COA 0718050071,70106",29420000 +"What is the hs code for DL-PANTHENOL 50L ,20KG PAIL PE, BHN BAKU KOSMETIK, COA TL01807634",29362400 +"What is the hs code for PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0319010178 S/D 181",29420000 +"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0218120242",29420000 +"What is the hs code for AMPHISOL K( BHN BAKU KOSMETIK) COA VE00562749,750",29420000 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518120396",29420000 +"What is the hs code for PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518120396,10009",29420000 +"What is the hs code for PARSOL HMS, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0418110236",29420000 +"What is the hs code for PARSOL SHIELD ,20KG BOX (BHN BAKU KOSMETIK) COA 0818120259",29420000 +What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA. 8MT181248,30032000 +What is the hs code for METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT LYOPHIZED (BHN BAKU OBAT) COA NY3411,29372900 +What is the hs code for SILDENAFIL CITRATE USP (BHN BAKU OBAT) COA SLC 030 12 18,29335990 +What is the hs code for MAGNOLIA BARK EXTRACT (BHN BAKU KOSMETIK) COA MBE05-181001,38249999 +What is the hs code for PROPYPHENAZONE (ST) (BHN BAKU OBAT) COA 1804031,29331100 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539172,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539170,35051010 +What is the hs code for STARCAP 1500 CO-PROCESSED (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537870,35051010 +What is the hs code for SUPPOCIRE AM PELLETS (BHN BAKU SUPLEMEN) COA 18E4910,28399000 +What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-022208,38249999 +What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA MCP-N-060598,38249999 +What is the hs code for SK BIOLAND JEJU TANGERINE EXTRACT (BHN BAKU KOSMETIK)COA GTUP-T-012988,38249999 +What is the hs code for SK BIOLAND LICORICE EXTRACT (BHN BAKU KOSMETIK) COA GGB-022778,38249999 +What is the hs code for SK BIOLAND BIO SODIUM HYALURONATE 1PCT SOLUTION (BHN BAKU KOSMETIK) COA HASC-132129,38249999 +What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK)COA ARP-160839,38249999 +What is the hs code for SK BIOLAND BIO SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA NMP-L-020719,38249999 +What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-062119,38249999 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190219,17029019 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613685,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613687,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613690,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613689,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613684,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613500,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613691,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613040,38249999 +What is the hs code for OPADRY AMB II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613688,38249999 +What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 66273P,38249999 +What is the hs code for DEEP IMPACT DEO (BHN BAKU KOSMETIK) COA 10300081,38249999 +What is the hs code for O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 102418/005767,38249999 +"What is the hs code for MATCHA GREEN TEA EXTRACT CSP 6 TC ( BHN BAKU KOSMETIK), COA CSP 18024 EOU",38249999 +"What is the hs code for MEG-3 '30' N-3 FOOD OIL ,4,5KG PJUG (BHN BAKU SUPLEMEN) COA TS00011948",29362500 +What is the hs code for VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 121809477,28365010 +"What is the hs code for SOLUTION BACTERIOSTAT CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 18K3056904",38210010 +"What is the hs code for PLATE TSA W LP IC-XT PACK 90MM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9017879",38210010 +What is the hs code for PLATE TSA W LP IC XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9017886,38210010 +What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 181772115,38210010 +What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9030984,38210010 +"What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7312565",38210010 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206906,38210010 +What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 8317859,38210010 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 83105797,38210010 +What is the hs code for PLATE TSA W LP IC XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9017880,38210010 +What is the hs code for PLATE TSA IC XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9017878,38210010 +What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8331811,38210010 +What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8024751,38210010 +What is the hs code for BOTTLE MOTILITY TEST MEDIUM BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9015933,38210010 +What is the hs code for BOTTLE PHENOL RED LACTOSE BR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8311620,38210010 +What is the hs code for BOTTLE RHAMNOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8141537,38210010 +What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8297983,38210010 +What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8115632,38210010 +What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8271706,38210010 +What is the hs code for BOTTLE WL DIFFERENT MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8134719,38210010 +What is the hs code for GASPAK EZ STANDARD INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7303752,38210010 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01A348M,38210010 +What is the hs code for BOTTLE YEAST MOLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8291647,38210010 +"What is the hs code for BOTTLE M TGE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8282888",38210010 +What is the hs code for BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8193979,38210010 +"What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7325835,8305704",38210010 +What is the hs code for BOTTLE MAC CONKEY BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9039632,38210010 +What is the hs code for BOTTLE MAC CONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9039632,38210010 +What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9002997,38210010 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9031930,38210010 +What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9002997,38210010 +"What is the hs code for BOTTLE PROTEOSE PEPTONE NO 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8232801,8232827",38210010 +What is the hs code for BOTTLE TC LACTALBUMIN HYDROLYSATE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7331640,38210010 +What is the hs code for BOTTLE BEEF EXTRACT POWDER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233778,38210010 +What is the hs code for BOTTLE DILCO MI AGAR 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9031733,38210010 +What is the hs code for AZITHROMYCIN DIHYDRATE USP41 (BHN BAKU OBAT) COA 103-181009-1,29419000 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01811274,2472,2478",29362700 +"What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) , COA 902012",38249999 +"What is the hs code for KF-96A-6CS (16KG) BHN BAKU KOSMETIK, COA 902012",38249999 +"What is the hs code for KP-562P (16KG) BHN BAKU KOSMETIK, COA 802008",38249999 +"What is the hs code for KF-6038 (16KG) BHN BAKU KOSMETIK, COA 901209",38249999 +"What is the hs code for KP-578 (16KG) BHN BAKU KOSMETIK , COA 804077",38249999 +"What is the hs code for KSG-210 (16KG) BHN BAKU KOSMETIK , COA 903865",38249999 +"What is the hs code for KSG-710 (16KG) BHN BAKU KOSMETIK, COA 902223",38249999 +"What is the hs code for KF-6017 (17KG) BHN BAKU KOSMETIK, COA 902118",38249999 +"What is the hs code for TEFOSE 63 ( BHN BAKU SUPLEMEN) ,COA 172486",28399000 +"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK, COA 01/19LG4",28399000 +What is the hs code for NOMEGESTROL ACETATE (BHN BAKU OBAT) COA NY3417,29372300 +What is the hs code for DEXCHLORPHENIRAMINE MALEATE BP/EP (BHN BAKU OBAT) COA SLL/DC/0319004,29333910 +What is the hs code for LIPOID S 20 (BHN BAKU OBAT) COA. 572000-2180123/021-035 (15),29232010 +What is the hs code for METRONIDAZOLE BP (BHN BAKU OBAT) COA MBO-19030127,29332900 +What is the hs code for PREDNISONE USP40 (BHN BAKU OBAT) COA NPD181213,29372100 +What is the hs code for LINCOMYCIN HCL EP (BHN BAKU OBAT) COA 1809011,29419000 +What is the hs code for SCHISANDRA EXTRACT SCHISANDRIN 5PCT (BHN BAKU OBAT) COA SCE03-19022201,13021990 +What is the hs code for GRANULAC (R) 200 H (BHN BAKU OBAT) COA. L105715118,17021100 +"What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.19100165,166",29391900 +What is the hs code for OPAGLOS WHITE/OFF WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT683215,32151900 +What is the hs code for CONFECTIONERY INK BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT685772,32151900 +"What is the hs code for NIACINAMIDE PC,25KG BOX (BHN BAKU KOSMETIK) COA 0000179587 S/D 589",29362900 +"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0218120253",29420000 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ80313082,29362100 +"What is the hs code for PARSOL MAX, 25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0918090030",29420000 +"What is the hs code for PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0818120259",29420000 +What is the hs code for SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA 19022012,38249999 +What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA. 20190224,17023010 +What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP809446,39059990 +What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP809447,39059990 +"What is the hs code for EUXYL PE 9010 CN 200KG FA (BHN BAKU KOSMETIK) COA 1521841,1525235,1525327",38249999 +What is the hs code for GROTANOL 3025 CN 10KG KA (BHN BAKU KOSMETIK) COA 1523813,38249999 +"What is the hs code for SENSIVA SC 50 CN 10KG KA (BHN BAKU KOSMETIK) COA 1521364,1626526",38249999 +"What is the hs code for EUXYL PE 9010 CN 200KG FA (BHN BAKU KOSMETIK) COA 1524098,1526714",38249999 +What is the hs code for EUXYL K 903 10KG KA (BHN BAKU KOSMETIK) COA 1522518,38249999 +What is the hs code for THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000017021,33029000 +What is the hs code for PLAISANCE P116808 (BHN BAKU KOSMETIK) COA.0000017030,33029000 +"What is the hs code for PURILEX TM COMPACTED, CEFALEXIN MONOHYDRATE (PURIDROX POWDER) BHN BAKU OBAT,COA.B427660",29419000 +"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1910188,1910190",29242930 +"What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE A(BHN BAKU OBAT) COA. M530776,775,781,774",29411019 +"What is the hs code for CEFADROXILE MONOHYDRATE PURIDROX POWDER (BHN BAKU OBAT) COA M334613,15,17",29419000 +"What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT) COA M334618,619,620",29419000 +"What is the hs code for VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU MAKANAN) COA HPB1807026,63,66,67,1901079",29362700 +What is the hs code for ANTISHINE WASH 1 (BHN BAKU KOSMETIK) COA 10300122,38249999 +What is the hs code for PEG 400 (POLYETHYLENE GLYCOL) BAHAN BAKU KOSMETIK) COA.AKW0006970,39072010 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708170127, SAMPLE NO COMMERCIAL VALUE",29420000 +"What is the hs code for MAPROTILINE HCL (BHN BAKU OBAT) COA 1850003424,3495",29214900 +"What is the hs code for LIFE'S DHA S35-O100, 5KG ALUF (B.BAKU SUPLEMEN) COA VY00297607",29362500 +What is the hs code for NICLOSAMIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 190220,29242990 +What is the hs code for CROSPOVIDONE XL-10 (BHN BAKU OBAT) COA PP190115XL-10,39059990 +What is the hs code for SUCRALOSE (BHN BAKU OBAT) COA 19022201,29321400 +What is the hs code for D-GLUCOSAMINE SULPHATE POTASSIUM (BHN BAKU OBAT) COA XH2019030201,29329990 +What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20190217,29309090 +What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20190222,29309090 +What is the hs code for FIBRE DRUM (DRUM KOSONG),48192000 +What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-190202,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK)COA EG543-190202,38249999 +What is the hs code for SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK)COA GTB-012229,38249999 +What is the hs code for SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK) COA U190312,38249999 +What is the hs code for SK BIOLAND SNAIL SECREATION FILTRATE (BHN BAKU KOSMETIK)COA SAFW-041098,38249999 +What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-022208,38249999 +What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-101228,38249999 +What is the hs code for SK BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSFAC-021088,38249999 +What is the hs code for SK BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK)COA MSEEC-050918,38249999 +What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA MCP-N-060598,38249999 +"What is the hs code for SK BIOLAND YUZU EXTRACT (BHN BAKU KOSMETIK) COA CJUBD-021929,CJUBD-031139",38249999 +What is the hs code for SK BIOLAND GLA-40 (BHN BAKU KOSMETIK) COA GLCP-032239,38249999 +What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-030728,38249999 +What is the hs code for DWI BI (BHN BAKU MAKANAN) COA XW91901333,21069059 +"What is the hs code for VITAMIN B12 0,1PCT WS (BHN BAKU MAKANAN) COA UT18080017",29362600 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80513137,29362500 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18080017,29362600 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ80513137,29362500 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ81102495,29362200 +What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01811113,29362400 +What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91901332,21069059 +What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91902062,21069059 +What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91902170,21069059 +What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91902062,21069059 +"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01811329,330",29362800 +What is the hs code for VITAMIN B120.1PCT WS (BHN BAKU MAKANAN) COA UT18080017,29362600 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT18090057,29362800 +"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ81102495,UQ81102499",29362200 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01811113",29362400 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ81102495,29362200 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01802108,29362900 +What is the hs code for B--CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT18070024,32041900 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01807116,8275",29362700 +"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01810308,11329",29362800 +"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UE01811330,11332",29362800 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18080017,29362600 +"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18090057,100076",29362800 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18100076,29362800 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA TL018100076,29362800 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01808102,29362900 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01808102,29362900 +What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01808102,29362900 +What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01808102,29362900 +What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE01811020,29362100 +What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE01811020,29362100 +What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE01811020,29362100 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ80703211,29362200 +"What is the hs code for ASCORBIC ACID ,25KG BOX /ALU (BHN BAKU MAKANAN) COA TL01808275,84",29362700 +What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18100299,29362800 +"What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB01118971",29362700 +"What is the hs code for ASCORBIC ACID,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01808284",29362700 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01810923",29362700 +"What is the hs code for RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1808118,8119",29362300 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01806052,32041900 +What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18100299,29362800 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT18070024,29362900 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT18050026,29362900 +"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN), COA OPI1808009",29362900 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18070244,29362400 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418107,29362900 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518046,29362200 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT18050026,29362900 +What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ81209022,29362300 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18090057,29362800 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT18050026,29362900 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418107,29362900 +What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418031,29362500 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518046,29362200 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT18050026,29362900 +"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01809095",29362400 +"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418106,8107",29362900 +What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418030,29362500 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU MAKANAN) COA UT18050026,29362900 +"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518032,34",29362300 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT18050026,29362900 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI17100012,29362900 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18090045,29362100 +What is the hs code for VITAMIN D3 1.0 MIU/G(BHN BAKU MAKANAN) COA UT18100084,29362900 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT18070024,32041900 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UE01805042,32041900 +What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18100299,29362800 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT18090333,29362400 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1808009,29362900 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT18090059,29362800 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01803014,29362900 +"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91901218,1219",29420000 +What is the hs code for D-PANTHENOL 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01809092,29362400 +"What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA 0518110309,327",29420000 +"What is the hs code for DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01808637",29362400 +"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91902333,34,35",29420000 +"What is the hs code for PARSOL SHIELD ,20KG BOX (BHN BAKU KOSMETIK) COA 0818120259",29420000 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18100318,29362800 +"What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0021803",29362500 +"What is the hs code for STAY-C (R) 50PCT ,5KG BAG ALU (BHN BAKU KOSMETIK) COA CS18060023,24",29362700 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT18050173,29362100 +"What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0718070106",29420000 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0703190002,29420000 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613938,38249999 +What is the hs code for ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613940,39061090 +What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613935,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613944,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613925,38249999 +What is the hs code for OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613937,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613924,39061090 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614160,38249999 +What is the hs code for OPADRY 200 GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613931,38249999 +What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613927,38249999 +What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613936,32151900 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613933,38249999 +What is the hs code for OPADRY AMB PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613929,38249999 +What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613928,38249999 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613195,39061090 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613930,38249999 +What is the hs code for OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613926,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613932,38249999 +What is the hs code for BICAR PHAMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA DOC0431974,28363000 +What is the hs code for PHARMAKAOLIN B 860 (BHN BAKU KOSMETIK) COA 08.08.18,25070000 +"What is the hs code for SMALL QUATITY SURCHARGE HIRSCHAU, SAMPLE NO COMMERCIAL VALUE",25070000 +"What is the hs code for EUXYL K 100 CN 10KG KA (BHN BAKU KOSMETIK) COA 1522602,1524252",38249999 +What is the hs code for GROTANOL 3025 CN 10KG KA (BHN BAKU KOSMETIK) COA 1520131,38249999 +"What is the hs code for SENSIVA SC 50 CN 10KG KA (BHN BAKU KOSMETIK) COA 1519499,1521364",38249999 +"What is the hs code for SENSIDINE DO CN 10KG CA (BHN BAKU KOSMETIK) COA 1518078,1520056,1524582",38249999 +What is the hs code for EUXYL K 900 CN 10KG KA (BHN BAKU KOSMETIK) COA 1522345,38249999 +"What is the hs code for EUXYL PE 9010 CN 200KG FA (BHN BAKU KOSMETIK) COA 1521722,1523259,1524098",38249999 +What is the hs code for CORTISONE ACETATE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1800951018,29372900 +What is the hs code for GRANULAC (R) 200 H (BHN BAKU OBAT) COA. L105715019,17021100 +What is the hs code for ALLOPURINOL (BHN BAKU OBAT) COA 19004AY3ARII,29335990 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA. RBA0701900,28363000 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA MTP06819,28363000 +What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-190303,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK)COA EG543-190303,38249999 +"What is the hs code for SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA 19031410,19022610, 19030412",38249999 +What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA. 20190227,17023010 +What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA R901000,29419000 +What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA R703600,29419000 +What is the hs code for CEFTIZOXIME SODIUM (BHN BAKU OBAT) COA S600100,29419000 +What is the hs code for ROSUVASTATIN CALCIUM (BHN BAKU OBAT) COA RVM0360219,29359000 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101850719,17021100 +What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104310719,17021100 +"What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA KLJ, WCK",38249999 +What is the hs code for PROMOIS S-CAQ (BHN BAKU KOSMETIK) COA KLE,38249999 +What is the hs code for B-CAROTENE 10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT19010001,32041900 +What is the hs code for BETATAB 20PCT S (BHN BAKU MAKANAN) COA UT18090031,32041900 +What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19020011,29362500 +What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB01017666,29362800 +"What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00518469",29362700 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18090031,32041900 +What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT18040036,29362500 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT18110039,32030010 +What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18100055,29362100 +"What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF, 1KG ALUF (BHN BAKU SUPLEMEN) COA UE01811060",32030010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN538787,35051010 +What is the hs code for PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) SAMPLE NO COMMERCIAL VALUE,38249999 +"What is the hs code for TRISODIUM CITRATE DIHYDRATE FINE GRANULAR (BHN BAKU OBAT), COA UJ846",29181400 +What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU OBAT) COA UJ907,29181400 +What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP805753,32151900 +What is the hs code for FD AND C #40/ALLURA RED AC AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP801384,32151900 +What is the hs code for FD AND C BLUE #2/BLUE CARMINE AL ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP803628,32151900 +What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP804546,32151900 +What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP805751,32151900 +What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP798864,32151900 +What is the hs code for FD AND C BLUE #1/BRILLIANT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP805964,32151900 +What is the hs code for LINEN OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA LIU181106-H,38249999 +What is the hs code for WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK)COA EG138-181202,38249999 +What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIV181202-BGBIO,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS190201,38249999 +What is the hs code for WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK) COA EG138-181202,38249999 +What is the hs code for WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK) COA EG138-181202,38249999 +What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM180901-PGH,38249999 +What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA VIV180202-BGBIO,38249999 +What is the hs code for LICORICE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA GLG171001-BGBIO,38249999 +What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) COA,38249999 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO180601,38249999 +What is the hs code for GINSENG COSMELENE (BHN BAKU OBAT) COA PAG-CO190101,38249999 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU OBAT) COA CEA-CO190302,38249999 +What is the hs code for METHOCEL E6 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011I34L01,39123900 +What is the hs code for METHOCEL E4M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180H8M012,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I6Q001,39123900 +"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91903006,3007",29420000 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18100318,29362800 +What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18100299,29362800 +"What is the hs code for NIACINAMIDE PC,25KG BOX (BHN BAKU KOSMETIK) COA 0000179835",29362900 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180092,93,118",29420000 +"What is the hs code for PARSOL MAX, 25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0918090030",29420000 +What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0918090030,29420000 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519010013",29420000 +"What is the hs code for PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519010013",29420000 +"What is the hs code for PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519010013",29420000 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519010013,17",29420000 +"What is the hs code for STAY C (R) 50, 20KG BOX ALU (BHN BAKU KOSMETIK) COA CS18060005,6,10",29362700 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP19033039,40",29211900 +"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A,20KG BA (BHN BAKU MAKANAN) COA WB00219406,07",29362100 +"What is the hs code for OMEPRAZOLE PELLETS 8,5 PCT (BHN BAKU OBAT) COA OP0219C019",30039000 +What is the hs code for DEXTROMETHORPHAN HBR USP (BAHAN BAKU OBAT) COA.EUS10340,29334910 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190305,17029019 +What is the hs code for MILD TALCUM MOD1 (BHN BAKU KOSMETIK) COA 10300160,38249999 +What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 180807,29329990 +What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 182567,13021990 +What is the hs code for BIOCELLACT CHAMOMILLA BD(BHN BAKU KOSMETIK) COA 182744,13021990 +"What is the hs code for CARBAZOCHROME SODIUM SULFONATE (ORAL GRADE) BHN BAKU OBAT,COA AC81005/81121",29339990 +What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA. DOC0631921,28363000 +What is the hs code for LABRAFIL M 1944 CS (BHN BAKU OBAT) COA 173973,28399000 +What is the hs code for TEFOSE 63 BF (BAHAN BAKU OBAT) COA 173890,28399000 +What is the hs code for GELUCIRE 48/16 PELLETS (BAHAN BAKU OBAT) COA 161003,28399000 +What is the hs code for SORBITOL SOLUTION 70PCT CRYSTALLINE (BAHAN BAKU KOSMETIK) COA.9531819,29054400 +What is the hs code for GRANULAC (R) 200 H (BHN BAKU OBAT) COA. L101850719,17021100 +"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA.LDC15519T",27101990 +What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1802823436,29372900 +What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1902860518,29372900 +What is the hs code for DPG FG (BHN BAKU KOSMETIK) COA C02361DP,29094900 +What is the hs code for PG USP (BHN BAKU KOSMETIK) COA C02201UG,29053200 +What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK COA B270119,39123900 +"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB030219",39123900 +What is the hs code for MAGNOLIA BARK EXTRACT (BHN BAKU KOSMETIK) COA MBE05-181001/47675,38249999 +"What is the hs code for EDIBLE BOVINE GELATINE (BAHAN BAKU OBAT ), COA 5001902640",35030049 +What is the hs code for EDIBLE BOVINE GELATINE (BHN BAKU OBAT) COA 5001902640,35030049 +What is the hs code for VITAMIN A ACETATE 1.5 MIU/.G (BHN BAKU SUPLEMEN) COA UT18120089,29362100 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT19030843,29362100 +What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED(BHN BAKU OBAT UTK PAKAN TERNAK) COA. MTP01019,28363000 +What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED(BHN BAKU OBAT UTK PAKAN TERNAK) COA. MTP01019,28363000 +What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01903219,29362700 +"What is the hs code for GENIVIDA (TM) TG ,1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT17080005",29329990 +"What is the hs code for GENIVIDA (TM) TG, 1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT17080005",29329990 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18090031,32041900 +"What is the hs code for COATED ASCORBIC ACID ,TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01902093",29362700 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00218197,29362800 +What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110014,29420000 +What is the hs code for VITAMIN A PALMITATE /M 1.0 M.I.U/G (BHN BAKU SUPLEMEN) COA UT19030022,29362100 +What is the hs code for VITAMIN A PALMITATE/M 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT19030022,29362100 +What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ80407003,29420000 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA651933,38249999 +What is the hs code for OPADRY SGR RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA651859,38249999 +What is the hs code for OPADRY ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA651934,38249999 +What is the hs code for PRAYPHOS DKP FG (BHN BAKU KOSMETIK) COA 1900731,29420000 +What is the hs code for SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA 19031410,38249999 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190317,17029019 +"What is the hs code for KF-6016 (BHN BAKU KOSMETIK) , COA 901061, SAMPLE NO COMMERCIAL VALUE",38249999 +What is the hs code for E.C.O TRACE FE 20PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC290319,29224900 +What is the hs code for TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA 90118,38247900 +What is the hs code for OILESS CITY TM (BHN BAKU KOSMETIK) COA 71104,38247900 +What is the hs code for BICAR FOOD 27/50 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA MTP06219,28363000 +What is the hs code for BICAR FOOD 0/50 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP03519,28363000 +What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA MTP04219,28363000 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614373,38249999 +What is the hs code for ACRYL-EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614359,39061090 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613091,39061090 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614369,38249999 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614368,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613932,38249999 +What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614358,39061090 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614371,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614370,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614366,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614362,38249999 +What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614364,38249999 +What is the hs code for OPADRY 200 PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614356,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614363,38249999 +What is the hs code for OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614360,38249999 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614361,38249999 +What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614212,38249999 +What is the hs code for OPADRY AMB MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614372,38249999 +What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614355,39061090 +What is the hs code for ACRYL EZE PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614357,39061090 +What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614367,32151900 +What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614367,32151900 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614469,38249999 +What is the hs code for E.C.O TRACE ZN 25PCT (BHN BAKU UTK PAKAN TERNAK) COA BC040319,29224900 +What is the hs code for E.C.O.TRACE MN 20PCT(BHN BAKU OBAT UTK PAKAN TERNAK) COA BC060319,29224900 +What is the hs code for E.C.O TRACE FE 20PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC070319,29224900 +What is the hs code for LIQUIPHOS STRONG (BHN BAKU UTK PAKAN TERNAK) COA 040319-187,23099090 +What is the hs code for LIQUIPHOS STRONG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 040319-187,23099090 +What is the hs code for BILBERRY (V.MYRTILLUS) ET EX36PCT (BHN BAKU SUPLEMEN) COA 32860/M2,13021950 +"What is the hs code for PYRAZINAMIDE EP/USP (BHN BAKU OBAT) COA WPOZ 213 B19,WHOPZ 214 B19...",29339990 +What is the hs code for LEVETIRACETAM (USP) (BHN BAKU OBAT) COA CLEU19004,29337900 +What is the hs code for DIACEREIN EP (BHN BAKU OBAT) COA DCE/40141118,29189900 +"What is the hs code for NOREPINEPHRINE BITARTRATE ,BHN BAKU OBAT, COA 480104",29379010 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614638,38249999 +What is the hs code for OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614722,38249999 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190317,17029019 +"What is the hs code for NONIVAMIDE (SYNTHETIC CAPSAICIN)BHN BAKU KOSMETIK, COA.20190213",29241990 +"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU SUPLEMEN) COA XH20190102,201",29362800 +What is the hs code for PIROXICAM (BHN BAKU OBAT) COA PRX2019008M,29349990 +What is the hs code for DIBENCOZIDE (COBAMAMIDE) (BHN BAKU OBAT) COA COBA-20011901,29362600 +"What is the hs code for STAY-C (R) 50, 20KG BOX ALU (BHN BAKU KOSMETIK) COA UE01901003",29362700 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519010017,19",29420000 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519010019",29420000 +"What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA 0518110327",29420000 +"What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01807810, 9813",29362400 +"What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA 0518110327",29420000 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT19010004,29362800 +"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01809092",29362400 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0003800,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0004400,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0004500,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0004600,13021990 +What is the hs code for GINSENG DRY EXT 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B00189000,13021990 +"What is the hs code for VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPB1901079",29362700 +"What is the hs code for VC SODIUM ASCORBATE REGULAR, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPN1903140,3142",29362700 +What is the hs code for CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA 1GC01CLB ZP48D 250MT,38249999 +What is the hs code for VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 121809477,28365010 +What is the hs code for PERMETHRIN PHARMA GRADE BHN BAKU OBAT COA PE0022-S77,29163990 +What is the hs code for ATZNATRON 98/100 CAUSTIC SODA (NATRIUM HYDROXIDE)(BHN BAKU KOSMETIK) COA 937654,28151100 +"What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) , COA 903019",38249999 +"What is the hs code for NIACINAMIDE USP (BHN BAKU KOSMETIK) COA 18-19/NMD(P)/U/238 S/D 242,248",29362900 +What is the hs code for VITAMIN A PALMITATE/M 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19030022,29362100 +What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT19030022,29362100 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01812478,903214,903219",29362700 +"What is the hs code for VC CALCIUM ASCORBATE, 25KG BAL (BHN BAKU SUPLEMEN) COA HPT1903002",29362700 +What is the hs code for OPADRY II TAN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH686840,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614637,38249999 +What is the hs code for OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614360,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614641,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614642,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614640,38249999 +What is the hs code for OPADRY AMB II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614636,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613227,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614634,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614632,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613973,38249999 +What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614633,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614638,38249999 +What is the hs code for OPADRY 200 PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614639,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614363,38249999 +What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB130319,39123900 +"What is the hs code for LINCOMYCIN HCL EP (BHN BAKU OBAT) COA 1812001,2014",29419000 +What is the hs code for OPALUX RED BHN BAKU OBAT UTK PEWARNA TABLET COA DT686814,32151900 +What is the hs code for OPALUX RED BHN BAKU OBAT UTK PEWARNA TABLET COA DT686815,32151900 +What is the hs code for OPALUX MAROON BHN BAKU OBAT UTK PEWARNA TABLET COA DT686816,32151900 +What is the hs code for OPALUX TAN BHN BAKU OBAT UTK PEWARNA TABLET COA DT686817,32151900 +What is the hs code for CONFECTIONERY INK BLUE BHN BAKU OBAT UTK PEWARNA TABLET COA DT686821,32151900 +What is the hs code for METHOCEL E15 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011I9EL02,39123900 +What is the hs code for METHOCEL E6 PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011IAKL02,39123900 +What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I6G002,39123900 +What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I18003,39123900 +What is the hs code for METHOCEL K100M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180HBK003,39123900 +What is the hs code for METHOCEL K100 PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I68003,39123900 +What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180HC5002,39123900 +What is the hs code for METHOCEL K15M PREMIUM CR ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I8H001,39123900 +"What is the hs code for EFFERSODA (R) 12 BHN BAKU OBAT, COA 121809624",28363000 +"What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND190204, 203",29372200 +"What is the hs code for METAMIZOLE SODIUM (BHN BAKU OBAT) COA 1902119,127,144",29331900 +What is the hs code for ACETYL SALICYLIC ACID (BHN BAKU OBAT) COA 19419,29182200 +What is the hs code for IBUPROFEN IBU003EP 25KG (BHN BAKU OBAT) COA 19037232,29163990 +"What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA.19100239,244",29221990 +What is the hs code for DEXTROSE ANHYDROUS (BHN BAKU OBAT UTK PAKAN TERNAK) COA XWA190322-1,17023010 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190329,17029019 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0319030311",29420000 +"What is the hs code for PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0319030311 S/D 314",29420000 +"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000179838,39,80204",29362900 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0319030314,315",29420000 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT180501731,29362100 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ80313082,29362500 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519010032",29420000 +"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01806052,54, 55",32041900 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ81202577,29362200 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UF01806055,32041900 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18090045,29362100 +"What is the hs code for ASCORBIC ACID,25KG BOX ALU (BHN BAKU MAKANAN) COA TL01808288",29362700 +What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01808104,29362900 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ81103293,29362200 +"What is the hs code for ASCORBIC ACID, 25KG BOX ALU (BHN BAKU MAKANAN) COA TL01808288",29362700 +"What is the hs code for ASCORBIC ACID ,25KG BOX ALU (BHN BAKU MAKANAN) COA TL01808288",29362700 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01808103,29362900 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE,25KG BOX (BHN BAKU SUPLEMEN) COA TL01811158",29362700 +What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01808103,29362900 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01808103,29362900 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ80513137,29362500 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19010006,29362900 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ80513137,29362500 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT18040136,29362400 +What is the hs code for RIBOFLAVIN 5' PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1810142,29362300 +"What is the hs code for RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB180819,141,142",29362300 +What is the hs code for RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1810142,29362300 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT18040136,29362400 +What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ80909018,29362300 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518034,29362300 +"What is the hs code for ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01808288",29362700 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01808103,29362900 +What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418031,29362500 +What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20170401,29362800 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT(BHN BAKU SUPLEMEN) COA WB00418110,29362900 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ81210261,29362300 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01806055,32041900 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ81202578,29362200 +What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ80909018,29362300 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518047,29362200 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ81202578,29362200 +What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20170401,29362800 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518047,29362200 +"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ81202577,2578",29362200 +What is the hs code for DL-ALPHA TOCOPHEROL (BHN BAKU MAKANAN) COA UT19010004,29362800 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18100077,29362800 +"What is the hs code for CALCIUM D-PANTOTHENATE,25KG BOX (BHN BAKU SUPLEMEN) COA TL01901626",29362400 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18100077,29362800 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18100077,29362800 +"What is the hs code for CALCIUM D-PANTOTHENATE,25KG BOX (BHN BAKU MAKANAN) COA TL01901626",29362400 +What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU MAKANAN)COA UT18100299,29362800 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT18100077,29362800 +What is the hs code for VITAMIN D3 B1.0 MIU/G (BHN BAKU MAKANAN) COA UT18100085,29362900 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1808009,29362900 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01811335,29362800 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT18100085,29362900 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT1810056,32041900 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19010004,29362800 +What is the hs code for VITAMIN PREMIX 103047-D (BHN BAKU MAKANAN) COA XW91903090,21069059 +"What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU MAKANAN) COA TL01901626",29362400 +What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18100299,29362800 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18110024,29362600 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT18100085,29362900 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01811335,29362800 +"What is the hs code for CALCIUM ASCORBATE,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00818016",29362700 +"What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01901626",29362400 +What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18100299,29362800 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18100077,29362800 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1808009,29362900 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18110024,29362600 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT18100085,29362900 +"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01805044,45",32041900 +What is the hs code for PX 103070 C3 (BHN BAKU MAKANAN) COA XW91903197,21069059 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT18100085,29362900 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1808009,29362900 +What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91903089,21069059 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT18080044,29362900 +What is the hs code for B-CAROTENE 1PCT CWS/M (BHN BAKU MAKANAN) COA UT18050022,32041900 +"What is the hs code for D-PANTHENOL,20KG PAIL PE (BHN BAKU MAKANAN), COA TL01811113",29362400 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80513137,29362500 +What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829016718J,38249999 +What is the hs code for EXO T (BHN BAKU KOSMETIK) COA 715016736J,38249999 +What is the hs code for HELIOGEL TM (BHN BAKU KOSMETIK) COA 1830001,38249999 +What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5589518,38249999 +"What is the hs code for PROGELINE (BHN BAKU KOSMETIK), COA 820056838J",38249999 +What is the hs code for ECOSLIM TM (BHN BAKU KOSMETIK) COA 1831402,38249999 +What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829016884J,38249999 +What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830016852J,38249999 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1835201,38249999 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1835201,38249999 +What is the hs code for MELANOSTATINE 5BG (50PPM) (BHN BAKU KOSMETIK) COA 817046674J,38249999 +What is the hs code for TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784027203K,38249999 +What is the hs code for IONOL CP (BHN BAKU KOSMETIK) COA 01162218,29420000 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614931,38249999 +What is the hs code for ULTALUX FF25 KG BAG (BHN BAKU KOSMETIK) COA D0418Y0131,38249999 +"What is the hs code for RESTYLANE SB VITALLGHLIDO LIDOCAINE 1ML , COA 16486-1, 16547-1",33049990 +"What is the hs code for RESTYLANE SB VITAL LIGHT LIDOCAINE 1 ML ,COA 16683-1",33049990 +"What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML, COA 16619-1",33049990 +"What is the hs code for RESTYLANE VOLYME 1 ML ,COA 16278-1",33049990 +"What is the hs code for RESTYLANE REFYNE 1 ML , COA 16524-1",33049990 +"What is the hs code for RESTYLANE DEFYNE 1 ML , COA 16684-1",33049990 +"What is the hs code for RESTYLANE KYSSE 1 ML , COA 16685-1",33049990 +"What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT),COA 18E4503",28399000 +What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 19E0803,28399000 +What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA 173371,28399000 +"What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) , COA 903119",38249999 +"What is the hs code for KF-6038 (16KG) BHN BAKU KOSMETIK, COA 902211",38249999 +"What is the hs code for KF-6017 (17KG) BHN BAKU KOSMETIK, COA 903119",38249999 +"What is the hs code for KF-6038 (16KG) BHN BAKU KOSMETIK , COA 902211",38249999 +"What is the hs code for DIMENHYDRINATE BHN BAKU OBAT COA.19100230., 19100232",29395900 +What is the hs code for EPERISONE HYDROCHLORIDE SYN-TECH (BHN BAKU OBAT) COA.E10-19006,29333990 +"What is the hs code for 1,3 BUTYLENE GLYCOL, COSMETIC QUALITY(BHN BAKU KOSMETIK) COA P0619109DC",29053200 +"What is the hs code for MIRANOL ULTRA C-32 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP901032R,BP904201R",34029099 +What is the hs code for DROPPER DMACA INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01B042M,38210010 +What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9008852,38210010 +What is the hs code for BOTTLE TERGITOL 4 XLT4 SUPPLEMENT 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 5LBX5682,38210010 +What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01B019M,38210010 +"What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8165900",38210010 +"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH B01B033M",38210010 +What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8331811,38210010 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8269714,38210010 +What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7312565,38210010 +What is the hs code for PLATE TSA W LP IC-XT PACK 90MM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9052547,38210010 +What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8338681,38210010 +"What is the hs code for BOTTLE BIGGY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 8079955",38210010 +What is the hs code for BOTTLE LAURYL SULFATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8309819,38210010 +What is the hs code for BOTTLE PHOSPHATE BUFFER PH 7.2 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 8317793,38210010 +What is the hs code for BOTTLE TRYPTOSE SOY AGAR MOD 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7254544,38210010 +What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8271706,38210010 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B03B009M,38210010 +What is the hs code for BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8337871,38210010 +"What is the hs code for BOTTLE PHENYLALANINE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7255671",38210010 +What is the hs code for BOTTLE M ENDO BROTH MF 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8053859,38210010 +What is the hs code for BOTTLE M TGE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8282888,38210010 +What is the hs code for BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8171598,38210010 +What is the hs code for BOTTLE BILE ESCULIN AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8171850,38210010 +What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9070997,38210010 +What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8337538,38210010 +What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8344948,38210010 +What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1820710,38210010 +What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 182125214,38210010 +What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH182175616,38210010 +What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B04B05BM,38210010 +What is the hs code for BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9002638,38210010 +"What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8337978",38210010 +What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8026869,38210010 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219987,38210010 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8170732,38210010 +What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8227610,38210010 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8297965,38210010 +What is the hs code for BOTTLE REPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206906,38210010 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8291939,38210010 +What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8317859,38210010 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8310579,38210010 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9002615,38210010 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8312966,38210010 +What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8344948,38210010 +What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8337538,38210010 +What is the hs code for BOTTLE YEAST EXTRACT 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 83449484,38210010 +What is the hs code for BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9045711,38210010 +What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9070997,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8291589,38210010 +What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 90709971,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8129691,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8291589,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206836,38210010 +What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8337978,38210010 +What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8305685,38210010 +What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233944,38210010 +What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8297883,38210010 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8299812,38210010 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219987,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8312962,38210010 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8299808,38210010 +What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 81296829,38210010 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8241699,38210010 +What is the hs code for BOTTLE TRYPTONE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8141903,38210010 +What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141903,38210010 +What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9070997,38210010 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219987,38210010 +What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8141903,38210010 +What is the hs code for BOTTLE BEEF EXTRACT POWDER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8233778,38210010 +What is the hs code for BOTTLE DUICITOL 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8337666,38210010 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183841,38210010 +What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9070997,38210010 +What is the hs code for KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9002522,38210010 +What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8227600,38210010 +What is the hs code for BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9002638,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8129691,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8291589,38210010 +What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8162545,38210010 +What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8337978,38210010 +What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8233599,38210010 +What is the hs code for BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9030676,38210010 +What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8228997,38210010 +"What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH8337538,9028867",38210010 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297702,38210010 +What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8026869,38210010 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8255630,38210010 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8183841,38210010 +What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8289953,38210010 +What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9010685,38210010 +What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 8233944,38210010 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7349871,38210010 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8299812,38210010 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8219987,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8312962,38210010 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8241935,38210010 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8170732,38210010 +What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8129682,38210010 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297965,38210010 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8291939,38210010 +What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8317859,38210010 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297842,38210010 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8310579,38210010 +What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8291800,38210010 +"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9002615,9014523",38210010 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9002631,38210010 +What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 8141903,38210010 +What is the hs code for BOTTLE TAT BROTH BASE 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 8355570,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8256652,38210010 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8312966,38210010 +What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9002997,38210010 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8282931,38210010 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8271802,38210010 +What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8344948,38210010 +What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) COA 82899533,38210010 +What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 73125656,38210010 +What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8256826,38210010 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8255932,38210010 +What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9030984,38210010 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKIROORGANISME) BATCH 9039632,38210010 +What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9038584,38210010 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 82559329,38210010 +What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8227610,38210010 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8206906,38210010 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9045804,38210010 +What is the hs code for BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9030688,38210010 +What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 82899535,38210010 +What is the hs code for PLATE TSA IC-XT 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9037556,38210010 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8353659,38210010 +What is the hs code for BD ACCURI C6 PLUS SYSTEM (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9085649,38210010 +What is the hs code for DELL OPTIPLEX WORKSTATION BUNDLE (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH 8165558,38210010 +"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8347637",38210010 +"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8348971",38210010 +What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255580,38210010 +What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 88219521,38210010 +What is the hs code for VIAL SAL O ANTIS POLY GRUP GRP A-I &VI LYO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8334767,38210010 +What is the hs code for BOTTLE TRYPTICASE SOY AG L& P80 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 823951152547,38210010 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8348971,38210010 +"What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 8291707",38210010 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8334767,38210010 +What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 8299576,38210010 +What is the hs code for CD34 PE 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8348875,38210010 +What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9050681,38210010 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8277815,38210010 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8277815,38210010 +"What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9016637",38210010 +What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9070562,38210010 +What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8268723,38210010 +What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9052934,38210010 +"What is the hs code for ANTI HLA DR FITC L243 /(G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO )BATCH 8332704,9036873",38210010 +What is the hs code for ANTI MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9008965,38210010 +What is the hs code for CD19 PE-CY7 SJ25C1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9017531538,38210010 +"What is the hs code for CD3 APC H7 SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9042932,9077593",38210010 +What is the hs code for CD34 PERCP CY5.5 8G12 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9010980,38210010 +What is the hs code for CD7 APC (M-T701) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9046766,38210010 +What is the hs code for CD79A PE HM47 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9065915,38210010 +What is the hs code for CD3 APC SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9016646,38210010 +What is the hs code for CD34 PR-CY7.8G12 Y7 100 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9084561,38210010 +"What is the hs code for CD10 PE HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9065915",38210010 +What is the hs code for CD45 PERCP 2D1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8353503,38210010 +What is the hs code for CD3 FITC SK7 50 TESTS IVD(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9037512,38210010 +What is the hs code for CD14 PE MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9011874,38210010 +What is the hs code for HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 822879,38210010 +What is the hs code for HU CD3 HORIZON V450 UCHT1 120TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9002639,38210010 +What is the hs code for HU CD45 HORIZON V500 HI30 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9002640,38210010 +What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9065956,38210010 +What is the hs code for HU CD3 BV421 UCHT1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8316512,38210010 +What is the hs code for HU CD19 BV510 SJ25C1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8187645,38210010 +What is the hs code for ANNEXIN V FITC APOP DTEC KIT I 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9057536,38210010 +What is the hs code for PLT SDA W LP AND CMP IC-XT PK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9045812,38210010 +What is the hs code for PLT SDA W LP AND CMP IC-XT PK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9045812,38210010 +What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9017553,38210010 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8348971,38210010 +What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233839,38210010 +What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8312963,38210010 +What is the hs code for VIAL NOVOBIOCIN SUPPLEMENT 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9032736,38210010 +What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9059607,38210010 +What is the hs code for HU CD105 FITC 266 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7354806,38210010 +What is the hs code for CS&T RUO BEADS 50 TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8320799,38210010 +What is the hs code for ULTALUX FF25 KG BAG (BHN BAKU KOSMETIK) COA D0418Y0131,38249999 +What is the hs code for OLIVE POLYPHENOLIC DRY EXTRACT (BHN BAKU SUPLEMEN) COA 19058,13021950 +What is the hs code for GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 19034,38249999 +What is the hs code for LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 19076,38249999 +What is the hs code for GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 19034,38249999 +What is the hs code for AMLODIPINE BESILATE BO/EP (BHN BAKU OBAT) COA AMB/050/03/19 S/D AMB/059/03/19,29333990 +"What is the hs code for CLOTRIMAZOLE MICRONIZED (BHN BAKU OBAT ) COA 201607040399,201703240111...",29332900 +What is the hs code for LIPOID S 20 (BHN BAKU OBAT) COA. 572000-2190125/025-048 (24),29232010 +What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 182879,13021990 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18090031,32041900 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S -TG (BHN BAKU SUPLEMEN) COA UT18110040,32030010 +What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110014,29420000 +What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19020011,29362500 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18100055,29362100 +What is the hs code for VIT A PALM 1.0 M + VIT D3 100'000 (BHN BAKU SUPLEMEN) COA UT19030061,29362100 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01903219",29362700 +"What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX ALU (BHN BAKU SUPLEMEN) COA WB00219485",29362700 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01903219",29362700 +What is the hs code for GRANULAC (R) 200 H (BHN BAKU OBAT) COA. L101851019,17021100 +What is the hs code for SORBITOL SOLUTION 70PCT CRYSTALLINE (BAHAN BAKU KOSMETIK) COA.0021920,29054400 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19010008,29362800 +What is the hs code for DL-A-TOCOPHERYL (BHN BAKU MAKANAN) COA UT19010008,29362800 +"What is the hs code for VITAMIN PREMIX, TYPE MM81 (105PCT) BHN BAKU MAKANAN, COA XW91903285",21069059 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT18100086,29362900 +What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18100299,29362800 +"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00569207,212,213",29420000 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT19020838",29362100 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0703190002,29420000 +"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 1904EF7110",29224900 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01903219",29362700 +"What is the hs code for COATED ASCORBIC ACID ,TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01903312",29362700 +"What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF,1KG ALUF (BHN BAKU SUPLEMEN) COA UE01811060",32030010 +What is the hs code for MEG 3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19020004,29362500 +"What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00219485",29362700 +What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ90107002,29420000 +What is the hs code for ASTAXANTHIN OIL 10PCT (BHN BAKU OBAT) COA.103231,32030010 +"What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT) COA B334622, B334623, B334624",29419000 +What is the hs code for CITRIC ACID MONOHYDRATE BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 1AX1904014,29181400 +What is the hs code for ANTISHINE WASH 1 (BHN BAKU KOSMETIK) COA 10300123,38249999 +What is the hs code for ANTI SHINE WASH (BHN BAKU KOSMETIK) COA 10300074,38249999 +What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB100419,39123900 +"What is the hs code for OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET), COA WP811276",32151900 +What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20180903,29362800 +What is the hs code for VIT A PALM 1.0 M+VIT D3 100'000 (BHN BAKU MAKANAN) COA UT19030061,29362100 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT19040853,854",29362100 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615095,38249999 +What is the hs code for OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614856,38249999 +What is the hs code for OPADRY BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615084,38249999 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615080,38249999 +What is the hs code for OPADRY EZ CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615075,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613312,38249999 +What is the hs code for OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615020,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615119,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615119,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615256,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615256,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615256,38249999 +What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615254,39061090 +What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615254,39061090 +What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615081,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615082,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613973,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615076,38249999 +What is the hs code for OPADRY II YELLOW(BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615087,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615074,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615077,38249999 +What is the hs code for OPADRY II GRAY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615086,38249999 +What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615085,38249999 +What is the hs code for OPADRY BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615084,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615306,38249999 +What is the hs code for OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614856,38249999 +What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615254,39061090 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615267,38249999 +What is the hs code for OPADRY AMB II PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615266,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613312,38249999 +What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615085,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614771,39061090 +What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615263,38249999 +What is the hs code for ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615262,39061090 +What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614304,38249999 +What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615265,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615382,38249999 +What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BJ01209,29349990 +"What is the hs code for DIMENHYDRINATE BHN BAKU OBAT COA.19100230., 19100232",29395900 +What is the hs code for DEXTROSE ANHYDROUS (BHN BAKU OBAT UTK PAKAN TERNAK) COA XWA190322-1,17023010 +What is the hs code for CLOZAPINE (BHN BAKU OBAT) COA 780910,29335990 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539289,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539317,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539331,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539311,35051010 +What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK)COA MUP-012239,38249999 +What is the hs code for SK BIOLAND BIO-SIP (BHN BAKU KOSMETIK)COA STOD-021549,38249999 +What is the hs code for SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-012229,38249999 +What is the hs code for SK BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK) COA NMSP-D-011018,38249999 +What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-012639,38249999 +What is the hs code for SK BIOLAND SNAIL SECREATION FILTRATE (BHN BAKU KOSMETIK)COA SAFW-0502187,38249999 +What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-022208,38249999 +"What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-091808,HMVBD-101228",38249999 +What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA MCP-N-020249,38249999 +What is the hs code for SK BIOLAND YUZU EXTRACT (BHN BAKU KOSMETIK) COA CJUBD-031139,38249999 +What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-922718,38249999 +What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-012239,38249999 +What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-062119,38249999 +What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA. 20190417,17023010 +"What is the hs code for PANTOPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT,COA APSS18004",29333990 +What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA.M113200,29339990 +What is the hs code for GRANULAC (R) 200H (BHN BAKU KOSMETIK)COA L105711219,17021100 +What is the hs code for CAPSULAC (R) 60 (BHN BAKU OBAT) COA. L100414818,17021100 +What is the hs code for CELLACTOSE (R) 80 (BHN BAKU OBAT) COA L100460119,17021100 +What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103860919,17021100 +What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104311019,17021100 +What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105711219,17021100 +What is the hs code for SK BIOLAND YUZU EXTRACT (BHN BAKU KOSMETIK)COA CJUBD-031139,38249999 +What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-006-V,38249999 +What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001520830,29420000 +"What is the hs code for STAY-C (R) 50,5KG BAG ALU (BHN BAKU KOSMETIK) COA CSI8060025",29420000 +"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219030047",29420000 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01811116,TL01812130",29362400 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519020058",29420000 +What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91904018 S/D 22,29420000 +"What is the hs code for BEAUPLEX (TM) VH,5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF18316007",29420000 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18100332,29362800 +"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000180204",29362900 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180118,119,120",29420000 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT19010008,29362800 +"What is the hs code for STAY-C (R) 50, 5KG BAG ALU (BHN BAKU KOSMETIK) COA CS18060025,26",29362700 +What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001520830,29420000 +"What is the hs code for PARSOL MCX ,25KG PC (BHN BAKU KOSMETIK) COA 0518110346",29420000 +What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20170401,29362800 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT18090175",29362100 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT18090175",29362100 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01803014,29362100 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT18090175,29362100 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11901013,29362900 +What is the hs code for B-CAROTENE 1PCT CWS/M (BHN BAKU MAKANAN) COA UT18050023,32041900 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18070244,29362400 +What is the hs code for ONDASENTRON HCL USP (BHN BAKU OBAT) COA 18OS002,29332900 +What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA.MLAH0160219,29341000 +What is the hs code for TRIAMCINOLONE ACETONIDE MICRONIZED (BHN BAKU OBAT) COA NZ0772M,29372200 +What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NZ0785M,29372200 +What is the hs code for KETOROLAC TROMETHAMOL/TROMETHAMINE (BHN BAKU OBAT) COA. 19100233,29339990 +What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK)COA 7766006,38249999 +"What is the hs code for ACRYLPOL 980 (20KG) BAHAN BAKU KOSMETIK, COA 11518096,8111,9009",39069099 +What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB130319,39123900 +"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG080419",39123900 +What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M 31.0PCT (BHN BAKU OBAT) COA 101929004,28161000 +What is the hs code for THIOGLYCOLIC ACID 99PCT COSMETIC GRADE (BHN BAKU KOSMETIK) COA.0000066826,29309090 +"What is the hs code for AMMONIUM THIOGLYCOLATE 71PCT(60PCT TGA) BHN BAKU KOSMETIK, COA.0000066827",29309090 +"What is the hs code for MONOETHANOLAMINE THIOGLYCOLATE 83PCT (50PCT TGA) BHN BAKU KOSMETIK, COA 0000066828",29221100 +"What is the hs code for AMMONIUM THIOGLYCOLATE 71PCT (60PCT TGA) B.BAKU KOSMETIK,COA 0000066829, SAMPLE NO COMM VALUE",29309090 +"What is the hs code for DIAMMONIUM DITHIODIGLYCOLATE 48PCT... (B. BAKU KOSMETIK), COA 0000066830,SAMPLE NO COMM VALUE",29309090 +"What is the hs code for MONOETHANOLAMINE THIOGLYCOLATE 83PCT ...(B. BAKU KOSMETIK), COA 0000066831,SAMPLE NO COMM VALUE",29221100 +"What is the hs code for POTASSIUM THIOGLYCOLATE 43PCT (30PCT TGA)B. BAKU KOSMETIK, COA 0000066832,SAMPLE NO COMM VALUE",29309090 +"What is the hs code for THIOGLYCOLIC ACID 99PCT PURE, B BAKU KOSMETIK, COA 0000066833, SAMPLE NO COMM VALUE",29309090 +"What is the hs code for THIOGLYCOLIC ACID 80PCT, COSMETIC GRADE (BHN BAKU KOSMETIK) COA 0000066834,SAMPLE NO COMM VALUE",29309090 +"What is the hs code for RESTYLANE SUBQ 2ML D16 , COA 16563-1",33049990 +"What is the hs code for RESTYLANE SKINB VITLIDO 1 MLD16 ,COA 16547-1",33049990 +"What is the hs code for REST SKINB VITALLGHLIDO 1MLD16, COA 16683-1",33049990 +"What is the hs code for RESTYLANE LYFT LIDOCAINE 1 ML ,COA 16934-1",33049990 +"What is the hs code for RESTYLANE VOLYME 1 ML , COA 16679-1",33049990 +"What is the hs code for RESTYLANE KYSSE 1 ML , COA 16724-1",33049990 +What is the hs code for INCA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK)COA II190202-AI-D-BIO,38249999 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO190302,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-190303,38249999 +What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-190202-GS,38249999 +What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-180803-D-BIO,38249999 +What is the hs code for IPRATROPIUM BROMIDE (BHN BAKU OBAT) COA 1850002618,29397900 +"What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE A(BHN BAKU OBAT) COA. M530871,866.907 S/D 909",29411019 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP19033157,158",29211900 +What is the hs code for SILYMARIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 19B0002800,38249999 +What is the hs code for SILYBIN/ PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 19B0033500,38249999 +What is the hs code for THE MATCHA I P001062 (BHN BAKU OBAT) COA.0000025081,33029000 +What is the hs code for JAGUAR C 162 CARDBOARD BOX 25KG (BHN BAKU KOSMETIK) COA MJAC19091B,38249999 +What is the hs code for BETAHISTINE MESILATE EP (BHN BAKU OBAT) COA EDBHM19002,29333990 +What is the hs code for LIPOID S 67 F (BHN BAKU OBAT) COA. 576200-2180031/007-013 (7),29232010 +What is the hs code for AC019KC PHYTOVITYL C 5KG (BHN BAKU KOSMETIK) COA 0031052,38249999 +What is the hs code for AC019KC PHYTOVITYL C 5KG (BHN BAKU KOSMETIK) COA 0031052,38249999 +What is the hs code for FERROUS FUMARATE USP/EP (BHN BAKU OBAT) COA.2019/106,29171900 +What is the hs code for DRY VITAMIN A PALMITATE 1.7 MIU/G (TOCO)(BHN BAKU SUPLEMEN) COA UT19030845,29362100 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00918203,29362800 +What is the hs code for HALAL PANCREATIN (BHN BAKU OBAT) COA. 110419PAN,39139090 +What is the hs code for KANAMYCIN SULFATE (BHN BAKU OBAT UTK PAKAN TERNAK ) COA 190302,29419000 +What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 1904032,29349990 +What is the hs code for INOSITOL (BHN BAKU OBAT) COA 201902020,29061300 +What is the hs code for CITICOLINE SODIUM (BHN BAKU OBAT) COA CDP-C 20190409,29349990 +What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20190321,29309090 +What is the hs code for IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S936/18,38029090 +What is the hs code for PRO-LIPO TM NEO (BHN BAKU KOSMETIK) COA 1905401,38249999 +What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5555018,38249999 +What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5566918,38249999 +What is the hs code for ALDAVINE 5X (BHN BAKU KOSMETIK) COA 799036886J,38249999 +"What is the hs code for B-WHITE (BHN BAKU KOSMETIK), COA 829017170K",38249999 +What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829016884J,38249999 +What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769016660J,38249999 +What is the hs code for ECOGEL TM (BHN BAKU KOSMETIK) COA 1831205,38249999 +What is the hs code for EXO-T (BHN BAKU KOSMETIK) COA 715017060K,38249999 +What is the hs code for LANACHRYS 2B PF (PRESERVATIVE) (BHN BAKU KOSMETIK) COA 5567018,38249999 +What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016911J,38249999 +What is the hs code for SILIGEL TM (BHN BAKU KOSMETIK) COA 1824711,38249999 +What is the hs code for TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784027203K,38249999 +"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ81210261,262",29362300 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ81210262,29362300 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ81210263,29362300 +What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01901001,29362400 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518047,29362200 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518047,29362900 +What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18100299,29362800 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11811028,29362900 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT18100056,32041900 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT18100056,32041900 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT18070024,29362900 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11811028,29362900 +What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1810142,29362300 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18110025,29362600 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18070244,29362400 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01807309,29362900 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01807309,29362900 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0319030317,9030459,9030460",29420000 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519020058",29420000 +"What is the hs code for PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519020058,63,82",29420000 +What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP809470,39059990 +What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP809456,39059990 +What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP807299,32151900 +What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP798865,32151900 +What is the hs code for FD AND C BLUE #2/INDIGO CARMINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP804676,32151900 +What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP809459,39059990 +What is the hs code for FD AND C BLUE #1/BRILLIANT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP805968,32151900 +What is the hs code for SENSIVA SC 10 CN 10KG KA (BHN BAKU KOSMETIK) COA.1528995,38249999 +What is the hs code for EUXYL K 720 CO8 10KG KA (BHN BAKU KOSMETIK) COA 1518553,38249999 +What is the hs code for EUXYL K 720 C08 10KG KA (BHN BAKU KOSMETIK) COA 1518553,38249999 +"What is the hs code for NONIVAMIDE (SYNTHETIC CAPSAICIN)BHN BAKU KOSMETIK, COA.20190412",29241990 +What is the hs code for MEG-3 DHA INF 10 FOOD OIL (BHN BAKU MAKANAN) COA TS00011475,29362500 +"What is the hs code for VC ASCORBIC ACID CDC 97PCT, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG1812012 S/D 14",29362700 +What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT19030090,29362100 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01903219,TL01903391,TL01903452",29362700 +What is the hs code for DL-PANTHENOL 50 L (BHN BAKU MAKANAN) COA TL01902606,29362400 +What is the hs code for ETHYL PANTHENOL (BHN BAKU MAKANAN) COA TL01902803,29362400 +"What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) , COA 904024",38249999 +"What is the hs code for PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) SAMPLE NO COMMERCIAL VALUE,COA PH14130419",38249999 +What is the hs code for BOTTLE D/E NEUTRALIZING AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9091635,38210010 +"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8277815",38210010 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8277815,38210010 +What is the hs code for CD10 PE CY7 SJ25C1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9017531,38210010 +What is the hs code for BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8319508,38210010 +What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9030532,38210010 +What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9077594,38210010 +What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9070562,38210010 +What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9081573,38210010 +What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9039821,38210010 +What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9058622,38210010 +What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8268723,38210010 +What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9052934,38210010 +What is the hs code for ANTI HLA DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9036873,38210010 +"What is the hs code for CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8314885 ,9092796",38210010 +What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8358700,38210010 +What is the hs code for BD CST BEADS KIT 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 81798,38210010 +What is the hs code for ANTI MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9008965,38210010 +What is the hs code for CD19 PE CY7 SJ25C1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9017531,38210010 +What is the hs code for CD3 APC-H7 SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9077593,38210010 +What is the hs code for CD79A PE HM47 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9065915,38210010 +What is the hs code for CD10 APC HI10A 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9100635,38210010 +What is the hs code for CD11B APC D12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9080961,38210010 +What is the hs code for CD20 FITC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9065589,38210010 +What is the hs code for CD20 V500 C RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9050717,38210010 +What is the hs code for CD38 APC H7 (HB7) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9051517,38210010 +What is the hs code for CD34 PE-CY7 BG12 Y7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9084561,38210010 +What is the hs code for CD10 PE HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9065915,38210010 +What is the hs code for CD14 PE MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9098752,38210010 +What is the hs code for CD45 PERCP 2D1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8353503,38210010 +What is the hs code for CD3 FITC SK7 50 TESTS IVD (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 9037512,38210010 +What is the hs code for FASTIMMUNE CD55/CD69/CD45 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9087932,38210010 +What is the hs code for ANTI LAMBDA FITC 1-155-2 50TST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9042848,38210010 +What is the hs code for HU NESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9065956,38210010 +What is the hs code for HU CD64 APC H7 10.1 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9039654,38210010 +What is the hs code for HU CD36 HORIZON V450 CD38 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8337814,38210010 +What is the hs code for HU CD7 APC M-T701 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8319695,38210010 +What is the hs code for HU CD3 BV421 UCHT1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8316512,38210010 +What is the hs code for HU CD19 BV510 SJ25C1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8187645,38210010 +What is the hs code for HU CD14 BV421 MPHIP9 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8236752,38210010 +What is the hs code for HU CD103 BV421 BER ACT8 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8250690,38210010 +What is the hs code for HU CD31 FITC WM59 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8212882,38210010 +What is the hs code for KIT CRYSTAL CP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 83498971,38210010 +What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8312963,38210010 +What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8054920,38210010 +What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8222563,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8207980,38210010 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8235876,38210010 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8348971,38210010 +What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8291707,38210010 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8334767,38210010 +What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8299576,38210010 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8159661,38210010 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8277815,38210010 +What is the hs code for VIAL SHIGELLA ANTIS POLY A LYOPHLIZED (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9101807,38210010 +What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 91155632,38210010 +What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9052934,38210010 +"What is the hs code for FENTACARE 2231 EF (BHN BAKU KOSMETIK )COA ZH19B2003,0301",34029019 +What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9059721,38210010 +What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B03B064M,38210010 +What is the hs code for SODIUM SALICYLATE BP2005 (BHN BAKU KOSMETIK)COA 201811011,29182100 +"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9038584",38210010 +"What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8233599",38210010 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8297702,38210010 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7349871,38210010 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8299812,38210010 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8269714,38210010 +What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8256826,38210010 +"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 8255932",38210010 +"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8170732,8206594",38210010 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9039632,38210010 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8297965,38210010 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206906,38210010 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8311766,38210010 +What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8317859,38210010 +"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8337581",38210010 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8310579,38210010 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9014523,38210010 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9002631,38210010 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8312966,38210010 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8282931,38210010 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8271696,38210010 +What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 182182215,38210010 +What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9038584,38210010 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8297702,38210010 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255630,38210010 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183841,38210010 +What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9010685,38210010 +"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8269714",38210010 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206594,38210010 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8337581,38210010 +What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9091855,38210010 +What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8331811,38210010 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9002573,38210010 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9021613,38210010 +What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8281627,38210010 +What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7312565,38210010 +What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9025695,38210010 +What is the hs code for BOTTLE ENDO AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8031775,38210010 +What is the hs code for BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8305630,38210010 +What is the hs code for BOTTLE PHOSPHATE BUFFER PH 7.2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8317793,38210010 +What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8383686,38210010 +What is the hs code for BOTTLE MICRO INOCULUM BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8311696,38210010 +"What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7254544,9028828",38210010 +What is the hs code for BOTTLE MR VP MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8297944,38210010 +What is the hs code for BOTTLE RHAMNOSE 25G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9028840,38210010 +What is the hs code for BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9102959,38210010 +What is the hs code for BOTTLE UNIVERSAL PREENICHMENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8337869,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 5 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8197524,38210010 +What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8271706,38210010 +What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8227623,38210010 +What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8233602,38210010 +What is the hs code for BOTTLE PSEUDOMONAS AGAR F 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8282885,38210010 +What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8134767,38210010 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01B081M,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 8 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8281787,38210010 +What is the hs code for BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8337871,38210010 +What is the hs code for BOTTLE YEAST MOLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8291647,38210010 +What is the hs code for BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8316761,38210010 +What is the hs code for BOTTLE PHENYLLALANINE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 7255671,38210010 +What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141903,38210010 +What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9028852,38210010 +What is the hs code for BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8171598,38210010 +What is the hs code for BOTTLE TETRATHIONATE BR BASE HAJNA 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9084922,38210010 +What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8260535,38210010 +What is the hs code for BOTTLE INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9045711,38210010 +What is the hs code for BOTTLE MALTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9058798,38210010 +What is the hs code for BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9084697,38210010 +What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH B02B103M,38210010 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9085520,38210010 +What is the hs code for PLATE TSA IC XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9080924,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8291589,38210010 +What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9030661,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8312962,38210010 +What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9030984,38210010 +What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8227610,38210010 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9039632,38210010 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8310744,38210010 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8311766,38210010 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8337676,38210010 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 90216435,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 8256652,38210010 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8312979,38210010 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8354563,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8129691,38210010 +What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7312565,38210010 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8312979,38210010 +What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9030661,38210010 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9021617,38210010 +What is the hs code for PM KIT FACSARIA II/III (MEDIA UTK PENGEMBANGAN MIKROORGANISME),38210010 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8325637,38210010 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8325627,38210010 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8325627,38210010 +What is the hs code for BOTTLE L-ARABINOSE 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8211672,38210010 +What is the hs code for PLATE TSA W LP IC XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9052547,38210010 +What is the hs code for OILESS CITY TM (BHN BAKU KOSMETIK) COA 90415,38247900 +What is the hs code for BARCROFT TM AL HYD GEL LV13.USP (BHN BAKU OBAT) COA 101813157,28183000 +"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 10199001,9002",28161000 +"What is the hs code for URSODEOXYCHOLIC ACID (BHN BAKU OBAT) COA C043C190203,301",29181900 +What is the hs code for SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA 190410201,38249999 +What is the hs code for EPA DHA 44 37 (BHN SUPLEMEN KESEHATAN) COA EE4437-190504,29061300 +What is the hs code for PERMETHRIN (PHARMA GRADE) BHN BAKU OBAT COA 194046001,29163990 +"What is the hs code for LANOLINE ANHYDROUS (BHN BAKU KOSMETIK) COA 4930, 4931",38249999 +"What is the hs code for METAMIZOLE SODIUM REGULAR GRADE (BHN BAKU OBAT) COA 18091403 S/D 06, 1902146,147,149",29331900 +What is the hs code for METAMIZOLE SODIUM INJECTABLE GRADE (BHN BAKU OBAT) COA 18121897,29331900 +"What is the hs code for CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 201904T-CCH",38249999 +What is the hs code for PURE GREEN B AND W PIT (BHN BAKU KOSMETIK) COA 10300050,38249999 +What is the hs code for DEEP IMPACT FACE (BHN BAKU KOSMETIK) COA 10300044,38249999 +"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00569213,VE00570182",29420000 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518034,29362300 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518034,29362300 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518034,29362300 +What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01808015,29362900 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01808015,29362900 +What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01811327,29362700 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01811327",29362700 +"What is the hs code for ASCORBYL PALMITATE 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ90106006,7",29362700 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT19010008,29362800 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19010006,29362900 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT18100087,29362900 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT1810056,32041900 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ81103291,29362200 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18110025,29362600 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT18100087,29362900 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18110025,29362600 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT1800087,29362900 +What is the hs code for THIAMINE MONONITRATE ( BHN BAKU MAKANAN) COA UQ81103293,29362200 +"What is the hs code for CALCIUM D-PANTOTHENATE,25KG BOX (BHN BAKU MAKANAN) COA TL01901630",29362400 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT18040136,29362400 +What is the hs code for PREMIX VITAMIN OIL TYPE GBP (BHN BAKU MAKANAN) COA XW91904188,21069059 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18090046,29362100 +"What is the hs code for CALCIUM ASCORBATE ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00918029",29362700 +What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18110339,29362800 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19010006,29362900 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18110025,29362600 +"What is the hs code for D-A TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN), COA XH20170401",29362800 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18040130,29362400 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ80813210,3214",29362500 +"What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB01218981",29362700 +"What is the hs code for ASCORBIC ACID 90PCT GRANULATION ,25KG BOX (BHN BAKU SUPLEMEN) COA WB01218981",29362700 +What is the hs code for ASCORBIC ACID 90PCT GRANULATION 25KG BOX (BHN BAKU SUPLEMEN) COA WB01218981,29362700 +What is the hs code for ASCORBIC ACID 90PCT GRANULATION 25KG BOX (BHN BAKU SUPLEMEN) COA WB01218981,29362700 +"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN), COA UT18110025",29362600 +"What is the hs code for ETHOCEL STANDARD 14 PREMIUM (BHN BAKU OBAT UTK PEWARNA TABLET), COA D184J24021",39123900 +"What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 90212, 90214, ..",38029090 +What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA,38029090 +What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-0650319,29334910 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP19043208, 43209",29211900 +"What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND181206, ND190205, ND190207",29372200 +What is the hs code for E.C.O TRACE ZN 25PCT (BHN BAKU UTK PAKAN TERNAK) COA BC270319,29224900 +What is the hs code for E.C.O.TRACE MN 20PCT(BHN BAKU OBAT UTK PAKAN TERNAK) COA BC280319,29224900 +What is the hs code for E.C.O TRACE FE 20PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC020519,29224900 +What is the hs code for BIOKEY SELENIUM VM (BHN BAKU UTK PAKAN TERNAK) COA 210218-148,23099090 +What is the hs code for BIOTOX (BHN BAKU UTK PAKAN TERNAK) COA 220319-238,23099090 +What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 201900061,28183000 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA. RBA1071900,28363000 +What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA WBB,38249999 +What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA WCK,38249999 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA WDK,38249999 +What is the hs code for PROMOIS WK-GB (BHN BAKU KOSMETIK) COA WCN,38249999 +What is the hs code for GELOT 64 (BHN BAKU OBAT) COA 174492,28399000 +What is the hs code for GELOT 64 (BAHAN BAKU OBAT) COA 174492,28399000 +What is the hs code for TRANSCUTOL P (BAHAN BAKU OBAT) COA 173667,28399000 +What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616144,32151900 +What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT616144,32151900 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615690,38249999 +"What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453391519,4453425151",39139090 +What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 101823008,28161000 +What is the hs code for NABUMETONE USP (BAHAN BAKU OBAT) COA.H-1911018,29145000 +"What is the hs code for PERMETHRIN PHARMA GRADE BHN BAKU OBAT COA 195046005,195046006",29163990 +"What is the hs code for TRISODIUM CITRATE DIHYDRATE FINE GRANULAR (BHN BAKU OBAT), COA UJ914",29181400 +What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU OBAT UTK PAKAN TERNAK) COA 201800394,28183000 +What is the hs code for SK BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK)COA KFB-L-031428,38249999 +What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-022208,38249999 +What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK)COA 2018G1505,38249999 +"What is the hs code for SK BIOLAND YUZU EXTRACT (BHN BAKU KOSMETIK) COA CJUBD-043049, CJUBD-051359",38249999 +What is the hs code for SK BIOLAND YUZU EXTRACT (BHN BAKU KOSMETIK) COA CJUBD-051359,38249999 +What is the hs code for SK BIOLAND SERICIN 4.5 CL (BHN BAKU KOSMETIK)COA SCPKIE1301,38249999 +What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA C00591UG,29053200 +What is the hs code for DPG FG (BHN BAKU OBAT UTK PAKAN TERNAK) COA C00591DG,29094900 +What is the hs code for O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 102418/005767,38249999 +What is the hs code for EUXYL PE 9010 CN 200KG FA (BHN BAKU KOSMETIK) COA 1529634,38249999 +What is the hs code for SENSIVA SC 50 200 KG DR (BHN BAKU KOSMETIK) COA 1526841,38249999 +"What is the hs code for EUXYL PE 9010 CN 200KG FA (BHN BAKU KOSMETIK) COA 1529634,1529821",38249999 +What is the hs code for HYDROXOCOBALAMIN CHLORIDE HP (BHN BAKU SUPLEMEN KESEHATAN) COA. KR00002,29362600 +What is the hs code for SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 1907711249,29322090 +What is the hs code for VALERIAN D.H.E 0.8PCT VAL.AC (BHN BAKU SUPLEMEN) COA 10949/M1,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0018900,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0019400,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0019500,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0019600,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0003200,13021990 +What is the hs code for CENTELLA ASIATICA TRITERP/C (BHN BAKU SUPLEMEN) COA 19S0003400,38249999 +What is the hs code for CENTELLA ASIATICA /PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 32811/H1,38249999 +What is the hs code for ECHINACEA ANG DRY PURIF EX (BHN BAKU SUPLEMEN) COA 32527/M1,13021990 +What is the hs code for VACCINIUM MYRTILLUS DRY EX (BHN BAKU SUPLEMEN) COA 19S0143400,13021990 +"What is the hs code for BILBERRY (V.MYRTILLUS) ET. EX 36PCT (BHN BAKU SUPLEMEN), COA 32908/M2",13021990 +"What is the hs code for P.GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN), COA 19S0132200",13021990 +What is the hs code for VACCINIUM MYRTILLUS DRY EX (BHN BAKU SUPLEMEN) COA 19S0143400,13021990 +What is the hs code for P. GINSENG DRY EXTRACT /IDB (BHN BAKU SUPLEMEN) COA 32347/M1,13021990 +What is the hs code for CENTELLA ASIATICA TRITERP/C (BHN BAKU SUPLEMEN) COA 19S0003400,38249999 +What is the hs code for ECHINACEA ANG DRY PURIF.EX (BHN BAKU SUPLEMEN) COA 32527/M1,13021990 +What is the hs code for NYSTATIN MICRONIZED ROW (BHN BAKU OBAT) COA C131060,29419000 +"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA. RBA0981900, RBA1021900",28363000 +What is the hs code for SALBUTAMOL SULFATE BP (BHN BAKU OBAT) COA 029D017,29225090 +What is the hs code for DOPAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA.19100301,29222900 +What is the hs code for PRAYPHOS DKP FG (BHN BAKU KOSMETIK) COA 1911831,29420000 +What is the hs code for PRAYPHOS MKP FG (BHN BAKU KOSMETIK) COA 19-017-01,29420000 +What is the hs code for METFORMIN HCL BP (BHN BAKU OBAT) COA MEF-19030442,29252900 +What is the hs code for MAGNESIUM HYDROXIDE FLOGEL USP (BAHAN BAKU OBAT) COA 201800446,28161000 +"What is the hs code for CEFADROXIL MONOHYDRATE, PURIDROX COMPACTED (BHN BAKU OBAT) COA B340075,76,77",29419000 +"What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE A(BHN BAKU OBAT) COA. M530892,893,894,895,896",29411019 +"What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE A(BHN BAKU OBAT) COA. M530898,899,900,902,903",29411019 +"What is the hs code for AMPICILLIN TRIHYDRATE, PURICILLIN COMPACTED(BHN BAKU OBAT) COA. M842459,60,61,85,86,91",29411020 +What is the hs code for CATCOL C 135 (L) GRADE (BAHAN BAKU KOSMETIK) COA 308/19,38249999 +"What is the hs code for KETAMINE HCL (BHN BAKU OBAT), COA 0241319P",29223900 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615659,38249999 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615665,38249999 +What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615639,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615651,38249999 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615658,39061090 +What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615647,38249999 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615657,39061090 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615672,39061090 +What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615652,39061090 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615548,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615690,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615663,38249999 +What is the hs code for OPADRY AMB II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615664,38249999 +What is the hs code for OPADRY II GRAY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615643,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615646,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615645,38249999 +What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616144,32151900 +What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616144,32151900 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615661,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615660,38249999 +What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615638,38249999 +What is the hs code for ACVRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615650,39061090 +What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA. 20190511,17023010 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190511,17029019 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190511,17029019 +What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA. 20190514,17023010 +What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX1904031,29181400 +"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 1905EF1210",29224900 +"What is the hs code for EFFERSODA (R) 12 BHN BAKU OBAT, COA 121909748,121909751",28363000 +"What is the hs code for EFFERSODA (R) 12 BHN BAKU OBAT, COA 121909748,121909746",28363000 +"What is the hs code for EFFERSODA (R) 12 BHN BAKU OBAT, COA 121909751",28363000 +"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 18-02-19,04-04-19",25070000 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539511,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539488,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539532,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539514,35051010 +What is the hs code for ACYCLOVIR MICRONIZED (BHN BAKU OBAT) COA 19100277,29335990 +"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB00219416,WB00219417,WB00219418",29362100 +"What is the hs code for NOREPINEPHRINE BITARTRATE ,BHN BAKU OBAT, COA 460104",29379010 +"What is the hs code for NOREPINEPHRINE BITARTRATE ,BHN BAKU OBAT, COA 460104",29379010 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616060,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616153,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616088,38249999 +What is the hs code for OPADRY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616220,38249999 +"What is the hs code for MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HG29146,HG29061",34029099 +"What is the hs code for BICAR FOOD 0/50 SODIUM BICARBONATE (BHN BAKU OBAT ) COA MTP11319,MTP14819",28363000 +What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU SUPLEMEN) COA XH20190301,29362800 +What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU SUPLEMEN) COA XH20190301,29362800 +What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU SUPLEMEN) COA XH20190301,29362800 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00918204,29362800 +What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB01017666,29362800 +"What is the hs code for RANITIDINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA RH3920519,RH3930519,RH3940519,RH3950519",29321900 +What is the hs code for FEED GRADE DICALCIUM PHOSPHATE POWDER (BHN BAKU UNTUK PAKAN TERNAK) COA TB1905005,28352510 +"What is the hs code for NIACINAMIDE (NICOTINAMIDE) (BHN BAKU KOSMETIK) COA 153052019/A,154052019/A....",29362900 +"What is the hs code for SERASENSE SF CM5 (BAHAN BAKU KOSMETIK) COA PA90514038,40,42,44",29319049 +What is the hs code for MAPROTILINE HCL (BHN BAKU OBAT) COA 1950001384,29214900 +What is the hs code for SUPPOCIRE AM PELLETS (BHN BAKU OBAT) COA 18E4910,28399000 +What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA 173818,28399000 +What is the hs code for TEFOSE 63 (BHN BAKU OBAT) COA 174047,28399000 +What is the hs code for TEFOSE 63 (BHN BAKU OBAT) COA 174616,28399000 +"What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) , COA 904692",38249999 +"What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) , COA 905210",38249999 +"What is the hs code for KF-6016 (16KG) (BHN BAKU KOSMETIK) , COA 905062",38249999 +"What is the hs code for RESTYLANE SB VITAL LIDOCAINE 1ML , COA 16547-1",33049990 +"What is the hs code for RESTYLANE LIDOCAINE HA FILLER IML N2 S2 ,COA 16547-1",33049990 +"What is the hs code for RESTYLANE LYFT LIDOCAINE IML, COA 16934-1",33049990 +"What is the hs code for RESTYLANE REFYNE 1 ML ,COA 16769-1",33049990 +"What is the hs code for RESTYLANE DEFYNE 1ML , COA 16716-1",33049990 +"What is the hs code for RESTYLANE KYSSE 1ML , COA 16547-1",33049990 +What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA TL01903292,29362100 +What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU SUPLEMEN) COA UT19030022,29362100 +What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19040043,29362100 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00918203,29362800 +What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA TL01903292,29362100 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01903292",29362700 +"What is the hs code for COATED ASCORBIC ACID, TYPE EC, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01903316,63,65",29362700 +What is the hs code for BETATAB 20%S (BHN BAKU SUPLEMEN) COA UT18090032,32041900 +What is the hs code for FLORAGLO LUTEIN 5% CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110040,32030010 +What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19020012,29362500 +What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19020012,29362500 +What is the hs code for B-CAROTENE 10% EMULS (BHN BAKU SUPLEMEN) COA UE01901006,32041900 +What is the hs code for BETATAB 20%S (BHN BAKU SUPLEMEN) COA UT18090032,32041900 +"What is the hs code for COATED ASCORBIC ACID, TYPE EC, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01903365",29362700 +What is the hs code for FLORAGLO LUTEIN 5% CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19020008,32030010 +What is the hs code for REDIVIVO(R) (LYCOPENE) 10% CWS/S-TG(BHN BAKU SUPLEMEN) COA UT18110014,29420000 +What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19020012,29362500 +"What is the hs code for COATED ASCORBIC ACID, TYPE EC, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01903316,63,65",29362700 +What is the hs code for FLORAGLO LUTEIN 5% CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110040,32030010 +What is the hs code for REDIVIVO(R) (LYCOPENE) 10% CWS/S-TG(BHN BAKU SUPLEMEN) COA UT18110014,29420000 +What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19020012,29362500 +What is the hs code for OPCODE RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT688076,32151900 +What is the hs code for OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT688077,32151900 +What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT688078,32151900 +What is the hs code for OPAGLOS CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT685555,32151900 +What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT688079,32151900 +What is the hs code for OPAGLOS WHITE/OFF WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT687493,32151900 +What is the hs code for LIPOID PPL-600 (BHN BAKU OBAT) COA. 577200-2190225,29232010 +What is the hs code for METHOCEL E6 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011I9PL01,39123900 +What is the hs code for METHOCEL E50 PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011H8JL02,39123900 +What is the hs code for METHOCEL E50 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D11HAGL02,39123900 +What is the hs code for METHOCEL K4M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I86001,39123900 +What is the hs code for METHOCEL E15 PREMIUM LV ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011I9EL02,39123900 +What is the hs code for ETHOCEL STANDARD 20 PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D184F43021,39123900 +What is the hs code for METHOCEL K4M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I9H001,39123900 +What is the hs code for ETHOCEL STANDARD 20 PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D184F43021,39123900 +What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180ICV001,39123900 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA653759,38249999 +What is the hs code for TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA653760,32151900 +"What is the hs code for CITRIC ACID MONOHYDRATE GRANULAR (BHN BAKU OBAT), COA UJ914,UJ916",29181400 +What is the hs code for HYDROXOCOBALAMIN CHLORIDE HP (BHN BAKU SUPLEMEN KESEHATAN) COA. KR00002,29362600 +What is the hs code for PROMOIS S-CAQ (BHN BAKU KOSMETIK) COA WBB,38249999 +What is the hs code for SILASOMA MFA(S) (BHN BAKU KOSMETIK) COA WEH,38249999 +What is the hs code for PROTEHIL LH (BHN BAKU KOSMETIK) COA WBB,38249999 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA WEL,38249999 +What is the hs code for PROMOIS WR (BHN BAKU KOSMETIK) COA WCK,38249999 +What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA.M113193,29339990 +What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN2451118,29221990 +What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616046,38249999 +What is the hs code for OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615542,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615977,38249999 +What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616082,38249999 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615658,39061090 +What is the hs code for OPADRYAMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616057,38249999 +What is the hs code for OPDRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615901,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615646,38249999 +What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616061,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616088,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616083,38249999 +What is the hs code for OPADRY AMB II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616104,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616103,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616060,38249999 +What is the hs code for OPADRY AMB BLUE(BHN BAKU OBAT UTK PEWARNA TABLET)COA SH616076,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616077,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616078,38249999 +What is the hs code for OPADRY AMB II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616069,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616059,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616224,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616224,38249999 +What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616056,39061090 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190515,17029019 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (BHN BAKU MAKANAN) COA UT19040855,856,857",29362100 +What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK COA B010419,39123900 +"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB200419",39123900 +"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG190519",39123900 +What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0033003,38249999 +"What is the hs code for DL-PANTHENOL 50 L,1000KG IBC (BHN BAKU KOSMETIK) COA TL01904622",29362400 +"What is the hs code for ETHYL PANTHENOL, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01902804",29362400 +"What is the hs code for DL-PANTHENOL 50 L,1000KG IBC (BHN BAKU KOSMETIK) COA TL01904621",29362400 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX ( BAHAN BAKU MAKANAN) COA TL01903452,4597,4618",29362700 +What is the hs code for POMEGRANATE OF ACORES HYDROGLYCERINED EXTRACT(BHN BAKU KOSMETIK)COA PUGA190401-GL,38249999 +What is the hs code for ROSE OILY EXTRACT (BHN BAKU KOSMETIK)COA ROS190402-H,38249999 +What is the hs code for FLOWER ACID (BHN BAKU KOSMETIK)COA HS190502,38249999 +What is the hs code for GINGSENG PHYTELENE (BHN BAKU KOSMETIK)COA EG209-180803,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS181002,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS181002,38249999 +What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM180901-PGH,38249999 +What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA VIV181202-BGBIO,38249999 +What is the hs code for LICORICE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA GLG190401-BGBIO,38249999 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO190403,38249999 +What is the hs code for LINEN OILY EXTRACT (BHN BAKU KOSMETIK) COA LIU190201-H,38249999 +What is the hs code for LINEN OILY EXTRACT (BHN BAKU KOSMETIK) COA LIU190201-H,38249999 +What is the hs code for IONOL CP (BHN BAKU KOSMETIK) COA 01162218,29420000 +What is the hs code for LUBRIPHARM (R) SSF NF/EP/JP SODIUM STEARYL FUMARATE (BHN BAKU OBAT) COA 121909896,28161000 +What is the hs code for LUBRIPHARM (R) SSF NF/EP/JP SODIUM STEARYL FUMARATE (BHN BAKU OBAT) COA 121909896,28161000 +What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA. 20190529,11081200 +What is the hs code for GRANULAC (R) 200H (BHN BAKU KOSMETIK)COA L105711219,17021100 +"What is the hs code for GRANULAC (R) 200H (BHN BAKU KOSMETIK)COA L105711219,L105711419",17021100 +"What is the hs code for SENTRY POLYOX WSR 303 LEO NF (BHN BAKU OBAT UTK PEWARNA TABLET), COA D682J17RR3",39072010 +"What is the hs code for SENTRY POLYOX WSR 1105 LEO NF (BHN BAKU OBAT UTK PEWARNA TABLET), COA D682H6MRDA",39072010 +"What is the hs code for SENTRY POLYOX WSR N750 LEO NF (BHN BAKU OBAT UTK PEWARNA TABLET), COA D682I97RJ1",39072010 +What is the hs code for SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA.190508101,38249999 +What is the hs code for O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 021319/005928,38249999 +What is the hs code for LIQUORICE LC (BHN BAKU KOSMETIK) COA.113189,13021920 +"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT ) COA MTP13119,MTP13219",28363000 +What is the hs code for CETYL PALMITATE PELLETS CAR (BHN BAKU OBAT) COA 174492,28399000 +What is the hs code for THE MATCHA I P001062 (BHN BAKU OBAT) COA.0000027003,33029000 +What is the hs code for CLAIR BLACHE-II (BHN BAKU KOSMETIK) COA 190200,38249999 +What is the hs code for FLAVOSTERON SB (BHN BAKU KOSMETIK) COA 190662,13021990 +What is the hs code for CLAIRJU (BHN BAKU KOSMETIK) COA 190242,13021990 +What is the hs code for IZYAOI (BHN BAKU KOSMETIK) COA 190106,13021990 +What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 190441,38249999 +What is the hs code for CINDERELLACARE (BHN BAKU KOSMETIK) COA 190257,13021990 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9085521,38210010 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 90MM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9098554,38210010 +What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9100996,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MED 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9112920,38210010 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8141966,38210010 +What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9114508,38210010 +What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9114508,38210010 +What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9114508,38210010 +What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9114508,38210010 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8141966,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIDUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8129691,38210010 +What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7312565,38210010 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9021617,38210010 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183841,38210010 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8241935,38210010 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8311766,38210010 +What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8317859,38210010 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8310579,38210010 +What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8260535,38210010 +What is the hs code for BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9045711,38210010 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9030748,38210010 +What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B02B102M,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIDUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8129691,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIDUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8206836,38210010 +What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9030661,38210010 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9021617,38210010 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183841,38210010 +What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9010685,38210010 +What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8233944,38210010 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8271693,38210010 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8299812,38210010 +What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8256826,38210010 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8354530,38210010 +What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7312565,38210010 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8311766,38210010 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8271781,38210010 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8310579,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIDUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8256652,38210010 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8312979,38210010 +What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8331811,38210010 +What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8317859,38210010 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8354563,38210010 +What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9100996,38210010 +What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9028852,38210010 +What is the hs code for PLATE TSA IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9115511,38210010 +"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9002631,9021643,903",38210010 +What is the hs code for BOTTLE EOSIN MTHYLENE BLUE AG HHT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8254557,38210010 +What is the hs code for BOTTLE MOTILITY TEST MEDIUM BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 09015933,38210010 +What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8317797,38210010 +What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9003524,38210010 +What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9028828,38210010 +What is the hs code for BOTTLE DULCITOL 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8337666,38210010 +What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7332727,38210010 +What is the hs code for BOTTLE RAPPAPORT VASSILIADIS MSRV 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8312875,38210010 +What is the hs code for BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9102959,38210010 +What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9015774,38210010 +What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8354541,38210010 +What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8310633,38210010 +What is the hs code for BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8332807,38210010 +What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8317895,38210010 +What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025631,38210010 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025631,38210010 +What is the hs code for BOTTLE YEAST MOLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8291647,38210010 +What is the hs code for BOTTLE PHENYLALANINE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7255671,38210010 +What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9127956,38210010 +What is the hs code for BOTTLE ISP MEDIUM 4 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8354590,38210010 +What is the hs code for GASPAK EZ LARGE INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8354590,38210010 +What is the hs code for BOTTLE YEAST NITROGEN BASE W/O AA 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8282924,38210010 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 90MM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9101597,38210010 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN)) COA SH9010015,29362900 +"What is the hs code for VITAMIN B12 0,1PCT WS (BHN BAKU MAKANAN) COA UT18110025,UT18110026",29362600 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN)) COA UT18120056,29362100 +What is the hs code for B-CAROTENE 10% CWS (BHN BAKU MAKANAN) COA UT18100056,32041900 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN)) COA UT19010006,29362900 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN)) COA SI19010015,29362900 +What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPLEMEN)) COA XH20170305,29362800 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11901014,29362900 +What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18110339,29362800 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19020014,29362800 +What is the hs code for DRY VITAMIN E 50% CWS/S (BHN BAKU MAKANAN) COA UE01903013,29362800 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11901014,29362900 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN)) COA UT19010006,29362900 +What is the hs code for DRY VITAMIN E 50% CWS/S (BHN BAKU SUPLEMEN) COA UT19010004,29362800 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11901014,29362900 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/TG (TOCO) (BHN BAKU SUPLEMEN)) COA UT19030176,29362100 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN)) COA SI19010015,29362900 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN)) COA UQ81103293,29362200 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3% (BHN BAKU MAKANAN) COA WB00418116,29362900 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3% (BHN BAKU MAKANAN) COA WB00418116,29362900 +"What is the hs code for ASCORBIC ACID 90% GRANULATION, 25 KG BOX (BHN BAKU SUPLEMEN) COA WB01218985",29362700 +What is the hs code for VTP # MS 012 (BHN BAKU MAKANAN) COA XW91905264,21069059 +What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91905264,21069059 +What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK)) COA 0000181894,29362900 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ80713196,29362500 +What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0219030054,29420000 +"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0519040110,0519040111",29420000 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01807006,29362900 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01807006,29362900 +"What is the hs code for BEAUPLEX (TM) VH, 5 KG BAG/ALU (BHN BAKU KOSMETIK) COA UF19021040",29420000 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0519040111,29420000 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01807006,29362900 +"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01807006,UE01807311",29362900 +"What is the hs code for D-PANTHENOL 75 L, 20 KG PAIL PE (BHN BAKU KOSMETIK) COA TL01901304,TL01901305",29362400 +"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91905095,XW91905096",29420000 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18120366,29362800 +What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18110339,29362800 +"What is the hs code for STAY-C (R) 50, 5 KG BAG ALU (BHN BAKU KOSMETIK) COA CS18060026,CS18060029",29362700 +"What is the hs code for D-PANTHENOL, 20 KG PAIL PE (BHN BAKU KOSMETIK) COA TL01901304,TL01901305",29362400 +"What is the hs code for ETHYL PANTHENOL, 20 KG PAIL PE (BHN BAKU KOSMETIK) COA TL01901304,TL01901305",29362400 +What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0718110176,29420000 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0518110346,29420000 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010015,29362900 +What is the hs code for B-CAROTENE 30% FS (BHN BAKU MAKANAN) COA UE01810072,32041900 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010015,29362900 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010015,29362900 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010015,29362900 +What is the hs code for B-CAROTENE 30% FS (BHN BAKU MAKANAN) COA UE01810072,32041900 +"What is the hs code for B-CAROTENE 30% FS (BHN BAKU MAKANAN) COA UE01810072,UE01810073",32041900 +"What is the hs code for CALCIUM D-PANTOTHENATE, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01903666",29362400 +"What is the hs code for DRY VITAMIN E 50% CWS/S (BHN BAKU SUPLEMEN) COA UE01903010,UE01903013",29362900 +What is the hs code for VITAMIN B12 (BHN BAKU SUPLEMEN) COA UT18110025,29362600 +"What is the hs code for CALCIUM D-PANTOTHENATE, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01903666",29362400 +What is the hs code for DRY VITAMIN E 50% CWS/S (BHN BAKU SUPLEMEN) COA UT19010004,29362800 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01803014,29362900 +"What is the hs code for CALCIUM D-PANTOTHENATE, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01903666",29362400 +What is the hs code for DRY VITAMIN E 50% CWS/S (BHN BAKU SUPLEMEN) COA UE01903013,29362900 +"What is the hs code for CALCIUM D-PANTOTHENATE, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01903666",29362400 +"What is the hs code for CALCIUM D-PANTOTHENATE, 25 KG BOX (BHN BAKU SUPLEMEN) COA WB01218983,WB01218984",29362400 +"What is the hs code for ASCORBIC ACID 90% GRANULARION, 25 KG BOX (BHN BAKU SUPLEMEN) COA WB01218984",29362700 +"What is the hs code for ASCORBIC ACID 90% GRANULARION, 25 KG BOX (BHN BAKU SUPLEMEN) COA WB01218984",29362700 +"What is the hs code for ASCORBIC ACID 90% GRANULARION, 25 KG BOX (BHN BAKU SUPLEMEN) COA WB01218984",29362700 +"What is the hs code for VTP # MS 012 (BHN BAKU MAKANAN) COA XW91905263,XW91905265",21069059 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01803014,29362900 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19010006,29362900 +What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9099515,38210010 +What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B03B064M,38210010 +"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8219521",38210010 +"What is the hs code for VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9039992",38210010 +"What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9084930",38210010 +"What is the hs code for BOTTLE LACTOBACILLI MRS BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9112888",38210010 +"What is the hs code for VIAL ISOVITALEX ENRICHMENT 10ML 5 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9035837",38210010 +"What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9068517",38210010 +"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9017553",38210010 +"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9059647",38210010 +"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8277815",38210010 +"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9059647",38210010 +"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8334767",38210010 +"What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9049874",38210010 +"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8243742",38210010 +"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9059647",38210010 +"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9094722",38210010 +"What is the hs code for CD4 PERCP-CY5.5 SK3 RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9052935",38210010 +"What is the hs code for CD14 APC MPHIP9 100 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9115632",38210010 +"What is the hs code for CD34 APC 8G12 100 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9077594",38210010 +"What is the hs code for CD117 PE 104D2 50 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9070562",38210010 +"What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9068517",38210010 +"What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9081573",38210010 +"What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9039821",38210010 +"What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9058622",38210010 +"What is the hs code for CD45 PERCP-CY5.5 2D1 50 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8268723",38210010 +"What is the hs code for ANTI-MPO FITC 5B8 50 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9008965",38210010 +"What is the hs code for CD19 PE-CY7 SJ25CI 100 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9086520",38210010 +"What is the hs code for CD3 APC-H7 100 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9077593",38210010 +"What is the hs code for CD79A PE HM47 50 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9065915",38210010 +"What is the hs code for CD56 APC NCAM16.2 100 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8072654",38210010 +"What is the hs code for CD10 PE-CY7 HI10A 100 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9051928",38210010 +"What is the hs code for CD20 FITC L27 100 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9065589",38210010 +"What is the hs code for ANTI-KAPPA FITC/ ANTI-LAMBDA PE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9063848",38210010 +"What is the hs code for CD20 V500-C RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9114811",38210010 +"What is the hs code for CD43 APC-H7 (1G10) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9078810",38210010 +"What is the hs code for CD23 FITC EBVCS-5 RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9074873",38210010 +"What is the hs code for CD25 PE 2A3 50 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9119763",38210010 +"What is the hs code for CD34 PE-CY7 8G12 Y7 100 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9084561",38210010 +"What is the hs code for ANNEXIN V FITC APOP DTEC KIT I 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9072590",38210010 +"What is the hs code for HU CD64 APC-H7 10.1 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 09039654",38210010 +"What is the hs code for HU CD36 HORIZON V450 CB38 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH8337814",38210010 +"What is the hs code for HU CD7 APC M-T701 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8319695",38210010 +"What is the hs code for HU CD3 BV421 UCHT1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8316512",38210010 +"What is the hs code for HU CD10 BV421 HI10A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8330923",38210010 +"What is the hs code for HU CD138 BV421 MI15 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8276889",38210010 +"What is the hs code for HU CD19 BV510 SJ25C1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9014616",38210010 +"What is the hs code for HU CD103 BV421 BER-ACT8 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9049542",38210010 +"What is the hs code for CD38 APC-H7 (HB7) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9051517",38210010 +"What is the hs code for CD7 APC (M-T701) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9098826",38210010 +What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-190310,29397900 +What is the hs code for SIMVASTATIN (BHN BAKU OBAT) COA DK40-1905092,29322090 +What is the hs code for GLUCOSAMINE HYDROCHLRIDE (BHN BAKU OBAT) COA WA201904003,29329990 +What is the hs code for METHISOPRINOL (BHN BAKU OBAT) COA.MTP9040119,29349990 +"What is the hs code for PANTOPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT,COA AVHS19001",29333990 +"What is the hs code for VANCOMYCIN HYDROCHLORIDE (STERILE POWDER) BHN BAKU OBAT,COA APSS18006",29419000 +What is the hs code for CEFTIZOXIME SODIUM (BHN BAKU OBAT) COA S600300,29419000 +What is the hs code for DESONIDE MICRONIZED (BHN BAKU OBAT) COA NX2905M,29372900 +"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LCD21619T",27101990 +What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK)COA CHP1190601,38249999 +What is the hs code for SK BIOLAND APRICOT XTRACT (BHN BAKU KOSMETIK)COA PAS-012059,38249999 +What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 050819,38249999 +What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-012239,38249999 +What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-121829,38249999 +What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-013159,38249999 +What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-021128,38249999 +What is the hs code for SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COAGTB-012229,38249999 +What is the hs code for SK BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK) COA NMSP-D-011018,38249999 +What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1190604,38249999 +What is the hs code for SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-032249,38249999 +What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 050819,38249999 +What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK)COA CHP1181213,38249999 +What is the hs code for ASTAXANTHIN OIL 10PCT (BHN BAKU OBAT) COA 1903231,32030010 +What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 121909758,29054300 +"What is the hs code for EFFERSODA (R) 12 BHN BAKU OBAT, COA 121909749,121909750",28363000 +"What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT688754",32151900 +"What is the hs code for OPALUX TAN (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT688755",32151900 +"What is the hs code for OPASPRAY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT688757",32151900 +"What is the hs code for CONFECTIONERY INK BLUE (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT688756",32151900 +"What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT688078",32151900 +What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 1AX1905010,29181400 +What is the hs code for CW-5C 5% CLEAR (BHN BAKU KOSMETIK) COA 785017426K,38249999 +What is the hs code for EXO-T (BHN BAKU KOSMETIK) COA 715017283K,38249999 +"What is the hs code for KF-6048 (16KG) (BHN BAKU KOSMETIK) , COA 906022",38249999 +"What is the hs code for KF-6016 (16KG) (BHN BAKU KOSMETIK) , COA 905063",38249999 +"What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) , COA 905129",38249999 +"What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) , COA 904214",38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617112,39061090 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616587,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616588,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617111,39061090 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616714,39061090 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616924,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616923,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616583,38249999 +What is the hs code for ACRYL EZE PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616580,39061090 +What is the hs code for IMERCARE TM VELLUTO (BHN BAKU KOSMETIK) COA 028/16,38029090 +What is the hs code for IMERCARE DOLCE (BHN BAKU KOSMETIK) COA S792/18,38029090 +What is the hs code for SILDENAFIL CITRATE USP (BHN BAKU OBAT) COA SLC 088 06 19,29335990 +What is the hs code for DEXAMETASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 1904031595,29372200 +What is the hs code for ANTISHINE WASH 1 (BHN BAKU KOSMETIK) COA 10300124,38249999 +What is the hs code for ANTI SHINE WASH (BHN BAKU KOSMETIK) COA 10300074,38249999 +"What is the hs code for IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S240/19, S412/19",38029090 +What is the hs code for O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 102418/005767,38249999 +"What is the hs code for PEG 400 (POLYETHYLENE GLYCOL) BAHAN BAKU KOSMETIK) COA.AKW0007327,7412",39072010 +"What is the hs code for DIMENHYDRINATE BHN BAKU OBAT COA. 19100402,409,410",29395900 +What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA R901000,29419000 +What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA S701500,29419000 +"What is the hs code for CEFADROXIL MONOHYDRATE, PURIDROX POWDER (BHN BAKU OBAT) COA B334632,4634,4635",29419000 +"What is the hs code for AMBROXOL HYDROCHLORIDE POWDER (BHN BAKU OBAT) COA AHM/19030,19029,19028",29221990 +What is the hs code for PREDNISOLONE BP2010/USP40 (BHN BAKU OBAT) COA NPL 190511,29372100 +What is the hs code for PREDNISONE USP40 (BHN BAKU OBAT) COA NPD 190404,29372100 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN )COA RBA1231900,28363000 +What is the hs code for EPA DHA 44 37 (BHN SUPLEMEN KESEHATAN) COA EE4437-190529,29061300 +What is the hs code for IRBESARTAN (BHN BAKU OBAT) COA,29332900 +What is the hs code for PROPOLIS BEE EXTRACT (BHN BAKU OBAT) COA 190502,29389000 +What is the hs code for METHOCEL E6 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011IAKL02,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I6U001,39123900 +What is the hs code for METHOCEL K4M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J1G001,39123900 +What is the hs code for METHOCEL E15 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011I9EL02,39123900 +What is the hs code for METHOCEL K15 PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011I9EL02,39123900 +What is the hs code for FRAMYCETINE SULFATE (BHN BAKU OBAT) COA F1700008/01,29419000 +"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA. ROA149197,ROA150194,ROA152193,ROA,15219",28363000 +What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB00319233,29362100 +What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00918688,29362800 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190525,17029019 +What is the hs code for ACRYL-EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617475,39061090 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617423,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617422,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614932,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617507,38249999 +What is the hs code for OPADRY AMB II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617519,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617368,38249999 +What is the hs code for OPADRY 200 PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617505,38249999 +What is the hs code for OPADRY BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616603,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617515,38249999 +"What is the hs code for ACRYLPOL 980 (20KG) BAHAN BAKU KOSMETIK, COA 11519015,016,022",39069099 +What is the hs code for SORBITOL SOLUTION USP (BAHAN BAKU KOSMETIK) COA 1141920,29054400 +"What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU SUPLEMEN) COA UT19030001,UT19030002",29362100 +"What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA. M531075,76,77,81,60",29411019 +What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB00319233,29362100 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00918204,29362800 +What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01904618,29362700 +What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01904618,29362700 +What is the hs code for PHYTANTRIOL (BHN BAKU SUPLEMEN) COA UQ90107002,29420000 +What is the hs code for SPIRAMYCIN (BHN BAKU OBAT) COA SP181405,29419000 +What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK)COA 052419,38249999 +What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-013159,38249999 +What is the hs code for SK BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK) COA NMSP-D-011018,38249999 +What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-022059,38249999 +What is the hs code for SK BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK) COA CPG-021019,38249999 +What is the hs code for SK BIOLAND AMINO ACID COMPLEX (B) (BHN BAKU KOSMETIK) COA AMIBD-011519,38249999 +"What is the hs code for SK BIOLAND YUZU EXTRACT (BHN BAKU KOSMETIK) COA CJUBD-051359,CJUBD-063059",38249999 +What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK)COA 2018G1505,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617420,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615306,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616224,38249999 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617437,38249999 +What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617367,38249999 +What is the hs code for OPADRY AMB PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617369,38249999 +What is the hs code for OPADRY AMB II PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617504,38249999 +What is the hs code for OPADRY AMB II PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617503,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616224,38249999 +What is the hs code for ACRYL-EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617475,39061090 +What is the hs code for OPADRY VIOLET (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617518,38249999 +What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617516,38249999 +What is the hs code for OPADRY AMB II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616069,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616046,38249999 +What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616600,38249999 +What is the hs code for OPADRY BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616603,38249999 +What is the hs code for INOSITOL (BHN BAKU OBAT) COA 201903031,29061300 +What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 1905056,29349990 +What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20190512,29309090 +What is the hs code for ALBENDAZOLE (BHN BAKU OBAT UTK PAKAN TERNAK) COA CDP-C 20190409,29339990 +What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1906005-09,29224900 +What is the hs code for POVIDONE K-30 EX JHNJ (BHN BAKU OBAT) COA PK30-190412F42,39059990 +What is the hs code for POVIDONE K-25 (BHN BAKU OBAT) COA PK25-190111F12,39059990 +What is the hs code for FIBRE DRUM,48192000 +"What is the hs code for PHARMACEUTICAL BOVINE GELATINE (BAHAN BAKU OBAT ), COA 5001811285",35030049 +"What is the hs code for MEG-3 '30' N-3 FOOD OIL ,4,5KG PJUG (BHN BAKU SUPLEMEN) COA TS00012411",29362500 +"What is the hs code for MATCHA GREEN TEA EXTRACT CSP 6 TC ( BHN BAKU KOSMETIK), COA CSP 19011 EOU",38249999 +What is the hs code for GEMCITABINE HYDROCHLORIDE (BHN BAKU OBAT) COA 190527,29349990 +What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA. DOC0631921,28363000 +"What is the hs code for AMPICILLIN TRIHYDRATE, PURICILLIN COMPACTED(BHN BAKU OBAT) COA. M842521,27,28,53,54",29411020 +"What is the hs code for TRISODIUM CITRATE 5.5-HYDRATE CRYST.,ERG.B,USP VIII ( BHN BAKU KOSMETIK), COA 3067308",29181400 +What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91905312,21069059 +What is the hs code for DWI-BI (BHN BAKU MAKANAN) COA XW91905316,21069059 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT19030846,50",29362100 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90502140,29362200 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90502140,29362200 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90502140,29362200 +What is the hs code for B-CAROTENE 30% FS (BHN BAKU MAKANAN) COA UE1810074,32041900 +What is the hs code for B-CAROTENE 30% FS (BHN BAKU MAKANAN) COA UE1810074,32041900 +What is the hs code for B-CAROTENE 30% FS (BHN BAKU MAKANAN) COA UE1810074,32041900 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT19040017,29362800 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT19040017,29362800 +What is the hs code for B-CAROTENE 10% CWS (BHN BAKU MAKANAN) COA UT18100062,32041900 +"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18110382,83",29362400 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3% (BHN BAKU SUPLEMEN) COA WB00418117,29362900 +What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1810151,29362300 +"What is the hs code for SODIUM ASCORBIC CRYSTALLINE, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01902124",29362700 +"What is the hs code for ASCORBIC ACID, 25 KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01808405",29362700 +What is the hs code for B-CAROTENE 30% FS (BHN BAKU MAKANAN) COA UE01810073,32041900 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3% (BHN BAKU SUPLEMEN) COA WB00518036,29362300 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3% (BHN BAKU SUPLEMEN) COA WB00518036,29362300 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3% (BHN BAKU SUPLEMEN) COA WB00518036,29362300 +"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91905321,22",29420000 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3% (BHN BAKU SUPLEMEN) COA WB00518036,29362300 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3% (BHN BAKU SUPLEMEN) COA WB00518036,29362300 +What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18110340,29362800 +What is the hs code for B-CAROTENE 10% CWS (BHN BAKU MAKANAN) COA UT18100063,32041900 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11902006,29362900 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3% (BHN BAKU SUPLEMEN) COA WB00418117,29362900 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3% (BHN BAKU SUPLEMEN) COA WB00418117,29362900 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3% (BHN BAKU SUPLEMEN) COA WB00418117,29362900 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT19040017,29362800 +"What is the hs code for D-PANTHENOL, 20 KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01901001",29362400 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ81103293,29362200 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01807311,29362900 +What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3% (BHN BAKU SUPLEMEN) COA WB00418034,29362500 +What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3% (BHN BAKU SUPLEMEN) COA WB00418034,29362500 +What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3% (BHN BAKU SUPLEMEN) COA WB00418034,29362500 +What is the hs code for PX 204005 (BHN BAKU MAKANAN) COA XW91905283,21069059 +"What is the hs code for ASCORBIC ACID, 25 KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01808405",29362700 +"What is the hs code for ASCORBIC ACID, 25 KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01808405",29362700 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11901014,29362900 +"What is the hs code for ASCORBIC ACID, 25 KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01808405",29362700 +"What is the hs code for SODIUM ASCORBIC CRYSTALLINE, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01902124",29362700 +"What is the hs code for ASCORBIC ACID, 25 KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01808414",29362700 +"What is the hs code for ASCORBIC ACID, 25 KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01808414",29362700 +"What is the hs code for SODIUM ASCORBIC CRYSTALLINE, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01902124",29362700 +"What is the hs code for ASCORBIC ACID, 25 KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01808414",29362700 +"What is the hs code for ASCORBIC ACID, 25 KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01808414",29362700 +What is the hs code for PYRIDOXINE HYDROCHLORIDE(BHN BAKU SUPLEMEN) COA UQ80813226,29362500 +"What is the hs code for D-PANTHENOL, 20 KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01901001",29362400 +"What is the hs code for D-PANTHENOL, 20 KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01901001",29362400 +What is the hs code for PYRIDOXINE HYDROCHLORIDE(BHN BAKU SUPLEMEN) COA UQ80813226,29362500 +"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3% (BHN BAKU SUPLEMEN) COA WB00418116,117",29362300 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3% (BHN BAKU SUPLEMEN) COA WB00418116,29362900 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3% (BHN BAKU SUPLEMEN) COA WB00518047,29362200 +"What is the hs code for ASCORBYL PALMITATE, 25 KG BOX/ALU (BHN BAKU SUPLEMEN) COA UQ90206035",29362700 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90210040,29362300 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90210040,29362300 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90210040,29362300 +"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90210038,40",29362300 +What is the hs code for VITAMIN B12 0.1% WS (BHN BAKU SUPLEMEN) COA UT18120037,29362600 +What is the hs code for VITAMIN B12 0.1% WS (BHN BAKU SUPLEMEN) COA UT18120037,29362600 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01807311,29362900 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01807311,29362900 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3% (BHN BAKU SUPLEMEN) COA WB00418117,29362900 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP19063028,3029",29211900 +What is the hs code for DEXAMETHASONE BP2010/USP40 (BHN BAKU OBAT) COA.NED190201,29372200 +What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT)COA L101851919,17021100 +What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT)COA L101851919,17021100 +What is the hs code for BODY_3 COMPLEX (BHN BAKU KOSMETIK) COA B3C021218,38249999 +What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830017169K,38249999 +What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769017053K,38249999 +What is the hs code for EXO-T (BHN BAKU KOSMETIK) COA 715017060K,38249999 +What is the hs code for EXO-T (BHN BAKU KOSMETIK) COA 715017283K,38249999 +"What is the hs code for LECIGEL (TM) (BHN BAKU KOSMETIK), COA 1835105",38249999 +"What is the hs code for LECIGEL (TM) (BHN BAKU KOSMETIK), COA 1901606",38249999 +"What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK), COA 828017058K",38249999 +"What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK), COA 5555018",38249999 +"What is the hs code for ALDAVINE 5X (BHN BAKU KOSMETIK), COA 799037025K",38249999 +"What is the hs code for CW-5C 5% CLEAR (BHN BAKU KOSMETIK), COA 799037025K",38249999 +"What is the hs code for ECOGEL (BHN BAKU KOSMETIK), COA 1834405",38249999 +What is the hs code for EXO-H (BHN BAKU KOSMETIK) COA 715026914J,38249999 +What is the hs code for EXO-T (BHN BAKU KOSMETIK) COA 715017283K,38249999 +"What is the hs code for LECIGEL (TM) (BHN BAKU KOSMETIK), COA 1835103",38249999 +"What is the hs code for MELANOSTATINE-5 BG (50PPM) (BHN BAKU KOSMETIK), COA 817046741J",38249999 +"What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK), COA 1735916",38249999 +"What is the hs code for TYROSTAT-11 (BHN BAKU KOSMETIK), COA 784027203K",38249999 +"What is the hs code for TYROSTAT-09 (BHN BAKU KOSMETIK), COA 784016659J",38249999 +What is the hs code for TEFOSE 63 (BHN BAKU OBAT) COA 174916,28399000 +What is the hs code for TEFOSE 63 (BAHAN BAKU OBAT) COA 175325,28399000 +What is the hs code for PRECITOL ATO 5 (BAHAN BAKU OBAT) COA 173667,28399000 +What is the hs code for SUPPOCIRE A PELLETS (BAHAN BAKU OBAT) COA 18E2201,28399000 +What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA.20190603,17023010 +What is the hs code for GLICLAZIDE (BHN BAKU OBAT) COA 1840001065-1840002667,29359000 +What is the hs code for BISOPROLOL FUMARATE USP (BHN BAKU OBAT) COA SLL/BF/0619002,29221990 +What is the hs code for HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 2905182,33029000 +"What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA. M531037,38,53,94,125",29411019 +"What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA. M596442,443,441",29411019 +"What is the hs code for ROVIMIX AD3 1000/200, 20KG BAG (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT19040355",29362100 +What is the hs code for TEFOSE 63 (BHN BAKU OBAT) COA 174775,28399000 +What is the hs code for TEFOSE 63 (BHN BAKU OBAT) COA 175052,28399000 +What is the hs code for SILYMARIN (BHN BAKU SUPLEMEN) COA 19S0045602,38249999 +What is the hs code for SILYMARIN (BHN BAKU SUPLEMEN) COA 19S0045602,38249999 +What is the hs code for P.GINGSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 32347/M1,13021990 +What is the hs code for MIRTOGEL (BHN BAKU SUPLEMEN) COA 19S0167200,38249999 +What is the hs code for CENTELLA ASIATICA TRITERPENES(BHN BAKU SUPLEMEN) COA 19S0002700,38249999 +What is the hs code for ECHINACEA ANG. DRY PURIF.EX (BHN BAKU SUPLEMEN) COA 32767/M1,13021990 +What is the hs code for P.GINGSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 32347/M1,13021990 +What is the hs code for SERENOA REPENS PURIFIED EXT.(BHN BAKU SUPLEMEN) COA 32905/B/1,38249999 +What is the hs code for CENTELLA ASIATICA TRITERP./C (BHN BAKU SUPLEMEN) COA 19S0003400,38249999 +What is the hs code for BILBERRY (V.MYRTILLUSE)ET.EX.36% (BHN BAKU SUPLEMEN) COA 32920/M2,13021990 +"What is the hs code for NIACINAMIDE PC, 25 KG BOX (BHN BAKU KOSMETIK) COA 0000182299",29362900 +"What is the hs code for NIACINAMIDE PC, 25 KG BOX (BHN BAKU KOSMETIK) COA 000182299",29362900 +"What is the hs code for NIACINAMIDE PC, 25 KG BOX (BHN BAKU KOSMETIK) COA 000182299",29362900 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11902006,29362900 +"What is the hs code for B-CAROTENE 30% FS (BHN BAKU MAKANAN) COA UE01810074,75",32041900 +"What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18110339,40",29362800 +What is the hs code for DRY VITAMIN E 50% CWS/S (BHN BAKU SUPLEMEN) COA UE01903020,29362800 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010015,29362900 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01803014,29362900 +"What is the hs code for CALCIUM D-PANTOTHENATE, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01903676,77",29362400 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01803014,29362900 +What is the hs code for B-CAROTENE 10% CWS (BHN BAKU MAKANAN) COA UT18100063,32041900 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11902006,29362900 +What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18110340,29362800 +What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91905335,21069059 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT18120056,29362100 +"What is the hs code for 1,3-BUTYLENE GLYCOL, COSMETIC QUALITY(BHN BAKU KOSMETIK) COA P0619325CC",29053200 +What is the hs code for OPADRY SGR CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET)COA GA654906,38249999 +What is the hs code for OPADRY SGR RED (BHN BAKU OBAT UTK PEWARNA TABLET)COA GA654897,38249999 +What is the hs code for OPADRY SGR RED (BHN BAKU OBAT UTK PEWARNA TABLET)COA GA654897,38249999 +What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT)COA L105711419,17021100 +What is the hs code for CAPSULAC (R) 60 (BHN BAKU OBAT)COA L100412119,17021100 +What is the hs code for PLATE TSA W LP IC-XT PACK 90MM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9127927,38210010 +What is the hs code for BISOPROLOL FUMARATE USP(BAHAN BAKU OBAT)COA LT-OBFM/001/19-12,29221990 +"What is the hs code for ONDASENTRON HCL USP (BHN BAKU OBAT) COA 18OS002,18OS003",29332900 +What is the hs code for METHOCEL K100M PREMIUM...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I72001,39123900 +What is the hs code for METHOCEL E6 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D111IBTL01,39123900 +What is the hs code for METHOCEL K4M PREMIUM CR...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I9L001,39123900 +What is the hs code for ETHOCEL STANDARD 10 PREMIUM...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D184GC1021,39123900 +What is the hs code for SILYMARIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 19B0002800,38249999 +What is the hs code for SILYBIN/ PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 19B0062700,38249999 +What is the hs code for CLAIR BLACHE-II (BHN BAKU KOSMETIK) COA 190200,38249999 +What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 190809,13021990 +What is the hs code for CINDERELLACARE (BHN BAKU KOSMETIK) COA 190257,13021990 +What is the hs code for IZYAOI (BHN BAKU KOSMETIK) COA 190106,13021990 +What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 182567,13021990 +What is the hs code for PRINCESSCARE (BHN BAKU KOSMETIK) COA 182936,13021990 +What is the hs code for CLAIRJU (BHN BAKU KOSMETIK) COA 190242,13021990 +What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG190607,29362700 +What is the hs code for OXFENDAZOLE (BHN BAKU OBAT UTK PAKAN TERNAK) COA LASA/L11/007/04/19,29242990 +"What is the hs code for PACLITAXEL SEMISYNTHETIC (USP,TEST-2) (BHN BAKU OBAT) COA 899ESH012",29329990 +What is the hs code for PROPYPHENAZONE (ST) (BHN BAKU OBAT) COA 1804031,29331100 +"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1910188,1910190",29242930 +What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 2AX1906002,29181400 +"What is the hs code for PARSOL MCX, 200 KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519050145",29420000 +"What is the hs code for D-PANTHENOL, 20 KG PAIL PE (BHN BAKU KOSMETIK) COA TL01902021",29362400 +"What is the hs code for PARSOL 340, 25 KG PC (BHN BAKU KOSMETIK) COA 0219030052",29420000 +"What is the hs code for STAY-C (R) 50, 5 KG BAG ALU (BHN BAKU KOSMETIK) COA CS18060029,30",29362700 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18120370,29362800 +"What is the hs code for PARSOL 1789, 20 KG BOX (BHN BAKU KOSMETIK) COA 0319040609,10",29420000 +"What is the hs code for PARSOL 340, 25 KG PC (BHN BAKU KOSMETIK) COA 0219030052",29420000 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180120,21",29420000 +"What is the hs code for PARSOL MCX, 200 KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519050145",29420000 +"What is the hs code for OMEPRAZOLE PELLETS 8,5 PCT (BHN BAKU OBAT) COA OP0219C047",30039000 +What is the hs code for DEXTROSE ANHYDROUS (BHN BAKU OBAT UTK PAKAN TERNAK) COA XWA190422-1,17023010 +What is the hs code for LEVOFLOXACIN HEMIHYDRATE (BHN BAKU OBAT) COA C008-1906601,29349990 +What is the hs code for MAGNOLIA BARK EXTRACT (BHN BAKU KOSMETIK) COA MBE05-181105,38249999 +What is the hs code for PROPYPHENAZONE (ST) (BHN BAKU OBAT UTK PEWARNA TABLET) COA 1810254-58,29331100 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO190403,38249999 +"What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-001-W, SAMPLE NO COMMERCIAL VALUE",38249999 +"What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-001-W, SAMPLE NO COMMERCIAL VALUE",38249999 +What is the hs code for KOPCINOL (BHN BAKU KOSMETIK) COA K043.1/19/05/032,38249999 +What is the hs code for JAGUAR C 162 CARDBOARD BOX 25 KG (BHN BAKU KOSMETIK) COA MJAC19044B,38249999 +What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA. 20190611,11081200 +What is the hs code for SILVERION 2400 (BHN BAKU KOSMETIK) COA.17-12214,38249999 +What is the hs code for CLOTRIMAZOLE MICRONIZED (BHN BAKU OBAT ) COA 201904060015,29332900 +"What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA. M531131 S/D 34,36,37",29411019 +What is the hs code for PRAMIPEXOLE DIHYDROCHLORIDE MONOHYDRATE (BHN BAKU OBAT) COA PP0050818,29342000 +What is the hs code for PRAMIPEXOLE DIHYDROCHLORIDE MONOHYDRATE (BHN BAKU OBAT) COA PP0061218,29342000 +What is the hs code for PRAMIPEXOLE DIHYDROCHLORIDE MONOHYDRATE (BHN BAKU OBAT) COA PP0010319,29342000 +"What is the hs code for OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET), COA WP814247",32151900 +"What is the hs code for VC ASCORBIC ACID 325 MESH, 2OKG ... (BAHAN BAKU SUPLEMEN) COA HPD1901121,28,906036,38...",29362700 +"What is the hs code for VC CALCIUM ASCORBATE DC, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPT1906009",29362700 +"What is the hs code for VC ASCORBIC ACID DC 97PCT, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG1902002,2003,2006",29362700 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 19B0032000,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 19B0047800,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPPLEMEN) COA 19B0047900,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPPLEMEN) COA 19B0048000,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0048100,13021990 +What is the hs code for HAWTHORN DRY EXTRACT 1.8PCT (BHN BAKU SUPLEMEN) COA 10908/M1,13021990 +What is the hs code for PASSION FLOWER D.H.E 4PCT (BHN BAKU SUPLEMEN) COA 10926/M1,13021990 +"What is the hs code for VALERIAN D.H.E 0,8PCT VAL.AC (BHN BAKU SUPLEMEN) COA 19B0006900",13021990 +What is the hs code for VALERIAN D.H.E 0.8PCT VAL.AC (BHN BAKU SUPLEMEN) COA 19B0013500,13021990 +What is the hs code for BUTCHERBROOM DRY HYDR EX 9-11PCT (BHN BAKU SUPLEMEN) COA 10678/M1,13021990 +"What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 13590619,14320619...",29359000 +"What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 15010619,15030619,15050619...",29359000 +What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 14320619,29359000 +"What is the hs code for CATECHINS (TEA EXTRACT) (BHN BAKU SUPLEMEN KESEHATAN), COA 809071",21012020 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP19063145, 146",29211900 +What is the hs code for LIPOID S 20 (BHN BAKU OBAT) COA. 572000-2190127/001-024 (24),29232010 +What is the hs code for LICOMYCIN HCL EP (BHN BAKU OBAT) COA 1905010,29419000 +"What is the hs code for TETRACYCLINE HYDROCHLORIDE (BHN BAKU OBAT) COA 190606-61, 190605-02",29413000 +What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20190617,29309090 +What is the hs code for LEVOFLOXACIN HEMIHYDRATE (FREE ALKALINE) (BHN BAKU OBAT) COA C008-1906601,29349990 +"What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) , COA 906133",38249999 +"What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) , COA 906212",38249999 +What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18100055,29362100 +"What is the hs code for DOCETAXEL TRIHYDRATE (BHN BAKU OBAT) COA 201811004, 201904003",29329990 +What is the hs code for MELANOSTATINE 5BG (BHN BAKU KOSMETIK) COA 817047308K,38249999 +What is the hs code for MINIPORYL (BHN BAKU KOSMETIK) COA 832017233K,38249999 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519030092",29420000 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ80813230,29362500 +"What is the hs code for PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519030092",29420000 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0319050684, 685, 686",29420000 +"What is the hs code for PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519030092",29420000 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01807311,29362900 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01807311,29362900 +What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91906266,21069059 +"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19010089, UT19050090",29362900 +What is the hs code for NECTAR DE MATCHA FEMA P114 6 (BHN BAKU OBAT) COA.0000027992,33029000 +What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP804552,32151900 +What is the hs code for FD AND C RED #40/ALLURA RED AC AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP806874,32151900 +What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP811054,39059990 +What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP788130:1,32151900 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190615,17029019 +What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB00319233,29362100 +"What is the hs code for OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT689944",32151900 +"What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT690389",32151900 +"What is the hs code for CONFECTIONERY INK BLUE (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT689987",32151900 +"What is the hs code for SENTRY POLYOX WSR 303 LEO NF (BHN BAKU OBAT UTK PEWARNA TABLET), COA D6821BRRR3",39123900 +What is the hs code for MILD TALCUM MOD1 (BHN BAKU KOSMETIK) COA 10300170,38249999 +What is the hs code for ANTISHINE WASH 1 (BHN BAKU KOSMETIK) COA 10300125,38249999 +What is the hs code for ANTISHINE WASH (BHN BAKU KOSMETIK) COA 10300075,38249999 +What is the hs code for PURE GREEN B AND W PIT (BHN BAKU KOSMETIK) COA 10300051,38249999 +"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED GRADE P) BHN BAKU OBAT,COA. M596492",29411019 +What is the hs code for OMEPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W)BHN BAKU OBAT) COA AOSS19004,29333990 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT19040858, 59,60",29362100 +What is the hs code for RANITIDINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA RH388 05 19,29321900 +What is the hs code for PREDNISONE USP40 (BHN BAKU OBAT) COA NPD 190708,29372100 +What is the hs code for DEXTROSE ANHYDROUS (BHN BAKU OBAT UTK PAKAN TERNAK) COA XWA190422-2,17023010 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA ROA175197,28363000 +"What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 15860619,15870619...",29359000 +What is the hs code for ORIGINAL EXTRACT GRAPE CSB (BHN BAKU KOSMETIK) COA 01/17GUVA,28399000 +"What is the hs code for ORIGINAL EXTRACT GRAPE (BAHAN BAKU KOSMETIK) COA 01/17GUVA, SAMPLE NO COMMERCIAL VALUE",28399000 +What is the hs code for GELUCIRE 43/01 PELLETS (BAHAN BAKU OBAT) COA 17E4602,28399000 +"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9105960",38210010 +"What is the hs code for PLATE STERILE RODAC EMPTY 65X15 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9042780",38210010 +What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9023839,38210010 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9049688,38210010 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141966,38210010 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183841,38210010 +"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 9010685",38210010 +What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8297883,38210010 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 8271693,38210010 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8269714,38210010 +What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255977,38210010 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9021613,38210010 +What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8256826,38210010 +"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9092586",38210010 +What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9030984,38210010 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8206594,38210010 +What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9079880,38210010 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9038791,38210010 +What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8129682,38210010 +What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8227621,38210010 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9029985,38210010 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9084525,38210010 +What is the hs code for BOTTLE R2A AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8317859,38210010 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9079916,38210010 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8310579,38210010 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9107565,38210010 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9014512,38210010 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8382931,38210010 +What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8281627,38210010 +What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8260535,38210010 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9121588,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8206836,38210010 +What is the hs code for PLATE STERILE RODAC EMPTY 65X15 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9098631,38210010 +What is the hs code for BOTTLE BLOOD AGAR BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9023839,38210010 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9049688,38210010 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183841,38210010 +What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 83055685,38210010 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8271693,38210010 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8269714,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8312962,38210010 +What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255977,38210010 +What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8256826,38210010 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9092586,38210010 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8206594,38210010 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9038791,38210010 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9029985,38210010 +What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8317859,38210010 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9079916,38210010 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9014523,38210010 +What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142519,38210010 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8282931,38210010 +What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9028852,38210010 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142666,38210010 +What is the hs code for BOTTLE DICHLORAN ROSE BENGAL CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8354556,38210010 +What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9050755,38210010 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8211649,38210010 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025977,38210010 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9084661,38210010 +What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9100996,38210010 +What is the hs code for BOTTLE MR-VP BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9148534,38210010 +What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9003524,38210010 +What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9028828,38210010 +What is the hs code for BOTTLE MACCONKEY II AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255703,38210010 +What is the hs code for BOTTLE OXGALL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8297826,38210010 +What is the hs code for PAIL BACTO AGAR 10KG (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9163843,38210010 +What is the hs code for BOTTLE TREHALOSE 10G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9066673,38210010 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS MSRV 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8312875,38210010 +What is the hs code for BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8084697,38210010 +What is the hs code for BOTTLE MUELLER HINLON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8312890,38210010 +What is the hs code for BOTTLE NITRATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8129685,38210010 +What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025865,38210010 +What is the hs code for BOTTLE BAIRD HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8310633,38210010 +What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9112968,38210010 +What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9107528,38210010 +What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8317917,38210010 +What is the hs code for BOTTLE OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG B03B144M,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8337715,38210010 +What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084966,38210010 +What is the hs code for BOTTLE PHENYLALANINE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7255671,38210010 +What is the hs code for BOTTLE MYCOPLASMA BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297871,38210010 +What is the hs code for BOTTLE TETRATHIONATE BR BASE HAJNA 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084922,38210010 +What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8024751,38210010 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9094798,38210010 +What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8304929,38210010 +What is the hs code for BOTTLE MARINE AGAR 2216 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9070997,38210010 +What is the hs code for BOTTLE CHRO MAGAR CANDIDA 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9101733,38210010 +What is the hs code for BOTTLE ISP MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9128891,38210010 +"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9071655,855",38210010 +What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9023839,38210010 +"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297702,706,...",38210010 +What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297883,38210010 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 8269714,38210010 +What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9030984,38210010 +"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8170732,8206594",38210010 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9014523,38210010 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8282931,38210010 +What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9091855,38210010 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9049688,38210010 +What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9079880,38210010 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) COA 9107565,38210010 +What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8281627,38210010 +"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9094798,9121588",38210010 +What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8331811,38210010 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9091914,38210010 +What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKIROORGANISME) BATCH 8255977,38210010 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 91215884,38210010 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9121588,38210010 +What is the hs code for BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8130513,38210010 +What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9086804,38210010 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9129972,38210010 +What is the hs code for PLATE TSA W LP IC XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9144945,38210010 +"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LCD22119T",27101990 +What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02B086M,38210010 +What is the hs code for BOTTLE TERGITOL 4 XLT4 SUPPLEMENT 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH SLCB3712,38210010 +What is the hs code for KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0050319,29339990 +What is the hs code for LANSOPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA LP0219C027,30039000 +"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8207980",38210010 +"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9037956",38210010 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9116925,38210010 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8334767,38210010 +What is the hs code for BOTTLE TRYPTICASE SOY AG L& P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9049874,38210010 +What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9079720,38210010 +"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 8219521",38210010 +What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233839,38210010 +What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 8285857,38210010 +What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8248932,38210010 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9025804,38210010 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9116925,38210010 +What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219521,38210010 +"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9116925",38210010 +What is the hs code for ANTI MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9155608,38210010 +What is the hs code for CD19 PE-CY7 SJ25C1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9086520,38210010 +What is the hs code for CD3 APC H7 SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9121572,38210010 +What is the hs code for CD79A PE HM47 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9065915,38210010 +What is the hs code for CD38 APC H7 (HB7) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9114884,38210010 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9116925,38210010 +What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9165530,38210010 +What is the hs code for CD3 PERCP SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9126824,38210010 +What is the hs code for CD8 FITC SK1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9099512,38210010 +What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9099563,38210010 +What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9115632,38210010 +What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9077594,38210010 +What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9070562,38210010 +What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161530,38210010 +What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161778,38210010 +What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9162907,38210010 +What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9058622,38210010 +What is the hs code for BD CST BEADS KIT 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 903996,38210010 +What is the hs code for CD79A PE HM47 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9165797,38210010 +What is the hs code for HU FOXP3 PE 259D/C7 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8138503,38210010 +What is the hs code for HU CD36 FITC CB38 (NL07) 100TST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8225528,38210010 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8334767,38210010 +What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8338844,38210010 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8156756,38210010 +What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9039992,38210010 +What is the hs code for CELL VIABILITY KIT 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9029826,38210010 +What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 05062019,25081000 +What is the hs code for LANOLINE ANHYDROUS (BHN BAKU KOSMETIK) COA 4932,38249999 +"What is the hs code for LANOLIN ANHYDROUS (BHN BAKU KOSMETIK) COA 4932,4933,4934",38249999 +What is the hs code for OPADRY FX YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA656328,38249999 +What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D0180J3E002,39123900 +What is the hs code for 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 04119/005976,38249999 +What is the hs code for 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 021319/005928,38249999 +"What is the hs code for KM-9729 (BHN BAKU KOSMETIK) , COA 906198,SAMPLE NO COMMERCIAL VALUE",38249999 +What is the hs code for DERMOFEEL G 10L (BHN BAKU KOSMETIK) COA LT19500476,38249999 +What is the hs code for METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT (BHN BAKU OBAT) COA NZ1198,29372900 +"What is the hs code for AMPICILLIN TRIHYDRATE, PURICILLIN COMPACTED(BHN BAKU OBAT) COA. M842567 S/D 572",29411020 +What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1903081943,29372900 +What is the hs code for DESONIDE MICRONIZED (BHN BAKU OBAT) COA NX2905M,29372900 +What is the hs code for EPA DHA 44 37 (BHN SUPLEMEN KESEHATAN) COA EE4437-190701,29061300 +What is the hs code for MONENDOX 200 BMP (BHN BAKU OBAT UTK PAKAN TERNAK) COA 1006191,29419000 +What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT... (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP814308,32151900 +What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT... (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP8143064,32151900 +What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT... (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP814308,32151900 +What is the hs code for D AND C YELLOW #10 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP814306,32151900 +What is the hs code for CEFTIZOXIME SODIUM (BHN BAKU OBAT) COA S600300,29419000 +What is the hs code for SORBITOL SOLUTION USP 70PCT CRYSTALLISING (BAHAN BAKU KOSMETIK) COA 2331920,29054400 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT19050868,29362100 +What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT690957,32151900 +What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND190206,29372200 +What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT)COA L105712119,17021100 +What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619004,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618492,38249999 +What is the hs code for DEXAMETHASONE BP2010/USP40 (BHN BAKU OBAT) COA.NED190202,29372200 +"What is the hs code for AMPICILLIN TRIHYDRATE (PURICILLIN POWDER) (BHN BAKU OBAT),COA. M780826",29411020 +What is the hs code for PIRACETAM (INJECTABLE GRADE) BHN BAKU OBAT COA. PIR01119,29337900 +What is the hs code for RUGENER DREIKRONEN HEILKREIDE 25K (BHN BAKU KOSMETIK) COA 81678637,29420000 +What is the hs code for GINKGO EXTRACT (BHN BAKU KOSMETIK) COA 81678637,29420000 +What is the hs code for VEEGUM K 20K BAG (BHN BAKU KOSMETIK) COA 81681676,29420000 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00119214,29362800 +What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00319233,29362100 +What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00918689,29362800 +What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00319233,29362100 +"What is the hs code for EDIBLE BOVINE GELATINE (BAHAN BAKU OBAT ), COA 5001904890,894",35030049 +What is the hs code for EPIRUBICIN HYDROCHLORIDE BP/PHARMM EUR (BHN BAKU OBAT) COA FY0241,29419000 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP19063196,197",29211900 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ90103017,29362200 +"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19010089,19050090",29362900 +What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91906225,21069059 +What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91906213,21069059 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19010089,29362900 +What is the hs code for VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW91906389,21069059 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19040017,29362800 +"What is the hs code for VITAMIN PREMIX 103093-A (BHN BAKU MAKANAN) COA XW91906344,6345",21069059 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01810075,32041900 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01810075,32041900 +What is the hs code for VITAMIN B12 0.PCT WS (BHN BAKU SUPLEMEN) COA UT18120037,29362600 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT(BHN BAKU SUPLEMEN) COA WB00418117,29362900 +What is the hs code for RIBOFLAVIN 5' PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1812181,29362300 +What is the hs code for RIBOFLAVIN 5' PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1812181,29362300 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19010006,29362900 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010015,29362900 +"What is the hs code for CALCIUM ASCORBATE,25KG BOX ALU (BHN BAKU SUPLEMEN) COA WB00119006",29362700 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT19030176,29362100 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18110383,29362400 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19010006,29362900 +What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00918689,29362800 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00119214,29362800 +"What is the hs code for MIRANOL ULTRA C-32 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP90420IR,BP906329R",34029099 +"What is the hs code for RESTYLANE SUBQ 2ML D16 , COA 16563-1",33049990 +"What is the hs code for RESTYLANE SKINB VITALLGHLIDO 1MLD16, COA 17063-1",33049990 +"What is the hs code for RESTYLANE REFYNE 1 ML ,COA 16769-1",33049990 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617906,38249999 +What is the hs code for OPADRY 200 PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618812,38249999 +What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617919,39061090 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617838,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617839,38249999 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617909,39061090 +What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617925,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618809,38249999 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617908,38249999 +What is the hs code for OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618807,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618667,38249999 +What is the hs code for OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617922,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617918,38249999 +What is the hs code for OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618810,38249999 +What is the hs code for OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618810,38249999 +What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617924,39061090 +"What is the hs code for ECHINACEA PURPUREA DRY AQUEOUS EXTRACT 0,8PCT (BAHAN BAKU SUPLEMEN) COA 10226/M2",13021990 +"What is the hs code for FENTACARE 2231 EF (BHN BAKU KOSMETIK )COA ZH19E1303,ZHI9G0403...",34029019 +"What is the hs code for NOREPINEPHRINE BITARTRATE ,BHN BAKU OBAT, COA 510104",29379010 +"What is the hs code for PURIDROX TM POWDER, CEFADROXILE MONOHYDRATE (BHN BAKU OBAT) COA B334640, 41,42",29419000 +What is the hs code for D-RIBOSE (BHN BAKU OBAT) COA ZN190719,29400000 +"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/07/050719-2, ASG/07/060719-1...",29420000 +What is the hs code for CINNARIZINE (BHN BAKU OBAT) COA CIN1907012,29335990 +What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA C01781UP,29053200 +What is the hs code for PROMETHAZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA HPHCPN019,29343000 +What is the hs code for OXOMEMAZINE BASE (BHN BAKU OBAT) COA HXBCPN002,29343000 +What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785017553K,38249999 +What is the hs code for MELANOSTATINE -5BG (50PPM) (BHN BAKU KOSMETIK) COA 817047448K,38249999 +What is the hs code for PRO LIPO TM NEO (BHN BAKU KOSMETIK) COA 1908602,38249999 +What is the hs code for ISOCELL TM SLIM (DISC) (BHN BAKU KOSMETIK) COA 1912801,38249999 +What is the hs code for MELANOSTATINE 5BG (50PPM) (BHN BAKU KOSMETIK) COA 817047448K,38249999 +"What is the hs code for TYROSTAT -09 (BHN BAKU KOSMETIK), COA 784017474K",38249999 +"What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK), COA 5555018",38249999 +"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK), COA 1901606",38249999 +"What is the hs code for MELANOSTATINE-5 BG (50PPM) (BHN BAKU KOSMETIK), COA 817047448K",38249999 +"What is the hs code for MINIPORYL (BHN BAKU KOSMETIK), COA 832017233K",38249999 +"What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK), COA 828017058K",38249999 +What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA. 8MT190654,30032000 +"What is the hs code for LIFE'S DHA S35-O100, 5KG ALUF (B.BAKU SUPLEMEN) COA VY00304717",29362500 +"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-100519,S-1270619",29334910 +What is the hs code for NABUMETONE (BHN BAKU OBAT) COA H-2001118,29145000 +What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT)COA L101852119,17021100 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA ROA187194,28363000 +What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180IB8003,39123900 +What is the hs code for METHOCEL K15M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I2O003,39123900 +What is the hs code for METHOCEL K15 PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D0180I8H003,39123900 +What is the hs code for CATCOL C 135 (L) GRADE (BAHAN BAKU KOSMETIK) COA 528/19,38249999 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT ) COA MTP18719,28363000 +What is the hs code for METHISOPRINOL (BHN BAKU OBAT) COA.MTP9050161,29349990 +What is the hs code for SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 1907802230,29322090 +"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ90110003,UQ90510127",29362300 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90510127,29362300 +"What is the hs code for PARSOL MCX, 200 KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519030092",29420000 +What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91907036,29420000 +What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91907038 S/D 41,29420000 +What is the hs code for REFINED COCONUT OIL -GV 24/26 (BHN BAKU KOSMETIK)COA 19F0901,15131910 +What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT(BHN BAKU KOSMETIK)COA HEA180705,38249999 +What is the hs code for INCA INCHI ORGANIC LIPACTIVE (BHN BAKU KOSMETIK)COA II190202-AI-D-BIO,38249999 +What is the hs code for LOTUS OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA NEN190503-H,38249999 +What is the hs code for ONDANSETRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA 18OS003,29332900 +What is the hs code for MEG 3(TM) '10' N-3 INF POWDER S/SD(BHN BAKU MAKANAN) COA UT18040042,29362500 +"What is the hs code for GENIVIDA (TM) TG ,1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT17080005",29329990 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18090032,32041900 +What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19020012,29362500 +"What is the hs code for FRUITFLOW II SD, 1KG BAL (BHN BAKU SUPLEMEN) COA 19095",29362900 +What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110014,29420000 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18100055,29362100 +What is the hs code for BETATAB 20%S (BHN BAKU SUPLEMEN) COA UT18090032,32041900 +"What is the hs code for COATED ASCORBIC ACID TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01905715",29362700 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110040,32030010 +What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110014,29420000 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18090032,32041900 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110040,32030010 +What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110014,29420000 +What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19020012,29362500 +"What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF, 1KG ALUF (BHN BAKU SUPLEMEN) COA UE01811060",32030010 +"What is the hs code for CAROCARE NAT BC 20PCT CWS/S-TG,10KG BAG (BHN BAKU SUPLEMEN) COA EW19042007",29362500 +"What is the hs code for COATED ASCORBIC ACID, TYPE EC, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01903316,63,65",29362700 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18090032,32041900 +"What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF, 1KG ALUF (BHN BAKU SUPLEMEN) COA UE01901004",32030010 +"What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00419407",29362700 +"What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ90107003,7004",29420000 +"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1910804, 1910813, 1951408,1930434",29242930 +What is the hs code for FLUOROMETHOLONE MICRONISED USP BP JP (BHN BAKU OBAT) COA 1901370183,29372200 +What is the hs code for NYSTATIN MICRONIZED ROW (BHN BAKU OBAT) COA C131120,29419000 +What is the hs code for NYSTATIN POWDER (BHN BAKU OBAT) COA C114333,29419000 +What is the hs code for NYSTATIN MICRONIZED (BHN BAKU OBAT) COA C131171,29419000 +What is the hs code for MIRTOGENOL (R) (BHN BAKU SUPLEMEN) COA 80377/M1,38249999 +What is the hs code for SUPPOCIRE BM PELLETS (BHN BAKU OBAT) COA 19E1304,28399000 +What is the hs code for LABRAFIL M 1944 CS (BAHAN BAKU OBAT) COA 175446,28399000 +What is the hs code for LABRAFIL M 1944 CS (BAHAN BAKU OBAT) COA 175543,28399000 +What is the hs code for GELUCIRE 44/14 (BAHAN BAKU OBAT) COA 175733,28399000 +What is the hs code for PRECIROL ATO 5 (BHN BAKU OBAT) COA 175002,28399000 +What is the hs code for HYOSCINE BUTYL BROMIDE EP/BP (BHN BAKU OBAT) COA.2520519,29397900 +What is the hs code for FD AND C BLUE 32/INDIGO CARMINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP804675,32151900 +What is the hs code for FD AND C YELLOW 36/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP809104,32151900 +What is the hs code for D AND C YELLOW 310 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP814308,32151900 +What is the hs code for FD AND C BLUE #1/BRILLIANT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP805966,32151900 +What is the hs code for PVAP - PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP811063,39059990 +What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP807298,32151900 +What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP804552,32151900 +What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP802028-1,32151900 +What is the hs code for BICAR FOOD 0/50 SODIUM BICARBONATE (BHN BAKU OBAT ) COA MTP19919,28363000 +What is the hs code for BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU OBAT) COA MTP03819,28363000 +What is the hs code for BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU OBAT) COA MTP09219,28363000 +What is the hs code for INSTANT BLACK TEA POWDER TH B430 (BHN BAKU MAKANAN) COA 2019062403,21012020 +"What is the hs code for GUAIFENESIN USP (BHN BAKU OBAT) COA GGE-1907159 TO GGE 1907168,GGE-1906155 TO GGE 1906158",29094900 +"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000182784",29362900 +"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01902023,3025",29362400 +What is the hs code for ETHYL PANTHENOL 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01902805,29362400 +"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0219030052",29420000 +"What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0718110176",29420000 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519030092,50145",29420000 +"What is the hs code for PARSOL MCX ,25KG PC (BHN BAKU KOSMETIK) COA 0519010008",29420000 +What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001529534,29420000 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ80813230,29362500 +"What is the hs code for PARSOL SHIELD,20KG BOX (BHN BAKU KOSMETIK) COA 0819030067,68",29420000 +What is the hs code for MINERAL PREMIX FOR POWDER DRINK (BHN BAKU KOSMETIK) COA XW91907022,21069059 +What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20190202,29362800 +What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20190202,29362800 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19030004,29362900 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19030004,29362900 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010015,29362900 +"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN), COA UT19030004",29362900 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19030014,29362900 +What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20190202,29362800 +"What is the hs code for PREDNISONE USP42 (BHN BAKU OBAT) COA.NPD190404, NPD190708",29372100 +"What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.NED190707, NED190710",29372200 +What is the hs code for DEXTROSE ANHYDROUS (BHN BAKU OBAT UTK PAKAN TERNAK) COA XWL1904153A,17023010 +What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 18290109,30039000 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 191100,38249999 +"What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 182567,182975",13021990 +What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 191100,38249999 +What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 190672,38249999 +What is the hs code for PROMOIS WS (BHN BAKU KOSMETIK) COA WGJ,38249999 +What is the hs code for PROTEHIL LH (BHN BAKU KOSMETIK) COA WCC,38249999 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA WEL,38249999 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA WGA,38249999 +What is the hs code for AC019KC PHYTOVITYL C 5KG (BHN BAKU KOSMETIK) COA 0031052,38249999 +What is the hs code for AC019KC PHYTOVITYL C 5KG (BHN BAKU KOSMETIK) COA 0034925,38249999 +What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK)COA ARP-321249,38249999 +What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK)COA MUP-012239,38249999 +What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-291069,38249999 +What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-021128,38249999 +What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012239,38249999 +What is the hs code for SK BIOLAND SNAIL SECREATION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-050218,38249999 +What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-091808,38249999 +What is the hs code for SK BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK)COA PSFAC-031028,38249999 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT)COA L101852319,17021100 +"What is the hs code for EFFERSODA (R) 12 BHN BAKU OBAT, COA 121909883",28363000 +What is the hs code for GABAPETIN (USP) (BHN BAKU OBAT) COA CGBU190319,29224900 +What is the hs code for DEXAMETASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 1904031595,29372200 +What is the hs code for METAMIZOLE SODIUM (BHN BAKU OBAT UTK PAKAN TERNAK) COA 1905466,29331900 +"What is the hs code for CARBOPLATIN EP (BHN BAKU OBAT) COA 570180010,147190010",28439000 +What is the hs code for SMIZYME PHYTASE 5000U/G GRANULAR (BHN BAKU OBAT UTK PAKAN TERNAK) COA 0224051907,35079000 +What is the hs code for CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA 1GC01CLB ZP48D 250MT,38249999 +What is the hs code for PRAYPHOS MKP FG (BHN BAKU KOSMETIK) COA 119-087-01,29420000 +What is the hs code for FLUCONAZOLE USP (BHN BAKU OBAT) COA AFLNC 0719048 (M),29339910 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA. 9057852,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9057852,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9057852,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (ME UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9084933,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9028867,38210090 +What is the hs code for BACTO TRYPTPSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9057852,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9028867,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8344948,38210090 +What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT19020012,29362500 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE,25KG BOX (BHN BAKU MAKANAN) COA TL01904618",29362700 +What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT19050023,29362100 +What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT19050023,29362100 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90410083,29362300 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA ROA204194,28363000 +What is the hs code for METAMIZOLE SODIUM TYPE T 25 KG (BHN BAKU OBAT) COA C0029,29331100 +What is the hs code for CYANOXOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPLEMEN ) COA. 1907251390,29362600 +What is the hs code for L-LYSINE HYDROCHLORIDE(FEED GRADE) 98.5PCT (B.BAKU OBAT UTK TERNAK) COA DX19-07-169HJ-IB...,29224100 +What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619814,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619125,38249999 +What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619743,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619190,38249999 +What is the hs code for OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619643,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619016,38249999 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619184,39061090 +What is the hs code for OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619189,38249999 +What is the hs code for OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619171,38249999 +What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619755,39061090 +What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619731,38249999 +What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J4A002,39123900 +What is the hs code for METHOCEL K15M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180HAV001,39123900 +What is the hs code for METHOCEL E6 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011J36L02,39123900 +What is the hs code for METHOCEL K4M PREMIUM CR...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J32001,39123900 +What is the hs code for METHOCEL E15 PREMIUM LV ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011I9EL02,39123900 +What is the hs code for METHOCEL K4M PREMIUM LVCR...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180IAK021,39123900 +What is the hs code for OXALIPLATIN (BHN BAKU OBAT) COA L20190610,28439000 +What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA. 20190716,11081200 +What is the hs code for SORBITOL SOLUTION 70PCT CRYSTALLISING (BAHAN BAKU KOSMETIK) COA 2851920,29054400 +What is the hs code for ROSUVASTATIN CALCIUM (BHN BAKU OBAT) COA RVM2160719,29359000 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618606,38249999 +What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618626,38249999 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619445,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619436,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619266,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618685,38249999 +What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618684,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619321,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619320,38249999 +What is the hs code for OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618564,38249999 +What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617919,39061090 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619373,39061090 +What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618636,39061090 +What is the hs code for ACRYL EZE PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618636,39061090 +What is the hs code for OPADRY RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618640,38249999 +What is the hs code for OPADRY 200 GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618541,38249999 +What is the hs code for OPADRY GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618561,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619431,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618627,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619436,38249999 +What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618646,32151900 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619447,38249999 +What is the hs code for OPADRY II GRAY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH6193692,38249999 +What is the hs code for OPADRY II BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618624,38249999 +What is the hs code for OPADRY II BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619435,38249999 +What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619249,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618635,38249999 +What is the hs code for MILD TALCUM MOD1 (BHN BAKU KOSMETIK) COA 10300173,38249999 +What is the hs code for PURE GREEN B&W PIT (BHN BAKU KOSMETIK) COA 10300052,38249999 +"What is the hs code for CALCIUM D-PANTOTHENATE 25KG/BOX (BHN BAKU MAKANAN ) COA. TL01907734,39",29362400 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19070056,29362100 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19070056,29362100 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19070056,29362100 +What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19070045,29362100 +What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19070045,29362100 +"What is the hs code for CALCIUM D-PANTOTHENATE 25KG BOX (BHN BAKU MAKANAN) COA TL01907739,41",29362400 +What is the hs code for STARCAP 1500 CO-PROCESSED (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537877,35051010 +"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 040419 ,091218,070719",25070000 +What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK)COA 2019F1287,38249999 +What is the hs code for SK BIOLAND BLACK SESAME EXTRACT (BHN BAKU KOSMETIK) COA BSEA-011628,38249999 +What is the hs code for SK BIOLAND YUZU EXTRACT (BHN BAKU KOSMETIK) COA CJUBD-063059,38249999 +What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-013159,38249999 +What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-021879,38249999 +What is the hs code for SK BIOLAND GREEN TEA SEED OIL (BHN BAKU KOSMETIK) COA CSSO-043079,38249999 +What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK)COA MCP-N-033059,38249999 +What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK)COA 2019F1287,38249999 +What is the hs code for LOTUS NELUMBIUM NEL.FLOWER HS(BAHAN BAKU KOSMETIK) COA AM073203,13021950 +"What is the hs code for SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA 190808071, 190815011",38249999 +"What is the hs code for OMEPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W)BHN BAKU OBAT, COA AOSS19004",29333990 +"What is the hs code for PANTOPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT, COA APSS19001",29333990 +"What is the hs code for MEG-3 '30' N-3 INF OIL ,4,5KG PJUG (BHN BAKU SUPLEMEN) COA TS00012231",29362500 +"What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 18830719, 18840719...",29359000 +"What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 18830719, 18840719...",29359000 +What is the hs code for SULPHAMETHOXAZOLE BP MICRONISED (BHN BAKU OBAT) COA 18940719,29359000 +What is the hs code for TRIMETHOPRIM BP MICRONISED (BHN BAKU OBAT) COA TMP19070579,29335990 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01808015,29362900 +"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000182785",29362900 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01808015,29362900 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01808015,29362900 +"What is the hs code for ETHYL PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01902805",29362400 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01903233",29362700 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418117,29362900 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19030014,29362900 +"What is the hs code for CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU KOSMETIK) COA WB00119006",29362700 +What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18100325,29362800 +"What is the hs code for D-PANTHENOL 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01902023,3025",29362400 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19030004,29362900 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11903009,29362900 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE,25KG BOX (BHN BAKU SUPLEMEN) COA TL01903233",29362700 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18120037,29362600 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010015,29362900 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19030021,29362400 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01901004,29362900 +"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1901002,1003",29362300 +"What is the hs code for ASCORBYL PALMITATE ,25KG BOX ALU (BHN BAKU MAKANAN) COA UQ90406087",29362700 +"What is the hs code for ASCORBYL PALMITATE ,25KG BOX ALU (BHN BAKU MAKANAN) COA UQ90406079",29362700 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01903233",29362700 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01810075,32041900 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01810075,32041900 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19030046,29362800 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19030004,29362900 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18120037,29362600 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19030021,29362400 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01903233",29362700 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011,29362900 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011,29362900 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011,29362900 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19030046,29362800 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01903025",29362400 +What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1901010,29362300 +What is the hs code for THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000028231,33029000 +What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA.0000029305,33029000 +What is the hs code for PLAISANCE P116808 (BHN BAKU KOSMETIK) COA 0000029330,33029000 +"What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 90412,90509,90520,90702",38029090 +"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 120319,140319,150319...",38029090 +What is the hs code for EUXYL K 120 CN 10KG KA (BHN BAKU KOSMETIK) COA 1532588,38249999 +"What is the hs code for EUXYL K 940 (SAMPLE) 100ML FL (BHN BAKU KOSMETIK) COA 1339633, SAMPLE NO COMMERCIAL VALUE",38249999 +"What is the hs code for EUXYL K 940 (SAMPLE) 100 ML FL (BHN BAKU KOSMETIK) COA 1339633, SAMPLE NO COMMERCIAL VALUE",38249999 +"What is the hs code for EUXYL K 100 SAMPLE(S) 100ML FL (BHN BAKU KOSMETIK) COA 1525399, SAMPLE NO COMMERCIAL VALUE",38249999 +"What is the hs code for EUXYL K 903 (SAMPLE) 100ML FL (BHN BAKU KOSMETIK) COA 1530568,SAMPLE NO COMMERCIAL VALUE",38249999 +"What is the hs code for SENSIVA PA 20 SAMPLE(S) 100 ML FL (BHN BAKU KOSMETIK) COA 1520205,SAMPLE NO COMMERCIAL VALUE",38249999 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA ROA205196,28363000 +"What is the hs code for DEXAMETHASONE BP2010/USP41 (BHN BAKU OBAT) COA.NED190404, NED190711",29372200 +What is the hs code for INSTANT BLACK TEA POWDER TH B430 (BHN BAKU MAKANAN) COA 2019071701,21012020 +What is the hs code for OPADRY ORANGE (BAHAN BAKU OBAT UNTUK PEWARNA TABLET) COA. GA657946,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA657948,38249999 +What is the hs code for MELOXICAM BP/EP (BHN BAKU OBAT) COA HMXCPM023,29341000 +What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9149751,38210010 +What is the hs code for BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9072674,38210010 +What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B02B086M,38210010 +"What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH B048192M",38210010 +"What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9119914",38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8206836,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8312962,38210010 +What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255977,38210010 +What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9107576,38210010 +"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8206836",38210010 +What is the hs code for PLATE STERILE RODAC EMPTY 85X15 MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9098631,38210010 +What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9085991,38210010 +What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9079880,38210010 +What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142519,38210010 +What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9028852,38210010 +What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9178487,38210010 +"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 8 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8281787",38210010 +What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8331811,38210010 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183841,38210010 +What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9170916,38210010 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9142666,38210010 +What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9114508,38210010 +What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255977,38210010 +What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9170723,38210010 +What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8304929,38210010 +What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9128845,38210010 +What is the hs code for BOTTLE MOTILITY TEST MEDIUM BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9015933,38210010 +What is the hs code for BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9129926,38210010 +What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9049923,38210010 +What is the hs code for BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7317688,38210010 +What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9070997,38210010 +What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9028828,38210010 +What is the hs code for BOTTLE CELLOBIOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9028837,38210010 +What is the hs code for BOTTLE DULCITOL 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8337666,38210010 +What is the hs code for BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9084697,38210010 +What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9107597,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 4 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8297988,38210010 +What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8312890,38210010 +What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9021602,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 5 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8197524,38210010 +What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9025865,38210010 +What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8310633,38210010 +What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8134767,38210010 +What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8317917,38210010 +What is the hs code for GAZPAK EZ STANDARD INCUBATION CONTAINER(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH7308545010,38210010 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGANGAN MIKRO ORGANISME)BATCH B01B163M,38210010 +What is the hs code for BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9127972,38210010 +What is the hs code for BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9121742,38210010 +What is the hs code for BOTTLE BILE ESCULIN AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8271850,38210010 +What is the hs code for BOTTLE TETRATHIONATE BR BASE HAJNA 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9084922,38210010 +What is the hs code for TUBE CRYSTAL E/ID INOCULUM FLUID(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9135718,38210010 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9141938,38210010 +"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9144942,...",38210010 +What is the hs code for BOTTLE DEXTROSE STARCH AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 7114789,38210010 +What is the hs code for BOTTLE MYP AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9133875,38210010 +What is the hs code for BOTTLE BRAIN HEART INFUSION BR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8256839,38210010 +What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9172790,38210010 +What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9178487,38210010 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9143927,38210010 +What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8331811,38210010 +What is the hs code for BOTTLE PLATE VOUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9128557,38210010 +"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9143927,50548",38210010 +What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8331811,38210010 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8141966,38210010 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161608,38210010 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8269714,38210010 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9092586,38210010 +What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 90507553,38210010 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8310579,38210010 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9041523,38210010 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9142666,38210010 +"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8355570,9025917",38210010 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9043891,38210010 +"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9150548,575",38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8291589,38210010 +What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9105960,38210010 +What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9023839,38210010 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9049688,38210010 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 8141966,38210010 +What is the hs code for BOTTLE BISMUTH SULFIT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8183841,38210010 +What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8305685,38210010 +What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9127592,38210010 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8271693,38210010 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161608,38210010 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8269714,38210010 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9021613,38210010 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9092586,38210010 +What is the hs code for BOTTLE MACCONKEY AGAR 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9079951,38210010 +"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9039632,9112849",38210010 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9168641,38210010 +What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8227621,38210010 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9029985,38210010 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084525,38210010 +What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8317859,38210010 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 9079916,38210010 +"What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 8310579,9161603",38210010 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9014523,38210010 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9021643,38210010 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9043891,38210010 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8354563,38210010 +What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9010685,38210010 +"What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8325512",38210010 +"What is the hs code for ANTI MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9155608",38210010 +What is the hs code for HU CD41A PE HIP8 100 TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9010710,38210010 +What is the hs code for PI/RNASE STAINING BUFFER SOLUTION 100ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9183478,38210010 +What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9115632,38210010 +"What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9077594, 9140698",38210010 +"What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9070562",38210010 +"What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9068517,9161530",38210010 +What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9161778,38210010 +What is the hs code for CD10 FITC HI 10A 50TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9162907,38210010 +What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9058622,38210010 +What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP W135 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9165674,38210010 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9025804,38210010 +"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9115887",38210010 +What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255580,38210010 +What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8219521,38210010 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8334767,38210010 +What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9049874,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8207980,38210010 +What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9115887,38210010 +What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219521,38210010 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8334767,38210010 +What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9039992,38210010 +What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9049874,38210010 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9025804,38210010 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8207980,38210010 +What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9129843,38210010 +"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255580,9039647..",38210010 +What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8219521,38210010 +What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9039992,38210010 +What is the hs code for BOTTLE HEMOGLOBIN SOL 2PCT 100ML10EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8268963,38210010 +What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT 10X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8334877,38210010 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8156756,38210010 +What is the hs code for VIAL SHIGELLA ANTIS POLY A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9140633,38210010 +What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9107937,38210010 +What is the hs code for VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9129779,38210010 +What is the hs code for VIAL PENICILLINASE 10000000 KU/ML 1 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9099734,38210010 +What is the hs code for VIAL SHIGELLA ANTIS POLY A1 LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8103629,38210010 +"What is the hs code for OPASPRAY BLUE (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT691289",32151900 +What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN1550519,29221990 +What is the hs code for IBUPROFEN 40 GRADE (BHN BAKU OBAT) COA 4050-3557,29163990 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190717,17029019 +What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT)COA L105712119,17021100 +What is the hs code for CELLACTOSE (R) 80 (BHN BAKU OBAT)COA L100462719,17021100 +"What is the hs code for RESTYLANE SKINB VITLIDO 1 MLD16 ,COA 16905-1,17008-1",33049990 +"What is the hs code for REST SKINB VITALLGHLIDO 1MLD16, COA 17063-1, 17132-1",33049990 +"What is the hs code for RESTYLANE LYFT LIDOCAINE 1 ML ,COA 17004-1",33049990 +"What is the hs code for RESTYLANE REFYNE 1 ML , COA 17084-1",33049990 +"What is the hs code for RESTYLANE KYSSE 1 ML , COA 16911-1",33049990 +"What is the hs code for RESTYLANE LYFT LIDOCAINE 1 ML ,COA 17004-1, 17061-1,SAMPLE NO COMM VALUE",33049990 +"What is the hs code for RESTYLANE REFYNE 1 ML , COA 17084-1, SAMPLE NO COMMERCIAL NALUE",33049990 +"What is the hs code for RESTYLANE KYSSE 1 ML , COA 16911-1, SAMPLE NO COMMERCIAL VALUE",33049990 +"What is the hs code for TRISODIUM CITRATE DIHYDRATE FINE GRANULAR (BHN BAKU MAKANAN), COA UJ919,UJ921",29181400 +"What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1908019 S/D 22, 24 S/D 26, 28 S/D 30",29224900 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539989,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN540098,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN540003,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539990,35051010 +"What is the hs code for CETRIMIDE (BHN BAKU OBAT) COA 319CAA0002,0004",38249999 +"What is the hs code for CEFADROXIL MONOHYDRATE (PURIDROX COMPACTED) BHN BAKU OBAT) COA B340109,111 S/D 113",29419000 +What is the hs code for LIPOID PPL-600 (BHN BAKU OBAT) COA. 577200-2190225/007,29232010 +What is the hs code for TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA657367,32151900 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00119215,29362800 +What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00918689,29362800 +What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00319235,29362100 +What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20190701,29362800 +"What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) , COA 907134",38249999 +"What is the hs code for KSG-210 (16KG) BHN BAKU KOSMETIK, COA 907060",38249999 +"What is the hs code for KSG-710 (16KG) BHN BAKU KOSMETIK, COA 907268",38249999 +"What is the hs code for KP-562P (16KG) BHN BAKU KOSMETIK, COA 802008",38249999 +"What is the hs code for KP-578 (16KG) BHN BAKU KOSMETIK , COA 807080",38249999 +"What is the hs code for KSP-100 (10KG) BHN BAKU KOSMETIK , COA 907717",38249999 +"What is the hs code for KSG-15 (900G) BHN BAKU KOSMETIK, COA 908331",38249999 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01907062",29362700 +What is the hs code for SODIUM VALPROATE (BAHAN BAKU OBAT) COA.453131,29159090 +What is the hs code for CHOLINE L-BITARTRATE (BAHAN BAKU OBAT) COA.3018002,29231000 +What is the hs code for SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA 190710121,38249999 +"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000182785",29362900 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT19030850,29362100 +What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001529534,29420000 +"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0319050702,703,746",29420000 +What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P9N24QA000,29420000 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90513039,29362500 +What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18100325,29362800 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19030046,29362800 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19030014,29362900 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11903009,29362900 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18120037,29362600 +"What is the hs code for ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01902117",29362700 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01902117",29362700 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01810075,32041900 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19040022,29362800 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518048,29362200 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01903083,29362800 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19050090,29362900 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11903009,29362900 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01810082,32041900 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01810076,32041900 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18120037,29362600 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01810075,32041900 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18120037,29362600 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18120037,29362600 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01810082,32041900 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19030046,29362800 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19030021,29362400 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19030014,29362900 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18120037,29362600 +"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01810075,76",32041900 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01901004,29362900 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT18100063,32041900 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19030004,29362900 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT19040177",29362100 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT19050090,29362900 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01901004,29362900 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT19010008,29362900 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT18100063,32041900 +What is the hs code for VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19070045,29362100 +"What is the hs code for COATED ASCORBIC ACID TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01908235",29362700 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19020008,32030010 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19070056,29362100 +"What is the hs code for VITAMIN A+ D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN), COA UT19070045",29362100 +"What is the hs code for CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 20190808",38249999 +What is the hs code for METHOCEL E6 PREMIUM LV (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011IAKL02,39123900 +What is the hs code for METHOCEL E6 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011I9PL01,39123900 +What is the hs code for METHOCEL E6 PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011J36L02,39123900 +What is the hs code for METHOCEL E6 PREMIUM LV ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011IBTL01,39123900 +What is the hs code for SILDENAFIL CITRATE USP (BHN BAKU OBAT) COA SLC 103 07 19,29335990 +What is the hs code for METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I6Q001,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I6Q001,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I5R002,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180IC4002,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I73002,39123900 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539801,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539799,35051010 +What is the hs code for SPIRAMYCIN (BHN BAKU OBAT) COA 190117080M,29419000 +"What is the hs code for SERASENSE SF CM5 (BAHAN BAKU KOSMETIK) COA PA90729040,42,44,46,48,50,52,54",29319049 +"What is the hs code for EDIBLE BOVINE GELATINE (BAHAN BAKU OBAT ), COA 5001907255,8279",35030049 +What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 83001722K,38249999 +What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769017443K,38249999 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1901606,38249999 +"What is the hs code for MELANOSTATINE-5BG (50PPM) BHN BAKU KOSMETIK, COA 817047448K",38249999 +What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) COA 1805516,38249999 +"What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK), COA 1835314",38249999 +"What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK), COA 769017443K",38249999 +"What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK), COA 828017197K",38249999 +"What is the hs code for TYROSTAT-11 (BHN BAKU KOSMETIK), COA 784027602K",38249999 +"What is the hs code for MELANOSTATINE-5BG (50PPM) (BHN BAKU KOSMETIK), COA 817047448K",38249999 +"What is the hs code for DL-PANTHENOL 50 L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01808637",29362400 +"What is the hs code for D-PANTHENOL ,20KG PAIL PE BHN BAKU KOSMETIK) COA TL01904043",29362400 +"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219030054",29420000 +"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00588582,589482,589484",29420000 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180121,0708190001",29420000 +What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18100325,29362800 +"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000183324",29362900 +What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91907318,21069059 +What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91907294,21069059 +What is the hs code for VP DN03 (BHN BAKU MAKANAN) COA XW91907385,21069059 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418118,29362900 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418118,29362900 +"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01903025",29362400 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01903025,32",29362400 +What is the hs code for D-BIOTIN (BHNN BAKU SUPLEMEN) COA UE01905011,29362900 +What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20190202,29362800 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011,29362900 +What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20190202,29362800 +"What is the hs code for ASCORBIC ACID, 25KG BOX /ALU (BHN BAKU SUPLEMEN) COA TL01902123",29362700 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01903356",29362700 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01902117,2123",29362700 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01902117",29362700 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01902117",29362700 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01902117",29362700 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT19020008,32041900 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT19070873",29362100 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT19070873,29362100 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT19070873",29362100 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01902117",29362700 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT19070873",29362100 +"What is the hs code for ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01902117",29362700 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT19020008,32041900 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011,29362900 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90602227,29362200 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01902117",29362700 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ90602227,29362200 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90602227,29362200 +"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90602221,2227",29362200 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ90602221,29362200 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00619039,29362300 +"What is the hs code for ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01902117",29362700 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011,29362900 +What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPLEMEN) COA XH20190202,29362800 +"What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01906715",29362400 +"What is the hs code for ASCORBIC ACID, 25 KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01902117",29362700 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011,29362900 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90602227,29362200 +"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01906715",29362400 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01902123",29362700 +"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL01906715",29362400 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ90710155,29362300 +What is the hs code for PX 103070 -C3 (BHN BAKU MAKANAN) COA XW91907097,21069059 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ90710155,29362300 +"What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453425151",39139090 +What is the hs code for ETHOCEL STANDARD 10 PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D184J57021,39123900 +"What is the hs code for ETHOCEL STANDARD 14 PREMIUM (BHN BAKU OBAT UTK PEWARNA TABLET), COA D184J24021",39123900 +"What is the hs code for TSPL-30-ID (IKG) (BHN BAKU KOSMETIK) , COA 807011",38249999 +"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB290719, LB140619",39123900 +"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B170719",39123900 +"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG030819",39123900 +"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP(BHN BAKU OBAT) COA 101902024,SAMPLE NO COMM VALUE",28183000 +What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M-31.0PCT (BHN BAKU OBAT) COA 101929014,28161000 +"What is the hs code for OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT691567",32151900 +What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110017,29420000 +What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110017,29420000 +"What is the hs code for GENIVIDA (TM) TG, 1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT17080005",29329990 +What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA.0000068305,29309090 +What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA.0000068305,29309090 +"What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK),COA 0000068309",29309090 +"What is the hs code for THIOCARE (R) H105 83PCT (BHN BAKU KOSMETIK), COA 0000068325",29309090 +What is the hs code for CEFTIZOXIME SODIUM (BHN BAKU OBAT) COA S600300,29419000 +What is the hs code for DICLOFENAC POTASSIUM BP 2019 (BHN BAKU OBAT) COA DFK/19080092,29224900 +What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1903163183,29372900 +What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG190802,29362700 +What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1908075 S/D 86,29224900 +What is the hs code for OMEPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA OP0219C036,30039000 +What is the hs code for ONDANSETRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA 18OS003,29332900 +"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED) BHN BAKU OBAT, COA. M531278,292,279,280",29411019 +"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX POWDER) ,BHN BAKU OBAT, COA. M484164,165",29411019 +What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA S100100,29419000 +What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA S701900,29419000 +What is the hs code for OPADRY AMB II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620358,38249999 +What is the hs code for WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK)COA EG138-190601,38249999 +What is the hs code for INCA INCHI ORGANIC LIPACTIVE WA (BHN BAKU KOSMETIK)COA II190608-AI-D-BIO,38249999 +What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 201900091,28183000 +What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK)COA CHP1190822,38249999 +What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK)COA NMP-L-291069,38249999 +What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012239,38249999 +What is the hs code for SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-012229,38249999 +What is the hs code for SK BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK) COA NMSP-D-011018,38249999 +What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK)COA OHA-030669,38249999 +What is the hs code for SK BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK) COA CPG-391069,38249999 +What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-011079,38249999 +What is the hs code for 87-28-5 SALICYLIC ACID ETHYLENE GLYCOL ESTER/GLYCOL SALICYLATE (B.BAKU KOSMETIK)COA.DE190825,38249999 +What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619775,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620623,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620622,38249999 +What is the hs code for ACRYL-EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619766,39061090 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619790,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620619,38249999 +What is the hs code for OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619773,38249999 +What is the hs code for OPADRY RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619767,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619780,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619839,38249999 +What is the hs code for OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619758,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619932,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620620,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619932,38249999 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ90710156,29362300 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT19070875,29362100 +"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ90710156,58",29362300 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01907092,7109",29362700 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01907062,92",29362700 +"What is the hs code for LEVOFLOXACIN HEMIHYDRATE (FREE ALKALINE) BHN BAKU OBAT, COA C008-1906604",29349990 +What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-190302,29397900 +What is the hs code for POVIDONE K30 (BHN BAKU OBAT) COA PK30-190807F21,39059990 +What is the hs code for INOSITOL (BHN BAKU OBAT) COA 201907054,29061300 +What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 1908052,29349990 +What is the hs code for CITICOLINE SODIUM (BHN BAKU OBAT) COA CDP-C-190702,29349990 +What is the hs code for PROCATEROL HCL HEMIHYDRATE MICRONIZED (BHN BAKU OBAT) COA 860050719M1,29337900 +What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19060014,29362500 +What is the hs code for MEG-3 (TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19060014,29362500 +What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19060014,29362500 +"What is the hs code for TSPL-30-ID (IKG) (BHN BAKU KOSMETIK) , COA 807011",38249999 +"What is the hs code for GELATINE (BAHAN BAKU OBAT ), COA 5131906514,6511,4402,6514,6511,4402,6514...",35051090 +"What is the hs code for PRAYPHOS DKP FG (BAHAN BAKU KOSMETIK), COA 191634",29420000 +What is the hs code for FEED GRADE DICALCIUM PHOSPHATE POWDER (BHN BAKU UNTUK PAKAN TERNAK) COA TB1907003,28352510 +What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 190328,29329990 +What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 182975,13021990 +What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 190809,13021990 +What is the hs code for CLAIRJU (BHN BAKU KOSMETIK) COA 190809,13021990 +What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 190804,38249999 +What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 191234,13021990 +"What is the hs code for EDIBLE BOVINE GELATINE 200 BLOOM...(BHN BAKU OBAT), COA 5001907208, 908268,SAMPLE NO COMM VALUE",35051090 +"What is the hs code for EDIBLE BOVINE GELATINE INSTANT 200 (BHN BAKU OBAT) COA S18D03 , SAMPLE NO COMM VALUE",35051090 +"What is the hs code for EFFERSODA (R) 12 BHN BAKU OBAT, COA 121909773",28363000 +What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA.M113258,29339990 +What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113270,29339990 +What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113270,29339990 +"What is the hs code for KETAMINE HCL (BHN BAKU OBAT), COA 0162419P",29223900 +"What is the hs code for DEXAMETHASONE BP2010/USP41 (BHN BAKU OBAT) COA.NED190804, NED190805",29372200 +What is the hs code for MELOXICAM BP/EP (BHN BAKU OBAT) COA HMXCPN002,29341000 +"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190809, 20190815",17029019 +"What is the hs code for PERMETHRIN (PHARMA GRADE) BHN BAKU OBAT COA 195046014, 195046015",29163990 +"What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 20410819, 20430819",29359000 +"What is the hs code for SULPHAMETHOXAZOLE BP MICRONISED (BHN BAKU OBAT) COA 19750819,19780819, 19860819...",29359000 +"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A, 20KG BAG (BHN BAKU MAKANAN) COA WB00719445,446",29362100 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A 20KG BAG (BHN BAKU MAKANAN) COA WB00719446,29362100 +"What is the hs code for ETHAMBUTOL (BHN BAKU OBAT) COA N9058600 S/D 605,985 S/D 988",29051400 +What is the hs code for METAMIZOLE SODIUM REGULAR GRADE (BHN BAKU OBAT) COA 1905550,29331900 +"What is the hs code for METAMIZOLE SODIUM INJECTABLE GRADE (BHN BAKU OBAT) COA 18121897, 18121899",29331900 +"What is the hs code for THEOPHYLLINE (BHN BAKU OBAT) COA 19310,19311,19312",29395900 +What is the hs code for PIPEMIDIC ACID (BHN BAKU OBAT) COA 18051,29335990 +What is the hs code for ACETYLSALICYLIC ACID 40/80 ( BHN BAKU OBAT) COA 191624,29182200 +What is the hs code for ACETYLSALICYLIC ACID 20/60 (BHN BAKU OBAT) COA 191576,29182200 +"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91908052,8053,8054,8055",29420000 +What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT19020043,29362800 +"What is the hs code for ETHYL PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01902805, TL01906808",29362400 +"What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0718110176",29420000 +"What is the hs code for PARSOL MCX ,25KG PC (BHN BAKU KOSMETIK) COA 0519010008",29420000 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT19060053,29362800 +"What is the hs code for PARSOL HMS, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0419060155",29420000 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18120377,29362800 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19060053,29362800 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519122,29362900 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00619039,29362300 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00619039,29362300 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519122,29362900 +What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPLEMEN) COA XH20190202,29362800 +"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01904028, UE01904029",32041900 +"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19040028, UT19060053",29362800 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19060053,29362800 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU SUPLEMEN) COA UT19040086,29362400 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19060053,29362800 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ80813230,29362500 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT19030176",29362100 +"What is the hs code for DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01808637",29362400 +"What is the hs code for D-PANTHENOL , 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01904043",29362400 +"What is the hs code for NIACINAMIDE USP (BHN BAKU KOSMETIK) COA 19-20/NMD(P)/U/078, 079 ,081,082,083",29362900 +What is the hs code for METHYLPREDNISOLONE (BHN BAKU OBAT) COA F-04 1064-190801,29372900 +"What is the hs code for CATECHINS (TEA EXTRACT) TEAVIGO (1KG)(BHN BAKU KOSMETIK), COA 907241",21012020 +"What is the hs code for INSTANT TEA POWDER (TEA EXTRACT) BHN BAKU MAKANAN, COA 909061",9022010 +What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA S701900,29419000 +What is the hs code for CEFOTAXIME SODIUM STERILE USP (BHN BAKU OBAT) COA S201000,29419000 +"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED) BHN BAKU OBAT, COA. M531341,343,344,345",29411019 +"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX POWDER) ,BHN BAKU OBAT, COA. M484184,183",29411019 +What is the hs code for BROMELAIN 1600 GDU UNITS/G (BHN BAKU OBAT) COA 0162419P,35079000 +What is the hs code for SK BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK)COA MSEEC-050918,38249999 +What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK)COA NMP-L-360179,38249999 +What is the hs code for SK BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-050218,38249999 +"What is the hs code for AMPICILLIN SODIUM (STERILE) BP (BHN BAKU OBAT), COA SI/AMP/00660819",29411020 +"What is the hs code for PANTOPRAZOLE SODIUM (STERILE) BHN BAKU OBAT, COA SI/PPZ/00450819",29333990 +What is the hs code for PROPYPHENAZONE (ST) (BHN BAKU OBAT) COA 1804031,29331100 +What is the hs code for POTASSIUM IODIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA KID/E/1920/013,28276000 +What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-1470719,29334910 +What is the hs code for ETHOCEL STANDARD 20 PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D184J14021,39123900 +What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL 36PCT-39PCT...(BHN BAKU OBAT UTK PEWARNA TABLET) COA WP804552,32151900 +What is the hs code for FD AND C RED #40 ALLURA RED AC AL... (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP806874,32151900 +What is the hs code for ERYTHROSINE AL 38PCT-42PCT... (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP798864-1,32151900 +What is the hs code for ERYTHROSINE AL 38PCT-42PCT... (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP798863:1,32151900 +What is the hs code for FD AND C BLUE #1/BRILLIANT BLUE ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA WP805969:AZ1029,32151900 +What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9121749,38210090 +What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9189033,38210090 +What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9148976,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8344948,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9070604,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9024916,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9070604,38210090 +What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8338681,38210090 +What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8338681,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9189048,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9189048,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8155535,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9105844,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9113978,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9057852,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8155535,38210090 +What is the hs code for DIFCO BEEF EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7296821,38210090 +What is the hs code for BACTO MALT EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8290986,38210090 +What is the hs code for BACTO MALT EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8290986,38210090 +What is the hs code for BACTO PROTEOSE PEPTONE NO.3 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9070621,38210090 +What is the hs code for BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8312754,38210090 +What is the hs code for BACTO CASAMINO ACIDS EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8312714,38210090 +What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ90107004,29420000 +"What is the hs code for MEG-3 '30' N-3 INF OIL ,4,5KG PJUG (BHN BAKU SUPLEMEN) COA TS00012344",29362500 +"What is the hs code for CAROPHYLL YELLOW 10PCT, 5KG BAG ALU (BHN BAKU OBAT UTK PAKAN TERNAK) COA UE01901005",32041900 +"What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) , COA 909219",38249999 +"What is the hs code for KF-6028 (16KG) BHN BAKU KOSMETIK, COA 907215",38249999 +"What is the hs code for KF-6028 (16KG) BHN BAKU KOSMETIK, COA 907215",38249999 +"What is the hs code for KSG-15 (16KG) BHN BAKU KOSMETIK, COA 908344",38249999 +What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9177402,38210090 +What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01B204M,38210090 +What is the hs code for BOTTLE TERGITOL 4 XLT4 SUPPLEMENT 100 ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH SLCB3712,38210090 +"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH9144942,72793",38210090 +What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9185635,38210090 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9144942,38210090 +What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9185623,38210090 +What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9193139,38210090 +What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9199251,38210090 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9178482,38210090 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA ROA238193,28363000 +"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8331811",38210090 +"What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9219600",38210090 +What is the hs code for BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9206582,38210090 +What is the hs code for SOLUTION BACTERIOSTAT CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 19G2256203,38210090 +What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8331811,38210090 +What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255977,38210090 +What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9148762,38210090 +"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9128557",38210090 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9084661,38210090 +What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9128533,38210090 +What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9107597,38210090 +What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9219600,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9107532,38210090 +"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9141938",38210090 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9021617,38210090 +What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8317927,38210090 +What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8297883,38210090 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9091912,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8312962,38210090 +What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255977,38210090 +What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9084840,38210090 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9079951,38210090 +What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9107576,38210090 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9142666,38210090 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9133762,38210090 +What is the hs code for BOTTLE L-ARABINOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9189637,38210090 +"What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9219600",38210090 +What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9128557,38210090 +What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9128533,38210090 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9212136,38210090 +What is the hs code for BOTTLE L-ARABINOSE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9199186,38210090 +What is the hs code for BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9045711,38210090 +What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8331811,38210090 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183841,38210090 +What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8317927,38210090 +What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9127592,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8312962,38210090 +What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 82559777,38210090 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9021613,38210090 +What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9148762,38210090 +What is the hs code for BOTTLE PLATE COUNT AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9128557,38210090 +What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9170916,38210090 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9142666,38210090 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 9133762,38210090 +What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9025695,38210090 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8354563,38210090 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9084661,38210090 +What is the hs code for BOTTLE TEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9128533,38210090 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9211782,38210090 +What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9150544,38210090 +What is the hs code for TUBE CRYSTAL E/ ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9135718,38210090 +What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01B203M,38210090 +What is the hs code for BOTTLE M-PA-C AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 83555632,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9128828,38210090 +What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9010685,38210090 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161608,38210090 +What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8129682,38210090 +"What is the hs code for BOTTLE PLANT COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9128557,9189611",38210090 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9206386,38210090 +What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 9170916,38210090 +What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9107576,38210090 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142666,38210090 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9205168,38210090 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9084661,38210090 +What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9148762,38210090 +What is the hs code for PAIL BUFFERED PEPTONE WATER 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9133516,38210090 +What is the hs code for PAIL LAURYL TRYPTOSE BROTH 2KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9084715,38210090 +What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9114508,38210090 +What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8304929,38210090 +What is the hs code for BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8305630,38210090 +What is the hs code for BOTTLE MICRO INOCULUM BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8311696,38210090 +What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9175490,38210090 +What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9028828,38210090 +What is the hs code for BOTTLE L-ARABINOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9189637,38210090 +What is the hs code for BOTTLE DULCITOL 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8337666,38210090 +What is the hs code for BOTTLE TREHALOSE 10G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9066673,38210090 +What is the hs code for BOTTLE EC MEDIUM WQITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161593,38210090 +What is the hs code for BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084697,38210090 +What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9142723,38210090 +What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9224870,38210090 +What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9021602,38210090 +What is the hs code for BOTTLE NITRATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9148558,38210090 +What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025865,38210090 +What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9219600,38210090 +What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9112988,38210090 +What is the hs code for BOTTLE STOCK CULTURE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8012616,38210090 +What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8134767,38210090 +What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 8317917,38210090 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH B01B165M,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 83377152,38210090 +What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084966,38210090 +What is the hs code for BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9182087,38210090 +What is the hs code for BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8032739,38210090 +What is the hs code for BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9206582,38210090 +What is the hs code for BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9189647,38210090 +What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9150805,38210090 +What is the hs code for BOTTLE BLOOD AGAR BASE 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9023839,38210090 +What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9010685,38210090 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9168641,38210090 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161683,38210090 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9212136,38210090 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9212136,38210090 +What is the hs code for KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9172854,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8291589,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 9107532,38210090 +What is the hs code for BOTTLE BACTO AGAR 454G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9105960,38210090 +What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161791,38210090 +What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8331811,38210090 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9141938,38210090 +"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9021617,9085997",38210090 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8183841,38210090 +What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8317927,38210090 +What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) COA 9127592,38210090 +What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297883,38210090 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8271693,38210090 +"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9091867,9161608",38210090 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9091912,38210090 +"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKIROORGANISME) BATCH 8312962, 9142767",38210090 +What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8255977,38210090 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9021613,38210090 +What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084840,38210090 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9092586,38210090 +What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9148762,38210090 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9079951,38210090 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9112849,38210090 +What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9128557,38210090 +What is the hs code for BOTTLE RAPPAPORT VASSILLIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9029985,38210090 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084525,38210090 +What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8317859,38210090 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH 9161603,38210090 +What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9107576,38210090 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9014523,38210090 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9142666,38210090 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9021643,38210090 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9025917,38210090 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 91337624,38210090 +What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9025695,38210090 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA PENGEMBANGAN MIKROORGANISME) BATCH 8354563,38210090 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084661,38210090 +What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9107597,38210090 +What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8317797,38210090 +What is the hs code for BOTTLE KOSER CITRATE MEDIUM 500G ( MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8054971,38210090 +What is the hs code for TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA658526,32151900 +What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA P-64,29397900 +What is the hs code for MOMETASONE FUROATE MICRONIZED (BHN BAKU OBAT) COA NX2467M,29372200 +What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NZ2112M,29372200 +What is the hs code for FEED GRADE DICALCIUM PHOSPHATE POWDER (BHN BAKU UNTUK PAKAN TERNAK) COA TB1908014,28352510 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620274,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620310,38249999 +What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620309,38249999 +What is the hs code for ACRYL-EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620309,39061090 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621255,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621130,39061090 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH6202943,38249999 +What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 19E3002,28399000 +What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA C00991UP,29053200 +What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA. 20190903,17023010 +"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK ,COA 02/19GL4",28399000 +"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK, COA 02/19LG4, SAMPLE NO COMM VALUE",28399000 +What is the hs code for METHOCEL K100M PREMIUM CR (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180J4M001,39123900 +What is the hs code for ALLOPURINOL USP (BHN BAKU OBAT) COA 190054AY3ARII,29335990 +What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 02/18GAAK,28399000 +"What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU KOSMETIK) COA.02/18GAAK, SAMPLE NO COMM VALUE",28399000 +What is the hs code for APIFIL CAR (BAHAN BAKU OBAT) COA. 173268,28399000 +What is the hs code for CAPRYOL 90 BF (BAHAN BAKU OBAT) COA 175088,28399000 +"What is the hs code for PYRAZINAMIDE EP/USP (BHN BAKU OBAT) COA WPOZ 086 H 19,WHOPZ 087 H 19...",29339990 +What is the hs code for MIRANOL C2M CONC NP 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP907433R,34029099 +"What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT692474",32151900 +"What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT692170",32151900 +"What is the hs code for OPALUX PINK (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT692475",32151900 +What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA.M113258,29339990 +What is the hs code for LIDOCAINE BASE (BHN BAKU OBAT) COA. 188117,29242990 +What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA.MLAH0430819,29341000 +What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT)COA L105712819,17021100 +What is the hs code for MAPROTILINE HCL (BHN BAKU OBAT) COA 1950002228,29214900 +What is the hs code for HU FOXP3 BUFFER SET 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9035607,38210090 +"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9169895",38210090 +"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9148525",38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8219521,38210090 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI-LYO (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9157516,38210090 +What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9049874,38210090 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9172664,38210090 +What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9204535,38210090 +"What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9196206",38210090 +What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9214700,38210090 +What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9116847,38210090 +What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161530,38210090 +What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9192091,38210090 +What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9192085,38210090 +"What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9203956",38210090 +What is the hs code for CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8325512,38210090 +What is the hs code for BD CST BEADS KIT 50 TESTS(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 90399,38210090 +What is the hs code for CD14 PE MPHIP9 100TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9134580,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8207980,38210090 +"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH9169895,78374",38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9148525,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8219521,38210090 +What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9039992,38210090 +What is the hs code for CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8325512,38210090 +What is the hs code for CD19 FITC 4G7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9039818,38210090 +What is the hs code for MS CD3 MOICPX PE-CY7 17A2 50UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9108972,38210090 +What is the hs code for PERM/WASH BUFFER 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8330934,38210090 +"What is the hs code for HU CD40 FITC 5C3 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9017856",38210090 +What is the hs code for HUHL.A-DR FITC L243 (G46-6) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9042902,38210090 +What is the hs code for MS LGG 1KPA LTCL-FITC MOPC-21 100TST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8241736,38210090 +What is the hs code for CYTOFIX/CYTOPERM W/GOLGLPLUG KIT 250TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8330748,38210090 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9172653,38210090 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9025804,38210090 +What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP A (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9171702,38210090 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9025804,38210090 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025804,38210090 +What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9113721,38210090 +What is the hs code for ANTI-HLA-DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9136649,38210090 +What is the hs code for CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9162587,38210090 +What is the hs code for CD10 PE HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9178421,38210090 +What is the hs code for HU CD41A PE HIP8 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9010710,38210090 +What is the hs code for MS TH1/TH2/TH17 CBA KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9221635,38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9025667,38210090 +What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8291707,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 9148525,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219521,38210090 +What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233839,38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8243742,38210090 +What is the hs code for TUBE PENASE CONCENTRATE 10X20ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9190501,38210090 +What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8312963,38210090 +What is the hs code for BOTTLE FOLIC ACID ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9176696,38210090 +What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8248932,38210090 +What is the hs code for BOTTLR B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9176695,38210090 +What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9142512,38210090 +What is the hs code for BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9017792,38210090 +What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9196893,38210090 +What is the hs code for BOTTLE LACTOBACILLI MRS BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9039670,38210090 +What is the hs code for BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9183217,38210090 +What is the hs code for BOTTLE LACTOBACILLI AGAR AOAC 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8155567,38210090 +What is the hs code for PDX-1 ALEXA 488 658A5 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8172732,38210090 +What is the hs code for CD4 APC SK3 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 9135596,38210090 +What is the hs code for CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9092796,38210090 +What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9113721,38210090 +What is the hs code for ANTI-HLA-DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9136649,38210090 +What is the hs code for HU CD41A PE HIP8 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9010710,38210090 +What is the hs code for HU CD209 APC DCN46 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9123890,38210090 +What is the hs code for HU CD64 FITC 10.1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9017758,38210090 +What is the hs code for HU CD274 PE MIH1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9032800,38210090 +What is the hs code for HU CD206 FITC 19.2 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8191532,38210090 +What is the hs code for CD11C PE CE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9157617,38210090 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9025804,38210090 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA ROA235197,28363000 +"What is the hs code for ACRYLPOL 980 (20KG) BAHAN BAKU KOSMETIK, COA 11519073,11519074",39069099 +"What is the hs code for MALTODEXTRIN DE10-12 (BAHAN BAKU MAKANAN ), COA 20190905",17029019 +"What is the hs code for OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET), COA WP816958",32151900 +What is the hs code for MELANOSTATINE 5-BG(50PPM) (BHN BAKU KOSMETIK) COA 817047558K,38249999 +What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829017384K,38249999 +What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769017443K,38249999 +What is the hs code for LANACHRYS 2B PF (BHN BAKU KOSMETIK) COA 793057327K,38249999 +"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK), COA 1901606",38249999 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1907705,38249999 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1907706,38249999 +What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5555018,38249999 +What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830017310K,38249999 +What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769017443K,38249999 +What is the hs code for LANABLUE (DISC) (BHN BAKU KOSMETIK) COA 5533018,38249999 +What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828017058K,38249999 +What is the hs code for TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784027602K,38249999 +"What is the hs code for CEFADROXIL MONOHYDRATE (PURIDROX TM POWDER) BHN BAKU OBAT, COA B334648 ,649,644",29419000 +What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180J7B001,39123900 +What is the hs code for METHOCEL K4M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J33002,39123900 +What is the hs code for METHOCEL K15M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I8Q003,39123900 +What is the hs code for METHOCEL K15M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J5L003,39123900 +What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J4B003,39123900 +What is the hs code for METHOCEL K100M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180J4J001,39123900 +What is the hs code for METHOCEL K15M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180J5L003,39123900 +"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219030054",29420000 +"What is the hs code for D-PANTHENOL 75L ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01906334",29362400 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01905011,29362900 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01905011,29362900 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18120037,29362600 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01904029,32041900 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT19020008,32041900 +What is the hs code for CALCIUM ASCORBATE 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00119006,29362700 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011,29362900 +What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT19020043,29362800 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19030046,29362800 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19030004,29362900 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT19040177,29362100 +What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPLEMEN) COA XH20190202,29362800 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19030021,29362400 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010015,29362900 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19030014,29362900 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519137,29362900 +"What is the hs code for CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00519015",29362700 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18120037,29362600 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19030021,29362400 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT19020008,32041900 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01902018",29362700 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18120037,29362600 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11190103",29362500 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90610138,29362300 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90610138,29362300 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90610138,29362300 +"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ90610138, UQ90710156",29362300 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00619038,29362300 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00619038,29362300 +"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00619038,WB00619039",29362300 +What is the hs code for DRY VITAMIN D3 100CWS/AM (BHN BAKU SUPLEMEN) COA UT19060021,29362900 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT19040177,29362100 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT19020008,32041900 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01904029,32041900 +"What is the hs code for CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00519015",29362700 +What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT19020043,29362800 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19030014,29362900 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010015,29362900 +"What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11903011, OP11903019",29362900 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011,29362900 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011,29362900 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT19060021,29362900 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01904029,32041900 +"What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01906728",29362400 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010015,29362900 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519051,29362200 +What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1901010,29362300 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519051,29362200 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18120056,29362100 +"What is the hs code for ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ90206035",29362700 +"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX BAKU MAKANAN) COA TL01906718",29362400 +"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01907732",29362400 +"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01904045",29362400 +"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01904045",29362400 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01902018",29362700 +What is the hs code for VITAMIN PREMIX 103093-A (BHN BAKU MAKANAN) COA XW91908194,21069059 +What is the hs code for VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW91908221,21069059 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01902018",29362700 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19050090,29362900 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01904045",29362400 +"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01907732",29362400 +What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01905843,29362700 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01906728,29362400 +"What is the hs code for ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01902018",29362700 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01903366",29362700 +What is the hs code for DWI-BI (BHN BAKU MAKANAN) COA XW91908263,21069059 +What is the hs code for ADSORB AFLA (BHN BAKU UNTUK PAKAN TERNAK) COA 124,25081000 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA MTP22219,28363000 +"What is the hs code for BICAR PHARMA API HIGH PURITY (1X25KG FREE SAMPLE)NO COMMERCIAL VALUE,COA MTP22219",28363000 +"What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00419415",29362700 +"What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00419415",29362700 +What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110014,29420000 +"What is the hs code for SODIUM ASCORBATE 99PCT TG,20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00419415",29362700 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19070015,32030010 +"What is the hs code for ASCORBYL PALMITATE ,25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ90706164,6165",29362700 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18120041,32041900 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19070015,32030010 +What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110014,29420000 +What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19060014,29362500 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100(BHN BAKU SUPLEMEN) COA UT19070056,29362100 +What is the hs code for METAMIZOLE SODIUM TYPE T 25 KG (BHN BAKU OBAT) COA C0029,29331100 +What is the hs code for SARBUTAMOL SULFATE BP (BHN BAKU OBAT) COA 029D041,29051400 +"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 070719, 250719",25070000 +"What is the hs code for MEG-3 '30' N-3 INF OIL ,4,5KG PJUG (BHN BAKU SUPLEMEN) COA TS00012344",29362500 +What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA. 20190815,11081200 +What is the hs code for GINGSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO190101,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-190805,38249999 +What is the hs code for INCA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK) COA II190608-AI-D-BIO,38249999 +What is the hs code for HORSECHESNUT PHYTELENE EG 042 (BHN BAKU KOSMETIK) COA EG402-190801,38249999 +What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA190801,38249999 +What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA VIV1900701-BGBIO,38249999 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180092 ,SAMPLE NO COMM VALUE",29420000 +What is the hs code for D-RIBOSE (BHN BAKU OBAT) COA ZN190912,29400000 +"What is the hs code for SORBITOL SPECIAL TM MDF 85, SORBITOL( BHN BAKU OBAT) COA M19013",29054400 +"What is the hs code for METAMIZOLE SODIUM (BHN BAKU OBAT) COA 1905465 S/D 67,1906726, 28",29331900 +What is the hs code for CLOMIPHENE CITRATE USP/EP (BHN BAKU OBAT ) COA 201809290013,29221990 +What is the hs code for GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 19249,38249999 +What is the hs code for LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 19076,38249999 +What is the hs code for LEUCOCYANIDINDS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 19076,38249999 +What is the hs code for DIOSMIN (BHN BAKU OBAT) COA 4003-20190807,29389000 +What is the hs code for CLARITHROMYCIN (BHN BAKU OBAT) COA 128-190417-1,29415000 +What is the hs code for CLAIR BLACHE-II (BHN BAKU KOSMETIK) COA 191100,38249999 +What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 190106,13021990 +What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 182975,13021990 +What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 190728,13021990 +What is the hs code for ROSE HIPS LIQUID B (BHN BAKU KOSMETIK) COA 183099,13021990 +What is the hs code for HYOSCINE BUTYL BROMIDE EP/BP (BHN BAKU OBAT) COA.2520519,29391900 +What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED(BHN BAKU OBAT UTK PAKAN TERNAK) COA. ROA3719,28363000 +"What is the hs code for METHYLPREDNISOLONE (BHN BAKU OBAT) COA F-04 1064-190801, F-04,1064-190603",29372900 +What is the hs code for IPRATROPIUM BROMIDE (BHN BAKU OBAT) COA 1950000929,29397900 +What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BJ05707,29349990 +"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91909076,77",29420000 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708190001, 40 S/D 44",29420000 +"What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0718110176, 0719070172",29420000 +What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001529534,29420000 +"What is the hs code for BEAUPLEX (TM) VH, 5KG BAG ALU (BHN BAKU KOSMETIK) COA UF19020045",29420000 +What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES1901168,29420000 +What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001529534,29420000 +"What is the hs code for PARSOL MAX, 25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0918110046",29420000 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT18120077,32041900 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01904029,32041900 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011,29362900 +What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT19020043,29362800 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19030049,29362800 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19030004,29362900 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519137,29362900 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT19040177",29362100 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT19050090,29362900 +What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPLEMEN) COA XH20190202,29362800 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1903019,29362900 +What is the hs code for CEFTAZIDIME BUFFERED (BHN BAKU OBAT) COA S100900,29419000 +What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA S702300,29419000 +"What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) , COA 909220",38249999 +"What is the hs code for KF-6038 (16KG) BHN BAKU KOSMETIK, COA 909220",38249999 +"What is the hs code for GENIVIDA (TM) TG ,1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT19060002",29329990 +"What is the hs code for GENIVIDA (TM) TG, 1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT19060002",29329990 +"What is the hs code for GENIVIDA (TM) TG, 1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT19060002",29329990 +"What is the hs code for GENIVIDA (TM) TG, 1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT19060002",29329990 +What is the hs code for VIT. A PALM. 1.0 M + VIT.D3 100'000 (BHN BAKU SUPLEMEN) COA UT19070073,29362100 +What is the hs code for B-CAROTENE 10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT19030004,32041900 +"What is the hs code for GENIVIDA (TM) TG, 1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT19060002",29329990 +"What is the hs code for GENIVIDA (TM) TG, 1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT19060002",29329990 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18090032,32041900 +"What is the hs code for COATED ASCORBIC ACID, TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01908316",29362700 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19070015,32030010 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19070056,29362100 +What is the hs code for FERROUS FUMARATE USP/EP (BHN BAKU OBAT) COA.2019/173,29171900 +What is the hs code for CETIRIZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA 18019CZ6RII,29335990 +"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20190701, XH20190702",29362800 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621632,38249999 +What is the hs code for OPADRY AMB MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620818,38249999 +What is the hs code for OPADRY AMB II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620878,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620585,38249999 +What is the hs code for OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620873,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621359,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621358,38249999 +What is the hs code for OPADRY PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620876,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621106,38249999 +What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620817,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620294,38249999 +What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620819,38249999 +What is the hs code for ACRYL-EZE II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620869,39061090 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620870,38249999 +What is the hs code for OPADRY GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620871,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620935,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621130,39061090 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620972,38249999 +What is the hs code for OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620970,38249999 +What is the hs code for ACRYL-EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620969,39061090 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621254,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620968,39061090 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620967,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619248,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620310,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621364,38249999 +What is the hs code for ACRYL-EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620422,39061090 +What is the hs code for ACRYL-EZE II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620422,39061090 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621365,38249999 +What is the hs code for ACRYL-EZE II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620307,39061090 +"What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 22220919, 22230919,22240919, 22260919,22200919",29359000 +"What is the hs code for SULPHAMETHOXAZOLE BP MICRONISED (BHN BAKU OBAT) COA 22200919,22210919,20190819",29359000 +"What is the hs code for TRIMETHOPRIM BP MICRONISED (BHN BAKU OBAT) COA TMP19080680,19090685, 19090688",29335990 +What is the hs code for DRUM KOSONG (EMPTY DRUMS) FREE OF COST NO COMMERCIAL VALUE,48192000 +"What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 22700919,22710919...",29359000 +What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 175450,28399000 +What is the hs code for SUPPOCIRE A PELLETS (BAHAN BAKU OBAT) COA 18E2201,28399000 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN540226,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN540219,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN540229,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN540227,35051010 +What is the hs code for ROSUVASTATIN CALCIUM (BHN BAKU OBAT) COA RVM1970719,29359000 +What is the hs code for ECHINACEA ANG. DRY PURIF.EX (BHN BAKU SUPLEMEN) COA 32767/M1,13021990 +What is the hs code for P.GINGSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 32347/M1,13021990 +What is the hs code for CENTELLA ASIATICA /PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 32811/H1,38249999 +What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1903163183,29372900 +What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1907361843,29362600 +"What is the hs code for PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0319050802 S/D 804, 807",29420000 +"What is the hs code for ARGAN OIL ,10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0025591",29362500 +"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219030054",29420000 +"What is the hs code for PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0319050807 S/D 809,11",29420000 +"What is the hs code for PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0819030068",29420000 +What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES1901168,29420000 +"What is the hs code for ARGAN OIL ,10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0025591",29362500 +"What is the hs code for PARSOL MAX, 25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 091810046",29420000 +What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0418110233,29420000 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01905011,29362900 +"What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0025591",29362500 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01905011,29362900 +What is the hs code for METHISOPRINOL (BHN BAKU OBAT) COA MTP9050150,29349990 +What is the hs code for ASTAXANTHIN OIL 10PCT (BHN BAKU OBAT) COA 1903231,32030010 +What is the hs code for ASTAXANTHIN WATER-SOLUBLE 1PCT (BHN BAKU OBAT) COA 1904051,32030010 +"What is the hs code for CEFADROXIL MONOHYDRATE (PURIDROX TM POWDER) BHN BAKU OBAT, COA B334650,653 S/D 655",29419000 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA WID,38249999 +What is the hs code for PROMOIS WG-SIG (BHN BAKU KOSMETIK) COA WBI,38249999 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA WGM,38249999 +What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-013159,38249999 +What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK)COA BAG-021879,38249999 +What is the hs code for SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK) COA U190917,38249999 +What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA MCP-N-042189,38249999 +What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012239,38249999 +What is the hs code for SK BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK)COA MSEEC-012039,38249999 +What is the hs code for SK BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-011049,38249999 +What is the hs code for SK BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK) COA NMSP-D-023028,38249999 +What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-040479,38249999 +What is the hs code for SK BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK) COA CPG-391069,38249999 +What is the hs code for SK BIOLAND YUZU EXTRACT (BHN BAKU KOSMETIK) COA CJUBD-063059,38249999 +What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK)COA ARP-321249,38249999 +What is the hs code for SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-062928,38249999 +What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 101969012,28161000 +"What is the hs code for INSTANT TEA POWDER (TEA EXTRACT) BHN BAKU MAKANAN, COA 909201,909061",9022010 +"What is the hs code for MEG-3 '30' N-3 INF OIL ,4,5KG PJUG (BHN BAKU SUPLEMEN) COA TS00012761",29362500 +"What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT19030006,07",29362100 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE,25KG BOX (BHN BAKU MAKANAN) COA TL01908287,8292",29362700 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01908270,74,79,87",29362700 +What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT19060015,29362500 +What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA 176574,28399000 +What is the hs code for TEFOSE 63 BF (BAHAN BAKU OBAT) COA 176277,28399000 +What is the hs code for TEFOSE 63 BF (BAHAN BAKU OBAT) COA 176334,28399000 +What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN2830919,29221990 +What is the hs code for SK BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK)COA MSEEC-012039,38249999 +What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK)COA HMVBD-011079,38249999 +What is the hs code for SK BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-062928,38249999 +What is the hs code for SK BIOLAND LICORICE EXTRACT (BHN BAKU KOSMETIK) COA GGB-012759,38249999 +What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA MCP-N-042189,38249999 +What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK)COA 061219,38249999 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA. RBA2661900,28363000 +What is the hs code for CATCOL C 135 (L) GRADE (BAHAN BAKU KOSMETIK) COA 561/19,38249999 +What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP816106,39059990 +What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP814311,32151900 +What is the hs code for FD AND C BLUE #1/BRILLIANT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP805964,32151900 +What is the hs code for FD AND C BLUE #2/INDIGO CARMINE... (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP815895,32151900 +What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP807309,32151900 +"What is the hs code for TRISODIUM CITRATE DIHYDRATE FINE GRANULAR (BHN BAKU MAKANAN), COA UJ927",29181400 +What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA P-64,29397900 +What is the hs code for MEPYRAMINE MALEATE EP (BHN BAKU OBAT) COA SLL/M/0519008,29333990 +"What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1909077,78 ,81 S/D 88",29224900 +What is the hs code for NOREPINEPHRINE BITARTRATE/NORADRENALINE TARTRATE (BHN BAKU OBAT) COA 520104,29379010 +What is the hs code for SELVOL ULTALUX FF 25KG BAG (BHN BAKU KOSMETIK) COA D041892672,38249999 +What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 182879,13021990 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1906203,38249999 +What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829017461K,38249999 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1833811,38249999 +What is the hs code for EPA DHA 44 37 (BHN SUPLEMEN KESEHATAN) COA EE4437-191006,29061300 +What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B02B228M,38210090 +What is the hs code for BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9072674,38210090 +What is the hs code for STARCH 1500 PARTIALLY...(BHN BAKU OBAT UTK PEWARNA TABLET)COA IN540058,35051010 +What is the hs code for METHOCEL K15M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180J1V001,39123900 +What is the hs code for METHOCEL K15M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180H86002,39123900 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9067559,38210090 +"What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9189630",38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9217032,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219521,38210090 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I AND VI LYO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9157516,38210090 +What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9039992,38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8243742,38210090 +What is the hs code for CYCLETEST PLUS DNA REAGENT KIT RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9183628,38210090 +"What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9204535",38210090 +What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9196206,38210090 +What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9209956,38210090 +What is the hs code for CS AND T RUO BEADS 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9087502,38210090 +What is the hs code for HU CD36 FITC CB36 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8225528,38210090 +What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9234913,38210090 +What is the hs code for HU CD4 PE-CY7 SK3 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9052626,38210090 +What is the hs code for ANNEXIN V FITC APOP DTEC KIT I 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9154818,38210090 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9197077,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219521,38210090 +What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8312963,38210090 +What is the hs code for VIAL E COLI O ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8285871,38210090 +What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9233245,38210090 +What is the hs code for BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9017792,38210090 +What is the hs code for VIAL PENICILLINASE 10000000 KU/ML 1EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9219203,38210090 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9067559,38210090 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9197077,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8207980,38210090 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9067559,38210090 +What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9190271,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9217032,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219521,38210090 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I AND VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9157516,38210090 +What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 9039992,38210090 +What is the hs code for BOTTLE TRYPTICASE SOY AG L AND P80 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9049874,38210090 +What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9039992,38210090 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9067559,38210090 +What is the hs code for ANTI SHINE WASH (BHN BAKU KOSMETIK) COA 10300077,38249999 +What is the hs code for STARCAP 1500 CO-PROCESSED (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539505,35051010 +"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 1909EF8413",29224900 +What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA. L105712819,17021100 +What is the hs code for CAPSULAC (R) 60 (BHN BAKU OBAT) COA L100412819,17021100 +What is the hs code for CELLACTOSE (R) 80 (BHN BAKU OBAT) COA L100462819,17021100 +What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103862619,17021100 +What is the hs code for FLOWLAC (R) 100 (BHN BAKU OBAT) COA L101503019,17021100 +What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA. 20190922,11081200 +"What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 90238391",38210090 +"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9014523",38210090 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9171871,38210090 +What is the hs code for BOTTLE STANDARD METHODS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9002994,38210090 +What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239568,38210090 +What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9247271,38210090 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9150536,38210090 +"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9206092",38210090 +What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9129700,38210090 +What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9224870,38210090 +What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161791,38210090 +What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9084840,38210090 +"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9197721",38210090 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9171871,38210090 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161683,38210090 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9050790,38210090 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9168641,38210090 +What is the hs code for BOTTLE TEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9247271,38210090 +What is the hs code for TUBE CRYSTAL INOCULUM BROTH (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9219398,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9128828,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9107532,38210090 +What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9105960,38210090 +"What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161791,",38210090 +What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8331811,38210090 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9141938,38210090 +"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9085997,9161680",38210090 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183841,38210090 +What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9066742,38210090 +What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8317927,38210090 +What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9127592,38210090 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8271693,38210090 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161608,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9142767,38210090 +What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255977,38210090 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9021613,38210090 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9142728,38210090 +What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9148762,38210090 +What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9114508,38210090 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9168641,38210090 +What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9213074,38210090 +What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9128557,38210090 +What is the hs code for BOTTLE R2A AGAR 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8317859,38210090 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161603,38210090 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161683,38210090 +What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9170723,38210090 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9133762,38210090 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8354563,38210090 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9050790,38210090 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9084661,38210090 +What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142723,38210090 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9219806,38210090 +What is the hs code for PANEL VIEWER EUROPE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 457987,38210090 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9171871,38210090 +What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 9107576,38210090 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161683,38210090 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142666,38210090 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9021643,38210090 +What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025695,38210090 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8354563,38210090 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9050790,38210090 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084661,38210090 +What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9128557,38210090 +What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9211787,38210090 +What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1907559,38210090 +What is the hs code for TUBE CRYSTAL E/ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9219396,38210090 +What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 92118096,38210090 +What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9150590,38210090 +What is the hs code for VIAL UNIVERSAL VIRAL TRANSPORT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 190908700,38210090 +What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH B01B203M,38210090 +What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9128931,38210090 +What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9114508,38210090 +What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9254329,38210090 +What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9142723,38210090 +What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239568,38210090 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9206092,38210090 +What is the hs code for BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8305630,38210090 +What is the hs code for BOTTLE MR-VP BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9148534,38210090 +What is the hs code for BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7317688,38210090 +What is the hs code for BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9015557,38210090 +What is the hs code for BOTTLE MR-VP MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297944,38210090 +What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297950,38210090 +What is the hs code for BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084697,38210090 +What is the hs code for BOTTLE TRYPTONE GLUCOSE EXT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8331813,38210090 +What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9224889,38210090 +What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9218024,38210090 +What is the hs code for BOTTLE MICRO ASSAY CULTURE AGAR 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9025933,38210090 +What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8317917,38210090 +What is the hs code for BOTTLE DICHLORAN ROSE BENGAL CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9142981,38210090 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH B01B211M136,38210090 +What is the hs code for BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9121641,38210090 +What is the hs code for BOTTLE ISP MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9189639,38210090 +What is the hs code for BOTTLE ISP MEDIUM 4 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 8354590,38210090 +What is the hs code for BOTTLE MARINE BROTH 2216 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9142906,38210090 +What is the hs code for BOTTLE YPD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9218049,38210090 +What is the hs code for BOTTLE ISP MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8337710,38210090 +What is the hs code for BOTTLE YEAST NITROGEN BASE W/O AA 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9148839,38210090 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9206092,38210090 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9142666,38210090 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9206092,38210090 +What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH 9254329,38210090 +"What is the hs code for MEG-3 '30' N-3 INF OIL ,4,5KG PJUG (BHN BAKU SUPLEMEN) COA TS00012761",29362500 +What is the hs code for GINSENG DRY EXTR 2PCT COLORIMETRIC (BAHAN BAKU SUPLEMEN) COA 19B0048100,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLORIMETRIC (BAHAN BAKU SUPLEMEN) COA 19B0062200,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLORIMETRIC (BAHAN BAKU SUPPLEMEN) COA 19B0062300,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLORIMETRIC (BAHAN BAKU SUPPLEMEN) COA 19B0066200,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLORIMETRIC (BHN BAKU SUPLEMEN) COA 19B0066300,13021990 +What is the hs code for VALERIAN D.H.E>0.8PCT VAL.AC (BHN BAKU SUPLEMEN) COA 19B0016400,13021990 +What is the hs code for SILYMARIN /PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 19B0044300,38249999 +What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 19B00063300,38249999 +What is the hs code for PASSION FLOWER D.H.E.>4PCT (BHN BAKU SUPLEMEN) COA 19B0061200,13021990 +What is the hs code for HAWTHORN DRY EXTRACT>1.8PCT (BHN BAKU SUPLEMEN) COA 10908/M1,13021990 +What is the hs code for VALERIAN D.H.E.>0.8PCT VAL.AC.(BHN BAKU SUPLEMEN) COA 19B0016400,13021990 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621969,38249999 +What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1903163183,29372900 +What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA ND190401,29372200 +"What is the hs code for DEXAMETHASONE BP2010/USP42 (BHN BAKU OBAT) COA.NED190802, NED190901",29372200 +What is the hs code for PREDNISONE USP42 (BHN BAKU OBAT) COA NPD190911,29372100 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA ROA268194,28363000 +What is the hs code for VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19090044,29362100 +What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCTCWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110015,29420000 +What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19080018,29362500 +What is the hs code for VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19090044,29362100 +What is the hs code for VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19090044,29362100 +"What is the hs code for COATED ASCORBIC ACID TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01909612",29362700 +What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCTCWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110015,29420000 +What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110015,29420000 +What is the hs code for VITAMIN B12 1PCT SD (BHN BAKU SUPLEMEN) COA UT18110016,29362600 +"What is the hs code for SODIUM ASCORBATE 99PCT TG,20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00419416",29362700 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19070015,32030010 +"What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF, 1KG /ALUF (BHN BAKU SUPLEMEN) COA UE01903011",32030010 +What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19090044,29362100 +What is the hs code for LABRAFAC PG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 176988,28399000 +What is the hs code for SUPPOCIRE BM PELLETS (BAHAN BAKU OBAT) COA 19E1401,28399000 +What is the hs code for CARBAZOCHROME SODIUM SULFONATE ORAL G (BHN BAKU OBAT)COA AC90801/90822,29339990 +"What is the hs code for NOREPINEPHRINE BITARTRATE ,BHN BAKU OBAT, COA 520104",29379010 +What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011J66L01,39123900 +What is the hs code for SODIUM VALPROATE (BAHAN BAKU OBAT) COA.453132,29159090 +"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LCD39419T",27101990 +What is the hs code for AMOXICILLIN SODIUM CRYSTALLINE STERILE (BHN BAKU OBAT) COA 25NHAGB0,29411019 +What is the hs code for NYSTATIN POWDER (BHN BAKU OBAT) COA C114344,29419000 +"What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 23620919,23630919...",29359000 +What is the hs code for IRBESARTAN (BHN BAKU OBAT) COA C5409-19-002,29332900 +What is the hs code for D-GLUCOSAMINE SULPHATE POTASSIUM (BHN BAKU OBAT) COA XH20191010,29329990 +What is the hs code for OXFENDAZOLE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 60419006,29242990 +What is the hs code for POVIDONE K-30 (BHN BAKU OBAT) COA PK30-190827F13,39059990 +"What is the hs code for PREDNISONE (BHN BAKU OBAT) COA K03F20190504, K03F20190505",29372100 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621474,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621081,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620870,38249999 +What is the hs code for OPADRY AMB PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621465,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621413,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621441,38249999 +What is the hs code for ACRYL-EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621467,39061090 +What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620996,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621441,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621471,38249999 +What is the hs code for ACRYL-EZE II PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621466,39061090 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621494,39061090 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621495,39061090 +What is the hs code for PHARMABURST (R) C1 (BHN BAKU OBAT) COA.121910088,21069099 +"What is the hs code for ASCORBIC ACID 90PCT GRANULATION ,25KG BOX (BHN BAKU SUPLEMEN) COA WB00319900",29362700 +"What is the hs code for ASCORBIC ACID 90PCT GRANULATION ,25KG BOX (BHN BAKU SUPLEMEN) COA WB00319901",29362700 +"What is the hs code for ASCORBIC ACID 90PCT, GRANULATION ,25KGBOX (BHN BAKU SUPLEMEN) COA WB00319900,9901,9902",29362700 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90410072,29362300 +"What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB00319902",29362700 +"What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB00319902",29362700 +"What is the hs code for ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01902123",29362700 +What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT19020043,29362800 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19030014,29362900 +What is the hs code for D-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20190202,29362800 +What is the hs code for D-PANTHENOL 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01904045,29362400 +"What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ90609014,18",29362300 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519051,29362200 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519051,29362200 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01901005,29362900 +What is the hs code for DRY VITAMIIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19030039,29362800 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19030014,29362900 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01902123",29362700 +"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL01907738",29362400 +What is the hs code for B-CAROTENE 1PCT CWS/M (BHN BAKU MAKANAN) COA UT19070032,32041900 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT19050016,29362100 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT19060020,29362900 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)(BHN BAKU MAKANAN) COA UT19040177,29362100 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01902123",29362700 +"What is the hs code for B-CAROTENE 30PCT FS(BHN BAKU MAKANAN) COA UE01904029,UE01905038",32041900 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01906190,29362800 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU (BHN BAKU MAKANAN) COA UT19040177,29362100 +What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0005142826,29420000 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708190044,53,54",29420000 +What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P9N27QA000,29420000 +What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA S702300,29419000 +"What is the hs code for DOXORUBICIN HYDROCHLORIDE EP (BHN BAKU OBAT) COA 0619036011, 061903049",29419000 +What is the hs code for GLICLAZIDE (BHN BAKU OBAT) COA 1940002667,29359000 +What is the hs code for GLICLAZIDE (BHN BAKU OBAT) COA 1940002357,29359000 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00119216,29362800 +What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00319233,29362100 +What is the hs code for ONDANSETRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA 19002OHRII,29332900 +What is the hs code for CLOBETASOL PROPIONATE USP 41 MI (BHN BAKU OBAT) COA APL/01207/H-19,29372900 +What is the hs code for PIROXICAM (BHN BAKU OBAT) COA PRX2019017M,29349990 +"What is the hs code for EDIBLE BOVINE GELATINE (BAHAN BAKU OBAT ), COA 5001909474",35030049 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE,25KG BOX (BHN BAKU MAKANAN) COA TL01910873",29362700 +What is the hs code for THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000030383,33029000 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9221680,38210090 +What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9235165,38210090 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9235171,38210090 +What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9226303,38210090 +"What is the hs code for CEFADROXIL MONOHYDRATE (PURIDROX COMPACTED) BHN BAKU OBAT, COA B340119,121,123",29419000 +What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799037025K,38249999 +What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799037191K,38249999 +What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799037364K,38249999 +What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829017461K,38249999 +What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769017504K,38249999 +"What is the hs code for EXO-T TM (BHN BAKU KOSMETIK), COA 715017373K",38249999 +"What is the hs code for LANACHRYS 2B PF (PRESERVATIVE ) BHN BAKU KOSMETIK, COA 793057327K",38249999 +"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK), COA 1921406",38249999 +"What is the hs code for MELANOSTATINE TM 5BG (50PPM) BHN BAKU KOSMETIK, COA 817047448K",38249999 +"What is the hs code for MELANOSTATINE TM 5 BG (50PPM) BHN BAKU KOSMETIK, COA 817047558K",38249999 +"What is the hs code for NEUTRAZEN TM (BHN BAKU KOSMETIK), COA 828017197K",38249999 +"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK), COA 782017161K",38249999 +"What is the hs code for MELANOSTATINE TM 5 BG (50PPM) BHN BAKU KOSMETIK, COA 817047558K",38249999 +What is the hs code for PRO-LIPO TM NEO (BHN BAKU KOSMETIK) COA 1921801,38249999 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9189048,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9189048,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9239884,38210090 +What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9155999,38210090 +What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9189027,38210090 +What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8338681,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239884,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239884,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9239884,38210090 +What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9148976,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9070604,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9070604,38210090 +What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BJ05707,29349990 +What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA C12041UP,29053200 +What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA. 8MT190979,30032000 +What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 190924031,38249999 +What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA DOC2521921,28363000 +"What is the hs code for MALTODEXTRIN DE10-12 (BAHAN BAKU MAKANAN ), COA 20191017",17029019 +"What is the hs code for ARGAN OIL, PRESSED CAN,25KG (BHN BAKU OBAT) COA 8005560001",29362500 +What is the hs code for TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA659458,32151900 +What is the hs code for OPADRY SGR RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA660763,38249999 +What is the hs code for OPADRY ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA660424,38249999 +"What is the hs code for CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 20191003",38249999 +What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1903143163,29372900 +"What is the hs code for GABAPENTIN (USP) (BHN BAKU OBAT) COA CGBU190395, CGBU190398",29224900 +"What is the hs code for MALTODEXTRIN DE10-12 (BAHAN BAKU MAKANAN ), COA 20191019",17029019 +What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J71002,39123900 +What is the hs code for METHOCEL K100M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180J7N002,39123900 +What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J7I001,39123900 +What is the hs code for METHOCEL K4M PREMIUM CR...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J32001,39123900 +What is the hs code for METHOCEL E5 PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011J6AL01,39123900 +What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-1510719,29334910 +What is the hs code for KETOPROFEN SALE DI LISINA (BHN BAKU OBAT) COA 190324,29183000 +What is the hs code for KETOPROFEN (BHN BAKU OBAT) COA 192026,29183000 +"What is the hs code for CEFADROXIL MONOHYDRATE (PURIDROX COMPACTED) BHN BAKU OBAT, COA B334656,B334656,B334660",29419000 +What is the hs code for EUXYL K 720 -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1518553,38249999 +What is the hs code for EUXYL K 940 10KG KA (BHN BAKU KOSMETIK) COA 1531980,38249999 +What is the hs code for VIT A PALM 1.0M AND VIT D3 100'000 (BHN BAKU MAKANAN) COA UT19080074,29362100 +What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT19090024,29362100 +"What is the hs code for SODIUM ASCORBATE 99PCT,20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00419416",29362700 +"What is the hs code for RESTYLANE KYSSE 1ML, COA 16912-1,17302-1,17343-1",33049990 +"What is the hs code for RESTYLANE SB VITAL LIDOCAINE IML ,COA 17244-1",33049990 +"What is the hs code for RESTYLANE SB VITAL LIGHT LIDOCAINE IML, COA 17132-1",33049990 +"What is the hs code for RESTYLANE REFYNE 1 ML ,COA 17180-1",33049990 +"What is the hs code for RESTYLANE DEFYNE 1ML , COA 17294-1",33049990 +"What is the hs code for RESTYLANE KYSSE 1ML , COA 16912-1",33049990 +What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA.0000068958,29309090 +What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA.0000068959,29309090 +What is the hs code for LEVOFLOXACIN HEMIHYDRATE USP (BHN BAKU OBAT) COA LF19070101,29349990 +"What is the hs code for THEOPHYLLINE ANHYDROUS (BAHAN BAKU OBAT) COA 19250,384,,385,394, S/D 398, 401,402,405",29395900 +"What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT19080017,18",29362500 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT19070876,29362100 +What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT19080017,29362500 +"What is the hs code for ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ90706165,66,68,69",29362700 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT19050016,29362100 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90513038,29362500 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE ,25KG BOX (BHN BAKU MAKANAN) COA TL01909622,1910800,818,824",29362700 +"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A, 20KG BA (BHN BAKU MAKANAN) COA WB00719452,63,64",29362100 +What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-190906,38249999 +What is the hs code for WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK) COA EG138-190601,38249999 +What is the hs code for WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK) COA EG138-191002,38249999 +"What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) , COA 910065",38249999 +"What is the hs code for KF-6038 (16KG) BHN BAKU KOSMETIK, COA 90221",38249999 +"What is the hs code for KF-6028 (16KG) BHN BAKU KOSMETIK, COA 909220",38249999 +"What is the hs code for KF-96A-6CS (16KG) BHN BAKU KOSMETIK, COA 910066,910067",38249999 +"What is the hs code for KF-56A (18KG) BHN BAKU KOSMETIK , COA 910742",38249999 +What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 182975,13021990 +What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 191630,13021990 +What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 191799,13021990 +What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 191495,38249999 +What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 190328,29329990 +What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 191630,13021990 +What is the hs code for SODIUM SALICYLATE (TYPE O) USP/EP (BHN BAKU KOSMETIK)COA 1808016,29182100 +"What is the hs code for OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT694467",32151900 +"What is the hs code for OPASPRAY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT693977",32151900 +"What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT694401",32151900 +What is the hs code for METHOCEL K100M PREMIUM CR...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J4M001,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I5B003,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I5R001,39123900 +What is the hs code for METHOCEL K4M PREMIUM CR...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I61003,39123900 +What is the hs code for LISINOPRIL DIHYDRATE (BHN BAKU OBAT) COA C5170-19-001,29339990 +What is the hs code for AHCC-PROFESSIONAL-FG (BHN BAKUOBAT) COA 910FM01,21069099 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621495,39061090 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622561,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622560,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621917,38249999 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621924,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621925,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621913,39061090 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621925,38249999 +What is the hs code for OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621918,38249999 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621921,38249999 +What is the hs code for OPADRY 200 PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621888,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621922,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621919,38249999 +What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622847,38249999 +What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621473,38249999 +What is the hs code for ACRYL-EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621466,39061090 +What is the hs code for ACRYL-EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621470,39061090 +What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19070056,29362100 +What is the hs code for VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19090044,29362100 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18120041,32041900 +"What is the hs code for COATED ASCORBIC ACID TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01909631",29362700 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19070015,32030010 +What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19080019,29362500 +What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK)COA CHP1191022,38249999 +What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK)COA ARP-870989,38249999 +What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012239,38249999 +What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-062109,38249999 +What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE 1PCT SOLUTION (BHN BAKU KOSMETIK) COA HASC-561409,38249999 +"What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK)COA HMVBD-011079,021409",38249999 +What is the hs code for SK BIOLAND BIO-BLACK PEARL POWDER (BHN BAKU KOSMETIK) COA PDEG-022369,38249999 +What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COAOHA-062109,38249999 +What is the hs code for SK BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-011579,38249999 +What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-021409,38249999 +What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 061219,38249999 +"What is the hs code for GELATINE (PHARMACEUTICAL BOVINE) (BAHAN BAKU OBAT ), COA 5001907208",35030049 +What is the hs code for P.GINGSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 19S0132200,13021990 +"What is the hs code for SODIUM ACETATE ANHYDROUS (BHN BAKU MAKANAN), COA 3073326",29152910 +"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED GRADE A) BHN BAKU OBAT, COA. M531601, 1623,1625,...",29411019 +What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9270953,38210090 +What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH B01B204M,38210090 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA ROA275191,28363000 +What is the hs code for DOCUSATE SODIUM BP (BHN BAKU OBAT) COA DSW9009,29171900 +"What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9239568",38210090 +What is the hs code for BOTTLE BRILIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025695,38210090 +What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142908,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9128828,38210090 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9141938,38210090 +"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9066742,9128852",38210090 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9161608,38210090 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9168641,38210090 +What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8129682,38210090 +What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9189611,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9128828,38210090 +"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9105960,9211130",38210090 +What is the hs code for PLATE STERILERODAC EMPTY 65X15 MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9199500,38210090 +"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9141938,9183260",38210090 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161680,38210090 +What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9128852,38210090 +What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8317927,38210090 +What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9127592,38210090 +What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8297883,38210090 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8271693,38210090 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161608,38210090 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9091912,38210090 +"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8255977",38210090 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9021613,38210090 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142728,38210090 +What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9212136,38210090 +"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9079951, 9161545",38210090 +What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9128931,38210090 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9168641,38210090 +What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8129682,38210090 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161934,38210090 +What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9189611,38210090 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9196801,38210090 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9197721,38210090 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9206386,38210090 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161603,38210090 +What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9239568,38210090 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 9161683,38210090 +What is the hs code for BOTTLE SOLUBLE STARCH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218059,38210090 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 90216434563,38210090 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9206092,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9148938,38210090 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 91769202,38210090 +What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9025695,38210090 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8354563,38210090 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9050790,38210090 +What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142908,38210090 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9248034,38210090 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 9196801,38210090 +What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239568,38210090 +What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9025695,38210090 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9179455,38210090 +What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1907559,38210090 +What is the hs code for TUBE CRYSTAL E/ ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9219396,38210090 +What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01B203M,38210090 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9248034,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9211356,38210090 +What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9023839,38210090 +What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8317927,38210090 +What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9127592,38210090 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161934,38210090 +What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9256266,38210090 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9084661,38210090 +What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9211593,38210090 +What is the hs code for PAIL BUFFERED PEPTONE WATER 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9133516,38210090 +What is the hs code for PAIL LAURYL TRYPTOSE BROTH 2KG (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161787,38210090 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9039645,38210090 +What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9168709,38210090 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9206092,38210090 +What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9198204,38210090 +What is the hs code for BOTTLE BRAIN HEART INFUSION BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8254550,38210090 +What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9128845,38210090 +What is the hs code for BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218041,38210090 +What is the hs code for BOTTLE PURPLE BROTH BASE BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9268130,38210090 +What is the hs code for BOTTLE MICRO INOCULUM BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 8311696,38210090 +What is the hs code for BOTTLE OXGALL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297826,38210090 +What is the hs code for BOTTLE CHROMAGAR CANDIDA 500GM (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9134915,38210090 +What is the hs code for BOTTLE MR-VP MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297944,38210090 +What is the hs code for BOTTLE SALICIN 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9197737,38210090 +What is the hs code for BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161593,38210090 +What is the hs code for BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9231550,38210090 +What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9224889,38210090 +What is the hs code for BOTTLE GC MEDIUM BASE 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9134926,38210090 +What is the hs code for BOTTLE NUTRIENT BROTH 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9219600,38210090 +What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8310633,38210090 +What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9267518,38210090 +What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8317917,38210090 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH B01B165M,38210090 +What is the hs code for BOTTLE OF BASEL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9121641,38210090 +What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9128852,38210090 +What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 8331811,38210090 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8271693,38210090 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9091912,38210090 +"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9079916,...",38210090 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9161603,38210090 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161683,38210090 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) COA 9021643,38210090 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8354563,38210090 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH B02B241M,38210090 +What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9148762,38210090 +"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9128830,9168888",38210090 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKIROORGANISME) BATCH 9161545,38210090 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161545,38210090 +What is the hs code for BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9182087,38210090 +What is the hs code for BOTTLE PHENYLALANINE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9189619,38210090 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161545,38210090 +What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9023839,38210090 +What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9280013,38210090 +What is the hs code for KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9277506,38210090 +What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9023839,38210090 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084661,38210090 +What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9156832,38210090 +"What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9218933",38210090 +What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9241552,38210090 +What is the hs code for CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9196427,38210090 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9067559,38210090 +"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9197111,9227076,..",38210090 +"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9217032",38210090 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9157516,38210090 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9157516,38210090 +What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8312963,38210090 +What is the hs code for VIAL E COLI O ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8285871,38210090 +What is the hs code for VIAL ISOVITALEX ENRICHMENT 10ML 5 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9203982,38210090 +"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9217032",38210090 +"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8219521,...",38210090 +What is the hs code for CD14 APC MPHI9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9196206,38210090 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9067559,38210090 +What is the hs code for HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8225528,38210090 +What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9196206,38210090 +What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218933,38210090 +What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9246430,38210090 +What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9241552,38210090 +What is the hs code for CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9196427,38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9256006,38210090 +"What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP Y 1ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9277251",38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8207980613,38210090 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9067559,38210090 +What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9213220,38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9256006,38210090 +What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9189630,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9217032,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219521,38210090 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9157516,38210090 +What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9039992,38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8243742,38210090 +What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9228683,38210090 +What is the hs code for ANNEXIN V FITC APOP DTEC KIT I 100TST (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9225522,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9239884,38210090 +What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239004,38210090 +What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9241899,38210090 +What is the hs code for POLYPEPTONE PEPTONE EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9184337,38210090 +What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239004,38210090 +What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9148976,38210090 +What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9035505,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9070604,38210090 +What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9122883,38210090 +What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9121860,38210090 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01902123",29362700 +What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91910074,21069059 +"What is the hs code for CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA WB00519015",29362700 +What is the hs code for PX 204005 (BHN BAKU MAKANAN) COA XW91910177,21069059 +What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA S100200,29419000 +What is the hs code for CEFOTAXIME SODIUM STERILE USP (BHN BAKU OBAT) COA S200700,29419000 +What is the hs code for ACYCLOVIR MICRONIZED (BHN BAKU OBAT) COA 19100277,29335990 +"What is the hs code for MEFENAMIC ACID POWDER (BHN BAKU OBAT) COA MA1908019 S/D 22, 24 S/D 26, 28 S/D 30",29224900 +"What is the hs code for KETAMINE HCL (BHN BAKU OBAT), COA 0123819P",29223900 +"What is the hs code for MAGNESIUM OXIDE, LIGHT POWDER BP2019 (BHN BAKU OBAT), COA 1101536-3",25199010 +What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA WGM,38249999 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA WJE,38249999 +What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA WHE,38249999 +What is the hs code for SILASOMA MFA (S) (BHN BAKU KOSMETIK) COA WJJ,38249999 +What is the hs code for PROMOIS HYDROMILK (BHN BAKU KOSMETIK) COA WIJ,38249999 +"What is the hs code for INSTANT TEA POWDER (TEA EXTRACT) BHN BAKU MAKANAN, COA 910312",9022010 +What is the hs code for ACYCLOVIR MICRONIZED (BHN BAKU OBAT) COA 19100709,29335990 +What is the hs code for EPA DHA 44 37 (BHN SUPLEMEN KESEHATAN) COA EE4437-191029,29061300 +"What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) , COA 909746",38249999 +"What is the hs code for KF-6038 (16KG) BHN BAKU KOSMETIK, COA 910221",38249999 +"What is the hs code for KF-6038 (16KG) BHN BAKU KOSMETIK, COA 910221",38249999 +"What is the hs code for AQUACOAT ECD-30 ETHYLCELLULOSE AQUEOUS... (BHN BAKU OBAT UTK PEWARNA TABLET), COA XN19833521",39123900 +What is the hs code for AQUACOAT ECD-30 ETHYLCELLULOSE AQUEOUS 9BHN BAKU OBAT UTK PEWARNA TABLET) COA XN19833527,39123900 +What is the hs code for GRAPE SEED DRY EXTRACT (BHN BAKU SUPLEMEN) COA 19298,13021950 +What is the hs code for OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622339,38249999 +What is the hs code for OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622338,38249999 +"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1951799, 1951800, 19",29242930 +"What is the hs code for MALTODEXTRIN DE10-12 (BAHAN BAKU MAKANAN ), COA 20191023",17029019 +"What is the hs code for PROPYPHENAZONE (ST) (BHN BAKU OBAT) COA 1909160,65,68,74,77",29331100 +What is the hs code for LEVOFLOXACIN HEMIHYDRATE (FREE ALKALINE) (BHN BAKU OBAT) COA C008-1906622,29349990 +What is the hs code for SERENOA REPENS PURIFIED EXT (BHN BAKU SUPLEMEN) COA 19S0245600,38249999 +What is the hs code for VACCINIUM MYRTILLUS DRY EX (BHN BAKU SUPLEMEN) COA 19S0321100,13021950 +What is the hs code for METHOTREXATE (BHN BAKU OBAT) COA EP190913,29335990 +What is the hs code for MC-GLUCAN (BHN BAKU KOSMETIK) COA MCGL191025,39139090 +What is the hs code for CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA 1GC01CLB ZP48D 250MT,38249999 +"What is the hs code for PHARMACEUTICALS BOVINE GELATINE 200 BLOOM 18 MESH... (BAHAN BAKU OBAT ), COA 50019009420",29181200 +What is the hs code for EDIBLE BOVINE GELATINE 220 BLOOM 20 MESH (BHN BAKU MAKANAN) COA 5001909420,29181200 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT19080182,29362100 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE,25KG BOX (BHN BAKU MAKANAN) COA TL01909622,TL01909782",29362700 +What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J7D002,39123900 +What is the hs code for METHOCEL K100M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180J7J002,39123900 +What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J71002,39123900 +What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J7I001,39123900 +What is the hs code for MONOPROPYLENE GLYCOL (BHN BAKU KOSMETIK) COA PG(S)191018,29053200 +What is the hs code for LUBRIPHARM (R) SSF NF/EP/JP SODIUM STEARYL FUMARATE(BHN BAKU OBAT) COA 121910218,28161000 +What is the hs code for OPADRY 200 BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622646,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622900,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH623243,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622637,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622609,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622726,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH623086,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622621,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622611,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622636,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622638,38249999 +What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622608,38249999 +What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622619,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622610,38249999 +What is the hs code for ACRYL-EZE II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622634,39061090 +What is the hs code for METHOCEL E6 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011J66L01,39123900 +What is the hs code for METHOCEL K4M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180J63001,39123900 +What is the hs code for METHOCEL K15M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I8Q003,39123900 +What is the hs code for METHOCEL K15M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J4O002,39123900 +What is the hs code for METHOCEL K100 PREMIUM LVCR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180J6O021,39123900 +What is the hs code for METHOCEL K15M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I8G001,39123900 +What is the hs code for METHOCEL K15M PREMIUM CR ... (BHN BAKU OBAT UTK PEWARNA WARNA) COA D180J5L003,39123900 +What is the hs code for METHOCEL K4M PREMIUM CR ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180J66001,39123900 +What is the hs code for METHOCEL E15 PREMIUM LV ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011J3CL01,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180J89002,39123900 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH623542,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH623541,38249999 +What is the hs code for OPADRY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH623566,38249999 +What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 192024,38249999 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 191495,38249999 +What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 182975,13021990 +What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 191630,13021990 +What is the hs code for ECOFARM BILBERRY LEAF-G (BHN BAKU KOSMETIK) COA 190419,13021990 +What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT19040104,29362800 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708190055,56",29420000 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT19040177172,29362100 +What is the hs code for PARSOL ZX (BHN BAKU KOSMETIK) COA 190508012,29420000 +"What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0025591",29362500 +"What is the hs code for PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0819030049",29420000 +"What is the hs code for PARSOL MAX, 25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0918110046",29420000 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ90810196,29362300 +What is the hs code for VITAMIN PREMIX 103093-A (BHN BAKU MAKANAN) COA XW91910180,21069059 +What is the hs code for VITAMIN MINERAL PREMIX INSTANT DRINK (BHN BAKU MAKANAN) COA XW91910201,21069059 +What is the hs code for ANTIOXIDANT PREMIX FOR GUMMY (BHN BAKU MAKANAN) COA XW91910327,21069059 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01908359",29362700 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518049,29362200 +What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ90609018,29362300 +What is the hs code for ASCORBIC ACID 90PCT GRANULATION 25KG BOX (BHN BAKU SUPLEMEN) COA WB00419906,29362700 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90810196,29362300 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90810196,29362300 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18120040,29362600 +What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA.MLAH0521019,29341000 +What is the hs code for INSTANT BLACK TEA POWDER THB430 (BHN BAKU MAKANAN) COA 2019102301,21012020 +What is the hs code for SENSIVA SC 50 CN 10KG KA (BHN BAKU KOSMETIK) COA.1539629,38249999 +What is the hs code for ROMAN CHAMOMILLE ORGANIC DISTILLATE 1:1 (SB)(BHN BAKU KOSMETIK)COA ANND191003-BIO,38249999 +What is the hs code for ROSE DAMASCENA ORGANIC DISTILLATE 1:20 (SB) (BHN BAKU KOSMETIK)COA ROSD190915-BIO,38249999 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO190101,38249999 +What is the hs code for GINGSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO190101,38249999 +What is the hs code for ARGAN VIRGIN COLD PRESSED DEODORISED ORGANIC OIL... (BHN BAKU KOSMETIK) COA ARHVD191105-SICBIO,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS190201,38249999 +What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA191002,38249999 +What is the hs code for ROMAN CHAMOMILLE ORGANIC DISTILLATE 1:1 (SB) (BHN BAKU KOSMETIK) COA ANND191003-BIO,38249999 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO190102,38249999 +"What is the hs code for ETHYL PANTHENOL, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01902801",29362400 +What is the hs code for PROPOLIS BEE EXTRACT (BHN BAKU OBAT) COA 191101,29304000 +What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB110919,39123900 +"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B210919",39123900 +What is the hs code for GLICLAZIDE (BHN BAKU OBAT) COA 1940002357,29359000 +What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA WGM,38249999 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA WKF,38249999 +What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA WHE,38249999 +What is the hs code for THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0014517001,33029000 +What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA.0014518004,33029000 +What is the hs code for 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 052319/006049,38249999 +What is the hs code for PLATE TSA WLP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9277143,38210090 +What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9248813,38210090 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT19090082,29362800 +What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 201900363,28183000 +What is the hs code for EUXYL K 720 -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1540851,38249999 +What is the hs code for EUXYL K 720 -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1540851,38249999 +"What is the hs code for S AND M PHENOXYETHANOL RCH 100ML FL (BHN BAKU KOSMETIK) COA 1536332 ,SAMPLE NO COMM VALUE",38249999 +"What is the hs code for EUXYL K 940 (SAMPLE) 100 ML FL (BHN BAKU KOSMETIK) COA 1500965,SAMPLE NO COMM VALUE",38249999 +"What is the hs code for EUXYL K 900 (SAMPLE) 100 ML FL (BHN BAKU KOSMETIK) COA 1536334, SAMPLE NO COMM VALUE",38249999 +What is the hs code for HYOSCINE BUTYL BROMIDE EP/BP (BHN BAKU OBAT) COA 2520519,29391900 +What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-022019,38249999 +What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK)COA ARP-881089,38249999 +What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-452109,38249999 +What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 061219,38249999 +What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-022019,38249999 +What is the hs code for SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-012229,38249999 +What is the hs code for SK BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK) COA NMSP-D-012079,38249999 +What is the hs code for SK BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-021819,38249999 +What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-602979,38249999 +What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA MCP-N-051709,38249999 +"What is the hs code for RESTYLANE SB VITAL LIDOCAINE IML ,COA 17244-1",33049990 +"What is the hs code for RESTYLANE SB VITAL LIGHT LIDOCAINE IML, COA 17132-1",33049990 +"What is the hs code for RESTYLANE DEFYNE 1 ML ,COA 17399-1",33049990 +"What is the hs code for RESTYLANE REFYNE 1ML , COA 17292-1",33049990 +"What is the hs code for RESTYLANE KYSSE 1ML , COA 17343-1",33049990 +What is the hs code for MAGNOLIA BARK EXTRACT (BHN BAKU KOSMETIK) COA MBE05-190706,38249999 +What is the hs code for NATURAL SOURCE MIXED TOCOPHEROLS (BHN BAKU KOSMETIK) COA 190703M001,29362800 +"What is the hs code for CEFADROXIL MONOHYDRATE (PURIDROX TM POWDER) BHN BAKU OBAT, COA B334662, 664,666",29419000 +What is the hs code for VALERIAN D.H.E>0.8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 19B0088300,13021990 +What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA 177378,28399000 +What is the hs code for TEFOSE 63 (BHN BAKU OBAT) COA 176440,28399000 +What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU OBAT) COA 02/18GAAK,28399000 +"What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU OBAT) COA 02/18GAAK, SAMPLE NO COMM VALUE",28399000 +What is the hs code for LABRAFAC LIPOPHILE WL 1349 (BHN BAKU OBAT) COA 177185,28399000 +What is the hs code for SUPPOCIRE AM PELLETS (BAHAN BAKU OBAT) COA 18E5109,28399000 +What is the hs code for LACTOFIL MOIST (BHN BAKU OBAT) COA Z91080026,28399000 +"What is the hs code for NIACINAMIDE USP (BHN BAKU KOSMETIK) COA 19-20/NMD(P)/U/122,123,125,126,127",29362900 +What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH623270,38249999 +What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH623261,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH623240,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH622264,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH623243,38249999 +What is the hs code for OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH623241,38249999 +What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH623263,39061090 +What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH623262,39061090 +What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH621458,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH623243,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622621,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH623242,38249999 +What is the hs code for CLOTRIMAZOLE MICRONIZED (BHN BAKU OBAT ) COA 201910150265,29332900 +"What is the hs code for GRINSTED XANTHAN 80 PHARMA GRADE, BHN BAKU OBAT, COA 4453521544",39139090 +"What is the hs code for PHARMACEUTICALS BOVINE GELATINE 200/18 ...(BAHAN BAKU OBAT ), COA 5001907208",35030049 +What is the hs code for INSTANT BLACK TEA POWDER TH-B 430 (BHN BAKU MAKANAN) COA 2019111207,21012020 +What is the hs code for INSTANT BLACK TEA POWDER TH-E 1008 (BHN BAKU MAKANAN) COA 2019090203,21012020 +"What is the hs code for VIUSID AQUA ORAL SOLUTION @1LTR (PAKAN IKAN BERBENTUK CAIR) COA T-4 06-22,T-5 07-22",23099090 +What is the hs code for VIUSID VET @ 1KG (PAKAN IKAN BERBENTUK CAIR) COA T-2 06-22,23099090 +What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9239004,38210090 +What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239004,38210090 +What is the hs code for BACTO PROTEOSE PEPTONE NO.3 500G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9189727,38210090 +What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9148976,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9070604,38210090 +What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9122883,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239884,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239884,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9239884,38210090 +What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9121860,38210090 +What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9107951,38210090 +What is the hs code for BACTO CASAMINO ACIDS EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9105919,38210090 +What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9273225,38210090 +What is the hs code for BACTO TRYPTONE 500G EA ( MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9273225,38210090 +What is the hs code for DOBUTAMINE HCL (BHN BAKU OBAT) COA 19100392,29222900 +"What is the hs code for SODIUM STARCH GLYCOLATE BP (BHN BAKU OBAT), COA ASGP/10/241019, ASGP/11/031119",29420000 +"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/08/230819-2,ASG/11/141119,151119,130919",29420000 +What is the hs code for CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/11/081119,39123100 +What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5566918,38249999 +What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829017461K,38249999 +What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829017654K,38249999 +What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830017310K,38249999 +"What is the hs code for GREYVERSE TM (BHN BAKU KOSMETIK), COA 833017324K",38249999 +"What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK), COA 1835314",38249999 +"What is the hs code for LANACHRYS 2B PF (PRESERVATIVE)BHN BAKU KOSMETIK, COA 793057327K",38249999 +"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK), COA 1921406",38249999 +"What is the hs code for SILIGEL TM (BHN BAKU KOSMETIK), COA 1918702",38249999 +What is the hs code for PRO-LIPO TM NEO (BHN BAKU KOSMETIK) COA 1925101,38249999 +"What is the hs code for AMBROXOL HYDROCHLORIDE POWDER (BHN BAKU OBAT) COA AHM/19087,AHM/19088",29221990 +What is the hs code for METHOCEL K100M PREMIUM CR...(BHN BAKU PEWARNA TABLET)COA D180J75002,39123900 +What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP818101,39059990 +What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU PEWARNA TABLET) COA WP812973,32151900 +What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP812982,32151900 +What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP8143316,32151900 +What is the hs code for FD AND C RED #40/ALLURA RED AC AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP811339,32151900 +What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP807997,32151900 +What is the hs code for FD AND C YELLOW #6/SUNSET YELOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP818229,32151900 +What is the hs code for BILBERRY (V.MYRTILLUS)ET. EX 36PCT (BHN BAKU SUPLEMEN) COA 19S0328502,13021990 +What is the hs code for STARTAB DIRECTLY COMPRESSIBLE STARCH (BHN BAKU PEWARNA TABLET) COA.WP816007,35051010 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9283058,38210090 +What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9290152,38210090 +What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9277140,38210090 +What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9241752,38210090 +"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9231577",38210090 +"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8354563",38210090 +What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9247271,38210090 +What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9247271,38210090 +What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9247271,38210090 +What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9247271,38210090 +"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9231577",38210090 +What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9247271,38210090 +What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9310881,38210090 +What is the hs code for BOTTLE MARINE BROTH 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9294142,38210090 +What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9316132,38210090 +What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 92800133,38210090 +"What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9316132",38210090 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9253973,38210090 +"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9256077,...",38210090 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9241388,38210090 +What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9269210,38210090 +What is the hs code for KIT PHOENIXAPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9287737,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9219559,38210090 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183841,38210090 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218804,38210090 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9211435,38210090 +What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9114508,38210090 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9241879,38210090 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9252346,38210090 +"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9168641",38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9211356,38210090 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9231558,38210090 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183841,38210090 +What is the hs code for BOTTLE MANOLATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9114508,38210090 +What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9256266,38210090 +What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239568,38210090 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9252346,38210090 +What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142723,38210090 +What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9254329,38210090 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9206092,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9128828,38210090 +What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239282,38210090 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161680,38210090 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183841,38210090 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9218804,38210090 +What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 9128931,38210090 +What is the hs code for BOTTLE MALONATE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9310881,38210090 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9168641,38210090 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9241879,38210090 +What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9254329,38210090 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9206092,38210090 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9252365,38210090 +What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9142723,38210090 +"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9256070,...",38210090 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9241388,38210090 +What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1911027,38210090 +What is the hs code for TUBE CRYSTAL E/ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9219396,38210090 +What is the hs code for TUBE CRYSTAL INOCULUM BROTH (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9157734,38210090 +"What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9241413,415",38210090 +What is the hs code for BOTTLE M-PA-C AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9295919,38210090 +What is the hs code for VIAL UNIVERSAL VIRAL TRANSPORT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 190908700,38210090 +What is the hs code for BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9213536,38210090 +What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8317927,38210090 +What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9127592,38210090 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161934,38210090 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9253973,38210090 +What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025695,38210090 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9084661,38210090 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9256077,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9128828,38210090 +What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239282,38210090 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9231558,38210090 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161680,38210090 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183841,38210090 +What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8317927,38210090 +What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9127592,38210090 +"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8271693,9218804",38210090 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161608,38210090 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9211435,38210090 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9021613,38210090 +What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9211593,38210090 +What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084840,38210090 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9142728,38210090 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161543,38210090 +What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9128931,38210090 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9255013,38210090 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 9168641,38210090 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161934,38210090 +What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9213074,38210090 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9239319,38210090 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9231539,38210090 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9253973,38210090 +What is the hs code for BOTTLE DECARBOXCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9241879,38210090 +What is the hs code for BOTTLE SKIM MILK 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161683,38210090 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9021643,38210090 +What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9254329,38210090 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9206092,38210090 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9252365,38210090 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 8354563,38210090 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9084661,38210090 +What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9142723,38210090 +What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9142908,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9219559,38210090 +What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9023839,38210090 +What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084840,38210090 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9261868,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) COA 9211356,38210090 +What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9198204,38210090 +What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8206968,38210090 +What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9028828,38210090 +What is the hs code for BOTTLE L-ARABINOSE 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9199186,38210090 +What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKIROORGANISME) BATCH 7332727,38210090 +What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9142723,38210090 +What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9273419,38210090 +What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9218024,38210090 +What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9134926,38210090 +What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9219600,38210090 +What is the hs code for GAZPAK EZ STANDARD INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 7308746010,38210090 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH B01B260M,38210090 +What is the hs code for BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9121641,38210090 +What is the hs code for BOTTLE MYP AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9233393,38210090 +What is the hs code for BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9189647,38210090 +What is the hs code for DROPPER LACTOPHENOL COTTON BLUE STAIN (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH B01B219M,38210090 +What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9023839,38210090 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9050790,38210090 +What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9023839,38210090 +"What is the hs code for LYSING BUFFER 10X CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9137698",38210090 +"What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9281171",38210090 +What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9281171,38210090 +What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9281171,38210090 +What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9281171,38210090 +"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 8207980",38210090 +"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9067559,92",38210090 +What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9238628,38210090 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9249798,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9217032,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9246040,38210090 +"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9157516",38210090 +What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9039992,38210090 +What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9211095,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8207980,38210090 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9157516,38210090 +What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9204535,38210090 +What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9196206,38210090 +What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9269991,38210090 +"What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9228683,9304226",38210090 +What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218933,38210090 +"What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9246430",38210090 +What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9241552,38210090 +What is the hs code for CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9196427,38210090 +What is the hs code for ANTI-HLA-DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9204225,38210090 +What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9228756,38210090 +"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9227178,9227183",38210090 +What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8285857,38210090 +What is the hs code for VIAL SAL O ANTISERUM FACTORS 4&5 GRP B (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8271718,38210090 +What is the hs code for METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/19090537,29332900 +"What is the hs code for PHARMACEUTICAL BOVINE GELATINE 200/18 (BAHAN BAKU OBAT ), COA 5001907208",35030049 +What is the hs code for SPIRAMYCIN (BHN BAKU OBAT) COA SP191476,29419000 +"What is the hs code for MIRANOL ULTRA C-32 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP909511R,BP911690R",34029099 +"What is the hs code for PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0319101541 S/D 548",29420000 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0319101548",29420000 +"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000184323,324",29362900 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ90910221,29362300 +"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90910220,221",29362300 +What is the hs code for VITAMIN MINERAL PREMIX INSTANT DRINK (BHN BAKU MAKANAN) COA XW91911111,21069059 +"What is the hs code for PX 103070-C3 (BHN BAKU MAKANAN) COA XW91911091,092",21069059 +What is the hs code for VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW91911112,21069059 +"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01905038,5039",32041900 +What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B03B164M,38210090 +What is the hs code for BOTTLE GRAM DECOLORIZER 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9269854,38210090 +"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET), COA JP514001",32151900 +"What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT)COA L105712819, L105714719",17021100 +"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 080419,090419,170519,270319...",38029090 +"What is the hs code for L-GLUTAMIC ACID (FCC GRADE) PURITY 99PCT UP (BHN BAKU MAKANAN), COA 1000049875/191120",29224900 +What is the hs code for EUXYL K 100 CN 10KG KA (BHN BAKU KOSMETIK) COA 1536160,38249999 +What is the hs code for SENSIVA SC 50-CN- 10KG KA (BHN BAKU KOSMETIK) COA 1536004,38249999 +What is the hs code for EUXYL K 120 -CN-10KG KA (BHN BAKU KOSMETIK) COA 1536749,38249999 +What is the hs code for SENSIVA SC 10 -CN-10KG KA (BHN BAKU KOSMETIK) COA 1532992,38249999 +What is the hs code for EUXYL K 720 -C08- 10 KG KA (BHN BAKU KOSMETIK) COA 1540851,38249999 +"What is the hs code for EUXYL K 100 SAMPLE(S) 100ML FL (BHN BAKU KOSMETIK) COA 1535690, SAMPLE NO COMMERCIAL VALUE",38249999 +"What is the hs code for EUXYL K 120 100 ML FL (BHN BAKU KOSMETIK) COA 1532897 ,SAMPLE NO COMMERCIAL VALUE",38249999 +"What is the hs code for EUXYL K 340 100ML FL (BHN BAKU KOSMETIK) COA 1338121, SAMPLE NO COMMERCIAL VALUE",38249999 +"What is the hs code for EUXYL K 700 SAMPLE 100ML FL (BHN BAKU KOSMETIK) COA 1527936,SAMPLE NO COMMERCIAL VALUE",38249999 +What is the hs code for EUXYL K 701 SAMPLE 100 ML FL (BHN BAKU KOSMETIK) COA 1532289 SAMPLE NO COMMERCIAL VALUE,38249999 +"What is the hs code for EUXYL K 712 SAMPLE 100 ML FL (BHN BAKU KOSMETIK) COA 1536820,SAMPLE NO COMMERCIAL VALUE",38249999 +What is the hs code for EUXYL K 830 100 ML FL (BHN BAKU KOSMETIK) COA 1536411 SAMPLE NO COMMERCIAL VALUE,38249999 +What is the hs code for EUXYL K 900 (SAMPLE) 100 ML FL (BHN BAKU KOSMETIK) COA 1536334 SAMPLE COMMERCIAL VALUE,38249999 +"What is the hs code for S&M PHENOXYETHANOL RCH 100 ML FL (BHN BAKU KOSMETIK) COA 1536332, SAMPLE NO COMMERCIAL VALUE",38249999 +What is the hs code for SENSIVA PA 20 SAMPLE(S) 100ML FL (BHN BAKU KOSMETIK) COA 1520205 SAMPLE NO COMMERCIAL VALUE,38249999 +What is the hs code for SENSIVA PA 30 (SAMPLE) 100 ML FL (BHN BAKU KOSMETIK) COA 1340275 SAMPLE NO COMMERCIAL VALUE,38249999 +What is the hs code for METHOCEL K100M PREMIUM CR (BHN BAKU PEWARNA TABLET)COA D180J88002,39123900 +What is the hs code for LABRAFIL M 1944 CS (BHN BAKU OBAT) COA 177404,28399000 +What is the hs code for SUPPOCIRE AM PELLETS (BAHAN BAKU OBAT) COA 18E5109,28399000 +"What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) , COA 911141",38249999 +"What is the hs code for KF-6038 (16KG) BHN BAKU KOSMETIK, COA 911224",38249999 +"What is the hs code for KF-96A-6CS (16KG) BHN BAKU KOSMETIK, COA 910069",38249999 +What is the hs code for BETAHISTINE MESILATE EP (BHN BAKU OBAT) COA EDBHM19004,29333990 +What is the hs code for METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT... (BHN BAKU OBAT) COA NZ1858,29372900 +What is the hs code for METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT ...(BHN BAKU OBAT) COA NZ2075,29372900 +What is the hs code for METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT... (BHN BAKU OBAT) COA NZ2605,29372900 +What is the hs code for METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT... (BHN BAKU OBAT) COA NZ2606,29372900 +What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA S100300,29419000 +"What is the hs code for OPACODE WHITE (BHN BAKU PEWARNA TABLET), COA WP820412",32151900 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA WKG,38249999 +What is the hs code for ALLOPURINOL USP (BHN BAKU OBAT) COA 19086AY3ARII,29335990 +What is the hs code for IMERCARE DOLCE (BHN BAKU KOSMETIK) COA S227/19,38029090 +What is the hs code for SODIUM ACETATE ANHYDROUS (BHN BAKU MAKANAN) COA 3078124,29152910 +What is the hs code for SELOHVITA C.SODIUM SELENITE MAX.0.99PCT (BHN BAKU OBAT) COA 3068590,28429010 +"What is the hs code for CALCIUM ACETATE,POWDER,PURITY ACC TO E263 (BHN BAKU OBAT) COA 3077789",29152910 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)(BHN BAKU MAKANAN) COA UT19090183,29362100 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT19080883,885",29362100 +"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01909048,49",32041900 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01910882,892,902,909",29362700 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA339196,28363000 +"What is the hs code for MALTODEXTRIN DE10-12 (BAHAN BAKU MAKANAN ), COA 20191017",17029019 +"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC46719T",27101990 +What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU OBAT) COA UJ949,29181400 +"What is the hs code for AL HYD WET GEL VAC 20(BHN BAKU OBAT) COA 201900249,201900185",28183000 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN540567,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN540566,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN540569,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN540568,35051010 +What is the hs code for PREDNISONE (BHN BAKU OBAT) COA 03F20190504 S/D 506,29372100 +"What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1911108,12010,12011,12012,12014 S/D 16,18 S/D 20",29224900 +"What is the hs code for NEOMYCIN SULPHATE USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA 201911024,11025",29419000 +What is the hs code for POVIDONE K-30 EX JHNH (BHN BAKU OBAT) COA PK30-190913F11,39059990 +What is the hs code for POVIDONE K-25 (BHN BAKU OBAT) COA PK25-191013F42,39059990 +"What is the hs code for FIBRE DRUM, PRICE AND AMOUNT ARE FOR CUSTOM ONLY",48192000 +"What is the hs code for MALTODEXTRIN DE10-12 (BAHAN BAKU MAKANAN ), COA 20191205",17029019 +"What is the hs code for FERROUS FUMARATE (BHN BAKU MAKANAN), COA 3077999",29054300 +"What is the hs code for ACRYLPOL 980 (20KG) BAHAN BAKU KOSMETIK, COA 11519097, 11519098",39069099 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0319101549 S/D 54,70,76",29420000 +"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000184499,184582",29362900 +"What is the hs code for PARSOL 340 ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219030054",29420000 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT19040177,29362100 +"What is the hs code for STAY-C (R) 50, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UE01901015",29362700 +"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT19070206,90239",29362800 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90613065,29362500 +"What is the hs code for CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00519025",29362700 +"What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01908762",29362400 +What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT19070186,29362800 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01901006,29362900 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19040077,29362400 +What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT19070186,29362800 +"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90702292,96",29362200 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90910227,29362300 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT19090071,29362800 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01908359",29362700 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT19070093,29362900 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19070093,29362900 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT19080029,29362100 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01908359",29362700 +What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91911153,21069059 +"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01908761",29362400 +What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT19070186,29362800 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11904011,29362900 +"What is the hs code for ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ90706162, 6163",29362700 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01905039,32041900 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ90303061,29362200 +"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01905039,40",32041900 +What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT19070186,29362800 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ90303061,29362200 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11190420",29362500 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011,29362900 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011,29362900 +What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT19070186,29362800 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19030014,29362900 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01907976",29362700 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18120040,29362600 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19030021,29362400 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01901006,29362900 +"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01906076",29362400 +"What is the hs code for OXYTETRACYCLINE HYDROCHLORIDE (BHN BAKU OBAT) COA 19030767,768,769,770,771,772",29413000 +What is the hs code for THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000032930,33029000 +What is the hs code for BICAR FOOD 0/50 SODIUM BICARBONATE (BHN BAKU OBAT ) COA MTP34519,28363000 +"What is the hs code for CEFADROXIL MONOHYDRATE (PURIDROX COMPACTED) BHN BAKU OBAT, COA B340122,126,128",29419000 +What is the hs code for INSTANT BLACK TEA POWDER TH B430 (BHN BAKU MAKANAN) COA 2019102301,21012020 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA MTP34519,28363000 +"What is the hs code for INSTANT TEA POWDER (TEA EXTRACT) BHN BAKU MAKANAN, COA 912072",9022010 +What is the hs code for IMERCARE DOLCE (BHN BAKU KOSMETIK) COA S344/19,38029090 +What is the hs code for IMERCARE 11T (BHN BAKU KOSMETIK) COA S658/19,38029090 +What is the hs code for IMERCARE (R) VELLUTO (BHN BAKU KOSMETIK) COA L41/17,38029090 +What is the hs code for SORBITOL SOLUTION 70PCT CRYSTALLISING (BAHAN BAKU KOSMETIK) COA 1920P434,29054400 +"What is the hs code for FERROUS FUMARATE (BHN BAKU MAKANAN), COA 3077999",29054300 +What is the hs code for SODIUM GLYCEROPHOSPHATE CRYST (BHN BAKU OBAT) COA 3073900-2,29199000 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH623629,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH624306,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH624265,38249999 +What is the hs code for OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH623966,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH624280,39061090 +What is the hs code for OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH624507,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH625173,38249999 +What is the hs code for OPADRY II BLACK (BHN BAKU PEWARNA TABLET) COA SH624300,38249999 +What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH624287,39061090 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH623974,38249999 +What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH624307,39061090 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH624307,38249999 +What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH624284,39061090 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH624280,39061090 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH624502,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH623677,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH623567,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH623965,39061090 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH624010,39061090 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH623956,38249999 +What is the hs code for OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH623966,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH623831,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH623677,38249999 +What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH623962,39061090 +What is the hs code for OPADRY II BLACK (BHN BAKU PEWARNA TABLET) COA SH623961,38249999 +What is the hs code for ACRYL-EZE PURPLE (BHN BAKU PEWARNA TABLET) COA SH623964,39061090 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH623965,39061090 +What is the hs code for PHARMABURST (R) C1 (BHN BAKU OBAT) COA.121910249,21069099 +What is the hs code for VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 121910045,28365010 +What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG191122,29362700 +"What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 26221119,26411119,...",29359000 +What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 27691219,29359000 +"What is the hs code for PHARMACEUTICAL BOVINE GELATINE 200/18 (BAHAN BAKU OBAT), COA 5001907208,5001910526",35030049 +What is the hs code for BICAR PHARMA 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA RBA3331900,28363000 +What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 191125181,38249999 +"What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453521544",39139090 +What is the hs code for SK BIOLAND GLA-40 (BHN BAKU KOSMETIK)COA GLCP-101819,38249999 +What is the hs code for SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK)COA U191129,38249999 +"What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012239,020619,",38249999 +What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-070819,38249999 +"What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-021409, 032919",38249999 +What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK)COA MCP-N-051709,38249999 +What is the hs code for SK BIOLAND JEJU TANGERINE EXTRACT (BHN BAKU KOSMETIK) COA GTUP-T-011169,38249999 +What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-012239,38249999 +What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 112919,38249999 +What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-012239,38249999 +What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1191224,38249999 +"What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK)COA MUP-012239, MUP-021769",38249999 +What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20190702,29362800 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB19090217,29362800 +What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB19080244,29362100 +What is the hs code for HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 2966585,33029000 +What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT19090091,29362100 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91013179,UQ91113190",29362500 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01910873,TL01910919",29362700 +"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19110085, UT19120090",29362800 +"What is the hs code for D-PANTHENOL 50L, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01910645",29362400 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT19110086,29362800 +What is the hs code for METOCLOPRAMIDE HYDROCHLORIDE BP (BHN BAKU OBAT) COA M-1912406,29242990 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19120090,29362800 +What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT19080020,29362500 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT19110186,29362100 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT19050001,32041900 +"What is the hs code for COATED ASCORBIC ACID TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL019",29362700 +"What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF,1KG (BHN BAKU SUPLEMEN) COA UE01905024",32030010 +What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19080020,29362500 +What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19100046,29362100 +"What is the hs code for COATED ASCORBIC ACID, TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01910939",29362700 +What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19080020,29362500 +What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19060003,32041900 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19070056,29362100 +What is the hs code for PERFECTAMYL AC (BHN BAKU KOSMETIK)COA K2872801,39139090 +What is the hs code for CEFTAZIDIME BUFFERED (BHN BAKU OBAT) COA S101100,29419000 +What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA S702300,29419000 +What is the hs code for CEFTIZOXIME SODIUM (BHN BAKU OBAT) COA S700200,29419000 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH623956,38249999 +What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH624515,38249999 +What is the hs code for OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH624507,38249999 +What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH624511,39061090 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH624170,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH624502,38249999 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH624518,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH624501,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH624516,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH625173,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH624508,39061090 +What is the hs code for OPADRY II BLUE (BHN BAKU PEWARNA TABLET) COA SH624517,38249999 +What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH624287,39061090 +What is the hs code for METHOCEL E5 PREMIUM LV HYDROXYPROPYL (BHN BAKU PEWARNA TABLET)COA D011J93L01,39123900 +What is the hs code for METHOCEL E15 PREMIUM LV HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D011J6BL02,39123900 +What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL (BHN BAKU PEWARNA TABLET)COA D011J8DL02,39123900 +What is the hs code for STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN540603,35051010 +What is the hs code for ETHOCEL STANDARD 20 PREMIUM ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D184J1C021,39123900 +What is the hs code for PEG 400 (POLYETHYLENE GLYCOL) BAHAN BAKU KOSMETIK) COA.AKW0008148,39072010 +"What is the hs code for DEXAMETHASONE BP2010/USP41 (BHN BAKU OBAT) COA.NED191001,NED190902",29372200 +"What is the hs code for SUNFIBER AG (BHN BAKU MAKANAN), COA 907011",13021950 +What is the hs code for DIACEREIN EP (BHN BAKU OBAT) COA DCE/40100619,29389000 +"What is the hs code for MALTODEXTRIN DE10-12 (BAHAN BAKU MAKANAN ), COA 20191205",17029019 +"What is the hs code for MALTODEXTRIN DE10-12 (BAHAN BAKU MAKANAN ), COA 20191219",17029019 +What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA WIN,38249999 +What is the hs code for SILASOMA MFA(S) (BHN BAKU KOSMETIK) COA WJJ,38249999 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA WKG,38249999 +What is the hs code for AMITOSE HGA (BHN BAKU KOSMETIK) COA WLM,38249999 +What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M.31PCT (BHN BAKU OBAT) COA 101929026,28161000 +What is the hs code for BETAHISTINE MESILATE EP (BHN BAKU OBAT) COA EDBHM19005,29333990 +"What is the hs code for IMIDAPRIL HYDROCHLORIDE (BHN BAKU OBAT) COA IPL/0519002, 003,005",29332900 +"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED GRADE P) BHN BAKU OBAT,COA M596896",29411019 +What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 19031833190,29372900 +What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BJ14407,29349990 +What is the hs code for KETOROLAC TROMETHAMOL/TROMETHAMINE (BHN BAKU OBAT) COA 19100747,29339990 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU MAKANAN) COA UT19120187,29362100 +What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 192024,38249999 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 191495,38249999 +What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 192253,13021990 +What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 191630,13021990 +What is the hs code for FD AND C BLUE #1/BRILLIANT BLUE (BHN BAKU PEWARNA TABLET) COA WP817550,32151900 +What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU PEWARNA TABLET) COA WP812979,32151900 +What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP807308,32151900 +What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP818103,39059990 +What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP818225,32151900 +What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT(BHN BAKU OBAT UTK PEWARNA TABLET) COA WP814838,32151900 +What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP812973,32151900 +What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP814310,32151900 +What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.19100884,29391900 +What is the hs code for ISONIAZID EP (BHN BAKU OBAT) COA IZ 001 J 19,29333910 +What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 201900368,28183000 +What is the hs code for LORATADINE USP (BHN BAKU ) COA LRHB 9687,29333990 +What is the hs code for SMIZYME PHYTASE 5000U/G GRANULAR (BHN BAKU OBAT UTK PAKAN TERNAK) COA 0123051912,35079000 +"What is the hs code for NYSTATIN POWDER ROW (BHN BAKU OBAT) COA C114348, C114371",29419000 +"What is the hs code for CEFADROXIL MONOHYDRATE (PURIDROX POWDER) BHN BAKU OBAT, COA B334669,B334671,B334673",29419000 +What is the hs code for EPA DHA 44 37 (BHN SUPLEMEN KESEHATAN) COA EE4437-191202,29061300 +What is the hs code for KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0150819,29339990 +"What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) , COA 912142",38249999 +"What is the hs code for KF-6038 (16KG) BHN BAKU KOSMETIK, COA 912225",38249999 +"What is the hs code for KP-562P (16KG) BHN BAKU KOSMETIK, COA 802008",38249999 +"What is the hs code for KP-578 (16KG) BHN BAKU KOSMETIK, COA 807081",38249999 +"What is the hs code for KSP-100 (10KG) BHN BAKU KOSMETIK , COA 9111760",38249999 +"What is the hs code for KSP-100 (10KG) BHN BAKU KOSMETIK , COA 911760",38249999 +"What is the hs code for KF-6028 (16KG) BHN BAKU KOSMETIK, COA 912224,912225,912226",38249999 +What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9309706,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9267765,38210090 +What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9273225,38210090 +What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239007,38210090 +What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9274645,38210090 +What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9035505,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9070604,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9109987,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9267765,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9267765,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9267765,38210090 +What is the hs code for BACTO TRYPTOSE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9308244,38210090 +What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9274645,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA ( MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9109987,38210090 +"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 1912EF3212",29224900 +"What is the hs code for AQUACOAT ECD-30 ETHYLCELLULOSE AQUEOUS... (BHN BAKU PEWARNA TABLET), COA XN19833579",39123900 +What is the hs code for AQUACOAT CPD-30 CELLULOSE (BHN BAKU PEWARNA TABLET) COA KN19833680,39123900 +What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9273225,38210090 +What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309706,38210090 +What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9107951,38210090 +What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9107951,38210090 +What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9107951,38210090 +What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9273225,38210090 +What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273225,38210090 +What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309706,38210090 +What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273225,38210090 +What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9309706,38210090 +"What is the hs code for OPASPRAY YELLOW (BHN BAKU PEWARNA TABLET), COA DT696561",32151900 +"What is the hs code for OPATINT BROWN (BHN BAKU PEWARNA TABLET), COA DT696574",32151900 +"What is the hs code for OPACODE BLACK (BHN BAKU PEWARNA TABLET), COA DT696571",32151900 +What is the hs code for OPACODE WHITE (BHN BAKU PEWARNA TABLET) COA DT695391,32151900 +What is the hs code for METRONIDAZOLE BP MICRONISED (BHN BAKU OBAT) COA MTZ/9101863,29332900 +"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA360191, ROA360193",28363000 +"What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW91911172, XW91911173",21069059 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010008,29362900 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010008,29362900 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010008,29362900 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010008,29362900 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11905015,29362900 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT19120094,29362800 +"What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0026660",29362500 +"What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0026660",29362500 +What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P9P06QA000,29420000 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT19080182",29362100 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01905011,29362900 +"What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF19020048",29420000 +What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT19070186,29362800 +"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000184582",29362900 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708190056,57, 61",29420000 +What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P9P06QA000,29420000 +"What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0719060154",29420000 +What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001552129,29420000 +"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000184582, 0000185458",29362900 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519090285, 0519090286",29420000 +"What is the hs code for PARSOL SHIELD ,20KG BOX (BHN BAKU KOSMETIK) COA 0819040084",29420000 +"What is the hs code for PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0319101676",29420000 +What is the hs code for SAKURA EXTRACT B (BHN BAKU PEWARNA TABLET)COA 191460,13021990 +What is the hs code for STARCH 1500 PARTIALLY PREGELATINIZED MAIZE STARCH (BHN BAKU PEWARNA TABLET)COA IN540442,35051010 +What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) COA 319CAA0004,38249999 +"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC46819T",27101990 +What is the hs code for PHENYTOIN SODIUM USP (BHN BAKU OBAT) COA ALC/PTS/181212,29332100 +"What is the hs code for VC CALCIUM ASCORBATE DC, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPT1912001",29362700 +"What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) ,COA 19E0402",28399000 +What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 19E2902,28399000 +What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 101969019,28161000 +What is the hs code for BOTTLE GRAM SAFRANIN 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9296660,38210090 +What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9280085,38210090 +What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01B273M,38210090 +"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8207980",38210090 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9235506,38210090 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9254801,38210090 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9157516,38210090 +"What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9211095",38210090 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9254801,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239389,38210090 +"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9157516",38210090 +What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9211095,38210090 +What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9305970,38210090 +What is the hs code for VIAL SUPPLEMENT C 6X5ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9238664,38210090 +What is the hs code for VIAL SUPPLEMENT C 6X5ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9238664,38210090 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9254801,38210090 +What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9189630,38210090 +What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233839,38210090 +What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9211095,38210090 +"What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9011569",38210090 +What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9254182,38210090 +What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9315833,38210090 +"What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH9295569,9324156",38210090 +"What is the hs code for NONIVAMIDE (SYNTHETIC CAPSAICIN)BHN BAKU KOSMETIK, COA.20191031",29241990 +"What is the hs code for BOTTLE STANDARD METHODS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9343213",38210090 +What is the hs code for BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9337386,38210090 +What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8317927,38210090 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9252346,38210090 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9291612,38210090 +"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9273651",38210090 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9161545,38210090 +What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273402,38210090 +What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9338809,38210090 +"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9252365,9273427",38210090 +What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9084840,38210090 +What is the hs code for BOTTLE PHENOL RED BROTH BASE BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8310778,38210090 +What is the hs code for BOTTLE PHENOL RED LACTOSE BR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8311620,38210090 +What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9028828,38210090 +What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025631,38210090 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01B291M,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8337715,38210090 +What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9316132,38210090 +What is the hs code for SACHET GASPAK EZ C02 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9269210,38210090 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9241399,38210090 +What is the hs code for TUBE CRYSTAL INOCULUM BROTH (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9157734,38210090 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9241399,38210090 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161680,38210090 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9021613,38210090 +What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9310881,38210090 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9206092,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9128828,38210090 +What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239282,38210090 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9231558,38210090 +What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8297883,38210090 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218804,38210090 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161608,38210090 +What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9084840,38210090 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9142728,38210090 +What is the hs code for BOTTLE MALONATE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9310881,38210090 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161934,38210090 +What is the hs code for BOTTLE RAPPAPORT VASSILLIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9239319,38210090 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 9241879,38210090 +What is the hs code for BOTTLE SKIM MILK 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9252346,38210090 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9021643,38210090 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9206092,38210090 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9252365,38210090 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9261510,38210090 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239628,38210090 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9084661,38210090 +What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9318360,38210090 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9306763,38210090 +What is the hs code for KIT UNIVERSAL VIRAL TRANSPORT STD SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 191309900,38210090 +What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9128852,38210090 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 9211362,38210090 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9291612,38210090 +What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9302311,38210090 +What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218538,38210090 +What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218538,38210090 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9253973,38210090 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183841,38210090 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161608,38210090 +"What is the hs code for MEG-3 '30' N-3 INF OIL ,4,5KG PJUG (BHN BAKU SUPLEMEN) COA TS00013750",29362500 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180093, SAMPLE NO COMMERCIAL VALUE",29420000 +"What is the hs code for PARSOL ZX , 0,500KG PAIL (BHN BAKU KOSMETIK) COA 190511012, SAMPLE NO COMMERCIAL VALUE",29420000 +"What is the hs code for NIACINAMIDE USP (BHN BAKU KOSMETIK) COA 19-20/NMD(P)/U/146,148,149,150,151",29362900 +What is the hs code for NABUMETONE (BHN BAKU OBAT) COA H-0680619,29145000 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)(BHN BAKU MAKANAN) COA UT19100184,UT19100185",29362100 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT19110815, UT19110186",29362100 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19120094,29362800 +What is the hs code for MIXED TOCOPHEROL 95 (BHN BAKU MAKANAN) COA XH20190301,29362800 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT19110903, UT19110904",29362100 +What is the hs code for METHISOPRINOL (BHN BAKU OBAT) COA MTP9100289,29349990 +What is the hs code for METAMIZOLE SODIUM TYPE T 25 KG (BHN BAKU OBAT) COA B0014,29331100 +What is the hs code for CINNARIZINE (BHN BAKU OBAT) COA CIN1912082,29335990 +What is the hs code for CHOLINE L-BITARTRATE (BAHAN BAKU OBAT) COA.3018788,29231000 +What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 061119,25070000 +"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ91006244,UQ91006245",29362700 +"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN, COA UT19120094",29362800 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT19110904,29362100 +What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT19090012,29362100 +"What is the hs code for ASCORBYL PALMITATE,25KG BOX/ALU (BHN BAKU MAKANAN, COA UQ91006241 S/D 6244",29362700 +What is the hs code for TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA P6914,29225090 +What is the hs code for BICAR FOOD 27/50 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA MTP34519,28363000 +What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED (BHN BAKU UTK PAKAN TERNAK) COA ROA0120,28363000 +What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIV190701-BGBIO,38249999 +What is the hs code for OLIVE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA OLE190801,38249999 +What is the hs code for ROSE OILY EXTRACT (BHN BAKU KOSMETIK)COA ROS191104-H,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS191102,38249999 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO190102,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-191107,38249999 +What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM191201-PGH,38249999 +What is the hs code for RICE MILK AQUEOUS EXTRACT (BHN BAKU KOSMETIK) COA ORS1909R1-AQ,38249999 +What is the hs code for RICA MILK AQUEOUS EXTRACT (BHN BAKU KOSMETIK) COA ORSL191201-AQ,38249999 +"What is the hs code for EDIBLE BOVINE GELATINE 140/20 (BAHAN BAKU OBAT), COA 5001912753",35030049 +What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA. 20191227,17023010 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20191223,17029019 +What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH625682,38249999 +What is the hs code for CARBOPLATIN EP (BHN BAKU OBAT) COA 312190010,28439000 +"What is the hs code for CITRIC ACID ANHYDROUS (KOSHER-PASSOVER) BHN BAKU MAKANAN, COA UJ952",29181400 +What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9(BHN BAKU OBAT) COA 201900372,28183000 +What is the hs code for METHOCEL K100M PREMIUM CR (BHN BAKU PEWARNA TABLET)COA D180JAI001,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR (BHN BAKU PEWARNA TABLET) COA D180JAG001,39123900 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 192339,38249999 +What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT19100092,29362100 +"What is the hs code for ROVIMIX E-50 ADSORBATE, 25KG BAG (BHN BAKU UTK PAKAN TERNAK) COA UT19090354, UT19090356",29362800 +"What is the hs code for RONOZYME (R)HIPHOS GT, 20KG BAGDK (BHN BAKU UTK PAKAN TERNAK) COA HK920731",29369000 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT19120042,29362900 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT19120042,29362900 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT19060025,29362900 +What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT19090231,29362800 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL01906077",29362400 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010008,29362900 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19030021,29362400 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19060067,29362800 +"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01906077",29362400 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19090018,29362900 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19030021,29362400 +"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19070094, UT19090096, 97",29362900 +"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19070093,UT19070094",29362900 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19070093,29362900 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19120094,29362800 +What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ90609018,29362300 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ91010246,29362300 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19090018,29362900 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT19070093,29362900 +"What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB00419906",29362700 +"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011, UE01905017",29362900 +"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01911818",29362400 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19060067,29362800 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT19080182, UT19090183",29362100 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01911059,32041900 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01911059,32041900 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01909234,29362800 +"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ90503125,UQ90603126",29362200 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11910006,29362900 +"What is the hs code for CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00519025",29362700 +What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT19090231,29362800 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19030004,29362900 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11910006,29362900 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01907990",29362700 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01901006,29362900 +"What is the hs code for ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01908368",29362700 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01906076, TL01906077",29362400 +"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19030021, UT19030029",29362400 +What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1902032,29362300 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT19050003,29362600 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01905017,29362900 +"What is the hs code for PARSOL HMS, 25KG PC (BHN BAKU KOSMETIK) COA 0418110248",29420000 +"What is the hs code for PARSOL ZX ,20KG (BHN BAKU KOSMETIK) COA 190510012",29420000 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708190073,74,75,82",29420000 +"What is the hs code for NIACINAMIDE PC ,25KG BOX (BHN BAKU KOSMETIK) COA 0000185459",29362900 +"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219030054",29420000 +"What is the hs code for PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0319101681,1682,1683,1684",29420000 +"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219030054,55",29420000 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT19090183",29362100 +"What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF19020048",29420000 +What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT19090231,29362800 +"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000185459",29362900 +What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P9P08QA000,29420000 +What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001552129,29420000 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01905017,29362900 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0319101680,0319101681",29420000 +What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708190072,29420000 +"What is the hs code for PARSOL ZX, 20KG FIBRE DRUM (BHN BAKU KOSMETIK) COA 190510012",29420000 +"What is the hs code for PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0319101680",29420000 +"What is the hs code for PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA0819040084",29420000 +What is the hs code for VITAMIN PREMIX 103093-A (BHN BAKU MAKANAN) COA XW91911201,21069059 +"What is the hs code for PRAYPHOS MKP FG (BAHAN BAKU KOSMETIK), COA 19-319-01",29420000 +What is the hs code for CATCOL C 135 (L) GRADE (BAHAN BAKU KOSMETIK) COA 116/20,38249999 +What is the hs code for CLOMIPHENE CITRATE USP/EP (BHN BAKU OBAT ) COA 201911190352,29221990 +What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1907652825,29362600 +What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1907652825,29362600 +What is the hs code for ADIPOFILL'IN TM (BHN BAKU KOSMETIK) COA 1908201,38249999 +What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829017654K,38249999 +What is the hs code for BODY_3 COMPLEX TM (BHN BAKU KOSMETIK) COA B3C010619,38249999 +What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830017750K,38249999 +What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769017504K,38249999 +"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK), COA 785017870K",38249999 +"What is the hs code for ECOGEL TM (BHN BAKU KOSMETIK), COA 1919601",38249999 +"What is the hs code for EXO-T TM (BHN BAKU KOSMETIK), COA 715017373K",38249999 +"What is the hs code for LANACHRYS 2B PF (PRESERVATIVE- BHN BAKU KOSMETIK), COA 793057447K",38249999 +"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK), COA 1924505",38249999 +"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK), COA 5627619",38249999 +"What is the hs code for NEUTRAZEN TM (BHN BAKU KOSMETIK), COA 828017309K",38249999 +What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) COA 1735916,38249999 +What is the hs code for SWT-7 TM L (BHN BAKU KOSMETIK) COA 1927001,38249999 +"What is the hs code for TYROSTAT TM 09 (BHN BAKU KOSMETIK), COA 784017675K",38249999 +"What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK), COA 784027671K",38249999 +What is the hs code for KETOPROFEN SALE DI LISINA (BHN BAKU OBAT) COA 187893,29183000 +What is the hs code for D-RIBOSE (BHN BAKU OBAT) COA ZN20200103,29400000 +What is the hs code for LEUCOCYANIDINS PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 19480,38249999 +What is the hs code for PROCATEROL HCL HEMIHYDRATE MICRONIZED (BHN BAKU OBAT) COA 860060719M1,29337900 +What is the hs code for FERROUS FUMARATE USP/EP (BHN BAKU OBAT) COA.2019/243,29171900 +What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 19290051,30039000 +What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB111219,39123900 +"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B011219, B251219",39123900 +What is the hs code for CORTISONE ACETATE MICRONISED PH.EUR JP (BHN BAKU OBAT) COA 1900985220,29372900 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 19B0066300,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 19B0112100,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPPLEMEN) COA 19B0112200,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPPLEMEN) COA 19B0112300,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0112400,13021990 +What is the hs code for SILYMARIN /PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 19B0136800,38249999 +What is the hs code for SILIBINA/FOSFOLIPIDI (BHN BAKU SUPLEMEN) COA 19B0063300,38249999 +What is the hs code for SILIBINA/FOSFOLIPIDI (BHN BAKU SUPLEMEN) COA 19B0110200,38249999 +What is the hs code for SILIBINA/FOSFOLIPIDI (BHN BAKU SUPLEMEN) COA 19B0110300,38249999 +What is the hs code for MONENDOX 200 BMP (BHN BAKU UTK PAKAN TERNAK) COA 2001021,29419000 +"What is the hs code for AESTHEFILL (POLYLACTIC ACID) ,COA AF191204, SAMPLE NO COMMERCIAL VALUE",90189090 +"What is the hs code for AESTHEFILL (POLYLACTIC ACID) ,COA AF191204",90189090 +What is the hs code for DERMOFEEL G 10L (BHN BAKU KOSMETIK) COA LT19500476,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH625622,38249999 +What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH625147,39061090 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH625134,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH625157,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH625132,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH624221,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH625135,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH625156,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH625145,38249999 +What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH625572,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH625158,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH625155,38249999 +What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH625144,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH625148,38249999 +What is the hs code for OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH625137,38249999 +What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH625136,39061090 +What is the hs code for OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH625133,38249999 +What is the hs code for OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH625501,38249999 +What is the hs code for OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH625501,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH625286,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH625138,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH625140,38249999 +"What is the hs code for ECODIAR POWDER (HERACLEOTICUM) BHN BAKU OBAT UTK PAKAN TERNAK, COA P0102012020",33029000 +"What is the hs code for ECODIAR LIQUID (HERACLEOTICUM) BHN BAKU OBAT UTK PAKAN TERNAK, COA L0102012020",33029000 +"What is the hs code for ACRYLPOL 980 (20KG) BAHAN BAKU KOSMETIK, COA 11519108, 11519117",39069099 +What is the hs code for MICROCELAC(R) 100 (BHN BAKU OBAT) COA L103153919,17021100 +What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104310220,17021100 +What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105715019,17021100 +What is the hs code for FLOWLAC (R) 100 H (BHN BAKU OBAT) COA L105814919,17021100 +What is the hs code for LIPOID PPL-600 (BHN BAKU OBAT) COA. 577200-2190226/007-008 (2),29232010 +"What is the hs code for CEFADROXIL MONOHYDRATE (PURIDROX TM POWDER) BHN BAKU OBAT, COA B334675, B334683, B334684",29419000 +What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BJ14806,29349990 +What is the hs code for MAGNESIUM L-HYDROGENASPARTATE 2-HYDRATE (BHN BAKU OBAT) COA 3077606,29224900 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN540750,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN540755,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN540752,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN540751,35051010 +What is the hs code for FEF CETRIMIDE PH EUR (BHN BAKU KOSMETIK) COA JX0C539,38249999 +What is the hs code for CETRIMIDE EP (BHN BAKU KOSMETIK) COA JX0C448,38249999 +"What is the hs code for COATED ASCORBIC ACID TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01910962",29362700 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19070015,32030010 +What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19080021,29362500 +What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19060003,32041900 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19020057,29362100 +What is the hs code for VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19120057,29362100 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19120057,29362100 +What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19080021,29362500 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT19050001,32041900 +What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19100046,29362100 +"What is the hs code for SENTRY POLYOX WSR 303 LEO NF (DOW) (BHN BAKU PEWARNA TABLET), COA D682J4QRR5",39123900 +"What is the hs code for SENTRY POLYOX WSR 1105 LEO NF (DOW) BHN BAKU PEWARNA TABLET, COA D682I6RRD4",39123900 +"What is the hs code for SENTRY POLYOX WSR N750 LEO NF (DOW) BHN BAKU UTK PEWARNA TABLET, COA D682I97RJ4",39123900 +"What is the hs code for SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 1907762068, 1907923985",29322090 +What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1907652825,29362600 +What is the hs code for CYANOCOBALAMINE VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1907662827,29362600 +What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 19100882,29395900 +What is the hs code for HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2510719,29391900 +"What is the hs code for MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HG30906, HG30693",34029099 +"What is the hs code for CARBOPLATIN EP (BHN BAKU OBAT) COA 360190010, 404190010",28439000 +What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA S100400,29419000 +What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA S100400,29419000 +What is the hs code for METHOCEL E6 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011J8DL02,39123900 +What is the hs code for METHOCEL K15M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180J8O001,39123900 +What is the hs code for METHOCEL K4M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J63001,39123900 +What is the hs code for METHOCEL K4M PREMIUM CR...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J9A002,39123900 +What is the hs code for METHOCEL E15 PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011J6BL02,39123900 +What is the hs code for METHOCEL K100M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180JAJ002,39123900 +What is the hs code for CARBAZOCHROME SODIUM SULFONATE ORAL G (BHN BAKU OBAT)COA AC90801/90822,29339990 +What is the hs code for SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA.,38249999 +"What is the hs code for KF-6038 (16KG) BHN BAKU KOSMETIK, COA 911226",38249999 +"What is the hs code for KF-96A-6CS (16KG) BHN BAKU KOSMETIK, COA 910071",38249999 +What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 702017846K,38249999 +What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 1735914,38249999 +What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829017654K,38249999 +What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829017654K,38249999 +What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830017814K,38249999 +"What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK), COA 769017736K",38249999 +"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK), COA 785017960K",38249999 +"What is the hs code for GREYVERSE TM (BHN BAKU KOSMETIK), COA 833017324K",38249999 +"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK), COA 5624919",38249999 +"What is the hs code for NEUTRAZEN TM (BHN BAKU KOSMETIK), COA 828017668K",38249999 +"What is the hs code for PRO-LIPO TM NEO (BHN BAKU KOSMETIK), COA 1934801",38249999 +"What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK), COA 784027671K",38249999 +What is the hs code for MELANOSTATINE TM 5PS (50PPM) (BHN BAKU KOSMETIK) COA 817016912J,38249999 +What is the hs code for MELANOSTATINE TM 5PS (50PPM) (BHN BAKU KOSMETIK) COA 817017459K,38249999 +"What is the hs code for MELANOSTATINE TM 5PS (50PPM) (BHN BAKU KOSMETIK), COA 817017459K",38249999 +"What is the hs code for MELANOSTATINE TM 5PS (50PPM) (BHN BAKU KOSMETIK), COA 817017459K",38249999 +What is the hs code for ONDANSETRON HCL USP (BHN BAKU OBAT) COA 19OS001,29332900 +What is the hs code for AMBROXOL HYDROCHLORIDE POWDER (BHN BAKU OBAT) COA AHM/20001,29221990 +What is the hs code for MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HG30584,34029099 +What is the hs code for ACNE BUSTERS (BHN BAKU KOSMETIK) COA 192024,38249999 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 192773,38249999 +What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 192233,13021990 +What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA190328,29329990 +"What is the hs code for PHYTO COLLAGE B (N) BHN BAKU KOSMETIK, COA 192085",13021990 +What is the hs code for DERMAVEIL (BHN BAKU KOSMETIK) COA 192228,13021990 +What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT19090231,29362800 +"What is the hs code for NIACINAMIDE PC , 25KG BOX (BHN BAKU KOSMETIK) COA 0000185972",29362900 +"What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0719070172",29420000 +"What is the hs code for PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519100287,295",29420000 +"What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA 0519010008,0519010014",29420000 +"What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P9P08QA000, P9Q29QA000",29420000 +"What is the hs code for STAY-C(R) 50, 5KG BAG ALU (BHN BAKU KOSMETIK) COA CS18060031",29362700 +"What is the hs code for PARSOL HMS, 25KG PC (BHN BAKU KOSMETIK) COA 0418110248",29420000 +"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED GRADE P) BHN BAKU OBAT,COA M596895, M596941",29411019 +What is the hs code for CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA 19ZDP,38249999 +What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK)COA CHP1200116,38249999 +What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK)COA MUP-021769,38249999 +What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-651329,38249999 +What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 012020,38249999 +What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-602979,38249999 +"What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK)COA BAG-021879, BAG-030529",38249999 +What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA MCP-N-060929,38249999 +"What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-020619, GSC-K-010210",38249999 +What is the hs code for SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-053009,38249999 +What is the hs code for SK BIOLAND GREEN TEA SEED OIL (BHN BAKU KOSMETIK) COA CSSO-031459,38249999 +What is the hs code for SK BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-041229,38249999 +What is the hs code for SK BIOLAND LICORICE EXTRACT (BHN BAKU KOSMETIK)COA GGB-012759,38249999 +What is the hs code for SK BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) COA MSEEC-022219,38249999 +What is the hs code for SK BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) COA MSEEC-022219,38249999 +What is the hs code for SK BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK) COA NMSP-D-013010,38249999 +What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-062109,38249999 +What is the hs code for SK BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-021819,38249999 +"What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-032919, HMVBD-043029",38249999 +"What is the hs code for SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK) COA U200120, SAMPLE NO COMMERCIAL VALUE",38249999 +What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT)COA L105715019,17021100 +What is the hs code for METHOCEL E4M PREMIUM HYDROXYPROPYL METHYLCELLULOSE (BHN BAKU PEWARNA TABLET)COA D180IBM011,39123900 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01909558",29362700 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT19050001,32041900 +What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19060003,32041900 +"What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF,1KG ALUF (BHN BAKU SUPLEMEN) COA UE01905024",32030010 +"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT19090024, UT19100025",29362100 +What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT19100092,29362100 +What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT19100025,29362100 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01909592",29362700 +What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT19090012,29362100 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01909592",29362700 +What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20190702,29362800 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01910914",29362700 +"What is the hs code for DL-PANTHENOL 50L, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01911650",29362400 +"What is the hs code for DL-PANTHENOL 50L, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01911649",29362400 +"What is the hs code for METAMIZOLE SODIUM (BHN BAKU OBAT) COA 19121328,19121330,19121327",29331900 +What is the hs code for CORTISONE ACETATE MICRONISED PH.EUR JP (BHN BAKU OBAT) COA 1900971988,29372900 +What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA 20200108,11081200 +What is the hs code for BILBERRY (V.MYRTILLUS)ET.EX 36PCT (BHN BAKU SUPLEMEN) COA 19S0328502,13021990 +What is the hs code for CURCUMA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 19S0360203,38249999 +What is the hs code for GREEN TEA DRY DEC.EX/PHOSPHOL (BHN BAKU SUPLEMEN) COA 19S0269701,38249999 +"What is the hs code for MEG-3 '30' N-3 FOOD OIL ,4,5KG PJUG (BHN BAKU MAKANAN) COA TS00013977",29362500 +What is the hs code for PRAYPHOS MKP FG 25K BG (BHN BAKU KOSMETIK) COA 1931901,29420000 +"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A,20KG BA(BHN BAKU MAKANAN) COA WB19100467,469,470",29362100 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO190101,38249999 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO190101,38249999 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO190102,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK)COA EG543-191107,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) COA EG543-200101,38249999 +What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-200101,38249999 +What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-190404-GS,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS191102,38249999 +What is the hs code for HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIE191102,38249999 +What is the hs code for JOB'S TEARS HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA COL200101-B,38249999 +What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) COA OLVH200101-ENBIO,38249999 +What is the hs code for SAFFRON FLOWER HYDROGLYCERINED EXTRACT 80 (BHN BAKU KOSMETIK) COA CRS190502-GL80,38249999 +What is the hs code for SEABUCKTHORN HYDROGLYCOLIC EXTRACT (BHN BAKU OBAT) COA HIR200101-B,38249999 +What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA200101,38249999 +What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA VIV190701-BGBIO,38249999 +What is the hs code for CLOMIPHENE CITRATE USP/EP (BHN BAKU OBAT ) COA 201911190352,29221990 +What is the hs code for 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 052319/006049,38249999 +"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219030055, 30056, 40084",29420000 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ90913150,29362500 +"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000185972",29362900 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0319111747, 749 S/D 752",29420000 +"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00605068, VE00605069",29420000 +What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708190083,29420000 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519100295",29420000 +"What is the hs code for OPACODE WHITE (BHN BAKU PEWARNA TABLET), COA WP822726",32151900 +What is the hs code for MC-GLUCAN (BHN BAKU KOSMETIK) COA MCGL191211,39139090 +What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC 026-19-801,17021100 +What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC 026-19-801,17021100 +"What is the hs code for SODIUM SELENITE IN CARRIER, SODIUM SELENITE 0.85PCT-0.99PCT... (BHN BAKU OBAT) COA 3073760",28429010 +What is the hs code for SODIUM SELENITE MAX 0.99PCT IN CALCIUM CARBONATE (BHN BAKU OBAT) COA 3066563,28429010 +"What is the hs code for CALCIUM STEARATE POWDER, PH EUR.10.ED.,VEGETABLE (BHN BAKU OBAT) COA 3079064",38249999 +What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1903044380,29372900 +What is the hs code for SENSIVA SC 50 CN 10KG KA (BHN BAKU KOSMETIK) COA.1540601,38249999 +What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0036849,38249999 +What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9337057,38210090 +What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9337057,38210090 +What is the hs code for DIFCO BEEF EXTRACT 500G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9253766,38210090 +What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9281428,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9109987,38210090 +What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9122883,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9267765,38210090 +"What is the hs code for PEPTONE STARTER PAK NO.3(MEDIA U/ PENGEMBANGKAN MIKRO ORGANISME)BATCH 191029008,SAMPLE NO COMM",38210090 +"What is the hs code for PREDNISONE USP42 (BHN BAKU OBAT) COA NPD190911, NPD191117",29372100 +What is the hs code for ISDN 25PCT-LACTOSE 450 75PCT DILUTED (BHN BAKU OBAT) COA 2000058,29329990 +"What is the hs code for PANTOPRAZOLE SODIUM (STERILE) BHN BAKU OBAT, COA SI/PPZ/01001219",29333990 +What is the hs code for OXOMEMAZINE BASE (BHN BAKU OBAT) COA HXBCPN006,29343000 +What is the hs code for THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000035604,33029000 +What is the hs code for PLAISANCE P116808 (BHN BAKU KOSMETIK) COA.0000035606,33029000 +What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA 0000035607,33029000 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB19090218,29362800 +What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB19110253,29362100 +What is the hs code for BOTTLE GRAM DECOLORIZER 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9352509,38210090 +"What is the hs code for BOTTLE COOKED MEAT MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0014169",38210090 +"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9219559",38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9211356,38210090 +What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9256266,38210090 +What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9231272,38210090 +What is the hs code for PANEL VIEWER EUROPE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 457987,38210090 +"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9219559",38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9211356,38210090 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9266117,38210090 +What is the hs code for BOTTLE BISTMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183841,38210090 +What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218604,38210090 +What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9127592,38210090 +"What is the hs code for BOTTLE D-SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9218804",38210090 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9211435,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9142767,38210090 +What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273651,38210090 +What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9323677,38210090 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161545,38210090 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9255013,38210090 +What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7312565,38210090 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9168541,38210090 +What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239367,38210090 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273397,38210090 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9241879,38210090 +"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9211365",38210090 +What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9254329,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9148938,38210090 +What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9231272,38210090 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9261510,38210090 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239628,38210090 +What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142723,38210090 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9253973,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9219559,38210090 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9266117,38210090 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183841,38210090 +What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218604,38210090 +What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9273651,38210090 +What is the hs code for BOTTLE LACTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9323677,38210090 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161545,38210090 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9168641,38210090 +What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 9239568,38210090 +What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9231272,38210090 +"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9261510, 9353100",38210090 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239628,38210090 +What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9142723,38210090 +What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218604,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9219559,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9211356,38210090 +"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239282,9294153",38210090 +What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218538,38210090 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9291612,38210090 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161680,38210090 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183841,38210090 +What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218604,38210090 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 9218804,38210090 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161608,38210090 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9211435,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142767,38210090 +What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9273651,38210090 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9021613,38210090 +What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9323677,38210090 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9142728,38210090 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161545,38210090 +What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9273402,38210090 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9255013,38210090 +What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9310881,38210090 +"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9168641, ...",38210090 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161934,38210090 +What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9273621,38210090 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9239379,38210090 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9273397,38210090 +"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9253973,9315219",38210090 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9211365,38210090 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9211365,38210090 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9206092,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9324109,38210090 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9252365,38210090 +What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9231272,38210090 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9353100,38210090 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239628,38210090 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 9084661,38210090 +What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9142723,38210090 +What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9295486,38210090 +"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9288895,899",38210090 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161680,38210090 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8183841,38210090 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9142728,38210090 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9252365,38210090 +What is the hs code for BOTTLE XLD AGAR 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9239628,38210090 +What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9142908,38210090 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9353100,38210090 +What is the hs code for BOTTLE COOKED MEAT MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0014169,38210090 +What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 9364954,38210090 +What is the hs code for BOTTLE SKIM MILK 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9295571,38210090 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9291612,38210090 +What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9202311,38210090 +What is the hs code for BOTTLE PEPSIN 1 TO 10000 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9025890,38210090 +What is the hs code for BOTTLE POLYSORBATE 80 100G 1 EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9289195,38210090 +What is the hs code for BOTTLE GRAM CRYSTAL VIOLET 250ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9296589,38210090 +What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9301915,38210090 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) COA 9353100,38210090 +What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9198204,38210090 +What is the hs code for BOTTLE BRAIN HEART INFUSION BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9197613,38210090 +What is the hs code for BOTTLE MALT EXTRACT BROTH 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9295576,38210090 +What is the hs code for BOTTLE PHOSPHATE BUFFER PH 7.2 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9302927,38210090 +What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKIROORGANISME) BATCH 9302976,38210090 +What is the hs code for BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9337678,38210090 +What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9175490,38210090 +What is the hs code for BOTTLE HEMOGLOBIN FREEZE DRIED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9324009,38210090 +What is the hs code for BOTTLE DULCITOL 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8337666,38210090 +What is the hs code for BOTTLE MR-VP MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9354355,38210090 +What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9273419,38210090 +What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9219600,38210090 +What is the hs code for BOTTLE TRYPTOSE PHOSPHATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9364944,38210090 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH B018345M,38210090 +What is the hs code for BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9206582,38210090 +What is the hs code for MOMETASONE FUROATE MICRONIZED (BHN BAKU OBAT) COA NZ3259M,29372200 +What is the hs code for HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 2998491,33029000 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH626259,38249999 +"What is the hs code for MAGNESIUM CHLORIDE 6-HYDRATE,CRYST (BHN BAKU KOSMETIK) COA 3066587",28273100 +"What is the hs code for ETHOCEL STANDARD 14 PREMIUM (BHN BAKU PEWARNA TABLET), COA D184J24021",39123900 +What is the hs code for LEMON SECRET (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 03/19GL4,28399000 +What is the hs code for GELUCIRE 48/16 (BHN BAKU OBAT) COA 178335,28399000 +What is the hs code for GELUCIRE 44/14 (BAHAN BAKU OBAT) COA 177696,28399000 +What is the hs code for GELUCIRE 44/14 (BAHAN BAKU OBAT) COA 178289,28399000 +What is the hs code for TEFOSE 63 (BHN BAKU OBAT) COA 177721,28399000 +What is the hs code for TEFOSE 63 (BAHAN BAKU OBAT) COA 178126,28399000 +What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ91007012,29420000 +What is the hs code for ARGAN VIRGIN COLD PRESSED DEODORISED ORGANIC OIL (BHN BAKU KOSMETIK)COA ARHVD191106-SICBIO,38249999 +What is the hs code for ROSA DAMASCENA ORGANIC DISTILLATE 1:20 (BHN BAKU KOSMETIK)COA ROSD190916-BIO,38249999 +What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA200101,38249999 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO190102,38249999 +"What is the hs code for PANTOPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT, COA APSS19004",29333990 +"What is the hs code for BOTTLE B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9337189",38210090 +"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9235506",38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9256006,38210090 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9337905,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239389,38210090 +"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9246040",38210090 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9284311,38210090 +"What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH9211095,9287860",38210090 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9284311,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8207980,38210090 +"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9136505,...",38210090 +"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9238630",38210090 +What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9189630,38210090 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9284311,38210090 +What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9268832,38210090 +What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9338928,38210090 +What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9269991,38210090 +What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9304226,38210090 +"What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9241769,9339955",38210090 +"What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9274649,9354096",38210090 +What is the hs code for CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9274670,38210090 +What is the hs code for ANTI-HLA-DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9322195,38210090 +What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9310704,38210090 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9235506,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239389,38210090 +What is the hs code for VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9283338,38210090 +What is the hs code for NYSTATIN POWDER ROW (BHN BAKU OBAT) COA C114373,29419000 +What is the hs code for NYSTATIN MICRONIZED ROW (BHN BAKU OBAT) COA C131305,29419000 +What is the hs code for P.GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 19S0132200,13021990 +What is the hs code for P.GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 19S0132200,13021990 +What is the hs code for BILBERRY (V.MYRTILLUS)ET.EX 36PCT (BHN BAKU SUPLEMEN) COA 19S0328502,13021990 +What is the hs code for LECIGEL TM - 5KG (BHN BAKU KOSMETIK) COA 1924506,38249999 +What is the hs code for ECOGEL TM - 5KG (BHN BAKU KOSMETIK) COA 1934502,38249999 +What is the hs code for LECIGEL TM - 20KG (BHN BAKU KOSMETIK) COA 1933601,38249999 +What is the hs code for PHYTENSO TM - 5KG (BHN BAKU KOSMETIK) COA 1805516,38249999 +What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-1950919,29334910 +"What is the hs code for INSTANT TEA POWDER (TEA EXTRACT) BHN BAKU MAKANAN, COA 912282",9022010 +What is the hs code for METAMIZOLE SODIUM (BHN BAKU OBAT UTK PAKAN TERNAK) COA 1905466,29331900 +"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8207980",38210090 +"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9254142",38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9256006,38210090 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9337905,38210090 +What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9189630,38210090 +"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9239389",38210090 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9284311,38210090 +What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH0007091,38210090 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9284311,38210090 +What is the hs code for TUBE PENASE CONCENTRATE 10X20ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9324994,38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9018746,38210090 +"What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8285857",38210090 +What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364015,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239389,38210090 +What is the hs code for CS&T RUO BEADS 50 TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0009800,38210090 +What is the hs code for CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0051017,38210090 +What is the hs code for ERYTHROMYCIN ETHYL SUCCINATE BP (BHN BAKU OBAT) COA EES 067 A 20,29415000 +"What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 20100080, 20100083",29395900 +What is the hs code for CETIRIZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA 19002CZ6BI,29335990 +What is the hs code for LIDOCAINE BASE (BHN BAKU OBAT) COA. 190562,29242990 +What is the hs code for LIDOCAINE HCL (BHN BAKU OBAT) COA 191827,29242990 +"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX POWDER) BHN BAKU OBAT, COA M484429",29411019 +"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED GRADE A) ,BHN BAKU OBAT, COA M532003,M532004",29411019 +"What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) , COA 001228",38249999 +"What is the hs code for KF-6017 (17KG) BHN BAKU KOSMETIK, COA 912143",38249999 +"What is the hs code for KF-96A-6CS (16KG) BHN BAKU KOSMETIK, COA 910074",38249999 +"What is the hs code for KSG-210 (16KG) BHN BAKU KOSMETIK, COA 002338",38249999 +"What is the hs code for KSP-100 (10KG) BHN BAKU KOSMETIK , COA 911763",38249999 +"What is the hs code for KP-562P (16KG) BHN BAKU KOSMETIK , COA 802008",38249999 +"What is the hs code for KP-578 (16KG) BHN BAKU KOSMETIK, COA 912082",38249999 +What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA WIN,38249999 +What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA WIF,38249999 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA FAJ,38249999 +What is the hs code for TABCOAT TC WHITE (BHN BAKU PEWARNA TABLET) COA GA666098,32151900 +What is the hs code for OPADRY ORANGE (BHN BAKU PEWARNA TABLET) COA GA666096,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA GA666097,38249999 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200121,17029019 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200107,17029019 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200103,17029019 +What is the hs code for DICLOFENAC POTASSIUM BP 2020 (BHN BAKU OBAT) COA DFK/10010003,29224900 +What is the hs code for DICLOFENAC SODIUM USP 42 (BHN BAKU OBAT) COA DFS/10010023,29224900 +What is the hs code for DICLOFENAC SODIUM USP 42 (BHN BAKU OBAT) COA DFS/10010027 S/ 30,29224900 +What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA D01231UP,29053200 +"What is the hs code for CAROPHYLL RED 10PCT, 5KG BAG ALU (BHN BAKU OBAT UTK PAKAN TERNAK) COA UE01910718",32041900 +What is the hs code for DOXORUBICIN HYDROCHLORIDE EP (BHN BAKU OBAT) COA 0620036003,29419000 +What is the hs code for DOCETAXEL TRIHYDRATE (BHN BAKU OBAT) COA 201909005,29329990 +What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG200117,29362700 +"What is the hs code for ACRYPOL 980 (20KG) BAHAN BAKU KOSMETIK, COA 11519129,11519133",39069099 +"What is the hs code for 20KG ACRYPOL PRINTED BOX ,NO COMMERCIAL VALUE, BATCH 1020",48192000 +What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 90609,38247900 +What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 90920,38247900 +What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 90601,38247900 +What is the hs code for WILDLIME HARVEST TM AF (BHN BAKU KOSMETIK) COA 80901,38247900 +What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 91214,38247900 +What is the hs code for WILDLIME HARVEST TM AF (BHN BAKU KOSMETIK) COA 80901,38247900 +What is the hs code for MB TRAY RODAC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 106BH,38210090 +What is the hs code for MICROBIO M3D AUTOSCANNER EN (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH AS0132,38210090 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9319163,38210090 +What is the hs code for PLATE TSA W LP IC-XT PACK RODOC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9353341,38210090 +What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH 0010401,38210090 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01905018,29362900 +"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT19110284,UT19120294",29362800 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01905018,29362900 +"What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF19020048",29420000 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT19120294,29362800 +What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT19090231,29362800 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19100098,29362900 +What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT19090231,29362800 +"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01907087",29362400 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT19100216,29362400 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19100098,29362900 +What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01905017,29362900 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT19100008,29362600 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01909234,29362800 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01909234,29362800 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01909234,29362800 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519054,29362200 +"What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB19109001",29362700 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT19090097,29362900 +What is the hs code for DL-ALPA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT19090231,29362800 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11910006,29362900 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519054,29362200 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91002459,29362200 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19090018,29362900 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01911059,32041900 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90913150,29362500 +What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT19090231,29362800 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01907087",29362400 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19090018,29362900 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11910006,29362900 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90913150,29362500 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519054,29362200 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01902008,29362900 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19080153,29362400 +What is the hs code for VITAMIN B12 0.PCT WS (BHN BAKU SUPLEMEN) COA UT19100008,29362600 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT19100008,29362600 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905017,29362900 +"What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905017, UE01905018",29362900 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19030004,29362900 +What is the hs code for CALCIUM D-PANTOTHENATE 25KG BOX (BHN BAKU SUPLEMEN) COA TL01908764,29362400 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT1900008,29362600 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19060068,29362800 +"What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT19060068, UT19090231",29362800 +"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19060068,UT19060079",29362800 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010008,29362900 +What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1902032,29362300 +What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1902032,29362300 +What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1902032,29362300 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01909050,32041900 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ91002459,29362200 +"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL01908764",29362400 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT19100008,29362600 +What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT19090231,29362800 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01909234,29362800 +What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273314,38210090 +What is the hs code for CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9274670,38210090 +What is the hs code for ANTYI-HLA-DR FITC L243 (G46-6) RUO/GMP(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9322195,38210090 +What is the hs code for CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9345605,38210090 +What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9310704,38210090 +"What is the hs code for SERASENSE SF CM5 (BAHAN BAKU KOSMETIK) COA PA00117016, 18,20",29319049 +"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 2001EF6310",29224900 +What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1907753133,29362600 +"What is the hs code for OMEPRAZOLE PELLETS -8,5PCT (BHN BAKU OBAT) COA OP8.5/121600120",30039000 +"What is the hs code for RESTYLANE SB VITAL LIDOCAINE IML ,COA 17315-1",33049990 +"What is the hs code for RESTYLANE LIDOCAINE HA FILLER 1ML N2 S2 SE, COA 17462-1",33049990 +"What is the hs code for RESTYLANE LYFT LIDOCAINE 1 ML ,COA 17511-1",33049990 +"What is the hs code for RESTYLANE VOLYME 1ML , COA 17642-1",33049990 +"What is the hs code for RESTYLANE DEFYNE 1ML , COA 17568-1",33049990 +"What is the hs code for RESTYLANE KYSSE 1 ML, COA 17615-1",33049990 +"What is the hs code for RESTYLANE SB VITAL LIGHT LIDOCAINE 1ML , COA 17326-2,17459-2, 17634-1",33049990 +"What is the hs code for CEFADROXIL MONOHYDRATE (PURIDROX POWDER) BHN BAKU OBAT, COA B334677S/D 679, 681",29419000 +What is the hs code for ALLOPURINOL USP (BHN BAKU OBAT) COA 19080AY3ARII,29335990 +"What is the hs code for THEOPHYLLINE ANHYDROUS (BAHAN BAKU OBAT) COA 19491,20019,21 S/D 23, 25,26,28 S/D 31",29395900 +"What is the hs code for PROPYPHENAZONE (ST) (BHN BAKU PEWARNA TABLET) COA 1911210,211,221,225,226",29331100 +What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA DOC0062021,28363000 +What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA DOC0062021,28363000 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH625713,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH625712,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH625711,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH625263,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH625786,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH625769,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH625752,38249999 +What is the hs code for OPADRY PURPLE (BHN BAKU PEWARNA TABLET) COA SH625768,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH625747,38249999 +What is the hs code for OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH625771,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH625276,39061090 +What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH625764,39061090 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH625945,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH625765,38249999 +What is the hs code for ACRYL-EZE PURPLE (BHN BAKU PEWARNA TABLET) COA SH625736,39061090 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH625826,38249999 +What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH625746,39061090 +What is the hs code for PIGMENT BLEND YELLOW (BHN BAKU PEWARNA TABLET) COA SH625745,32151900 +"What is the hs code for MAGNESIUM OXIDE, LIGHT POWDER, BP 2020 (BHN BAKU OBAT) COA 1104624",28273100 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH626155,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH625668,38249999 +What is the hs code for OPADRY PURPLE (BHN BAKU PEWARNA TABLET) COA SH627015,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH625946,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH626159,38249999 +"What is the hs code for OPALUX MAROON (BHN BAKU PEWARNA TABLET), COA DT698487",32151900 +"What is the hs code for OPADRY II TAN (BHN BAKU PEWARNA TABLET), COA DT698507",38249999 +"What is the hs code for OPACODE BLACK (BHN BAKU PEWARNA TABLET), COA DT698793",32151900 +What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET) COA DT698788,32151900 +What is the hs code for METHOCEL E6 PREMIUM LV...(BHN BAKU PEWARNA TABLET)COA D011J8DL02,39123900 +What is the hs code for METHOCEL E50 PREMIUM LV... (BHN BAKU PEWARNA TABLET) COA D011J17L03,39123900 +What is the hs code for METHOCEL K4M PREMIUM CR ...(BHN BAKU PEWARNA TABLET)COA D180J9A002,39123900 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA MTP04520,28363000 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB19090218,29362800 +What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB19110253,29362100 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB19090218,29362800 +What is the hs code for DRY VITAMIN E ACETATE 950NS (BHN BAKU SUPLEMEN) COA WB00918690,29362800 +What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB19110253,29362100 +What is the hs code for MONOPROPYLENE GLYCOL (BHN BAKU KOSMETIK) COA PG(S)200109,29053200 +"What is the hs code for DEXAMETHASONE BP2010/USP41 (BHN BAKU OBAT) COA.NED191203,NED191205",29372200 +What is the hs code for MAGNOLIA BARK EXTRACT (BHN BAKU KOSMETIK) COA MBE05-190903,38249999 +"What is the hs code for ASCORBIC ACID,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01912343",29362700 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19120057,29362100 +"What is the hs code for FRUITFLOW II SD ,1KG BAL (BHN BAKU SUPLEMEN) COA 19417",29362900 +"What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB19120517",29362700 +"What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF, IKG ALUF (BHN BAKU SUPLEMEN) COA UE01905024",32030010 +"What is the hs code for ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01912338",29362700 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE02001011,32041900 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT19050001,32041900 +"What is the hs code for COATED ASCORBIC ACID, TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01912457",29362700 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19120057,29362100 +What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19100047,29362100 +"What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ90907010, UQ90907011",29420000 +What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0040762,38249999 +What is the hs code for AC091KF FUCOGEL 1.5P 25 KG (BHN BAKU KOSMETIK) COA 0041338,38249999 +What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0041341,38249999 +What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0041499,38249999 +"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000186494",29362900 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0319111772",29420000 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519100295",29420000 +"What is the hs code for PARSOL MCX ,25KG PC (BHN BAKU KOSMETIK) COA 0519010014",29420000 +"What is the hs code for PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0819120285",29420000 +What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001552129,29420000 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT19120090,29362800 +"What is the hs code for STAY-C (R) 50, 5KG BAG ALU (BHN BAKU KOSMETIK) COA CS18060031,32,33",29362700 +"What is the hs code for PARSOL 340 ,25KG PC (BHN BAKU KOSMETIK) COA 0219040085,0219060109",29420000 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT19080029,29362100 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11910006,29362900 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19030004,29362900 +What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92001273,21069059 +What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE01909014,29362100 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19100098,29362900 +What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799037686L,38249999 +What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829017962K,38249999 +What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785018040L,38249999 +What is the hs code for RIBOXYL TM (BHN BAKU KOSMETIK) COA R1116501,38249999 +What is the hs code for RIBOXYL TM (BHN BAKU KOSMETIK) COA R1286501,38249999 +"What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK), COA 1735914",38249999 +"What is the hs code for DEFENSCALP TM (BHN BAKU KOSMETIK), COA 785077880K",38249999 +"What is the hs code for DEFENSCALP TM (BHN BAKU KOSMETIK), COA 785077880K",38249999 +"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK), COA 5624919",38249999 +"What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK), COA 829017654K",38249999 +"What is the hs code for LANACHRYS 2B PF (PRESERVATIVE- (BHN BAKU KOSMETIK), COA 793057447K",38249999 +"What is the hs code for NEUTRAZEN TM (BHN BAKU KOSMETIK), COA 828017668K",38249999 +What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) COA 1805516,38249999 +What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785018040L,38249999 +"What is the hs code for NEUTRAZEN TM (BHN BAKU KOSMETIK), COA 828017668K",38249999 +What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830017322K,38249999 +What is the hs code for LANACHRYS 2B PF (PRESERVATIVE- BHN BAKU KOSMETIK) COA 793057447K,38249999 +What is the hs code for NEUTRAZEN TM (BHN BAKU KOSMETIK) COA 828017309K,38249999 +What is the hs code for EMULMETIK TM 100 (BHN BAKU KOSMETIK) COA 1830418,38249999 +What is the hs code for CIPROFLOXACIN LACTATE INJECTABLE GRADE (BHN BAKU OBAT) COA TURTLE/CL/200201,29335990 +What is the hs code for SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 1908045293,29322090 +"What is the hs code for PACLITAXEL SEMISYNTHETIC (USP,TEST-2) (BHN BAKU OBAT) COA 899NSH003",29329990 +"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC1920T",27101990 +What is the hs code for IMERCARE 11T (BHN BAKU KOSMETIK) COA S38/20,38029090 +What is the hs code for 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 073119/006130,38249999 +What is the hs code for CALCIUM CARBONATE DC TYPE CS90 PHARMA (BHN BAKU OBAT) COA 202000031,28365010 +What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P9R08QA000,29420000 +"What is the hs code for PARSOL HMS, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0419060155",29420000 +"What is the hs code for PARSOL HMS, 25KG PC (BHN BAKU KOSMETIK) COA 0418110248",29420000 +"What is the hs code for PARSOL ZX ,20KG DRUM (BHN BAKU KOSMETIK) COA 190510012, 190511012",29420000 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT19090183,29362100 +"What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P9Q20QA000,P9R03QA000,P9R08QA000",29420000 +"What is the hs code for PARSOL EHS, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0719090220",29420000 +"What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0719080180",29420000 +"What is the hs code for PARSOL EHS ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0719090220,231",29420000 +"What is the hs code for PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0819120285",29420000 +What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519041,29362500 +What is the hs code for MINERAL PREMIX HBS08022019 (BHN BAKU MAKANAN) COA XW92002109,21069059 +What is the hs code for PERTANI FK PREMIX 1.0 (BHN BAKU MAKANAN) COA XW92002110,21069059 +What is the hs code for PX 204005 (BHN BAKU MAKANAN) COA XW92002074,21069059 +What is the hs code for VITAMIN PREMIX 103047-D (BHN BAKU MAKANAN) COA XW92001302,21069059 +What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519041,29362500 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200207,17029019 +What is the hs code for ASTABIO ARV-S (BHN BAKU OBAT) COA.1903231,32030010 +"What is the hs code for METAMIZOLE SODIUM (BHN BAKU OBAT) COA 2002273,2276,2279,2285",29331900 +"What is the hs code for LIFE'S DHA (TM) S35-O300, 5KG ALUF (B.BAKU SUPLEMEN) COA VY00348008",29362500 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA FAJ,38249999 +What is the hs code for PROMOIS SILK-1000 (BHN BAKU KOSMETIK) COA FBK,38249999 +What is the hs code for SILASOMA MFA(S) (BHN BAKU KOSMETIK) COA WJJ,38249999 +What is the hs code for PROMOIS KR-30 (BHN BAKU KOSMETIK) COA FAG,38249999 +What is the hs code for AMITOSE HGA (BHN BAKU KOSMETIK) COA WLM,38249999 +"What is the hs code for KF-96A-6CS (16KG) BHN BAKU KOSMETIK, COA 910075",38249999 +"What is the hs code for KSG-210 (16KG) BHN BAKU KOSMETIK, COA 002349",38249999 +"What is the hs code for KSP-100 (10KG) BHN BAKU KOSMETIK , COA 001768",38249999 +"What is the hs code for KP-56A (18KG) BHN BAKU KOSMETIK , COA 001805, 001808",38249999 +"What is the hs code for KSP-101 (15KG) BHN BAKU KOSMETIK, COA 912338",38249999 +What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED(BHN BAKU UTK PAKAN TERNAK ) COA MTP00720,28363000 +"What is the hs code for JAGUAR HP 105, 25KG CARDBOARD CARTON (BHN BAKU KOSMETIK) COA H1909148C",38249999 +What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0007261,38210090 +"What is the hs code for 500/600 SUGLETS 500/600 (30/35 MESH)(BHN BAKU PEWARNA TABLET), COA ST513020",32151900 +"What is the hs code for SIMVASTATIN (BAHAN BAKU KOSMETIK) COA DK40-1910182, DK40-1912072, DK40-1912091",29322090 +What is the hs code for L-MENTHOL CRYSTALS INDIAN NATURAL (BHN BAKU KOSMETIK) COA NFPL/MEN/271,38249999 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01909052,32041900 +What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92002154,21069059 +What is the hs code for ACNE BUSTERS (BHN BAKU KOSMETIK) COA 192406,38249999 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 192773,38249999 +What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 192920,13021990 +What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA192253,13021990 +"What is the hs code for MANDARIN CLEAR (BHN BAKU KOSMETIK), COA 192120",13021990 +What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 192085,13021990 +What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA200202,38249999 +What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA200101,38249999 +What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED(BHN BAKU UTK PAKAN TERNAK ) COA MTP00720,28363000 +"What is the hs code for SODIUM STARCH GLYCOLATE BP (BHN BAKU OBAT), COA ASGP/01/250120, ASGP/02/030220",29420000 +"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/01/090120,090120-1,060220",29420000 +"What is the hs code for CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/11/170120, 190120",39123100 +What is the hs code for ONDANSETRON HCL USP (BHN BAKU OBAT) COA 19OS001,29332900 +What is the hs code for GUAIFENESIN USP (BHN BAKU OBAT) COA GGE-2002016 S/D GGE-2002023,29094900 +"What is the hs code for GUAIFENESIN USP 41 (B. BAKU OBAT) COA GGE-2002011,GGE-2002024, NO COMMERCIAL VALUE",29094900 +"What is the hs code for EMPTY FIBER DRUM , NO COMMERCIAL VALUE",48192000 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0010404,38210090 +What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9357546,38210090 +What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH 9357546,38210090 +"What is the hs code for BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0021915",38210090 +"What is the hs code for BOTTLE GRAM IODINE STANILIZED 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9353718",38210090 +What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0013917,38210090 +What is the hs code for BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9337386,38210090 +What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 191444701,38210090 +"What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8018298M, 8038249M",38210090 +What is the hs code for BOTTLE NITRATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9148558,38210090 +"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 5 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9280556",38210090 +What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9324094,38210090 +What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9219600,38210090 +What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9025631,38210090 +What is the hs code for BOTTLE BORDET GENGOU AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9004960,38210090 +"What is the hs code for BOTTLE TRYPTOSE PHOSPHATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9364944",38210090 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B018350M,38210090 +What is the hs code for BOTTLE APT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8134772,38210090 +What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9324170,38210090 +What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9156832,38210090 +What is the hs code for BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9189647,38210090 +What is the hs code for GASPAK EZ LARGE INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7326630010,38210090 +What is the hs code for BOTTLE PHENYLALANINE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9189619,38210090 +What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0028518,38210090 +What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0028518,38210090 +What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0028518,38210090 +What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0028518,38210090 +What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0028518,38210090 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161934,38210090 +"What is the hs code for BD ACCURI C6 PLUS SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0008882,0008883",38210090 +What is the hs code for DEL OPTIPLEX WORKSTATION BUNDLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8137704,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9219559,38210090 +What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273651,38210090 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9353100,38210090 +What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0002860,38210090 +What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9273340,38210090 +What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206968,38210090 +What is the hs code for BOTTLE LAURYL SULFATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9141969,38210090 +What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9028828,38210090 +What is the hs code for BOTTLE AGAR NOBLE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9197730,38210090 +What is the hs code for BOTTLE PEPSIN 1 TO 10000 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9347113,38210090 +What is the hs code for BOTTLE REINFORCED CLOSTRIDIAL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9352656,38210090 +What is the hs code for BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161593,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 4 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8297988,38210090 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 9303735,38210090 +What is the hs code for BOTTLE GRAM CRYSTAL VIOLET 250G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9352484,38210090 +What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9303770,38210090 +What is the hs code for KIT UNIVERSAL VIRAL TRANSPORT STD SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 192230800,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9219559,38210090 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161608,38210090 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9315468,38210090 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9241879,38210090 +What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273839,38210090 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9353100,38210090 +What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0013917,38210090 +What is the hs code for BOTTLE BACTO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239282,38210090 +What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 9218538,38210090 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9291612,38210090 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161680,38210090 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0009096,38210090 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218804,38210090 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9211435,38210090 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9021613,38210090 +What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9148762,38210090 +"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9255013, 9295511",38210090 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161934,38210090 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9315219,38210090 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9241879,38210090 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9295571,38210090 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9211365,38210090 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9206092,38210090 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9353100,38210090 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9084661,38210090 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9310358,38210090 +"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9050790,9205168",38210090 +What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9295560,38210090 +What is the hs code for FEED GRADE DICALCIUM PHOSPHATE POWDER (BHN BAKU UNTUK PAKAN TERNAK) COA TB2001002,28352510 +What is the hs code for SUPPOCIRE A PELLETS (BHN BAKU OBAT) COA 18E2201,28399000 +What is the hs code for CETYL PALMITATE PELLETS CAR (BHN BAKU OBAT) COA 178899,28399000 +What is the hs code for TRANSCUTOL P (BAHAN BAKU OBAT) COA 177111,28399000 +What is the hs code for SUPPOCIRE A PELLETS (BAHAN BAKU OBAT) COA 18E2201,28399000 +What is the hs code for SUPPOCIRE BM PELLETS (BHN BAKU OBAT) COA 19E2001,28399000 +What is the hs code for TRANSCUTOL P (BAHAN BAKU OBAT) COA 177111,28399000 +What is the hs code for COMPRITOL 888 ATO (BHN BAKU OBAT) COA 178565,28399000 +What is the hs code for TRANSCUTOL P (BHN BAKU OBAT) COA 177111,28399000 +What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH626176,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH626275,38249999 +What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH626180,39061090 +What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH627177,39061090 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH625826,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH625826,38249999 +What is the hs code for ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH626175,39061090 +What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH626197,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH626193,38249999 +What is the hs code for OPADRY II BLUE (BHN BAKU PEWARNA TABLET) COA SH626206,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH626177,39061090 +What is the hs code for OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH626204,38249999 +What is the hs code for OPADRY AMB II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH626178,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH625842,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH626163,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH626161,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH626165,38249999 +What is the hs code for PIGMENT BLEND BROWN (BHN BAKU PEWARNA TABLET) COA SH627034,32151900 +What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH626179,39061090 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH626283,38249999 +What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH626199,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH626164,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH626162,38249999 +"What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453521544,4453582992",39139090 +What is the hs code for EPERISONE HYDROCHLORIDE SYN-TECH (BHN BAKU OBAT) COA.E10-19066,29333990 +What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-0090120,29334910 +What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB19110253,29362100 +"What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 03750220,03870220",29359000 +"What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 03700220, 03710220,03720220...",29359000 +What is the hs code for OXALIPLATIN (BAHAN BAKU OBAT) COA L20200114,28439000 +What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC 031-19-801,17021100 +What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC 031-19-801,17021100 +What is the hs code for SODIUM ASCORBATE 99PCT TG (BHN BAKU SUPLEMEN) COA WB19120517,29362700 +What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT20010007,29362500 +What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK)COA GSC-K-010210,38249999 +What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK)COA SFP-N-011720,38249999 +What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-011720,38249999 +What is the hs code for SK BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) COA MSEEC-022219,38249999 +What is the hs code for SK BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK)COA CPG-391069,38249999 +What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-011720,38249999 +What is the hs code for CLEANBIO TM-ZINC (PROTECT) CL0024-K18 (BHN BAKU KOSMETIK) COA 20ZDP,38249999 +What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA MCP-N-060929,38249999 +"What is the hs code for SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-053009,GTB-010610",38249999 +What is the hs code for SK BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) COA MSEEC-022219,38249999 +What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-040479,38249999 +What is the hs code for SK BIOLAND SERICIN 4.5CL (BHN BAKU KOSMETIK) COA SCPKJB0701,38249999 +What is the hs code for SK BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK)COA SAFW-010720,38249999 +What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-043029,38249999 +What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-022019,38249999 +What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-971729,38249999 +What is the hs code for MC-GLUCAN (BHN BAKU KOSMETIK) COA MCGL200121,39139090 +What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP821764,39059990 +What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW... (BHN BAKU PEWARNA TABLET) COA WP818968,32151900 +What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU PEWARNA TABLET) COA WP822860,32151900 +What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU PEWARNA TABLET) COA WP822178,32151900 +What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP815363,32151900 +What is the hs code for FD AND C BLUE #1/BRILLIANT BLUE (BHN BAKU PEWARNA TABLET) COA WP816335,32151900 +"What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ00217001, 7002, 7012",29420000 +What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 1AX2001022,29181400 +What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1903044380,29372900 +What is the hs code for SUPPOCIRE AM PELLETS (BAHAN BAKU OBAT) COA 20E0501,28399000 +What is the hs code for LANSOPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA LP0220C009,30039000 +"What is the hs code for METAMIZOLE SODIUM (BHN BAKU OBAT) COA 2002272,2285,2286,2289,2165",29331900 +"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN), BATCH UE01911058",32041900 +What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113351,29339990 +What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113378,29339990 +What is the hs code for SURCRALOSE (BHN BAKU OBAT) COA 20022701,29321400 +What is the hs code for PYRAZINAMIDE EP/USP (BHN BAKU OBAT) COA WHOPZ 237 B 20 S/D WHOPZ 247 B 20,29339990 +What is the hs code for CHONDROITIN SULPHATE SODIUM (BHN BAKU OBAT) COA HS2002064,29362900 +What is the hs code for WILDLIME HARVEST TM AF (BHN BAKU KOSMETIK) COA 80901,13021950 +What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 91019,13021950 +What is the hs code for CARBOXYMETHYLCELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/02/260220,39123100 +What is the hs code for MICONAZOLE NITRATE (BAHAN BAKU OBAT) COA H20191201,29332900 +What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 261119,25070000 +"What is the hs code for MEG-3 3020 EE P OIL ,190KG MEF (BHN BAKU SUPLEMEN) COA TS00014000",29362500 +What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 2AX2001028,29181400 +"What is the hs code for MAGNESIUM CARBONATE ,HEAVY (BHN BAKU OBAT) COA 1104545",28332100 +"What is the hs code for ZINC SULFATE 1-HYDRATE, POWDER ,USP42 (BHN BAKU OBAT) COA 3080016",28332920 +What is the hs code for SODIUM ACETATE ANHYDROUS (BHN BAKU MAKANAN) COA 3079845,29152910 +"What is the hs code for SODIUM SELENITE MAX 0,99PCT IN CALCIUM CARBONATE (BHN BAKU OBAT) COA",28429010 +"What is the hs code for MAGNESIUM OXIDE, LIGHT, POWDER, BP 2020 (BHN BAKU OBAT) COA 1104435",28273100 +What is the hs code for B-CAROTENE 30PCT FS(BHN BAKU MAKANAN) COA UE02001021,32041900 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN), COA TL02002870, 2878, 2886, 2898",29362700 +What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA. 8MT200146,30032000 +What is the hs code for NOSCAPINE BASE BP (BHN BAKU OBAT) COA P0200120,29391900 +"What is the hs code for EDIBLE BOVINE GELATINE 140/20 HAL(BAHAN BAKU OBAT ), COA 5002003034",35030049 +What is the hs code for PHARMACEUTICAL BOVINE GELATINE 200/18 (BHN BAKU OBAT) COA 5002003033,35030049 +"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT20010015, UT20020016",29362800 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT19050001,32041900 +What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19100047,29362100 +"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02001010, 11",32041900 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02001011,32041900 +"What is the hs code for ASCORBYL PALMITATE,25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ91106250",29362700 +"What is the hs code for ASCORBIC ACID ,25KG BOX ALU (BHN BAKU MAKANAN) COA TL01909626",29362700 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT20010015,29362800 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT20010921,922",29362100 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02001011,32041900 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01909626",29362700 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02001010,32041900 +"What is the hs code for COATED ASCORBIC ACID TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01912444",29362700 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19120057,29362100 +"What is the hs code for ETHYL PANTHENOL ,1000KG IBC (BHN BAKU KOSMETIK) COA TL01911814",29362400 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT20010012,29362800 +What is the hs code for NIACINAMIDE USP (BHN BAKU KOSMETIK) COA 19-20/NMD(P)/U/167 S/D 171,29362900 +What is the hs code for AMISOL TM 4135 - 25KG (BHN BAKU KOSMETIK) COA 1934001,38249999 +What is the hs code for LECIGEL TM - 5KG (BHN BAKU KOSMETIK) COA 2003305,38249999 +What is the hs code for SWT-7 TM H - 5KG (BHN BAKU KOSMETIK) COA 2000203,38249999 +"What is the hs code for RESTYLANE SB VITAL LIDOCAINE IML ,COA 17315-1",33049990 +"What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML , COA 17511-1, 17555-1",33049990 +"What is the hs code for RESTYLANE VOLYME 1 ML ,COA 17735-1",33049990 +"What is the hs code for RESTYLANE REFYNE 1ML , COA 17757-1",33049990 +"What is the hs code for RESTYLANE DEFYNE 1ML , COA 17818-1",33049990 +"What is the hs code for RESTYLANE KYSSE 1 ML, COA 17615-1",33049990 +"What is the hs code for RESTYLANE SB VITAL LIGHT LIDOCAINE 1ML , COA 17634-1",33049990 +"What is the hs code for RESTYLANE SB VITAL LIDOCAINE IML ,COA 17315-1",33049990 +"What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML, COA 17555-1",33049990 +"What is the hs code for RESTYLANE VOLYME 1ML ,COA 17735-1",33049990 +"What is the hs code for RESTYLANE REFYNE 1ML , COA 17757-1",33049990 +"What is the hs code for RESTYLANE DEFYNE 1ML , COA 17818-1",33049990 +"What is the hs code for RESTYLANE KYSSE 1 ML, COA 17615-1, 17643-1",33049990 +"What is the hs code for RESTYLANE SB VITAL LIGHT LIDOCAINE 1ML , COA 17634-1",33049990 +What is the hs code for FERRIC PYROPHOSPHATE (BHN BAKU MAKANAN) COA 3067278,28353990 +What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA P-64,29397900 +What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA P-64,29397900 +What is the hs code for ADSORB AFLA (BHN BAKU UNTUK PAKAN TERNAK) COA 133,25081000 +"What is the hs code for KSG-210 (16KG) BHN BAKU KOSMETIK, COA 002364",38249999 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 192773,38249999 +What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 192920,13021990 +What is the hs code for MANDARIN CLEAR (BHN BAKU KOSMETIK) COA 192120,13021990 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121910284,285",28363000 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 121910285,122000007",28363000 +"What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 90724,90821,90713,90716",38029090 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH626787,38249999 +What is the hs code for OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH627682,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH626280,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH626762,38249999 +What is the hs code for OPADRY AMB RED (BHN BAKU PEWARNA TABLET) COA SH626763,38249999 +What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH626195,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH626760,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH626757,38249999 +What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH626792,38249999 +What is the hs code for OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH627682,38249999 +What is the hs code for OPADRY AMB MAROON (BHN BAKU PEWARNA TABLET) COA SH626761,38249999 +What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH626758,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH627038,39061090 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH627038,39061090 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH626788,38249999 +What is the hs code for ACRYL-EZE II ORANGE (BHN BAKU PEWARNA TABLET) COA SH626451,39061090 +What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH626997,39061090 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH626415,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH626437,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH626417,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH626421,38249999 +What is the hs code for OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA SH626416,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH626422,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH627037,39061090 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH627038,39061090 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH626425,39061090 +What is the hs code for PIGMENT BLEND YELLOW (BHN BAKU UTK PEWARNA TABLET) COA SH627356,32151900 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01912350",29362700 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT19050001,32041900 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19120057,29362100 +What is the hs code for VITAMIN A PALMITATE 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT19100026,29362100 +What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT19100026,29362100 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)(BHN BAKU MAKANAN) COA UT20010191,29362100 +What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ91007012,29420000 +"What is the hs code for DL-PANTHENOL 50 L,1000KG IBC (BHN BAKU KOSMETIK) COA TL02001601",29362400 +"What is the hs code for ETHYL PANTHENOL ,1000KG IBC (BHN BAKU KOSMETIK) COA TL01911814",29362400 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN)COA TL01910914,12571,12595,2002866,...",29362700 +"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN), COA UE02001011,1020,1021",32041900 +What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00918690,29362800 +What is the hs code for BILBERRY (VACCINIUM MYRTILLUS) ETHANOLIC EXTRACT 36PCT (BHN BAKU SUPLEMEN) COA 20S0006803,13021990 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01906195,29362800 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ91002486,29362200 +"What is the hs code for CALCIUM D-PANTOTHENATE,25KG BOX (BHN BAKU MAKANAN) COA TL01912852",29362400 +What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92002154,21069059 +"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19100100,101",29362900 +"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT19100257",29362800 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19100101,29362900 +What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01905018,29362900 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT19100219,29362400 +What is the hs code for NIAINAMIDE (BHN BAKU MAKANAN) COA OP11910006,29362900 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT19120040,29362900 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE ,20KG BOX (BHN BAKU MAKANAN) COA QZ11190520",29362500 +What is the hs code for VITAMIN PREMIX HBS151118 (BHN BAKU MAKANAN) COA XW92002265,21069059 +"What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT19090231,UT19100257",29362800 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19100101,29362900 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01906195,29362800 +"What is the hs code for ASCORBIC ACID 90PCT GRANULATION ,25KG BOX (BHN BAKU SUPLEMEN) COA WB19109001",29362700 +What is the hs code for RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1903039,29362300 +"What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB19109001",29362700 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905018,29362900 +"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT19090231",29362800 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01908117",29362400 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11910006,29362900 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19060079,29362800 +"What is the hs code for ASCORBIC ACID 90PCT GRANULATION ,25KG BOX (BHN BAKU SUPLEMEN) COA WB1910900126",29362700 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91013173,29362500 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91002486,29362200 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91002486,29362200 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11910006,29362900 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91002486,29362200 +What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519041,29362500 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519055,29362200 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91102534,29362200 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01905018,29362900 +"What is the hs code for 500/600 SUGLETS 500/600 (30/35 MESH)(BHN BAKU PEWARNA TABLET), COA ST513514",32151900 +What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA. 20200223,17023010 +"What is the hs code for CENTELLA ASIATICA EXTRACT 95PCT ( BHN BAKU KOSMETIK), COA GKP 19091 EOU",38249999 +What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA C002-YB2003317,29211900 +"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED) BHN BAKU OBAT, COA M532100,2135,2137,2138,2129,2139",29411019 +What is the hs code for METHOCEL E6 PREMIUM LV...(BHN BAKU PEWARNA TABLET)COA D011J7KL02,39123900 +What is the hs code for METHOCEL K100 PREMIUM LV... (BHN BAKU PEWARNA TABLET) COA D180I97021,39123900 +What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0036760,38210090 +What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9288618,38210090 +What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9339275,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2189343,38210090 +What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8338681,38210090 +What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9122883,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0007337,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0007337,38210090 +What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9339275,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2189343,38210090 +What is the hs code for BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9294107,38210090 +What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9121860,38210090 +What is the hs code for VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 121910045,28363000 +What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000009,28363000 +What is the hs code for SORBITOL SOLUTION 70PCT CRYSTALLINE (BHN BAKU OBAT) COA 1920P617,29054400 +"What is the hs code for PARSOL 340 ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219040084",29420000 +"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000187266, 187433",29362900 +"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00607669, 7670",29420000 +What is the hs code for VTP # MS012 (BHN BAKU MAKANAN) COA XW92002299,21069059 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12001019,29362900 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12001019,29362900 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT19040012,32041900 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19090007,29362900 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19090018,29362900 +What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519041,29362500 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00619040,29362300 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01908270",29362700 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12001019,29362900 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01902012,29362900 +What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92001275,21069059 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UE01906195,29362800 +What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92001274,21069059 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19100101,29362900 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19100101,29362900 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT19100220,29362300 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ90903221,29362200 +"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT19120095,96",29362800 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12001019,29362900 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT19050033,32041900 +"What is the hs code for DL-A-TOCOPHERYL ACETATE,5KG PE PAIL (BHN BAKU MAKANAN) COA UT19100257",29362800 +What is the hs code for MIXED TOCOPHEROL 95 (BHN BAKU MAKANAN) COA XH20191001,29362800 +What is the hs code for MIXED TOCOPHEROL 95 (BHN BAKU MAKANAN) COA XH20191001,29362800 +"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A 20KG (BHN BAKU MAKANAN), COA WB19110473, S/D 475",29362100 +What is the hs code for SOYA LECITHIN (BHN BAKU MAKANAN) COA 2191117-15,29232010 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH626164,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH627038,39061090 +What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH626997,39061090 +What is the hs code for ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH626996,39061090 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH627432,38249999 +What is the hs code for METHOCEL K100M PREMIUM (BHN BAKU PEWARNA TABLET)COA D180K13001,39123900 +"What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU SUPLEMEN), COA UJ010",29181400 +What is the hs code for BUDESONIDE MICRONIZED (BHN BAKU OBAT) COA NA0157M,29372900 +What is the hs code for RUGENER DREIKRONEN HEILKREIDE 25K (BHN BAKU KOSMETIK) COA 81690551,25090000 +What is the hs code for GINKGO EXTRACT (BHN BAKU KOSMETIK) COA 81692248,13021950 +"What is the hs code for TRISODIUMCITRATE DIHYDRATE FINE GRANULAR (BHN BAKU MAKANAN), COA UJ002",29181400 +What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU MAKANAN) COA UJ006,29181400 +"What is the hs code for LIFE'S DHA S35-O100, 5KG ALUF (B.BAKU SUPLEMEN) COA VY00339609",29362500 +What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB111219,39123900 +What is the hs code for FD AND C BLUE #2/INDIGO CARMINE (BHN BAKU PEWARNA TABLET) COA WP815898,32151900 +What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP821787,39059990 +What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU PEWARNA TABLET) COA WP822178:1,32151900 +What is the hs code for FD & C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP818970,32151900 +What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP818231,32151900 +What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT(BHN BAKU OBAT UTK PEWARNA TABLET) COA WP814313,32151900 +What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP814838,32151900 +What is the hs code for FD AND C BLUE #2/INDIGO CARMINE AL (BHN BAKU PEWARNA TABLET) COA WP815897,32151900 +What is the hs code for GRANULAC (R) 70 (BHN BAKU OBAT) COA L101845019,17021100 +What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 2AX2003283,29181400 +"What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0056915",38210090 +"What is the hs code for CD3 APC-H7 SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0027983",38210090 +What is the hs code for CD25 PE 2A3 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0010234,38210090 +What is the hs code for CD34 PE-CY7 8G12 Y7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9358599,38210090 +What is the hs code for CD19-PE-CY7 SJ25C1 100 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0021024,38210090 +"What is the hs code for CD10 APC HI10A 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9269823",38210090 +What is the hs code for CD20 V500-C RUO (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9331815,38210090 +What is the hs code for CD200 APC (MRC OX-104) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0052723,38210090 +What is the hs code for CD43 APC H7 (1G10) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0052753,38210090 +What is the hs code for CD38 APC H7 (HB7) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0022307,38210090 +What is the hs code for ANTI-KAPPA FITC/ ANTI LAMBDA PE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9329635,38210090 +"What is the hs code for HU CD64 APC-H7 10.1 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9039654",38210090 +What is the hs code for HU CD36 HORIZON V450 CB38 50TST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9136944,38210090 +What is the hs code for HU CD10 BV421 HI10A 100 TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9262144,38210090 +What is the hs code for HU CD19 BV510 SJ25C1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9337378,38210090 +What is the hs code for HU CD14 BV421 MPHIP9 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0010270,38210090 +What is the hs code for HU CD103 BV421 BER-ACT8 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9178814,38210090 +What is the hs code for HU CD3 BV421 UCHT1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9113553,38210090 +What is the hs code for CD45 PERCP-CY5.5 2D1 50 TEST RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9274670,38210090 +What is the hs code for ANTI HLA DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0063454,38210090 +"What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0035573,9310704",38210090 +"What is the hs code for CD34 PE CY7 8G12 Y7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9358599",38210090 +What is the hs code for CD25 PE 2A3 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0010234,38210090 +"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU KOSMETIK) COA UT19100257",29362800 +"What is the hs code for NIACINAMIDE PC, 25KG BOX ( BHN BAKU KOSMETIK) COA 0000186799",29362900 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0319111794,796",29420000 +"What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0026660",29362500 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT20010008,29362800 +What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES1901168,29420000 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01905018,29362900 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT19090183",29362100 +"What is the hs code for STAY-C (R) 50,5KG BAG ALU (BHN BAKU KOSMETIK) COA CS18060033,34",29362700 +"What is the hs code for PARSOL ZX, 20KG FIBRE DRUM (BHN BAKU KOSMETIK) COA 190511012",29420000 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708200010,11,12",29420000 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708200012,13",29420000 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 07080200013,14,15",29420000 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT19120040,29362900 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91102546,29362200 +What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20190203,29362800 +What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20191203,29362800 +What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20190203,29362800 +What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPLEMEN) COA XH20191203,29362800 +"What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPLEMEN) COA XH20191203, XH20200101",29362800 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010008,29362900 +What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPLEMEN) COA XH20200101,29362800 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010008,29362900 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ91010258,29362300 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT19120252,29362400 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN), COA QZ11190521",29362500 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11190521",29362500 +"What is the hs code for RONOXAN A (BHN BAKU MAKANAN), COA UE01909005",29362100 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT19120040,29362900 +"What is the hs code for CALCIUM ASCORBATE ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB19100012",29362700 +What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA. 20200309,17023010 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200227,17023010 +What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA 20200308,11081200 +What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA MTP04920,28363000 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH627831,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH627858,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH628167,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH626918,38249999 +What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH626901,39061090 +What is the hs code for OPADRY YELLOW (BHN BAKU PEWARNA TABLET) COA SH626898,38249999 +What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH626921,39061090 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH626425,39061090 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH627095,38249999 +What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH626176,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH626915,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH626900,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH626920,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH627032,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH626918,38249999 +What is the hs code for STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN541008,35051010 +What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA 178703,28399000 +What is the hs code for LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 03/19GL4,28399000 +"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 03/19GL4,SAMPLE NO COMM VALUE",28399000 +What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BAHAN BAKU KOSMETIK) COA 178542,28399000 +What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK)COA 192415,13021990 +"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 220519,270819,280819,290819",38029090 +What is the hs code for IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S823/19,38029090 +What is the hs code for SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA 200317111,38249999 +What is the hs code for EUXYL K 100 -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1544896,38249999 +What is the hs code for EUXYL K 900 -CO8- 10KG KA (BHN BAKU KOSMETIK) COA 1543631,38249999 +What is the hs code for SENSIVA SC 50 -CN- 10KG KA (BHN BAKU KOSMETIK) COA 1543900,38249999 +What is the hs code for SENSIVA SC 50 -CN-10KG KA (BHN BAKU KOSMETIK) COA 1543900,38249999 +What is the hs code for EUXYL K 720 -C08- 10 KG KA (BHN BAKU KOSMETIK) COA 1544763,38249999 +What is the hs code for EUXYL PE 9010 -CN- 10KG KA (BHN BAKU KOSMETIK) COA 1544357,38249999 +"What is the hs code for EUXYL PE 9010 -CN- 200 FA (BHN BAKU KOSMETIK) COA 1537186,1539504LUE",38249999 +What is the hs code for EUXYL K 712 -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1544167,38249999 +What is the hs code for EUXYL K 940 10KG KA (BHN BAKU KOSMETIK) COA 1541745,38249999 +What is the hs code for EUXYL PE 9010 -CN- 200KG FA (BHN BAKU KOSMETIK) COA 1539504,38249999 +What is the hs code for EUXYL PE 9010 -CN- 10KG KA (BHN BAKU KOSMETIK) COA 1544357,38249999 +What is the hs code for EUXYL K 120 100 ML FL (BHN BAKU KOSMETIK) COA 1532897 SAMPLE NO COMMERCIAL VALUE,38249999 +What is the hs code for EUXYL K 712 (SAMPLE) 100 ML FL (BHN BAKU KOSMETIK) COA 1544057 SAMPLE COMMERCIAL VALUE,38249999 +"What is the hs code for EUXYL K 903 (SAMPLE) 100 ML FL (BHN BAKU KOSMETIK) COA 1543252, SAMPLE NO COMMERCIAL VALUE",38249999 +What is the hs code for SENSIVA PA 40 SAMPLE 100ML FL (BHN BAKU KOSMETIK) COA 1544977 SAMPLE NO COMMERCIAL VALUE,38249999 +"What is the hs code for SENSIVA SC 50 SAMPLE(S) 100 ML FL (BHN BAKU KOSMETIK) COA 1542660,SAMPLE NO COMMERCIAL VALUE",38249999 +What is the hs code for S & M PHENOXYETHANOL RCH 25KG KA (BHN BAKU KOSMETIK) COA 1545104,38249999 +What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC 005-20-801,17021100 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN541128,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN541110,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN541130,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN541129,35051010 +What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA T700500,29419000 +What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA S700500,29419000 +What is the hs code for CEFTIZOXIME SODIUM (BHN BAKU OBAT) COA S600400,29419000 +What is the hs code for CEFTIZOXIME SODIUM (BHN BAKU OBAT) COA T600400,29419000 +"What is the hs code for DEXAMETHASONE BP2010/USP41 (BHN BAKU OBAT) COA.NED191210,NED200101",29372200 +"What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 06230320,06470320,06490320...",29359000 +What is the hs code for SUPPOCIRE BM PELLETS (BAHAN BAKU OBAT) COA 20E0904,28399000 +What is the hs code for PHARMABURST (R) 500 (BHN BAKU OBAT) COA 121910343,21069099 +What is the hs code for MILK TALCUM MOD1 FM2 (BHN BAKU KOSMETIK) COA 10300200,38249999 +What is the hs code for ANTISHINE WASH 1 FM2 (BHN BAKU KOSMETIK) COA 10300133,38249999 +What is the hs code for ROSUVASTATIN CALCIUM MICRONIZED (BHN BAKU OBAT) COA M325137,29359000 +"What is the hs code for NONIVAMIDE (SYNTHETIC CAPSAICIN)BHN BAKU KOSMETIK, COA.20200105",29241990 +What is the hs code for DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU UNTUK PAKAN TERNAK) COA TB2002002,28352510 +What is the hs code for MONENDOX 200 BMP (BHN BAKU UTK PAKAN TERNAK) COA 2002211,29419000 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP20034380,34381",29211900 +What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA C002-YB2003377,29211900 +"What is the hs code for FERROUS GLUCONATE, POWDER, USP 42 (BHN BAKU OBAT) COA 3083209",29181600 +"What is the hs code for ZINC SULFATE 1-HYDRATE, POWDER ,USP42 (BHN BAKU OBAT) COA 3080018",28332920 +"What is the hs code for FERROUS SULFATE ,DRIED, POWDER, USP42 (BHN BAKU OBAT) COA 3081041",28332920 +What is the hs code for MAGNESIUM L-HYDROGENASPARTATE 2-HYDRATE (BHN BAKU OBAT) COA 1103273-1,29224900 +"What is the hs code for UNIMER U-151 (BHN BAKU KOSMETIK) COA VO00001407, VO00001974",39059990 +What is the hs code for SUPPOCIRE BP PELLETS (BHN BAKU OBAT) COA 19E2304,28399000 +What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 19E3002,28399000 +What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 19E5107,28399000 +What is the hs code for SUPPOCIRE BM PELLETS (BHN BAKU OBAT) COA 19E1404,28399000 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200307,17029019 +"What is the hs code for CEFADROXIL MONOHYDRATE (PURIDROX COMPACTED) BHN BAKU OBAT, COA B340149,340151,340153",29419000 +What is the hs code for LIPOID S 67 F (BHN BAKU OBAT) COA. 576200-2190033/001-006 (6),29232010 +What is the hs code for LIPOID PPL-600 (BHN BAKU OBAT) COA 577200-2190225/009-010 (2),29232010 +What is the hs code for LIPOID PPL-600 (BHN BAKU OBAT) COA. 577200-2190226/011-012 (2),29232010 +What is the hs code for LIPOID S 67 F (BHN BAKU OBAT) COA. 576200-2190033/007-012 (6),29232010 +"What is the hs code for NOREPINEPHRINE BITARTRATE ,BHN BAKU OBAT, COA 540104",29379010 +What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA FBA,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS191102,38249999 +What is the hs code for LOTUS OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA NEN191105-H,38249999 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO200101,38249999 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO190102,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-200101,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-200101,38249999 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 19B0112400,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 19B0163800,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPPLEMEN) COA 19B0163900,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPPLEMEN) COA 19B0164000,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0164100,13021990 +What is the hs code for BUTCHERBROOM DRY HYDR EX.9-11PCT (BHN BAKU SUPLEMEN) COA 19B0053800,13021990 +What is the hs code for VALERIAN D.H.E >0.8PCT VAL.AC (BHN BAKU SUPLEMEN) COA 19B0092800,13021990 +What is the hs code for NEUTRAZEN TM (BHN BAKU KOSMETIK) COA 828018191L,38249999 +What is the hs code for NEUTRAZEN TM (BHN BAKU KOSMETIK) COA 828017668K,38249999 +What is the hs code for MELANOSTATINE TM 5BG (50PPM) (BHN BAKU KOSMETIK) COA 817048274L,38249999 +What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 702018037K,38249999 +What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769017736K,38249999 +"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK), COA 785017958K",38249999 +"What is the hs code for LANACHRYS 2B PF (BHN BAKU KOSMETIK), COA 793057447K",38249999 +"What is the hs code for MINIPORYL TM (BHN BAKU KOSMETIK), COA 832017667K",38249999 +"What is the hs code for NEUTRAZEN TM (BHN BAKU KOSMETIK), COA 828018191L",38249999 +"What is the hs code for LANABLUE TM PARABEN FREE (BHN BAKU KOSMETIK), COA 788027752K",38249999 +"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 070120, 291219",25070000 +What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-190405,29397900 +What is the hs code for METHISOPRINOL (BHN BAKU OBAT) COA MTP0030136,29349990 +"What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 20100228, 20100234",29395900 +What is the hs code for LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 19480,38249999 +What is the hs code for GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 2010001900,38249999 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200315,17029019 +What is the hs code for METHOCEL K15M PREMIUM CR...(BHN BAKU PEWARNA TABLET)COA D180J9M003,39123900 +What is the hs code for CLEANBIO TM-ZINC (PROTECT) (CL0024-K18) (BAHAN BAKU KOSMETIK) COA 20ZDP,38249999 +What is the hs code for SODIUM VALPROATE (BAHAN BAKU OBAT) COA.454191,29159090 +What is the hs code for PIROXICAM (BHN BAKU OBAT) COA PRX2019017M,29349990 +What is the hs code for SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 1908075969,29322090 +"What is the hs code for ARGAN OIL,10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0026660",29362500 +"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0220020001",29420000 +"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0220020001",29420000 +What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPLEMEN) COA XH20200202,29362800 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT(BHN BAKU SUPLEMEN) COA WB00519139,29362900 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519139,29362200 +"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00619040,19041",29362300 +What is the hs code for STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN541002,35051010 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH628040,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH627591,39061090 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH627585,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH627588,38249999 +What is the hs code for OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH627590,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH627584,38249999 +What is the hs code for OPADRY AMB YELLOW BROWN (BHN BAKU PEWARNA TABLET) COA SH627614,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH627586,38249999 +What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH627594,39061090 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH627404,38249999 +What is the hs code for OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH627688,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH627611,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH627274,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH627615,38249999 +What is the hs code for ACRYL-EZE PURPLE (BHN BAKU PEWARNA TABLET) COA SH628511,39061090 +What is the hs code for ACRYL-EZE PURPLE (BHN BAKU PEWARNA TABLET) COA SH628510,39061090 +What is the hs code for ACRYL-EZE WHITE(BHN BAKU PEWARNA TABLET) COA SH628201,39061090 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH628200,39061090 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH628209,39061090 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH628208,39061090 +What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH628661,38249999 +What is the hs code for OPADRY II AMB RED (BHN BAKU PEWARNA TABLET) COA SH628660,38249999 +What is the hs code for HYDROCHLOROQUINE SULFATE (BHN BAKU OBAT) COA 12-SQKB-200306,29334990 +What is the hs code for L-LYSINE HYDROCHLORIDE (FEED GRADE) 98.5PCT (BHN BAKU UTK PAKAN TERNAK )COA QDDX20-03-0140HJ-IB,29349990 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH628031,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH627813,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH627814,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH627831,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH627859,38249999 +What is the hs code for OPADRY BROWN (BHN BAKU PEWARNA TABLET) COA SH627815,38249999 +What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH628016,39061090 +What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH627812,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH628041,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH628015,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH628014,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH627879,38249999 +What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH628017,39061090 +What is the hs code for ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH628013,39061090 +"What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX2004009, 4010",29181400 +What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-021920,38249999 +What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 2019F1287,38249999 +"What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-01043029,010430",38249999 +What is the hs code for SK BIOLAND GLA-40 (BHN BAKU KOSMETIK) COA GLCP-020310,38249999 +What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-030529,38249999 +What is the hs code for SK BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK)COA AACN-011310,38249999 +What is the hs code for SK BIOLAND CUCUMBER EXTRACT (BHN BAKU KOSMETIK) COA CUPD-012020,38249999 +What is the hs code for SK BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) COA MSEEC-022219,38249999 +What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA 20200318,11081200 +"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA083206, 204",28363000 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200323,17029019 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200311,17029019 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200317,17029019 +What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA 20200314,17023010 +What is the hs code for BICAR FOOD 27/50 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP07720,28363000 +What is the hs code for FLOWLAC (R) 100H (BHN BAKU OBAT) COA. L105810250,17021100 +What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104310620,17021100 +What is the hs code for CAPSULAC (R) 60 (BHN BAKU OBAT) COA L100410520,17021100 +What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103860220,17021100 +What is the hs code for CELLACTOSE (R) 80 (BHN BAKU OBAT) COA L100460120,17021100 +"What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT FS, 5KG ALU (BHN BAKU SUPLEMEN) COA UE01907002",29420000 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL02001606",29362700 +What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110015,29420000 +What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110015,29420000 +What is the hs code for B-CAROTENE 10PCT EMULS (BHN BAKU SUPLEMEN) COA UE01910016,32041900 +What is the hs code for B-CAROTENE 10PCT EM YELLOW (BHN BAKU SUPLEMEN) COA UT20030001,32041900 +"What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ000217003,4, UQ90907011",29420000 +"What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ00217002, 7005",29420000 +What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ00317004,29420000 +"What is the hs code for VC ASCORBIC ACID 325 MESH, 20KG BOA1PO... (BAHAN BAKU SUPLEMEN) COA HPD191019,2003036, 3042...",29362700 +"What is the hs code for VC ASCORBIC ACID 325 MESH, 20KG BOA1PO (BAHAN BAKU SUPLEMEN) COA HPD2003089,3096.,3103,3113",29362700 +"What is the hs code for VC ASCORBIC ACID DC 97PCT ,25KG BAL (BHN BAKU SUPLEMEN) COA HPG1910002, HPG2003001",29362700 +"What is the hs code for CHOLINE CHLORIDE 60 PCT (BHN BAKU PAKAN UTK TERNAK), COA 202003T-CCH",38249999 +"What is the hs code for CITRIC ACID ANHYDROUS (KOSHER-PASSOVER) (BHN BAKU MAKANAN) COA UJ012, UJ013",29181400 +"What is the hs code for RANITIDINE HCL USP (BHN BAKU OBAT)COA. RH0470120,0480120,1970320",29321900 +"What is the hs code for TRISODIUMCITRATE DIHYDRATE FINE GRANULAR (BHN BAKU MAKANAN), COA UJ006",29181400 +What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU MAKANAN) COA UJ012,29181400 +What is the hs code for IMERCARE 400D S (BHN BAKU KOSMETIK) COA 1905A4-05,38029090 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ91210334,29362300 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ91210316,29362300 +What is the hs code for REDIVIVO (R) LYCOPENE 10PCTCWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110015,29420000 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02001022,32041900 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE02001022,32041900 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG(BHN BAKU SUPLEMEN) COA UT20020008,32030010 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19120057,29362100 +What is the hs code for CAPSULAC (R) 60 (BHN BAKU OBAT) COA L100410520,17021100 +"What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET), COA SH629243",38249999 +What is the hs code for BACTO TRYPTONE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0042379,38210090 +What is the hs code for BACTO TRYPTONE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0042379,38210090 +What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9121860,38210090 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200327,17029019 +"What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 2AX2004041, 4043",29181400 +What is the hs code for CLEANBIO TM-ZINC (PROTECT) (CL0024-K18) (BAHAN BAKU KOSMETIK) COA 20ZDP,38249999 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA.122000006,7,8",28363000 +What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL (BHN BAKU PEWARNA TABLET)COA D180K19002,39123900 +What is the hs code for VACCINIUM MYRTYLLUS DRY EX. (BHN BAKU SUPLEMEN) COA 20S0047001,13021990 +What is the hs code for P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 32347/M1,13021990 +What is the hs code for BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 20S0062103,13021990 +What is the hs code for GREEN TEA DRY DEC.EX/PHOSPHOL (BHN BAKU SUPLEMEN) COA 19S0269701,13021950 +What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 19S0108400,38249999 +What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 19S0193900,38249999 +What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 19S0209900,38249999 +What is the hs code for GREEN TEA DRY DEC.EX/PHOSPHOL (BHN BAKU SUPLEMEN) COA 19S0269701,13021950 +What is the hs code for CURCUMA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 20S0035903,38249999 +What is the hs code for CENTELLA ASIATICA/PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 32811/H1,38249999 +What is the hs code for VACCINIUM MYRTILLUS DRY EX (BHN BAKU SUPLEMEN) COA 20S0047001,13021990 +"What is the hs code for STAY-C (R) 50,20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE01903046,49",29362700 +"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT20010015,23",29362800 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT20010023,29362800 +"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL(BHN BAKU KOSMETIK) COA UT19100257",29362800 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT20010010,29362800 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01905018,29362900 +What is the hs code for VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT19120041,29362900 +"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ90902406,UQ91002494",29362200 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE, 29KG BOX (BHN BAKU MAKANAN) COA QZ11190614",29362500 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11190614",29362500 +"What is the hs code for NIACINAMIDE FCC,25KG BOX (BHN BAKU MAKANAN) COA 0000187473",29362900 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12001013,29362900 +What is the hs code for ANTIOXIDANT PREMIX FOR GUMMY (BHN BAKU MAKANAN) COA XW92003065,21069059 +"What is the hs code for NIACINAMIDE FCC, 25KG BOX (BHN BAKU MAKANAN) COA 0000187473",29362900 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02001008,29362800 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL01911147",29362400 +"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU MAKANAN) COA UT19100257",29362800 +What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT19100257,29362800 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11190614",29362500 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90802361,29362200 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90902406,29362200 +"What is the hs code for ASCORBIC ACID 90PCT GRANULATION,25KG BOX (BHN BAKU SUPLEMEN) COA WB19119007",29362700 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91002494,29362200 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12001013,29362900 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01912527",29362700 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19080153,29362400 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01912527",29362700 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01912527",29362700 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01912527",29362700 +"What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WP19119007",29362700 +"What is the hs code for ASCORBIC ACID 90PCT GRANULATION ,25KG BOX (BHN BAKU SUPLEMEN) COA WB19119007,9009",29362700 +What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519041,29362500 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT19040012,32041900 +"What is the hs code for CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB19100012",29362700 +What is the hs code for DRY VITAMIN K1 5PCT SD(BHN BAKU SUPLEMEN) COA UT19090007,29362900 +"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19090018,19",29362900 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00619041,29362300 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519058,29362200 +What is the hs code for D-PANTHENOL 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01911147,29362400 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ00103303,29362200 +"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ90802361, UQ90902406",29362200 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90902406,29362200 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91002494,29362200 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT20010188,189",29362100 +"What is the hs code for NIACINAMIDE FCC, 25KG BOX (BHN BAKU SUPLEMEN) COA 0000187473",29362900 +"What is the hs code for NIACINAMIDE FCC, 25KG BOX (BHN BAKU MAKANAN) COA 0000187473",29362900 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT19100220,29362400 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02001008,29362800 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02001008,29362800 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ00103303,29362200 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT19110014,29362600 +"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219040084",29420000 +What is the hs code for LIQUORICE LC (BHN BAKU KOSMETIK) COA.115385,13021920 +What is the hs code for PLAISANCE P116808 (BHN BAKU KOSMETIK) COA.0000038952,33029000 +What is the hs code for THE MATCHA I P001602 (BHN BAKU KOSMETIK) COA 0000038942,33029000 +"What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU PEWARNA TABLET) COA WP814318,AZ5755",32151900 +What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU PEWARNA TABLET) COA WP822185,32151900 +What is the hs code for FD AND C BLUE #1/BRILLIANT BLUE (BHN BAKU PEWARNA TABLET) COA WP816335,32151900 +What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU PEWARNA TABLET) COA WP822862,32151900 +What is the hs code for FD AND C BLUE #1/BRILLIANT BLUE (BHN BAKU PEWARNA TABLET) COA WP816335:AZ6852,32151900 +What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU PEWARNA TABLET) COA WP824673:1,32151900 +What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU PEWARNA TABLET) COA WP822866:BA0298,32151900 +What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU PEWARNA TABLET) COA WP814316:AZ5758,32151900 +What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA OBAT) COA WP821786,39059990 +What is the hs code for FD AND C RED #40/ALLURA RED AC AL (BHN BAKU PEWARNA TABLET) COA WP820592:AZ8936,32151900 +What is the hs code for FC AND C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP818232:AZ7799,32151900 +What is the hs code for PREDNISONE USP42 (BHN BAKU OBAT) COA.NPD200410,29372100 +"What is the hs code for BOTTLE GRAM SAFRANIN 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 002819, 9353466",38210090 +What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0041114,38210090 +What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B02B318M,38210090 +What is the hs code for BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9309252,38210090 +"What is the hs code for NYSTATIN POWDER ROW (BHN BAKU OBAT) COA C114387, C114399",29419000 +What is the hs code for NYSTATIN MICRONIZED ROW (BHN BAKU OBAT) COA C131274,29419000 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP20034458, XP20034459",29211900 +What is the hs code for SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA 200309012,38249999 +What is the hs code for BIOCELLACT CHAMOMILLA BD (BHN BAKU KOSMETIK) COA 193125,13021990 +What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 191799,13021990 +What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 193115,29329990 +"What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 192085,192760",13021990 +"What is the hs code for CINDERELLACARE (BHN BAKU KOSMETIK), COA 192822",13021990 +What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 192929,13021990 +"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT19120262, 263",29362400 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19110102,29362900 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ91110280,29362300 +"What is the hs code for PX 103070C (BHN BAKU MAKANAN) COA XW92003289, 90",21069059 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT19080029,29362100 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19090007,29362900 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519139,29362900 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519058,29362200 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01912527",29362700 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT20010188,29362100 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01902012,29362900 +"What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19080153,154",29362400 +"What is the hs code for D-A-TOCOPHERYL-ACETATE,20KG JUG (BHN BAKU SUPLEMEN) COA XH20200202",29362800 +"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB01906085,87,88",29362300 +What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519041,29362500 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91013186,29362500 +"What is the hs code for ASCORBIC ACID 90PCT GRANULATION ,25KG BOX (BHN BAKU SUPLEMEN) COA WB19119010",29362700 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01908419",29362700 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ91110280,29362300 +"What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P9R08QA000, P9R09QA000",29420000 +"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000187434",29362900 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01911147,01911148,02001008",29362400 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519100308,0519110335",29420000 +"What is the hs code for PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519110335,336",29420000 +"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0034823",38210090 +"What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0013917",38210090 +What is the hs code for BOTTLE SODIUM DESOXYCHOLATE 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8312884,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 00348236,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9211356,38210090 +"What is the hs code for PLATE STERILE RODAC EMPTY ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH0014801,28518,34699",38210090 +"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 8219795,9302047",38210090 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9161608,38210090 +What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273651,38210090 +What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9323677,38210090 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9315468,38210090 +What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9148762,38210090 +"What is the hs code for BOTTLE MAC-CONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9161545",38210090 +What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273402,38210090 +What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9302327,38210090 +What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239367,38210090 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239319,38210090 +What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9338809,38210090 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0008443,38210090 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9287872,38210090 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9353100,38210090 +What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9316509,38210090 +What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239367,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9324109,38210090 +"What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9302327",38210090 +What is the hs code for BOTTLE BIGGY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9231143,38210090 +What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0013690,38210090 +What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9175490,38210090 +What is the hs code for BOTTLE MYP AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9324178,38210090 +What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309193,38210090 +What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0021157,38210090 +What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218024,38210090 +What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0056343,38210090 +What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9224604,38210090 +What is the hs code for BOTTLE YEAST CARBON BASE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0038689,38210090 +What is the hs code for BOTTLE WL DIFFERENTIAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9337172,38210090 +What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9280615,38210090 +What is the hs code for GASPAK EZ STANDARD INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH7326629010,38210090 +What is the hs code for BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0042967,38210090 +What is the hs code for BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9344975,38210090 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 9353100,38210090 +What is the hs code for BOTTLE HEART INFUSION AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273651,38210090 +What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0034699,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9211356,38210090 +What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9273651,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9324109,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9324109,38210090 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9315219,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9219559,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0034823,38210090 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9302047,38210090 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161680,38210090 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0009096,38210090 +What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218604,38210090 +What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 9127592,38210090 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 92188048,38210090 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161608,38210090 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9211435,38210090 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9021613,38210090 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9315468,38210090 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161545,38210090 +What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9310881,38210090 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9261868,38210090 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161934,38210090 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9315219,38210090 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9241879,38210090 +What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9338809,38210090 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0008443,38210090 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9211362,38210090 +What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9273839,38210090 +What is the hs code for BOTTLE TAT BROTH BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0021091,38210090 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9287872,38210090 +What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9231272,38210090 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9353100,38210090 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9239628,38210090 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9309312,38210090 +What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9295486,38210090 +"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9219559,9364957",38210090 +"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0034823,9280673",38210090 +What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239282,38210090 +What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9218604,38210090 +What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9273651,38210090 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0077148,38210090 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9261868,38210090 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9239319,38210090 +What is the hs code for BOTTLE BPOTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9311217,38210090 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9241879,38210090 +What is the hs code for BOTTLE SKIM MILK 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0008443,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9324109,38210090 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9353100,38210090 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9309312,38210090 +What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9273651,38210090 +What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 0034699,38210090 +What is the hs code for BOTTLE MALT AGAR 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9302327,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9364957,38210090 +What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9338809,38210090 +What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9316509890,38210090 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9352422,38210090 +What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9269210,38210090 +"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH9296257,9310358",38210090 +What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA D01431UP,29053200 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA C002-YB2004279, C002-YB2004305",29211900 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP09620,28363000 +What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 189135,29332900 +What is the hs code for SCHISANDRA EXTRACT (BAHAN BAKU OBAT) COA SCE03-20041601,13021990 +What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1903224672,29372900 +"What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ00317004,7007",29420000 +What is the hs code for PYRAZINAMIDE EP/USP (BHN BAKU OBAT) COA WHOPZ 259 B 20 S/D WHOPZ 269 B 20,29339990 +"What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET), COA DT700664",32151900 +"What is the hs code for OPALUX MAROON (BHN BAKU PEWARNA TABLET), COA DT700663",32151900 +What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET) COA DT700640,32151900 +"What is the hs code for ETHOCEL STANDARD 20 PREMIUM (BHN BAKU PEWARNA TABLET), COA D184J3H021",39123900 +What is the hs code for METHOCEL E6 PREMIUM LV (BHN BAKU PEWARNA TABLET)COA D011J7KL02,39123900 +What is the hs code for METHOCEL K15M PREMIUM (BHN BAKU PEWARNA TABLET) COA D180J8O001,39123900 +What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA 8MT200345,30032000 +"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1911237,1911238,1952087,1911242",29242990 +What is the hs code for POVIDONE K-25 (BHN BAKU OBAT) COA PK25-200106F11,39059990 +What is the hs code for CROSPOVIDONE XL (BHN BAKU OBAT) COA PP200221XL,39059990 +"What is the hs code for CITICOLINE SODIUM (BHN BAKU OBAT) COA 3A26190722, 3A26200111",29349990 +What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 2003028,29349990 +What is the hs code for INOSITOL (BHN BAKU OBAT) COA 202003060,29061300 +What is the hs code for GLUCOSAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA WA202002008,29329990 +What is the hs code for METHYLSULFONYLMETHANE USP (BHN BAKU OBAT) COA 20200316,29309090 +"What is the hs code for IRBESARTAN (BHN BAKU OBAT), COA C5562-19-008",29332900 +"What is the hs code for LEVOFLOXACIN HEMIHYDRATE (FREEALKALINE) BHN BAKU OBAT,COA C008-1912114",29349990 +"What is the hs code for FIBRE DRUM, PRICE AND AMOUNT ARE FOR CUSTOM ONLY",48192000 +"What is the hs code for METAMIZOLE SODIUM INJECTABLE GRADE (BHN BAKU OBAT) COA 19121331,19121332",29331900 +What is the hs code for METAMIZOLE SODIUM REGULAR GRADE (BHN BAKU OBAT) COA 2004586,29331900 +"What is the hs code for CAFFEINE (BHN BAKU OBAT) COA 2003535,2004595,2004600,2004601,2004610",29393000 +What is the hs code for IBUPROFEN (BHN BAKU OBAT) COA 20017043,29163990 +What is the hs code for IBUPROFEN ( BHN BAKU OBAT) COA 20047165,29163990 +What is the hs code for BICAR FOOD 27/50 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP09120,28363000 +What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED(BHN BAKU UTK PAKAN TERNAK ) COA MTP01620,28363000 +What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01905018,29362900 +What is the hs code for PX103070-C3 (BHN BAKU MAKANAN) COA XW92003292,21069059 +What is the hs code for VITAMIN MINERAL PREMIX INSTANT DRINK (BHN BAKU MAKANAN) COA XW92003299,21069059 +What is the hs code for VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92003344,21069059 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT19120041,29362900 +What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01905018,29362900 +What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01905018,29362900 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT20010918,29362100 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20010010,29362800 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT20010011,29362800 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905018,29362900 +"What is the hs code for PARSOL 340,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219040084",29420000 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519110336,10337,20366",29420000 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT20010915",29362100 +"What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF19085007,UF18316006",29420000 +"What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF19085007",29420000 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT20010023,29362800 +"What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF19085007",29420000 +"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT20010023,25",29362800 +"What is the hs code for OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET), COA SH629487",38249999 +What is the hs code for OPADRY PURPLE (BHN BAKU PEWARNA TABLET) COA SH628514,38249999 +What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 121910329,29054300 +What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000009,28363000 +What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000009,28363000 +What is the hs code for WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK)COA EG138-191002,38249999 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-C0200101,38249999 +What is the hs code for GRAPE SEED ORGANIC OIL (BHN BAKU KOSMETIK)COA RPM200102-ENBIO,38249999 +What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK)COA CFM191201-PGH,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-200101,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-200102,38249999 +What is the hs code for PEPPERMINT ORGANIC DISTILLATE 1:5 SB (BHN BAKU KOSMETIK) COA MEPD200401-BIO,38249999 +What is the hs code for COMPLEX DRY HAIR ( BHN BAKU KOSMETIK) COA CHS191102,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS191102,38249999 +What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) CFM191201-PGH,38249999 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-C0200101,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-200101,38249999 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO190102,38249999 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO190102,38249999 +What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA.0000070426,29309090 +What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA.0000070427,29309090 +What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 78508188L,38249999 +What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785018258L,38249999 +What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785018040L,38249999 +What is the hs code for PROGELINE TM (BHN BAKU KOSMETIK) COA 820057918L,38249999 +What is the hs code for MELANOSTATINE TM 5 BG (50PPM) (BHN BAKU KOSMETIK) COA 817048274L,38249999 +"What is the hs code for MELANOSTATINE TM 5 BG (BHN BAKU KOSMETIK), COA 817048274L",38249999 +"What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK), COA 784027671K",38249999 +"What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK), COA 769017736K",38249999 +"What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK), COA 785018188L",38249999 +"What is the hs code for LANACHRYS 2B PF (PRESERVATIVE (BHN BAKU KOSMETIK), COA 793057689K",38249999 +"What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK), COA 784027993K",38249999 +"What is the hs code for MELANOSTATINE TM 5 BG (50PPM) (BHN BAKU KOSMETIK), COA 817048335L",38249999 +"What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0037326",38210090 +"What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8285857",38210090 +What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 90011569,38210090 +What is the hs code for VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9283338,38210090 +What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9340914,38210090 +What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0050168,38210090 +What is the hs code for BOTTLE LACTOBACILLLI MRS BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273767,38210090 +"What is the hs code for BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0063478",38210090 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9312760,38210090 +"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH0009986,9364835",38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8207980,38210090 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9312760,38210090 +"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9254142",38210090 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9254801,38210090 +What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9189630,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239389,38210090 +"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH0015023,9246040",38210090 +What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0007091,38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037338,38210090 +What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037326,38210090 +What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037326,38210090 +What is the hs code for CD117PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0030043,38210090 +What is the hs code for CD10 APC HI10A 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9269823,38210090 +What is the hs code for CD25 PE 2A3 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0010234,38210090 +What is the hs code for CD34 PE-CY7 8G12 Y7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9358599,38210090 +What is the hs code for ANTI-KAPPA FITC/ ANTI-LAMBDA PE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0043087,38210090 +What is the hs code for CD20 V500-C RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9331815,38210090 +What is the hs code for CD200 APC (MRC OX-104) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0052723,38210090 +What is the hs code for CD38 APC-H7 (HB7) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0076940,38210090 +What is the hs code for CD56 APC NCAM 16.2 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0063445,38210090 +What is the hs code for CD11B APC D12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9330650,38210090 +What is the hs code for CD23 FITC EBVCS-5 RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9351395,38210090 +What is the hs code for HU CD64 APC-H7 10.1 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9039654,38210090 +What is the hs code for HU CD36 HORIZON V450 CB38 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9136944,38210090 +What is the hs code for HU CD3 BV421 HI 10A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9113553,38210090 +What is the hs code for HU CD10 BV421 HI10A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9262144,38210090 +What is the hs code for HU CD19 BV510 SJ25C1 100 TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9337378,38210090 +What is the hs code for HU CD14 BV421 MPHIP9 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0010270,38210090 +What is the hs code for HU CD138 BV421 MI15 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9301758,38210090 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9312760,38210090 +What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0017348,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8207980,38210090 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9312760,38210090 +"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9254801,9338712",38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0015023,38210090 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9284311,38210090 +What is the hs code for PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PI18050006,29349920 +What is the hs code for MC-GLUCAN (BHN BAKU KOSMETIK) COA MCGL200310,39139090 +What is the hs code for MIRANOL ULTRA C-32 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP002102R,34029099 +"What is the hs code for OPACODE WHITE (BHN BAKU PEWARNA TABLET), COA WP826254",32151900 +What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP821800,39059990 +What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP821799,39059990 +What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP821797,39059990 +What is the hs code for FD & C YELLOW #5/TARTRAZINE AL(BHN BAKU PEWARNA TABLET) COA WP822866,32151900 +What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU PEWARNA TABLET) COA WP814316,32151900 +What is the hs code for EPA DHA 44 37 (BHN SUPLEMEN KESEHATAN) COA EE4437-200320,29061300 +"What is the hs code for PACLITAXEL SEMISYNTHETIC (USP,TEST-2) (BHN BAKU OBAT) COA 8920NSH002",29329990 +What is the hs code for MONENDOX 200 BMP (BHN BAKU UTK PAKAN TERNAK) COA 2004061,29419000 +What is the hs code for LIPOID S 20 (BHN BAKU OBAT) COA. 572000-2190132/001-024 (24),29232010 +"What is the hs code for MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU MAKANAN) COA TS00014427",29362500 +"What is the hs code for MEG-3 '30' N-3 INF OIL, 4,5KG PJUG (BHN BAKU SUPLEMEN) COA TS00014322",29362500 +What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000173,28363000 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA109206,28363000 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP09620,28363000 +What is the hs code for BICAR FOOD 0/13 COARSE GRADE SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP09520,28363000 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH628444,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH628578,38249999 +What is the hs code for OPADRY EZ CLEAR (BHN BAKU PEWARNA TABLET) COA SH628367,38249999 +What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH628364,39061090 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH628409,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH628341,38249999 +What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH628401,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH628421,38249999 +What is the hs code for OPADRY QX YELLOW (BHN BAKU PEWARNA TABLET) COA SH628410,38249999 +What is the hs code for OPADRY 200 PINK (BHN BAKU PEWARNA TABLET) COA SH628411,38249999 +What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH628367,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH628043,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH629181,38249999 +What is the hs code for OPADRY EZ CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH628367,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH628366,38249999 +What is the hs code for OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA SH628368,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH627584,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH629269,38249999 +What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH628363,38249999 +What is the hs code for OPADRY II GRAY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH628369,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH628398,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH628652,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH628578,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH628167,38249999 +What is the hs code for OPADRY BROWN (BHN BAKU PEWARNA TABLET) COA SH628513,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH629727,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH629269,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH627919,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH628512,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH628565,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH629768,38249999 +What is the hs code for OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH628542,38249999 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH629710,38249999 +"What is the hs code for TABCOAT TC WHITE (BHN BAKU PEWARNA TABLET), COA GA670560",32151900 +What is the hs code for OPADRY SGR CLEAR (BHN BAKU UTK PEWARNA OBAT) COA GA670561,38249999 +"What is the hs code for ZINC PICOLINATE (BAHAN BAKU OBAT), COA 20002",29333910 +"What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET), COA SH628731",38249999 +What is the hs code for ONDANSETRON HCL USP (BHN BAKU OBAT) COA 19OS001,29332900 +"What is the hs code for ROVIMIX E 50 ADSORBATE (BHN BAKU UTK PAKAN TERNAK) COA VX12004044,45",29362800 +What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20191001,29362800 +"What is the hs code for MIXED TOCOPHEROL 95 (BHN BAKU MAKANAN, COA XH20191001",29362800 +"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A, 20KG BA (BHN BAKU MAKANAN) COA WB19110478,479,480",29362100 +What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20191201,29362800 +"What is the hs code for LIFE'S ARA (TM)'12' N-6 ARA POWDER (BHN BAKU MAKANAN), COA WB200103654",29362500 +"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A, 20KG BA (BHN BAKU MAKANAN) COA WB19110490",29362100 +What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20191201,29362800 +What is the hs code for CAROPHYLL PINK 10PCT-CWS (BHN BAKU UTK PAKAN TERNAK) COA UE01909787,32041900 +"What is the hs code for ROVIMIX CALPAN, 25KG BOX (BHN BAKU UTK PAKAN TERNAK) COA TL01912418",29362400 +"What is the hs code for CAROPHYLL PINK 10PCT-CWS (BHN BAKU UTK PAKAN TERNAK) COA UE01909787,9825",32041900 +"What is the hs code for ROVIMIX AD3 1000/200,20KG BAG (BHN BAKU UTK PAKAN TERNAK) COA UT19111068,069",29362100 +"What is the hs code for ROVIMIX NIACIN (BHN BAKU UTK PAKAN TERNAK) COA 27014,27015",29362900 +What is the hs code for OPADRY II GREEN (BHN BAKU UTK PEWARNA TABLET) COA SH629812,38249999 +What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA OBAT) COA SH630209,38249999 +What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA LC005-20-801,17021100 +What is the hs code for POVIDONE K-25 (BHN BAKU OBAT) COA PK25-200106F11,39059990 +What is the hs code for CROSPOVIDONE XL (BHN BAKU OBAT) COA PP200221XL,39059990 +"What is the hs code for CITICOLINE SODIUM (BHN BAKU OBAT) COA 3A26190722, 3A26200111",29349990 +What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 2003028,29349990 +What is the hs code for INOSITOL (BHN BAKU OBAT) COA 202003060,29061300 +What is the hs code for GLUCOSAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA WA202002008,29329990 +What is the hs code for METHYLSULFONYLMETHANE USP (BHN BAKU OBAT) COA 20200316,29309090 +"What is the hs code for IRBESARTAN (BHN BAKU OBAT), COA C5562-19-008",29332900 +"What is the hs code for LEVOFLOXACIN HEMIHYDRATE (FREEALKALINE) BHN BAKU OBAT,COA C008-1912114",29349990 +"What is the hs code for FIBRE DRUM, PRICE AND AMOUNT ARE FOR CUSTOM ONLY",48192000 +"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED GRADE A) BHN BAKU OBAT, COA M532342 S/D 46",29411019 +"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX POWDER) ,BHN BAKU OBAT, COA M484499",29411019 +What is the hs code for CLOTRIMAZOLE MICRONIZED (BHN BAKU OBAT ) COA 201910150265,29332900 +"What is the hs code for ASCORBYL PALMITATE, 25KG BOX/ALU(BHN BAKU MAKANAN) COA UQ91106273,274",29362700 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ91210316,29362300 +What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT20010007,29362500 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT20020008,32030010 +"What is the hs code for ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ91106274",29362700 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01912558",29362700 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT20020016,29362800 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01912558, TL02001606",29362700 +What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT19120016,29362100 +What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT20020094,29362100 +"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ91106272,6274",29362700 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT20030023,29362800 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN) COA UT20030939,29362100 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO)BHN BAKU MAKANAN, COA UT20030939, 940",29362100 +What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT19100025,29362100 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT20020008,32030010 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02001022,32041900 +What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT20010010,29362500 +"What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT20010006,7,10",29362500 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL02003119,3127, 3135,3141",29362700 +"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01912150",29362400 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT20010918,29362100 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01912150",29362400 +What is the hs code for DL-A-TOCOPHERYL-ACETATE (BHN BAKU KOSMETIK) COA UT20020036,29362800 +"What is the hs code for ARGAN OIL ,10KG PAIL PE(BHN BAKU KOSMETIK) COA AVD0026660",29362500 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)(BHN BAKU KOSMETIK) COA UT20010189,29362100 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708200029,30",29420000 +What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000188161,29362900 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0320050440,441",29420000 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01912150,29362400 +"What is the hs code for DRY VITAMIN A PALMITATE TYPE 250CWS/F (BHN BAKU MAKANAN) COA UT19090010,11",29362100 +What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519039,29362500 +"What is the hs code for D-A-TOCOPHERYL-ACETATE, 20KG JUG (BHN BAKU SUPLEMEN) COA XH20200202",29362800 +"What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW92004206,07",21069059 +What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92004202,21069059 +"What is the hs code for CATECHINS (TEA EXTRACT) (BHN BAKU SUPLEMEN KESEHATAN), COA 002211",21012020 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH6289710,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH629445,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH628409,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH628421,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH629488,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH629446,38249999 +What is the hs code for OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH629459,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH628039,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH629660,38249999 +What is the hs code for ACRYL -EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH629458,39061090 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH629483,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH629485,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH629460,38249999 +What is the hs code for PIGMENT BLEND BROWN (BHN BAKU PEWARNA TABLET) COA SH629461,32151900 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BOCARBONATE (BHN BAKU OBAT) COA RBA1042000,28363000 +What is the hs code for MONOPOT PHOS MKP FG 25K BG (BHN BAKU KOSMETIK) COA 20-015-01,29420000 +"What is the hs code for PARACETAMOL USP (BHN BAKU OBAT) COA 1952499,1951956,1951890,1911136",29242990 +What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA2004247 S/D 4256,29224900 +What is the hs code for BETAHISTINE MESILATE EP (BHN BAKU OBAT) COA EDBHM20001,29333990 +What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN2830919,29221990 +What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB19110257,29362100 +What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWER CATCOL C 135 (L) GRADE (BHN BAKU KOSMETIK) COA163/20,38249999 +"What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 08800420,08810420,08820420,08830420...",29359000 +What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-022019,38249999 +What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-613079,38249999 +What is the hs code for SK BIOLAND CARBAMIDE(BHN BAKU KOSMETIK) COA U200410,38249999 +What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 040920,38249999 +What is the hs code for EXTRAPONE ACEROLA B (BHN BAKU KOSMETIK) COA 10300043,38249999 +What is the hs code for D&C GREEN NO.5 C.I.61570 FDA CERTIFIED (BHN BAKU KOSMETIK) COA 10300034,38249999 +What is the hs code for C47-051 SUNCROMA TITANIUM DIOXIDE (BHN BAKU KOSMETIK) COA 2693660200102,38249999 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0066956,38210090 +What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0023070,38210090 +What is the hs code for PLATE TSA IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0079232,38210090 +What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0079211,38210090 +"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0077148",38210090 +"What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9302311",38210090 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0008275,38210090 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048064,38210090 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0047064,38210090 +"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9364856",38210090 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9337215,38210090 +What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239367,38210090 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BROT 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239319,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9324109,38210090 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0062582,38210090 +"What is the hs code for BOTTLE BRILLIANT GREEN 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9231272",38210090 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9296257,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9211356,38210090 +What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239282,38210090 +What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0041165,38210090 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9302047,38210090 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161680,38210090 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0009096,38210090 +What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9354166,38210090 +What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218604,38210090 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161608,38210090 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9211435,38210090 +"What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9273651",38210090 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0077148,38210090 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9315468,38210090 +What is the hs code for BOTTLE MAC CONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161545,38210090 +What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9310881,38210090 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309234,38210090 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239319,38210090 +"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9273397,9311217",38210090 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0037434,38210090 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9241879,38210090 +What is the hs code for BOTTLE POTATO DESTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9338809,38210090 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 00084432,38210090 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9211362,38210090 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0021091,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9324109,38210090 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9287872,38210090 +What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 9231272,38210090 +What is the hs code for BOTTLE TCBS AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9353100,38210090 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239628,38210090 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9309312,38210090 +What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0041165,38210090 +What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9302311,38210090 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9295511,38210090 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239319,38210090 +What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0013917,38210090 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0009147,38210090 +What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 19144470,38210090 +What is the hs code for BOTTLE GRAM CRYSTAL VIOLET 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0055871,38210090 +What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02C042M,38210090 +What is the hs code for BOTTLE GRAM IODINE STABILIZED 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 0028369,38210090 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161934,38210090 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9211435,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0034823,38210090 +What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01C098M,38210090 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9295511,38210090 +What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0002325,38210090 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9295511,38210090 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9295511,38210090 +What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9302311,38210090 +What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0013917,38210090 +What is the hs code for MINICAPT MOBILE MICROBIAL SAMPLER 100LPM(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9211356,38210090 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9295511,38210090 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239319,38210090 +"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9219559,9364957",38210090 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0077148,38210090 +What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9198204,38210090 +What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025631,38210090 +"What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0030043",38210090 +"What is the hs code for CD10 APC HI10A 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0078254",38210090 +What is the hs code for CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0079949,38210090 +What is the hs code for CD25 PE 2A3 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0050201,38210090 +What is the hs code for ANTI-HLA-DR FITC L243 (646-6)RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0063454,38210090 +"What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA PENGEMBANGAN MIKRO ORGANISME,BATCH0035573,0086625,9347462",38210090 +What is the hs code for CD34 PE-CY7 8G12 Y7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9358599,38210090 +What is the hs code for ANTI-KAPPA FITC/ANTI-LAMBDA PE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0043087,38210090 +What is the hs code for CD3 APC-H7 SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0086731,38210090 +What is the hs code for CD200 APC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0086271,38210090 +What is the hs code for HU CD64 APC-H7 10.1 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9039654,38210090 +"What is the hs code for HU CD36 HORIZON V450 CB38 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0058061",38210090 +What is the hs code for HU CD7 APC M-T701 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9176946,38210090 +What is the hs code for HU CD3 BV421 UCHT1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9113553,38210090 +What is the hs code for HU CD10 BV421 HI10A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9262144,38210090 +What is the hs code for HU CD19 BV510 SJ25C1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9337378,38210090 +What is the hs code for HU CD14 BV421 MPHIP9 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0010270,38210090 +What is the hs code for HU CD103 BV421 BER-ACT8 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0094483,38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9018746,38210090 +What is the hs code for VIAL SHIGELLA ANTIS POLY A LYOPHILIZED (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 9354479,38210090 +What is the hs code for VIAL SHIGELLA ANTIS POLY B LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0066791,38210090 +What is the hs code for VIAL SHIGELLA ANTIS POLY D LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8313989,38210090 +What is the hs code for VIAL E COLI O ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9137791,38210090 +"What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9340914",38210090 +What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8248932,38210090 +What is the hs code for VIAL SHIGELLA ANTIS POLY C1 LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9207991,38210090 +What is the hs code for HU CD103 BV421 BER-ACT8 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0094483,38210090 +What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364916,38210090 +What is the hs code for VIAL ISOVITALEX ENRICHMENT 10ML 5 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048880,38210090 +What is the hs code for VIAL COAG PLASMA RABBIT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9312760,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 82077980,38210090 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9312760,38210090 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9338712,38210090 +"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0015023,9338680",38210090 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9284311,38210090 +What is the hs code for BOTTLE TRYPTICASE SOY AG L & P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0072634,38210090 +What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0057095,38210090 +What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0063465,38210090 +What is the hs code for CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0079949,38210090 +What is the hs code for ANTI-HLA-DR FITC L243 (G46-6) RUO/GMP (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0063454,38210090 +"What is the hs code for CD3 APC-H7 SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0027983,0086731",38210090 +What is the hs code for CD10 APC HI10A 100 TESTS RUO/GMPMEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0078254,38210090 +What is the hs code for HU CD64 APC-H7 10.1 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9039654,38210090 +What is the hs code for HU CD36 HORIZON V450 CB38 50TST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0058061,38210090 +What is the hs code for HU CD7 APC M-T701 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9176946,38210090 +What is the hs code for HU CD3 BV421 UCHT1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9113553,38210090 +What is the hs code for HU CD19 BV510 SJ25C1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9337378,38210090 +What is the hs code for HU CD103 BV421 BER-ACT8 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0094483,38210090 +What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT 10X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9323256,38210090 +What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT 10X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9323256,38210090 +What is the hs code for TUBE PENASE CONCENTRATE 10X20ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0009774,38210090 +What is the hs code for CD20 V500-C RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0111271,38210090 +What is the hs code for CD20 V500-C RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 0111271,38210090 +What is the hs code for CROSPOVIDONE XL ( BAHAN BAKU OBAT ) COA PP200411XL,39059990 +What is the hs code for ISONIAZID EP (BHN BAKU OBAT) COA IZ 002 L 19,29333910 +What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL (BHN BAKU PEWARNA TABLET)COA D180K1G022,39123900 +What is the hs code for ADSORB AFLA (BHN BAKU UNTUK PAKAN TERNAK) COA 139,25081000 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121910283,284",28363000 +"What is the hs code for 1,3-BUTYLENE GLYCOL, COSMETIC QUALITY(BHN BAKU KOSMETIK) COA P0620120DC",29053200 +What is the hs code for AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 149947,15159011 +What is the hs code for JOJOBA OIL VIRGIN LOW ODOUR (BHN BAKU KOSMETIK) COA 151999,15159011 +What is the hs code for EUXYL PE 9010 -CN- 10KG KA (BHN BAKU KOSMETIK) COA 1547360,38249999 +"What is the hs code for EUXYL K 900 -CO8- 10KG KA (BHN BAKU KOSMETIK) COA 1547822,1548910",38249999 +What is the hs code for SENSIVA SC 50 -CN- 10KG KA (BHN BAKU KOSMETIK) COA 1544393,38249999 +What is the hs code for SENSIVA SC 50 -CN-10KG KA (BHN BAKU KOSMETIK) COA 1544393,38249999 +What is the hs code for EUXYL K 120 -C08- 10 KG KA (BHN BAKU KOSMETIK) COA 1548443,38249999 +What is the hs code for EUXYL K 720 -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1546693,38249999 +"What is the hs code for EUXYL PE 9010 -CN- 200KG FA (BHN BAKU KOSMETIK) COA 1539504, 1548913",38249999 +What is the hs code for EUXYL K 100 -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1548781,38249999 +What is the hs code for SENSIDIN DO -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1548623,38249999 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000173,174",28363000 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000156,157",28363000 +"What is the hs code for MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HG31068, HG31229",34029099 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA122206,28363000 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA121205,28363000 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 19B0164100,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 19B0177900,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPPLEMEN) COA 19B0178000,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPPLEMEN) COA 20B0018700,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 20B0018800,13021990 +What is the hs code for VALERIAN D.H.E .0.8PCT VAL.AC (BHN BAKU SUPLEMEN) COA 19B0147600,13021990 +What is the hs code for VALERIAN D.H.E >0.8PCT VAL.AC (BHN BAKU SUPLEMEN) COA 19B0147700,13021990 +What is the hs code for SILYMARIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 19B0142500,38249999 +What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 19B0179600,38249999 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200423,17029019 +What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA 20200423,17023010 +What is the hs code for OPADRY AMB II BROWN (BHN BAKU PEWARNA TABLET) COA SH629622,38249999 +What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH629598,39061090 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH630374,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH630372,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH630454,38249999 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH629610,38249999 +What is the hs code for OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH629605,38249999 +What is the hs code for OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH629611,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH630591,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH630590,38249999 +What is the hs code for OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH628746,38249999 +What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH630619,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH630629,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH630651,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH629422,38249999 +What is the hs code for OPADRY PURPLE (BHN BAKU PEWARNA TABLET) COA SH628514,38249999 +What is the hs code for OPADRY 200 PINK (BHN BAKU PEWARNA TABLET) COA SH629608,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH628167,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH628167,38249999 +What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH630209,38249999 +What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH629597,38249999 +What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH629652,38249999 +What is the hs code for PRECIROL ATO 5 (BHN BAKU OBAT) COA 178799,28399000 +What is the hs code for TRANSCUTOL P (BHN BAKU OBAT) COA 178799,28399000 +What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA 178703,28399000 +What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA 179088,28399000 +What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIV190701-BGBIO,38249999 +What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH200202-ENBIO,38249999 +What is the hs code for SEABUCKTHORN HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HIR200101-B,38249999 +What is the hs code for SEABUCKTHORN HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HIR200101-B,38249999 +What is the hs code for PEPPERMINT ORGANIC DISTILLATE 1:5 SB (BHN BAKU KOSMETIK) COA MEPD200401-BIO,38249999 +What is the hs code for HONEY HYDROGLYCOLIC (BHN BAKU KOSMETIK) COA MIE191102,38249999 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO200101,38249999 +What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC ( BHN BAKU KOSMETIK) COA HEA200202,38249999 +What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA200403,38249999 +What is the hs code for ULVA LACTUCA ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA ULL2004R1-GS-BGBIO,38249999 +What is the hs code for TAPIOKA STARCH NATURAL 25KG BAG (BHN BAKU KOSMETIK) COA 0092,11081400 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH629700,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH630496,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH630496,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH630496,38249999 +"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 101969019, 102069005",28161000 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA RBA125200,28363000 +"What is the hs code for ETHOCEL STANDARD 14 PREMIUM (BHN BAKU PEWARNA TABLET), COA D184I39021",39123900 +"What is the hs code for ETHOCEL STANDARD 20 PREMIUM (BHN BAKU PEWARNA TABLET), COA D184J1C021",39123900 +What is the hs code for ETHOCEL STANDARD 20 PREMIUM (BHN BAKU PEWARNA TABLET) COA D184J71021,39123900 +What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP821809,39059990 +What is the hs code for D&C YELLOW #10 AL 15PCT-20PCT (BHN BAKU PEWARNA TABLET) COA WP821809,32151900 +What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU PEWARNA TABLET) COA WP769011,32151900 +What is the hs code for FD & C BLUE #2/INDIGO CARMINE (BHN BAKU PEWARNA TABLET) COA WP825902,32151900 +What is the hs code for D & C YELLOW #10 AL 15PCT-20PCT (BHN BAKU PEWARNA TABLET) COA WP824126,32151900 +What is the hs code for FD & C YELLOW #5/TARTRAZINE AL (BHN BAKU PEWARNA TABLET) COA WP822863,32151900 +What is the hs code for FD & C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP818232,32151900 +What is the hs code for FD & C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP818225,32151900 +What is the hs code for SILVERION 2400 (BHN BAKU KOSMETIK) COA 19-05225,38249999 +What is the hs code for IBUPROFEN 40 GRADE (BHN BAKU OBAT) COA 4050-3557,29061300 +"What is the hs code for METAMIZOLE SODIUM REGULAR GRADE(BHN BAKU OBAT) COA 2004586,2004587,2004635,2004640",29331900 +What is the hs code for METAMIZOLE SODIUM INJECTABLE GRADE (BHN BAKU OBAT) COA 19121332,29331900 +"What is the hs code for DICLOFENAC SODIUM USP42 (BHN BAKU OBAT) COA DFS/10040037,10040038,10040039,10040040,10040045",29224900 +"What is the hs code for DICLOFENAC POTASSIUM BP (BHN BAKU OBAT) COA DFK/10020048,10020049",29224900 +"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1910131,133,134",29362300 +What is the hs code for B-CAROTENE 10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT20030001,32041900 +What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19100047,29362100 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT20030027,29362800 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL02001642",29362700 +"What is the hs code for ASCORBYL PALMITATE, 25KG BOX /ALU (BHN BAKU MAKANAN) COA UQ91106279,6280",29362700 +What is the hs code for MEG-3 (TM)'10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT20010011001606,29362500 +What is the hs code for REDIVIVO (R) (LYCOPENE)10PCT CWS/S-TG(BHN BAKU SUPLEMEN) COA UT18110017,29420000 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19120057,29362100 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT20020008,32030010 +What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT20040027,29362100 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN) COA UT20040959,29362100 +"What is the hs code for VITAMIN A PALMITATE/M 1.0 MIU/G (BHN BAKU MAKANAN, COA UT20040027",29362100 +What is the hs code for BETATAB 20PCT S (BHN BAKU MAKANAN) COA UT19050001,32041900 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT20020008,32030010 +What is the hs code for VIAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT20040058,29362100 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT19050001,32041900 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT20020009,32030010 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ91210340,29362300 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT20040058,29362100 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) BHN BAKU MAKANAN, COA UT20030194, 195",29362100 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT19050001,32041900 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT20020008,32030010 +What is the hs code for OPTISHARP (ZEAXANTHIN)5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19060003,32041900 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19120057,29362100 +What is the hs code for VITAMIN A +D3 WATER-MISCIBLE 100/20(BHN BAKU SUPLEMEN) COA UT19100047,29362100 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT20040957, 959",29362100 +What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT)COA L101851720,17021100 +What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC011-20-801,17021100 +What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC011-20-801,17021100 +What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.20100281,29391900 +What is the hs code for BOSWELLIA SERRATA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 20T0047700,38249999 +What is the hs code for VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 121910045,28365010 +What is the hs code for EUXYL PE 9010 CN 200KG FA (BHN BAKU KOSMETIK) COA 1548913,38249999 +"What is the hs code for NIACINAMIDE USP (NIACINAMIDE USP/EP) BHN BAKU KOSMETIK, COA 20-21/NMD(P)/00011,00014 S/D 17",29362900 +"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 2005EF7813",29224900 +What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK)COA MCP-N-032630,38249999 +What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK)COA SFP-N-021920,38249999 +What is the hs code for SK BIOLAND JEJU TANGERINE EXTRACT (BHN BAKU KOSMETIK) COA GTUP-T-022919,38249999 +What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE 1PCT SOLUTION (BHN BAKU KOSMETIK) COA HASC-142520,38249999 +What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK)COA MCP-N-032630,38249999 +What is the hs code for DEEP IMPACT DEO 802054 (BHN BAKU KOSMETIK) COA 10300144,38249999 +What is the hs code for PURE GREEN B&W PIT (BHN BAKU KOSMETIK) COA 10300059,38249999 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA RBA1262000,28363000 +What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX2005011,29181400 +What is the hs code for DIACEREIN EP (BHN BAKU OBAT) COA DCE/40060220,29389000 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200429,17029019 +"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A,20KG BA (BHN BAKU MAKANAN) COA WB19110485 S/D 89",29362100 +"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A 20KG BA (BHN BAKU MAKANAN), COA WB19110481, 483, 484",29362100 +What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0066953,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2189343,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2189343,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2189343,38210090 +What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9274567,38210090 +What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9121860,38210090 +What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL ...(BHN BAKU PEWARNA TABLET)COA D180J88002,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180JAD003,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D180JB1023,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D180JAL002,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180JAK002,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180JAS001,39123900 +What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.20100358,29391900 +"What is the hs code for PARACETAMOL USP (BHN BAKU OBAT) COA 1911559,1952548,1952591,1952604",29242990 +"What is the hs code for ACRYLPOL 980 (20KG) BAHAN BAKU KOSMETIK, COA 11520003,11520004",39069099 +"What is the hs code for SERASENSE SF CM5 (BAHAN BAKU KOSMETIK) COA PA00416071,PA00416073,PA00416075",29319049 +"What is the hs code for TICAGRELOR (BHN BAKU OBAT) COA, TG2M006022",29091900 +What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 19B0179600,38249999 +What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 20B0037200,38249999 +What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 20B0037200,38249999 +What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 19B0110300,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU UTK PEWARNA TABLET) COA SH630634,38249999 +What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA OBAT) COA SH631391,38249999 +What is the hs code for LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 19480,38249999 +What is the hs code for MIRTOGENOL (R) (BHN BAKU SUPLEMEN) COA 20S0092200,38249999 +What is the hs code for SILYMARIN (BHN BAKU SUPLEMEN) COA 19S0258905,38249999 +What is the hs code for ECHINACEA ANG.DRY PURIF.EX (BHN BAKU SUPLEMEN) COA 19S0359200,13021950 +What is the hs code for BILBERRY (V. MYRTILLUS) ET EX 36PCT (BHN BAKU SUPLEMEN) COA 20S0062103,13021950 +"What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M-31PCT (BHN BAKU OBAT) COA 102029008,102029010",28161000 +"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX POWDER) BHN BAKU OBAT, COA M484519",29411019 +"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED) ,BHN BAKU OBAT, COA M532309",29411019 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP20043195, XP20043196",29211900 +What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 200414,13021950 +What is the hs code for ALPINIAWHITE (BHN BAKU KOSMETIK)COA 192930,13021990 +What is the hs code for THE MATCHA I P001602 (BHN BAKU KOSMETIK) COA 0000039198,33029000 +What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL ...(BHN BAKU PEWARNA TABLET)COA D180J63001,39123900 +What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180J63002,39123900 +What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D180H14002,39123900 +What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D180J6P021,39123900 +What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180K1O003,39123900 +What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180K1Q002,39123900 +What is the hs code for CEFOPERAZONE SODIUM STERILE (BAHAN BAKU OBAT) COA 2004402117,29419000 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP20053132, XP20053133",29211900 +What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/CA05606,29349990 +What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-0720420,29334910 +What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-0740420,29334910 +What is the hs code for EPA DHA 44 37 (BHN SUPLEMEN KESEHATAN) COA EE4437-200518,29061300 +"What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA T100500, T100600",29419000 +"What is the hs code for CEFOTAXIME SODIUM STERILE USP (BHN BAKU OBAT) COA T200400, T200500",29419000 +What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA T700500,29419000 +"What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 10070520,10090520,10110520...",29359000 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ90813106,29362500 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT20020042,29362800 +"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000188240, 188397,188398",29362900 +What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES1901168,29420000 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01912158, TL01912165",29362400 +"What is the hs code for PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0320050529",29420000 +What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL01911148,29362400 +"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01911148",29362400 +"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A BHN BAKU MAKANAN) COA UT19080028,UT19080029",29362100 +"What is the hs code for PYRIDOXINE HYDROCHLIORIDE ,20KG BOX(BHN BAKU MAKANAN) COA QZ11190618,QZ11190625",29362500 +"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01911148",29362400 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11190625",29362500 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12002003,29362900 +What is the hs code for PREMIX BALITA (BHN BAKU MAKANAN) COA XW92003345,21069059 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ91110282,29362300 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ91002508,29362200 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19110102,29362900 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01909526, TL01909533",29362700 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90913144,29362500 +"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01911148",29362400 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ91110282,29362300 +What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1909123,29362300 +"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1909123,127,130",29362300 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT19110102,29362900 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT19110102,29362900 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ91110282,29362300 +"What is the hs code for NIACINAMIDE FCC, 25KG BOX (BHN BAKU MAKANAN) COA 0000188584",29362900 +"What is the hs code for NIACINAMIDE FCC, 25KG BOX (BHN BAKU MAKANAN) COA 0000188584,0000188592",29362900 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19110102,29362900 +"What is the hs code for ASCORBIC ACID 90PCT GRANULATION ,25KG BOX(BHN BAKU SUPLEMEN) COA WP19119010",29362700 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ00103306,29362200 +What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL01911148,29362400 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT19120041,29362900 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL01911148",29362400 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11190625",29362500 +"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ91002507, UQ91002508",29362200 +"What is the hs code for NIACINAMIDE FCC, 25KG BOX (BHN BAKU MAKANAN) COA 0000188584, 0000188592",29362900 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12002003,29362900 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU MAKANAN) COA UT19090007,29362900 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11190625",29362500 +"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01912322, U01912323",29362800 +What is the hs code for DRY VITAMIN A ACTATE 325 CWS/A (BHN BAKU MAKANAN) COA UT19120038,29362100 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA U01912322,29362800 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ00103306,29362200 +"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT20020036, UT20020042",29362800 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT19050033,32041900 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01911148",29362400 +What is the hs code for DRY VITAMIN K1 5PCT SD(BHN BAKU SUPLEMEN) COA UT19090007,29362900 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)(BHN BAKU SUPLEMEN) COA UT20010189,29362100 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT20010004,29362400 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90913144,29362500 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91002507,29362200 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00619042,29362300 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01902300,29362900 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT20010004,29362400 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT19120041,29362900 +"What is the hs code for D-A-TOCOPHERYL ACETATE, 20KG JUG(BHN BAKU SUPLEMEN) COA XH20200202",29362800 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLMEN) COA UT19050033,32041900 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010008,29362900 +"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20010004, UT20010009",29362800 +"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20010009, UT20010010",29362800 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01911148",29362400 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01911148",29362400 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ00103306,29362200 +"What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN)COA WB19119010",29362700 +What is the hs code for B-CAROTNE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT19050033,32041900 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)BHN BAKU SUPLEMEN, COA UT20010189",29362100 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19080154,29362400 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ00103306,29362200 +"What is the hs code for ASCORBIC ACID 90PCT GRANULATION,25KG BOX (BHN BAKU SUPLEMEN) COA WB19119010",29362700 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB19090221,29362800 +What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB19110257,29362100 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB19090222,29362800 +What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB19110257,29362100 +"What is the hs code for GENIVIDA(TM) TG, 1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT19060004",29329990 +"What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF, 1KG ALUF(BHN BAKU SUPLEMEN) COA UE01905024",32030010 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19120057,29362100 +What is the hs code for VITAMIN B12 1PCT SD (BHN BAKU SUPLEMEN) COA UT20030002,29362600 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE02004042,32041900 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT20030008,29362600 +"What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU MAKANAN) COA TL02005719",29362400 +What is the hs code for B-CAROTENE 10PCT EMULS (BHN BAKU MAKANAN) COA UE01910015,32041900 +What is the hs code for VIT. A PALM. 1.0M+ VIT D3 100'000 (BHN BAKU MAKANAN) COA UT20040086,29362100 +"What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL02005719",29362400 +What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG200403,29362700 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA OBAT) COA SH631363,38249999 +What is the hs code for STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN541486,35051010 +What is the hs code for MONOPROPYLENE GLYCOL (BHN BAKU KOSMETIK) COA PG(S)200410,29053200 +"What is the hs code for VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU MAKANAN) COA HPD2005010,HPD2004156",29362700 +"What is the hs code for VC SODIUM ASCORBATE REGULAR, 25KG BAL (BAHAN BAKU MAKANAN) COA HPD2005055 S/D 57",29362700 +"What is the hs code for VC ASCORBIC ACID 325 MESH ,20KG BOALPO (BHN BAKU SUPLEMEN) COA HPG2003176,3184,3193,3196",29362700 +What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT)COA L101851720,17021100 +What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA DOC1252022,28363000 +What is the hs code for ADSORB AFLA (BHN BAKU UNTUK PAKAN TERNAK) COA 144,25081000 +What is the hs code for DEXCHLORPHENIRAMINE MALEATE BP/EP (BHN BAKU OBAT) COA SLL/DC/0220004,29333910 +What is the hs code for DEXCHLORPHENIRAMINE MALEATE USP (BHN BAKU OBAT) COA SLL/DC/0420008,29333910 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA MTP12820,28363000 +What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102069005,28161000 +What is the hs code for FEF CETRIMIDE PH EUR (BHN BAKU KOSMETIK) COA KX0C656,38249999 +What is the hs code for ACTIPONE (R) CAMU CAMU ET (BHN BAKU KOSMETIK) COA 10300017,13021950 +What is the hs code for PF.ANTI SHINE WASH PERFUME 45414.1 (BHN BAKU KOSMETIK) COA 10300083,13021950 +What is the hs code for MILD TALCUM MOD 1 (BHN BAKU KOSMETIK) COA 10300204,13021950 +"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC1420T",27101990 +"What is the hs code for PARACETAMOL USP (BHN BAKU OBAT) COA 2010040,2010020,2010013,2030197,2010740,2050268",29242990 +"What is the hs code for ZINC SULFATE 1-HYDRATE, POWDER ,USP43 (BHN BAKU OBAT) COA 3080018",28332920 +What is the hs code for SELOHVITA C (BHN BAKU OBAT) COA 3084269,28429010 +What is the hs code for TRIPOTASSIUM CITRATE 1-HYDRATE (BHN BAKU OBAT) COA3083078,29181400 +"What is the hs code for CALCIUM ACETATE, POWDER, PURITY ACC. TO E 263 (BHN BAKU OBAT) COA 3082104",29152910 +"What is the hs code for FERROUS SULFATE, DRIED, POWDER, USP43 (BHN BAKU OBAT) COA 3084930",28332920 +What is the hs code for SELOHVITA C (BHN BAKU OBAT) COA 3084269,28429010 +What is the hs code for SELOHVITA C (BHN BAKU OBAT) COA 3084270,28429010 +"What is the hs code for ZINC SULFATE 1-HYDRATE, POWDER,USP 43 (BHN BAKU OBAT) COA 3080020",28332920 +"What is the hs code for MAGNESIUM CARBONATE, HEAVY (BHN BAKU OBAT) COA 1103215",28369990 +What is the hs code for EPERISONE HCL (BHN BAKU OBAT) COA 05820001,29333990 +"What is the hs code for AMLODIPINE BESYLATE BP/EP (BHN BAKU OBAT) COA AMB/078/04/20 S/D AMB/080/04/20, AMB/084/04/20,..",29333990 +What is the hs code for NABUMETONE (BHN BAKU OBAT) COA H-0560520,29145000 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA ROA143203,28363000 +What is the hs code for OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH630044,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH630121,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH630045,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH630039,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH629422,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH629728,38249999 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH630043,38249999 +What is the hs code for OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH630994,38249999 +What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH631391,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH630006,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH630581,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH630046,38249999 +What is the hs code for ACRYL-EZE PURPLE (BHN BAKU PEWARNA TABLET) COA SH630040,39061090 +What is the hs code for ONDANSETRON HCL USP (BHN BAKU OBAT) COA 19OS001,29332900 +What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA.MLAH0160520,29341000 +What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 2004121219,29372200 +What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA OBAT) COA SH631278,38249999 +"What is the hs code for AQUACOAT ECD-30 ETHYLCELLULOSE AQUEOUS (BHN BAKU PEWARNA TABLET), COA XN20834274",39123900 +"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT), COA ASGP/04/190420,190420-2,210420,190420-3,...",29420000 +"What is the hs code for CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/04/180420,200420,220420",39123100 +What is the hs code for CROSCARMELLOSE SODIUM USP-NF (BHN BAKU OBAT) COA ACRMC/01/260120,39123100 +What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED(BHN BAKU PAKAN TERNAK) COA ROA2020,28363000 +"What is the hs code for VITAMIN MINERAL PREMIX FOR IMMUNITY (BHN BAKU MAKANAN), COA XW93005287",21069059 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12004021,29362900 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519059,29362200 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12004021,29362900 +What is the hs code for DRY VITAMIN K1 5PCT SD(BHN BAKU SUPLEMEN) COA UT19090007,29362900 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12004021,29362900 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT20010189",29362100 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010008,29362900 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01902300,29362900 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT20010004,29362400 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12004021,29362900 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT20010189,29362100 +"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01911059, UE02001009",32041900 +What is the hs code for ROVIMIX D3-500 (BHN BAKU PAKAN TERNAK) COA UE02001004,29362900 +"What is the hs code for CAROPHYLL RED 10PCT, 5KG BAG ALU (BHN BAKU PAKAN TERNAK) COA UE02003556",32041900 +What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000175,28363000 +What is the hs code for LUBRIPHARM (R) SSF NF/EP/JP SODIUM STEARYL FUMARATE (BHN BAKU OBAT) COA 122000210,28161000 +What is the hs code for COMPRITOL 888 ATO (BHN BAKU OBAT) COA 179718,28399000 +What is the hs code for TRANCUTOL P (BHN BAKU OBAT) COA 177546,28399000 +What is the hs code for LABRAFIL M 1944 CS (BAHAN BAKU OBAT) COA 179415,28399000 +What is the hs code for LABRAFIL M 1944 CS (BAHAN BAKU OBAT) COA 179771,28399000 +What is the hs code for PLURESSENCE LEMON 5001 BA (BHN BAKU OBAT) COA 455295,28399000 +What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX2005018,29181400 +What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX2005020,29181400 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN541535,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN541546,35051010 +"What is the hs code for CYPROHEPTADINE HCL BP/PH.EUR (BHN BAKU OBAT) COA CYP/10191013, CYP/10191014",29333990 +What is the hs code for CYPROHEPTADINE HCL BP/PH.EUR (BHN BAKU OBAT) COA CYP/11191016,29333990 +"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9239282",38210090 +"What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 004165,...",38210090 +"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0070949,9302047",38210090 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161680,38210090 +What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0097399,38210090 +What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218604,38210090 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218804,38210090 +"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0037499,9337147",38210090 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9211435,38210090 +What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0107757,38210090 +What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9323677,38210090 +What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0002325,38210090 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161545,38210090 +"What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0119308",38210090 +What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9302327,38210090 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9309234,38210090 +What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239367,38210090 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9287998,38210090 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065878,38210090 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9311217,38210090 +"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037434,...",38210090 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 00480551,38210090 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0008443,38210090 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0009147,38210090 +"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0083370,9211362",38210090 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0125228,38210090 +"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9324109",38210090 +"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0027287,0062582,...",38210090 +What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065975,38210090 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9353100,38210090 +What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142723,38210090 +What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 01078811,38210090 +What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1922523,38210090 +"What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0030216,9352447",38210090 +What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218538,38210090 +What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0107757,38210090 +What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 93430972,38210090 +What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0013917,38210090 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0009147,38210090 +"What is the hs code for BOTTLE D-SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0097350,9218804",38210090 +What is the hs code for BOTTLE SKIM MILK 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0008443,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9,38210090 +What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9273839,38210090 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0013247,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364957,38210090 +What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273651,38210090 +What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065975,38210090 +What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0013057,38210090 +What is the hs code for BOTTLE CORN MEAL AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364035,38210090 +What is the hs code for BOTTLE ENDO AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0009128,38210090 +What is the hs code for BOTTLE EOSIN METHYLENE BLUE AG HHT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9254786,38210090 +What is the hs code for BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218041,38210090 +What is the hs code for BOTTLE MALT EXTRACT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0043946,38210090 +What is the hs code for BOTTLE LAURYL SULFATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9280526,38210090 +What is the hs code for BOTTLE PHENOL RED BROTH BASE BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8310778,38210090 +What is the hs code for BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218592,38210090 +What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9028828,38210090 +What is the hs code for BOTTLE TREHALOSE 10G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 00942411,38210090 +What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309193,38210090 +What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 9273419,38210090 +What is the hs code for BOTTLE NITRATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9148558,38210090 +What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364959,38210090 +What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9339238,38210090 +What is the hs code for BOTTLE STOCK CULTURE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8012616,38210090 +What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9280662,38210090 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B02C022M,38210090 +What is the hs code for BOTTLE APT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0034063,38210090 +What is the hs code for BOTTLE PHENYLLALANINE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9189619,38210090 +What is the hs code for BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9189647,38210090 +What is the hs code for BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0035732,38210090 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9311217,38210090 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065836,38210090 +What is the hs code for BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218592,38210090 +What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0021157,38210090 +What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8312795,38210090 +What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9156832,38210090 +What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0099482,38210090 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0009147,38210090 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 01252283,38210090 +What is the hs code for BOTTLE TREHALOSE 10G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0094241,38210090 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0037499,38210090 +What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9218538,38210090 +What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0002325,38210090 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9364856,38210090 +What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9364864,38210090 +What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0042227,38210090 +What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0107757,38210090 +What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 9343097,38210090 +What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0002860,38210090 +What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0013917,38210090 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0065836,38210090 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0065878,38210090 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0048064,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9364957,38210090 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0008443,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9324109,38210090 +What is the hs code for BOTTLE LB BROTH MILLER 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 00833709,38210090 +What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9273839,38210090 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9353100,38210090 +What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0065975,38210090 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161680,38210090 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0031247,38210090 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0077148,38210090 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9296257,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 9364957,38210090 +What is the hs code for BOTTLE LEVINE EMB AGAR 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0002325,38210090 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0042333,38210090 +What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9364853,38210090 +What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9225861,38210090 +What is the hs code for BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0035732,38210090 +What is the hs code for BOTTLE GRAM CRYSTAL VIOLET 250ML(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0119933,38210090 +What is the hs code for BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9337386,38210090 +What is the hs code for BOTTLE GRAM IODINE STABILIZED 250ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) COA 0028379,38210090 +What is the hs code for BOTTLE PHENOL RED SUCROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8057792,38210090 +What is the hs code for BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0021915,38210090 +What is the hs code for BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0021915,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0135906,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKIROORGANISME) BATCH 0135906,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0135906,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0135906,38210090 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0079962,38210090 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0091369,38210090 +What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0013917,38210090 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0065836,38210090 +What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0107888,38210090 +What is the hs code for BOTTLE DIFCO CHROMAGAR SALMONELLA 374G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 00245797,38210090 +What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0013057,38210090 +What is the hs code for BOTTLE PHENOL RED LACTOSE BR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8311620,38210090 +What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 002157,38210090 +What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH 9280662,38210090 +What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9324170,38210090 +What is the hs code for BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 00429673,38210090 +What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC015-20-801,17021100 +"What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC014-20-801, LC015-20-801",17021100 +What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC015-20-801,17021100 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH630771,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH631231,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH631232,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH631233,38249999 +What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH630303,39061090 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH631412,39061090 +What is the hs code for OPADRY YELLOW (BHN BAKU PEWARNA TABLET) COA SH630305,38249999 +What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH630325,39061090 +What is the hs code for OPADRY II BLACK (BHN BAKU PEWARNA TABLET) COA SH630322,38249999 +What is the hs code for PIGMENT BLEND GREEN (BHN BAKU PEWARNA TABLET) COA SH630301,32151900 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH630117,38249999 +What is the hs code for PIGMENT BLEND BROWN (BHN BAKU PEWARNA TABLET) COA SH630312,32151900 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH630304,38249999 +What is the hs code for OPADRY II BLUE (BHN BAKU PEWARNA TABLET) COA SH630321,38249999 +What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH631562,38249999 +What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH630311,39061090 +What is the hs code for ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH630324,39061090 +What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH630306,38249999 +"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0037338",38210090 +"What is the hs code for CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0051017",38210090 +What is the hs code for ANTI-MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0059074,38210090 +What is the hs code for CD19 PE-CY7 SJ25C1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0093153,38210090 +What is the hs code for CD20 FITC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0104073,38210090 +"What is the hs code for ANTI-KAPPA FITC/ANTI-LAMBDA PE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0071546",38210090 +What is the hs code for CD38 APC-H7 (HB7) RUO (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0100543,38210090 +What is the hs code for HU CD10 BV421 HI10A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0086644,38210090 +What is the hs code for HU CD14 BV421 MPHIP9 100 TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0058170,38210090 +What is the hs code for CD38 APC-H7 (HB7) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0100543,38210090 +What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0315942,38210090 +"What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0090650",38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273671,38210090 +What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0030043,38210090 +What is the hs code for CD200 APC (MRC OX-104) RUO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0140296,38210090 +What is the hs code for ANTI-MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0059074,38210090 +What is the hs code for VIAL ISOVITALEX ENRICHMENT 10ML 5 EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0132479,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0015023,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0133080,38210090 +"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9309244",38210090 +What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT 10X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9323256,38210090 +What is the hs code for VIAL SAL O ANTISERUM GRP A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9046966,38210090 +What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0076734,38210090 +What is the hs code for VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9283338,38210090 +"What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0034818,9340914",38210090 +What is the hs code for BOTTLE HEMOGLOBIN SOL 2PCT 100ML 10EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239090,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH 9273671,38210090 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9312760,38210090 +What is the hs code for BOTTLE EGG YOLK TELLURITE ENTICHMENT (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0051680,38210090 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9270026,38210090 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9284311,38210090 +What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0037326,38210090 +What is the hs code for BOTTLE TRYPTICASE SOY AG L &P 80 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0072634,38210090 +What is the hs code for BOTTLE GRAM DECOLORIZER 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0077164,38210090 +What is the hs code for BOTTLE GRAM SAFRANIN 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0055061,38210090 +What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0105205,38210090 +What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0105205,38210090 +What is the hs code for BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9309252,38210090 +What is the hs code for DROPPER INDOLE (MEDIA UTK PNGEMBANGAN MIKROORGANISME) BATCH B028318M,38210090 +What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 192253,13021990 +What is the hs code for CHRONO CHARDY (BHN BAKU KOSMETIK) COA 192698,13021990 +What is the hs code for BIOCELLACT CHAMOMILLA BD (BHN BAKU KOSMETIK) COA 200623,13021990 +"What is the hs code for SWERTIANIN-P (BHN BAKU KOSMETIK), COA 200456",13021990 +What is the hs code for ALPINAWHITE (BHN BAKU KOSMETIK) COA 200601,13021990 +What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LG120420,39123900 +"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG120420",39123900 +What is the hs code for MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50310,29061100 +"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01901001, SAMPLE NO COMMERCIAL VALUE",29362900 +What is the hs code for CROSPOVIDONE XL ( BAHAN BAKU OBAT ) COA PP200502XL,39059990 +What is the hs code for NOSCAPINE BASE USP (BHN BAKU OBAT) COA P0200720,29391900 +"What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453582992",39139090 +What is the hs code for CYPROTERONE ACETATE MICRONIZED (BHN BAKU OBAT) COA NA0687M,29372900 +What is the hs code for PREDNISONE USP42 (BHN BAKU OBAT) COA NPD200505,29372100 +What is the hs code for MIRASIL DM 5L DR M 190KG (BHN BAKU KOSMETIK) COA 20092PN415,39100090 +What is the hs code for METHOCEL K4M PREMIUM CR (BHN BAKU PEWARNA TABLET)COA D180JBT001,39123900 +What is the hs code for ETHOCEL STANDARD 10 PREMIUM (BHN BAKU PEWARNA TABLET) COA D184GC1021,39123900 +What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC015-20-801,17021100 +"What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET), COA DT703019",32151900 +"What is the hs code for OPALUX TAN (BHN BAKU PEWARNA TABLET), COA DT703020",32151900 +What is the hs code for OPASPRAY YELLOW (BHN BAKU PEWARNA TABLET) COA DT702435,32151900 +What is the hs code for OPACODE RED (BHN BAKU PEWARNA TABLET) COA DT702944,32151900 +What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 2005009,29349990 +"What is the hs code for INOSITOL (BHN BAKU OBAT) COA 202005063, 5064",29061300 +What is the hs code for POVIDONE K-30 EX JHNH (BHN BAKU OBAT) COA PK30-200421F11,39059990 +What is the hs code for POVIDONE K-25 (BHN BAKU OBAT) COA PK25-200430F31,39059990 +What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20200419,29309090 +What is the hs code for SUCRALOSE (JKSS00) (BHN BAKU OBAT) COA 20040103,29321400 +What is the hs code for CROSPOVIDONE XL-10 (BHN BAKU OBAT) COA PP200426XL-10,39059990 +"What is the hs code for D-RIBOSE (BHN BAKU OBAT), COA ZN20200417",29400000 +What is the hs code for IRBESARTAN (BHN BAKU OBAT) COA C5055-20-003,29332900 +What is the hs code for LEVOFLOXACIN HEMIHYDRATE (FREE ALKALINE (BHN BAKU OBAT) COA C008-1912114,29349990 +What is the hs code for SODIUM SALICYLATE BP2005 (BHN BAKU KOSMETIK)COA 201909025,29182100 +What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-200504,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-200504,38249999 +What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-190303-GS,38249999 +What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 2004121219,29372200 +"What is the hs code for KF-96L-2CS (14KG) BHN BAKU KOSMETIK, COA 003372",38249999 +"What is the hs code for KF-96L-2CS (14KG) BHN BAKU KOSMETIK, COA 003376",38249999 +"What is the hs code for SELOHVITA C (BHN BAKU OBAT) COA 3085066, 3084270",28429010 +"What is the hs code for SURELEASE ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET), COA IN541465",32151900 +What is the hs code for P.GINSENG DRY EXTRACT /IDB(BHN BAKU SUPLEMEN) COA 32347/M1,13021990 +What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU KOSMETIK) COA 19S0393500,38249999 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ90813111,29362500 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0320050625 S/D 628, 706, 707, 709",29420000 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01904006,29362900 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT20010011,29362800 +"What is the hs code for DL-A-TOCOPHERYL ACETATE ,5KG PE PAIL(BHN BAKU KOSMETIK) COA UT2000045",29362800 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01912323,29362800 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01912323,29362800 +What is the hs code for PX 103070-C3 (BHN BAKU MAKANAN) COA XW92005228,21069059 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19110102,29362900 +"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ91210303,304",29362300 +What is the hs code for VIT PREMIX MI A1 (BHN BAKU MAKANAN) COA XW92005382,21069059 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ91210304,29362300 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ91102566,29362200 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT20020042,29362800 +"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20030106, 107",29362900 +"What is the hs code for DL-A-TOCOPHERYL ACETATE,5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20020045",29362800 +"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20020045",29362800 +"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1910130,0131,7111",29362300 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT20010004,29362400 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91113211,29362500 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91113211,29362500 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20010010,29362800 +What is the hs code for DRY VITAMIN E 50PCT CWS/S(BHN BAKU SUPLEMEN) COA UT20010010,29362800 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT19110102,29362900 +"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT19110102,UT20030106",29362900 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT20030106,29362900 +"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91002509,UA91102566",29362200 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91102566,29362200 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91102566,29362200 +"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT(BHN BAKU SUPLEMEN) COA WB00519134, WB00519135",29362900 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519059,29362200 +"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU MAKANAN) COA UT20020045",29362800 +"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20020045",29362800 +"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20020045",29362800 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19110102,29362900 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19110102,29362900 +"What is the hs code for ZINC GLUCONATE, POWDER, FCC 10 ( BHN BAKU MAKANAN) SAMPLE NO COMM VALUE",29181600 +"What is the hs code for ZINC SULFATE 7-HYDRATE, CRYST, FCC 10 (BHN BAKU MAKANAN) SAMPLE NO COMM VALUE",28332920 +"What is the hs code for FERROUS SULFATE 7-HYDRATE CRYST, FCC 10 (BHN BAKU MAKANAN) SAMPLE NO COMM VALUE",28332920 +"What is the hs code for ZINC GLUCONATE, POWDER, FCC 10 (BHN BAKU MAKANAN) SAMPLE NO COMM VALUE",29181600 +What is the hs code for BACTO TRYPTOSE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0079795,38210090 +What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0084429,38210090 +What is the hs code for BACTO TRYPTONE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 57343,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9071756,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0057343,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0007337,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0057343,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0042378,38210090 +What is the hs code for BACTO TRYPTONE PHOSPHATE 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0057343,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0057343,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0057343,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9282976,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0057343,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9282981,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0057343,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0042378,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0042378,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0057337,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0057337,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0057337,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0057343,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0057337,38210090 +What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9337057,38210090 +What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9035505,38210090 +What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9035505,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2189343,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9109987,38210090 +What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-022019,38249999 +What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK)COA ARP-071040,38249999 +What is the hs code for SK BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-032399,38249999 +What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-021920,38249999 +What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK)COA NMP-L-052010,38249999 +What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA MCP-N-032630,38249999 +"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 2051160,2051171,2051172",29242990 +What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL ...(BHN BAKU PEWARNA TABLET)COA D011JC2L02,39123900 +What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D011J8DL02,39123900 +What is the hs code for METHOCEL K4M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D180JBR002,39123900 +What is the hs code for METHOCEL K4M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D180JC4001,39123900 +What is the hs code for ETHOCEL STANDARD 10 PREMIUM ... (BHN BAKU PEWARNA TABLET) COA D184J7Q021,39123900 +What is the hs code for OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH630715,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH631235,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH632028,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH631233,38249999 +What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU PEWARNA TABLET) COA WP824576,32151900 +What is the hs code for FD AND C BLUE #2/INDIGO CARMINE AL (BHN BAKU PEWARNA TABLET) COA WP815907,32151900 +What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU PEWARNA TABLET) COA WP824576,32151900 +What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP818966,32151900 +What is the hs code for D&C YELLOW #10 AL 15PCT-20PCT (BHN BAKU PEWARNA TABLET) COA WP814317,32151900 +What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP827632,39059990 +What is the hs code for PVAP- PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP827023,39059990 +What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA OBAT) COA WP827022,39059990 +What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP827629,39059990 +What is the hs code for STARTAB DIRECTLY COMPRESSIBLE STARCH (BHN BAKU PEWARNA TABLET) COA WP816007,35051010 +What is the hs code for CROSPOVIDONE XL ( BAHAN BAKU OBAT ) COA PP200531XL,39059990 +What is the hs code for D-RIBOSE (BHN BAKU OBAT) COA ZN20200608,29400000 +"What is the hs code for OMEPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA OP0220C010,012",30039000 +"What is the hs code for OMEPRAZOLE PELLETS 8,5PCT (BHN BAKU OBAT) COA OP0220C011",30039000 +What is the hs code for LANSOPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA LP0220C014,30039000 +"What is the hs code for RESTYLANE SB VITAL LIDOCAINE 1ML ,COA 17862-1",33049990 +"What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML , COA 17606-1",33049990 +"What is the hs code for RESTYLANE VOLYME 1 ML ,COA 17875-1",33049990 +"What is the hs code for RESTYLANE REFYNE 1ML , COA 17748-1, 17749-1",33049990 +"What is the hs code for RESTYLANE DEFYNE 1ML , COA 17870-1",33049990 +"What is the hs code for RESTYLANE KYSSE 1 ML, COA 17825-1",33049990 +"What is the hs code for RESTYLANE SB VITAL LIGHT LIDOCAINE 1ML , COA 17839-1",33049990 +"What is the hs code for RESTYLANE DEFYNE 1ML , COA 17870-1,17852-1,SAMPLE NO COMM VALUE",33049990 +What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA 20200525,11081200 +What is the hs code for HEXYLENE GLYCOL (BHN BAKU KOSMETIK) COA 20040019,29053900 +What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 74814P,38249999 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000175, 194",28363000 +What is the hs code for REFINED SUNFLOWER OIL (BHN BAKU KOSMETIK) COA 0002228405,38249999 +What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK COA B100420,39123900 +"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB100420",39123900 +"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB100420",39123900 +"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B100420",39123900 +"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00637106,VE00637479,VE00637704",29420000 +"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00637704,VE00641232,VE00642630",29420000 +What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708200065 S/D 70,29420000 +"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01912163",29362400 +"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT20030070,UT20050090",29362400 +What is the hs code for MIN PREMIX MI A2 (BHN BAKU MAKANAN) COA XW92005385,21069059 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11200406",29362500 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT20050090,29362400 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20010002,32041900 +What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01912163,29362400 +"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01912163,TL02001010",29362400 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT20030006,29362600 +"What is the hs code for CALCIUM ASCORBATE ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB20030026",29362700 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91102568,29362200 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20010010,29362800 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20010010,29362800 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)BHN BAKU MAKANAN, COA UT20010190, UT20030193",29362100 +"What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET), COA DT703171",32151900 +"What is the hs code for OPALUX TAN (BHN BAKU PEWARNA TABLET), COA DT703172",32151900 +What is the hs code for OPALUX MAROON (BHN BAKU PEWARNA TABLET) COA DT703361,32151900 +What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA OBAT) COA SH631392,38249999 +"What is the hs code for PANTOPRAZOLE SODIUM (STERILE) BAHAN BAKU OBAT, COA SI/PPZ/00300320",29333990 +What is the hs code for OPADRY ORANGE (BHN BAKU PEWARNA TABLET) COA GA672687,38249999 +What is the hs code for OPADRY SGR TRANSLUCENT (BHN BAKU PEWARNA TABLET) COA GA671697,38249999 +What is the hs code for OPADRY SGR CLEAR (BHN BAKU PEWARNA TABLET) COA GA671696,38249999 +What is the hs code for OPADRY SGR RED (BHN BAKU PEWARNA TABLET) COA GA672392,38249999 +What is the hs code for OPADRY SGR TRANSLUCENT (BHN BAKU PEWARNA TABLET) COA GA671697,38249999 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN541906,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN541833,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN541922,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN541907,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN541924,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN541923,35051010 +"What is the hs code for CEFADROXIL MONOHYDRATE (PURIDROX COMPACTED) BHN BAKU OBAT, COA B340170,172,173",29419000 +"What is the hs code for CEFADROXILE MONOHYDRATE POWDER (PURIDROX POWDER) COA B334672,74,76,81,84",29419000 +What is the hs code for TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA P6935,29225090 +What is the hs code for TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA P6936,29225090 +"What is the hs code for MATIPURE TM OIL FREE-5KG (BHN BAKU KOSMETIK) COA 2010102, 2010101",38249999 +What is the hs code for ECOGEL TM - 5KG (BHN BAKU KOSMETIK) COA 2012905,38249999 +What is the hs code for SWT-7TM L- 5KG (BHN BAKU KOSMETIK) COA 2011401,38249999 +What is the hs code for HELIOGEL TM - 5KG (BHN BAKU KOSMETIK) COA 1932401,38249999 +What is the hs code for HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA N3034126,33029000 +"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-1080620, S-1090620",29334910 +What is the hs code for PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PI18050006,29341000 +What is the hs code for PIROXICAM (BAHAN BAKU OBAT ) COA PRX2020007M,29349990 +What is the hs code for METHOTREXATE (BHN BAKU OBAT) COA EP200408,29335990 +What is the hs code for LIQUORICE LC (BHN BAKU KOSMETIK) COA.115774,13021950 +What is the hs code for L-LYSINE HYDROCHLORIDE (FEED GRADE) 98.5PCT (BHN BAKU UTK PAKAN TERNAK )COA QDDX20-03-0140HJ-IB,29349990 +"What is the hs code for ISDN 25PCT-LACTOSE 450 75PCT DILUTED (BHN BAKU OBAT) COA 1813430,SAMPLE NO COMM VALUE",29329990 +"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX POWDER) BHN BAKU OBAT, COA M484486, M484583",29411019 +"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED) ,BHN BAKU OBAT, COA M532498, 2499,2519,2496",29411019 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH631406,38249999 +What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0099489,38210090 +What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0099489,38210090 +What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 00119492,38210090 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0099498,38210090 +What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0093988,38210090 +"What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL ...(MEDIA PENGEMBANGAN MIKROORGANISME) BATCH 0099489,0119492",38210090 +What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0119492,38210090 +What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0119492,38210090 +What is the hs code for GLICLAZIDE (BHN BAKU OBAT) COA 1940001442,29359000 +What is the hs code for GLICLAZIDE (BHN BAKU OBAT) COA 1940002424,29359000 +What is the hs code for GLICLAZIDE (BHN BAKU OBAT) COA 1940002424,29359000 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ91102572,29362200 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ00103310,29362200 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT20030030,29362800 +What is the hs code for DRY VITAMIN D3 100CWS (BHN BAKU SUPLEMEN) COA UT20010005,29362900 +"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20010005,7",29362900 +"What is the hs code for DRY VITAMIN D3 100 CWS ( BHN BAKU SUPLEMEN), COA UT20010007",29362900 +"What is the hs code for DL-A-TOCOPHERYL ACETATE,5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20020045",29362800 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ00103310,29362200 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91102572,29362200 +What is the hs code for DWI-BI (BHN BAKU MAKANAN) COA XW92005346,21069059 +"What is the hs code for VC ASCORBIC ACID REGULAR,25KG BAL (BAHAN BAKU SUPLEMEN) COA HPB2005191,5211",29362700 +"What is the hs code for ONDANSETRON HCL USP (BHN BAKU OBAT) COA 19OS001, 20OS001",29332900 +What is the hs code for SODIUM VALPROATE (BAHAN BAKU OBAT) COA 454565 (759),29159090 +"What is the hs code for IONOL CP,25KG BAG (BHN BAKU KOSMETIK) COA 01110120",29071900 +What is the hs code for IONOL CP (BHN BAKU KOSMETIK) COA 01104320,29071900 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL02004413,4466,4508,4515",29362700 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT20040964,965,966",29362100 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02003030,3031",29362400 +"What is the hs code for D-PANTHENOL, 20KG PAIL (BHN BAKU KOSMETIK) COA TL02003031,3032",29362400 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL02004515,4525,4532,4537",29362700 +"What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU MAKANAN) COA TL02005719",29362400 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT20030008,29362600 +"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT20030007,8,13",29362600 +"What is the hs code for OPTISHARP NAT ZEA 5PCT CWS/S-TG,10KG BAG (BHN BAKU SUPLEMEN) COA EW20055001",32041900 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT19050002,32041900 +"What is the hs code for COATED ASCORBIC ACID, TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02005660",29362700 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT20020009,32030010 +What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19060003,32041900 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT20040058,29362100 +What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT20050049,29362100 +What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 2AX2006018,29181400 +"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 2051427,2051420,2051431,2051432",29242930 +What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP828366,39059990 +What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP828367,39059990 +What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP828113,39059990 +What is the hs code for D AND C YELLOW #10 AL 150CT-20PCT(BHN BAKU PEWARNA TABLET) COA WP814318,32151900 +What is the hs code for FD AND C RED #40/ALLURA RED AC AL... (BHN BAKU PEWARNA TABLET) COA WP824791,32151900 +What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW... (BHN BAKU PEWARNA TABLET) COA WP818228,32151900 +What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2003362364,29372900 +What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK)COA 200055,13021990 +"What is the hs code for ARGAN OIL,10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0026660",29362500 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT20050122,29362800 +"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92005354, XW92005356",21069059 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20010001,21069059 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)(BHN BAKU SUPLEMEN) COA UT20020192,29362100 +What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92005355,21069059 +What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113433,29339990 +What is the hs code for ETHOCEL STANDARD 10 PREMIUM ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D184K25021,39123900 +What is the hs code for ETHOCEL STANDARD 20 PREMIUM ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D184J1C021,39123900 +What is the hs code for ETHOCEL STANDARD 20 PREMIUM ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D184K4L021,39123900 +What is the hs code for 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 011420/006294,38249999 +"What is the hs code for CLOZAPINE (BHN BAKU OBAT) COA 880106, SAMPLE NO COMMERCIAL VALUE",29335990 +"What is the hs code for ADRENALINE TARTRATE EPINEPHRINE BITARTRATE (B.BAKU OBAT)COA080108,100108,125158,SAMPLE NO COMM",29379020 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA RBA1662000,28363000 +"What is the hs code for FERROUS GLUCONATE, POWDER, USP 43 (BHN BAKU OBAT) COA 3087218",29181600 +"What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 00228,00310,00319",38029090 +What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 190120,25070000 +What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH631051,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH631037,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH631039,38249999 +What is the hs code for OPADRY 200 BROWN (BHN BAKU PEWARNA TABLET) COA SH631075,38249999 +What is the hs code for OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH631038,38249999 +What is the hs code for OPADRY AMB RED (BHN BAKU PEWARNA TABLET) COA SH631047,38249999 +What is the hs code for OPADRY AMB II BROWN (BHN BAKU PEWARNA TABLET) COA SH631049,38249999 +What is the hs code for OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH631052,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH630961,38249999 +What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH631048,39061090 +What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH631391,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH632089,38249999 +What is the hs code for OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH631083,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH632287,38249999 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH631363,38249999 +What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH631979,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH631040,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH630117,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH632167,39061090 +What is the hs code for OPADRY AMB MAROON (BHN BAKU PEWARNA TABLET) COA SH632139,38249999 +What is the hs code for OPADRY AMB MAROON (BHN BAKU PEWARNA TABLET) COA SH632138,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH631398,38249999 +What is the hs code for OPADRY II BLUE (BHN BAKU PEWARNA TABLET) COA SH631400,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH631380,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH631379,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH631378,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH631377,38249999 +What is the hs code for OPADRY AMB II BLUE (BHN BAKU PEWARNA TABLET) COA SH631403,38249999 +What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH632051,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH632239,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH632096,38249999 +What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH631461,38249999 +What is the hs code for PEG 400 (BAHAN BAKU KOSMETIK) COA.AKW0000227,39072010 +"What is the hs code for ACRYPOL 980 (20KG) BAHAN BAKU KOSMETIK, COA 11520019, 11520020",39069099 +What is the hs code for MOXIFLOXACIN HYDROCHLORIDE(BHN BAKU OBAT) COA MP0050719,29334990 +What is the hs code for IMWITOR (R) GMIS (BAHAN BAKU KOSMETIK) COA 004053,38249999 +What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA DOC1532021,28363000 +What is the hs code for VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 121910045,28365010 +What is the hs code for PHARMABURST (R) C1 (BHN BAKU OBAT) COA 122000126,21069099 +"What is the hs code for VITAMIN MINERAL PREMIX FOR BISCUIT (BHN BAKU MAKANAN), COA XW92006379",21069059 +"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED GRADE P) BHN BAKU OBAT,COA M597141, M597153",29411019 +"What is the hs code for ZINC SULFATE 1-HYDRATE, POWDER ,PH EUR 10.ED(BHN BAKU OBAT) COA 3080021",28332920 +What is the hs code for CYCLOSERINE USP ( BHN BAKU OBAT) COA CCLU200004,29232010 +What is the hs code for TRIPROLIDINE HCL USP (BHN BAKU OBAT) COA 2-KI-A-0020719,29333990 +What is the hs code for METHOCEL E50 PREMIUM LV HYDROXYPROPYL ...(BHN BAKU PEWARNA TABLET)COA D011J4NL02,39123900 +What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180JCF001,39123900 +What is the hs code for BICAR FOOD 27/50 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA MTP16020,28363000 +What is the hs code for LIPOID PPL-600 (BHN BAKU OBAT) COA 577200-2200227/001-005 (5),29232010 +What is the hs code for PREDNISONE USP42 (BHN BAKU OBAT) COA NPD200308,29372100 +"What is the hs code for PREDNISONE USP42 (BHN BAKU OBAT) COA NPD191008,NPD200702",29372100 +"What is the hs code for PANTOPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT, COA APSS20001",29333990 +What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA 8MT200448,30032000 +"What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET), COA DT703675",32151900 +"What is the hs code for OPALUX MAROON (BHN BAKU PEWARNA TABLET), COA DT704050",32151900 +What is the hs code for OPASPRAY YELLOW (BHN BAKU PEWARNA TABLET) COA DT704051,32151900 +What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00918691,29362800 +What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB19110254,29362100 +What is the hs code for HEXETIDINE (BAHAN BAKU OBAT) COA.FG20201113,29335990 +What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 202000011,28183000 +What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN ) COA MTP14720,28363000 +What is the hs code for BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA MTP13120,28363000 +"What is the hs code for VC ASCORBIC ACID DC 97PCT, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG2006003, 6004",29362700 +"What is the hs code for VC ASCORBIC ACID 325 MESH, 20KG BOAIPO (BAHAN BAKU SUPLEMEN) COA HPD2003003089,3196,5146,5151",29362700 +"What is the hs code for VC ASCORBIC ACID 325 MESH ,20KG BOAIPO (BHN BAKU SUPLEMEN) COA HPG2005159,5164,5178,6010,6017..",29362700 +What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-190303-GS,38249999 +What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA200403,38249999 +What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA200604,38249999 +What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA200403,38249999 +What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 2006035,29349990 +"What is the hs code for INOSITOL (BHN BAKU OBAT) COA 202006028, 202006029",29061300 +What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20200419,29309090 +What is the hs code for CROSPOVIDONE XL (BHN BAKU OBAT) COA PP200601XL,39059990 +What is the hs code for CITICOLINE SODIUM (BHN BAKU OBAT) COA 200314,29349990 +What is the hs code for SUCRALOSE (JKSS00) (BHN BAKU OBAT) COA 20040103,29321400 +What is the hs code for GLUCOSAMINE HCL (BHN BAKU OBAT) COA JST200610,29329990 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL02001647",29362700 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT20040041,29362800 +"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02004042,4043",32041900 +"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02004695",29362400 +"What is the hs code for ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ91106279,82,83,84",29362700 +"What is the hs code for ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ91206294",29362700 +What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT20040048,29362100 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02004043,32041900 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT20040045,29362800 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02004043,32041900 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL02001647, 4498",29362700 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02004044,32041900 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02004044,32041900 +What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT20040048,29362100 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE02004044,32041900 +What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110017,29420000 +What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT20040048,29362100 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02004043,32041900 +"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02004043, UE02004044",32041900 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02004044,32041900 +What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT19120019,29362100 +What is the hs code for MANGANESE (II)-SULFATE 1-HYDRATE (BHN BAKU OBAT) COA 3081906,28332920 +What is the hs code for KETOPROFEN (BHN BAKU OBAT) COA 192131,29183000 +What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0140891,38210090 +What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0143338,38210090 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0136728,38210090 +What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0143351,38210090 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA PENGEMBANGAN MIKROORGANISME) BATCH 0136728,38210090 +What is the hs code for BOTTLE GRAM CRYSTAL VIOLET 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0140190,38210090 +What is the hs code for TUBE CRYSTAL INOCULUM BROTH (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0086820,38210090 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9361277,38210090 +What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9361277,38210090 +What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0013057,38210090 +What is the hs code for BOTTLE OXFORD MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9364955,38210090 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0079962,38210090 +"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0091369",38210090 +What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0002860,38210090 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0097350,38210090 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9337215,38210090 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0147111,38210090 +What is the hs code for KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0105924,38210090 +"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0042947",38210090 +What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0050557,38210090 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0125281,38210090 +What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218538,38210090 +What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 002325,38210090 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9309234,38210090 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0070949,38210090 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161545,38210090 +What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218604,38210090 +"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0091369, 9311217",38210090 +What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239282,38210090 +What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0107757,38210090 +What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9343097,38210090 +"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0030113",38210090 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9287998,38210090 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239319,38210090 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309312,38210090 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9337215,38210090 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9315468,38210090 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048064,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364957,38210090 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037499,38210090 +"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0008443, 0048007",38210090 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0062582,38210090 +What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9310881,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9324109,38210090 +What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0107888,38210090 +What is the hs code for BOTTLE LB BROTH MILLER 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0083370,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065756,38210090 +What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0037535,38210090 +What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0107881,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0135906,38210090 +What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273839,38210090 +What is the hs code for BOTTLE TCBS 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9353100,38210090 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0009096,38210090 +What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9231272,38210090 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161680,38210090 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0013247,38210090 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0077148,38210090 +What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0097399,38210090 +What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142723,38210090 +What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9295486,38210090 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048007,38210090 +"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0062561,9225861",38210090 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065878,38210090 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048064,38210090 +What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 0037535,38210090 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9353100,38210090 +What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065975,38210090 +What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206968,38210090 +What is the hs code for BOTTLE EOSIN METHYLENE BLUE AG HHT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9254786,38210090 +What is the hs code for BOTTLE LAURYL SULFATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9280562,38210090 +What is the hs code for BOTTLE MR-VP BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9148534,38210090 +What is the hs code for BOTTLE KOSER CITRATE MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8054971,38210090 +What is the hs code for BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9015537,38210090 +What is the hs code for BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0090813,38210090 +What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0021157,38210090 +What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9364959,38210090 +What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9339238,38210090 +What is the hs code for DROPPER LACTOPHENOL COTTON BLUE STAIN (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH BD1C118M,38210090 +What is the hs code for BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9206582,38210090 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0009096,38210090 +What is the hs code for BOTTLE DESTROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0030113,38210090 +"What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH0048032,9315468",38210090 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9337215,38210090 +What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9310881,38210090 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0013247,38210090 +What is the hs code for CORTISONE ACETATE MICRONISED PH EUR JP (BHN BAKU OBAT) COA 1900971988,29372900 +"What is the hs code for CEFADROXIL MONOHYDRATE POWDER (PURIDROX POWDER) BHN BAKU OBAT, COA B334690 S/D B334692, B334688",29419000 +What is the hs code for SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK)COA OSLP-112330,38249999 +"What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK)COA NMP-L-651329,NMP-L-062010",38249999 +What is the hs code for SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-030230,38249999 +What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-021920,38249999 +What is the hs code for SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK)COA BIO-OSLP,38249999 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT20050053,29362800 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL02005627,5632,5641,5648",29362700 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT20050056,29362800 +What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT20050002,29362100 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT20040058,29362100 +What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT20050049,29362100 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT20050053,29362800 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT20050053,29362800 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL02004603,4613,4620, 5627",29362700 +What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19060003,32041900 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT20050123,29362800 +"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02004044, UE02004045",32041900 +"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN), COA UE02004045",32041900 +What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT20040096,29362100 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT19050002,32041900 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT20020009,32030010 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT20050968,970,971",29362100 +"What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT20050002,50003,50004",29362100 +"What is the hs code for ASCORBYL PALMITATE ,25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ91206292",29362700 +What is the hs code for GEMCITABINE HYDROCHLORIDE (BAHAN BAKU OBAT) COA 200701,29349990 +"What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 14730620,14750620",29359000 +"What is the hs code for SULPHAMETHOXAZOLE BP MICRONISED (BHN BAKU OBAT) COA 13650620,14700620,14710620,14720620...",29359000 +What is the hs code for TRIMETHOPRIM BP MICRONISED (BHN BAKU OBAT) COA TMP20040320,29335990 +What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH633029,38249999 +"What is the hs code for PHARMACEUTICAL BOVINE GELATINE 150/08 ...(BAHAN BAKU OBAT ), COA 5131909595",35030049 +"What is the hs code for BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0009780",38210090 +"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9312760",38210090 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9361990,38210090 +What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80 (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0072634,38210090 +"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT(MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0099632,0113610",38210090 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9284311,38210090 +"What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0037326",38210090 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9312760,38210090 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9340918,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273671,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0015023,38210090 +"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0009986...",38210090 +What is the hs code for VIAL SAL VT ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0128384,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0015023,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309244,38210090 +What is the hs code for BOTTLE FOLIC ACID ASSAY MEDIUM 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9176696,38210090 +What is the hs code for VIAL NOVOBIOCIN SUPPLEMENT 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0076485,38210090 +What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0086427,38210090 +What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8248932,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9273671,38210090 +What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0121592,38210090 +What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0154553,38210090 +What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0148254,38210090 +What is the hs code for BACTO CASAMINO ACIDS TECHNICAL 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0140445,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0132203,38210090 +What is the hs code for BACTO TRYPTONE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0042378,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0132203,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0132199,38210090 +What is the hs code for BACTO TRYPTOSE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0112241,38210090 +What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9035505,38210090 +What is the hs code for AMOXICILLIN SODIUM CRYSTALLINE STERILE (BHN BAKU OBAT) COA 25PEALQ0,29411019 +"What is the hs code for POMEGRANATE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA PUG2005L1,SAMPLE NO COMM VALUE",38249999 +"What is the hs code for SAFFRON FLOWER HYDROGLYCENNED EXTRACT 80 (BHN BAKU KOSMETIK)COA CRS2004L1-GL80,SAMPLE NO COMM..",38249999 +"What is the hs code for RICE MILK AQUEOUS EXTRACT (BHN BAKU KOSMETIK)COA ORSL1908L1-AQ,SAMPLE NO COMM VALUE",38249999 +What is the hs code for GRAPE SEED ORGANIC OIL (BHN BAKU KOSMETIK)COA VIVHV1905E1-ENBIO,38249999 +"What is the hs code for CHLOROPHYLL POWDER (BHN BAKU KOSMETIK) COA CHLP2006E1-ES,SAMPLE NO COMMERCIAL VALUE",38249999 +"What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO190112, SAMPLE NO COMMERCIAL VALUE",38249999 +What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1907201172,29362600 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL02005802",29362700 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL02005802, 5806",29362700 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL02005806",29362700 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL02005815",29362700 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL02005815",29362700 +"What is the hs code for COATED ASCORBIC ACID TYPE EC,25KG BOX (BHN BAKU SUPLEMEN) COA TL02005709",29362700 +"What is the hs code for ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ91206294 S/D 6297",29362700 +"What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU MAKANAN) COA TL02005737",29362400 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL02005787,5795,5803",29362700 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT20060063,29362800 +What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19060003,32041900 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT20040058,29362100 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT19050002,32041900 +What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19060003,32041900 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT20040058,29362100 +What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT20050049,29362100 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02003029,32041900 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02003029,32041900 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02003029,32041900 +What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ00209501,29362300 +What is the hs code for KETOROLAC TROMETHAMOL/TROMETHAMINE (BHN BAKU OBAT) COA 20100147,29339990 +What is the hs code for CIPROFLOXACIN HCL (BHN BAKU OBAT) COA HB00U2007001 S/D 7005,29335990 +"What is the hs code for SENTRY POLYOX WSR 303 LEO NF (DOW) (BHN BAKU PEWARNA TABLET), COA D682K39RR5",39123900 +"What is the hs code for SENTRY POLYOX WSR 1105 LEO NF (DOW) BHN BAKU PEWARNA TABLET, COA D682JB7RD1",39123900 +"What is the hs code for SENTRY POLYOX WSR N750 LEO NF (DOW) BHN BAKU UTK PEWARNA TABLET, COA D682I97RJ6",39123900 +"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT20060145, UT20060146",29362800 +What is the hs code for OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH632214,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH632216,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH632217,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH632239,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH630961,38249999 +What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH630415,38249999 +What is the hs code for OPADRY VIOLET (BHN BAKU PEWARNA TABLET) COA SH632200,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH632409,38249999 +What is the hs code for OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA SH632202,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH632215,38249999 +What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH632201,38249999 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH632219,38249999 +What is the hs code for OPADRY II GRAY (BHN BAKU PEWARNA TABLET) COA SH632203,38249999 +What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 05062020,25081000 +What is the hs code for OPADRY RED (BHN BAKU PEWARNA TABLET) COA SH632756,38249999 +"What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET), COA DT704786",32151900 +"What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET), COA DT704740",32151900 +What is the hs code for OPACODE BLACK (BHN BAKU PEWARNA TABLET) COA DT704684,32151900 +"What is the hs code for PARSOL MAX, 25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0919030007",29420000 +"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ00303364, 85",29362200 +"What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW92006130,6131",21069059 +"What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW92006204, 6205",21069059 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT20030023,29362800 +"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20020045",29362800 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ00303364,29362200 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20010007,29362900 +"What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB19119010",29362700 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ00303364,29362200 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT20020192,193",29362100 +What is the hs code for SILYMARIN/ET (BHN BAKU SUPLEMEN) COA 20S0078402,38249999 +What is the hs code for P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 32347/M1,13021990 +What is the hs code for CURCUMA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 20S0091308,38249999 +What is the hs code for SERENOA REPENS PURIFIED EXT (BHN BAKU SUPLEMEN) COA 19S0245600,38249999 +"What is the hs code for LIPOID S 67 F (BHN BAKU OBAT) COA 576200-2190033/013-017 (5), 576200-2190033/018",29232010 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA RBA180200,28363000 +"What is the hs code for NG 5 PCT-1,2 PROPYLENGLYCOLE 95% (BAHAN BAKU OBAT) COA 2005430",30039000 +What is the hs code for PYRAZINAMIDE EP/USP (BHN BAKU OBAT) COA WHOPZ 024 F 20 S/D WHOPZ 034 F 20,29339990 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA RBA1832000,28363000 +What is the hs code for AMBROXOL HCL BP (BHN BAKU OBAT) COA AHM/20061 S/D AHM/20065,29221990 +"What is the hs code for MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU MAKANAN) COA TS00014835",29362500 +"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 2030389,2030392,2051653",29242930 +What is the hs code for OPADRY SGR RED (BHN BAKU PEWARNA OBAT) COA GA674963,38249999 +"What is the hs code for PARSOL 340, 0,250 KG SAM (BHN BAKU KOSMETIK) COA 0220040007,SAMPLE NO COMMERCIAL VALUE",29420000 +"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC16620T",27101990 +What is the hs code for BOTTLE GRAM SAFRANIN 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0055111,38210090 +What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0140250,38210090 +What is the hs code for BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9309252,38210090 +What is the hs code for BOTTLE GRAM DECOLORIZER 250ML (MEDIA UTK PNGEMBANGAN MIKROORGANISME) BATCH 0077164,38210090 +"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 040220,050220,130220,140220,170220,120220",38029090 +"What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453662393",39139090 +What is the hs code for CHOLINE L-BITARTRATE (BAHAN BAKU OBAT) COA.3020013,29231000 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP20053181, XP20053182",29211900 +"What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-002-X, SAMPLE NO COMMERCIAL VALUE",38249999 +What is the hs code for 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 011420/006294,38249999 +"What is the hs code for PANTOPRAZOLE SODIUM (STERILE) BAHAN BAKU OBAT, COA SI/PPZ/00360420",29333990 +What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC019-20-801,17021100 +What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC019-20-801,17021100 +What is the hs code for HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2510420,29391900 +What is the hs code for GRANULAC (R) 70 (BHN BAKU OBAT) COA L101841420,17021100 +What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA.0000071858,29309090 +"What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA.0000071887,SAMPLE NO COMMERCIAL VALUE",29309090 +"What is the hs code for THIOCARE (R) H801 48PCT (BHN BAKU KOSMETIK) COA 0000071887, SAMPLE NO COMMERCIAL VALUE",29309090 +"What is the hs code for THIOCARE (R) H105 83PCT (BHN BAKU KOSMETIK) COA 0000071889, SAMPLE NO COMMERCIAL VALUE",29309090 +"What is the hs code for THIOCARE (R) H103 43PCT (BHN BAKU KOSMETIK), COA 0000071890,SAMPLE NO COMMERCIAL VALUE",29309090 +"What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK), COA 0000071891,SAMPLE NO COMMERCIAL VALUE",29309090 +"What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA 0000071892,SAMPLE NO COMMERCIAL VALUE",29309090 +What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU KOSMETIK) COA UT20050027,29362500 +What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA 20200629,11081200 +What is the hs code for ADSORB AFLA (BHN BAKU UNTUK PAKAN TERNAK) COA 149,25081000 +What is the hs code for CLOMIPHENE CITRATE USP/EP (BHN BAKU OBAT ) COA 202003240245,29221990 +"What is the hs code for DOCUSATE SODIUM (BHN BAKU OBAT), COA SD0021906",29181600 +What is the hs code for NYSTATIN MICRONIZED ROW (BHN BAKU OBAT) COA C131423,29419000 +What is the hs code for CLOTRIMAZOLE MICRONIZED (BHN BAKU OBAT ) COA 202006260309,29332900 +What is the hs code for ALLOPURINOL USP (BHN BAKU OBAT) COA 20024AY3ARII,29335990 +What is the hs code for SUPPOCIRE A PELLETS (BHN BAKU OBAT) COA 19E4802,28399000 +What is the hs code for SUPPOCIRE AM PELLETS (BHN BAKU OBAT) COA 20E1507,28399000 +What is the hs code for SUPPOCIRE BM PELLETS (BAHAN BAKU OBAT) COA 19E1009,28399000 +What is the hs code for SUPPOCIRE NA PELLETS (BAHAN BAKU OBAT) COA 19E5205,28399000 +What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 20E0802,28399000 +"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU MAKANAN) COA UT20020045",29362800 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20010001,32041900 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19090007,29362900 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91113209,29362500 +"What is the hs code for DL-A-TOCOPHERYL ACETATE,5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20020045",29362800 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ91210344,29362300 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)BHN BAKU SUPLEMEN, COA UT20030193",29362100 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT20010004,29362400 +"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ91210344, 345",29362300 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905018,29362900 +"What is the hs code for CALCIUM ASCORBATE,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB20030026",29362700 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ91210345,29362300 +"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92006263, XW92006264",21069059 +What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92006272,21069059 +"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20020045",29362800 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12005014,29362900 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ91210345,29362300 +What is the hs code for SODIUM SELENITE IN CARRIER (BHN BAKU SUPLEMEN) COA 3085558,28429010 +"What is the hs code for TRIMAGNESIUM DICITRATE , ANHYDROUS (BHN BAKU SUPLEMEN) COA 3081933",29181590 +What is the hs code for HUILE DE COPRAH RAFF GV 24/26 (BHN BAKU KOSMETIK)COA 20F2602,15131910 +What is the hs code for MANGANESE (II)-SULFATE 1-HYDRATE (BHN BAKU SUPLEMEN) COA 3081905,28332920 +"What is the hs code for ZINC OXIDE ,POWDER, PH EUR.10 ED (BHN BAKU SUPLEMEN) COA 3085795",28170010 +What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA VIV190701-BGBIO,38249999 +What is the hs code for PEPPERMINT ORGANIC FROM FRANCE DISTILLATE (SB) BHN BAKU MEPD200401-BIO,38249999 +What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-200701-GS,38249999 +"What is the hs code for ROMAN CHAMOMILLE ORGANIC DISTILLATE 1:1 (SB) BHN BAKU KOSMETIK, COA ANND200401-BIO",38249999 +What is the hs code for SAFFLOWER REFINED OIL (BHN BAKU KOSMETIK) COA CARHR200202-DW,38249999 +What is the hs code for LICORICE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA GLG190401-BGBIO,38249999 +What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA VIV190701-BGBIO,38249999 +What is the hs code for FLOWER ACIDS (BHN BAKU KOSMETIK) COA HS200601,38249999 +What is the hs code for ETHOCEL STANDARD 10 PREMIUM ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D184K25021,39123900 +What is the hs code for ETHOCEL STANDARD 20 PREMIUM ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D184J9N021,39123900 +What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102069005,28161000 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000194, 195",28363000 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000193, 195",28363000 +"What is the hs code for EFFERSODA (R) 12 BHN BAKU OBAT, COA 122000195",28363000 +What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA D02711UP,29053200 +What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA.0000072011,29309090 +What is the hs code for CEFTAZIDIME BUFFERED (BHN BAKU OBAT) COA T200300,29419000 +What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA T100600,29419000 +"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED) BHN BAKU OBAT, COA M532525,587,616,617",29411019 +"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX POWDER) ,BHN BAKU OBAT, COA M484611",29411019 +What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED) COA M532552,29411019 +What is the hs code for SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 20B0037300,38249999 +What is the hs code for SILYBIN /PHOSPHOPILIDS (BAHAN BAKU SUPLEMEN) COA 20B0067700,38249999 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 20B0018800,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 20B0037700,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 20B0037800,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 20B0037900,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 20B0038000,13021990 +What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 19B0110300,38249999 +"What is the hs code for CEFADROXIL MONOHYDRATE POWDER (PURIDROX POWDER) BHN BAKU OBAT, COA B334695,696,697",29419000 +"What is the hs code for DRY VITAMIN E 75HP (BHN BAKU SUPLEMEN), COA WB19090223",29362800 +"What is the hs code for DRY VITAMIN E 75HP (BHN BAKU SUPLEMEN), COA WB1909023",29362800 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH632783,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH633089,38249999 +What is the hs code for OPADRY 200 PINK (BHN BAKU PEWARNA TABLET) COA SH632757,38249999 +What is the hs code for OPADRY EZ CLEAR (BHN BAKU PEWARNA TABLET) COA SH632746,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH632194,38249999 +What is the hs code for OPADRY AMB II BLUE (BHN BAKU PEWARNA TABLET) COA SH632758,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH633169,38249999 +What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH632749,39061090 +"What is the hs code for DEXAMETHASONE BP2010/USP41 (BHN BAKU OBAT) COA NED200509, NED200511",29372200 +What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA ND190702,29372200 +What is the hs code for PREDNISOLONE BP2018/USP42 (BHN BAKU OBAT) COA NPL200310,29372100 +What is the hs code for KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0190520,29339990 +"What is the hs code for BIOBENEFITY (PLANT EXTRACT FOR COSMETIC) BHN BAKU KOSMETIK, COA 200215",13021990 +What is the hs code for ROSE HIPS LIQUID B (PLANT EXTRACT FOR COSMETIC)BHN BAKU KOSMETIK) COA 200964,13021990 +What is the hs code for EMALEX PEIS-10EX (SURFACTANT FOR COSMETIC)BHN BAKU KOSMETIK) COA 2002-27,34021310 +"What is the hs code for EMALEX GWIS-320 (SURFACTANT FOR COSMETIC)BHN BAKU KOSMETIK, COA 1-1034",34021310 +"What is the hs code for PHYTO COLLAGE B(N) PLANT EXTRACT FOR COSMETIC (BHN BAKU KOSMETIK), COA 192760,200610",13021990 +"What is the hs code for SPRINTMINT (PLANT EXTRACT FOR COSMETIC) BHN BAKU KOSMETIK,COA 200839",13021990 +"What is the hs code for IZAYOI (PLANT EXTRACT FOR COSMETIC) BHN BAKU KOSMETIK,COA 193027",13021990 +What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 2AX2006039,29181400 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA MTP19120,28363000 +What is the hs code for FLOWLAC (R) 100H (BHN BAKU OBAT) COA. L105810720,17021100 +What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103862120,17021100 +What is the hs code for CAPSULAC (R) 60 (BHN BAKU OBAT) COA L100411820,17021100 +What is the hs code for CELLACTOSE (R) 80 (BHN BAKU OBAT) COA L100462120,17021100 +What is the hs code for TABCOAT TC WHITE (BHN BAKU PEWARNA TABLET) COA GA674053,32151900 +What is the hs code for OPADRY SGR TRANSLUCENT (BHN BAKU PEWARNA TABLET) COA GA674052,38249999 +What is the hs code for OPADRY SGR CLEAR (BHN BAKU PEWARNA TABLET) COA GA674054,38249999 +What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 180808,28399000 +What is the hs code for GELOT 64 (BAHAN BAKU OBAT) COA 180160,28399000 +"What is the hs code for PHARMACEUTICAL BOVINE GELATINE 150/08 ...(BAHAN BAKU OBAT ), COA 5131906514, 5131909595",35030049 +"What is the hs code for CATECHINS (TEA EXTRACT) (BHN BAKU SUPLEMEN KESEHATAN), COA 002211",38249999 +"What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN), COA WB20070514,515",29362700 +What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA,38029090 +What is the hs code for SOYA LECITHIN (BHN BAKU MAKANAN) COA TY2200615-25,29232010 +"What is the hs code for ZINC SULFATE 1-HYDRATE,POWDER,PH.EUR.10.ED (BHN BAKU SUPLEMEN) COA 3052430",28332920 +"What is the hs code for VIT MINERAL PREMIX FOR MATERNAL BISCUIT (BHN BAKU MAKANAN), COA XW92007025",21069059 +What is the hs code for LISINOPRIL DIHYDRATE (BAHAN BAKU OBAT) COA C5170-19-005,29339990 +What is the hs code for AMITOSE R (BHN BAKU KOSMETIK) COA FDC,38249999 +"What is the hs code for EDIBLE BOVINE GELATINE 140/20 HAL(BAHAN BAKU OBAT ), COA 5002007536,7560",35030049 +What is the hs code for GELATINE RXL 210 BLOOM 18 (BHN BAKU OBAT) COA 5001901482,35030049 +What is the hs code for EDIBLE BOVINE GELATINE 180/20 HAL (BHN BAKU OBAT) COA 5002003108,35030049 +What is the hs code for ECHINACEA ANG.DRY PURIF.EX (BHN BAKU SUPLEMEN) COA 20S0152800,13021990 +What is the hs code for ECHINACEA ANG.DRY PURIF.EX (BHN BAKU SUPLEMEN) COA 20S0152800,13021990 +"What is the hs code for LIFE'S DHA (TM) S35-O300, 5KG ALUF (BHN BAKU SUPLEMEN) COA VY00365010",29362500 +"What is the hs code for LIFE'SDHA S35-O100, 5KG ALUF (BHN BAKU SUPLEMEN) COA VY00339616",29362500 +"What is the hs code for SENTRY POLYOX WSR 303 LEO NF (DOW) (BHN BAKU PEWARNA TABLET), COA D682K25RR3",39123900 +"What is the hs code for TRISODIUMCITRATE DIHYDRATE FINE GRANULAR (BHN BAKU MAKANAN), COA UJ028",29181400 +What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU MAKANAN) COA UJ027,29181400 +"What is the hs code for TRISODIUMCITRATE DIHYDRATE FINE GRANULAR (BHN BAKU MAKANAN), COA UJ027 ,UJ028",29181400 +What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU MAKANAN) COA UJ026,29181400 +What is the hs code for ESOMEPRAZOLE MAGNESIUM USP (BHN BAKU OBAT) COAESM/2007290,29333990 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN542450,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN542509,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN542479,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN542451,35051010 +What is the hs code for TRANSCUTOL P (BHN BAKU OBAT) COA 179566,28399000 +What is the hs code for TEFOSE 63 (BHN BAKU OBAT) COA 180034,28399000 +What is the hs code for GELOT 64 (BAHAN BAKU OBAT) COA 180160,28399000 +What is the hs code for PRECIROL ATO 5 (BAHAN BAKU OBAT) COA 180609,28399000 +"What is the hs code for PREMIX BALITA (BHN BAKU MAKANAN) COA XW92006266, XW92006267",21069059 +"What is the hs code for PX 103070-C3 (BHN BAKU MAKANAN) COA XW92006294, XW92006295",21069059 +What is the hs code for VITAMIN MINERAL PREMIX INSTANT DRINK (BHN BAKU MAKANAN) COA XW92007024,21069059 +What is the hs code for VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92007026,21069059 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT20030067,29362800 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20010006,29362900 +"What is the hs code for D-A-TOCOPHERYL-ACETATE, 20KG JUG (BHN BAKU SUPLEMEN) COA XH20200401",29362800 +"What is the hs code for PARSOL (R) HS, 20KG BOX (BHN BAKU KOSMETIK) COA HS0730520",29420000 +"What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01906809",29362400 +"What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01906809",29362400 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT20040017,29362600 +"What is the hs code for ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ91206297",29362700 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT20040017,29362600 +"What is the hs code for VITAMIN B12 0,1PCT WS (BHN BAKU MAKANAN) COA UT20040017",29362600 +"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20010002,UT20010003",29362900 +What is the hs code for RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2001002,29362300 +What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT20050020,29362500 +What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT20050020,29362500 +What is the hs code for MEG-3 (TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT20050020,29362500 +"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT20060146, 154",29362800 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT20060154,29362800 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101852720,17021100 +What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA LC019-20-801,17021100 +What is the hs code for BICAR PHARMA HD0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN ) COA MTP16320,28363000 +What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA DOC1882021,28363000 +What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000254,28363000 +What is the hs code for PHENYLEPHRINE HCL USP (BHN BAKU OBAT) COA 2-IL-D-0980620,29225090 +"What is the hs code for AMBROXOL HYDROCHLORIDE (BAHAN BAKU OBAT), COA VBNG200194",29221990 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH633189,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH632784,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH633190,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH633187,38249999 +What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH633194,38249999 +What is the hs code for OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH633205,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH633200,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH633169,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH633261,38249999 +What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH633185,38249999 +What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH633193,39061090 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH633204,38249999 +What is the hs code for OPADRY RED (BHN BAKU PEWARNA TABLET) COA SH633188,38249999 +What is the hs code for OPADRY 200 PINK (BHN BAKU PEWARNA TABLET) COA SH632757,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH632965,38249999 +"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC16420T",27101990 +"What is the hs code for GRANULAC 200, 25KG BAG (BHN BAKU OBAT) COA. LC024-20-801",17021100 +What is the hs code for ECOGEL TM-5KG (BHN BAKU KOSMETIK) COA 2013701,38249999 +What is the hs code for AMISOL TRIO TM -5KG (BHN BAKU KOSMETIK) COA 1936114,38249999 +What is the hs code for ROSALITY TM- 1KG (BHN BAKU KOSMETIK) COA 2012801,38249999 +What is the hs code for PHYTENSO TM- 5KG (BHN BAKU KOSMETIK) COA 1936116,38249999 +What is the hs code for EXO-T TM -1KG (BHN BAKU KOSMETIK) COA 715017666K,38249999 +What is the hs code for SWT 7TM H -1KG (BHN BAKU KOSMETIK) COA 0029801,38249999 +"What is the hs code for PLATE STERILE TODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0050557",38210090 +"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0125281",38210090 +"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0013180,9309234",38210090 +"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0070949,0079962",38210090 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161545,38210090 +"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0091369",38210090 +What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9239282,38210090 +"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0002860,0030113",38210090 +What is the hs code for BOTTLE D-MANNITOL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0013917,38210090 +"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G(MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH0065878,9239319",38210090 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309312,38210090 +"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0042333,9337215",38210090 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048032,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9364958,38210090 +"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0037499,0126889",38210090 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0062582,38210090 +What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9310881,38210090 +What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037535,38210090 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9353100,38210090 +What is the hs code for BOTTLE BISMUTH SULFIDE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0009096,38210090 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161680,38210090 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0013247,38210090 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0077148,38210090 +"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0097399",38210090 +"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH0125228,0161496",38210090 +What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142723,38210090 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0042947,38210090 +What is the hs code for BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0035732,38210090 +What is the hs code for BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9337386,38210090 +What is the hs code for TUBE CRYSTAL INOCULUM BROTH (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0086820,38210090 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0058279,38210090 +What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239282,38210090 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0174577,38210090 +What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037535,38210090 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9353100,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0135906,38210090 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0009096,38210090 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0147207,38210090 +What is the hs code for BOTTLE BIGGY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0093712,38210090 +What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8206968,38210090 +What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0126958,38210090 +What is the hs code for BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9015557,38210090 +What is the hs code for BOTTLE MR-VP MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9354355,38210090 +What is the hs code for BOTTLE RHAMNOSE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0154527,38210090 +What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309193,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MED 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9112920,38210090 +What is the hs code for BOTTLE MICRO ASSAY CULTURE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025933,38210090 +What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0079804,38210090 +What is the hs code for BOTTLE YEAST NITROGEN BASE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0153180,38210090 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B03C073M,38210090 +What is the hs code for BOTTLE OF BASAL MEDIUM 500GR(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048956,38210090 +What is the hs code for BOTTLE YEAST MOLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065956,38210090 +What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9324170,38210090 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0161496,38210090 +What is the hs code for GASPAK EZ LARGE INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7336258010,38210090 +What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0175457,38210090 +What is the hs code for BOTTLE TAT BROTH BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0161496,38210090 +What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9295486,38210090 +What is the hs code for KIT CRYSTAL ENTERIC /NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0042947,38210090 +"What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0196591",38210090 +What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0196591,38210090 +What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMEN(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0120569,38210090 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I&VI LYO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0044798,38210090 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0034814,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9273671,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9338680,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065943,38210090 +What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0196591,38210090 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0041756,38210090 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0041756,38210090 +"What is the hs code for VIAL FRASER BROTH SUPPLEMENT 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0120831",38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0037338,38210090 +What is the hs code for BOTTLE FOLIC ACID ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9176696,38210090 +What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 00655855,38210090 +What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0078873,38210090 +What is the hs code for BOTTLE B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0119320,38210090 +What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0121592,38210090 +What is the hs code for BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0105076,38210090 +What is the hs code for BOTTLE LACTOBACILLI AGAR AOAC 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9339176,38210090 +What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8248932,38210090 +What is the hs code for CALCIUM CARBONATE DC TYPE CS90 PHARMA (BHN BAKU OBAT) COA 202000083,28365010 +What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 202000199,28183000 +"What is the hs code for MEG-3 '30' N-3 INF OIL, 4,5KG PJUG (BHN BAKU SUPLEMEN) COA TS00014967",29362500 +What is the hs code for SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 2008131314,29322090 +What is the hs code for CYPROHEPTADINE HCL BP/PH.EUR (BHN BAKU OBAT) COA CYP/05201006,29333990 +What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX2008007,29181400 +What is the hs code for LIFE'S ARA (TM) '12' N-6 ARA POWDER (BHN BAKU MAKANAN) COA WB20010367,29362500 +What is the hs code for METHOCEL K100M PREMIUM LV HYDROXYPROPYL ...(BHN BAKU PEWARNA TABLET)COA D0180K1Q002,39123900 +What is the hs code for ETHOCEL STANDARD 10 PREMIUM ETHYLCELLULOSE... (BHN BAKU PEWARNA TABLET) COA D184J7Q021,39123900 +What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M-31.0PCT (BHN BAKU OBAT) COA 102029017,28161000 +What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA200604,38249999 +What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA200604,38249999 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO200101,38249999 +"What is the hs code for WITCH HAZEL ORGANIC DISTILLATE 1:10 (BHN BAKU KOSMETIK), COA PAG-CO200101",38249999 +What is the hs code for KIGELINE (BHN BAKU KOSMETIK) COA KA200502-B,38249999 +"What is the hs code for COPPER (II) GLUCONATE, FINE POWDER, USP 43 (BHN BAKU SUPLEMEN) COA 3089250",29181600 +What is the hs code for METAMIZOL SODIUM (BAHAN BAKU UNTUK PAKAN TERNAK) COA 2006936,29331900 +What is the hs code for METHYL SULFONYL METHANE (BAHAN BAKU OBAT) COA 20200806,29309090 +What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 2007059,29349990 +What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20200716,29309090 +"What is the hs code for CAFFEINE (BHN BAKU OBAT) COA 2005897, 20071314, 20071316",29393000 +What is the hs code for L-LYSINE HCL (BHN BAKU OBAT) COA 2012270725,29224100 +What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000256,28363000 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT), COA 122000255,256",28363000 +"What is the hs code for PLATE STERILE TODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0050557",38210090 +"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0125281",38210090 +"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0013180,9309234",38210090 +"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0070949,0079962",38210090 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161545,38210090 +"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0091369",38210090 +What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9239282,38210090 +"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0002860,0030113",38210090 +What is the hs code for BOTTLE D-MANNITOL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0013917,38210090 +"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G(MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH0065878,9239319",38210090 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309312,38210090 +"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0042333,9337215",38210090 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048032,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9364958,38210090 +"What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0037499,0126889",38210090 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0062582,38210090 +What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9310881,38210090 +What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037535,38210090 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9353100,38210090 +What is the hs code for BOTTLE BISMUTH SULFIDE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0009096,38210090 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161680,38210090 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0013247,38210090 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0077148,38210090 +"What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0097399",38210090 +"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH0125228,0161496",38210090 +What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142723,38210090 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0042947,38210090 +What is the hs code for BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0035732,38210090 +What is the hs code for BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9337386,38210090 +What is the hs code for TUBE CRYSTAL INOCULUM BROTH (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0086820,38210090 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0058279,38210090 +What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239282,38210090 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0174577,38210090 +What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037535,38210090 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9353100,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0135906,38210090 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0009096,38210090 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0147207,38210090 +What is the hs code for BOTTLE BIGGY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0093712,38210090 +What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8206968,38210090 +What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0126958,38210090 +What is the hs code for BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9015557,38210090 +What is the hs code for BOTTLE MR-VP MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9354355,38210090 +What is the hs code for BOTTLE RHAMNOSE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0154527,38210090 +What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309193,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MED 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9112920,38210090 +What is the hs code for BOTTLE MICRO ASSAY CULTURE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025933,38210090 +What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0079804,38210090 +What is the hs code for BOTTLE YEAST NITROGEN BASE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0153180,38210090 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B03C073M,38210090 +What is the hs code for BOTTLE OF BASAL MEDIUM 500GR(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048956,38210090 +What is the hs code for BOTTLE YEAST MOLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065956,38210090 +What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9324170,38210090 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0161496,38210090 +What is the hs code for GASPAK EZ LARGE INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7336258010,38210090 +What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0175457,38210090 +What is the hs code for BOTTLE TAT BROTH BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0161496,38210090 +What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9295486,38210090 +What is the hs code for KIT CRYSTAL ENTERIC /NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0042947,38210090 +What is the hs code for FERROUS LACTATE 2-HYDRATE POWDER (BHN BAKU MAKANAN) COA 3077408,29181200 +"What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW92006358,6359",21069059 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20020027,29362800 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ00303386,29362200 +"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20020027,UT20040031",29362800 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20040031,29362800 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20010002,32041900 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT20030193",29362100 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ00303386,29362200 +"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92006346, XW92006347",21069059 +"What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 90911, 200624",33012920 +What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 200510,13021950 +What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 90802,33012920 +What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD(BHN BAKU MAKANAN) COA UT20050022,29362500 +What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT20050022,29362500 +What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT20050022,29362500 +What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT20050022,29362500 +"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02005742",29362400 +What is the hs code for RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2001016,29362300 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02006056",29362700 +"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL02005742",29362400 +What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110017,29420000 +What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110017,29420000 +"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL02005742",29362400 +"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL02005742, TL02007758",29362400 +What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA.0000072033,29309090 +What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK)COA BAG-010340,38249999 +What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK)COA MCP-N-032630,38249999 +What is the hs code for SK BIOLAND SENAS (BHN BAKU KOSMETIK) COA NASB-012020,38249999 +What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-021920,38249999 +What is the hs code for SK BIOLAND CACTUS EXTRACT (BHN BAKU KOSMETIK)COA CAB-021340,38249999 +What is the hs code for SK BIOLAND TEA TREE EXTRACT (BHN BAKU KOSMETIK) COA MASL-030260,38249999 +What is the hs code for NECTAR DE MATCHA FEMA P114 6 (BHN BAKU KOSMETIK) COA 0000040122,33029000 +What is the hs code for THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000040123,33029000 +What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA 0000040124,33029000 +What is the hs code for PLAISANCE P116808 (BHN BAKU KOSMETIK) COA 0000042817,33029000 +What is the hs code for OPADRY 200 PINK (BHN BAKU PEWARNA TABLET) COA SH633396,38249999 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH633414,38249999 +What is the hs code for ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH633405,39061090 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH633416,38249999 +What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH633408,39061090 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH633419,38249999 +What is the hs code for OPADRY AMB RED (BHN BAKU PEWARNA TABLET) COA SH633392,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH633406,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH633415,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH632784,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH633409,39061090 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH633410,38249999 +What is the hs code for OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH633393,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH633395,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH633394,38249999 +What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH633417,38249999 +What is the hs code for ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH633407,39061090 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH6341242,38249999 +"What is the hs code for OPASPRAY YELLOW (BHN BAKU PEWARNA TABLET), COA DT705767",32151900 +"What is the hs code for OPATINT BLUE (BHN BAKU PEWARNA TABLET), COA DT705768",32151900 +What is the hs code for PIPEMIDIC ACID (BHN BAKU OBAT) COA 20018,29335990 +What is the hs code for DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2007002,28352510 +What is the hs code for COPPER SULPHATE PENTAHYDRATE (BHN BAKU PAKAN TERNAK) COA N93,28332500 +What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0170540,38210090 +What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0162138,38210090 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0157786,38210090 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA PENGEMBANGAN MIKROORGANISME) BATCH 0157830,38210090 +"What is the hs code for GRANULAC 200, 25KG BAG (BHN BAKU OBAT) COA. LC024-20-801",17021100 +"What is the hs code for GRANULAC 200, 25KG BAG (BHN BAKU OBAT) COA. LC024-20-801",17021100 +What is the hs code for CETIRIZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA 20010CZ6RII,29335990 +What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-200603,29061300 +"What is the hs code for ZINC SULFATE 7-HYDRATE,CRYST,PH.EUR.10.ED (BHN BAKU SUPLEMEN) COA 3079705",28332920 +What is the hs code for ETAS 50 (BHN BAKU KOSMETIK) COA HSP1906S,13021950 +"What is the hs code for VITAMIN MINERAL PREMIX FOR BISCUIT (BHN BAKU MAKANAN), COA XW92008093",21069059 +What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU OBAT) COA 202000176,28183000 +"What is the hs code for PROPYPHENAZONE (ST) (BHN BAKU PEWARNA TABLET) COA 2005077,5080,5085,5086,6103",29331100 +What is the hs code for HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 3064486,33029000 +"What is the hs code for FERROUS FUMARATE, FINE POWDER (BHN BAKU MAKANAN) COA 3082640",29054300 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0132228,38210090 +What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0112241,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9109987,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9266545,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2186295,38210090 +What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9121860,38210090 +What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9035505,38210090 +What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2198829,38210090 +"What is the hs code for PEPTONE STARTER PAK NO.3 EACH EA ,BATCH 191029008,SAMPLE NO COMMERCIAL VALUE",38210090 +What is the hs code for CORTISONE ACETATE MICRONISED PH EUR JP (BHN BAKU OBAT) COA 2000990940,29372900 +"What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF, 1KG ALUF (BHN BAKU SUPLEMEN) COA UE02005024",32030010 +"What is the hs code for GENIVIDA (TM) TG, 1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT19060004",29329990 +What is the hs code for B-CAROTENE 10PCT EM YELLOW (BHN BAKU SUPLEMEN) COA UT20040007,32041900 +"What is the hs code for BANANA OILY EXTRACT (BHN BAKU KOSMETIK)COA MUS2007L1-H ,SAMPLE NO COMM VALUE",38249999 +"What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO2007L2-B,SAMPLE NO COMM..",38249999 +What is the hs code for OPADRY FX YELLOW (BHN BAKU PEWARNA OBAT) COA GA676197,38249999 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL02007356,TL02007416",29362700 +"What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN), COA UT20050026",29362500 +"What is the hs code for ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ00316030,31,32",29362700 +"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU MAKANAN) COA UT20050130",29362800 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030150,29362900 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030150,29362900 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20010006,29362900 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE02001001,29362900 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20010006,29362900 +"What is the hs code for CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU SUPLEMEN, COA WB20030026",29362700 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00102696,29362200 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20010002,32041900 +"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20050130",29362800 +What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030047,29362500 +"What is the hs code for DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01908638",29362400 +What is the hs code for KAHLWAX 2442L (BHN BAKU KOSMETIK) COA F2024024-001,15211000 +What is the hs code for AVICEL CL 611 NF BDF (BHN BAKU KOSMETIK) COA,39129090 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH633915,38249999 +What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP20084489,29211900 +What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP20084490,29211900 +What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP828112,39059990 +What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP827634,39059990 +What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP828115,39059990 +What is the hs code for FD AND C YELLOW #6 SUNSET YELLOW ...(BHN BAKU PEWARNA TABLET) COA WP818966:AZ8109,32151900 +What is the hs code for FD AND C BLUE #1/BRILLIANT BLUE ... (BHN BAKU PEWARNA TABLET) COA WP816342:AZ6940,32151900 +What is the hs code for ERYTHROSINE AL38PCT-42PCT (BHN BAKU PEWARNA TABLET) COA WP760229-1,32151900 +What is the hs code for FD AND C BLUE #1/BRILLIANT BLUE ...(BHN BAKU PEWARNA TABLET) COA WP826689:BA1430,32151900 +What is the hs code for CLEANBIO TM-ZINC (PROTECT) (CL0024-K18) (BAHAN BAKU KOSMETIK) COA 20ZDP,38249999 +"What is the hs code for COPPER SULFATE, POWDER, PH.EUR.10.ED (BHN BAKU SUPLEMEN) COA 3089772-1",28332500 +What is the hs code for PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PI18050006,29341000 +"What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 19460820,19850820,19900820...",29359000 +What is the hs code for EMPTY DRUM (DRUM KOSONG) FREEOF COST NO COMMERCIAL VALUE,48192000 +"What is the hs code for GRANULAC 200, 25KG BAG (BHN BAKU OBAT) COA. LC020-20-801",17021100 +What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA 179850,28399000 +What is the hs code for LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU OBAT) COA 03/19GL4,28399000 +"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 03/19GL4,SAMPLE NO COMM VALUE",28399000 +What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA.0000072152,29309090 +What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH634360,39061090 +What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH634353,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH634351,38249999 +What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH634366,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH634363,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH634370,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH634371,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH634371,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH634363,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH634365,38249999 +What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH634350,39061090 +What is the hs code for OPADRY GREEN (BHN BAKU PEWARNA TABLET) COA SH633938,38249999 +What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH633891,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH631635,39061090 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH633917,38249999 +What is the hs code for PIGMENT BLEND GREEN (BHN BAKU PEWARNA TABLET) COA SH633934,32151900 +What is the hs code for OPADRY RED (BHN BAKU PEWARNA TABLET) COA SH633916,38249999 +What is the hs code for OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH633959,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH633283,38249999 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH633940,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH633941,38249999 +What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 202000277,28183000 +What is the hs code for ALLOPURINOL USP (BHN BAKU OBAT) COA 20024AY3ARII,29335990 +"What is the hs code for FEED LP20 (PAKAN IKAN BERBENTUK SERBUK) COA 2019.07.06-1,SAMPLE NO COMMERCIAL VALUE",23099090 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP20073160/XP20074900, XP20073161/XP20074901",29211900 +What is the hs code for STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN541939,35051010 +What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX2008014,29181400 +What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0047660,38249999 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0034836,38210090 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0091369,38210090 +What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0202716,38210090 +What is the hs code for BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0191004,38210090 +What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0191035,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0196373,38210090 +What is the hs code for BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0202780,38210090 +"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9239322",38210090 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0065878,38210090 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309312,38210090 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0042333,38210090 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048064,38210090 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048055,38210090 +"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0062582",38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065756,38210090 +What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037535,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0135906,38210090 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9353100,38210090 +What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065975,38210090 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161680,38210090 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0147111,38210090 +"What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161545,9364856",38210090 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0182725,38210090 +What is the hs code for BOTTLE EOSIN METHYLENE BLUE AG HHT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0161742,38210090 +What is the hs code for BOTTLE PHENOL RED BROTH BASE BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0035735,38210090 +What is the hs code for BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9129926,38210090 +"What is the hs code for BOTTLE CSIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0217191",38210090 +What is the hs code for BOTTLE MICRO INOCULUM BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8311696,38210090 +What is the hs code for BOTTLE MARINE AGAR 2216 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0202716,38210090 +What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9028828,38210090 +What is the hs code for BOTTLE RHAMNOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0182029,38210090 +What is the hs code for BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0191004,38210090 +What is the hs code for BOTTLE UNIVERSAL PREENRICHMENT BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0161260,38210090 +What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0043912,38210090 +What is the hs code for BOTTLE NITRATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9148558,38210090 +What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364959,38210090 +What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0191035,38210090 +What is the hs code for BOTTLE M-HPC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9364008,38210090 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0085263,38210090 +What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B03C218M,38210090 +What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0097399,38210090 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0147111,38210090 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0048055,38210090 +What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0155534,38210090 +"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH0125281,0154856",38210090 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0013180,38210090 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0079962,38210090 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9364856,38210090 +"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9318604,9364864",38210090 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0091369,38210090 +"What is the hs code for BOTTLE BACTO AGAR 454G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH0008968,9294153,9309161,...",38210090 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0133426,38210090 +What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239322,38210090 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065878,38210090 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309312,38210090 +"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0042333,0174577",38210090 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048032,38210090 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048064,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364958,38210090 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 0048055,38210090 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0126889,38210090 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048007,38210090 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 00625828206968,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0133432,38210090 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0083370,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065756,38210090 +"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037535,0175236",38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0135906,38210090 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9353100,38210090 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0009096,38210090 +What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065975,38210090 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161680,38210090 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0013247,38210090 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0147207,38210090 +What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0153761,38210090 +"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0147111,0161496",38210090 +What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142723,38210090 +What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0062561,38210090 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000293, 122000294",28363000 +"What is the hs code for PHARMABRUST (R) C1 (BHN BAKU OBAT), COA 122000263",21069099 +What is the hs code for BACTO PROTEOSE PEPTONE 500G EA (MEDIA PENGEMBANGKAN MIKROORGANISME) BATCH 191029008,38210090 +What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0143491,38210090 +What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B02C111M,38210090 +What is the hs code for COPPER SULPHATE PENTAHYDRATE (BHN BAKU PAKAN TERNAK) COA N93,28332500 +"What is the hs code for PREMIX BALITA (BHN BAKU MAKANAN) COA XW92008068,8069,8070",21069059 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02004002,29362800 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519062,29362200 +"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0220040016",29420000 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519062,29362200 +"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU MAKANAN) COA XW92007272, XW92007273",21069059 +"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN, COA WB00619043, WB00619044",29362300 +What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW92008140,21069059 +What is the hs code for FERROUS FUMARATE EP/USP/FCC (BHN BAKU OBAT) COA.2020/190,29171900 +What is the hs code for OSELTAMIVIR PHOSPHATE - USP (BHN BAKU OBAT) COA MBAS20015A,29242990 +What is the hs code for VIT A PALM 1.0 M+ VIT.D3 100'000 (BHN BAKU MAKANAN) COA UT20070095,29362100 +What is the hs code for VIT A PALM 1.0 M + VIT.D3 100'000 (BHN BAKU MAKANAN) COA UT20070096,29362100 +What is the hs code for MECOBALAMINE JP (BHN BAKU OBAT) COA SLL/MC/0320024,29362600 +What is the hs code for ULTALUX FF 25KG BAG (BHN BAKU KOSMETIK) COA D042031671,38249999 +What is the hs code for CHONDROITIN SULPHATE SODIUM (BHN BAKU OBAT) COA HS2008112,29362900 +"What is the hs code for VC ASCORBIC ACID DC 97PCT, 25KG BAL (BHN BAKU MAKANAN) COA HPG2007010, HPG2007012",29362700 +What is the hs code for NORIT SX SUPER E 153 (BHN BAKU KOSMETIK) COA 4672350,38021000 +What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG200807,29362700 +"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC165 20 T",27101990 +What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWER CATCOL C 135 (L) GRADE (BHN BAKU KOSMETIK) COA 430/20,38249999 +"What is the hs code for VC CALCIUM ASCORBATE DC, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPT2007003",29362700 +What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN ) COA MTP17720,28363000 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA RBA2432000,28363000 +What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX2008028,29181400 +"What is the hs code for FERRIC PYROPHOSPHATE,APPROX 25PCT FE (BHN BAKU MAKANAN) COA 3081937",28353990 +"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0097374",38210090 +What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0162727,38210090 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0044798,38210090 +What is the hs code for VIAL SAL H ANTIS POLY 3ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037326,38210090 +"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0052572",38210090 +"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0041756,0041768",38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273671,38210090 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0052572,38210090 +What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0163058,38210090 +What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0037326,38210090 +"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0041768",38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065943,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065943,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065943,38210090 +What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0154553,38210090 +What is the hs code for VIAL E COIL H ANTISERUM H7 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0044768,38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037338,38210090 +What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0162999,38210090 +What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0196591,38210090 +"What is the hs code for MONOCALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA 20200824216,2215,8216...",28352600 +What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL ...(BHN BAKU PEWARNA TABLET)COA D180J9I001,39123900 +What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180K36003,39123900 +What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D180JCF001,39123900 +What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D180J9E003,39123900 +What is the hs code for AEROSIL(R) R 972 (BHN BAKU KOSMETIK) COA 150041223,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH635209,38249999 +What is the hs code for PHARMACEUTICAL CASTOR OIL E.P (BHN BAKU KOSMETIK) COA 0000033504,38249999 +What is the hs code for BAYPURE CX 100 SOLID G !25K BAG (BHN BAKU KOSMETIK) COA CHASMX0020,38249999 +What is the hs code for METHISOPRINOL (BHN BAKU OBAT) COA MTP0070320,29349990 +What is the hs code for AMLODIPINE BESYLATE BP/EP (BHN BAKU OBAT) COA AMB/130/06/20,29333990 +"What is the hs code for MAPROTILINE HCL (BHN BAKU OBAT) COA 1950002228, 1950003172",29214900 +What is the hs code for 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 072219/006111,38249999 +What is the hs code for BULK DRUG CETYL PYRIDINIUM CHLORIDE EP (BHN BAKU OBAT) COA 320CAB0001,29333990 +What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA 8MT2008154,30032000 +What is the hs code for ADSORB AFLA (BHN BAKU UNTUK PAKAN TERNAK) COA 159,25081000 +What is the hs code for THE MATCHA I P001602 (BHN BAKU KOSMETIK) COA 0000040123,33029000 +What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK COA LB250620,39123900 +"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB120620",39123900 +"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG120620",39123900 +"What is the hs code for LIGHT GREEN GLOBEADS L (70-120)BHN BAKU KOSMETIK, COA LG190120",39123900 +What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 200815,33012920 +What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 200618,13021950 +What is the hs code for MAGNESIUM CHLORIDE 6-HYDRATE (BHN BAKU OBAT) COA 3054789,28273100 +What is the hs code for GRANULAC (R) 70 (BHN BAKU OBAT) COA L101841520,17021100 +What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104312620,17021100 +What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L10386220,17021100 +What is the hs code for FLOWLAC (R) 100 H (BHN BAKU OBAT) COA L105810520,17021100 +What is the hs code for OPADRY SGR RED (BHN BAKU PEWARNA OBAT) COA GA678155,38249999 +What is the hs code for METHOCEL E5 PREMIUM LV HYDROXYPROPYL ...(BHN BAKU PEWARNA TABLET)COA D011K3KL02,39123900 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0212530,38210090 +What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0183232,38210090 +"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC100EA(MEDIA U/ PENGEMBANGAN MIKROORGANISME) BATCH0183229,0212530",38210090 +What is the hs code for SK BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK)COA AACN-011310,38249999 +What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK)COA BAG-010340,38249999 +What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-021920,38249999 +What is the hs code for DIFCO BEEF EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0091832,38210090 +What is the hs code for BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0063490,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0057337,38210090 +"What is the hs code for BACTO PEPTONE 500G EA (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0112242, SAMPLE NO COMM VALUE",38210090 +"What is the hs code for PEPTONE STARTER PAK ...(MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH191029008,SAMPLE NO COMM VALUE",38210090 +"What is the hs code for BACTO CASAMINO ACIDS...(MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 00668822,SAMPLE NO COMM VALUE",38210090 +What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113459,29339990 +What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113443,29339990 +"What is the hs code for CEFADROXIL MONOHYDRATE POWDER (PURIDROX POWDER) BHN BAKU OBAT, COA B340200,B340201,B340202",29419000 +"What is the hs code for NIACINAMIDE USP (BHN BAKU KOSMETIK) COA 20-21/NMD(P)/00178,180,181,182,184",29362900 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB20010231,29362800 +"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 2008EF9812",29224900 +What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK)COA 7766017,38249999 +What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) COA 7766018,38249999 +What is the hs code for GELUCIRE 48/16 PELLETS (BHN BAKU OBAT) COA 178335,28399000 +What is the hs code for COMPRITOL 888 ATO (BHN BAKU OBAT) COA 181287,28399000 +What is the hs code for GELOIL SC (BAHAN BAKU OBAT) COA 176526,28399000 +What is the hs code for LABRAFIL M 1944 CS (BAHAN BAKU OBAT) COA 181071,28399000 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB20010231,29362800 +What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX2008028,29181400 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200903,17029019 +"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED GRADE P) BHN BAKU OBAT,COA M597261,M597382",29411019 +"What is the hs code for RANITIDINE HCL USP (BHN BAKU OBAT)COA. RH0470 08 20, RH471 08 20,RH482 08 20",29321900 +"What is the hs code for GELATINE 200/08 ...(BAHAN BAKU OBAT ), COA 5132008200",35030049 +What is the hs code for TABCOAT TC WHITE (BHN BAKU PEWARNA TABLET) COA GA676921,32151900 +What is the hs code for OPADRY SGR TRANSLUCENT (BHN BAKU PEWARNA TABLET) COA GA676922,38249999 +What is the hs code for OPADRY SGR CLEAR (BHN BAKU PEWARNA TABLET) COA GA676923,38249999 +What is the hs code for OPADRY SGR RED (BHN BAKU PEWARNA TABLET) COA GA676939,38249999 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP20084555, XP20084556",29211900 +What is the hs code for CHONDROITIN SULPHATE SODIUM (BHN BAKU OBAT) COA HS2009082,29362900 +"What is the hs code for SERASENSE SF CM5 (BAHAN BAKU KOSMETIK) COA PA00807039,PA00807041, PA00807047",29319049 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH634837,38249999 +What is the hs code for OPADRY AMB II PURPLE (BHN BAKU PEWARNA TABLET) COA SH634844,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH632409,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH632784,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH633089,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH632249,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH633282,38249999 +What is the hs code for OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH634842,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH634841,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH634838,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH634845,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH634846,38249999 +What is the hs code for OPADRY AMB II GREEN (BHN BAKU PEWARNA TABLET) COA SH634853,38249999 +What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH634871,38249999 +What is the hs code for SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA L202009-016,21069059 +What is the hs code for DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2008002,28352510 +What is the hs code for CORN PO4 25KG (BHN BAKU KOSMETIK) COA 0213,35051010 +"What is the hs code for FERROUS SULFATE,DRIED, POWDER ,USP43 (BHN BAKU OBAT) COA 3086986",28332920 +"What is the hs code for ZINC SULFATE 7-HYDRATE, CRYST., PH EUR.10 ED (BHN BAKU OBAT) COA 3079708",28332920 +What is the hs code for TRIPOTASSIUM CITRATE 1-HYDRATE (BHN BAKU OBAT) COA3090583,29181400 +"What is the hs code for MAGNESIUM OXIDE, LIGHT, POWDER, BP 2020 (BHN BAKU OBAT) COA 1104435",25199010 +What is the hs code for TRICALCIUM CITRATE 4-HYDRATE (BHN BAKU OBAT) COA 3089630,29181400 +"What is the hs code for ZINC SULFATE 1-HYDRATE, POWDER,USP 43 (BHN BAKU OBAT) COA 3087771-2",28332920 +What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH635815,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH635813,38249999 +What is the hs code for OPADRY AMB GREY ( BHN BAKU PEWARNA TABLET) COA SH635812,38249999 +What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000294,28363000 +What is the hs code for OPALUX MAROON (BHN BAKU PEWARNA OBAT) COA DT706927,32151900 +What is the hs code for MECOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/0720033,29362600 +What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 11092020,25081000 +What is the hs code for OPADRY SGR TRANSLUCENT (BHN BAKU PEWARNA OBAT) COA GA678566,38249999 +What is the hs code for OPADRY SGR CLEAR (BHN BAKU PEWARNA TABLET) COA GA678568,38249999 +What is the hs code for OPADRY SGR WHITE (BHN BAKU PEWARNA TABLET) COA GA678567,38249999 +"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0220040016",29420000 +"What is the hs code for DL-PANTHENOL 50L ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01908638",29362400 +"What is the hs code for DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01908640",29362400 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT20070164,29362800 +"What is the hs code for STAY-C (R) 50,20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02002008,UE02002009",29362700 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20010006,29362900 +What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1907101,29362300 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519063,29362200 +"What is the hs code for CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB20030026",29362700 +"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02008792",29362400 +What is the hs code for ESOMEPRAZOLE PELLETS 22.5PCT (BHN BAKU OBAT) COA EO01820C022,30039000 +"What is the hs code for VITAMIN PREMIX FOR BISCUIT (BHN BAKU MAKANAN), COA XW92009129",21069059 +"What is the hs code for PANTOPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT, COA APSS19005",29333990 +"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT), COA ASG/07/310720, ASG/08/020820,ASG/08/030820",29420000 +"What is the hs code for SODIUM STARCH GLYCOLATE BP (BHN BAKU OBAT) COA ASGP/08/210820,ASGP/08/220820,ASGP/08/230820...",29420000 +What is the hs code for PHENYTOIN SODIUM (BHN BAKU OBAT) COA 20100268,29332100 +What is the hs code for RUGENER DREIKRONEN HEILKREIDE 25K (BHN BAKU KOSMETIK) COA 5032025280,25090000 +What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU PEWARNA TABLET) COA WP824132,32151900 +What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT ...(BHN BAKU PEWARNA TABLET) COA WP824133,32151900 +What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW ... (BHN BAKU PEWARNA TABLET) COA WP830186,32151900 +What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU PEWARNA TABLET) COA WP831125,32151900 +What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL ...(BHN BAKU PEWARNA TABLET) COA WP822802,32151900 +What is the hs code for GRANULAC (R) 70 (BHN BAKU OBAT) COA L101841520,17021100 +What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104312620,17021100 +What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L10386220,17021100 +What is the hs code for FLOWLAC (R) 100 H (BHN BAKU OBAT) COA L105810520,17021100 +"What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN), COA XW92009194",21069059 +"What is the hs code for L-GLUTAMIC ACID (FCC GRADE) PURITY 99PCT UP (BHN BAKU MAKANAN), COA 1000056342/200820",29224900 +What is the hs code for PROTIBOND TG-AK (BAHAN BAKU MAKANAN) COA AK20081709,21069059 +"What is the hs code for DEXCHLORPHENIRAMINE MALEATE USP (BHN BAKU OBAT) COA SLL/DC/0820022,0920023/0920024",29333910 +What is the hs code for DEXCHLORPHENIRAMINE MALEATE USP (BHN BAKU OBAT) COA SLL/DC/0420008,29333910 +What is the hs code for CELECOXIB USP (BHN BAKU OBAT) COA CLX/016/08/20,29359000 +"What is the hs code for AMPICILLIN TRIHYDRATE (PURICILLIN COMPACTED) BHN BAKU OBAT,COA B842860,M842868,M842869,M842870",29411020 +What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 20290029,30039000 +What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 20290029,30039000 +What is the hs code for KANEKA Q10 UBIDECARENONE 5KG JP (BHN BAKU KOSMETIK) COA FA01-4306,39139090 +What is the hs code for EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300046,13021950 +"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC 207 20 T",27101990 +"What is the hs code for ACRYPOL 980 (20KG) BAHAN BAKU KOSMETIK, COA 11520049, 11520050,11520051",39069099 +What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2008341796,29362600 +What is the hs code for CYANOCOBALAMINE VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2008341796,29362600 +"What is the hs code for ABSORAGE ( BHN BAKU KOSMETIK), COA 200264",13021990 +What is the hs code for MANDARIN CLEAR (BHN BAKU KOSMETIK) COA 200700,13021990 +What is the hs code for COMFREY LIQUID B (BHN BAKU KOSMETIK) COA 201261,13021990 +"What is the hs code for IZAYOI (BHN BAKU KOSMETIK), COA 193027",13021990 +"What is the hs code for PHYTO COLLAGE B(N) BHN BAKU KOSMETIK, COA 200610",13021990 +"What is the hs code for CLAIRJU (BHN BAKU KOSMETIK),COA 200963",13021990 +"What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK),COA 200719",13021990 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAC-CO200101,38249999 +What is the hs code for SEABUCKTHORN HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HIR200101-B,38249999 +What is the hs code for POMEGRANATE OF ACORES HYDROGLYCERINED EXTRACT (BHN BAKU KOSMETIK) COA PUGA200603-GL,38249999 +"What is the hs code for ROSE OILY EXTRACT (BHN BAKU KOSMETIK), COA ROS200402-H",38249999 +What is the hs code for LIQUORICE ORGANIC OILY EXTRACT (BHN BAKU KOSMETIK) COA GLGT200901-HBIO,38249999 +What is the hs code for AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 154736,15159011 +"What is the hs code for VIT MINERAL PREMIX FOR MATERNAL BISCUIT (BHN BAKU MAKANAN), COA XW92009299",21069059 +"What is the hs code for VIT MINERAL PREMIX FOR MATERNAL BISCUIT (BHN BAKU MAKANAN), COA XW92009297",21069059 +"What is the hs code for VIT MINERAL PREMIX FOR MATERNAL BISCUIT (BHN BAKU MAKANAN), COA XW92009298",21069059 +"What is the hs code for SAMPLE ASCORBIC ACID (BHN BAKU KOSMETIK) COA TL02001622,SAMPLE NO COMM VALUE",29362700 +What is the hs code for REFINED SUNFLOWER OIL (BHN BAKU KOSMETIK) COA 0002228405,38249999 +What is the hs code for CETRIMIDE POWDER (BHN BAKU KOSMETIK) COA 320CAA0017,38249999 +"What is the hs code for CATECHINS TEAVIGO 1KG (BHN BAKU SUPLEMEN KESEHATAN), COA 007081",38249999 +What is the hs code for CATECHINS TEAVIGO 1KG (BHN BAKU SUPLEMEN KESEHATAN) COA 007081,38249999 +What is the hs code for CATECHINS TEAVIGO 1KG (BHN BAKU SUPLEMEN KESEHATAN) COA 007081,38249999 +"What is the hs code for INSTANT TEA POWDER (TEA EXTRACT) BHN BAKU MAKANAN, COA 912282",9022010 +What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB20090730,29362800 +What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB20070267,29362100 +What is the hs code for MOXIFLOXACIN HYDROCHLORIDE USP (INJECTABLE GRADE) (BHN BAKU OBAT) COA MOX/10070006,29334990 +What is the hs code for METRONIDAZOLE EP INJECTABLE (BHN BAKU OBAT) COA MTZ/0060815,29332900 +What is the hs code for METRONIDAZOLE BP (BHN BAKU OBAT) COA MTZ/0060926,29332900 +What is the hs code for BUDESONIDE MICRONIZED (BHN BAKU OBAT) COA NA2270M,29372900 +What is the hs code for CYPROTERONE ACETATE MICRONIZED (BHN BAKU OBAT) COA NA2678M,29372900 +What is the hs code for MOMETAZONE FUROATE MICRONIZED (BHN BAKU OBAT) COA NA2603M,29372200 +What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NA2219M,29372200 +What is the hs code for MELOXICAM USP (BHN BAKU OBAT) COA HMXCPN002,29341000 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP20094098, XP20094099",29211900 +What is the hs code for METRONIDAZOLE BENZOATE (PSD:100PCT<30UM) (BHN BAKU OBAT) COA MBO/10090439,29332900 +What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-003-X,38249999 +"What is the hs code for GRANULAC 200, 25KG BAG (BHN BAKU OBAT) COA. LC020-20-801",17021100 +What is the hs code for MOMETASONE FUROATE USP 41 MICRONISED (BHN BAKU OBAT) COA APL/01225/I-20,29372200 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0219510,38210090 +What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 20290034,30039000 +What is the hs code for COPPER SULPHATE PENTAHYDRATE (BHN BAKU PAKAN TERNAK) COA N95,28332500 +"What is the hs code for GRANULAC 200, 25KG BAG (BHN BAKU OBAT) COA. LC020-20-801",17021100 +What is the hs code for M 1555 N 900/980 76 (BHN BAKU KOSMETIK) COA 267905,56039300 +What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX2008028,29181400 +What is the hs code for PROMOIS SILK-1000 (BHN BAKU KOSMETIK) COA FFN,38249999 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA FEB,38249999 +What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02005654,29362700 +"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0320050466, SAMPLE NO COMM VALUE",29420000 +"What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS3950120, SAMPLE NO COMM VALUE",29420000 +"What is the hs code for VIT A PALM 1.0 MIU/G (TOCO) BHN BAKU KOSMETIK,COA UT20020192, SAMPLE NO COMM VALUE",29362100 +"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000190658, SAMPLE NO COMM VALUE",29362900 +"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0519030064, SAMPLE NO COMM VALUE",29420000 +"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0919040013, SAMPLE NO COMM VALUE",29420000 +What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PDJ0003 SAMPLE NO COMM VALUE,29420000 +What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA P-66,29397900 +What is the hs code for ASCORBIC ACID 90PCT GRANULATION (BHN BAKU SUPLEMEN) COA WB20089035,29362700 +What is the hs code for GINKGO LEAVES EXTRACT (BHN BAKU KOSMETIK) COA 20080521,13021990 +"What is the hs code for EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300045, 10300046",13021950 +What is the hs code for D&C GREEN NO.5 C.I.61570 FDA CERTIFIED (BHN BAKU KOSMETIK) COA 10300034,13021950 +What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK)COA CHP1200331,38249999 +What is the hs code for SK BIOLAND GREEN TEA SEED OIL (BHN BAKU KOSMETIK)COA CSSO-053029,38249999 +What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 100720,38249999 +What is the hs code for SK BIOLAND MARIGOLD EXTRACT (BHN BAKU KOSMETIK) COA MGA-012440,38249999 +What is the hs code for SK BIOLAND PF CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK)COA PSSBD-012329,38249999 +What is the hs code for SK BIOLAND BIOCTP-500 (BHN BAKU KOSMETIK) COA BOPN-010560,38249999 +What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-040270,38249999 +"What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) HMVBD-010430,HMVBD-020700",38249999 +What is the hs code for SK BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-052829,38249999 +What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWER FORM CATCOL C 135(L) GRADE(B.BAKU KOSMETIK) COA 432/20,38249999 +What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 200817,13021950 +What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 200618,13021950 +What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 200815,33012920 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP20094872, XP20094873",29211900 +What is the hs code for TRAMADOL HCL (BHN BAKU OBAT) COA. TH/3/19031/00E,29225090 +"What is the hs code for 1,3-BUTYLENE GLYCOL, COSMETIC QUALITY(BHN BAKU KOSMETIK) COA P0620611BC",29053200 +What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN ) COA MTP19320,28363000 +"What is the hs code for BICAR PHARMA EXC 27/50 SODIUM BICARBONATE(B.BAKU SUPLEMEN) COA MTP25220,SAMPLE NO COMM VALUE",28363000 +"What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (B. BAKU SUPLEMEN) COA MTP25820,SAMPLE NO COMM VALUE",28363000 +What is the hs code for LIDOCAINE HCL (BHN BAKU OBAT) COA 194898,29242990 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101853320,17021100 +What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0196591,38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0128385,38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0114639,38210090 +What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0190820,38210090 +"What is the hs code for BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0238363",38210090 +What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0226672,38210090 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0044798,38210090 +What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0037326,38210090 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0105016,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0209866,38210090 +"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0065943",38210090 +"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0120395,0212663",38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0097374,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065943,38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037338,38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0114639,38210090 +What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0162999,38210090 +What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065855,38210090 +What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9295972,38210090 +What is the hs code for BOTTLE B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0119320,38210090 +What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0121592,38210090 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0052572,38210090 +What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0155534,38210090 +What is the hs code for BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0202780,38210090 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0237752,38210090 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0182725,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364958,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0133432,38210090 +What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0155534,38210090 +"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0154856",38210090 +What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0097116,38210090 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0013180,38210090 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0132738,38210090 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364856,38210090 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0161953,38210090 +"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0008968,0063472",38210090 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 00973500,38210090 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0132265,38210090 +What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239322,38210090 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065878,38210090 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9309312,38210090 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0174577,38210090 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0048055,38210090 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0048007,38210090 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0083370,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0135906,38210090 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9353100,38210090 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0009096,38210090 +"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0065975",38210090 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161680,38210090 +What is the hs code for BOTTLE XLD AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0013247,38210090 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0147207,38210090 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0161496,38210090 +What is the hs code for BOTTLE TREHALOSE 10G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0237315,38210090 +What is the hs code for KIT UNIVERSAL VIRAL TRANSPORT STD SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 201988000,38210090 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0154856,38210090 +What is the hs code for BOTTLE LEVINE EMB AGAR BBL500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 00971116,38210090 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0013180,38210090 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0132738,38210090 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9364856,38210090 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0161953,38210090 +"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0063472,0183095",38210090 +What is the hs code for BOTTLE DEXTROSE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0002860,38210090 +What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0119308,38210090 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0097350,38210090 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0132265,38210090 +What is the hs code for BOTTLE R2A AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239322,38210090 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065878,38210090 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309312,38210090 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0174577,38210090 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048032,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364958,38210090 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0048055,38210090 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0162119,38210090 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0048007,38210090 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0147211,38210090 +What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364969,38210090 +What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9310881,38210090 +What is the hs code for BOTTLE LB BROTH MILLER 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0083370,38210090 +What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0175236,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0135906,38210090 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 9353100,38210090 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0009096,38210090 +What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065975,38210090 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161680,38210090 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0013247,38210090 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0147207,38210090 +What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0183103,38210090 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0161496,38210090 +What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065896,38210090 +What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0062561,38210090 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0182049,38210090 +What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9028828,38210090 +What is the hs code for BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9015557,38210090 +What is the hs code for LOOPS INOCULATING 10/TUBE 10 MICROLITER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1917662,38210090 +What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0209766,38210090 +What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9224604,38210090 +What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9280662,38210090 +What is the hs code for BOTTLE YEAST MOLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065956,38210090 +What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8317895,38210090 +What is the hs code for CATALYST REPLACEMENT CHARGES,38210090 +What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0062561,38210090 +What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0133450,38210090 +"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER, BATCH 0120935",38210090 +"What is the hs code for SACHET GASPAK EZ CO2 CONTAINER, BATCH 0177959",38210090 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20070114,29362800 +What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE02001005,29362100 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ00310604,29362300 +What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ00309505,29362300 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00619044,29362300 +What is the hs code for DWI-BI (BHN BAKU MAKANAN) COA XW92009159,21069059 +"What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN), COA XW92009158,XW92009194",21069059 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ00303387,29362200 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ00303387,29362200 +"What is the hs code for STAY-C(R) 50, 20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02003023",29362700 +"What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF20014014",29420000 +What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES1908278,29420000 +"What is the hs code for PARSOL(R) HS, 20KG BOX (BHN BAKU KOSMETIK) COA HS0740520",29420000 +"What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF20014014",29420000 +"What is the hs code for STAY-C (R) 50, 5KG BAG ALU (BHN BAKU KOSMETIK) COA CSI8060035",29362700 +"What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0720010005",29420000 +"What is the hs code for PARSOL (R) HS, 20KG BOX (BHN BAKU KOSMETIK) COA HS0740520",29420000 +"What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01910812",29362400 +"What is the hs code for STAY-C(R) 50, 5KG BAG ALU (BHN BAKU KOSMETIK) COA CS18060035",29362700 +"What is the hs code for STAY-C(R) 50, 20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02003023, UE02003024",29362700 +What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-201006,29061300 +What is the hs code for BUTCHERBROOM DRY HYDR EX.9-11 (BHN BAKU SUPLEMEN) COA 20B0077600,13021990 +What is the hs code for PASSION FLOWER D.H.E.>4PCT (BHN BAKU SUPLEMEN) COA 20B0079600,13021990 +What is the hs code for HAWTHORN DRY HYDR. EXTR (BHN BAKU SUPLEMEN) COA 10909/M1,13021990 +What is the hs code for ALLOPURINOL USP (BHN BAKU OBAT) COA 20038AY3ARII,29335990 +What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2008462149,29362600 +What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL ...(BHN BAKU PEWARNA TABLET)COA D180JBT001,39123900 +What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D011JBPL02,39123900 +What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D180K37001,39123900 +What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH635532,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH634880,38249999 +What is the hs code for OPADRY AMB MAROON (BHN BAKU PEWARNA TABLET) COA SH635533,38249999 +What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH635542,39061090 +What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH635252,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH634727,38249999 +What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH635560,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH635556,38249999 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH635544,38249999 +What is the hs code for ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH635543,39061090 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH635545,38249999 +What is the hs code for PEG 400 (BAHAN BAKU KOSMETIK) COA.AKW0000227,39072010 +"What is the hs code for EDIBLE BOVINE GELATINE 200/400 (BAHAN BAKU OBAT), COA S19F11",35030049 +What is the hs code for CURCUMA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 20S0177305,38249999 +What is the hs code for C47-051 SUNCROMA TITANIUM DIOXIDE (BHN BAKU KOSMETIK) COA 2718150100101,38249999 +"What is the hs code for SENTRY POLYOX WSR 303 LEO NF (DOW) (BHN BAKU PEWARNA TABLET), COA D682JCNVR4",39123900 +What is the hs code for ECOGEL TM-5KG (BHN BAKU KOSMETIK) COA 2013701,38249999 +What is the hs code for HELIOGEL TM -30KG (BHN BAKU KOSMETIK) COA 2020501,38249999 +What is the hs code for SWT-7TM H-5KG (BHN BAKU KOSMETIK) COA 2021601,38249999 +What is the hs code for TYROSTAT TM 09- 1KG (BHN BAKU KOSMETIK) COA 784017970K,38249999 +What is the hs code for ROSALITY TM -1KG (BHN BAKU KOSMETIK) COA 1910701,38249999 +What is the hs code for ABYSSINE TM 657-1KG (BHN BAKU KOSMETIK) COA 702018037K,38249999 +What is the hs code for MINIPORYL TM - 1KG (BHN BAKU KOSMETIK) COA 832017967K,38249999 +What is the hs code for PROGELINE TM - 1KG (BHN BAKU KOSMETIK) COA 820058407L,38249999 +What is the hs code for EXO-T TM - 1KG (BHN BAKU KOSMETIK) COA 715017666K,38249999 +What is the hs code for OPADRY (ORANGE) (BHN BAKU PEWARNA TABLET) SAMPLE NO COMMERCIAL VALUE,38249999 +What is the hs code for OPADRY (ORANGE) (BHN BAKU PEWARNA TABLET) SAMPLE NO COMMERCIAL VALUE,38249999 +What is the hs code for OPADRY (PINK) (BHN BAKU PEWARNA TABLET),38249999 +What is the hs code for OPADRY (ORANGE) (BHN BAKU PEWARNA TABLET),38249999 +What is the hs code for FERRIC PYROPHOSPHATE APPROX 25PCT FE MICRONIZED (BHN BAKU MAKANAN) COA 3081937,28353990 +What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB20090730,29362800 +What is the hs code for OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH636395,38249999 +"What is the hs code for PARSOL 340,0,25KG SAM (BHN BAKU KOSMETIK) COA 0220040007, SAMPLE NO COMMERCIAL VALUE",29420000 +What is the hs code for CLEANBIO TM-ZINC (PROTECT) (CL0024-K18) (BAHAN BAKU KOSMETIK) COA 20ZDP,38249999 +What is the hs code for NATRIUM HYDROXID PERLEN 98/99PCT...(B.BAKU KOSMETIK) COA 202004220020,28151100 +"What is the hs code for FERROUS SULFATE,DRIED, POWDER ,USP43 (BHN BAKU OBAT) COA 3089416",28332920 +"What is the hs code for FERROUS SULFATE, DRIED, POWDER, USP43 (BHN BAKU OBAT) COA 3081610",28332920 +"What is the hs code for FERROUS FUMARATE, FINE POWDER (BHN BAKU OBAT) COA 3091248",29171900 +"What is the hs code for MAGNESIUM CARBONATE, HEAVY POWDER, PH EUR.10.ED (BHN BAKU OBAT) COA 3091086-1",28332100 +"What is the hs code for FERROUS FUMARATE, FINE POWDER (BHN BAKU OBAT) COA 3091248",29171900 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT20060984",29362100 +What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1910128,29362300 +"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOS (BHN BAKU SUPLEMEN) COA TL02008813",29362400 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT20060027,29362600 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ00703509,29362200 +"What is the hs code for CALCIUM D-PANTOTHENATE,25KG BOX (BHN BAKU SUPLEMEN) COA TL02008815",29362400 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT20060027,29362600 +"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL02008813",29362400 +"What is the hs code for DL-PANTHENOL 50L, 1000KG IBC (BHN BAKU SUPLEMEN) COA TL02009639",29362400 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT20080045,29362600 +"What is the hs code for ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ00316045 S/D 49",29362700 +What is the hs code for IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S328/20,38029090 +What is the hs code for CIPROFLOXACIN LACTATE INJECTABLE GRADE (BHN BAKU OBAT) COA TURTLE/CL/201001,29335990 +What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2008462149,29362600 +"What is the hs code for AMLODIPINE BESYLATE (BHN BAKU OBAT) COA 20AD167, 20AD168, 20AD201",29333990 +What is the hs code for SPIRAMYCIN (BHN BAKU OBAT) COA 20B044SP,29419000 +"What is the hs code for PARSOL 1789, 29KG BOX (BHN BAKU KOSMETIK) COA 0320050929 S/D 50931,50933, 51123, 51124",29420000 +"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219120234",29420000 +"What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES1901169,ES1908277",29420000 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02004001,29362900 +"What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01906809,TL01910812",29362400 +"What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA 0519010014",29420000 +What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE02001005,29362100 +"What is the hs code for PREMIX BALITA (BHN BAKU MAKANAN) COA XW92010139, XW92010140",21069059 +"What is the hs code for PREMIX BALITA (BHN BAKU MAKANAN) COA XW92010138, XW92010140",21069059 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20090010,29362900 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20090010,29362900 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20080052,29362800 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20080052,29362800 +"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030068,WB00519063",29362200 +What is the hs code for DWI-BI (BHN BAKU MAKANAN) COA XW92009340,21069059 +"What is the hs code for NIACINAMIDE USP (NIACINAMIDE USP/EP) BHN BAKU KOSMETIK,COA 20-21/NMD(P)/00236,00237,00238,00239",29362900 +"What is the hs code for KSG-710 (16KG) BHN BAKU KOSMETIK, COA 004369",38249999 +"What is the hs code for KF-54HV (18KG) BHN BAKU KOSMETIK, COA 006039",38249999 +"What is the hs code for MINERAL IND 20 (BHN BAKU MAKANAN), COA XW92010176",21069059 +What is the hs code for SENSIVA SC 10- CN- 10KG KA (BHN BAKU KOSMETIK) COA.1543903,38249999 +What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK COA B200920,39123900 +"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB120920",39123900 +"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG120920",39123900 +"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B200920",39123900 +"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG280920",39123900 +What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0047657,38249999 +What is the hs code for NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 19LNC0925SQ626,27101990 +What is the hs code for NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 19LNC0923SQ625,27101990 +"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 020320,030320,040320,050320",38029090 +"What is the hs code for NONIVAMIDE (SYNTHETIC CAPSAICIN) BHN BAKU KOSMETIK, COA.2020060",29241990 +What is the hs code for ROSUVASTATIN CALCIUM (BHN BAKU OBAT) COA RVM1870720,29359000 +What is the hs code for PREDNISONE USP42 (BHN BAKU OBAT) COA NED201014,29372100 +What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA ND190702,29372200 +What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.20100620,29391900 +What is the hs code for FERROUS FUMARATE EP/USP/FCC (BHN BAKU OBAT) COA.2020/248,29171900 +"What is the hs code for PHARMACEUTICAL BOVINE GELATINE 150/08 ...(BAHAN BAKU OBAT ), COA 5131909595",35030049 +What is the hs code for DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2010002,28352510 +"What is the hs code for VIT MINERAL PREMIX FOR MATERNAL BISCUIT (BHN BAKU MAKANAN) COA XW92009300,301,302",21069059 +"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20010002, UT20010006",32041900 +What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 76883P,38249999 +What is the hs code for CITRONENSAURE MONOHYDRAT (CAM) GRIEB 8-80 MESH E330 (BHN BAKU KOSMETIK) COA THY2003035,29181400 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA ROA286203,28363000 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN542780,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN542781,35051010 +"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 2010EF6013",29224900 +"What is the hs code for X-21-5595 (BHN BAKU KOSMETIK), COA 005137, SAMPLE NO COMMERCIAL VALUE",38249999 +What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-2101020,29334910 +What is the hs code for THE MATCHA I P001602 (BHN BAKU KOSMETIK) COA 0000043838,33029000 +"What is the hs code for MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU MAKANAN) COA TS00015449",29362500 +What is the hs code for BOTTLE UREA AGAR BASE BBL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0072659,38210090 +What is the hs code for MS INFLAMMATION CBA KIT (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0237897,38210090 +What is the hs code for VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0126154,38210090 +What is the hs code for VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 012615420,38210090 +"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0219903",38210090 +What is the hs code for VIAL N MENINGTIDIS ANTISERUM GRP A (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0226419,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0097374,38210090 +What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0162999,38210090 +"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0183095",38210090 +"What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0107757,0196557",38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364958,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0133432,38210090 +"What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0196557",38210090 +What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0002860,38210090 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0182049,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0133432,38210090 +What is the hs code for BOTTLE LACTOSE BROTH 500G(MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0268409,38210090 +What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0268409,38210090 +"What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0268409",38210090 +What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0268409,38210090 +What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0245118,38210090 +What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0161777,38210090 +What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0196448,38210090 +What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0139161,38210090 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0132265,38210090 +What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0275956,38210090 +What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065900,38210090 +What is the hs code for BOTTLE BRAIN HEART INFUSION BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0105297,38210090 +What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0202716,38210090 +What is the hs code for BOTTLE BILE SALTS NO 3 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0252448,38210090 +"What is the hs code for BOTTLE RHAMNOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0182029",38210090 +What is the hs code for BOTTLE MIL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065822,38210090 +What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0043912,38210090 +What is the hs code for BOTTLE COOKED MEAT MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0119545,38210090 +What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8317895,38210090 +What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0217336,38210090 +"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B03C098M, B05C143M",38210090 +What is the hs code for BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0048956,38210090 +What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0244008,38210090 +What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0245118,38210090 +What is the hs code for BOTTLE BILE ESCULIN AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0140280,38210090 +What is the hs code for BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9344975,38210090 +What is the hs code for BOTTLE GRAM CRYSTAL VIOLET 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0204263,38210090 +What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01C258M,38210090 +What is the hs code for DROPPER DMACA INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B04C259M,38210090 +What is the hs code for BOTTLE GRAM IODINE STABILIZED 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0204394,38210090 +What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK)COA 200701,13021990 +What is the hs code for JOJOBA OIL VIRGIN LOW ODOUR (BHN BAKU KOSMETIK) COA 154917,15159011 +What is the hs code for AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 154736,15159011 +What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK)COA NMP-L-321900,38249999 +What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK)COA NMP-L-280950,38249999 +What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 100720,38249999 +What is the hs code for SK BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-011760,38249999 +What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE POWDE (VLMW) (BHN BAKU KOSMETIK)COA CHP1200210,38249999 +What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-020700,38249999 +What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-033060,38249999 +"What is the hs code for SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-042750,GTB-053070",38249999 +What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 102920,38249999 +What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-280950,38249999 +What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE 1PCT SOLUTION (BHN BAKU KOSMETIK) COA HASC-512480,38249999 +"What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-033060,SFP-N-040270",38249999 +What is the hs code for SK BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK) COA CPG-712929,38249999 +What is the hs code for SK BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-011310,38249999 +What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 102920,38249999 +What is the hs code for SK BIOLAND COMPAREX (BHN BAKU KOSMETIK) COA COEX-022800,38249999 +"What is the hs code for GRANULAC 200, 25KG BAG (BHN BAKU OBAT) COA. LC030-20-801",17021100 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA RBA2922000,28363000 +What is the hs code for BOTTLE GRAM SAFRANIN 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0204362,38210090 +What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0143491,38210090 +What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 28092020,25081000 +"What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET), COA DT708506",32151900 +"What is the hs code for OPACODE BLACK (BHN BAKU PEWARNA TABLET), COA DT708195",32151900 +What is the hs code for OPADRY YELLOW (BHN BAKU PEWARNA TABLET) COA DT708508,38249999 +What is the hs code for SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA 200514062,38249999 +"What is the hs code for PARSOL MAX ,25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 091903008",29420000 +"What is the hs code for PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0820010204",29420000 +"What is the hs code for DRY VITAMIN A ACETATE 500AF, 20KG BOXNA (BHN BAKU SUPLEMEN) COA WB005190023",29362100 +What is the hs code for DRY VITAMIN E ACETATE 950NS (BHN BAKU SUPLEMEN) COA WB20090730,29362800 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB20090234,29362800 +What is the hs code for SENSIDIN DO-C08- 10KG KA (BHN BAKU KOSMETIK) COA 1554688,38249999 +What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH636518,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH635914,38249999 +What is the hs code for OPADRY GREEN (BHN BAKU PEWARNA TABLET) COA SH636271,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH636268,39061090 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH636257,38249999 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH636267,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH636258,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH636279,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH636260,38249999 +What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH636269,39061090 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH636288,38249999 +What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH636259,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH636274,38249999 +What is the hs code for OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH636275,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH636282,38249999 +What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH636272,39061090 +What is the hs code for OPADRY II PURPLE (BHN BAKU PEWARNA TABLET) COA SH636276,38249999 +What is the hs code for OPADRY II BLACK (BHN BAKU PEWARNA TABLET) COA SH636270,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH636278,38249999 +What is the hs code for OPADRY 200 GREEN (BHN BAKU PEWARNA TABLET) COA SH635561,38249999 +What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA,38247900 +What is the hs code for AUSTRALIAN TEA TREE OIL-FER (BHN BAKU KOSMETIK) COA,38247900 +What is the hs code for LEMON TEA TREE OIL (BHN BAKU KOSMETIK) COA,38247900 +What is the hs code for OILESS'CITY (BHN BAKU KOSMETIK) COA,38247900 +What is the hs code for SKINECTURA TM (BHN BAKU KOSMETIK) COA,38247900 +What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA,38247900 +What is the hs code for WILDPLUM HARVEST TM AF (BHN BAKU KOSMETIK) COA,38247900 +"What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT20100007, UT20100008",29362100 +"What is the hs code for SODIUM FEREDETATE, POWDER BP2020 (BHN BAKU SUPLEMEN) COA 3089414",29224900 +What is the hs code for POTASSIUM L-ASPARTATE 0.5-HYDRATE CRYST.POWDER...(BHN BAKU SUPLEMEN) COA 3053097-2,29224900 +What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB20090730,29362800 +What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB20090730,29362800 +What is the hs code for JAGUAR C162 SGI CARDBOARD BOX 25KG (BHN BAKU KOSMETIK) COA MJAC20210A,38249999 +What is the hs code for EXTRAPONE (R) SEA EXTRACTS N (BHN BAKU KOSMETIK) COA 10300028,13021950 +What is the hs code for EXTRAPONE (R) GINSENG (BHN BAKU KOSMETIK) COA 10300038,13021950 +"What is the hs code for GELUCIRE 48/16 PELLETS (BHN BAKU KOSMETIK) COA 178335, SAMPLE NO COMMERCIAL VALUE",28399000 +"What is the hs code for SUPPOCIRE BS2X PELLETS (BAHAN BAKU OBAT) COA 18E2903, SAMPLE NO COMMERCIAL VALUE",28399000 +What is the hs code for GLIMEPIRIDE (BHN BAKU OBAT) COA H885,29359000 +"What is the hs code for BRB 1740, DRUM 190 KG ( BHN BAKU KOSMETIK) COA B077435",39100020 +What is the hs code for SWT-7TM L- 1KG (BHN BAKU KOSMETIK) COA 2028701,38249999 +What is the hs code for LECIGEL TM - 20KG (BHN BAKU KOSMETIK) COA 2028201,38249999 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20201019,17029019 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA FEB,38249999 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA FJE,38249999 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0265643,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0265643,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0265643,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0265643,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0265643,38210090 +What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0175364,38210090 +What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2248533,38210090 +What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2248533,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2195717,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2195717,38210090 +What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0003496,38210090 +What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0022270,38210090 +What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0022270,38210090 +What is the hs code for BACTO PROTEOSE PEPTONE NO.3 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0002346,38210090 +What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9296104,38210090 +What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0175364,38210090 +What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0175364,38210090 +What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2248533,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2195717,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2195717,38210090 +What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0003496,38210090 +What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0022270,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0265643,38210090 +What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9121860,38210090 +What is the hs code for VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92010171,21069059 +What is the hs code for MINERAL PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92010172,21069059 +"What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT20100008, UT20100009",29362100 +"What is the hs code for CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 20201027",38249999 +What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA 8MT2010125,30032000 +"What is the hs code for FERROUS GLUCONATE, POWDER ,USP43 (BHN BAKU OBAT) COA 3091310",29181600 +What is the hs code for TRICALCIUM CITRATE 4-HYDRATE DC 100 (BHN BAKU OBAT) COA 3060551,29181590 +What is the hs code for OLIO VINACCIOLI RAFFINATO (BHN BAKU KOSMETIK) COA.B200045,15152919 +"What is the hs code for FENTACARE 2231 EF (BHN BAKU KOSMETIK )COA ZH20J2407, ZH20J2604",34029019 +What is the hs code for AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 154963,15159011 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0232102,38210090 +What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0261272,38210090 +What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB20090730,29362800 +"What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB20070267, WB20070268",29362100 +What is the hs code for FERRIC PYROPHOSPHATE APPROX 25PCT FE MICRONIZED (BHN BAKU MAKANAN) COA 3090451,28353990 +What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA DOC3002021,28363000 +What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 19102020,25081000 +"What is the hs code for FLAVOSTERONE SB ( BHN BAKU KOSMETIK), COA 201210",13021990 +What is the hs code for SPRING MINT (BHN BAKU KOSMETIK) COA 200839,13021990 +What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 193115,29329990 +"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK), COA 201146",38249999 +"What is the hs code for ACNE BUSTERS (BHN BAKU KOSMETIK), COA 201574",38249999 +"What is the hs code for ACNE BUSTERS (BHN BAKU KOSMETIK),COA 202038",38249999 +"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK),COA 200420",38249999 +What is the hs code for HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIE201002,38249999 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO200101,38249999 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO201002,38249999 +What is the hs code for LICORICE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA GLG201101-BGBIO,38249999 +What is the hs code for LOTUS OILY EXTRACT GT10 (BHN BAKU KOSMETIK) COA NEN200903-H,38249999 +What is the hs code for SEABUCKTHORN HYDROGLYCOLIC EXTRACT(BHN BAKU KOSMETIK) COA HIR201102-B,38249999 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO201001,38249999 +What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA200604,38249999 +What is the hs code for HYDROXOCOBALAMIN CHLORIDE SP (BHN BAKU OBAT) COA AAR0004,29362600 +"What is the hs code for PREMIX BALITA (BHN BAKU MAKANAN), COA XW92010057, 58,59",21069059 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS200301,38249999 +What is the hs code for SODIUM SALICYLATE BP2005 (BHN BAKU KOSMETIK)COA 202004007,29182100 +"What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0032595",29362500 +"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219120234",29420000 +"What is the hs code for DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01908640",29362400 +"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000189669",29362900 +"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000189669,0000191168,0000191169",29362900 +"What is the hs code for DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01908640",29362400 +"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219120234",29420000 +"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00649020,VE00649643,VE00649648",29420000 +"What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0032595",29362500 +"What is the hs code for PARSOL MCX ,25KG PC (BHN BAKU KOSMETIK) COA 0519010014",29420000 +"What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02002804, TL02002805",29362400 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02004001,29362900 +"What is the hs code for PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0320051127 S/D 30,32,34,35",29420000 +What is the hs code for HEXYLENE GLYCOL (BHN BAKU KOSMETIK) COA 20040086,29053900 +What is the hs code for NORIT SX SUPER E 153 (BHN BAKU KOSMETIK) COA 4978845,38021000 +What is the hs code for ASTABIO ARV-S (BHN BAKU OBAT) COA.1903231,32030010 +What is the hs code for M 1555 N 900/980 76 (BHN BAKU KOSMETIK) COA 267905,56039300 +What is the hs code for M 1555 N 900/980 76 (BHN BAKU KOSMETIK) COA 267905,56039300 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20070115,29362900 +What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE02002007,29362100 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ00310604,29362300 +"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL(BHN BAKU MAKANAN) COA UT20060156",29362800 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UE02006284,29362800 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20080055,29362800 +"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN), COA UT20080055",29362800 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE02004001,29362900 +What is the hs code for VITAMIN MINERAL PREMIX FOR CAPSULE V3 (BHN BAKU SUPLEMEN) COA XW92010174,21069059 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE ,20KG BOX (BHN BAKU SUPLEMEN) COA QZ11200811",29362500 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12007018,29362900 +"What is the hs code for D-A-TOCOPHERYL ACETATE, 20KG JUG (BHN BAKU SUPLEMEN) COA XH20200401",29362800 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) BHN BAKU MAKANAN, COA UT20050198",29362100 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20070115,29362900 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ00310606,29362300 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ00603486,29362200 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ00310606,29362300 +"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92009341, XW92009342",21069059 +What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW92010177,21069059 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ00310606,29362300 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ00603486,29362200 +What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92010180,21069059 +What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 200618,13021950 +What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 200934,13021950 +What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA 20210305,17023010 +What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 060320,38029090 +"What is the hs code for SERASENSE SF CM5 (BAHAN BAKU KOSMETIK) COA PA01116033,6035,6037",29319049 +What is the hs code for FLOWER ACIDS (BHN BAKU KOSMETIK) COA HS201002,38249999 +What is the hs code for SEABUCKTHORN HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HIR201102-B,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS200301,38249999 +What is the hs code for INCA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK) COA II201014-AI-D-BIO,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) COA EG543-200905,38249999 +What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM191201-PGH,38249999 +What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-200101,38249999 +What is the hs code for HYDROXYETHYL SALICYLATE PPC 25KG (BHN BAKU KOSMETIK) COA FG20201284,29182300 +What is the hs code for V2G (BHN BAKU KOSMETIK) COA,29362700 +What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK)COA CHP1201109,38249999 +What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK)COA 111020,38249999 +What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-020700,38249999 +What is the hs code for HYUNDAI BIOLAND COMPAREX (BHN BAKU KOSMETIK) COA COEX-022800,38249999 +What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK)COA SFP-N-050600,38249999 +What is the hs code for BILBERRY (V.MYRTILLUS) ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 20S0241101,13021990 +What is the hs code for BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 20S0241102,13021990 +What is the hs code for GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 32347/M1,13021990 +What is the hs code for LIQUORICE LC (BHN BAKU KOSMETIK) COA.117231,13021950 +What is the hs code for LIQUORICE LC (BHN BAKU KOSMETIK) COA 118144,13021950 +What is the hs code for IVY DRY HYDR.EXTR.10PCT HPLC (BHN BAKU SUPLEMEN) COA 20B0099200,13021990 +What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.20100687,29391900 +"What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.20100620, 685, 687",29391900 +What is the hs code for LIPOID S 20 (BHN BAKU OBAT) COA 572000-2200135/025-048(24),29232010 +What is the hs code for PRICKLY PEAR WATER DISTILLATE (BHN BAKU KOSMETIK) COA 20110094,33019090 +What is the hs code for GLUCOSAMINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA HS2011466,29329990 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH636901,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH636588,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH636903,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH636814,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH636957,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH636959,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH636963,38249999 +What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH636956,39061090 +What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH636900,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH636919,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH636955,38249999 +What is the hs code for OPADRY FX SILVER (BHN BAKU PEWARNA TABLET) COA SH636960,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH636902,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH637005,39061090 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH637004,39061090 +What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH637032,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH635914,38249999 +What is the hs code for PIGMENT BLEND BROWN (BHN BAKU PEWARNA TABLET) COA SH636958,32151900 +What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 1936214,38249999 +What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829018363L,38249999 +What is the hs code for GREYVERSE TM (BHN BAKU KOSMETIK) COA 833018113L,38249999 +What is the hs code for ROSALITY TM (BHN BAKU KOSMETIK) COA 2012801,38249999 +What is the hs code for EXO-P TM (BHN BAKU KOSMETIK) COA 715038112L,38249999 +What is the hs code for NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 19LNC0925SQ626,27101990 +What is the hs code for NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 19LNC1008SQ637,27101990 +What is the hs code for METHOCEL E15 PREMIUM LV HYDROXYPROPYL ...(BHN BAKU PEWARNA TABLET)COA D011JBLL01,39123900 +What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D011JBPL02,39123900 +What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D180K2J002,39123900 +What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180K37002,39123900 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA FKF,38249999 +What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA FJN,38249999 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT20090106,29362800 +What is the hs code for KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 240420,25070000 +"What is the hs code for OPALUX MAROON (BHN BAKU PEWARNA TABLET), COA DT709291",32151900 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA RBA3042000,28363000 +"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK), COA 200420",38249999 +"What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK), COA 202079",13021990 +"What is the hs code for SPRINTMINT (BHN BAKU KOSMETIK) ,COA 201280",13021990 +"What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) ,COA 200719",13021990 +What is the hs code for PIPERONYL BUTOXIDE (BHN BAKU OBAT PAKAN TERNAK) COA 20201009,29329990 +What is the hs code for POVIDONE K-30 (BHN BAKU OBAT) COA PK30-200926F31,39059990 +What is the hs code for CROSPOVIDONE XL (BHN BAKU OBAT) COA PP201014XL,39059990 +What is the hs code for CAPTOPRIL (BHN BAKU OBAT) COA 5103-20-116,29339990 +What is the hs code for LEVOFLOXACIN HEMIHYDRATE (BHN BAKU OBAT) COA C008-2006307,29349990 +What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-201030,29061300 +"What is the hs code for CEFADROXIL MONOHYDRATE COMPACTED (PURIDROX COMPACTED) BHN BAKU OBAT, COA B340209",29419000 +"What is the hs code for CEFADROXIL MONOHYDRATE POWDER (PURIDROX POWDER) BHN BAKU OBAT, COA B334711",29419000 +What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19110005,29420000 +What is the hs code for 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 071320/006484,38249999 +What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA201105,38249999 +What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA201105,38249999 +"What is the hs code for VITAMIN B MIX-SPREAD (BHN BAKU MAKANAN), COA XW92011126",21069059 +"What is the hs code for ETHOCEL STANDARD 14 PREMIUM (BHN BAKU PEWARNA TABLET), COA D184K5S021",39123900 +What is the hs code for SUPPOCIRE A PELLETS (BHN BAKU OBAT) COA 20E2306,28399000 +What is the hs code for AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 154963,15159011 +What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0162999,38210090 +What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0232663,38210090 +What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0262796,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0209866,38210090 +"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0097374",38210090 +What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0108475,38210090 +What is the hs code for VIAL E COIL O ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0094884,38210090 +What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0262823,38210090 +What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01C258M,38210090 +What is the hs code for BOTTLE GRAM DECOLORIZER 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0237809,38210090 +What is the hs code for BOTTLE GRAM SAFRANIN 250ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0237818,38210090 +What is the hs code for DROPPER INDOLE (MEDIA UTK PNGEMBANGAN MIKROORGANISME) BATCH B02C309M,38210090 +"What is the hs code for BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9218592",38210090 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0287484,38210090 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0287484,38210090 +What is the hs code for TUBE CRYSTAL E/ ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0218624,38210090 +"What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0287484",38210090 +What is the hs code for BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0035732,38210090 +What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2013232,38210090 +What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0286357,38210090 +What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G(MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0007272,38210090 +What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0062865,38210090 +"What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9309193",38210090 +What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0237291,38210090 +What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0043912,38210090 +What is the hs code for BOTTLE MICRO ASSAY CULTURE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0230001,38210090 +"What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0272335,8271706",38210090 +What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0217336,38210090 +What is the hs code for GASPAK EZ LARGE INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7326630010,38210090 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B02C205M,38210090 +What is the hs code for BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0148256,38210090 +What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0133196,38210090 +What is the hs code for BOTTLE M TGE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0296293,38210090 +What is the hs code for BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065715,38210090 +"What is the hs code for BOTTLE GRAM CRYSTAL VIOLET 250ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0237798",38210090 +What is the hs code for BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0286603,38210090 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0211466,38210090 +What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0239539,38210090 +"What is the hs code for ESOMEPRAZOLE SODIUM STERILE (BAHAN BAKU OBAT), COA SI/EPZ/00051120",29333990 +What is the hs code for PANTOPRAZOLE SODIUM STERILE (BHN BAKU OBAT) COA SI/PPZ/00771120,29333990 +What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA D10231UP,29053200 +"What is the hs code for EDIBLE BOVINE GELATINE 140/20 HAL(BAHAN BAKU OBAT ), COA 5002010030,5002011077",35030049 +What is the hs code for PHARMACEUTICAL BOVINE GELATINE 200/18 (BHN BAKU OBAT) COA 5002011089,35030049 +What is the hs code for EDIBLE BOVINE GELATINE 200/400 (BHN BAKU OBAT) COA S19F11,35030049 +What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA DOC3002021,28363000 +What is the hs code for ETORICOXIB (BHN BAKU OBAT) COA ERBPC20004,29333990 +What is the hs code for MAGNESIUM CHLORIDE (BHN BAKU SUPLEMEN) COA 3054789,28273100 +"What is the hs code for METHOCEL K100 PREMIUM LVCR (BHN BAKU PEWARNA TABLET), COA D180J8C021",39123900 +What is the hs code for PHARMABURST (R) 500 (BHN BAKU OBAT) COA 122000348,21069099 +What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA T703300,29419000 +What is the hs code for GELOIL SC (BHN BAKU OBAT) COA 182444,28399000 +What is the hs code for TRANCUTOL P (BHN BAKU OBAT) COA 180617,28399000 +What is the hs code for CETYL PALMITATE PELLETSCAR (BAHAN BAKU OBAT) COA 182801,28399000 +What is the hs code for LABRAFIL M 1944 CS (BAHAN BAKU OBAT) COA 181807,28399000 +What is the hs code for GELEOL MONO AND DIGLYCERIDES NF (BHN BAKU OBAT) COA 20E2004,28399000 +What is the hs code for GELOIL SC (BHN BAKU OBAT) COA 182444,28399000 +"What is the hs code for PHARMACEUTICAL BOVINE GELATINE 150/08 ...(BAHAN BAKU OBAT ), COA 5132010428",35030049 +"What is the hs code for PHARMACEUTICAL BOVINE GELATIN 150/08...(BAHAN BAKU OBAT ), COA 5132012567",35030049 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543043,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543044,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543046,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543045,35051010 +What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL ...(BHN BAKU PEWARNA TABLET)COA D180K7V003,39123900 +What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 202000389,28183000 +"What is the hs code for BARCROFT TM AL HYD GEL VISCO 9, USP (BHN BAKU OBAT) COA 102002034",28183000 +What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M-31.0PCT (BHN BAKU OBAT) COA 102029034,28161000 +"What is the hs code for BARCROFT TM AL HYD GEL LV13, USP (BHN BAKU OBAT) COA 102013066",28183000 +What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102023014,28161000 +"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP 5300 (BHN BAKU OBAT) COA 102069008,102069010",28161000 +What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK)COA HMVBD-020700,38249999 +What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK)COA HOXB-012040,38249999 +What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 194849,29332900 +What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB20070268,29362100 +What is the hs code for ETHOCEL STANDARD 20 PREMIUM (BHN BAKU PEWARNA TABLET)COA D184K4R021,39123900 +What is the hs code for ETHOCEL STANDARD 10 PREMIUM (BHN BAKU PEWARNA TABLET) COA D184K3D021,39123900 +What is the hs code for METHOCEL E6 PREMIUM LV (BHN BAKU PEWARNA TABLET)COA D011JBPL02,39123900 +What is the hs code for METHOCEL K4M PREMIUM (BHN BAKU PEWARNA TABLET)COA D180K4R001,39123900 +What is the hs code for METHOCEL K100 PREMIUM LV (BHN BAKU PEWARNA TABLET) COA D180J78021,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR (BHN BAKU UTK PEWARNA TABLET) COA D180JCV004,39123900 +What is the hs code for METHOCEL E15 PREMIUM LV (BHN BAKU PEWARNA TABLET) COA D011K1AL02,39123900 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543004,35051010 +"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) 0219120234",29420000 +"What is the hs code for ARGAN OIL,10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0032595",29362500 +"What is the hs code for ARGAN OIL ,10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0032595",29362500 +"What is the hs code for D-PANTHENOL 75L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01909355",29362400 +"What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF20164001",29420000 +"What is the hs code for ETHYL PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02002805",29362400 +"What is the hs code for PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0820010214",29420000 +What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES1908279,29420000 +"What is the hs code for STAY-C (R) 50, 20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02003024",29362700 +"What is the hs code for PARSOL MAX, 25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0919030008",29420000 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OPI2007018,29362900 +What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE02004001,29362900 +What is the hs code for VITAMIN PREMIX 103047-D (BHN BAKU MAKANAN) COA XW92010207,21069059 +What is the hs code for VITAMIN MINERAL PREMIX FOR BISCUIT (BHN BAKU MAKANAN) COA XW92010303,21069059 +What is the hs code for VITAMIN PREMIX 103093-A (BHN BAKU MAKANAN) COA XW92010302,21069059 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT20080026,29362900 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE02004001,29362900 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12007018,29362900 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00619044,29362300 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030068,29362200 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT20060123,29362400 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20080052,29362800 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20080052,29362800 +"What is the hs code for CALCIUM ASCORBATE, 25KG BOX ALU (BHN BAKU SUPLEMEN) COA WB20100069",29362700 +"What is the hs code for CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB20100069",29362700 +What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2002019,29362300 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20080052,29362800 +What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92010227,21069059 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT20030195, UT20040196",29362100 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20070115,29362900 +"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92010233,XW92010234,XW92010235",21069059 +What is the hs code for PIPERONYL BUTOXIDE (BHN BAKU OBAT PAKAN TERNAK) COA 20201009,29329990 +"What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET), COA DT709902",32151900 +"What is the hs code for OPALUX TAN (BHN BAKU PEWARNA TABLET), COA DT709903",32151900 +What is the hs code for OPACODE BLACK (BHN BAKU PEWARNA TABLET) COA DT709904,32151900 +What is the hs code for ORANGE FRUITOGREEN HG (BHN BAKU KOSMETIK)COA CAF200101,38249999 +What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) COA OLVH201104-ENBIO,38249999 +What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2008642675,29362600 +What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP830190:BA3138,32151900 +What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU PEWARNA TABLET) COA WP833405:BA4812,32151900 +What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW ... (BHN BAKU PEWARNA TABLET) COA WP830190:BA3137,32151900 +What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU PEWARNA TABLET) COA WP822862:BA0316,32151900 +What is the hs code for ERYTHROSINE AL 38PCT-42PCT.(BHN BAKU PEWARNA TABLET) COA WP822178:1,32151900 +What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP833111,39059990 +What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP833112,39059990 +"What is the hs code for METHOCEL K100 PREMIUM LVCR (BHN BAKU PEWARNA TABLET), COA D180J8D022",39123900 +What is the hs code for PEONY P118 182 (BHN BAKU KOSMETIK) COA 3104218,33029000 +What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA.0000073449,29309090 +What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 00319,38029090 +"What is the hs code for CEFADROXIL MONOHYDRATE (BHN BAKU OBAT) COA Z310407,SAMPLE NO COMMERCIAL VALUE",29419000 +What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD(BHN BAKU MAKANAN) COA UT20100044,29362500 +"What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT20100044,UT20100046",29362500 +What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT20100046,29362500 +What is the hs code for DRY VITAMIN D3 100/CWS/AM (BHN BAKU MAKANAN) COA UT20080032,29362900 +"What is the hs code for ASCORBYL PALMITATE ,25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ00416054, UQ00416055",29362700 +"What is the hs code for DL-PANTHENOL 50L, 1000KG IBC (BHN BAKU KOSMETIK) COA TL02011646",29362400 +"What is the hs code for ETHYL PANTHENOL,1000KG IBC (BHN BAKU KOSMETIK) COA TL02002803",29362400 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT20090106,29362800 +"What is the hs code for MIAMI SCG(S) (BHN BAKU KOSMETIK),COA 20121255",34021190 +"What is the hs code for ZINC BISGLYCINATE POWDER,FOR THE USE IN FOOD SUPPLEMENTS (BHN BAKU SUPLEMEN) COA 3093384",29224900 +What is the hs code for CARTON BOX+ PRODUCT LABEL+OTHER (KARTON KOSONG) SAMPLE NO COMMERCIAL VALUE,48191000 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA RBA343207,28363000 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA RBA342204,28363000 +"What is the hs code for VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPD2011072",29362700 +"What is the hs code for VC ASCORBIC ACID DC 97PCT, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG2011003, HPG2011004",29362700 +"What is the hs code for ARGAN OIL ,PRESSED (BHN BAKU KOSMETIK), COA 8007068001",29362500 +What is the hs code for EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300047,13021950 +What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE USP 43 (BHN BAKU OBAT) COA APL/01215/I-20,29372200 +What is the hs code for MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HG33516,34029099 +"What is the hs code for ACRYPOL 980 (20KG) BAHAN BAKU KOSMETIK, COA 11520072, 11520073, 11520074",39069099 +What is the hs code for IMERCARE 400D S (BHN BAKU KOSMETIK) COA 2007A4-07,38029090 +What is the hs code for MANNITOL POWDER USP/EP - MANNO (BHN BAKU OBAT) COA.302011011,29054300 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA326202,28363000 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA RBA3202000,28363000 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA RBA3472000,28363000 +What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN ) COA MTP27620,28363000 +"What is the hs code for VC SODIUM ASCORBATE REGULAR,25KG BAL (BAHAN BAKU SUPLEMEN) COA HPD2011209,233,234,236,237,238",29362700 +"What is the hs code for GUAIFENESIN USP 41 (B. BAKU OBAT) COA GGE-2010192 S/D GGE-2010199, GGE-2011200 S/D 2011205",29094900 +What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-201030,29061300 +What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA 181151,28399000 +What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA 182613,28399000 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH637704,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH637717,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH637720,39061090 +What is the hs code for OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH637700,38249999 +What is the hs code for OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH637709,38249999 +What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH637702,39061090 +What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH637722,39061090 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH637729,39061090 +What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH637708,38249999 +What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH637727,38249999 +What is the hs code for ACRYL EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH637707,39061090 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH638009,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH637719,38249999 +What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH637701,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH637723,38249999 +What is the hs code for PIGMENT BLEND GREEN (BHN BAKU PEWARNA TABLET) COA SH637714,32151900 +What is the hs code for OPADRY 200 BROWN (BHN BAKU PEWARNA TABLET) COA SH637724,38249999 +What is the hs code for OPADRY EZ CLEAR (BHN BAKU PEWARNA TABLET) COA SH637705,38249999 +What is the hs code for OPADRY II BLACK (BHN BAKU PEWARNA TABLET) COA SH637728,38249999 +What is the hs code for OPADRY GREEN (BHN BAKU PEWARNA TABLET) COA SH637716,38249999 +What is the hs code for OPADRY AMB RED (BHN BAKU PEWARNA TABLET) COA SH637725,38249999 +What is the hs code for OPADRY AMB II PURPLE (BHN BAKU PEWARNA TABLET) COA SH637726,38249999 +What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH638597,39061090 +What is the hs code for OPADRY AMB II BLUE (BHN BAKU PEWARNA TABLET) COA SH637731,38249999 +What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH637706,39061090 +What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH637706,39061090 +What is the hs code for PIGMENT BLEND BROWN (BHN BAKU PEWARNA TABLET) COA SH638313,32151900 +What is the hs code for DWI-BI (BHN BAKU MAKANAN) COA XW92010224,21069059 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0320051316,317,319,320",29420000 +"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219120234",29420000 +"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000191533, 0000191813",29362900 +"What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0032595",29362500 +"What is the hs code for STAY-C(R) 50, 20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02003025",29362700 +"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92009073,,XW92009074",29420000 +"What is the hs code for PARSOL MAX, 25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0919030009",29420000 +"What is the hs code for PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0820010214",29420000 +"What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02002804, TL02002805",29362400 +"What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF20164001",29420000 +What is the hs code for OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH637976,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH638009,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH637977,38249999 +What is the hs code for OPADRY BROWN (BHN BAKU PEWARNA TABLET) COA SH637970,38249999 +What is the hs code for ACRYL -EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH638598,39061090 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH637991,38249999 +What is the hs code for OPADRY II WHITE(BHN BAKU PEWARNA TABLET) COA SH637992,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH637704,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH637972,38249999 +What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH637968,38249999 +What is the hs code for OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH637700,38249999 +What is the hs code for SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA 200601052,38249999 +"What is the hs code for 1,3-BUTYLENE GLYCOL, COSMETIC QUALITY(BHN BAKU KOSMETIK) COA P0620O01BC",29053200 +What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA201105,38249999 +What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) COA OLVH201104-ENBIO,38249999 +What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) COA OLVH201205-ENBIO,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS200301,38249999 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO201002,38249999 +What is the hs code for GARLIC EXTRACT (BHN BAKU OBAT) COA BNPGE201110C106601,13021950 +What is the hs code for METOCLOPRAMIDE HYDROCHLORIDE BP (BHN BAKU OBAT) COA M-2012411,29242990 +What is the hs code for RANITIDINE HCL USP (BHN BAKU OBAT) COA RH 769 12 20,29321900 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA MTP35320,28363000 +"What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA MTP22620,SAMPLE NO COMM VALUE",28363000 +"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (B.BAKU SUPLEMEN) COA MTP26820,SAMPLE NO COMM VALUE",28363000 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH638678,38249999 +What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH638586,39061090 +What is the hs code for OPADRY AMB ORANGE ( BHN BAKU PEWARNA TABLET) COA SH638711,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH638675,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH638677,38249999 +What is the hs code for ADSORB AFLA (BHN BAKU UNTUK PAKAN TERNAK) COA 165,25081000 +"What is the hs code for NOREPINEPHRINE BITARTRATE (NORADRENALINE TARTRATE)BHN BAKU OBAT, COA 600104",29379010 +What is the hs code for LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 03/19GL4,28399000 +"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 03/19GL4,SAMPLE NO COMM VALUE",28399000 +What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA 181151,28399000 +What is the hs code for GELEOL MONO AND DIGLYCERIDES NF (BHN BAKU OBAT) COA 20E2004,28399000 +What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK COA B021120,39123900 +"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B021120",39123900 +"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB031120",39123900 +"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB031120",39123900 +"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG281120",39123900 +What is the hs code for KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 121020,25070000 +What is the hs code for MIRASIL DM300 000 A2 (BHN BAKU KOSMETIK) COA 2050F5011D,39100090 +What is the hs code for SCHISANDRA EXTRACT ( BAHAN BAKU OBAT ) COA SCE03-20081701,13021990 +What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-200405,29397900 +"What is the hs code for ACNEBUSTERS ( BHN BAKU KOSMETIK), COA 202319",38249999 +What is the hs code for SOAPNUT EXTRACT POWDER (BHN BAKU KOSMETIK) COA 201983,13021990 +What is the hs code for SPRINGMINT (BHN BAKU KOSMETIK) COA 201280,13021990 +"What is the hs code for EMALEX GWIS-320 (BHN BAKU KOSMETIK), COA 1-1046",34021310 +"What is the hs code for EMALEX PEIS-10EX (BHN BAKU KOSMETIK), COA 2010-09",34021310 +"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK),COA 201904",13021990 +"What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK),COA 201052",13021990 +"What is the hs code for PHYTO COLLAGE B (N) BHN BAKU KOSMETIK, COA 202079",13021990 +What is the hs code for BIOBENEFITY (BHN BAKU KOSMETIK) COA 201575,13021990 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 201146,38249999 +What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 201501,13021990 +What is the hs code for BIOCELLACT CHAMOMILLA BD (BHN BAKU KOSMETIK) COA 201575,13021990 +"What is the hs code for FERRIC PYROPHOSPHATE,APPROX 25PCT FE (BHN BAKU MAKANAN) COA 3090451",28353990 +What is the hs code for MOXIFLOXACIN HCL (BHN BAKU OBAT) COA MP0081120,29334990 +What is the hs code for MOXIFLOXACIN HCL ( BHN BAKU OBAT) COA MP0070820,29334990 +What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 2012043,29349990 +What is the hs code for INOSITOL (BHN BAKU OBAT) COA 202012045 S/D 202012047,29061300 +What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG201204,29362700 +What is the hs code for SURELEASE ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA IN542674,32151900 +What is the hs code for SURELEASE ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA IN542874,32151900 +What is the hs code for SURELEASE ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA IN542778,32151900 +"What is the hs code for MANNOGEM (R) XL OPAL SPRAY DRIED MANNITOL USP/EP (BHN BAKU OBAT) COA 122000023,122000024",29054300 +What is the hs code for VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 121910046,28365010 +What is the hs code for LUBRIPHARM (R) SSF NF/EP/JP SODIUM STEARYL FUMARATE(BHN BAKU OBAT) COA 122000663,28161000 +What is the hs code for PEPPERMINT ORGANIC FROM FRANCE DISTILLATE (BHN BAKU KOSMETIK) COA MEPD201002-BIO,38249999 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO201001,38249999 +What is the hs code for HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIE201002,38249999 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO201002,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS200301,38249999 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20201119,17029019 +What is the hs code for NATURAL SOURCE MIXED TOCOPHEROLS (BHN BAKU KOSMETIK) COA 201206M001,29362800 +What is the hs code for HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 3107407,33029000 +What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 201023,13021950 +"What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 200815,200818",33012990 +What is the hs code for LIME PEARL TM AF(BHN BAKU KOSMETIK) COA 201025,13021950 +What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 200911,13021950 +What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 200625,29061900 +What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 201217,33012990 +What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA 8MT2012136,30032000 +"What is the hs code for DEXAMETHASONE BP2010/USP42 (BHN BAKU OBAT) COA NED200818,NED201005,NED200804",29372200 +What is the hs code for PREDNISONE USP42 (BHN BAKU OBA) COA NPD 200934,29372100 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA RBA3362000,28363000 +"What is the hs code for MANNOGEM (R) XL OPAL SPRAY DRIED MANNITOL...(B BAKU OBAT)COA122000023,SAMPLE NOCOMMERCIAL VALUE",29054300 +"What is the hs code for TUBE CRYSTAL E/ ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0218624",38210090 +What is the hs code for TUBE CRYSTAL INOCULUM BROTH (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0231561,38210090 +What is the hs code for BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0139933,38210090 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0308542,38210090 +What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9323677,38210090 +"What is the hs code for BOTTLE MIDDLEBROOK 7H9 BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0112178",38210090 +What is the hs code for BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0335417,38210090 +What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0097116,38210090 +What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0286434,38210090 +"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0268454,0287614..",38210090 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0282615,38210090 +What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0315052,38210090 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161680,38210090 +What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0275956,38210090 +What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065900,38210090 +What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0280297,38210090 +What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0286357,38210090 +What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0007272,38210090 +What is the hs code for BOTTLE MYCOPLASMA BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0315710,38210090 +What is the hs code for BOTTLE HEMOGLOBIN FREEZE DIED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0252083,38210090 +What is the hs code for BOTTLE CHROMAGAR CANDIDA 500GM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0238375,38210090 +What is the hs code for BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9015557,38210090 +What is the hs code for BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0265212,38210090 +What is the hs code for BOTTLE RAPPAPORT VASSILIADIS MSRV 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0063501,38210090 +What is the hs code for BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0308018,38210090 +What is the hs code for BOTTLE YEAST CARBON BASE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0038689,38210090 +What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0224851,38210090 +What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0343129,38210090 +What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0280159,38210090 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0307318,38210090 +What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0183124,38210090 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0287484,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0133432,38210090 +"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0254273,0268735",38210090 +What is the hs code for BOTTLE TREHALOSE 10G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0294315,38210090 +"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000191813,0000191537,0000191887",29362900 +"What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0032595",29362500 +"What is the hs code for DL PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01908640",29362400 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT20090030,29362100 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ00610736,29362300 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20070119,29362900 +What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030049,29362500 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT20050198",29362100 +"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030068, WB20030076",29362200 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT20060124,29362400 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20040027,32041900 +"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20080207",29362800 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20090010,29362900 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12007021,29362900 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20090010,29362900 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT20070119,29362900 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT20090030,29362100 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT20080026,29362900 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12007021,29362900 +What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL02007087,29362400 +"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ00610736, UQ00610738",29362300 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20070119,29362900 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT19100220,29362400 +What is the hs code for PHASEOLUS VULGARIS DRY EXTRACT (BHN BAKU SUPLEMEN) SAMPLE NO COMMERCIAL VALUE,13021950 +What is the hs code for LEUCOCYANIDINS (BHN BAKU SUPLEMEN) SAMPLE NO COMMERCIAL VALUE,13021950 +What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0293664,38210090 +What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0276571,38210090 +What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0277779,38210090 +What is the hs code for GLICLAZIDE (BHN BAKU OBAT) COA 2040001414,29359000 +What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2020101003,21012020 +What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-003-X,38249999 +What is the hs code for STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN542261,35051010 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000294, 122000361",28363000 +"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED GRADE A)BHN BAKU OBAT,COA M533258,M533090,M533260,...",29411019 +What is the hs code for THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000047423,33029000 +What is the hs code for THE MATCHA P112 180 (BHN BAKU OBAT) COA 0000047926,33029000 +What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-201030,29061300 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA FEB,38249999 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA FKF,38249999 +What is the hs code for AMITOSE R (BHN BAKU KOSMETIK) COA FHD,38249999 +What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA FKB,38249999 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE ,25KG BOX(BHN BAKU MAKANAN) COA TL02011164,TL02011169",29362700 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX(B. BAKU MAKANAN), COA TL02011131,11138,11142,11154,11164",29362700 +What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 201023,13021950 +"What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 200815,200818",33012990 +What is the hs code for LIME PEARL TM AF(BHN BAKU KOSMETIK) COA 201025,13021950 +What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 200911,13021950 +What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 200625,29061900 +What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 201217,33012990 +What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0049504,38249999 +What is the hs code for AC091KF FUCOGEL 1.5P 25 KG (BHN BAKU KOSMETIK) COA 0050733,38249999 +What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP833129,39059990 +What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU PEWARNA TABLET) COA WP833403: BA4808,32151900 +What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT ... (BHN BAKU PEWARNA TABLET) COA WP831854:BA3821,32151900 +What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW... (BHN BAKU PEWARNA TABLET) COA WP830532:BA3278,32151900 +What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL...(BHN BAKU PEWARNA TABLET) COA WP822863:BA0318,32151900 +What is the hs code for FD AND C RED #40/ALLURA RED AC AL... (BHN BAKU PEWARNA TABLET) COA WP835343:BA5318,32151900 +What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW... (BHN BAKU PEWARNA TABLET) COA WP830995:BA3413,32151900 +What is the hs code for VIT A PALM 1.0M+VIT.D3 100'000 (BHN BAKU MAKANAN) COA UT20110105,29362100 +"What is the hs code for FLORAGLO (R)LUTEIN 20PCT SAF, 1KG ALUF (BHN BAKU SUPLEMEN) COA UE02007035",32030010 +What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT20110052,29362100 +What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ00617016,29420000 +What is the hs code for ABYSSINE TM PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) COA 702028515I,38249999 +What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785018206L,38249999 +What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782018475L,38249999 +What is the hs code for NEUTRAZEN TM (BHN BAKU KOSMETIK) COA 828018409L,38249999 +What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784027993K,38249999 +What is the hs code for ISOFLAVONES 150 BDF - 10KG (BHN BAKU KOSMETIK) COA 9484766,38249999 +What is the hs code for PRO-LIPO TM NEO -5KG (BHN BAKU KOSMETIK) COA 2029001,38249999 +What is the hs code for LECIGEL TM -5KG (BHN BAKU KOSMETIK) COA 2032305,38249999 +What is the hs code for SUNFLOHAIR TM -5KG (BHN BAKU KOSMETIK) COA 2023577,38249999 +What is the hs code for ROSALITY TM -5KG (BHN BAKU KOSMETIK) COA 2033901,38249999 +What is the hs code for MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL201228,29094900 +What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE (MMW) (BHN BAKU KOSMETIK)COA CHP1201214,38249999 +What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK)COA BAG-010340,38249999 +"What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-032980,GSK-K-041410",38249999 +What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE 1PCT SOLUTION (BHN BAKU KOSMETIK) COA HASC-522680,38249999 +What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK)COA OHA-070910,38249999 +What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-022420,38249999 +What is the hs code for HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-321900,38249999 +What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-021380,38249999 +What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-060900,38249999 +What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-022420,38249999 +What is the hs code for HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-211980,38249999 +What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-010340,38249999 +"What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT(BHN BAKU KOSMETIK) COA GSC-K-041410,GSC-K-032980",38249999 +What is the hs code for HYUNDAI BIOLAND GREEN TEA SEED OIL (BHN BAKU KOSMETIK) COA CSSO-030640,38249999 +What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-070910,38249999 +What is the hs code for HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-461710,38249999 +What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 122220,28321000 +What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-020700,38249999 +"What is the hs code for DICLOFENAC SODIUM USP (BHN BAKU OBAT) COA DFS/10100410,DFS/10120479,DFS/10120480",29224900 +What is the hs code for CINNARIZINE (BHN BAKU OBAT) COA CIN2012183,29335990 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0265643,38210090 +What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0182358,38210090 +What is the hs code for BACTO MALT EXTRACT 500G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0035108,38210090 +What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0182358,38210090 +"What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0322536",38210090 +What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT 10X10ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0226664,38210090 +What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0275398,38210090 +What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0037326,38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037338,38210090 +"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0128385",38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0282558,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0097374,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065943,38210090 +What is the hs code for BOTTLE LETHEEN BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0280045,38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0114639,38210090 +What is the hs code for VIAL NOVOBIOCIN SUPPLEMENT 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0262841,38210090 +What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0328195,38210090 +What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0328875,38210090 +What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0259350,38210090 +What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP C (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0170321,38210090 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0300807,38210090 +What is the hs code for SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202101-002,35040000 +What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL ...(BHN BAKU PEWARNA TABLET)COA D180K36002,39123900 +What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D180K36002,39123900 +What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0049484,38249999 +"What is the hs code for COPPER SULFATE, POWDER, PH.EUR.10.ED (BHN BAKU SUPLEMEN) COA 3094288",28332500 +What is the hs code for PGLCP 102KC RSPO MB (BHN BAKU KOSMETIK) COA 201120204,34021390 +"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 110320,100320,070720,080720,090320",38029090 +"What is the hs code for KSG-210 (16KG) BHN BAKU KOSMETIK, COA 009669",38249999 +"What is the hs code for KF-6048 (16KG) BHN BAKU KOSMETIK, COA 012025",38249999 +What is the hs code for MILD TALCUM MOD1 FM2 (BHN BAKU KOSMETIK) COA 10300220,13021950 +What is the hs code for ACTIPONE (R) CAMU CAMU ET (BHN BAKU KOSMETIK) COA 10300019,13021950 +What is the hs code for PHARMAKAOLIN B 860 X (BHN BAKU KOSMETIK) COA 23.10.19,25070000 +What is the hs code for MANGANESE GLUCONATE 2-HYDRATE ( BHN BAKU MAKANAN) SAMPLE NO COMM VALUE,29181600 +"What is the hs code for COPPER SULFATE , POWDER, PH EUR 10 ED (BHN BAKU MAKANAN) SAMPLE NO COMM VALUE",28332500 +What is the hs code for TRICALCIUM CITRATE 4-HYDRATE ( BHN BAKU MAKANAN) SAMPLE NO COMM VALUE,29181590 +"What is the hs code for MEG-3 '30' N-3 INF OIL, 25KG MDR (BHN BAKU SUPLEMEN) COA TS00015753",29362500 +"What is the hs code for COPPER SULFATE, POWDER, PH.EUR.10.ED (BHN BAKU SUPLEMEN) SAMPLE NO COMM VALUE",28332500 +What is the hs code for PGLCP 102KC RSPO MB (BHN BAKU KOSMETIK) COA 201120204,34021390 +What is the hs code for FEF CETRIMIDE PH EUR (BHN BAKU KOSMETIK) COA KX0C679,38249999 +What is the hs code for KIGELINE (BHN BAKU KOSMETIK)COA KA200904-B,38249999 +What is the hs code for MANGANESE (II)-SULFATE 1-HYDRATE ( BHN BAKU OBAT) SAMPLE NO COMM VALUE,29181600 +"What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0032595",29362500 +"What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF20164001",29420000 +"What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02004001, UE02004003",29362900 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0320051320, 51321,51322",29420000 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT20060063,29362800 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02005013,29362900 +"What is the hs code for STAY-C(R) 50, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UE02002019",29362700 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE,20KG BOX (BHN BAKU MAKANAN) COA QZ11200920",29362500 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12007021,29362900 +"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00502880,UQ00502881",29362200 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12007021,29362900 +"What is the hs code for D-A-TOCOPHERYL-ACETATE, 20KG JUG (BHN BAKU SUPLEMEN) COA XH20200401",29362800 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT20070119,29362900 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT20040196,197,198",29362100 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL02008093",29362400 +What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA DOC3562021,28363000 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA RBA0012100,28363000 +What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 194924,29332900 +"What is the hs code for LIFE'S DHA (TM) S35-O300, 5KG ALUF (BHN BAKU SUPLEMEN) COA VY00382802",29362500 +"What is the hs code for CLAIR BLANCHE-II ( BHN BAKU KOSMETIK), COA 201146",38249999 +What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 201904,13021990 +What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 210029,38249999 +"What is the hs code for IZAYOI (BHN BAKU KOSMETIK),COA 202320",13021990 +"What is the hs code for BIOCELLACT CHAMOMILLA BD(BHN BAKU KOSMETIK),COA 210091",13021990 +"What is the hs code for ABSORAGE (BHN BAKU KOSMETIK), COA 200264",13021990 +What is the hs code for SUPPOCIRE A PELLETS (BHN BAKU OBAT) COA 20E4106,28399000 +What is the hs code for 985-L-MENTHOL CRYSTALS INDIAN NATURAL (BHN BAKU KOSMETIK) COA NFPL-MEN-20-22,38249999 +What is the hs code for CYPROTERONE ACETATE MICRONIZED (BHN BAKU OBAT) COA NA3473M,29372900 +What is the hs code for ROSUVASTATIN CALCIUM (BHN BAKU OBAT) COA M325187,29359000 +"What is the hs code for CENTELLA ASIATICA EXTRACT 95PCT ( BHN BAKU KOSMETIK), COA GKP 20095 EOU",13021950 +What is the hs code for TAMANOL BIO IL (BHN BAKU KOSMETIK) COA CIN191107-ILBIO,38249999 +What is the hs code for KAPILARINE (BHN BAKU KOSMETIK) COA KAP2008L2,38249999 +What is the hs code for ROMAN CHAMOMILLE ORGANIC DISTILLATE 1:1 (BHN BAKU KOSMETIK) COA ANN2006L2-DBIO,38249999 +What is the hs code for SPIRULINA HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA ARP2002E1-GS,38249999 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO200401,38249999 +What is the hs code for COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) COA ANT2012L3,38249999 +What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2008722967,29362600 +What is the hs code for WITCH HAZEL ORGANIC DISTILLATE 1:10 (BHN BAKU KOSMETIK) COA HAVD201012-BIO,38249999 +What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-200802-GS,38249999 +What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-201003-GS,38249999 +What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-201004-GS,38249999 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO210101,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) COA EG543-200905,38249999 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO210101,38249999 +What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM201201-PGH,38249999 +"What is the hs code for TICAGRELOR (BHN BAKU OBAT) COA, TG2M027112",29091900 +"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT), COA ASGP/12/251220,261220,271220,281220",29420000 +"What is the hs code for SODIUM STARCH GLYCOLATE BP (BHN BAKU OBAT) COA ASG/12/201220, ASG/12/261220",29420000 +"What is the hs code for JAGUAR HP 105 SGI, 25KG CARDBOARD CARTON (BHN BAKU KOSMETIK) COA H2009167E",38249999 +What is the hs code for PIROXICAM (BAHAN BAKU OBAT ) COA PRX2020009M,29349990 +What is the hs code for METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/19090404,29332900 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH638885,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH638883,38249999 +What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH638968,39061090 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH638129,39061090 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH638879,38249999 +What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH638905,39061090 +What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH638884,38249999 +What is the hs code for OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH638906,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH639055,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH638900,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH639514,38249999 +What is the hs code for OPADRY 200 BROWN (BHN BAKU PEWARNA TABLET) COA SH638881,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH636146,38249999 +What is the hs code for OPADRY II BLACK (BHN BAKU PEWARNA TABLET) COA SH638904,38249999 +What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH637368,38249999 +What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH638897,39061090 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH638911,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH639210,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH638910,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH638678,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH639514,38249999 +What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH637368,38249999 +What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH638586,39061090 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH638899,38249999 +What is the hs code for CAFFEINE BP/EP/USP (BHN BAKU OBAT) COA 2101098,29393000 +"What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU SUPLEMEN), COA UJ047 ,UJ048",29181400 +What is the hs code for FEF CETRIMIDE PH EUR (BHN BAKU KOSMETIK) COA KX0C767,38249999 +What is the hs code for UNICERT YELLOW K7164-J (BHN BAKU KOSMETIK) COA.1103341,32041290 +What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK)COA HMVBD-020700,38249999 +"What is the hs code for CALCIUM CARBONATE ,HEAVY POWDER, FCC 12 (BHN BAKU MAKANAN) COA 3058760",25174100 +"What is the hs code for PERMETHRIN (PHARMA GRADE) BHN BAKU OBAT COA 205046005, 205046006",29163990 +What is the hs code for ALLOPURINOL USP (BHN BAKU OBAT) COA 20061AY3ARII,29335990 +"What is the hs code for ISDN 25PCT-LACTOSE 450 75PCT DILUTED (BHN BAKU OBAT)COA 2100026,2100027",29329990 +What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-210112,29061300 +"What is the hs code for VC ASCORBIC ACID 325 MESH,20KGBOALPO (BAHAN BAKU SUPLEMEN)COA HPD2012066,2070,2074,2081,2090...",29362700 +What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWER FORM CATCOL C 135(L) GRADE(B.BAKU KOSMETIK) COA 062/21,38249999 +What is the hs code for PEG 400 (BAHAN BAKU KOSMETIK) COA.AKW0001593,39072010 +"What is the hs code for BRB DM 2, DRUM 180 KG ( BHN BAKU KOSMETIK) COA B079014, B083095",39100020 +"What is the hs code for KSP-101 (15KG) (BHN BAKU KOSMETIK), COA 012369",38249999 +What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113534,29339990 +What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113520,29339990 +What is the hs code for CHERRY TREE FLOWER JAPAN OILY EXTRACT (BHN BAKU KOSMETIK) COA PRS210101-H,38249999 +What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-201102,38249999 +What is the hs code for RICE MILK AQUEOUS EXTRACT (SB) (BHN BAKU KOSMETIK) COA ORSL210101-AQ,38249999 +What is the hs code for SEABUCKTHORN HYDROGLYCOLIC EXTRACT (BG) (BHN BAKU KOSMETIK) COA HIR210101-B,38249999 +What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) COA,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) COA EG543-210201,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) COA EG543-210101,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) COA EG543-210101,38249999 +What is the hs code for FEF CETRIMIDE PH EUR (BHN BAKU KOSMETIK) COA KX0C775,38249999 +"What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN), COA WB20070532",29362700 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 20B003800,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 20B0090600,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 20B0090700,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 20B0090800,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 20B0090900,13021990 +What is the hs code for PASSION FLOWER D.H.E.>4PCT (BHN BAKU SUPLEMEN) COA 20B0079600,13021990 +"What is the hs code for DRY VITAMIN A PALMITATE TYPE 325 CWS/A, 20KG BA (BHN BAKU MAKANAN) COA WB20080532,533,534",29362100 +What is the hs code for COSME-PHYTAMI LOTUS FL 5KG(BAHAN BAKU KOSMETIK) COA AM087001,13021950 +What is the hs code for COSME-PHYT PEPPERMINT 5KG(BAHAN BAKU KOSMETIK) COA AM082638,13021950 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000533, 122000534",28363000 +What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000533,28363000 +What is the hs code for OPADRY RED (BHN BAKU PEWARNA TABLET) COA SH639899,38249999 +What is the hs code for OPADRY II YELLOW ( BHN BAKU PEWARNA TABLET) COA SH639243,38249999 +What is the hs code for OPADRY II BLUE (BHN BAKU PEWARNA TABLET) COA SH639934,38249999 +"What is the hs code for JAGUAR C162 SGI, CARDBOARD BOX 25KG (BHN BAKU KOSMETIK) COA MJAC20353A",38249999 +What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK)COA 7766026,38249999 +"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG201211, MCVG201224",29362700 +"What is the hs code for CATHECHINS (SUNPHENON 90D) BHN BAKU TAMBAHAN PANGAN, COA 101111",38249999 +What is the hs code for DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB20100022,28352510 +"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC 208 20 T",27101990 +What is the hs code for ASTABIO ARV-S (BHN BAKU OBAT) COA.1903231,32030010 +"What is the hs code for CALAMINE, POWDER, BP2021 (BHN BAKU OBAT) COA 3092304",28369990 +What is the hs code for BETAMETHASONE VALERATE (BHN BAKU OBAT) COA X21-200802,29372200 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP21014542, XP21014543",29211900 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH640547,38249999 +What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512050,47069200 +"What is the hs code for CLAIR BLANCHE-II ( BHN BAKU KOSMETIK), COA 210098",38249999 +What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 210029,38249999 +What is the hs code for MANDARIN CLEAR (BHN BAKU KOSMETIK) COA 201576,13021990 +"What is the hs code for BIOBENEFITY (BHN BAKU KOSMETIK),COA 201003",13021990 +"What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK),COA 202079",13021990 +"What is the hs code for BOTANPI LIQUID B ( BHN BAKU KOSMETIK), COA 201501",13021990 +What is the hs code for AP GRIT (ROUND)G #60-80 (BHN BAKU KOSMETIK) COA 200019,38249999 +What is the hs code for AQUACOAT ECD-30 ETHYLCELLULOSE AQUEOUS... (BHN BAKU PEWARNA TABLET) COA 2173764333,39123900 +What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D180K1N022,39123900 +What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180J8D022,39123900 +What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D011JBPL02,39123900 +What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180J8D022,39123900 +What is the hs code for TREHALOSE (BHN BAKU MAKANAN) COA 2020121821,29400000 +"What is the hs code for NIACINAMIDE USP (NIACINAMIDE USP/EP) BHN BAKU KOSMETIK,COA 20-21/NMD(P)/00390 S/D 00393",29362900 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SAC,38249999 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA FKF,38249999 +What is the hs code for AMITOSE R (BHN BAKU KOSMETIK) COA FHD,38249999 +What is the hs code for PROMOIS SILK-1000 (BHN BAKU KOSMETIK) COA FLA,38249999 +What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER(MMW) (BHN BAKU KOSMETIK)COA CHP1210113,38249999 +What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE 1PCT SOLUTION (BHN BAKU KOSMETIK)COA HASC-562800,38249999 +What is the hs code for HYUNDAI BIOLAND HASU LIQUID (BHN BAKU KOSMETIK) COA NFH-011311,38249999 +"What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-012040, HOXB-020920",38249999 +What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK)COA 011421,28321000 +What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 011421,28321000 +What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-011411,38249999 +What is the hs code for HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-011020,38249999 +What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-031720,38249999 +What is the hs code for HYUNDAI BIOLAND RHODIOLA EXTRACT (BHN BAKU KOSMETIK) COA FRR-012650,38249999 +What is the hs code for HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-461710,38249999 +What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-010340,38249999 +What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (B) (BHN BAKU KOSMETIK) COA AMIBD-061060,38249999 +What is the hs code for HYUNDAI BIOLAND NEWAPLE (BHN BAKU KOSMETIK) COA NWPB-042890,38249999 +What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-051900,38249999 +"What is the hs code for SUNFIBER AG (BHN BAKU MAKANAN), COA 907011",13021950 +"What is the hs code for DOCUSATE SODIUM (BHN BAKU OBAT), COA SD0071533",29171900 +What is the hs code for LIPOID PPL-600 (BHN BAKU OBAT) COA 577200-2200228/003-004 (2),29232010 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP21014770, XP21014771",29211900 +"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 2150079, 2150094",29242930 +"What is the hs code for FERRIC PYROPHOSPHATE,24-26PCT FE POWDER,FCC12 (BHN BAKU SUPLEMEN) COA 3095514",28353990 +What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0043912,38210090 +What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335663,38210090 +"What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0315982",38210090 +What is the hs code for VIAL UNIVERSAL VIRAL TRANSPORT (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH N03081700,38210090 +"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0307318,031002",38210090 +What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0183124,38210090 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0244908,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0294089,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0293259,38210090 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161680,38210090 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0294337,38210090 +What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0007272,38210090 +What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0273380,38210090 +What is the hs code for BOTTLE STANDARD METHODS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0062547,38210090 +What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0062865,38210090 +What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0350960,38210090 +What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9280662,38210090 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01C337M,38210090 +What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0280159,38210090 +What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0237250,38210090 +What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0300164,38210090 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0300129,38210090 +What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0268232,38210090 +What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0301070,38210090 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0308542,38210090 +What is the hs code for BOTTLE DERMATOPHYTE TEST MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0322911,38210090 +What is the hs code for KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0322101,38210090 +What is the hs code for BICAR FOOD 27/50 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA MTP32620,28363000 +What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2020101003,21012020 +"What is the hs code for SUNTHEANINE (L-THEANINE) BHN BAKU MAKANAN, COA 101191",13021950 +What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785018790L,38249999 +What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) COA 2030316,38249999 +What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830017750K,38249999 +What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785018478L,38249999 +What is the hs code for CS-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785018790L,38249999 +What is the hs code for NEUTRAZEN TM (BHN BAKU KOSMETIK) COA 828018409L,38249999 +What is the hs code for NEUTRAZEN TM (BHN BAKU KOSMETIK) COA 828018638L,38249999 +What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) COA 2020816,38249999 +What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785018790L,38249999 +"What is the hs code for TICAGRELOR (BHN BAKU OBAT) COA, TG2M027112",29091900 +"What is the hs code for VC SODIUM ASCORBATE REGULAR, 25KG BAL (BAHAN BAKU MAKANAN) COA HPN2101155, 1156, 1159 S/D1163",29362700 +"What is the hs code for VC ASCORBIC ACID 325 MESH, 20KG BOAIPO (BAHAN BAKU SUPLEMEN) COA HPD2012130,135,139,144, ...",29362700 +"What is the hs code for VC ASCORBIC ACID REGULAR ,25KG BAL(BHN BAKU MAKANAN) COA HPB2012201",29362700 +"What is the hs code for VC ASCORBIC ACID REGULAR, 25KG BAL (BHN BAKU MAKANAN) COA HPB2012040",29362700 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0328976,38210090 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0300807,38210090 +"What is the hs code for BOTTLE FOLIC AOAC MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9141510",38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0282558,38210090 +What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0324108,38210090 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0300807,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0282558,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0097374,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065943,38210090 +"What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0328875,0329828",38210090 +What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0259350,38210090 +What is the hs code for BOTTLE B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0272043,38210090 +What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0280045,38210090 +What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105715019,17021100 +"What is the hs code for FLOWLAC(R) 100H (BHN BAKU OBAT) COA L105810520,L105814919,L105810720",17021100 +What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104314220,17021100 +What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103863220,17021100 +What is the hs code for GRANULAC (R) 70 (BHN BAKU OBAT) COA L101842620,17021100 +What is the hs code for OPADRY EZ CLEAR (BHN BAKU PEWARNA TABLET) COA SH640548,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH640552,38249999 +What is the hs code for OPADRY AMB II WHITE ( BHN BAKU PEWARNA TABLET) COA SH640549,38249999 +What is the hs code for OPADRY YELLOW (BHN BAKU PEWARNA TABLET) COA SH640546,38249999 +What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH639730,38249999 +What is the hs code for OPADRY AMB II BROWN (BHN BAKU PEWARNA TABLET) COA SH640551,38249999 +What is the hs code for SUPPOCIRE AM PELLETS (BHN BAKU OBAT) COA 20E2404,28399000 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB20090235,29362800 +What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB20100270,29362100 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB20090235,29362800 +What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB20100270,29362100 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB20090235,29362800 +"What is the hs code for FLORAGLO(R)LUTEIN 20PCT SAF, 1KG ALUF (BHN BAKU SUPLEMEN) COA UE02007035",32030010 +"What is the hs code for GENIVIDA (TM)TG, 1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT19060004",29329990 +What is the hs code for VITAMIN B12 1PCT SD (BHN BAKU SUPLEMEN) COA UT20110022,29362600 +What is the hs code for MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50361,29061100 +"What is the hs code for SORBITOL SPECIAL TM MDF 85,(BHN BAKU OBAT) COAM20003,SAMPLE NOCOMMERCIAL VALUE",21069059 +What is the hs code for 399976 ACTIPONE (R) CAMU CAMU GW (BHN BAKU KOSMETIK) COA 10300014,13021950 +What is the hs code for CEFTIZOXIME SODIUM (BHN BAKU OBAT) COA T601000,29419000 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543281,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543283,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543282,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543284,35051010 +What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA.MLAH0040121,29341000 +What is the hs code for RANITIDINE HYDROCHLORIDE USP (DC GRADE) (BHN BAKU OBAT) COA RH 041 01 21,29321900 +What is the hs code for SILDENAFIL CITRATE USP (BHN BAKU OBAT) COA SLC 020 01 21,29335990 +"What is the hs code for KF-96A-6CS (16KG) BHN BAKU KOSMETIK, COA 101131",38249999 +"What is the hs code for KF-7312J (18KG) BHN BAKU KOSMETIK, COA 101850",38249999 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20040030,32041900 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20040051,29362300 +What is the hs code for VITAMIN PREMIX FOR FERMENTED MILK (BHN BAKU MAKANAN) COA XW92012184,21069059 +"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0220040005",29420000 +"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00650554, VE00652698",29420000 +"What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02002805",29362400 +"What is the hs code for BEAUPLEX (TM) ,5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF20164001",29420000 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708200089,98,100,101",29420000 +What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES2007437,29420000 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02005013,29362900 +"What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0720010029",29420000 +"What is the hs code for PARSOL MAX, 25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0919030009",29420000 +"What is the hs code for STAY-C(R)50, 20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02003026",29362700 +"What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET), COA DT711639",32151900 +"What is the hs code for OPALUX MAROON (BHN BAKU PEWARNA TABLET), COA DT711640",32151900 +What is the hs code for OPACODE BLACK (BHN BAKU PEWARNA TABLET) COA DT711636,32151900 +What is the hs code for OPASPRAY YELLOW (BHN BAKU PEWARNA OBAT) COA DT711728,32151900 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP21013310/XP21013312, XP21013311/XP21013313",29211900 +What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2008763065,29362600 +What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWDER FORM CATCOL C135(L) GRADE(B.BAKU KOSMETIK) COA 124/21,38249999 +What is the hs code for LUBRIPHARM (R) SSF NF/EP/JP SODIUM STEARYL FUMARATE (B.BAKU OBAT) COA 122100855,28161000 +What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU OBAT) COA 202000292,28183000 +What is the hs code for OPACODE WHITE (BHN BAKU PEWARNA TABLET) COA WP837267,32151900 +What is the hs code for ETHOCEL STANDARD 10 PREMIUM (BHN BAKU PEWARNA TABLET)COA D184J7V021,39123900 +What is the hs code for METHOCEL E6 PREMIUM LV (BHN BAKU PEWARNA TABLET) COA D011K3TL02,39123900 +What is the hs code for METHOCEL K4M PREMIUM CR (BHN BAKU PEWARNA TABLET)COA D180K2O002,39123900 +What is the hs code for METHOCEL K15M PREMIUM (BHN BAKU PEWARNA TABLET)COA D180K3E002,39123900 +What is the hs code for METHOCEL K15M PREMIUM LV (BHN BAKU PEWARNA TABLET) COA D180K3B001,39123900 +What is the hs code for METHOCEL K15M PREMIUM (BHN BAKU UTK PEWARNA TABLET) COA D180JCH001,39123900 +What is the hs code for METHOCEL K15M PREMIUM (BHN BAKU PEWARNA TABLET) COA D180JCF002,39123900 +What is the hs code for METHOCEL K4M PREMIUM (BHN BAKU PEWARNA TABLET) COA D180K5C004,39123900 +What is the hs code for METHOCEL E4M PREMIUM (BHN BAKU PEWARNA TABLET) COA D180J8S013,39123900 +What is the hs code for METHOCEL K100 PREMIUM LVCR (BHN BAKU PEWARNA TABLET) COA D180KCM022,39123900 +What is the hs code for METHOCEL K100 PREMIUM LVCR (BHN BAKU PEWARNA TABLET) COA D180KCU021,39123900 +What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 194924,29332900 +What is the hs code for HYDROCORTISONE ACETATE EP7/USP42 (BHN BAKU OBAT) COA NEHAC210103,29372200 +What is the hs code for PREDNISONE USP42 (BHN BAKU OBAT) COA NPD200934,29372100 +What is the hs code for PEONY P118 182 (BHN BAKU KOSMETIK) COA 3116474,33029000 +What is the hs code for HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 3118264,33029000 +What is the hs code for PIPERONYL BUTOXIDE (BHN BAKU OBAT PAKAN TERNAK) COA 20210110,29329990 +What is the hs code for SUCRALOSE (BHN BAKU OBAT) COA 20120301,29321400 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA031215,28363000 +What is the hs code for KANEKA Q10 UBIDECARENONE 5KG JP (BHN BAKU KOSMETIK) COA FA01-4323,29146200 +What is the hs code for CETRIMIDE POWDER (BHN BAKU KOSMETIK) COA 320CAA0026,38249999 +What is the hs code for CETRIMIDE POWDER (BHN BAKU KOSMETIK) COA 320CAA0026,38249999 +What is the hs code for JOJOBA OIL VIRGIN LOW ODOUR (BHN BAKU KOSMETIK) COA 155586,15159011 +What is the hs code for AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 155594,15159011 +What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK COA B291220,39123900 +"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B291220",39123900 +"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB040121",39123900 +"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB040121",39123900 +"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB040121",39123900 +"What is the hs code for LIGHT GREEN GLOBEADS L(70-120) BHN BAKU KOSMETIK, COA LG230121",39123900 +What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 201025,13021950 +What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 200911,13021950 +What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 201217,33012990 +What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 201215,13021950 +What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 210109,13021950 +"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED)BHN BAKU OBAT,COA M533445,446,448,444",29411019 +"What is the hs code for COPPER SULPHATE PENTAHYDRATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA 031,032",28332500 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02011124, TL02011125",29362400 +What is the hs code for REFINED GRAPESEED OIL (BHN BAKU KOSMETIK) COA.B2000294,15152919 +What is the hs code for P.GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 20S0004000,13021990 +What is the hs code for P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 32347/M1,13021990 +What is the hs code for BILBERRY (V.MYRTILLUS) ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 20S0241102,13021990 +"What is the hs code for VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN), COA XW92101217",21069059 +What is the hs code for MINERAL PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92101227,21069059 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT20110023,32041900 +What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT20120050,29362500 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT20090059,29362100 +"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02008089,UE02008090,UE02008091",32041900 +What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT20100029,29362100 +What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT20120050,29362500 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT20100046,29362600 +What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT20100029,29362100 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT20110023,32041900 +What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT20120050,29362500 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT20090059,29362100 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT20100046,29362600 +What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105715019,17021100 +What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105715019,17021100 +What is the hs code for STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN542261,35051010 +What is the hs code for METHOCEL E4M PREMIUM CR HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D180K3D011,39123900 +What is the hs code for OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH639735,38249999 +What is the hs code for PIGMENT BLEND GREEN (BHN BAKU PEWARNA TABLET) COA SH639742,32151900 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH639731,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH639733,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH639748,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH639747,38249999 +What is the hs code for OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH639750,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH639751,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH638576,39061090 +What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH639741,39061090 +What is the hs code for ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH639743,39061090 +What is the hs code for ACRYL-EZE PURPLE (BHN BAKU PEWARNA TABLET) COA SH639825,39061090 +What is the hs code for CLOZAPINE (BHN BAKU OBAT) COA 890106,29335990 +What is the hs code for TRIAMCINOLONE ACETONIDE MICRONIZED (BHN BAKU OBAT) COA NA3399M,29372200 +What is the hs code for PYRANTEL PAMOATE (BHN BAKU OBAT) COA 117221005,29349990 +"What is the hs code for PHARMACEUTICAL CASTOR OIL E.P (BHN BAKU KOSMETIK) COA 0000035987,35988",15152919 +What is the hs code for VIRGIN SWEET ALMOND OIL CONFORM TO THE EUR PH (BHN BAKU KOSMETIK) COA 0000035734,15152919 +What is the hs code for TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA R7002,29225090 +What is the hs code for TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA R7043,29225090 +"What is the hs code for CAFFEINE BP/EP/USP (BHN BAKU OBAT) COA 2101098,2101100,2101101,2101110...",29393000 +What is the hs code for COMPLEX ANTI PESPIRANT (BHN BAKU KOSMETIK) COA ANTS200903,38249999 +What is the hs code for KIGELINE (BHN BAKU KOSMETIK) COA KA210201-B,38249999 +What is the hs code for ROMAN CHAMOMILLE ORGANIC DISTILLATE 1:1 (SB) (BHN BAKU KOSMETIK) COA ANND201202-BIO,38249999 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO201002,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS200301,38249999 +What is the hs code for GRAPE SEED ORGANIC OIL C00031 (BHN BAKU KOSMETIK) COA RPM201003-ENBIO,38249999 +What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-210101-GS,38249999 +What is the hs code for SAFFLOWER REFINED OIL (BHN BAKU KOSMETIK) COA CARHR201105-DW,38249999 +What is the hs code for THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000048605,33029000 +What is the hs code for NECTAR DE MATCHA FEMA P114 6 (BHN BAKU OBAT) COA 0000049825,33029000 +What is the hs code for NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 19LNC1008SQ637,27101990 +What is the hs code for NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 19LNC1008SQ637,27101990 +What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D011K1QL02,39123900 +What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180K78001,39123900 +"What is the hs code for MEG-3 '30' N-3 INF OIL, 25KG MDR (BHN BAKU SUPLEMEN) COA TS00016073",29362500 +What is the hs code for PANTOPRAZOLE SODIUM (BHN BAKU OBAT) COA PSFP20012,29333990 +"What is the hs code for METAMIZOLE SODIUM REGULAR GRADE(BHN BAKU OBAT) COA 20121626,20121627,20121629,2101053",29331900 +"What is the hs code for POTASSIUM L.ASPARTATE 0,5-HYDRATE (BHN BAKU SUPLEMEN) COA 3097106",29224900 +What is the hs code for POTASSIUM L.ASPARTATE 0.5-HYDRATE (BHN BAKU SUPLEMEN) COA 3097106,29224900 +"What is the hs code for SODIUM GLYCEROPHOSPHATE CRYST.,PH FRANC X(BHN BAKU SUPLEMEN) COA 3073900-2",29199000 +"What is the hs code for PARACETAMOL USP (BHN BAKU OBAT) COA 2150195,196,197",29242930 +"What is the hs code for PARACETAMOL USP (BHN BAKU OBAT) COA 2150197,2150204, 2150205",29242930 +"What is the hs code for ACETAMINOPHEN (PARACETAMOL).(BAHAN BAKU PAKAN TERNAK ), COA 202101070A,202101071A",29242930 +"What is the hs code for MEG-3 '30' N-3 FOOD OIL, 25KG MDR (BHN BAKU SUPLEMEN) COA TS00016166",29362500 +What is the hs code for MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103154520,17021100 +"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000192804",29362900 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0320051617,51768,51769",29420000 +"What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES2007437, ES2007442",29420000 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0520060021",29420000 +"What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA 0519030065",29420000 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) BHN BAKU SUPLEMEN,COA UT20050198",29362100 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) BHN BAKU MAKANAN COA UT20050198,29362100 +What is the hs code for VIT PREMIX MI AI (BHN BAKU MAKANAN) COA XW92101174,21069059 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO)BHN BAKU MAKANAN, COA UT200500198, UT20050199",29362100 +What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829018390L,38249999 +What is the hs code for GREYVERSE TM (BHN BAKU KOSMETIK) COA 833018113L,38249999 +What is the hs code for NEUTRAZEN TM (BHN BAKU KOSMETIK) COA 828018638L,38249999 +What is the hs code for PROGELINE TM (BHN BAKU KOSMETIK) COA 820058691L,38249999 +What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785018790L,38249999 +What is the hs code for NEUTRAZEN TM (BHN BAKU KOSMETIK) COA 828018638L,38249999 +What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782018592M,38249999 +What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP836930,39059990 +What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP836904,39059990 +What is the hs code for FD&C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP830191:BA3144,32151900 +What is the hs code for FD & C YELLOW #5/TARTRAZINE AL (BHN BAKU PEWARNA TABLET) COA WP833403:BA4808,32151900 +What is the hs code for D & C YELLOW #10 AL 15PCT-20PCT (BHN BAKU PEWARNA TABLET) COA WP831857:BA3854,32151900 +What is the hs code for D & C YELLOW #10 AL 15PCT-20PCT(BHN BAKU PEWARNA TABLET) COA WP831855:BA3823,32151900 +What is the hs code for FD & C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP830191:BA3144,32151900 +What is the hs code for FD & C YELLOW #5/TARTRAZINE AL (BHN BAKU PEWARNA TABLET) COA WP822863:BA0318,32151900 +What is the hs code for FD&C RED #40/ALLURA RED AC AL...(BHN BAKU UTK PEWARNA TABLET) COA WP835348:BA5453,32151900 +What is the hs code for PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PI21010004,29349920 +What is the hs code for PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PI21010004,29349920 +"What is the hs code for PROPYPHENAZONE (ST) (BHN BAKU OBAT) COA 2011211,213,217,224,248",29331100 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20210207,17029019 +What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA E01271UP,29053200 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20080123,29362900 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT20080032,29362900 +What is the hs code for MIN PREMIX MI A2 (BHN BAKU MAKANAN) COA XW92101175,21069059 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT20080032,29362900 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ00502890,29362200 +What is the hs code for VITAMIN B MIX -SPREAD (BHN BAKU MAKANAN) COA XW92101105,21069059 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20040030,32041900 +"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20100265",29362800 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE02005013,29362900 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030178,29362900 +What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030051,29362500 +What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL02009653,29362700 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE(BHN BAKU SUPLEMEN) COA TL02008096",29362400 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20040051,29362300 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12007021,29362900 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT20080123,29362900 +What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2004045,29362300 +What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2004045,29362300 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00602917,29362200 +What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2004047,29362300 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT20080032,29362900 +"What is the hs code for DRY VITAMIN D3 100 CWS(BHN BAKU SUPLEMEN) COA UT20090010, UT20090011",29362900 +What is the hs code for DRY VITAMIN E 50PCT CWS/S(BHN BAKU SUPLEMEN) COA UT20120082,29362800 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20120082,29362800 +"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT20070120,UT20080123",29362900 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT20080123,29362900 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90502890,29362200 +"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92101219, XW92101220",21069059 +What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92101207,21069059 +What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-012111,38249999 +What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK)COA MUB-031720,38249999 +What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-021380,38249999 +What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-061490,38249999 +What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK)COA HMVBD-011411,38249999 +What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 012821,28321000 +What is the hs code for HYUNDAI BIOLAND BIO-BLACK PEARL POWDER(BHN BAKU KOSMETIK) COA PDEG-010221,38249999 +"What is the hs code for AESTHEFILL (POLYLACTIC ACID) ,COA AF201123",90189090 +What is the hs code for ADSORB AFLA (BHN BAKU UNTUK PAKAN TERNAK) COA 175,25081000 +What is the hs code for PROCATEROL HCL HEMIHYDRATE MICRONIZED (BHN BAKU OBAT) COA 8601219M1,29337900 +"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC 04 21 T",27101990 +What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA.0000073895,29309090 +What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA.0000073896,29309090 +"What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000073897,SAMPLE NO COMMERCIAL VALUE",29309090 +"What is the hs code for THIOCARE (R) H103 43PCT (BHN BAKU KOSMETIK) COA 0000073898, SAMPLE NO COMMERCIAL VALUE",29309090 +"What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK), COA 0000073899,SAMPLE NO COMMERCIAL VALUE",29309090 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH641025,38249999 +"What is the hs code for CEFADROXIL MONOHYDRATE POWDER (PURIDROX POWDER) BHN BAKU OBAT, COA B334722,B334723,B334724",29419000 +What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-221220,29334910 +"What is the hs code for ZINC SULFATE 1-HYDRATE,POWDER, USP 43 (BHN BAKU OBAT) COA 3095116",28332920 +What is the hs code for METHISOPRINOL (BHN BAKU OBAT) COA MTP1020064,29349990 +What is the hs code for ECOSLIM TM-5KG (BHN BAKU KOSMETIK) COA 2032102,38249999 +What is the hs code for ECOGEL TM-5KG (BHN BAKU KOSMETIK) COA 2101204,38249999 +"What is the hs code for LECIGEL TM- 5KG (BHN BAKU KOSMETIK) COA 2032306,2101006",38249999 +What is the hs code for ROSALITY TM- 5KG (BHN BAKU KOSMETIK) COA 2100901,38249999 +What is the hs code for AMISOL TRIO TM-5KG (BHN BAKU KOSMETIK) COA 2021114,38249999 +What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0328558,38210090 +What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0358288,38210090 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20120022,29362900 +"What is the hs code for JAGUAR C162 SGI, CARDBOARD BOX 25KG (BHN BAKU KOSMETIK) COA MJAC20353A",38249999 +What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA 2012402107,29419000 +What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-001-Y,38249999 +"What is the hs code for COPPER SULPHATE PENTAHYDRATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA 054,055",28332500 +What is the hs code for MANNOGEM (R) XL OPAL SPRAY DRIED MANNITOL USP/EP (B BAKU OBAT)COA122000605,29054300 +What is the hs code for HUILE DE COPRAH RAFF GV 24/26 (BHN BAKU KOSMETIK)COA 21F0601,15131910 +What is the hs code for 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 092220/006591,38249999 +"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 2102EF9012",29224900 +What is the hs code for TADALAFIL USP (BHN BAKU OBAT) COA TAD/0519007,29349990 +"What is the hs code for PHYTO COLLAGE B (N) ( BHN BAKU KOSMETIK), COA 2",13021990 +What is the hs code for SWERTIANIN-P (BHN BAKU KOSMETIK) COA 202179,13021990 +What is the hs code for ROSE HIPS LIQUID B (BHN BAKU KOSMETIK) COA 200964,13021990 +"What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK),COA 202189",38249999 +"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK),COA 210098",38249999 +"What is the hs code for IZAYOI ( BHN BAKU KOSMETIK), COA 210453",13021990 +"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA008216,8214,8216,009217,010217",28363000 +"What is the hs code for LIPOID S 67 F (BHN BAKU OBAT) COA 576200-2210034/001--006(6),576200-2210034/007",29232010 +What is the hs code for EUXYL K 100 CN -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1559931,38249999 +"What is the hs code for EUXYL PE 9010-CN- 200KG FA (BHN BAKU KOSMETIK) COA 1557150,1558832",38249999 +What is the hs code for EUXYL PE 9010-CN- 10KG KA (BHN BAKU KOSMETIK) COA 1559619,38249999 +What is the hs code for EUXYL K 903 -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1556807,38249999 +What is the hs code for EUXYL K 720 -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1558389,38249999 +What is the hs code for SENSIVA SC 50 200KG DR (BHN BAKU KOSMETIK) COA 1557501,38249999 +"What is the hs code for EFFISIN LA NATURAL SAMPLE 100ML FL(B.BAKU KOSMETIK)COA 1559237, SAMPLE NO COMM VALUE",38249999 +"What is the hs code for EUXYL ECO 910 SAMPLE 100ML FL (B.BAKU KOSMETIK)COA 1552570, SAMPLE NO COMMERCIAL VALUE",38249999 +"What is the hs code for EUXYL K 120 SAMPLE 100ML FL (BHN BAKU KOSMETIK) COA 1557976, SAMPLE NO COMMERCIAL VALUE",38249999 +"What is the hs code for EUXYL K 340 MUSTER 100ML FL (BHN BAKU KOSMETIK) COA 1556172 , SAMPLE NO COMMERCIAL VALUE",38249999 +"What is the hs code for EUXYL K 700 SAMPLE 100ML FL (BHN BAKU KOSMETIK) COA 1552454, SAMPLE NO COMMERCIAL VALUE",38249999 +What is the hs code for EUXYL K 720 SAMPLE 100ML FL (BHN BAKU KOSMETIK) COA 1556433 SAMPLE NO COMMERCIAL VALUE,38249999 +"What is the hs code for EUXYL K 703 SAMPLE 100ML FL (BHN BAKU KOSMETIK) COA 1559236,SAMPLE NO COMMERCIAL VALUE",38249999 +What is the hs code for EUXYL K 712 SAMPLE 100 ML FL (BHN BAKU KOSMETIK) COA 1560234 SAMPLE NO COMMERCIAL VALUE,38249999 +"What is the hs code for EUXYL K 720 SAMPLE 100ML FL (BHN BAKU KOSMETIK) COA 1545188,SAMPLE NO COMMERCIAL VALUE",38249999 +What is the hs code for EUXYL K 900 (SAMPLE)100ML FL (BHN BAKU KOSMETIK) COA 1558250 SAMPLE NO COMMERCIAL VALUE,38249999 +"What is the hs code for EUXYL K 940 (SAMPLE) 100ML FL (BHN BAKU KOSMETIK) COA 1556173, SAMPLE NO COMMERCIAL VALUE",38249999 +"What is the hs code for EUXYL PE 9010 SAMPLE(S) 100ML FL (BHN BAKU KOSMETIK) COA 1557830, SAMPLE NO COMMERCIAL VALUE",38249999 +"What is the hs code for SENSIDIN DO SAMPLE 100ML FL (BHN BAKU KOSMETIK) COA 1551993, SAMPLE NO COMMERCIAL VALUE",38249999 +What is the hs code for SENSIVA PA 20 SAMPLE(S) 100ML FL (BHN BAKU KOSMETIK) COA 1550653 SAMPLE NO COMMERCIAL VALUE,38249999 +"What is the hs code for SENSIVA PA 30ML SAMPLE 100ML FL (BHN BAKU KOSMETIK) COA 1560735,SAMPLE NO COMMERCIAL VALUE",38249999 +"What is the hs code for SENSIVA SC 50 SAMPLE(S) 100ML FL (BHN BAKU KOSMETIK) COA 1559235,SAMPLE NO COMMERCIAL VALUE",38249999 +"What is the hs code for EUXYL K 340 -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1558219, SAMPLE NO COMMERCIAL VALUE",38249999 +What is the hs code for ACTIPONE (R) CAMU CAMU ET (BHN BAKU KOSMETIK) COA 10300020,13021950 +"What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 00280121,03620221,03280221...",29359000 +"What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 03280221,03370221,03430221...",29359000 +"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT20100029, UT20100030",29362100 +What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH640498,38249999 +What is the hs code for OPADRY II WHITE ( BHN BAKU PEWARNA TABLET) COA SH640505,38249999 +What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH641550,38249999 +What is the hs code for MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103154520,17021100 +What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-012111,38249999 +What is the hs code for HYUNDAI BIOLAND APRICOT EXTRACT (BHN BAKU KOSMETIK)COA PAS-011980,38249999 +What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-010511,38249999 +What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-071300,38249999 +What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-011411,38249999 +What is the hs code for HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-211980,38249999 +What is the hs code for HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-082900,38249999 +What is the hs code for HYUNDAI BIOLAND NEWAPLE (BHN BAKU KOSMETIK) COA NWPB-042890,38249999 +"What is the hs code for KF-6028 (16KG) BHN BAKU KOSMETIK, COA 009245",38249999 +"What is the hs code for KSG-710 (16KG) BHN BAKU KOSMETIK, COA 012391",38249999 +What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 8035700,38249999 +What is the hs code for SORBITOL SOLUTION 70PCT CRYSTALLIZING (BHN BAKU OBAT) COA 2021P548,29054400 +What is the hs code for CLOTRIMAZOLE MICRONIZED (BHN BAKU OBAT ) COA 202101260250,29332900 +"What is the hs code for MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL210201,218,204,125,215",29094900 +What is the hs code for KRONOS 1171 EX CANADA (BHN BAKU OBAT) COA 0019370,28230000 +"What is the hs code for STAY-C(R)50, 20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02003026, UE02010036",29362700 +"What is the hs code for MIAMI SCG(S) (BHN BAKU KOSMETIK),COA 21021355",34021190 +What is the hs code for DRUM PACKING RING WITH SEAL (DRUM KOSONG) SAMPLE NO COMMERCIAL VALUE,48192000 +What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512103,47069200 +"What is the hs code for FENTACARE 2231 EF 25KG PAPER BOX (BHN BAKU KOSMETIK )COA ZH21A3101,ZH21B0201",34029019 +What is the hs code for NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 20LNC0927SQ880,27101990 +"What is the hs code for VP DN03 (BHN BAKU MAKANAN), COA XW92102304",21069059 +What is the hs code for VITAMIN PREMIX FOR FERMENTED MILK (BHN BAKU MAKANAN) COA XW92102258,21069059 +"What is the hs code for ACNEBUSTERS ( BHN BAKU KOSMETIK), COA 210113",38249999 +What is the hs code for BIOBENEFITY (BHN BAKU KOSMETIK) COA 210200,13021990 +What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 210177,13021990 +"What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK), COA 210276",13021990 +"What is the hs code for DOKUDAMI LIQUID B (BHN BAKU KOSMETIK), COA 202395",13021990 +"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK),COA 202302",38249999 +"What is the hs code for CLAIR BLANCHE -II (BHN BAKU KOSMETIK),COA 210098",38249999 +"What is the hs code for FLAVOSTERONE SB BHN BAKU KOSMETIK, COA 210177",13021990 +What is the hs code for SPRINGMINT (BHN BAKU KOSMETIK) COA 210575,13021990 +What is the hs code for BIOBENEFITY (BHN BAKU KOSMETIK) COA 210200,13021990 +What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 210113,38249999 +What is the hs code for AP GRIT (ROUND)G #60-80 (BHN BAKU KOSMETIK) COA 200019,38249999 +"What is the hs code for IONOL (R) CP (BHN BAKU OBAT), COA 01131220",29071900 +What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 200625,29061900 +What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 210109,13021950 +What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 201209,13021950 +What is the hs code for TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA 210102,13021950 +What is the hs code for METHOCEL K4M PREMIUM CR (BHN BAKU PEWARNA TABLET)COA D180K2O002,39123900 +What is the hs code for METHOCEL K15M PREMIUM CR (BHN BAKU PEWARNA TABLET) COA D180K78001,39123900 +What is the hs code for METHOCEL K15M PREMIUM CR (BHN BAKU PEWARNA TABLET)COA D0180K37002,39123900 +What is the hs code for METHOCEL K15M PREMIUM CR (BHN BAKU PEWARNA TABLET)COA D180K75001,39123900 +What is the hs code for METHOCEL K15M PREMIUM CR (BHN BAKU PEWARNA TABLET) COA D180K76001,39123900 +What is the hs code for METHOCEL K4M PREMIUM (BHN BAKU UTK PEWARNA TABLET) COA D180K4J001,39123900 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000536, 122100700",28363000 +What is the hs code for GELOIL SC (BHN BAKU OBAT) COA 184015,28399000 +What is the hs code for GELUCIRE 48/16 PELLETS (BHN BAKU OBAT) COA 178335,28399000 +What is the hs code for LABRAFIL M 1944 CS BF (BAHAN BAKU OBAT) COA 181824,28399000 +What is the hs code for LABRAFIL M 1944 CS BF (BAHAN BAKU OBAT) COA 182720,28399000 +What is the hs code for IPRATROPIUM BROMIDE (BHN BAKU OBAT) COA 2050002970,29397900 +What is the hs code for IPRATROPIUM BROMIDE (BHN BAKU OBAT) COA 2050002970,29397900 +What is the hs code for METRONIDAZOLE BP (BHN BAKU OBAT) COA MTZ/0111788,29332900 +"What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453829590",39139090 +What is the hs code for AMIKACIN SULFATE (BHN BAKU OBAT) COA VW0004A,29419000 +"What is the hs code for PANTOPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT, COA APSS20006",29333990 +What is the hs code for NORIT SX SUPER E 153 (BHN BAKU KOSMETIK) COA 4978845,38021000 +What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 7690186571,38249999 +What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782018592M,38249999 +What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) COA 2020816,38249999 +What is the hs code for NEUTRAZEN TM (BHN BAKU KOSMETIK) COA 828018638L,38249999 +What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 7690186571,38249999 +What is the hs code for L-CARNITINE (EP GRADE)(BHN BAKU KOSMETIK)COA 10100120210112,29239000 +What is the hs code for PEONY P118 182 (BHN BAKU KOSMETIK) COA 3127497,33029000 +What is the hs code for EUXYL K 720-C08- 10KG KA (BHN BAKU KOSMETIK) COA 1565663,38249999 +What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0261346,38210090 +What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0261346,38210090 +What is the hs code for BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0237310,38210090 +What is the hs code for DROPPER INDOLE (MEDIA UTK PNGEMBANGAN MIKROORGANISME) BATCH B03C335M,38210090 +"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0357150",38210090 +What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0310783,38210090 +What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0357150,38210090 +What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1014021,38210090 +What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1025338,38210090 +"What is the hs code for BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH0315905,0365874",38210090 +"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT(MEDIA U/PENGEMBANGKAN MIKRO ORGANISME)BATCH0310783,0338317",38210090 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0350958,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0097374,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065943,38210090 +What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0128384,38210090 +What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0329828,38210090 +What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0259350,38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037338,38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0128385,38210090 +"What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0237250",38210090 +"What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH B01D025M",38210090 +What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01D028M 90011569,38210090 +What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0286434,38210090 +What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0063472,38210090 +What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0220229,38210090 +"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0097350,0217346",38210090 +"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0335617",38210090 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0048055,38210090 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0365816,38210090 +What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0315052,38210090 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0140282,38210090 +"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0283842",38210090 +What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0280297,38210090 +What is the hs code for BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9337678,38210090 +What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0335663,38210090 +What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0350025,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MED 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9112920,38210090 +What is the hs code for BOTTLE MUELLER HINTON AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0294294,38210090 +What is the hs code for BOTTLE MICRO ASSAY CULTURE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335689,38210090 +What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0343129,38210090 +What is the hs code for BOTTLE PSEUDOMONAS ISOLATION AG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9129525,38210090 +What is the hs code for BOTTLE RHAMNOSE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0265844,38210090 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0352348,38210090 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0352348,38210090 +What is the hs code for BOTTLE BORDET GENGOU AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0272029,38210090 +What is the hs code for SYSTEM GASPAK 100 SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0268611,38210090 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1020437,38210090 +What is the hs code for BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0035732,38210090 +What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01D025M,38210090 +What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0328272,38210090 +What is the hs code for BOTTLE M-PA-C AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0351056,38210090 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0315698,38210090 +"What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM...(MEDIA U/PENGEMBANGAN MIKRO ORGANISME)BATCH1020740,1025909",38210090 +What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1019596,38210090 +What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1025909,38210090 +"What is the hs code for PLATE STERILE RODAC EMPTYN 65X15MM ..(MEDIA U/PENGEMBANGAN MIKRO ORGANISME)BATCH1020740,1025909",38210090 +What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0280975,38210090 +"What is the hs code for VC CALCIUM ASCORBATE DC, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPT2101001",29362700 +"What is the hs code for VC CALCIUM ASCORBATE DC, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPT2011024",29362700 +What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN ) COA MTP04621,28363000 +What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA MTP04521,28363000 +"What is the hs code for BICAR PHARMA EXCIPIENT 0/13 SODIUM BICARBONATE(B.BAKU SUPLEMEN)COA MTP26820,SAMPLE NOCOMM VALUE",28363000 +"What is the hs code for ZINC BISGLYCINATE, POWDER,FOR USE IN FOOD SUPPLEMENTS(BHN BAKU OBAT) COA 3095364",29224900 +"What is the hs code for MAGNESIUM CARBONATE, HEAVY POWDER, PH EUR.10.ED (BHN BAKU OBAT) COA 3091607",28369990 +What is the hs code for SELOHVITA C SODIUM SELENITE... (BHN BAKU OBAT) COA 3091753,28429010 +What is the hs code for GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 21T0008700,13021950 +What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA 8MT2102166,30032000 +What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512103,47069200 +"What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512050, G02512103",47069200 +What is the hs code for SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA L202103-002,35040000 +What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-210202-GS,38249999 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO210101,38249999 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-C0210302,38249999 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO201002,38249999 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO201202,38249999 +What is the hs code for KIGELINE (BHN BAKU KOSMETIK) COA KA210201-B,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210101,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG543 ( BHN BAKU KOSMETIK) COA EG543-210102,38249999 +What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA201105,38249999 +What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA201105,38249999 +What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA201105,38249999 +What is the hs code for WITCH HAZEL ORGANIC DISTILLATE 1:10 (BHN BAKU KOSMETIK) COA HAVD201113-BIO,38249999 +What is the hs code for STARTAB DIRECTLY COMPRESSIBLE STRACH(BHN BAKU PEWARNA TABLET) COA WP837778,35051010 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH641796,38249999 +What is the hs code for OPADRY II RED ( BHN BAKU PEWARNA TABLET) COA SH641795,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH641850,38249999 +What is the hs code for PRAYPHOS MKP FG (BHN BAKU KOSMETIK) COA 2023301,29420000 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122100700, 122100705",28363000 +What is the hs code for SALICYLIC ACID PHARMACEUTICAL (BHN BAKU KOSMETIK) COA RAS2027500,29182100 +What is the hs code for EXTRAPONE (R) GINSENG (BHN BAKU KOSMETIK) COA 10300038,13021950 +What is the hs code for EXTRAPONE (R) SEA EXTRACTS N (BHN BAKU KOSMETIK) COA 10300030,13021950 +What is the hs code for SHEA BUTTER REFINED (BHN BAKU KOSMETIK) COA 156042,15159011 +What is the hs code for PRAYPHOS DKP FG 25KG BG (BHN BAKU KOSMETIK) COA 2101932,28352400 +"What is the hs code for ASCORBYL PALMITATE ,25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ01016100,UQ01016101",29362700 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT20100046,29362600 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02008093,32041900 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL02101679",29362700 +"What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT20120057,UT21010002,UT21010003",29362500 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT20100117,29362800 +What is the hs code for AMBROXOL HYDROCHLORIDE POWDER (BHN BAKU OBAT) COA AHM/21012,29221990 +What is the hs code for GLIMEPIRIDE USP (BHN BAKU OBAT) COA GLI/21002,29359000 +What is the hs code for FERROUS FUMARATE (BHN BAKU OBAT) COA.2021/69,29171900 +"What is the hs code for CEFADROXIL MONOHYDRATE POWDER (PURIDROX COMPACTED) BHN BAKU OBAT, COA B340241,B340240,B340244",29419000 +"What is the hs code for CEFADROXIL MONOHYDRATE POWDER (PURIDROX COMPACTED) BHN BAKU OBAT, COA B340252,B340253,B340254",29419000 +What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE02002007,29362100 +What is the hs code for PX 204005 (BHN BAKU MAKANAN) COA XW92101249,21069059 +What is the hs code for PREMIX BALITA (BHN BAKU MAKANAN) COA XW92102006,21069059 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12007039,29362900 +"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT20100290,UT20120323",29362800 +"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU MAKANAN) COA UE02002010, UE02002011",29362900 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT20110036,29362100 +"What is the hs code for D-A-TOCOPHERYL ACETATE, 20KG JUG (BHN BAKU SUPLEMEN) COA XH20200401",29362800 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20040030,32041900 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030076,29362200 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE02005013,29362900 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20040050,29362300 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCTBHN BAKU SUPLEMEN) COA WB20030076,29362200 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12007039,29362900 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030069,29362200 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02009412,29362800 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ00703525,29362200 +"What is the hs code for DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01911652",29362400 +"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0220040041",29420000 +"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0320051770,0320051771,0320051772",29420000 +"What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU SUPLEMEN) COA AVD0034088",29362500 +"What is the hs code for D-PANTHENOL 75L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01909355",29362400 +What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00652698,29420000 +"What is the hs code for PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0820010214,215,339,340",29420000 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708200101,0708200110,0708200113,0708200114",29420000 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0520060029",29420000 +What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES2007442,29420000 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02008103",29362400 +"What is the hs code for RANITIDINE HCL USP (BHN BAKU OBAT) COA RH/21/064,RH/21/065.RH/21/066",29321900 +"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED GRADE A)BHN BAKU OBAT,COA M533589,590,591,594,595,...",29411019 +What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0051887,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH642604,38249999 +What is the hs code for OPADRY II WHITE ( BHN BAKU PEWARNA TABLET) COA SH642339,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH642353,38249999 +What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH642535,38249999 +What is the hs code for OPADRY AMB GREY ( BHN BAKU PEWARNA TABLET) COA SH642533,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH640900,38249999 +What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113549,29339990 +"What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02002806, TL02002807",29362400 +"What is the hs code for STAY-C(R)50, 20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02010036",29362700 +What is the hs code for GLUCOSAMINE SULFATE 2KCL (BHN BAKU OBAT) COA JSTK210305,29329990 +What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-200705,29397900 +What is the hs code for SODIUM VALPROATE (BAHAN BAKU OBAT) COA 454854 (V6590),29159090 +"What is the hs code for VC ASCORBIC ACID DC 97PCT,25KG BAL( BAHAN BAKU SUPLEMEN)COA HPG2101008,1009,1010,2003",29362700 +"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA U/PENGEMBANGAN MIKRO ORGANISME)BATCH0338176,0338178",38210090 +What is the hs code for BACTO CASAMINO ACIDS TECHNICAL 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1012628,38210090 +What is the hs code for DIFCO BEEF EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0182357,38210090 +What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2248533,38210090 +What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2248533,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0265643,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0265643,38210090 +What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9296104,38210090 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE02010106,32041900 +What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT21010003,29362500 +What is the hs code for SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202103-011,35040000 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO210302,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-210102,38249999 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO201002,38249999 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO201202,38249999 +"What is the hs code for ASTABIO AR10 (ASTAXANTHIN OIL 10PCT) BHN BAKU OBAT, COA.2012091",32030010 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB20090234,29362800 +What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB21020738,29362800 +What is the hs code for DRY VITAMIN E ACETATE 950NS (BHN BAKU SUPLEMEN) COA WB21020738,29362800 +What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB20120277,29362100 +What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB21020738,29362800 +What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB21020738,29362800 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB20090239,29362800 +What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB21020738,29362800 +What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB20120278,29362100 +"What is the hs code for SODIUM FEREDETATE, POWDER, BP2021 (BHN BAKU OBAT) COA 3082860-1",29224900 +What is the hs code for POTASSIUM L-ASPARTATE 0.5-HYDRATE (BHN BAKU OBAT) COA 3097106,29224900 +What is the hs code for TRICALCIUM CITRATE 4-HYDRATE (BHN BAKU OBAT) COA 3097610,29181590 +"What is the hs code for ZINC SULFATE 7-HYDRATE,CRYST,PH EUR.10.ED (BHN BAKU OBAT) COA 3095383",28332920 +"What is the hs code for ZINC SULFATE 1-HYDRATE, POWDER,USP 43 (BHN BAKU OBAT) COA 3095123",28332920 +"What is the hs code for MAGNESIUM CARBONATE, HEAVY (BHN BAKU OBAT) COA 3091896",28369990 +"What is the hs code for CALCIUM ACETATE POWDER,PURITY ACC TO E263 (BHN BAKU OBAT) COA 3092122",29152910 +"What is the hs code for FLUOROMETHOLONE MICRONISED USP BP JP (BHN BAKU OBAT) COA 2001454818,2001454818",29372200 +What is the hs code for SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA 201126042,38249999 +"What is the hs code for SERASENSE SF CM5 (BAHAN BAKU KOSMETIK) COA PA10302036,PA10302044,PA10302046",29319049 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SAC,38249999 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA SAH,38249999 +What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP836905,39059990 +What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP834328,39059990 +What is the hs code for FD&C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP831236:BA3424,32151900 +What is the hs code for D & C YELLOW #10 AL 15PCT-20PCT (BHN BAKU PEWARNA TABLET) COA WP831857:BA3854,32151900 +What is the hs code for FD & C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP831242:BA3659,32151900 +What is the hs code for OPADRY ORANGE (BHN BAKU PEWARNA TABLET) COA GA686695,38249999 +What is the hs code for OPADRY AMB II GREEN (BHN BAKU PEWARNA TABLET) COA SH640572,38249999 +What is the hs code for OPADRY AMB II PINK (BHN BAKU PEWARNA TABLET) COA SH640500,38249999 +What is the hs code for ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH640497,39061090 +What is the hs code for OPADRY YELLOW (BHN BAKU PEWARNA TABLET) COA SH640546,38249999 +What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH640504,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH641024,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH641025,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH641358,39061090 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH639147,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH640499,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH640485,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH640490,38249999 +What is the hs code for OPADRY AMB MAROON (BHN BAKU PEWARNA TABLET) COA SH640488,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH642194,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH642195,38249999 +What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH640503,39061090 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH640487,38249999 +What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH640652,39061090 +What is the hs code for AMBROXOL HYDROCHLORIDE EP (BHN BAKU OBAT) COA CEPABX 004 H 20,29221990 +What is the hs code for ISONIAZID USP (BHN BAKU OBAT) COA21025/INH,29333910 +What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2020101003,21012020 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA006214,28363000 +What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED (BHN BAKU UTK PAKAN TERNAK) COA ROA1021,28363000 +What is the hs code for NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 19LNC1010SQ638,27101990 +What is the hs code for MILD TALCUM MOD1 FM2 (BHN BAKU KOSMETIK) COA 10300225,13021950 +What is the hs code for BARCROFT TM AL HYD GEL VISCO-9 USP (BHN BAKU OBAT) COA 102102002,28183000 +"What is the hs code for CATECHINS TEAVIGO 1KG (BHN BAKU KOSMETIK), COA 101191",21012020 +What is the hs code for CATECHINS TEAVIGO (BHN BAKU KOSMETIK) COA 101191,21012020 +What is the hs code for CATECHINS TEAVIGO (BHN BAKU KOSMETIK) COA 101191,21012020 +What is the hs code for GINKGO LEAVES EXTRACT (BHN BAKU KOSMETIK) COA 21030187,13021950 +What is the hs code for GREEN TEA FAIRTRADE DISTILLATE (BHN BAKU KOSMETIK) COA 21010286,38249999 +"What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 100KG FIT (BHN BAKU SUPLEMEN) COA WB21019065",29362700 +What is the hs code for GREEN TEA DRY DEC.EX./PHOSPHOL (BHN BAKU SUPLEMEN) COA 19S0269701,13021950 +What is the hs code for P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 32347/M1,13021990 +What is the hs code for CENTELLA ASIATICA/PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 20S0317200,38249999 +What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 20S0203200,38249999 +What is the hs code for SERENOA REPENS PURIFIED EXT (BHN BAKU SUPLEMEN) COA 20S0245600,38249999 +What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 20S0203200,38249999 +What is the hs code for P.GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 20S0004000,13021990 +What is the hs code for SERENOA REPENS PURIFIED EXT(BHN BAKU SUPLEMEN) COA 20S0245600,38249999 +What is the hs code for KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 211120,25070000 +"What is the hs code for IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S366/20, S61/21",38029090 +What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB040121,39123900 +"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B291220",39123900 +"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB040121",39123900 +"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B291220",39123900 +What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL (BHN BAKU UTK PEWARNA TABLET) COA D011K1QL02,39123900 +What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL (BHN BAKU UTK PEWARNA TABLET) COA D180KCT003,39123900 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20210305,17029019 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP21034451, XP21034452",29211900 +What is the hs code for TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA R7043,29225090 +What is the hs code for TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA R7044,29225090 +What is the hs code for DOCUSATE SODIUM BP (BHN BAKU OBAT) COA DSW1004,29171900 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20100129,29362900 +What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2004047,29362300 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL02008098",29362400 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030164,29362900 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT20060124,29362400 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00602917,29362200 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00502883,29362200 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00502883,29362200 +"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00502883,2888,2889",29362200 +"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2004047,UEB2005054",29362300 +"What is the hs code for D-A-TOCOPHERYL-ACETATE, 20KG JUG (BHN BAKU SUPLEMEN) COA XH20200401",29362800 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20090011,29362900 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20090017,29362900 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT20100129,29362900 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12007039,29362900 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT(BHN BAKU SUPLEMEN) COA WB20040050,29362300 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030069,29362200 +"What is the hs code for D-A-TOCOPHERYL-ACETATE ,20KG JUG (BHN BAKU SUPLEMEN) COA XH20200401, XH0200703",29362800 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030157,29362900 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT20050199,29362100 +What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW92102298,21069059 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20100129,29362900 +"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000194008",29362900 +"What is the hs code for STAY-C (R) 50, 20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02010036, UE02010037",29362700 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL02008098",29362400 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE ,20KG BOX (BHN BAKU MAKANAN) COA QZ11210107",29362500 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02010422,29362800 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT20060124,29362400 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ00910748,29362300 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12007039,29362900 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12007039,29362900 +"What is the hs code for NIACINAMIDE FCC, 25KG BOX (BHN BAKU MAKANAN) COA 0000193588",29362900 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE ,20KG BOX (BHN BAKU MAKANAN) COA QZ11210107",29362500 +What is the hs code for DRY VITAMINN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02010422,29362800 +What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA 0000050301,33029000 +What is the hs code for PLAISANCE P116808 (BHN BAKU OBAT) COA 0000050302,33029000 +What is the hs code for THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000049261,33029000 +"What is the hs code for JAGUAR HP 105 SGI, 25KG CARDBOARD CARTON (BHN BAKU KOSMETIK) COA H2009167H",38249999 +What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED (BHN BAKU UTK PAKAN TERNAK) COA ROA1021,28363000 +What is the hs code for BARCROFT TM AL HYD GEL VISCO-9 USP (BHN BAKU OBAT) COA 102102002,28183000 +"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP(BHN BAKU OBAT) COA102002043,102102001",28183000 +What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M-31.0PCT (BHN BAKU OBAT) COA 102129006,28161000 +What is the hs code for DIENOGEST MICRONIZED (BHN BAKU OBAT) COA NA2936M,29362300 +What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA.MLAH0090221,29341000 +What is the hs code for SILDENAFIL CITRATE (BHN BAKU OBAT) COA SLC/03/21/001,29335990 +"What is the hs code for OMEPRAZOLE SODIUM STERILE (BAHAN BAKU OBAT), COA SI/OPZ/00080321",29333990 +What is the hs code for PANTOPRAZOLE SODIUM STERILE (BHN BAKU OBAT) COA SI/PPZ/00190221,29333990 +"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC7521T",27101990 +What is the hs code for AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 155917,15159011 +What is the hs code for LEVOFLOXACIN HEMIHYDRATE USP (BHN BAKU OBAT) COA LF20100039,29349990 +"What is the hs code for CITRIC ACID ANHYDROUS (KOSHER-PASSOVER)BHN BAKU MAKANAN, COA UJ107",29181400 +"What is the hs code for TRISODIUMCITRATE DIHYDRATE FINE GRANULAR (BHN BAKU MAKANAN), COA UJ104, UJ105",29181400 +"What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET), COA DT713232",32151900 +"What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET), COA DT713233",32151900 +What is the hs code for OPALUX MAROON (BHN BAKU PEWARNA TABLET) COA DT713234,32151900 +What is the hs code for OPASPRAY YELLOW (BHN BAKU UTK PEWARNA TABLET) COA DT713235,32151900 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH641865,38249999 +What is the hs code for OPADRY II WHITE ( BHN BAKU PEWARNA TABLET) COA SH641983,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH641984,38249999 +"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP(BHN BAKU OBAT) COA 102002043",28183000 +"What is the hs code for METHISOPRINOL (BHN BAKU OBAT) COA MTP1020082, MTP1030126",29349990 +What is the hs code for CARBAZOCHROME SODIUM SULFONATE ORAL G (BHN BAKU OBAT)COA AC10101/10304,29339990 +What is the hs code for PEG 400 (BAHAN BAKU KOSMETIK) COA.AKW0001975,39072010 +"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A, 20KG BA(BHN BAKU MAKANAN)COA WB20080546,20110547,110548",29362100 +"What is the hs code for MIXED TOCOPHEROLS 95,20KG JUG (BHN BAKU MAKANAN) COA XH20200403",29362800 +"What is the hs code for MIXED TOCOPHEROLS 95,20KG JUG (BHN BAKU MAKANAN) COA XH20200403",29362800 +"What is the hs code for CYPROHEPTADINE HCL (BHN BAKU OBAT) COA CYP/11201021, CYP/01211004",29333990 +What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2248533,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0265643,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0281167,38210090 +What is the hs code for BACTO CASAMINO ACIDS TECHNICAL 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1046639,38210090 +What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0182358,38210090 +What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0216774,38210090 +What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0216774,38210090 +"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02011131",29362400 +"What is the hs code for STAY-C(R)50, 20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02010037",29362700 +"What is the hs code for STAY-C(R)50, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UE02010030",29362700 +"What is the hs code for STAY-C(R) 50, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UE02010030,UE02002019",29362700 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0520060030",29420000 +"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000194009",29362900 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02005013,29362900 +"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT20100286,287,327",29362800 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02005013,29362900 +"What is the hs code for PARSOL (R)HS, 20KG BOX (BHN BAKU KOSMETIK) COA HS1230620,HS1240620",29420000 +"What is the hs code for PARSOL (R)HS, 20KG BOX (BHN BAKU KOSMETIK) COA HS1240620",29420000 +"What is the hs code for NIACINAMIDE PC,25KG BOX (BHN BAKU KOSMETIK) COA 0000194009",29362900 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708200114,115,116",29420000 +"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02009113",29362400 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20090125,29362900 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL02009106",29362400 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11210107,QZ11210108",29362500 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12007039,29362900 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU MAKANAN) COA UE02002011,29362900 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU MAKANAN) COA UT20060003,29362900 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030157,29362900 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20060039,32041900 +What is the hs code for DRY VITAMIN K1 5PCT SD(BHN BAKU SUPLEMEN) COA UT20060003,29362900 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT20060003,29362900 +What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT(BHN BAKU SUPLEMEN) COA WB20030057,29362500 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20060039,32041900 +"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02101623",29362400 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19120107,29362800 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19120107,29362800 +What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED (BHN BAKU UTK PAKAN TERNAK ) COA MTP00921,28363000 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE IPH (BHN BAKU OBAT) COA RBA05621BB,28363000 +What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M-31.0PCT (BHN BAKU OBAT) COA 102129006,28161000 +What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M-31.0PCT (BHN BAKU OBAT) COA 102129006,28161000 +What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 210205,13021950 +What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 210109,13021950 +What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 201217,33012990 +What is the hs code for MONENDOX 200 BMP (BHN BAKU UTK PAKAN TERNAK) COA 2102251,29419000 +What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN ) COA MTP07621,28363000 +What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED (BHN BAKU UTK PAKAN TERNAK ) COA MTP01121,28363000 +"What is the hs code for LEMON SECRETS (LEMON 40 BRIX )BAHAN BAKU KOSMETIK, COA 01/20GL4",28399000 +"What is the hs code for LEMON SECRETS (LEMON 40 BRIX)BAHAN BAKU KOSMETIK) COA 01/20GL4,SAMPLE NO COMM VALUE",28399000 +What is the hs code for TRANSCUTOL P (BHN BAKU OBAT) COA 182962,28399000 +What is the hs code for TEFOSE 63 (BAHAN BAKU OBAT) COA 182255,28399000 +What is the hs code for TEFOSE 63 (BHN BAKU OBAT) COA 183568,28399000 +What is the hs code for TABCOAT TC WHITE (BHN BAKU PEWARNA TABLET) COA GA686229,32151900 +What is the hs code for OPADRY SGR TRANSLUCENT (BHN BAKU PEWARNA TABLET) COA GA686455,38249999 +What is the hs code for OPADRY SGR TRANSLUCENT (BHN BAKU PEWARNA TABLET) COA GA686455,38249999 +What is the hs code for OPADRY SGR RED (BHN BAKU PEWARNA TABLET) COA GA686603,38249999 +What is the hs code for OPADRY SGR RED (BHN BAKU UTK PEWARNA TABLET) COA GA686602,38249999 +"What is the hs code for VC SODIUM ASCORBATE REGULAR, 25KG BAL (BAHAN BAKU MAKANAN) COA HPN2101220 ,2228,2291,3226,...",29362700 +"What is the hs code for VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU MAKANAN) COA HPB2103033",29362700 +"What is the hs code for VC ASCORBIC ACID REGULAR ,25KG BAL(BHN BAKU MAKANAN) COA HPB2103030",29362700 +"What is the hs code for VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU MAKANAN) COA HPB2103105, HPD2103054",29362700 +"What is the hs code for VC SODIUM ASCORBATE REGULAR, 25KG BAL (BAHAN BAKU MAKANAN) COA HPN2103251, HPN2103269",29362700 +"What is the hs code for VC SODIUM ASCORBATE REGULAR ,25KG BAL(BHN BAKU MAKANAN) COA HPN2103258 S/D 3263",29362700 +"What is the hs code for MEG-3 3020 EE P OIL,190KG MEF (BHN BAKU SUPLEMEM) COA TS00016096 -",29362500 +What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105715019,17021100 +What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210304,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210304,38249999 +What is the hs code for GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK) COA EG209-201102,38249999 +What is the hs code for ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (BHN BAKU KOSMETIK) COA ROSD210101-BIO,38249999 +What is the hs code for WITCH HAZEL ORGANIC DISTILLATE 1:10 (BHN BAKU KOSMETIK) COA HAVD210101-BIO,38249999 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO201202,38249999 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO201202,38249999 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO210301,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210303,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210303,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210303,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210303,38249999 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210301,38249999 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SAC,38249999 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SAC,38249999 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA SBJ,38249999 +What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA SAD,38249999 +What is the hs code for LIPOID PPL-600 (BHN BAKU OBAT) COA 577200-2210229/001--003(3),29232010 +What is the hs code for DOPAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 21100115,29222900 +What is the hs code for KETOROLAC TROMETHAMOL/TROMETHAMINE (BHN BAKU OBAT) COA 20100664,29339990 +What is the hs code for TRETINOIN ( BAHAN BAKU OBAT ) COA TRER-20201103,29362900 +What is the hs code for SCHISANDRA EXTRACT (BHN BAKU OBAT) COA SCE03-21021701,13021990 +What is the hs code for NEOMYCIN SULPHATE (BHN BAKU OBAT) COA 202103005,29419000 +What is the hs code for CHONDROITIN SULPHATE SODIUM (BHN BAKU OBAT) COA HS2103073,29362900 +What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103860221,17021100 +What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104310221,17021100 +What is the hs code for FLOWLAC (R) 100H (BHN BAKU OBAT) COA L105810921,17021100 +What is the hs code for GRANULAC (R) 70 (BHN BAKU OBAT) COA L101844820,17021100 +What is the hs code for METHOCEL E15 PREMIUM LV HYDROXYPROPYL (BHN BAKU UTK PEWARNA TABLET) COA D011K3JL02,39123900 +What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL (BHN BAKU UTK PEWARNA TABLET) COA D180K2O002,39123900 +What is the hs code for ETHOCEL STANDARD 10 PREMIUM ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET)COA D184K9A021,39123900 +What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU UTK PAKAN TERNAK) COA 202100007,28183000 +"What is the hs code for ECODIAR POWDER (HERACLEOTICUM)B. BAKU UTK OBAT UTK PAKAN TERNAK, COA P0118032021",33029000 +"What is the hs code for DOKUDAMI LIQUID B (BHN BAKU KOSMETIK), COA 210655",13021990 +"What is the hs code for DERMAVEIL (BHN BAKU KOSMETIK), COA 210101",13021990 +"What is the hs code for ACNE BUSTERS (BHN BAKU KOSMETIK),COA 210113",38249999 +"What is the hs code for CLAIR BLANCHE -II (BHN BAKU KOSMETIK),COA 210098",38249999 +"What is the hs code for IZAYOI (BHN BAKU KOSMETIK), COA 210453",13021990 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 202302,38249999 +What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 210177,13021990 +What is the hs code for ROSE HIPS LIQUID B (BHN BAKU KOSMETIK) COA 210171,13021990 +What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122100858,28363000 +"What is the hs code for IMMUNITY BISCUIT PREMIX (BHN BAKU MAKANAN), COA XW92102276",21069059 +"What is the hs code for PROTIBOND TG-AK (BAHAN BAKU MAKANAN) COA AK21031102, AK21031103",21069091 +What is the hs code for HYUNDAI BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK)COA MSEEC-031210,38249999 +"What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK)COA GSC-K-041410,GSC-K-010231",38249999 +"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) BHN BAKU KOSMETIK,COA CHP1210315",38249999 +"What is the hs code for HYUNDAI BIOLAND COMPAREX (BHN BAKU KOSMETIK) COA COEX-022800,COEX-020331",38249999 +What is the hs code for HYUNDAI BIOLAND GLA-40 (BHN BAKU KOSMETIK) COA GLCP-061110,38249999 +What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK)COA OHA-032321,38249999 +"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-011411,HMVBD-020331",38249999 +What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 021821,28321000 +What is the hs code for HYUNDAI BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSFAC-011690,38249999 +What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-021531,38249999 +What is the hs code for HYUNDAI BIOLAND BIO-BLACK PEARL POWDER (BHN BAKU KOSMETIK) COA PDEG-010221,38249999 +"What is the hs code for HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-011020, KFB-L-012621",38249999 +"What is the hs code for SURELEASE ETHYLCELLULOSE...(BHN BAKU PEWARNA TABLET), COA IN543988",32151900 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH641224,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH641225,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH641227,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH641226,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH641666,38249999 +What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH640875,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH641359,39061090 +What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH640626,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH640872,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH641501,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH640490,38249999 +What is the hs code for OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH641860,38249999 +What is the hs code for OPADRY II BLUE (BHN BAKU PEWARNA TABLET) COA SH642611,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH640901,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH640702,38249999 +What is the hs code for OPADRY AMB II PURPLE (BHN BAKU PEWARNA TABLET) COA SH640902,38249999 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH640873,38249999 +What is the hs code for MANNOGEM (R) XL OPAL SPRAY DRIED MANNITOL USP/EP (BHN BAKU OBAT) COA 122000605,29054300 +What is the hs code for EFFERSODA (R)12 (BHN BAKU OBAT) COA 122100859,28363000 +What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122100718,29054300 +What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 8035700,38249999 +"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX POWDER)BHN BAKU OBAT,COA M485256,M485266",29411019 +"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED) COA M533712,M533725,M533726",29411019 +"What is the hs code for XANTHAN FFPC (BHN BAKU OBAT), COA 83360405",39139090 +"What is the hs code for ASTABIO AR10 (ASTAXANTHIN OIL 10PCT)BHN BAKU OBAT, COA.2012091",32030010 +"What is the hs code for ASTABIO AW1 (ASTAXANTHIN WATER SOLUBLE 1)BHN BAKU OBAT, COA 2101261",32030010 +What is the hs code for MEFENAMIC ACID POWDER (BHN BAKU OBAT) COA MA2103245 S/D MA2103254,29224900 +What is the hs code for CETIRIZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA 20030CZ6RII,29335990 +"What is the hs code for VC ASCORBIC ACID DC 97PCT, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG2102002, 2003,3001,3002",29362700 +"What is the hs code for FERRIC PYROPHOSPHATE,APPROX.25PCT FE (BHN BAKU MAKANAN) COA 3096453",28353990 +What is the hs code for FD&C BLUE #2/INDIGO CARMINE AL... (BHN BAKU PEWARNA TABLET) COA WP837617:BA6892,32151900 +What is the hs code for FD & C YELLOW #6/SUNSET YELLOW... (BHN BAKU PEWARNA TABLET) COA WP831241:BA3595,32151900 +What is the hs code for FD & C YELLOW #6/SUNSET YELLOW... (BHN BAKU PEWARNA TABLET) COA WP831241:BA3594,32151900 +What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829018830L,38249999 +What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782018592M,38249999 +What is the hs code for NEUTRAZEN TM (BHN BAKU KOSMETIK) COA 828019134M,38249999 +What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829018830L,38249999 +What is the hs code for LANACHRYS 2B PF (PRESERVATIVE) (BHN BAKU KOSMETIK) COA 793058829L,38249999 +What is the hs code for MAGNESIUM CHLORIDE 6-HYDRATE CRYST (BHN BAKU SUPLEMEN) COA 3085903,28273100 +What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0051950,38249999 +What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0052167,38249999 +What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK)COA 202237,13021990 +What is the hs code for DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2010022,28352510 +What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1021690,38210090 +What is the hs code for PLATE TSA IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1050113,38210090 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1050113,38210090 +What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1050022,38210090 +"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0220040024, SAMPLE NO COMM VALUE",29420000 +What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2108850011,29362600 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122100859 , 122100860",28363000 +What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA L122100860,28363000 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH643281,38249999 +What is the hs code for OPADRY YELLOW ( BHN BAKU PEWARNA TABLET) COA SH643311,38249999 +"What is the hs code for BOTTLE BIGGY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1047463",38210090 +"What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1025909",38210090 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0272801,38210090 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0322946,38210090 +"What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283842,1005238",38210090 +"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0343334",38210090 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0183144,38210090 +What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0063472,38210090 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0282615,38210090 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1047444,38210090 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0140282,38210090 +"What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0321060",38210090 +What is the hs code for BOTTLE RHAMNOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0182029,38210090 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B03C343M,38210090 +What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1019596,38210090 +What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0286434,38210090 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1026705,38210090 +What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283868,38210090 +What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335617,38210090 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0335781,38210090 +What is the hs code for BOTTLE ANTIBIOTIK MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0293248,38210090 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0365805,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0294089,38210090 +"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1026614",38210090 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0272801,38210090 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1005238,38210090 +What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0280297,38210090 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1026627,38210090 +What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0286355,38210090 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1007107,38210090 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1040275,38210090 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0322897,38210090 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0282615,38210090 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1047444,38210090 +What is the hs code for BOTTLE LAURYL TRYPROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0300743,38210090 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0365816,38210090 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0350031,38210090 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1042590,38210090 +What is the hs code for BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9337678,38210090 +What is the hs code for BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0343861,38210090 +What is the hs code for BOTTLE NITRATE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1019625,38210090 +What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0272335,38210090 +What is the hs code for BOTTLE YPD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1020471,38210090 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01D034M,38210090 +What is the hs code for BOTTLE MARINE BROTH 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0272398,38210090 +What is the hs code for BOTTLE BORDET GENGOU AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1026784,38210090 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1020442,38210090 +What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0365704,38210090 +What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1025737,38210090 +What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02D068M,38210090 +What is the hs code for INDICATOR STRIPS GASPAK DRY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0328272,38210090 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0336852,38210090 +What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU OBAT ) COA MTP07821,28363000 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE IPH (BHN BAKU OBAT) COA RBA0832100,28363000 +What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 210223062,38249999 +"What is the hs code for DRY VITAMIN A PALMITATE 250 S/N-B (BHN BAKU MAKANAN) COA WB20120489, SAMPLE NO COMM VALUE",29362100 +What is the hs code for METHYLCOBALAMINE JP (BHN BAKU OBAT) COA SLL/MCI/0620004,29362600 +What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102069010,28161000 +What is the hs code for ISOLATE SOY PROTEINSSPRO-90G (BHN BAKU MAKANAN) COA 202103-040,35040000 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP21034044, XP21034045",29211900 +What is the hs code for 985-L-MENTHOL CRYSTALS INDIAN NATURAL (BHN BAKU KOSMETIK) COA NFPL-MEN-20-22/63270,38249999 +What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK)COA SFP-N-010231,38249999 +"What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK),COA CLHW-022231",38249999 +What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-021531,38249999 +What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-032321,38249999 +What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-010231,38249999 +"What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK), COA 031021",28321000 +What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) BHN BAKU KOSMETIK) COA CHP1210325,38249999 +What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 031021,28321000 +What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-021380,38249999 +What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-030941,38249999 +What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-051900,38249999 +What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-020711,38249999 +What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-010231,38249999 +What is the hs code for HYUNDAI BIOLAND NEWAPLE (BHN BAKU KOSMETIK) COA NWPB-042890,38249999 +What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-022231,38249999 +What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-020711,38249999 +"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG210310, MCVG210305",29362700 +What is the hs code for TABCOAT TC WHITE (BHN BAKU PEWARNA TABLET) COA GA685115,32151900 +What is the hs code for HYDROCORTISONE ACETATE EP7/USP42 (BHN BAKU OBAT) COA NEHAC210103,29372200 +What is the hs code for DEXAMETHASONE BP2010/USP41 (BHN BAKU OBAT) COA NED210407,29372200 +What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE EP6/USP42 (BHN BAKU OBAT) COA NEDNA210309,29372200 +"What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX2103050, 3AX2103051",29181400 +What is the hs code for EXTRAPONE (R) LICORICE GW P(BHN BAKU KOSMETIK) COA 10300009,38249999 +What is the hs code for EXTRAPONE (R) GINSENG (BHN BAKU KOSMETIK) COA 10300039,38249999 +What is the hs code for EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300049,38249999 +What is the hs code for EXTRAPONE (R) CUCUMBER GW (BHN BAKU KOSMETIK) COA 10300022,38249999 +What is the hs code for NEO EXTRAPONE (R) LEMON (BHN BAKU KOSMETIK) COA 10300015,38249999 +What is the hs code for C47-051 SUNCROMA TITANIUM DIOXIDE (BHN BAKU KOSMETIK) COA 2830740100101,38249999 +What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02D043M,38210090 +What is the hs code for DROPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B02D060M,38210090 +What is the hs code for DROPPER INDOLE (MEDIA UTK PNGEMBANGAN MIKROORGANISME) BATCH B02D043M,38210090 +"What is the hs code for VIAL E COLI H ANTISERUM H7 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0212196",38210090 +What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1032197,38210090 +What is the hs code for BOTTLE HEMOGLOBIN SOL 2PCT 100ML 10EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1035231,38210090 +What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0037326,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0097374,38210090 +"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0065943",38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0114639,38210090 +What is the hs code for VIAL SAL O ANTIS GRP B FLR 1/4/5/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0205165,38210090 +What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0219127,38210090 +What is the hs code for VIAL E COLL O ANTISERUM O157 SEROL TEST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0094884,38210090 +What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1021723,38210090 +What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0328195,38210090 +What is the hs code for VIAL SAL H ANTISERUM B 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0240783,38210090 +What is the hs code for VIAL SAL H ANTISERUM C 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1029886,38210090 +What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0329828,38210090 +What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0336719,38210090 +What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0336719,38210090 +What is the hs code for ROMAN CHAMOMILLE ORGANIC DISTILLATE 1:1 (SB) (BHN BAKU KOSMETIK)COA ANND210201-BIO,38249999 +What is the hs code for ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (SB) (BHN BAKU KOSMETIK)COA ROSD210101-BIO,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS210101,38249999 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO210301,38249999 +"What is the hs code for SERASENSE SF CM5 (BAHAN BAKU SUPLEMEN) COA PA10315017,PA10326011,PA10326013,6025",29319049 +What is the hs code for SODIUM VALPROATE (BAHAN BAKU OBAT) COA 455286 (V6661),29159090 +What is the hs code for 1400/1700 SUGLETS 1400/1700 (12/14 MESH) BHN BAKU PEWARNA TABLET) COA ST516178,32151900 +"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) BAHAN BAKU KOSMETIK, COA 01/20GL4",28399000 +"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK,COA 01/20GL4, SAMPLE NO COMM VALUE",28399000 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122100705, 122100858",28363000 +"What is the hs code for MIAMI SCG(S) (BHN BAKU KOSMETIK),COA 21040155",34021190 +"What is the hs code for FERROUS FUMARATE,FINE POWDER (BHN BAKU MAKANAN) COA 3097618",29171900 +What is the hs code for FERROUS GLUCONATE (BHN BAKU OBAT) COA 3089082,29181600 +"What is the hs code for FERROUS GLUCONATE POWDER,PH EUR 10.ED (BHN BAKU OBAT) COA 3096140",29181600 +"What is the hs code for MAGNESIUM OXIDE, LIGHT POWDER BP2021(BHN BAKU OBAT) COA 1104435",25199010 +"What is the hs code for FERROUS SULFATE DRIED,POWDER,USP43 (BHN BAKU OBAT) COA 3096689/3087912",28332920 +"What is the hs code for CALCIUM ACETATE, POWDER, PURITY ACC.TO E263(BHN BAKU OBAT) COA 3092322",29152910 +What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA.MLAH0150321,29341000 +What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA 21100155,29391900 +What is the hs code for ETHOCEL STANDARD 20 PREMIUM ETHYLCELLULOSE (DOW) (BHN BAKU PEWARNA TABLET) COA D184KBI021,39123900 +What is the hs code for ETHOCEL STANDARD 20 PREMIUM ETHYLCELLULOSE (DOW) (BHN BAKU PEWARNA TABLET) COA D184K4R021,39123900 +What is the hs code for PIPERONYL BUTOXIDE (BHN BAKU UTK PAKAN TERNAK) COA 20210328,29329990 +"What is the hs code for SUCRALOSE(JKSS00) BHN BAKU OBAT, COA 21031402",29321400 +What is the hs code for POVIDONE K-25 (BHN BAKU OBAT) COA PK25-210120F11,39059990 +What is the hs code for IRBESARTAN (BHN BAKU OBAT) COA C5055-20-059,29332900 +What is the hs code for CITICOLINE SODIUM (AT25KG) BHN BAKU OBAT) COA 210216,29349990 +"What is the hs code for LEVOFLOXACIN HEMIHYDRATE (FREE ALKALINE)BHN BAKU OBAT, COA C008-2003107",29349990 +What is the hs code for SIMVASTATIN (BHN BAKU OBAT) COA DK40-2102104,29322090 +"What is the hs code for CROSPOVIDONE XL (BHN BAKU OBAT), COA PP210121XL",39059990 +What is the hs code for SODIUM SELENITE IN CARRIER (BHN BAKU SUPLEMEN) COA 3086606,28429010 +"What is the hs code for ZINC OXIDE, POWDER, PH EUR.10.ED (BHN BAKU SUPLEMEN) COA 3093480",28170010 +What is the hs code for MIRASIL DM300 000 A2 (BHN BAKU KOSMETIK) COA 2050F501XD,39100090 +What is the hs code for CITRC ACID MONOHYDRATE (CAM) GRIEB 8-80 MESH E330 (BHN BAKU KOSMETIK) COA THY2011022,29181400 +"What is the hs code for METAMIZOLE SODIUM REGULAR GRADE(BHN BAKU OBAT) COA 2103370,2103371,2103372,2103378",29331900 +"What is the hs code for DOCUSATE SODIUM (BHN BAKU OBAT), COA SD0071533",29171900 +"What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU SUPLEMEN), COA UJ111",29181400 +What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 25022021,25081000 +"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000194009, 0000194010",29362900 +"What is the hs code for BARCROFT TM AL HYD GEL VISC0-9, USP (BHN BAKU OBAT) COA 102102007",28183000 +"What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M.31.0PCT (BHN BAKU OBAT) COA 102129006,102129013",28161000 +What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 21E0801,28399000 +What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105710721,17021100 +"What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB21030542, WB21030543",29362700 +"What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB21030542",29362700 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SCD,38249999 +What is the hs code for PROMOIS HYDROMILK (BHN BAKU KOSMETIK) COA SDN,38249999 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA SCL,38249999 +What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA SAD,38249999 +What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH643377,39061090 +What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 21E0105,28399000 +"What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2008070971,2108890141",29362600 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO)BHN BAKU MAKANAN, COA UT21031046, UT21031047",29362100 +What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1056808,38210090 +"What is the hs code for FENTACARE 2231 EF 25KG PAPER BOX (BHN BAKU KOSMETIK )COA ZH21C1401, ZH21C1502",34029019 +"What is the hs code for LECIGEL TM-5KG (BHN BAKU KOSMETIK) COA 2100503, 2108806",38249999 +What is the hs code for AMISOL TRIO TM -5KG (BHN BAKU KOSMETIK) COA 2103114,38249999 +What is the hs code for ECOGEL TM- 5KG (BHN BAKU KOSMETIK) COA 2105102,38249999 +What is the hs code for LECIGEL TM- 20KG (BHN BAKU KOSMETIK) COA 2108805,38249999 +What is the hs code for ROSALITY TM-5KG (BHN BAKU KOSMETIK) COA 2100901,38249999 +"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0220040042",29420000 +"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000194296, 0000194375",29362900 +What is the hs code for VITAMIN PREMIX 103093-A (BHN BAKU MAKANAN) COA XW92103125,21069059 +What is the hs code for VITAMIN PREMIX 103047-D (BHN BAKU MAKANAN) COA XW92103124,21069059 +"What is the hs code for NIACINAMIDE FCC, 25KG BOX (BHN BAKU MAKANAN) COA 0000194012",29362900 +What is the hs code for FOLIC ACID FOOD GRADE BHN BAKU MAKANAN) COA UT20110206,29362400 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT20060041,32041900 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11210108",29362500 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20090125,29362900 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT20100044,29362900 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ01110814,29362300 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02010448,29362800 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02010448,29362800 +What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW92103133,21069059 +What is the hs code for MINERAL PREMIX HBS08022019 (BHN BAKU MAKANAN) COA XW92103126,21069059 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE02005013,29362900 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12007039,29362900 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT(BHN BAKU SUPLEMEN) COA WB20040050,29362300 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030067,29362200 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT20110036,29362100 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT20100193,29362400 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT20090125,29362900 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL02009114",29362400 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT20090125,29362900 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ01110814,29362300 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL02009114",29362400 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00813458,29362500 +"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02012930",29362400 +What is the hs code for RIBOFLAVIN UNIVERSAL(BHN BAKU SUPLEMEN) COA UQ01110814,29362300 +"What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX(BHN BAKU SUPLEMEN) COA TL02012930",29362400 +"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20090017, UT20120026",29362900 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00813470,29362500 +What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2005054,29362300 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN)COA UQ00813470,29362500 +"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2005054, 55",29362300 +What is the hs code for VP DN03 (BHN BAKU MAKANAN) COA XW92103155,21069059 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT20040087,29362400 +"What is the hs code for NIACINAMIDE FCC, 25KG BOX (BHN BAKU MAKANAN) COA 0000194012",29362900 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT20120200, UT20050199",29362100 +"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL02012930",29362400 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ00602914,29362200 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02010448,29362800 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT20040087,29362400 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP21033316, XP21033317",29211900 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1069992,38210090 +What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA DOC0672121,28363000 +What is the hs code for SILYMARIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 20B0079000,38249999 +What is the hs code for VALERIAN D.H.E> 0.8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 20B0124900,13021990 +What is the hs code for PASSION FLOWER D.H.E>4PCT (BAHAN BAKU SUPLEMEN) COA 20B0079600,13021990 +What is the hs code for SILYBIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0010500,38249999 +"What is the hs code for VALERIAN D.H.E >0,8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 20B0124900",13021990 +What is the hs code for PASSION FLOWER D.H.E>4PCT (BHN BAKU SUPLEMEN) COA 20B0157300,13021990 +What is the hs code for NYSTATIN POWDER ROW (BHN BAKU OBAT) COA C114492,29419000 +"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000194376, 0000194377",29362900 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0520060053",29420000 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0321050277,278,279",29420000 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708200116,117,118,119",29420000 +"What is the hs code for STAY-C (R) 50, 20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02011039, UE02101010",29362700 +"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN),COA UQ00602915",29362200 +"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1906088, UEB1906089",29362300 +"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92103200, XW92103201",21069059 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE02005016,29362900 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA MTP09821,28363000 +What is the hs code for VEEGUM K 20K BAG(BHN BAKU KOSMETIK) COA 81713473,25081000 +What is the hs code for RUGENER DREINKRONEN HEILKREIDE 25K BAG (BHN BAKU KOSMETIK) COA 81713381,25090000 +What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2248533,38210090 +What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2248533,38210090 +What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2248533,38210090 +What is the hs code for BACTO TRYPTONE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0314230,38210090 +"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0220040024",29420000 +"What is the hs code for D-PANTHENOL 75L ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01909355",29362400 +"What is the hs code for STAY-C(R) 50, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UE02010030",29362700 +"What is the hs code for STAY-C (R) 50, 20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02010037",29362700 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK),COA TL02011131",29362400 +What is the hs code for BEAUPLEX (TM) 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF20164020,29420000 +"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU MAKANAN) COA XW92103205, XW92103206",29420000 +What is the hs code for LUBRIPHARM (R) SSF NF/EP/JP SODIUM STEARYL FUMARATE (B.BAKU OBAT) COA 122100855,28161000 +What is the hs code for ETHOCEL STANDARD 4 PREMIUM (BHN BAKU PEWARNA TABLET) COA D184K7D021,39123900 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH642454,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH642454,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH641359,39061090 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH642521,39061090 +What is the hs code for OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH641667,38249999 +What is the hs code for OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH642519,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH642354,38249999 +What is the hs code for OPADRY AMB MAROON (BHN BAKU PEWARNA TABLET) COA SH642291,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH642342,39061090 +What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH642322,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH642341,39061090 +What is the hs code for OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA SH642344,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH643538,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH641983,38249999 +What is the hs code for OPADRY II GRAY (BHN BAKU PEWARNA TABLET) COA SH642292,38249999 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH642290,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH642343,38249999 +What is the hs code for OPADRY GREEN (BHN BAKU PEWARNA TABLET) COA SH642293,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH642454,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH642792,38249999 +What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH642787,38249999 +What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH642788,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH641983,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH643538,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH643539,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH642749,38249999 +What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH642729,38249999 +What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH641819,39061090 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH642749,38249999 +What is the hs code for OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH642732,38249999 +What is the hs code for ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH642751,39061090 +What is the hs code for OPADRY EZ CLEAR (BHN BAKU PEWARNA TABLET) COA SH643072,38249999 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH642752,38249999 +What is the hs code for OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH642758,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH643251,38249999 +What is the hs code for OPADRY AMB II CLEAR (BHN BAKU PEWARNA TABLET) COA SH642466,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH641948,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH641945,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH643233,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH638108,38249999 +What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH641819,39061090 +What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH642788,38249999 +What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH642787,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH641227,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH641226,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH641954,39061090 +What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH641859,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH641816,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH641018,38249999 +What is the hs code for OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH641860,38249999 +What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH641817,39061090 +What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH641818,38249999 +What is the hs code for OPADRY AMB II CLEAR (BHN BAKU PEWARNA TABLET) COA SH641854,38249999 +What is the hs code for ACRYIL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH641857,39061090 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH641856,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH641864,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH641954,39061090 +What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH641853,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH641815,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH642014,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH641998,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH641984,38249999 +What is the hs code for OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA SH641987,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH641816,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH641983,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH641988,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH642012,38249999 +What is the hs code for PIGMENT BLEND GREEN (BHN BAKU PEWARNA TABLET) COA SH641997,32151900 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH642707,38249999 +What is the hs code for OPADRY AMB GREEN (BHN BAKU PEWARNA TABLET) COA SH642005,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH642004,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH641985,38249999 +What is the hs code for OPADRY II BLUE (BHN BAKU PEWARNA TABLET) COA SH642611,38249999 +What is the hs code for LIDOCAINE BASE (BHN BAKU OBAT) COA. 197248,29242990 +What is the hs code for DROSPIRENONE MICRONIZED (BHN BAKU OBAT) COA NA3345M,29372900 +What is the hs code for ONDANSETRON HCL USP (BHN BAKU OBAT) COA 21OS001,29332900 +"What is the hs code for BICAR FOOD 27/50 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA MTP09721,MTP09621",28363000 +"What is the hs code for ASTABIO AR10 (ASTAXANTHIN OIL 10PCT) BHN BAKU OBAT, COA.2104021",32030010 +What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 21290005,30039000 +What is the hs code for ALLOPURINOL USP (BHN BAKU OBAT) COA 20051AY3ARIIX,29335990 +What is the hs code for FEF CETRIMIDE PH EUR (BHN BAKU KOSMETIK) COA LX0D279,38249999 +"What is the hs code for ABSORAGE (BHN BAKU KOSMETIK), COA 202322",13021990 +What is the hs code for BIOBENEFITY (BHN BAKU KOSMETIK) COA 210200,13021990 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 202302,38249999 +"What is the hs code for IZAYOI (BHN BAKU KOSMETIK), COA 210453",13021990 +"What is the hs code for MANDARIN INCLEAR (BHN BAKU KOSMETIK), COA 210641",13021990 +"What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK),COA 210386",38249999 +"What is the hs code for EMALEX GWIS-320 (BHN BAKU KOSMETIK),COA 1-1048",34021310 +What is the hs code for EMALEX PEIS-10EX (BHN BAKU KOSMETIK) COA 2104-15,34021310 +What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 210276,13021990 +What is the hs code for AP GRIT (BHN BAKU KOSMETIK) COA 210617,38249999 +What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 210377,13021990 +What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785018790L,38249999 +What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785018917M,38249999 +What is the hs code for ABYSSINE TM PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) COA 702028969M,38249999 +What is the hs code for SILDENAFIL CITRATE USP (BHN BAKU OBAT) COA SLC 043 04 21,29335990 +What is the hs code for OPADRY SGR RED (BHN BAKU PEWARNA TABLET) COA GA687593,38249999 +What is the hs code for OPADRY SGR RED (BHN BAKU PEWARNA TABLET) COA GA687592,38249999 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544001,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544011,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544007,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544006,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543617,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543615,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543313,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543614,35051010 +"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP(BHN BAKU OBAT) COA 102102007",28183000 +What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M-31.0PCT (BHN BAKU OBAT) COA 102129013,28161000 +"What is the hs code for VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU MAKANAN) COA HPB2103251, HPD2103120",29362700 +"What is the hs code for VC ASCORBIC ACID DC 97PCT, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG2103002, HPG2103005",29362700 +"What is the hs code for VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU MAKANAN) COA HPB2103249, HPD2103115,HPD2103118",29362700 +"What is the hs code for VC ASCORBIC ACID 325 MESH, 20KGBOA1PO(BAHAN BAKU SUPLEMEN)COA HPD2104043,4032,4026,4021,4015...",29362700 +"What is the hs code for VC SODIUM ASCORBATE REGULAR, 25KG BAL (BHN BAKU MAKANAN)COA HPN2103508,3509,3510,4005,4006,4007",29362700 +What is the hs code for GINSENG DRY EXTR 2% COLOR (BHN BAKU SUPLEMEN) COA 20B0090900,13021990 +What is the hs code for GINSENG DRY EXTR 2% COLOR (BHN BAKU SUPLEMEN) COA 20B0176100,13021990 +What is the hs code for GINSENG DRY EXTR 2% COLOR (BHN BAKU SUPLEMEN) COA 20B0176200,13021990 +What is the hs code for GINSENG DRY EXTR 2% COLOR (BHN BAKU SUPLEMEN) COA 20B0176300,13021990 +What is the hs code for GINSENG DRY EXTR 2% COLOR (BHN BAKU SUPLEMEN) COA 20B0176400,13021990 +"What is the hs code for CEFADROXIL MONOHYDRATE (PURIDROX COMPACTED) BHN BAKU OBAT, COA B340269,B340270,B340268",29419000 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543752,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543235,35051010 +What is the hs code for SELENIUM SULFIDE EP/USP (MICRONIZED) (BHN BAKU OBAT) COA SS008D21,28309010 +What is the hs code for METAMIZOL SODIUM (BHN BAKU UTK PAKAN TERNAK) COA 2104534,29331900 +What is the hs code for PREDNISONE USP42 (BHN BAKU OBAT) COA NPD210201,29372100 +What is the hs code for VIT A PALM 1.0 M+VIT D3 100'000 (BHN BAKU MAKANAN) COA UT21030115,29362100 +What is the hs code for B-CAROTENE10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT21020001,32041900 +"What is the hs code for FLORAGLO(R) LUTEIN 20PCT SAF, 1KG ALUF (BHN BAKU SUPLEMEN) COA UE02007035",32030010 +What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-210402,29061300 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH643478,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH643523,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH643479,38249999 +What is the hs code for OPADRY II RED(BHN BAKU PEWARNA TABLET) COA SH643480,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH642908,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH643481,38249999 +What is the hs code for OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA SH643519,38249999 +What is the hs code for ACRYL-EZE II WHITE(BHN BAKU PEWARNA TABLET) COA SH643377,39061090 +What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH643517,39061090 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH643695,39061090 +What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH643175,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH643819,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH643478,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH643188,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH643168,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH643538,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH643539,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH643709,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH643170,38249999 +What is the hs code for OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH643171,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH643172,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH643173,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH642749,38249999 +What is the hs code for OPADRY RED (BHN BAKU PEWARNA TABLET) COA SH643174,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH643210,38249999 +What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH643175,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH643201,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH643216,38249999 +What is the hs code for OPADRY PURPLE (BHN BAKU PEWARNA TABLET) COA SH643176,38249999 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH642290,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH643178,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH643236,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH643211,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH643212,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH643213,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH641666,38249999 +What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122100861,28363000 +What is the hs code for CLONIDINE HCL (BHN BAKU OBAT) COA 189447,29332900 +What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113578,29339990 +What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113550,29339990 +"What is the hs code for PARACETAMOL USP (BHN BAKU OBAT) COA 2110040,2110047,2150600",29242930 +What is the hs code for MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HA00291,34029099 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT21011030,UT21021031",29362100 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL02101756",29362700 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02010105,32041900 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02010105,32041900 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT20100028,32030010 +"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02010105, UE02010106",32041900 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ10110545,29362300 +What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT20100030,29362100 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02010106,32041900 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02010106,32041900 +What is the hs code for MEG-3(TM)'10'N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT21010003,29362500 +What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT20070098,29362100 +"What is the hs code for ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ01116113,6119",29362700 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02012135,136",29362400 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT20100120,29362800 +"What is the hs code for ETHYL PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02006812",29362400 +What is the hs code for GARCINIA CAMBOGIA 60PCT CA-K SALT - 5KGS(BHN BAKU OBAT) COA FGC2104003,13021950 +"What is the hs code for EUXYL PE 9010 CN 200KG FA (BHN BAKU KOSMETIK) COA 1565304, 1566287",38249999 +What is the hs code for EUXYL PE 9010-C08- 200KG FA (BHN BAKU KOSMETIK) COA 1566749,38249999 +What is the hs code for EUXYL K 900 -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1563420,38249999 +"What is the hs code for IONOL (R) CP (BHN BAKU OBAT), COA 01128920",29071900 +What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102123003,28161000 +"What is the hs code for BARCROFT TM AL HYD GEL LV13, USP (BHN BAKU OBAT) COA 102113037",28183000 +"What is the hs code for BARCROFT TM AL HYD GEL LV13, USP (BHN BAKU OBAT) SHIPMENT SAMPLE, NO COMMERCIAL VALUE",28183000 +What is the hs code for ETHOCEL STANDARD 20 PREMIUM ETHYLCELLULOSE (DOW) (BHN BAKU PEWARNA TABLET) COA D184KB9021,39123900 +What is the hs code for ETHOCEL STANDARD 20 PREMIUM ETHYLCELLULOSE (DOW) (BHN BAKU PEWARNA TABLET) COA D184K9M021,39123900 +"What is the hs code for ETHOCEL STANDARD 20 PREMIUM ETHYLCELLULOSE (DOW)BHN BAKU PEWARNA TABLET, COA D184L1J021",39123900 +What is the hs code for COSME-PHYTAMI LOTUS FL 5KG(BAHAN BAKU KOSMETIK) COA AM087578,13021950 +What is the hs code for METRONIDAZOLE BP (BHN BAKU OBAT) COA MTZ/1010021,29332900 +"What is the hs code for NOREPINEPHRINE BITARTRATE (NORADRENALINE TARTRATE)BHN BAKU OBAT, COA 650104",29379010 +What is the hs code for STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN542460,35051010 +"What is the hs code for MIXED TOCOPHEROLS 95, 20KG JUG (BHN BAKU MAKANAN) COA XH2020061",29362800 +"What is the hs code for MIXED TOCOPHEROLS 95, 20KG JUG (BHN BAKU MAKANAN) COA XH2020061",29362800 +"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A,20KG BA (BHN BAKU MAKANAN) COA WB20110552,553,554",29362100 +"What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 100KG FIT (BHN BAKU SUPLEMEN) COA WB21019065",29362700 +"What is the hs code for MIXED TOCOPHEROLS 95, 20KG JUG (BHN BAKU MAKANAN) COA XH20200601",29362800 +What is the hs code for BLUE GLOBEADS L (24-60) (BAHAN BAKU KOSMETIK) COA B-180321,39123900 +"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB210221",39123900 +"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB210221",39123900 +"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG230121",39123900 +What is the hs code for GREENSIL (BHN BAKU KOSMETIK) COA EG209-201102,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210303,38249999 +What is the hs code for SEABUCKTHORN HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HIR210101-B,38249999 +What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM201201-PGH,38249999 +What is the hs code for GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK) COA EG209-201102,38249999 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO210301,38249999 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO210301,38249999 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT21020204,205,206",29362100 +What is the hs code for B-CAROTENE 10PCT EM YELLOW (BHN BAKU SUPLEMEN) COA UT21020001,32041900 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT21010006,32041900 +What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT21010004,29362500 +"What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT21010005, UT21010006",29362100 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT20090059,29362100 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE02010107,32041900 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT21010006,32041900 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT21031043,29362100 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ10213048,29362200 +What is the hs code for MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50373,29061100 +What is the hs code for GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 21T0008700,38249999 +What is the hs code for GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 21T0008700,38249999 +What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2008803264,29362600 +What is the hs code for SORBITOL SOLUTION 70PCT CRYSTALLIZING (BHN BAKU OBAT) COA 2122P033,29054400 +What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED (BHN BAKU UTK PAKAN TERNAK) COA ROA1621,28363000 +What is the hs code for GABAPENTIN USP (BHN BAKU OBAT) COA CGBU210178,29224900 +"What is the hs code for RANITIDINE HCL USP (BHN BAKU OBAT) COA RH 235 04 21, 234 04 21",29321900 +"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX POWDER)BHN BAKU OBAT,COA M485324,M485329",29411019 +What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED GRADE P) COA M597684,29411019 +"What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED GRADE A) BHN BAKU OBAT, COA M533870,M533881,M533869",29411019 +"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 2150588,50598,10040",29242930 +"What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 19102020, 24032021",25081000 +"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT), COA ASG/04/120421, 150421,160421,170421,180421",29420000 +What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW MONO YRN27-03 (ALAT KESEHATAN) COA MO2760N0420,30061010 +What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW MONO YRN29-02 (ALAT KESEHATAN) COA MO2938N0420,30061010 +What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW MONO YRN29-03 (ALAT KESEHATAN) COA MO2950N0420,30061010 +What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW MONO YRN30-01(ALAT KESEHATAN) COA MO3025N0420,30061010 +What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW SCREW YRS27-03(ALAT KESEHATAN) COA SC2760N0420,30061010 +What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW SCREW YRS29-02 (ALAT KESEHATAN) COASC2938N0420,30061010 +What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW SCREW YRS29-03 (ALAT KESEHATAN)COA SC2950N0420,30061010 +What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC 6D YRPN19-84-L(AKL) COA 6D19100L0420,30061010 +What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC 6D YRPN21-70-L (AKL) COA 6D2190L0420,30061010 +What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW DC DUAL ARM YRDN-FE-CI-01(AKL)COA DA21300N0420,30061010 +What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW DC DUAL ARM YRDN-FE-CI-02(AKL)COA DA21420N0420,30061010 +"What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC ULTRA+ YRPN25-113, COA UP2560N0420",30061010 +"What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC ULTRA+ YRPN25-115,COA UP2590N0420",30061010 +"What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW MC HEART LIFTING YRPN19-126-W,COA HL19100U0420",30061010 +"What is the hs code for STERILA POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW MC HEART LIFTING YRPN19-126-L,COA HL19100L0420",30061010 +"What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC HI RHINO YRPN19-103-L, COA HR1938L0420",30061010 +"What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC HI RHINO YRPN19-105L, COA HR1960L0420",30061010 +What is the hs code for OCTENINDINE DIHYDROCHLORIDE (BHN BAKU KOSMETIK) COA OTD-00010121,29420000 +What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-030941,38249999 +"What is the hs code for HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK),COA GTB-082900",38249999 +What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-040641,38249999 +What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-032321,38249999 +What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-010231,38249999 +What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-050231,38249999 +What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-021531,38249999 +What is the hs code for HYUNDAI BIOLAND JEJU TANGERINE EXTRACT (BHN BAKU KOSMETIK) COA GTUP-T-021910,38249999 +"What is the hs code for HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-012621,KFB-L-022241",38249999 +What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER(BHN BAKU KOSMETIK) COA MUP-021380,38249999 +What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-050231,38249999 +What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-020431,38249999 +"What is the hs code for KF-56A (18KG) BHN BAKU KOSMETIK, COA 103008",38249999 +"What is the hs code for KF-6028 (16KG) BHN BAKU KOSMETIK, COA 102253",38249999 +"What is the hs code for KSP-100 (10KG) BHN BAKU KOSMETIK, COA 012843",38249999 +"What is the hs code for VITAMIN PREMIX MENGNIU UHT MILK (BHN BAKU MAKANAN), COA XW92104270",21069059 +What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 2AX2104053,29181400 +What is the hs code for LEVOFLOXACIN HEMIHYDRATE (BHN BAKU OBAT) COA DK21-2104174,29349990 +What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA 2101402124,29419000 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH644311,38249999 +"What is the hs code for ISONIAZID USP (BHN BAKU OBAT) COA 21031/INH,21032/INH,21045/INH...",29333910 +"What is the hs code for NOREPINEPHRINE BITARTRATE (NORADRENALINE TARTRATE)BHN BAKU OBAT, COA 650104",29379010 +What is the hs code for DULSE PHYTELENE EG745 (BHN BAKU KOSMETIK) COA EG745-210302-GS-B,38249999 +What is the hs code for ROSEMARY OILY EXTRACT (BHN BAKU KOSMETIK) COA ROO210101-H,38249999 +What is the hs code for COMPLEX ANTI PESPIRANT (BHN BAKU KOSMETIK) COA ANTS200903,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210101,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210101,38249999 +What is the hs code for HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIE191102,38249999 +What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-210202-GS,38249999 +What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-201102,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210303,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210304,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210304,38249999 +What is the hs code for SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202104-042,35040000 +What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512116,47069200 +What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW92103407,21069059 +What is the hs code for VITAMIN D3 1.0 MIU/G(BHN BAKU MAKANAN) COA UT20090126,29362900 +"What is the hs code for D-PANTHENOL ,20KG PAIL PE(BHN BAKU MAKANAN) COA TL02009114",29362400 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12102024,29362900 +"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2005055,UEB2005063",29362300 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) BHN BAKU SUPLEMEN, COA UT21010203",29362100 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL02009114",29362400 +What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030054,29362500 +What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92103202,21069059 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20090126,29362900 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT21010203",29362100 +"What is the hs code for METAMIZOLE SODIUM REGULAR GRADE(BHN BAKU OBAT) COA 2103378,3310,4458,4487,4534",29331900 +What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB21010283,29362100 +What is the hs code for IMERCARE DOLCE (BHN BAKU KOSMETIK) COA S344/19,38029090 +"What is the hs code for IMERCARE 11T (BHN BAKU KOSMETIK) COA S336/20, S50/21",38029090 +What is the hs code for IMERCARE (R) VELLUTO (BHN BAKU KOSMETIK) COA S294/19,38029090 +"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 270121,091020,161020,130121,141020,150121",38029090 +"What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 00318, 00319,00325,00331,00402,00415",38029090 +"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC19321T",27101990 +What is the hs code for EUXYL K 100-C08-10KG KA 10KG KA (BHN BAKU KOSMETIK) COA 1565217,38249999 +What is the hs code for EUXYL K 120 -CO8- 10KG KA (BHN BAKU KOSMETIK) COA 1564902,38249999 +What is the hs code for EUXYL K 940-C08- 10KG KA (BHN BAKU KOSMETIK) COA 1560341,38249999 +What is the hs code for EUXYL PE 9010-C08-10KG KA (BHN BAKU KOSMETIK) COA 1566741,38249999 +What is the hs code for SENSIDIN DO-C08-10 KG KA (BHN BAKU KOSMETIK) COA 1561276,38249999 +What is the hs code for SENSIVA SC 10-C08-10KG KA (BHN BAKU KOSMETIK) COA 1566737,38249999 +What is the hs code for SENSIVA SC 50-C07- 10KG KA (BHN BAKU KOSMETIK) COA 1565251,38249999 +What is the hs code for SENSIVA SC 50-C07-10KG KA (BHN BAKU KOSMETIK) COA 1565251,38249999 +What is the hs code for EUXYL K 720-C08- 10KG KA (BHN BAKU KOSMETIK) COA 1565775,38249999 +What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1075077,38210090 +What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2248533,38210090 +What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2248533,38210090 +What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2260443,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0314230,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0281167,38210090 +What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0216774,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0281167,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0281167,38210090 +"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-A-0100221, S-A-0200421",29334910 +"What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0034088",29362500 +"What is the hs code for DL-PANTHENOL 50L ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02006633",29362400 +"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE0666638,VE00697476,VE00697477",29420000 +"What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02002807",29362400 +"What is the hs code for STAY-C (R) 50,20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02101010, UE02101011",29362700 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02010119",29362400 +"What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02002807,TL02006812",29362400 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02010119",29362400 +"What is the hs code for PARSOL MAX, 25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0919030010",29420000 +"What is the hs code for INOSITOL (BHN BAKU OBAT) COA 202104060, 202104061, 202104062",29061300 +What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 2104007,29349990 +What is the hs code for LISINOPRIL DIHYDRATE (BHN BAKU OBAT) COA C5170-21-004R,29339990 +What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA 8MT2104120,30032000 +"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP(BHN BAKU OBAT) COA 102102012",28183000 +What is the hs code for VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 121910046,28365010 +"What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET), COA DT715593",32151900 +"What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET), COA DT715591",32151900 +What is the hs code for OPACODE BLACK (BHN BAKU PEWARNA TABLET) COA DT714962,32151900 +"What is the hs code for ASCORBYL PALMITATE ,25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ10116003, UQ10116004",29362700 +"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02010107,UE02102010,UE02102011",32041900 +What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT21020053,29362100 +What is the hs code for VITAMIN A PALMITATE/M 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20100030,29362100 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT21031044,45,46",29362100 +"What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT21010006, UT21010007",29362100 +"What is the hs code for ACRYPOL 980 (20KG) BAHAN BAKU KOSMETIK, COA 11521001,11521002,11521003",39069099 +What is the hs code for FEF CETRIMIDE PH EUR (BHN BAKU KOSMETIK) COA LX0D327,38249999 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0336852,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0293259,38210090 +"What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1067935,1102066",38210090 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0343102,38210090 +What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1074504,38210090 +What is the hs code for BOTTLE MALT EXTRACT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1081466,38210090 +What is the hs code for BOTTLE MYCOPLASMA BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1068716,38210090 +"What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0322946",38210090 +What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0273380,38210090 +What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0335663,38210090 +What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0062865,38210090 +What is the hs code for BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0287286,38210090 +What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0350960,38210090 +"What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0272335",38210090 +What is the hs code for BOTTLE YEAST CARBON BASE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0038689,38210090 +What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1061373,38210090 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01D034M,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0315100,38210090 +What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1042613,38210090 +What is the hs code for BOTTLE MARINE BROTH 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1074489,38210090 +What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0280297,38210090 +What is the hs code for BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218592,38210090 +What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1033932,38210090 +What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0286355,38210090 +What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1019596,38210090 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0315698,38210090 +"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0286434",38210090 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1026705,38210090 +What is the hs code for BOTTLE LACTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1007102,38210090 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1007107,38210090 +What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0283759,38210090 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1040275,38210090 +"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0063472,1033190",38210090 +What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1067935,38210090 +What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283868,38210090 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0350026,38210090 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1047444,38210090 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0300743,38210090 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0335781,38210090 +"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1068134,1081518",38210090 +What is the hs code for BOTTLE SKIM MILK 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0343102,38210090 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0365805,38210090 +What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1026614,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0282579,38210090 +What is the hs code for BOTTLE TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0293747,38210090 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0350031,38210090 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0286569,38210090 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0350990,38210090 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0322946,38210090 +What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1007134,38210090 +"What is the hs code for BOTTLE TAT BROTH BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1005238,1074483",38210090 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1026627,38210090 +What is the hs code for BOTTLE BUFFER PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0322897,38210090 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0282615,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0293248,38210090 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1042590,38210090 +What is the hs code for BOTTLE RVS SOY BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1068885,38210090 +What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1025909,38210090 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0315698,38210090 +What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1068885,38210090 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1025115,38210090 +What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1033932,38210090 +What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02D083M,38210090 +What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2106836,38210090 +What is the hs code for BOTTLE M-PA-C AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0351056,38210090 +What is the hs code for THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000050455,33029000 +"What is the hs code for THE MATCHA P112 180 (BHN BAKU OBAT) COA 0000050455, 456",33029000 +What is the hs code for NECTAR DE MATCHA FEMA P114 6 (BHN BAKU KOSMETIK) COA 0000051589,33029000 +What is the hs code for L GLUTATHIONE REDUCED (BHN BAKU MAKANAN) COA B210218,29309090 +What is the hs code for PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 110920/006689,38249999 +"What is the hs code for MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL210513, MCCPOL210517)",29094900 +What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP837544,39059990 +What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP837540,39059990 +What is the hs code for FD&C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP839968:BA7461,32151900 +What is the hs code for D & C YELLOW #10 AL 15PCT-20PCT (BHN BAKU PEWARNA TABLET) COA WP831857:BA3853,32151900 +What is the hs code for FD & C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP839968:BA7461,32151900 +What is the hs code for FD & C BLUE #1/BRILLIANT BLUE (BHN BAKU PEWARNA TABLET) COA WP840329:BA7694,32151900 +What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL (BHN BAKU UTK PEWARNA TABLET) COA D011K4QL01,39123900 +What is the hs code for GELOIL SC (BHN BAKU OBAT) COA 184015,28399000 +What is the hs code for TRANSCUTOL P (BHN BAKU OBAT) COA 184290,28399000 +What is the hs code for GELUCIRE 48/16 PELLETS (BAHAN BAKU OBAT) COA 185000,28399000 +"What is the hs code for MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HG34130,HG34273,HG34322",34029099 +"What is the hs code for GLICLAZIDE (BHN BAKU OBAT) COA 2040001414, 2140000857",29359000 +What is the hs code for TREHALOSE (BHN BAKU MAKANAN) COA 20210429,29400000 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP21043214/XP21044670, XP21043215/XP21044671",29211900 +"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 2130037, 2150638, 2150725",29242930 +What is the hs code for MEFENAMIC ACID POWDER (BHN BAKU OBAT) COA MA2105007 S/D MA2105016,29224900 +What is the hs code for BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 21S0080501,13021990 +What is the hs code for BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 21S0080501,13021990 +What is the hs code for P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 32347/M1,13021990 +What is the hs code for GREEN TEA DRY DEC.EX/PHOSPHOL (BHN BAKU SUPLEMEN) COA 19S0269705,13021950 +What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH643962,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH643963,38249999 +What is the hs code for ACRYL-EZE PURPLE (BHN BAKU PEWARNA TABLET) COA SH643973,39061090 +What is the hs code for ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH643974,39061090 +What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH643990,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH643975,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH644001,38249999 +What is the hs code for OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH643991,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH643976,38249999 +What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH644437,38249999 +What is the hs code for OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH643992,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH644520,38249999 +"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA065214,064217",28363000 +"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA ROA063217, ROA063216,064212,059216",28363000 +"What is the hs code for VC ASCORBIC ACID 325MESH, 20KG BOAIPO (BAHAN BAKU SUPLEMEN)COA HPD2104048,62,68,74,80,83,89...",29362700 +"What is the hs code for VC ASCORBIC ACID DC 97PCT, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG2104001",29362700 +"What is the hs code for VIT MINERAL PREMIX FOR MATERNAL BISCUIT (BHN BAKU MAKANAN), COA XW92104279",21069059 +What is the hs code for MINERAL PREMIX MILK POWDER FOR ADULTS V2 (BHN BAKU MAKANAN) COA XW92104280,21069059 +What is the hs code for BOTTLE FOLIC AOAC MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9141510,38210090 +What is the hs code for BOTTLE FOLIC ACID ASSAY MEDIUM 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1097843,38210090 +What is the hs code for HU CD81 FITC JS-81 100TST (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0349337,38210090 +What is the hs code for HU CD63 PE H5C6 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065061,38210090 +What is the hs code for HU CD9 PERCP-CY5.5 M-L13 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1075165,38210090 +What is the hs code for HU SOLBI PTEIN CBA BUF KIT 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1019589,38210090 +"What is the hs code for HU TGF BTA1 CBA FLEX SET B6 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0353298",38210090 +What is the hs code for HU IL-8 CBA FLEX SET A9 100TST (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0115228,38210090 +What is the hs code for HU G-CSF CBA FLEX SET C8 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0169301,38210090 +What is the hs code for HU ANGIOGENIN CBA FLEX SET C4 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0101829,38210090 +What is the hs code for HU VEGF CBA FLEX SET B8 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0188486,38210090 +What is the hs code for HU BASIC FGF CBA FLEX SET C5 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1055901,38210090 +"What is the hs code for HU IL-10 CBA FLEX SET B7 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0136247",38210090 +What is the hs code for HU IL-6 CBA FLEX SET A7 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0234057-1,38210090 +What is the hs code for HU TH1/TH2/TH17 CBA KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0209267,38210090 +What is the hs code for BOTTLE FOLIC AOAC MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9141510,38210090 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0226415,38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0128385,38210090 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1069001,38210090 +What is the hs code for VIAL ISOVILATEX ENRICHMENT 10ML 5 EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1100739,38210090 +What is the hs code for VIAL SAL O ANTISERUM FACTOR 12 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0240788,38210090 +What is the hs code for VIAL SAL O ANTISERUM FACTOR 9 GROUP D (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0156280,38210090 +What is the hs code for VIAL SAL H ANTISERUM D 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0122003,38210090 +What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0128384,38210090 +What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0219127,38210090 +"What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0328195",38210090 +"What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0259332,1097818",38210090 +What is the hs code for BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1014897,38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0037338,38210090 +What is the hs code for VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1040296,38210090 +What is the hs code for BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 107114,38210090 +What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1021706,38210090 +What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1069019,38210090 +What is the hs code for BOTTLE FOLIC ACID ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1097843,38210090 +"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0282558,1048171",38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0097374,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065943,38210090 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122100906, 122100907",28363000 +"What is the hs code for PARACETAMOL USP (BHN BAKU OBAT) COA 2130044,2130047,2150699",29242930 +"What is the hs code for ETHAMBUTOL (BHN BAKU OBAT) COA N1020460,461,579,580,882 S/D886,1021148,149,150,433,434,435",29221910 +What is the hs code for KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 020221,25070000 +"What is the hs code for ACNE BUSTERS (BHN BAKU KOSMETIK),COA 210386",38249999 +"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK),COA 210884",13021990 +"What is the hs code for IZAYOI (BHN BAKU KOSMETIK), COA 210640",13021990 +What is the hs code for CHRONO CHARDY (BHN BAKU KOSMETIK) COA 210561,13021990 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 210442,38249999 +"What is the hs code for DICLOFENAC SODIUM USP (BHN BAKU OBAT) COA DFS/11030108,117 S/D 123",29224900 +What is the hs code for DICLOFENAC POTASSIUM BP (BHN BAKU OBAT) COA DFK/11020072,29224900 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT21010007,32041900 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT21020012,32030010 +"What is the hs code for FLORAGLO(R) LUTEIN 20PCT SAF,1KG ALUF (BHN BAKU SUPLEMEN) COA UE02007035",32030010 +What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT21040054,29362100 +"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE02104025, 4026",32041900 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT21030060,29362100 +What is the hs code for MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HA00328,34029099 +"What is the hs code for LIFE'S DHA (TM) S35-O100, 5KG ALUF (BHN BAKU SUPLEMEN) COA VY00383107",29362500 +"What is the hs code for BRB SILICONE OIL DM 100 EP, DRUM 200 KG ( BHN BAKU KOSMETIK) COA B089574",39100020 +What is the hs code for OPACODE WHITE (BHN BAKU PEWARNA TABLET) COA WP841862,32151900 +What is the hs code for METHOCEL A15 PREMIUM LV (BHN BAKU PEWARNA TABLET)COA D180K57021,39123900 +What is the hs code for METHOCEL E5 PREMIUM LV (BHN BAKU PEWARNA TABLET) COA D011K73L01,39123900 +What is the hs code for METHOCEL K15M PREMIUM CR (BHN BAKU PEWARNA TABLET)COA D18OKCT003,39123900 +What is the hs code for METHOCEL K4M PREMIUM (BHN BAKU PEWARNA TABLET)COA D180K2Q001,39123900 +What is the hs code for METHOCEL K4M PREMIUM CR (BHN BAKU PEWARNA TABLET) COA D180K4K003,39123900 +What is the hs code for METHOCEL K4M PREMIUM (BHN BAKU UTK PEWARNA TABLET) COA D180KCJ003,39123900 +What is the hs code for METHOCEL K15 PREMIUM CR (BHN BAKU PEWARNA TABLET) COA D180KCT002,39123900 +What is the hs code for METHOCEL E15 PREMIUM LV (BHN BAKU PEWARNA TABLET) COA D011K4RL02,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR (BHN BAKU PEWARNA TABLET) COA D180K3O001,39123900 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101851321,17021100 +What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103860721,17021100 +What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104310821,17021100 +What is the hs code for MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103150821,17021100 +What is the hs code for FLOWLAC (R) 100H (BHN BAKU OBAT) COA L105810921,17021100 +What is the hs code for GRANULAC(R) 200H (BHN BAKU OBAT) COA L105715019,17021100 +"What is the hs code for LIPOID S 67 F (BHN BAKU OBAT) COA 576200-2210035/001-006 (6), 576200-2210035/007",29232010 +"What is the hs code for CEFADROXIL MONOHYDRATE (PURIDROX COMPACTED) BHN BAKU OBAT, COA B334726,B334743,B334759",29419000 +What is the hs code for ROSALITY TM- 1KG (BHN BAKU KOSMETIK) COA 2110201,38249999 +What is the hs code for AMISOL TRIO TM - 5KG (BHN BAKU KOSMETIK) COA 2030514,38249999 +What is the hs code for PRO-LIPO TM NEO -5KG (BHN BAKU KOSMETIK) COA 2111902,38249999 +What is the hs code for PRO-LIPO TM NEO- 5KG (BHN BAKU KOSMETIK) COA 2109501,38249999 +What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 210318,13021950 +What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 210205,13021950 +What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 210302,13021950 +What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 210226,13021950 +What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 210215,33012990 +"What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 210226, 210324",13021950 +What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 20210511,25081000 +What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 11052021,25081000 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU KOSMETIK) COA QZ11201204",29362500 +"What is the hs code for DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02008637",29362400 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0321050319,320,321,322,323",29420000 +"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0220040045",29420000 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21020044,29362800 +"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0220040045, 61",29420000 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21020044,29362800 +What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001594056,29420000 +"What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02006812",29362400 +"What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES2007442, ES2008443",29420000 +"What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF21004047",29420000 +What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001594056,29420000 +"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0221040010",29420000 +"What is the hs code for PARSOL (R)HS, 20KG BOX (BHN BAKU KOSMETIK) COA HS5800321",29420000 +"What is the hs code for DURALAC H ,25KH BOX (BHN BAKU OBAT) COA LC 008-21-805",17021100 +What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799038785M,38249999 +What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830018825M,38249999 +What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769018735M,38249999 +What is the hs code for LANACHRYS 2B PF (BHN BAKU KOSMETIK) COA 793058829L,38249999 +What is the hs code for LANACHRYS 2B PF (BHN BAKU KOSMETIK) COA 793058976M,38249999 +What is the hs code for MINIPORYL TM (BHN BAKU KOSMETIK) COA 832018916M,38249999 +What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) COA 2020816,38249999 +What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) COA 2021116,38249999 +What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769018914M,38249999 +What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782018592M,38249999 +What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799038785M,38249999 +What is the hs code for GREYVERSE TM (BHN BAKU KOSMETIK) COA 833018113L,38249999 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP21054003/XP21054005, XP21054004/XP21054006",29211900 +"What is the hs code for CEFADROXIL MONOHYDRATE (PURIDROX COMPACTED) BHN BAKU OBAT, COA B340278, B340279",29419000 +What is the hs code for CEFADROXIL MONOHYDRATE (PURIDROX POWDER) COA B334749,29419000 +What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN ) COA MTP12221,28363000 +"What is the hs code for BICAR PHARMA EXCIPIENT 0/13 SODIUM BICARBONATE(B.BAKU SUPLEMEN)COA MTP06621,SAMPLE NOCOMM VALUE",28363000 +"What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (B.BAKU SUPLEMEN) COA MTP07821,SAMPLE NO COMM VALUE",28363000 +"What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT20090059,UT21030060",29362100 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU MAKANAN) COA UT21030207,29362100 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT21030207, UT21030208",29362100 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT21031052, UT21031053",29362100 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010015,29362900 +"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02102011, 2012",32041900 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02103169",29362700 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE02102011,32041900 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT21020011,32030010 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT20090059,29362100 +What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT21020053,29362100 +"What is the hs code for CENTELLA ASIATICA EXTRACT 95PCT ( BHN BAKU KOSMETIK), COA GKP 21023 EOU",13021950 +What is the hs code for NORIT SX SUPER E 153 (BHN BAKU KOSMETIK) COA 4978845,38021000 +What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWDER FORM CATCOL C135(L) GRADE(B.BAKU KOSMETIK) COA 299/21,38249999 +"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20120026, UT20120027",29362900 +"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20120027, UT20120029",29362900 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20120082,29362800 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE ,25KG BOX(BHN BAKU SUPLEMEN) COA TL02011055",29362700 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02011055, TL02011063",29362700 +"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02012939",29362400 +"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN), COA UQ01110816",29362300 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT20090126,29362900 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE02002011,29362900 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT20100039,29362900 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT20100006,29362900 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL02009114",29362400 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN), COA UQ00913475",29362500 +"What is the hs code for CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB21020014",29362700 +"What is the hs code for CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB21020014",29362700 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ01213535,29362500 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20090126,29362900 +"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ00702010, UQ00702011",29362200 +What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D011K2JL01,39123900 +What is the hs code for METHOCEL K4M PREMIUM HYDROXYPROPYL (BHN BAKU UTK PEWARNA TABLET) COA D180KCJ003,39123900 +What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL (BHN BAKU PEWARNA TABLET)COA D180KCP002,39123900 +What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D180K36002,39123900 +"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20110309,UT20120343",29362800 +"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ01110816,UQ10110501",29362300 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE02005016,29362900 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ10110507,29362300 +"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ10110501, UQ10110507",29362300 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE02005016,29362900 +"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN), COA UT20100006",29362900 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ10110507,29362300 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00702010,29362200 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT21020039,29362400 +"What is the hs code for D-A-TOCOPHERYL-ACETATE, 20KG JUG (BHN BAKU SUPLEMEN) COA XH20201101",29362800 +"What is the hs code for D-A-TOCOPHERYL-ACETATE, 20KG JUG (BHN BAKU SUPLEMEN) COA XH20201101",29362800 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN), COA UQ01213535",29362500 +"What is the hs code for D-A-TOCOPHERYL-ACETATE, 20KG JUG (BHN BAKU SUPLEMEN) COA XH20201101",29362800 +"What is the hs code for D-A-TOCOPHERYL-ACETATE,20KG JUG (BHN BAKU SUPLEMEN) COA XH20201101",29362800 +"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU MAKANAN) COA UT20120343",29362800 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11210115",29362500 +"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20090126, UT20100127",29362900 +"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92104205, XW92104206",21069059 +"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU MAKANAN) COA UT20110309",29362800 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20100127,29362900 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL02009114",29362400 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL02009114",29362400 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT20100045,29362900 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11201204",29362500 +"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN), COA UT20100115",29362800 +"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20110309",29362800 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030067,29362200 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) BHN BAKU SUPLEMEN, COA UT21010203",29362100 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20040050,29362300 +"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20090065,UT20120082",29362800 +"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN), COA UEB2005063",29362300 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00702010,29362200 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ01110816,29362300 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00813472,29362500 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20060041,32041900 +What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB2003005427,29362500 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20060041,32041900 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00813472,29362500 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12102024,29362900 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT21010203",29362100 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20060041,32041900 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00913475,29362500 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT21010009,29362100 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ10110511,29362300 +"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02012937,939,944,952",29362400 +"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02012952",29362400 +What is the hs code for CALCIUM D-PANTOTHENATE 25KG BOX (BHN BAKU SUPLEMN) COA TL02012952,29362400 +What is the hs code for DRY VITAMIN A ACETATE 325CWS/A (BHN BAKU SUPLEMEN) COA UT21010009,29362100 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT21020039,29362400 +"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU MAKANAN) COA UT20120343",29362800 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ10110507,29362300 +"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL02012952",29362400 +"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL02012952",29362400 +"What is the hs code for VINH WELLNESS COLLAGEN (FISH COLLAGEN PEPTIDES) BHN BAKU MAKANAN,COA 0281",35040000 +What is the hs code for DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2104001,28352510 +"What is the hs code for AESTHEFILL V200 (POLYLACTIC ACID) ,COA AF210403",90189090 +"What is the hs code for AESTHEFILL V200 (POLYLASTIC ACID) COA AF210403, SAMPLE NO COMM VALUE",90189090 +What is the hs code for RANITIDINE HCL USP (BHN BAKU OBAT) COA RH 302 04 21,29321900 +What is the hs code for DICLOFENAC SODIUM USP (BHN BAKU OBAT) COA DFS/11040130,29224900 +What is the hs code for METOCLOPRAMIDE HCL (BHN BAKU OBAT) COA M-2103413,29242990 +What is the hs code for SOYA LECITHIN (BHN BAKU MAKANAN) COA TY2210428-20,29232010 +"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA133217,ROA138212",28363000 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH644523,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH644516,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH644525,39061090 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH643475,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH644517,38249999 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH644518,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH644519,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH644520,38249999 +What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH644524,38249999 +What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH644049,39061090 +What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH644546,38249999 +What is the hs code for OPADRY AMB RED (BHN BAKU PEWARNA TABLET) COA SH644545,38249999 +What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH644526,39061090 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH642167,38249999 +What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH644522,38249999 +What is the hs code for PIGMENT BLEND GREEN (BHN BAKU PEWARNA TABLET) COA SH644527,32151900 +What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH644544,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH644598,38249999 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0321050325, 0321050326",29420000 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU KOSMETIK) COA QZ11201205",29362500 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0321050326,327,328",29420000 +"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000194526, 194527",29362900 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT21021018",29362100 +"What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA 0519070225",29420000 +"What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA 0519070225",29420000 +"What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02006812",29362400 +"What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA 0519070225",29420000 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02005016,29362900 +"What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0720010029",29420000 +What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001594056,29420000 +"What is the hs code for PARSOL (R)HS, 20KG BOX (BHN BAKU KOSMETIK) COA HS5800321",29420000 +"What is the hs code for PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0821010124",29420000 +What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92104191,29420000 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA SEN,38249999 +What is the hs code for PROMOIS KR-30 (BHN BAKU KOSMETIK) COA SDE,38249999 +What is the hs code for PROMOIS WK-GB (BHN BAKU KOSMETIK) COA SDF,38249999 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SCD,38249999 +"What is the hs code for KF-6028 (16KG) BHN BAKU KOSMETIK, COA 103254, 103254",38249999 +"What is the hs code for KSP-100 (10KG) BHN BAKU KOSMETIK, COA 101851",38249999 +What is the hs code for ARGAN VIRGIN COLD PRESSED DEODORISED ORGANIC OIL XNE112(B.BAKU KOSMETIK) COA ARHVD210503-SICBIO,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210304,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210505,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210304,38249999 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL02104385",29362700 +What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ10217005,29420000 +What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 1AX2105029,29181400 +What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2021040501,21012020 +What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2021040501,21012020 +"What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453829622",39139090 +What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M-31.0PCT (BHN BAKU OBAT) COA 102129026,28161000 +What is the hs code for BRB SILICONE OIL DM 100 EP ( BHN BAKU KOSMETIK) COA B089574,39100020 +What is the hs code for KETOPROFEN (BHN BAKU OBAT) COA.197729,29183000 +"What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 11520521,11540521,11560521,11610521..",29359000 +"What is the hs code for ALLOPURINOL USP (BHN BAKU OBAT) COA 20100AY3ARII, 21024AY3ARII",29335990 +"What is the hs code for PANTOPRAZOLE SODIUM (STERILE) BAHAN BAKU OBAT, COA SI/PPZ/00500521",29333990 +"What is the hs code for OMEPRAZOLE SODIUM STERILE (BAHAN BAKU OBAT), COA SI/OPZ/00090521,00100521,00110521,00120521",29333990 +What is the hs code for LIPOID PPL-600 (BHN BAKU OBAT) COA 577200-2210229/005-006(2),29232010 +What is the hs code for CYPROHEPTADINE HCL (BHN BAKU OBAT) COA CYP/03201003,29333990 +"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP(BHN BAKU OBAT) COA 102102012",28183000 +What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M-31.0PCT (BHN BAKU OBAT) COA 102129026,28161000 +What is the hs code for SILYBIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0010700,38249999 +What is the hs code for VALERIAN D.H.E> 0.8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 21B0032600,13021990 +What is the hs code for IVY DRY HYDR EXTR 10PCT HPLC (BAHAN BAKU SUPLEMEN) COA 20B0128900,13021990 +What is the hs code for PASSION FLOWER D.H.E 4PCT (BAHAN BAKU SUPLEMEN) COA 21B0049900,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 20B0176400,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 20B0176500,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0039000,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0039100,13021990 +What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) COA 2103116,38249999 +What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) COA 2021116,38249999 +What is the hs code for TYROSTAT TM 09 (BHN BAKU KOSMETIK) COA 784019061M,38249999 +What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 702018037K,38249999 +What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829018970M,38249999 +What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 3383001-P1K,38249999 +What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019143M,38249999 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708200063, SAMPLE NO COMMERCIAL VALUE",29420000 +"What is the hs code for PARSOL ZX, 0,500 KG PAIL (BHN BAKU KOSMETIK) COA 191211012,SAMPLE NO COMMERCIAL VALUE",29420000 +What is the hs code for CEFTIZOXIME SODIUM (BHN BAKU OBAT) COA A600100,29419000 +What is the hs code for CEFTAZIDIME BUFFERED (BHN BAKU OBAT) COA A200200,29419000 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0293259,38210090 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0272801,38210090 +What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0280297,38210090 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B02D014M,38210090 +What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0314278,38210090 +"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G(MEDIA U/PENGEMBANGAN MIKRO ORGANISME)BATCH0343334,1026627",38210090 +What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0286434,38210090 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1007107,38210090 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1040275,38210090 +"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0063472,0335092",38210090 +What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0220229,38210090 +"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0335781",38210090 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1042590,38210090 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1005238,38210090 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1026705,38210090 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0322897,38210090 +What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335617,38210090 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0282615,38210090 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0300743,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0293248,38210090 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1068161,38210090 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0365805,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0294089,38210090 +What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1026614,38210090 +"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0282579",38210090 +"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0140282,0350031",38210090 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0272801,38210090 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1026627,38210090 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1040275,38210090 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1081599,38210090 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1097255,38210090 +What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2106836,38210090 +"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA U/PENGEMBANGAN MIKRO ORGANISME)BATCH 0336852,0365693",38210090 +What is the hs code for INDICATOR STRIPS GASPAK DRY ABAEROBIC(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1078783,38210090 +"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH1020444,1025115",38210090 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1081599,38210090 +What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0280297,38210090 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1026705,38210090 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0365805,38210090 +What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0220229,38210090 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0217346,38210090 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0322897,38210090 +What is the hs code for BOTTLE LB BROTH MILLER 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0365816,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0293259,38210090 +What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0293747,38210090 +What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1081535,38210090 +What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1078740,38210090 +What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1025737,38210090 +What is the hs code for BOTTLE LEPTOSPIRA MED BASE EMJH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1097873,38210090 +What is the hs code for BOTTLE MYCOPLASMA BROTH BASE FREY 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9353217,38210090 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0350031,38210090 +What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1068885,38210090 +What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1007102,38210090 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1047444,38210090 +What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0365716,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1081510,38210090 +What is the hs code for BOTTLE MIO MEDIUM 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0091372,38210090 +What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 0280297,38210090 +What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1074496,38210090 +What is the hs code for BOTTLE BIGGY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1047463,38210090 +What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1048209,38210090 +What is the hs code for BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0343861,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MED 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9112920,38210090 +What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0272335,38210090 +What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1111035,38210090 +What is the hs code for BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0294367,38210090 +What is the hs code for BOTTLE PSEUDOMONAS AGAR F 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0048042,38210090 +What is the hs code for BOTTLE KF STREPTOCOCCUS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0321982,38210090 +What is the hs code for GASPAK EZ LARGE INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7358630010,38210090 +What is the hs code for BOTTLE DEXTROSE STARCH AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037569,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0315100,38210090 +What is the hs code for BOTTLE ISP MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0063474,38210090 +What is the hs code for BOTTLE ISP MEDIUM 4 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239308,38210090 +What is the hs code for BOTTLE PSEUDOMONAS ISOLATION AG 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9129525,38210090 +What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1026113,38210090 +What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1089773,38210090 +What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1071350,38210090 +"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA U/PENGEMBANGAN MIKROORGANISME)BATCH1098990,1111790",38210090 +What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 1089767,38210090 +"What is the hs code for ASCORBYL PALMITATE ,25KG BOX/ALU (BHN BAKU MAKANAN MANUSIA) COA UQ10216026, UQ10216027",29362700 +"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN MANUSIA) COA UT21010004,UT21030025",29362800 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G(TOCO) (BHN BAKU MAKANAN MANUSIA) COA UT21031053, UT21031054",29362100 +"What is the hs code for ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN MANUSIA) COA UQ10216027, UQ10216028",29362700 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN MANUSIA, COA UT21041057,58,59",29362100 +What is the hs code for SHEA BUTTHER REFINED (BHN BAKU KOSMETIK) COA 156995,15159011 +What is the hs code for AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 156497,15159011 +What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK)COA 042221,28321000 +"What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK),COA BAG-021531",38249999 +What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-011151,38249999 +What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-050231,38249999 +What is the hs code for HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-461710,38249999 +What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012711,38249999 +What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-030941,38249999 +What is the hs code for HYUNDAI BIOLAND CARBAMIDE (BHN BAKU KOSMETIK) COA U210517,38249999 +What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-050231,38249999 +What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-080261,38249999 +What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-030941,38249999 +What is the hs code for HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-030261,38249999 +What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-022631,38249999 +"What is the hs code for HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-010411,GTB-082900",38249999 +What is the hs code for HYUNDAI BIOLAND YUZU EXTRACT (BHN BAKU KOSMETIK) COA CJUBD-010511,38249999 +What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-030941,38249999 +What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0349743,38210090 +What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2260443,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0281167,38210090 +What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1040254,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2316462,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2316462,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2316462,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2316462,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2316462,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2316462,38210090 +What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0022270,38210090 +"What is the hs code for DIFCO YEAST EXTRAC,UF 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2183859",38210090 +"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102069010,102169004",28161000 +What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT ) COA MTP12321,28363000 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA MTP15321,28363000 +What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA 183227,28399000 +What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA 183227,28399000 +What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA 183228,28399000 +What is the hs code for OPADRY ORANGE (BHN BAKU PEWARNA TABLET) COA GA6912911,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA GA691292,38249999 +"What is the hs code for MEG-3 '30' N-3 FOOD OIL, 25KG MDR (BHN BAKU MAKANAN) COA TS00016910",29362500 +"What is the hs code for MEG-3 '30' N-3 FOOD OIL, 25KG MDR (BHN BAKU MAKANAN) COA TS00016748",29362500 +What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1064629,38210090 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1069040,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1048171,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0097374,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065943,38210090 +What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1074476,38210090 +"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0226415",38210090 +What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0037326,38210090 +What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0037326,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0097374,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065943,38210090 +What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1110880,38210090 +"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1007619",38210090 +What is the hs code for VIAL ISOVITALEX ENRICHMENT 2ML 5EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1068356,38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9256006,38210090 +What is the hs code for VIAL SHIGELLA ANTIS POLY A1 LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1035135,38210090 +What is the hs code for VIAL SAL O ANTISERUM FACTOR 9 GROUP D (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0275790,38210090 +What is the hs code for VIAL SAL H ANTISERUM D 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0122003,38210090 +What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1063164,38210090 +What is the hs code for VIAL SHIGELLA ANTIS POLY D LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9172946,38210090 +What is the hs code for VIAL SAL O ANTISERUM GRP A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0212181,38210090 +What is the hs code for VIAL SAL O ANTISERUM GRP C1 FTR 6/7 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0281783,38210090 +"What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0328195,0343796",38210090 +What is the hs code for BOTTLE B12 ASAAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1110880,38210090 +What is the hs code for VIAL SHIGELLA ANTIS POLY A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0198678,38210090 +"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0037338",38210090 +What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105712021,17021100 +"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL02009115",29362400 +"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU MAKANAN) COA UT21010022",29362800 +"What is the hs code for DL-A-TOCOPHERYL ACETATE,5KG PE PAIL (BHN BAKU MAKANAN) COA UT21010022",29362800 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT21010006,29362400 +What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU MAKANAN) COA UEB2005064,29362300 +What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2006072,29362300 +"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN), COA UEB2005064",29362300 +What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2006073,29362300 +"What is the hs code for D-A-TOCOPHERYL ACETATE ,20KG JUG(BHN BAKU SUPLEMEN) COA XH20201101",29362800 +"What is the hs code for DL-A-TOCOPHERYL ACETATE,5KG PE PAIL BHN BAKU SUPLEMEN, COA UT21010022",29362800 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20040050,29362300 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU SUPLEMEN) COA UT21010203,29362100 +"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN), COA WB20030067",29362200 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ01213535,29362500 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT21010203,29362100 +"What is the hs code for D-A-TOCOPHERYL ACETATE, 20KG JUG (BHN BAKU SUPLEMEN) COA XH20201101",29362800 +"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL(BHN BAKU SUPLEMEN) COA UT21010022",29362800 +What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE02005016,29362900 +"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030157,169",29362900 +"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL02009115",29362400 +What is the hs code for B-CAROTENE 10PCT CWS(BHN BAKU SUPLEMEN) COA UT20120055,32041900 +"What is the hs code for D-PANTHENOL ,20KG PAIL ( BHN BAKU SUPLEMEN), COA TL02011128",29362400 +"What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL02011128",29362400 +"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2006073, UEB2006074",29362300 +"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00802045, UQ00802046",29362200 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00802046,29362200 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT(BHN BAKU SUPLEMEN) COA WB20040050,29362300 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030067,29362200 +What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92105045,21069059 +"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92105030, XW92105031",21069059 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT20040087,29362400 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ01113625,29362200 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02012561,29362800 +"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA087214,217,85213,85214",28363000 +What is the hs code for MILD TALCUM MOD1 FM2 (BHN BAKU KOSMETIK) COA 10300227,13021950 +What is the hs code for SILVERION 2400 (BHN BAKU KOSMETIK) COA 20-05294,38249999 +What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT21030008,29362500 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02104025,32041900 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU MAKANAN) COA UT21030060,29362100 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE02104025,32041900 +What is the hs code for FLORAGLO LUTEIN 5PCTV CWS/S-TG (BHN BAKU SUPLEMEN) COA UT21020012,32030010 +What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT21040054,29362100 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE02104025,32041900 +What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT21040054,29362100 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT21030060,29362100 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG(BHN BAKU SUPLEMEN) COA UT21020012,32030010 +What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19060003,32041900 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT21020009,29362600 +What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19060003,32041900 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT21030060,29362100 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT21020009,29362600 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02104362",29362700 +What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE02103001,29362100 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL02104385",29362700 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G(TOCO) BHN BAKU MAKANAN, COA UT21041063",29362100 +"What is the hs code for ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ10216039 ,6040,6041",29362700 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT21040029,29362800 +"What is the hs code for CALCIUM ACETATE,POWDER,PURITY ACC (BHN BAKU SUPLEMEN) COA 3102204",29152910 +What is the hs code for METHYLCOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/122046,29362600 +What is the hs code for HYDROCORTISONE ACETATE EP7/USP42 (BHN BAKU OBAT) COA NEHAC210411,29372200 +"What is the hs code for PREDNISONE USP42 (BHN BAKU OBAT) COA NPD210404,NPD210307",29372100 +What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122100910,28363000 +What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2003484579,29372900 +"What is the hs code for PANTOPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT, COA APSS21001",29333990 +"What is the hs code for CAFFEINE BP/EP/USP (BHN BAKU OBAT) COA 2105729,735,736,737,738,750",29393000 +"What is the hs code for SULPHAMETHOXAZOLE BP (BHN BAKU OBAT) COA 12010521,12030521,1205021,1060521...",29359000 +"What is the hs code for EMPTY FIBER DRUMS ,FREE OF COST NO COMMERCIAL VALUE",48192000 +"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0220040056",29420000 +"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0220040056",29420000 +"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0221040010",29420000 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0520060055,29420000 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0321050323,325,328",29420000 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0321050328,329,428,429",29420000 +What is the hs code for LEMON SECRET (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 01/20GL4,28399000 +"What is the hs code for LEMON SECRET (LEMON 40 BRIX) B.BAKU KOSMETIK,COA 01/20GL4,SAMPLE NO COMMERCIAL VALUE",28399000 +What is the hs code for EMULCIRE 61 WL 2659 (BHN BAKU OBAT) COA 181959,28399000 +What is the hs code for EMULCIRE 61 WL 2659 (BHN BAKU OBAT) COA 181959,28399000 +What is the hs code for ISOLATE SOY PROTEIN (BHN BAKU MAKANAN) COA SL202105-042,35040000 +What is the hs code for SODIUM SALICYLATE BP2005 (BHN BAKU KOSMETIK)COA 202006005,29182100 +"What is the hs code for SENSIDIN DO CAN 10KG (BHN BAKU KOSMETIK) COA 1554435,1557007,1561276",38249999 +What is the hs code for BIOBENEFITY (BHN BAKU KOSMETIK) COA 211041,13021990 +"What is the hs code for COMFREY LIQUID B (BHN BAKU KOSMETIK), COA 210890",13021950 +"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK), COA 210884",13021990 +"What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK),COA 211238",38249999 +What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 201330,13021950 +What is the hs code for BIOBENEFITY (BHN BAKU KOSMETIK) COA 211041,13021990 +What is the hs code for SOAPNUT EXTRACT POWDER (BHN BAKU KOSMETIK) COA 211309,13021990 +What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.21100300,29391900 +What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA 21100300,29391900 +"What is the hs code for ASTABIO AR10 (ASTAXANTHIN OIL 10PCT) BHN BAKU OBAT,COA.2104021,2011101",32030010 +What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2260443,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0335766,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0335766,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0335766,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0335766,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0335766,38210090 +What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1004958,38210090 +What is the hs code for DIFCO TC YEASTOLATE UF 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2294858,38210090 +What is the hs code for DIFCO PHYTONE ULTRA TERED (UF) EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2321260,38210090 +What is the hs code for SOY PEPTONE 100 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2246454,38210090 +What is the hs code for MIRANOL ULTRA C-32 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP105354R,34029099 +What is the hs code for SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 2108370637,29322090 +What is the hs code for MOXIFLOXACIN HYDROCHLORIDE(BHN BAKU OBAT) COA MP0040421,29334990 +What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH645608,38249999 +"What is the hs code for AQUACOAT CPD-30 CELLULOSE (BHN BAKU PEWARNA TABLET), COA 2173804237",39123900 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA082213,28363000 +What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB21010283,29362100 +What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB21020738,29362800 +What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2108890141,29362600 +What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512116,47069200 +"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A, 20KG BA (BHN BAKU MAKANAN) COA WB21030564,566,568",29362100 +"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A, 20KG BA (BHN BAKU MAKANAN) COA WB21030568,570,572",29362100 +What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02D043M,38210090 +What is the hs code for BOTTLE SELENITE CYSTINE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0076951,38210090 +"What is the hs code for FLORAGLO(R) LUTEIN 20PCT SAF, 1KG ALUF (BHN BAKU SUPLEMEN) COA UE02007035",32030010 +"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG210310, MCVG210510",29362700 +What is the hs code for FEF CETRIMIDE PH EUR (BHN BAKU KOSMETIK) COA LX0D319,38249999 +What is the hs code for FEF CETRIMIDE PH EUR (BHN BAKU KOSMETIK) COA LX0D343,38249999 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210301,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210302,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210302,38249999 +What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE (BHN BAKU KOSMETIK) COA OLVH2106R2-ENBIO,38249999 +What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-2106R1,38249999 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210301,38249999 +What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM201201-PGH,38249999 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO210402,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210603,38249999 +What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA DOC1582121,28363000 +What is the hs code for FLOWER ACIDS (BHN BAKU KOSMETIK) COA HS2106R1,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH644929,38249999 +What is the hs code for OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH644930,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH644955,39061090 +What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH644931,39061090 +What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH644956,39061090 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH645305,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH644932,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH644933,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH644935,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH644957,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH644936,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH644963,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH644964,38249999 +What is the hs code for OPADRY AMB II PURPLE (BHN BAKU PEWARNA TABLET) COA SH644965,38249999 +What is the hs code for OPADRY 200 BROWN (BHN BAKU PEWARNA TABLET) COA SH644962,38249999 +What is the hs code for OPADRY AMB II CLEAR (BHN BAKU PEWARNA TABLET) COA SH644958,38249999 +What is the hs code for OPADRY YELLOW (BHN BAKU PEWARNA TABLET) COA SH644937,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH645561,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH645562,38249999 +"What is the hs code for ENROFLOXACIN BASE CVP2015 (BHN BAKU PAKAN TERNAK) COA 210526-5, 210527-4",29334990 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00902089,29362200 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00902089,29362200 +"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00902089, UQ00902090",29362200 +"What is the hs code for DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02012659",29362400 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21040124,29362800 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX(BHN BAKU KOSMETIK) COA QZ11210434",29362500 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02011128",29362400 +"What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF21004047",29420000 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21040124,29362800 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT20120055,32041900 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL02011107,TL02011115",29362700 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12105003,29362900 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT20100006,29362900 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT20100006,29362900 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT21020039,29362400 +"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02103654",29362400 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ01112120,29362200 +"What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF21004047",29420000 +"What is the hs code for PARSOL HMS, 25KG PC (BHN BAKU KOSMETIK) COA 0420040039",29420000 +"What is the hs code for PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0821010125",29420000 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ01112120,29362200 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11210401",29362500 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL02011128",29362400 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ01113625,29362200 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20120055,32041900 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ01112120,29362200 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ01112120,29362200 +"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL02102638, TL02103654",29362400 +"What is the hs code for D-PANTHENOL 75L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01911370",29362400 +"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0221040010",29420000 +"What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0720010029",29420000 +"What is the hs code for PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0520060060",29420000 +What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001594056,29420000 +"What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02006812",29362400 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0321050429, 30,31",29420000 +"What is the hs code for PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0821010125",29420000 +What is the hs code for D&C GREEN NO.5 C.I.61570 FDA CERTIFIED (BHN BAKU KOSMETIK) COA 10300036,13021950 +"What is the hs code for EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300050, 10300051",13021950 +What is the hs code for KANEKA Q10 UBIDECARENONE 5KG JP (BHN BAKU KOSMETIK) COA FA01-4426,29146200 +What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA E01641UP,29053200 +What is the hs code for MIRTOGENOL (BHN BAKU SUPLEMEN) COA 21S0115800,38249999 +What is the hs code for GREEN TEA DRY DEC.EX/PHOSPHOL (BHN BAKU SUPLEMEN) COA 19S0269705,13021950 +What is the hs code for DEXAMETHASONE BP2010/USP41 (BHN BAKU OBAT) COA NED210601,29372200 +What is the hs code for MONOCALCIUM PHOSPHATE FEED GRADE GRANULE@25KG (BHN BAKU PAKAN TERNAK) COA 20210507115,28352600 +What is the hs code for OPADRY II GRAY (BHN BAKU PEWARNA TABLET) COA SH645907,38249999 +What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105712021,17021100 +"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000195039",29362900 +"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT20110047, UT20110048",29362900 +"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20120091, UT20120092",29362800 +"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU MAKANAN) COA UT21030084",29362800 +"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT21030084",29362800 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ01213536,29362500 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI20030009,29362900 +What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI20030009,29362900 +What is the hs code for VIT MINERAL PREMIX FOR MATERNAL BISCUIT(BHN BAKU MAKANAN) COA XW92105344,21069059 +What is the hs code for METHISOPRINOL (BHN BAKU OBAT) COA MTP1050273,29349990 +What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-210521,29061300 +What is the hs code for SUPPOCIRE AM PELLETS (BHN BAKU OBAT) COA 21E1001,28399000 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP21053155/XP21054401/XP21054665, XP21053156/XP21054402/...4666",29211900 +What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA.0000075635,29309090 +What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA.0000075636,29309090 +What is the hs code for THIOCARE (R) H105 83PCT (BHN BAKU KOSMETIK) COA 0000075637,29309090 +What is the hs code for UBIDECARENONE (COENZYM Q10 FERMENTATIVE) BHN BAKU KOSMETIK) COA 51-2011127,29146200 +What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK)COA SFP-N-041251,38249999 +What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-041251,38249999 +What is the hs code for HYUNDAI BIOLAND CACTUS EXTRACT (BHN BAKU KOSMETIK) COA CAB-020321,38249999 +What is the hs code for HYUNDAI BIOLAND DERMABIOTICS HDB1196 GN (BHN BAKU KOSMETIK) COA DGN1196210611,38249999 +"What is the hs code for HYUNDAI BIOLAND GREEN TEA SEED OIL (BHN BAKU KOSMETIK)COA CSSO-051300, CSSO-011541",38249999 +What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-080261,38249999 +What is the hs code for HYUNDAI BIOLAND TURMERIC ROOT EXTRACT (BHN BAKU KOSMETIK) COA WRGC-013151,38249999 +What is the hs code for HYUNDAI BIOLAND BIO-BLACK PEARL POWDER (BHN BAKU KOSMETIK) COA PDEG-010221,38249999 +"What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-031051,SFP-N-041251",38249999 +What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2021040501,21012020 +"What is the hs code for METAMIZOLE SODIUM REGULAR GRADE(BHN BAKU OBAT) COA 2105676,6791,6794,6795,6796,6797",29331900 +"What is the hs code for AMLODIPINE BESYLATE BP/EP (BHN BAKU OBAT) COA AMB/093/05/21, AMB/094/05/21",29333990 +What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 1AX2106005,29181400 +What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 1AX2106002,29181400 +What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH645548,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH645455,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH645680,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH645682,38249999 +What is the hs code for OPADRY AMB MAROON (BHN BAKU PEWARNA TABLET) COA SH645549,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH645550,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH645551,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH645553,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH645554,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH645555,38249999 +What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH645556,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH645566,39061090 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH645557,38249999 +What is the hs code for OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH645570,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH645571,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH645572,38249999 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH644934,38249999 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SCD,38249999 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SFE,38249999 +What is the hs code for AMITOSE HGA (BHN BAKU KOSMETIK) COA SCD,38249999 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA SFA,38249999 +What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA SCF,38249999 +"What is the hs code for KF-6028 (16KG) BHN BAKU KOSMETIK, COA 106255",38249999 +"What is the hs code for KSP-100 (10KG) BHN BAKU KOSMETIK, COA 104859",38249999 +"What is the hs code for KF-56A (18KG) BHN BAKU KOSMETIK, COA 104020",38249999 +"What is the hs code for FERROUS SULFATE,DRIED, POWDER, USP43 (BHN BAKU SUPLEMEN) COA 3090130",28332920 +What is the hs code for RANITIDINE HCL USP (BHN BAKU OBAT) COA RH 237 06 21,29321900 +What is the hs code for PREGABALIN (BHN BAKU OBAT) COA PU2611019,29224900 +"What is the hs code for PIOGLITAZONE HYDROCHLORIDE (BHN BAKU OBAT) COA, PG0250321",29341000 +"What is the hs code for BRB 1740,DRUM 190KG ( BHN BAKU KOSMETIK) COA B087973, B088280",39100020 +What is the hs code for GRANULAC (R) 200H (BHN BAKU SUPPLEMEN) COA L105712121,17021100 +"What is the hs code for MAGNESIUM CHLORIDE 6-HYDRATE,CRYST.,USP43 (BHN BAKU KOSMETIK) COA 3092579",28273100 +What is the hs code for TABCOAT TC WHITE (BHN BAKU PEWARNA TABLET) COA GA691890,32151900 +What is the hs code for OPADRY SGR RED (BHN BAKU PEWARNA TABLET) COA GA691894,38249999 +What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122100871,29054300 +What is the hs code for IMERSCRUB 400P AMBER (BHN BAKU KOSMETIK) COA PL19TA1601,38029090 +What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG210611,29362700 +What is the hs code for THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000052993,33029000 +What is the hs code for NECTAR DE MATCHA FEMA P114 6 (BHN BAKU KOSMETIK) COA 0000054405,33029000 +What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512116,47069200 +What is the hs code for POTASSIUM GLYCEROPHOSPHATE SOLUTION (BHN BAKU SUPLEMEN) COA 3102777,29199000 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210301,38249999 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210301,38249999 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO210402,38249999 +What is the hs code for GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK) COA EG209-2106R1,38249999 +What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM210602-PGH,38249999 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO210302,38249999 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO210603,38249999 +What is the hs code for SODIUM SALICYLATE (BHN BAKU KOSMETIK)COA NO2104011,29182300 +What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED (BHN BAKU UTK PAKAN TERNAK) COA ROA2421,28363000 +"What is the hs code for CEFADROXIL MONOHYDRATE (PURIDROX COMPACTED) BHN BAKU OBAT, COA B340289,B340300,B340304",29419000 +"What is the hs code for LIPOID S 67 F(BHN BAKU OBAT) COA 576200-2210036/001-008 (8), 576200-2210036/009",29232010 +What is the hs code for SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0054100,13021950 +What is the hs code for VALERIAN D.H.E> 0.8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 21B0032600,13021990 +What is the hs code for VALERIAN D.H.E >0.8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 21B0032700,13021990 +What is the hs code for SILYMARIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 21B0071700,13021950 +What is the hs code for NABUMETONE USP (BAHAN BAKU OBAT) COA.H-0590421,29145000 +What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2003565686,29372900 +What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 8285400,38249999 +What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122100908,28363000 +What is the hs code for FERROUS GLUCONATE (BHN BAKU OBAT) COA 3100451,29181600 +"What is the hs code for TRIPOTASSIUM CITRATE 1-HYDRATE, CRYST.,PH.EUR.10 ED.USP43 (BHN BAKU OBAT) COA 3100616",29181400 +"What is the hs code for ZINC SULFATE 1-HYDRATE, POWDER,USP43 (BHN BAKU OBAT) COA 3102213",28332920 +"What is the hs code for FERROUS SULFATE, DRIED, POWDER, USP 43(BHN BAKU OBAT) COA 3101792",28332920 +"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 2106EF0910",29224900 +What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1138784,38210090 +"What is the hs code for WHEAT 100 UF EACH EA (MEDIA U/PENGEMBANGAN MIKRO ORGANISME)BATCH210118002,SAMPLE NO COMM VALUE",38210090 +What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2260443,38210090 +What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2260443,38210090 +What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2260443,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2316462,38210090 +What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1004958,38210090 +What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0022270,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0156235,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0335766,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0335766,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0335766,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0335766,38210090 +What is the hs code for SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 2108370637,29322090 +What is the hs code for DOPAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 21100302,29222900 +"What is the hs code for DRY VIT.A PALMITATE TYPE 250 CWS/F (BHN BAKU SUPLEMEN) COA UT21010004,SAMPLE NO COMM VALUE",29362100 +"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT20110049, SAMPLE NO COMM VALUE",29362900 +"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UE02010440, SAMPLE NO COMM VALUE",29362800 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA QZ11200510, SAMPLE NO COMM VALUE",29362500 +"What is the hs code for VC ASCORBIC ACID REGULAR (BHN BAKU SUPLEMEN) COA HPD2105066, SAMPLE NO COMM VALUE",29362700 +What is the hs code for VC ASCORBIC ACID REGULAR (BHN BAKU SUPLEMEN) COA HPD2105072 SAMPLE NO COMM VALUE,29362700 +"What is the hs code for VC SODIUM ASCORBATE REGULAR (BHN BAKU SUPLEMEN) COA HPN2002010, SAMPLE NO COMM VALUE",29362700 +"What is the hs code for B-CAROTENE 1PCT CWS/M (BHN BAKU SUPLEMEN) COA UT20020011, SAMPLE NO COMM VALUE",32041900 +"What is the hs code for B-CAROTENE 10PCT EMULSION RED(BHN BAKU SUPLEMEN) COA UE02104009, SAMPLE NO COMMERCIAL VALUE",32041900 +"What is the hs code for B-CAROTENE 10PCT EM YELLOW (BHN BAKU SUPLEMEN) COA UT21020001,SAMPLE NO COMMERCIAL VALUE",32041900 +"What is the hs code for VIT A PALM. 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT20020192,SAMPLE NO COMMERCIAL VALUE",29362100 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G... (BHN BAKU SUPLEMEN) COA UT20111005,SAMPLE NO COMMERCIAL VALUE",29362100 +"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT20100006,SAMPLE NO COMMERCIAL VALUE",29362900 +"What is the hs code for VITAMIN B12 CRYST FOOD GRADE(BHN BAKU SUPLEMEN) COA D012004019,7046, SAMPLE NO COMMERCIAL VALUE",29362600 +What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 210429,33012990 +What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 210324,13021990 +What is the hs code for ML0975-SE0981 CUSTOM BLENDING VEGETABLES BLEND B (BHN BAKU OBAT) COA L-11513,13021950 +What is the hs code for ML0973-SE0979 CUSTOM BLENDING FRUITS BLEND B (BHN BAKU OBAT) COA L-11512,13021950 +What is the hs code for MIRANOL ULTRA C-32 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP105354R,34021990 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21040031, 32",29362100 +What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT21040002,29420000 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02104026,32041900 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT21051066,67,68",29362100 +What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT21040054,29362100 +What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT19060003,32041900 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPPLEMEN) COA UT21030060,29362100 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02104026,32041900 +What is the hs code for METAMIZOLE SODIUM (BHN BAKU UTK PAKAN TERNAK) COA 2106797,29331900 +"What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA2105294 S/D 5296,6201 S/D 6207",29224900 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20210619,17029019 +What is the hs code for KETOPROFEN (BHN BAKU OBAT) COA. 197748,29183000 +What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB21030293,29362100 +What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB21020738,29362800 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB20090242,29362800 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPPLEMEN) COA TL02105535",29362700 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT21020009,29362600 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPPLEMEN) COA TL02104446,TL02105560",29362700 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT21050041,29362800 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21040002,29362900 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL02105535,5618,5646,5653",29362700 +"What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL02104446",29362700 +What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103861821,17021100 +What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104311321,17021100 +What is the hs code for FLOWLAC (R) 100H (BHN BAKU OBAT) COA L105812121,17021100 +What is the hs code for GRANULAC (R)200H (BHN BAKU OBAT) COA L105712121,17021100 +What is the hs code for OPADRY ORANGE (BHN BAKU PEWARNA TABLET) COA GA691291,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA GA691292,38249999 +What is the hs code for OPADRY SGR RED (BHN BAKU PEWARNA TABLET) COA GA691313,38249999 +"What is the hs code for XANTHAN FFPC (BHN BAKU OBAT), COA 83423001",39139090 +"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK),COA 211404",38249999 +"What is the hs code for ROSE HIPS LIQUID B (BHN BAKU KOSMETIK),COA 210171",13021990 +What is the hs code for PIROXICAM (BAHAN BAKU OBAT ) COA PRX2021003M,29349990 +"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0220040056",29420000 +"What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000195040,195042,195043,195877,195878",29362900 +"What is the hs code for STAY-C(R)50, 20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02101007",29362700 +"What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF21004047",29420000 +"What is the hs code for PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0821010127",29420000 +"What is the hs code for PARSOL MAX, 25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0919040013,0921020003",29420000 +"What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0720010029",29420000 +"What is the hs code for PARSOL HMS, 25KG PC (BHN BAKU KOSMETIK) COA 0421040014",29420000 +"What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0720010029",29420000 +"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0221040010",29420000 +"What is the hs code for PARSOL HMS, 25KG PC (BHN BAKU KOSMETIK) COA 0421040014, 0421040024",29420000 +"What is the hs code for PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0821010127",29420000 +"What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0221040010",29420000 +What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 24052021,25081000 +What is the hs code for DIACEREIN EP (BHN BAKU OBAT) COA DCE/40241220,29189900 +"What is the hs code for OPALUX MAROON (BHN BAKU PEWARNA TABLET), COA DT717552",32151900 +What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET) COA DT717559,32151900 +What is the hs code for OPASPRAY YELLOW (BHN BAKU PEWARNA TABLET) COA DT717553,32151900 +What is the hs code for OPADRY TF GREEN (BHN BAKU PEWARNA TABLET) COA DT717554,38249999 +What is the hs code for ANTIOXIDANT PREMIX FOR GUMMY (BHN BAKU MAKANAN) COA XW92106154,21069059 +"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ01110805, UQ01110806",29362300 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11210402",29362500 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE02101102,29362900 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20120092,29362800 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20120092,29362800 +"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92106034, XW92106035",21069059 +"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92106035, XW92106036",21069059 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02006024,29362900 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02006024,29362900 +What is the hs code for DICLOFENAC POTASSIUM BP (BHN BAKU OBAT) COA DFK/11020072,29224900 +"What is the hs code for DICLOFENAC SODIUM USP (BHN BAKU OBAT) COA DFS/11060212,11060213,11060214, 204,211,...",29224900 +What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH646736,38249999 +What is the hs code for AQUACOAT CPD-30 ETHYLCELLULOSE AQUEOUS... (BHN BAKU PEWARNA TABLET) COA 2173804237,39123900 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH646882,39061090 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH646574,38249999 +What is the hs code for OPADRY II GRAY (BHN BAKU PEWARNA TABLET) COA SH646550,38249999 +What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK)COA SFP-N-041251,38249999 +"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT), COA ASG/06/070621,ASG/06/070621-1,...",29420000 +What is the hs code for CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/06/040621,39123100 +What is the hs code for CROSCARMELLOSE SODIUM USP-NF (BHN BAKU OBAT) COA ACRMC/06/090621,39129090 +"What is the hs code for SODIUM STARCH GLYCOLATE BP (BHN BAKU OBAT), COA ASGP/05/270521",29420000 +"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/06/040621, ASG/06/040621-1,ASG/06/050621...",29420000 +What is the hs code for SORBITOL SOLUTION 70PCT CRYSTALLIZING (BHN BAKU OBAT) COA 2122P122,29054400 +What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU KOSMETIK) COA 02/19GAAK,28399000 +"What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK)COA 02/19GAAK, SAMPLE NO COMM VALUE",28399000 +What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT21050006,29420000 +What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2109291397,29362600 +"What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB020521",39123900 +"What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B140621",39123900 +"What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG240621",39123900 +"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 260421,270421",25070000 +What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK)COA BAG-032861,38249999 +"What is the hs code for HYUNDAI BIOLAND CACTUS EXTRACT (BHN BAKU KOSMETIK),COA CAB-020321",38249999 +What is the hs code for HYUNDAI BIOLAND CAMELLIA JAPONICA FLOWER EXTRACT (BHN BAKU KOSMETIK) COA CJE-012320,38249999 +What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-010231,38249999 +What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-091371,38249999 +"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK), COA HMVBD-020331, HMVBD-030651",38249999 +What is the hs code for HYUNDAI BIOLAND YUZU EXTRACT BHN BAKU KOSMETIK) COA CJUBD-021061,38249999 +What is the hs code for HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-612120,38249999 +What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 062821,28321000 +What is the hs code for HYUNDAI BIOLAND KIWI EXTRACT(BHN BAKU KOSMETIK) COA KFB-L-030261,38249999 +What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-091371,38249999 +What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-090161,38249999 +What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-051851,38249999 +What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 062821,28321000 +What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113557,29339990 +"What is the hs code for TILAMAR (R) PDO WITH NOOVISTA#, 25KG PAIL (BHN BAKU KOSMETIK) COA PC210623",29420000 +"What is the hs code for GENIVIDA (TM) TG, 1KG BAG ALU(BHN BAKU SUPLEMEN) COA UT19040001",29329990 +What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG(BHN BAKU SUPLEMEN) COA UT21050003,29420000 +What is the hs code for VIT A PALM 1.0M+VIT D3 100'000 (BHN BAKU MAKANAN) COA UT21030118,29362100 +What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512116,47069200 +What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE EP/USP (BHN BAKU OBAT) COA NEDNA200704,29372200 +"What is the hs code for DEXAMETHASONE BP2010/USP42 (BHN BAKU OBAT) COA NED210713, NED210714",29372200 +What is the hs code for PREDNISONE USP42 (BHN BAKU OBAT) COA NPD201213,29372100 +"What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC28621T",27101990 +What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK)COA 7766034,38249999 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA MTP16021,28363000 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA MTP17421,28363000 +What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA MTP17421,28363000 +What is the hs code for BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU OBAT) COA MTP14321,28363000 +"What is the hs code for VC ASCORBIC ACID 325MESH, 20KG BOA1PO (BAHAN BAKU SUPLEMEN)COA HPD2103051, HPD2104119",29362700 +"What is the hs code for VC ASCORBIC ACID 325MESH, 20KG BOA1PO (BAHAN BAKU SUPLEMEN) COA HPD2104119,4122,4128,4132...",29362700 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH647429,38249999 +What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP843159,39059990 +What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP839155,39059990 +What is the hs code for D&C YELLOW #10 AL 15PCT-20PCT (BHN BAKU PEWARNA TABLET) COA WP831858:BA3992,32151900 +What is the hs code for FD & C YELLOW #6/SUNSET YELLOW... (BHN BAKU PEWARNA TABLET) COA WP839962:BA7342,32151900 +What is the hs code for FD & C YELLOW #5/TARTRAZINE AL... (BHN BAKU PEWARNA TABLET) COA WP833401:BA4911,32151900 +What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU PEWARNA TABLET) COA WP822178:1,32151900 +What is the hs code for FD AND C BLUE #2/INDIGO CARMINE AL...(BHN BAKU UTK PEWARNA TABLET) COA WP837618:BA6893,32151900 +What is the hs code for FERROUS FUMARATE USP/FCC/PH.EUR (BHN BAKU OBAT) COA 2021/196,29171900 +What is the hs code for DAPRACARE P6000 DSHV MB (BHN BAKU KOSMETIK) COA 2106230115,39072090 +What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 2104221214,29372200 +What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 2104221214,29372200 +"What is the hs code for ISONIAZID USP (BHN BAKU OBAT) COA 21103/INH,21147/INH, 21149/INH,...",29333910 +What is the hs code for CITICOLINE SODIUM (BHN BAKU OBAT) COA Y210524,29349990 +"What is the hs code for LEVOFLOXACIN HEMIHYDRATE (FREE ALKALINE)BHN BAKU OBAT, COA C008-2105606",29349990 +"What is the hs code for POVIDONE K-25 (BHN BAKU OBAT), COA PK25-210510F31",39059990 +What is the hs code for DOXYCYCLINE HYCLATE (BHN BAKU PAKAN TERNAK) COA DH-2106059,29413000 +What is the hs code for SUCRALOSE (BHN BAKU OBAT) COA 21062702,29321400 +"What is the hs code for TUBE CRYSTAL E/ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1110353",38210090 +"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1081546",38210090 +What is the hs code for BOTTLE M-PA-C AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1138796,38210090 +What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1095256,38210090 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1081546,38210090 +"What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 1078793",38210090 +What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 202758900,38210090 +What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02D119M,38210090 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0322946,38210090 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1103638,38210090 +What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0335617,38210090 +"What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0294287",38210090 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1103638,38210090 +What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0321060,38210090 +"What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0314278,1123327",38210090 +What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335617,38210090 +"What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1007116,1033190",38210090 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1103638,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1111132,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1081518,38210090 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1132546,38210090 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1068161,38210090 +What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1040269,38210090 +"What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1123067",38210090 +What is the hs code for BOTTLE YPD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0286513,38210090 +What is the hs code for BOTTLE TSN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0126959,38210090 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1132512,38210090 +What is the hs code for BOTTLE MYCOPLASMA BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1068716,38210090 +What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0273380,38210090 +What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0272792,38210090 +What is the hs code for BOTTLE TRYPTOSE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0062865,38210090 +What is the hs code for BOTTLE AGAR NOBLE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1048168,38210090 +What is the hs code for LOOPS INOCULATING 10/TUBE 10 MICROLITER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2008440,38210090 +What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0294294,38210090 +What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1133939,38210090 +What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0350960,38210090 +What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1097237,38210090 +What is the hs code for BOTTLE YEAST CARBON BASE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0038689,38210090 +What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1111035,38210090 +What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1068956,38210090 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01D091M,38210090 +What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1103647,38210090 +What is the hs code for BOTTLE TODD HEWITT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335708,38210090 +What is the hs code for MS CD4 PERCP RM4-5 25UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065978,38210090 +What is the hs code for MS CD56 (NCAM-1) BUV615 809220 50UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1187003,38210090 +"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1097144",38210090 +"What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1035143",38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0114639,38210090 +What is the hs code for VIAL SAL O ANTISERUM FACTOR 12 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0240788,38210090 +What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0219127,38210090 +"What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 1139986",38210090 +What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 10978180,38210090 +What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP W135 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1092251,38210090 +What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1110880,38210090 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0226415,38210090 +What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0336719,38210090 +"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0097374",38210090 +What is the hs code for BOTTLE FOLIC AOAC MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1133929,38210090 +"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1069992,1139984",38210090 +What is the hs code for VIAL SAL H ANTISERUM A 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1090463,38210090 +What is the hs code for MS CD8A FITC 53-6.7 25UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9346132,38210090 +"What is the hs code for PARACETAMOL USP (BHN BAKU OBAT) COA 2110022, 2130026, 2110058",29242930 +"What is the hs code for VC CALCIUM ASCORBATE DC, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPT2105019",29362700 +"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP(BHN BAKU OBAT) COA 102102024",28183000 +What is the hs code for SENTRY POLYOX WSR 303 LEO NF (DUPONT/IFF) BHN BAKU PEWARNA TABLET) COA D682L1IRR6,39123900 +"What is the hs code for SENTRY POLYOX WSR 1105 LEO NF (DUPONT/IFF) BHN BAKU PEWARNA TABLET, COA D682K5KRD1",39123900 +What is the hs code for BAYPURE CX 100 SOLID G !25K BAG (BHN BAKU KOSMETIK) COA CHASMY0052,38249999 +"What is the hs code for MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL210715, MCCPOL210719",29094900 +What is the hs code for PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 110920/006689,38249999 +What is the hs code for OLIO VINACCIOLI RAFFINATO (BHN BAKU KOSMETIK) COA.B2100178,15152919 +What is the hs code for OLIO MANDORLE DOLCI RAFF.EU PH (BHN BAKU KOSMETIK) COA B21000180,15152919 +What is the hs code for CYCLOPENTASILOXANE CM5 L (BHN BAKU KOSMETIK) COA 2128WKQ315,29319049 +What is the hs code for OPADRY SGR RED (BHN BAKU PEWARNA TABLET) COA GA692531,38249999 +"What is the hs code for NG 5 PCT-1,2 PROPYLENGLYCOLE 95% (BAHAN BAKU OBAT) COA 2109232",30039000 +"What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105712021, L105712121",17021100 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH646435,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH646437,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH646379,38249999 +What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH646380,39061090 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH646802,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH646439,39061090 +What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH646434,38249999 +What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH646382,39061090 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH646442,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH642544,38249999 +What is the hs code for OPADRY II GRAY (BHN BAKU PEWARNA TABLET) COA SH646550,38249999 +What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH646385,39061090 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH646431,38249999 +What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH646386,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH646387,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH646422,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH646562,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH646561,38249999 +What is the hs code for OPADRY AMB II BLUE (BHN BAKU PEWARNA TABLET) COA SH646459,38249999 +What is the hs code for OPADRY AMB II BLUE (BHN BAKU PEWARNA TABLET) COA SH646458,38249999 +What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH646417,39061090 +What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH646418,38249999 +What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH646432,38249999 +What is the hs code for OPADRY YELLOW (BHN BAKU PEWARNA TABLET) COA SH646389,38249999 +What is the hs code for OPADRYAMB YELLOW (BHN BAKU PEWARNA TABLET) COASH646445,38249999 +What is the hs code for OPADRY RED (BHN BAKU PEWARNA TABLET) COA SH646390,38249999 +What is the hs code for ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH646441,39061090 +What is the hs code for OPADRY BLUE (BHN BAKU PEWARNA TABLET) COA SH646424,38249999 +What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH646430,38249999 +What is the hs code for PIGMENT BLEND BROWN (BHN BAKU PEWARNA TABLET) SH646423,32151900 +What is the hs code for OPADRY CLEAR ( BHN BAKU PEWARNA TABLET) COA SH646442,38249999 +What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH646433,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH646436,38249999 +What is the hs code for IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S168/21,38029090 +"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 040221,010321,030321,040321",38029090 +What is the hs code for EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300012,13021950 +What is the hs code for VITAMIN PREMIX 103093-A (BHN BAKU MAKANAN) COA XW92106187,21069059 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT20120055,32041900 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT20120055,32041900 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL02011130, TL02101001",29362400 +What is the hs code for PX 204005 (BHN BAKU MAKANAN) COA XW92106421,21069059 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02104029,29362800 +What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKAKAN) COA UT21010003,29362100 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11210404",29362500 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ01212140,29362200 +"What is the hs code for NIACINAMIDE FCC, 25KG BOX (BHN BAKU MAKANAN) COA 0000195880",29362900 +"What is the hs code for NIACINAMIDE FCC, 25KG BOX (BHN BAKU MAKANAN) COA 0000195880",29362900 +"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT21030025, UT21040028",29362800 +"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ01112120, UQ01112126",29362200 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT20120092,29362800 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT20120055,32041900 +"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT20120028, 20029,40007",29362900 +What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21020039,29362400 +What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21020039,29362400 +What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21020039,29362400 +What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21020039,29362400 +What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2007090,29362300 +"What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB20040051, 52",29362300 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ01110813,29362300 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB20030067,29362200 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ10113538,29362500 +"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPPLEMEN) COA TL02103655,TL02103673",29362400 +"What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL(BHN BAKU SUPPLEMEN) COA UT21030084",29362800 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ01212140,29362200 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ10113538,29362500 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB20040052,29362300 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB20030067,29362200 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU SUPPLEMEN) COA UT21020206,29362100 +"What is the hs code for DL-A-TOCOPHERYL ACETATE,5KG PE PAIL (BHN BAKU SUPPLEMEN)COA UT21030084",29362800 +"What is the hs code for D-A-TOCOPHERYL-ACETATE, 20KG JUG (BHN BAKU SUPPLEMEN) COA XH20201101",29362800 +What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12105003,29362900 +What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12105003,29362900 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT21020040,29362400 +"What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN), COA UT20100006",29362900 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT20100006,29362900 +"What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL02103655",29362400 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11210404",29362500 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ10210551,29362300 +"What is the hs code for NIACINAMIDE FCC, 25KG BOX (BHN BAKU MAKANAN) COA 0000195880",29362900 +"What is the hs code for METAMIZOLE SODIUM REGULAR GRADE(BHN BAKU OBAT) COA 2106797,2106936,2106937,2106801",29331900 +What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019141M,38249999 +What is the hs code for ECOGEL TM (BHN BAKU KOSMETIK) COA 2105102,38249999 +What is the hs code for EXO-P TM (BHN BAKU KOSMETIK) COA 715038112L,38249999 +What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019143M,38249999 +What is the hs code for PROGELINE TM (BHN BAKU KOSMETIK) COA 211580,38249999 +What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769019139M,38249999 +What is the hs code for LANACHRYS 2B PF (BHN BAKU KOSMETIK) COA 793058976M,38249999 +What is the hs code for TYROSTAT TM 09 (BHN BAKU KOSMETIK) COA 784019061M,38249999 +What is the hs code for MILD TALCUM MOD1 FM2 (BHN BAKU KOSMETIK) COA 10300228,13021950 +What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 197129,29332900 +What is the hs code for LIDOCAINE HCL (BHN BAKU OBAT) COA 195759,29242990 +"What is the hs code for NONIVAMIDE (SYNTHETIC CAPSAICIN) BHN BAKU KOSMETIK, COA.20210630",29241990 +"What is the hs code for IONOL (R) CP (BHN BAKU KOSMETIK), COA 01131820",29071900 +What is the hs code for ACARBOSE (BHN BAKU KOSMETIK) COA ACAP21020A,29329990 +What is the hs code for MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103151521,17021100 +What is the hs code for ONDANSETRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA 21OS002,29332900 +"What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB21060550",29362700 +"What is the hs code for SUNFIBER AG (BHN BAKU MAKANAN), COA 003141",13021950 +What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH647366,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH647377,38249999 +What is the hs code for VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92106377,21069059 +What is the hs code for MINERAL PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92106463,21069059 +"What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0321050487, 0321050488",29420000 +"What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0220040061",29420000 +"What is the hs code for PARSOL EHS, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0720010064",29420000 +What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001594056,29420000 +"What is the hs code for PARSOL 1789, 20 KG BOX (BHN BAKU KOSMETIK) COA 0321050488, 0321050489",29420000 +What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES2010464,29420000 +"What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0520060060",29420000 +"What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL02101008",29362400 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11210404",29362500 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT21020009,29362600 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPPLEMEN) COA UQ10313120,29362200 +"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT20120092, UT21040020",29362800 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21040020,29362800 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21040020,29362800 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT21040018,29362100 +What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92106254,21069059 +What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW92106376,21069059 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ10313120,29362200 +"What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 2151045,2151048,2151055",29242930 +"What is the hs code for CALAMINE , POWDER, BP 2021 (BHN BAKU SUPLEMEN) COA 3092304",28369990 +What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA 8MT2107132,30032000 +What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 2AX2106057,29181400 +What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2021040501,21012020 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1148193,38210090 +What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1160733,38210090 +"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SFE, SHF",38249999 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA SGB,38249999 +What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1068182,38210090 +What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01D154M,38210090 +What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) COA B01D154M,38210090 +"What is the hs code for FERRIC PYROPHOSPHATE,APPROX 25PCT... (POST BORDER) COA 3101653",28353990 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210301,38249999 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210301,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210603,38249999 +What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM21060-PGH,38249999 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO210603,38249999 +"What is the hs code for KSP-100 (10KG) BHN BAKU KOSMETIK, COA 105865",38249999 +"What is the hs code for KSP-101 (15KG) BHN BAKU KOSMETIK, COA 106404",38249999 +"What is the hs code for KF-54HV (18KG) BHN BAKU KOSMETIK, COA 007040",38249999 +"What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 14360621, 14290621",29359000 +"What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 15040621,15050621,15060621...",29359000 +What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB21030293,29362100 +What is the hs code for KETOPROFEN (BHN BAKU OBAT) COA. 197921,29183000 +"What is the hs code for PROPYPHENAZONE (ST) (BHN BAKU OBAT UTK PEWARNA TABLET) COA 2105066,5070,5071,5072,5073",29331100 +What is the hs code for CALCIUM CARBONATE DC TYPE CS90 PHARMA (BHN BAKU SUPPLEMEN) COA 202100181,28365010 +What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA 183228,28399000 +What is the hs code for COMPRITOL 888 ATO (BHN BAKU OBAT) COA 185235,28399000 +"What is the hs code for ABSORAGE (BHN BAKU KOSMETIK), COA 202322",13021990 +What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 211412,38249999 +"What is the hs code for BIOBENEFITY (BHN BAKU KOSMETIK), COA 211041",13021990 +"What is the hs code for BIOCELLACT CHAMOMILLA BD (BHN BAKU KOSMETIK),COA 210382",13021990 +"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK),COA 211404",38249999 +What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 211215,13021990 +What is the hs code for MANDARIN CLEAR (BHN BAKU KOSMETIK) COA 211240,13021990 +What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 211021,13021990 +What is the hs code for AP GRIT (ROUND)G 60-80 (BHN BAKU KOSMETIK) COA 210617,38249999 +What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA DOC1812121,28363000 +"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA RBA1992100,RBA1942100",28363000 +"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-0210421, S-A-0210422, S-A-0210423",29334910 +What is the hs code for OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-091371,38249999 +"What is the hs code for YUZU EXTRACT (BHN BAKU KOSMETIK) COA CJUBD-021061,CJUBD-031271",38249999 +What is the hs code for CAMELLIA JAPONICA SEED OIL (BHN BAKU KOSMETIK) COA CJSO-021241,38249999 +What is the hs code for HOCOX (BHN BAKU KOSMETIK) COA HOXB-040641,38249999 +What is the hs code for PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-622320,38249999 +What is the hs code for SODIUM HYALURONATE 1PCT SOLUTION (BHN BAKU KOSMETIK) COA HASC-130841,38249999 +What is the hs code for WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-030651,38249999 +What is the hs code for KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-030261,38249999 +What is the hs code for EUXYL K 720 (BHN BAKU KOSMETIK) COA 1570630,38249999 +What is the hs code for PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PI21060010,29349920 +What is the hs code for SODIUM ASCORBATE 99% TG (BHN BAKU SUPPLEMEN) COA WB210705960,29362700 +What is the hs code for CETIRIZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA 21016CZ6RII,29335990 +What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (POST BORDER),29362600 +What is the hs code for LIPOID S 20 (POST BORDER) COA 572000-2210137/037-049,29232010 +What is the hs code for PURIMOX POWDER (BHN BAKU OBAT) COA M485459,29411019 +"What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M534233,M534234,M534235,M534190,M534245",29411019 +What is the hs code for COMPRITOL 888 ATO,28399000 +What is the hs code for TSPL-30-ID (BHN BAKU KOSMETIK) COA 002012,38249999 +What is the hs code for SHIN ETSU SILICONE KP-561P (BHN BAKU KOSMETIK) COA 104137,38249999 +What is the hs code for KF-7312K (BHN BAKU KOSMETIK) COA 105189,38249999 +"What is the hs code for KP-545 (BHN BAKU KOSMETIK) COA 102932,105933",38249999 +What is the hs code for KSG-15 (BHN BAKU KOSMETIK) COA 101512,38249999 +What is the hs code for KSG-16 (BHN BAKU KOSMETIK) COA 106370,38249999 +What is the hs code for KSG-18A (BHN BAKU KOSMETIK) COA 105045,38249999 +What is the hs code for KSG-19 (BHN BAKU KOSMETIK) COA 105095,38249999 +What is the hs code for KSG-016F (BHN BAKU KOSMETIK) COA 107449,38249999 +What is the hs code for KSG-41A (BHN BAKU KOSMETIK) COA 008014,38249999 +What is the hs code for KSG-43 (BHN BAKU KOSMETIK) COA 005094,38249999 +What is the hs code for KSG-44 (BHN BAKU KOSMETIK) COA 101094,38249999 +What is the hs code for KSG-045Z (BHN BAKU KOSMETIK) COA 104021,38249999 +What is the hs code for KSG-048Z (BHN BAKU KOSMETIK) COA 102009,38249999 +What is the hs code for X-21-5595 (BHN BAKU KOSMETIK) COA 105152,38249999 +What is the hs code for NBN-30-ID (BHN BAKU KOSMETIK) COA 008056,38249999 +What is the hs code for TSPL-30-ID (BHN BAKU KOSMETIK) COA 002012,38249999 +What is the hs code for X-21-5616 (BHN BAKU KOSMETIK) COA 006023,38249999 +What is the hs code for KF-9021-ID (BHN BAKU KOSMETIK) COA 011001,38249999 +What is the hs code for KSG-042Z (BHN BAKU KOSMETIK) COA 106013,38249999 +What is the hs code for KSG-42A (BHN BAKU KOSMETIK) COA 107013,38249999 +What is the hs code for MOXIFLOXACIN HYDROCHLORIDE (BHN BAKU OBAT) COA MP0040421,29334990 +What is the hs code for ETHOCEL STANDARD 14 PREMIUM (BHN BAKU OBAT) COA D184L5P021,39123900 +What is the hs code for PREDNISONE USP42 (BHN BAKU OBAT) COA NPD210708,29372100 +What is the hs code for CYPROHEPTADINE HCL (BHN BAKU OBAT) COA CYP/07211022,29333990 +"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG210702, MCVG210709",29362700 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (POST BORDER) COA MTP19021,28363000 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (POST BORDER) COA MTP19021,28363000 +"What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (POST BORDER) COA MTP17421,MTP18921",28363000 +What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 21290005,30039000 +What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 21290005,30039000 +What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 21290005,30039000 +What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 21290005,30039000 +What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 21290005,30039000 +What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 21290005,30039000 +What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 21290005,30039000 +"What is the hs code for CEFADROXIL MONOHYDRATE COMPACTED (BHN BAKU OBAT) COA B340303, B340305, B340309",29419000 +What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (POST BORDER) COA 2109331509,29362600 +"What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M534309,323,324,310,317,308,332",29411019 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544479,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544594,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544575,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544585,35051010 +What is the hs code for MELOXICAM BP/EP (BHN BAKU OBAT) COA HMXCPP003,29341000 +What is the hs code for MC-GLUCAN (BHN BAKU KOSMETIK) COA,39139090 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT21040018,29362100 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12105030,29362900 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT21020008,29362900 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT21020008,29362900 +What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW92107069,21069059 +"What is the hs code for PX 103070 - C3 (BHN BAKU MAKANAN) COA XW92107304,XW92107305",21069059 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT21030084,29362800 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11210406",29362500 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT21030067,29362400 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12105030,29362900 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12105030,29362900 +What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPPLEMEN) COA UQ10209504,29362300 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02104690,29362400 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ10113538,29362500 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3% (BHN BAKU SUPPLEMEN) COA WB20030074,29362200 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU SUPPLEMEN) COA UT21020204,29362100 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT21030084,29362800 +"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ10210551, UQ10210553, UQ10210554",29362300 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3 PCT (BHN BAKU SUPPLEMEN) COA WB20040052,29362300 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ10213560,29362500 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3 PCT (BHN BAKU SUPPLEMEN) COA WB20040052,29362300 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ10210554,29362300 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ10210554,29362300 +What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040009,29362900 +What is the hs code for VP DN03 (BHN BAKU MAKANAN) COA XW92106435,21069059 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21030135,29362900 +"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02104690, TL02104693",29362400 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11210406,29362500 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ10112038,29362200 +What is the hs code for KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0060521,29339990 +What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (POST BORDER) COA 2109361604,29362600 +What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH647890,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH646694,38249999 +What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 19072021,25081000 +What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 20210719,25081000 +"What is the hs code for ASCORBIC ACID 90% GRANULATION (BHN BAKU SUPPLEMEN) COA WB21049079, WB21049084",29362700 +What is the hs code for ASCORBIC ACID 90% GRANULATION (BHN BAKU SUPPLEMEN) COA WB21019035,29362700 +What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20210503,29362800 +What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20210503,29362800 +What is the hs code for SODIUM CARBONATE IPH (BHN BAKU SUPPLEMEN) COA DOC1582121,28363000 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA RBA1962100,28363000 +What is the hs code for 985-L-MENTHOL CRYSTALS INDIAN NATURAL (BHN BAKU KOSMETIK) COA NFPL-MEN-20-23,38249999 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (POST BORDER) COA MTP19021,28363000 +What is the hs code for JAGUAR HP 105 SGI (BHN BAKU KOSMETIK) COA H2103045A,38249999 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210301,38249999 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210301,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210603,38249999 +What is the hs code for WITCH HAZEL ORGANIC DISTILLATE 1:10 (SB) (BHN BAKU KOSMETIK) COA HAVD210705-BIO,38249999 +What is the hs code for ROSE OILY EXTRACT (BHN BAKU KOSMETIK) COA ROS210703-H,38249999 +What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 210318,13021950 +What is the hs code for OILESS CITY TM (BHN BAKU KOSMETIK) COA 210324,13021950 +"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1131086",38210090 +"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0226415",38210090 +"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0097374,1053886",38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065943,38210090 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0226415,38210090 +"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 1063138",38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 9256006,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1053886,38210090 +What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30 ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1131086,38210090 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1139984,38210090 +"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0114639",38210090 +What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1063164,38210090 +What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1110880,38210090 +"What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH1097818,1153205",38210090 +What is the hs code for OPADRY FX YELLOW (BHN BAKU PEWARNA TABLET) COA GA694355,38249999 +What is the hs code for OPADRY SGR TRANSLUCENT (BHN BAKU PEWARNA TABLET) COA GA694365,38249999 +What is the hs code for OPADRY SGR TRANSLUCENT (BHN BAKU PEWARNA TABLET) COA GA694365,38249999 +What is the hs code for OPADRY SGR CLEAR (BHN BAKU PEWARNA TABLET) COA GA694366,38249999 +What is the hs code for BODY 3 COMPLEX (BHN BAKU KOSMETIK) COA B3C020421,38249999 +What is the hs code for MINIPORYL TM (BHN BAKU KOSMETIK) COA 832019418M,38249999 +What is the hs code for B WHITE (BHN BAKU KOSMETIK) COA 829018970M,38249999 +What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019141M,38249999 +What is the hs code for DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834019444M,38249999 +"What is the hs code for ECOGEL TM (BHN BAKU KOSMETIK), COA 2113702",38249999 +"What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK), COA 2105706",38249999 +"What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK), COA 782019143M",38249999 +"What is the hs code for MINIPORYL TM (BHN BAKU KOSMETIK), COA 832019418M",38249999 +"What is the hs code for ROSALITY TM (BHN BAKU KOSMETIK), COA 2012801",38249999 +"What is the hs code for ROSALITY TM (BHN BAKU KOSMETIK), COA 2033901",38249999 +What is the hs code for ROSALITY TM (BHN BAKU KOSMETIK) COA 2100901,38249999 +What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029189M,38249999 +What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029189M,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH647079,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH647078,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH647076,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH647080,38249999 +What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01D154M,38210090 +What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-210521,29061300 +"What is the hs code for METHOCEL K15M PREMIUM +HYDROXYPROPYL METHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D18L3U001",39123900 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544539,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544544,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543744,35051010 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1148193,38210090 +What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1140816,38210090 +What is the hs code for BACTO CASAMINO ACIDS TECHNICAL 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1118056,38210090 +What is the hs code for BACTO CASAMINO ACIDS TECHNICAL 10KG EA (MEDIA U/PENGEMBANGAN MIKRO ORGANISME)BATCH 1118056,38210090 +What is the hs code for BACTO CASAMINO ACIDS TECHNICAL 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1095082,38210090 +What is the hs code for BACTO CASAMINO ACIDS TECHNICAL 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1118056,38210090 +What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2260443,38210090 +What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2260443,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2316462,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2316462,38210090 +What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1004958,38210090 +What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0022270,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0335766,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 00343138,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 00343138,38210090 +What is the hs code for BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0365879,38210090 +What is the hs code for BACTO LACTALBUMIN HYDROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0349743,38210090 +What is the hs code for L-CARNITINE (EP GRADE)(BHN BAKU KOSMETIK)COA 10100120210529,29239000 +What is the hs code for BOTTLE R2A AGAR 500 G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335617,38210090 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1068148,38210090 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0286569,38210090 +What is the hs code for BOTTLE BACTERIOLOGICAL 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283868,38210090 +What is the hs code for BOTTLE D SORBITOL 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0217346,38210090 +What is the hs code for BOTTLE MACCONKEY AGAR 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1047444,38210090 +What is the hs code for BOTTLE POLYSORBATE 80 100G 1 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1161396,38210090 +What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1140042,38210090 +What is the hs code for KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1165835,38210090 +What is the hs code for BOTTLE BRAIN HEART INFUSION BBL 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1159375,38210090 +What is the hs code for BOTTLE YEAST NITROGEN BASE W/O AA 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1097792,38210090 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1081408,38210090 +"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01D091M,B01D130M",38210090 +What is the hs code for BOTTLE GELATIN 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1102066,38210090 +What is the hs code for BOTTLE TAT BROTH BASE 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1096296,38210090 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1111125,38210090 +What is the hs code for BOTTLE LACTOSE BROTH 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1007102,38210090 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1068148,38210090 +What is the hs code for BOTTLE R2A AGAR 500 G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335617,38210090 +What is the hs code for BOTTLE MACCONKEY BROTH 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1047444,38210090 +"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335781,110",38210090 +What is the hs code for BOTTLE EC MEDIUM 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0350002,38210090 +What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0365716,38210090 +What is the hs code for BOTTLE HEART INFUSION AGAR 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1040269,38210090 +What is the hs code for BOTTLE PLATE COUNT AGAR 500 GR(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1026614,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1081510,38210090 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1048461,38210090 +What is the hs code for BOTTLE MIO MEDIUM 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0091372,38210090 +What is the hs code for BOTTLE AGAR TECHNICAL 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1088540,38210090 +What is the hs code for BOTTLE LACTOSE BROTH 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1007102,38210090 +What is the hs code for BOTTLE NUTRIENT AGAR 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283759,38210090 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1068148,38210090 +What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B02D119M,38210090 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1117783,38210090 +What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01D095M,38210090 +What is the hs code for BOTTLE R2A AGAR 500 G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335617,38210090 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500 GR )(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0322946,38210090 +What is the hs code for BOTTLE NUTRIENT AGAR 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283759,38210090 +What is the hs code for BOTTLE GELATIN 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1102066,38210090 +What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283868,38210090 +What is the hs code for BOTTLE SOLUBLE STARCH 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1081578,38210090 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1068148,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0293248,38210090 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1042590,38210090 +What is the hs code for BOTTLE EC MEDIUM 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 035002,38210090 +"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0244908,1081408",38210090 +What is the hs code for BOTTLE YEAST NITROGEN BASE W/O AA 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1097792,38210090 +What is the hs code for BOTTLE BLOOD AGAR BASE 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0286355,38210090 +What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0273380,38210090 +What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0272792,38210090 +What is the hs code for BOTTLE OF BASAL MEDIUM 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1082936,38210090 +What is the hs code for BOTTLE M ENDO AGAR LES 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1042613,38210090 +What is the hs code for DRY VITAMIN E 50 PCT CWS/S (BHN BAKU MAKANAN) COA UE02105079,29362800 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21040141,29362900 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12105031,29362900 +What is the hs code for FOLIC ACID (BHN BAKU MAKANAN) COA UT21020042,29362400 +What is the hs code for FOLIC ACID (BHN BAKU MAKANAN) COA UT21020042,29362400 +What is the hs code for FOLIC ACID (BHN BAKU MAKANAN) COA UT21020042,29362400 +What is the hs code for FOLIC ACID (BHN BAKU MAKANAN) COA UT21020042,29362400 +What is the hs code for DRY VITAMIN E 50 PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21040012,29362800 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA QZ11210406,29362500 +"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT20120030, UT21040007",29362900 +What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02102012,29362400 +What is the hs code for RIBOFLAVIN 5-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2009106,29362300 +What is the hs code for DRY VITAMIN E 50 PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21040012,29362800 +What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02006024,29362900 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21040007,29362900 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT20040087,29362400 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT20040087,29362400 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21040141,29362900 +What is the hs code for DRY VITAMIN E 50 PCT CWS/S (BHN BAKU MAKANAN) COA UE02105079,29362800 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ10413153,29362200 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21050139,29362800 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21050139,29362800 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21050139,29362800 +What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0721010014,29420000 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21050139,29362800 +What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0721010014,29420000 +What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0421040024,29420000 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060015,29420000 +What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL02105696,29362700 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT21060051,29362800 +What is the hs code for B-CAROTENE 30 PCT FS (BHN BAKU MAKANAN) COA UE02105040,32041900 +What is the hs code for GENIVIDA(TM) TG (BHN BAKU SUPPLEMEN) COA UT19040001,29329990 +What is the hs code for REDIVIVO (R) (LYCOPENE) 10 PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT21050003,29420000 +What is the hs code for VITAMIN B12 0.1 PCT WS (BHN BAKU MAKANAN) COA UT20100059,29362600 +What is the hs code for FLORAGLO LUTEIN 5 PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT21020013,32030010 +What is the hs code for B-CAROTENE 30 PCT FS (BHN BAKU SUPLEMEN) COA UE02105040,32041900 +What is the hs code for REDIVIVO (R) (LYCOPENE) 10 PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT21050003,29420000 +What is the hs code for REDIVIVO (R) (LYCOPENE) 10 PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT21050003,29420000 +What is the hs code for REDIVIVO (R) (LYCOPENE) 10 PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT21050003,29420000 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21040003,29362900 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT21050039,29362800 +"What is the hs code for GUAIFENESIN USP 42 (B. BAKU OBAT) COA GGE-2106083 - GGE-2107095,GGE-2105080",29094900 +What is the hs code for CARBAZOCHROME SODIUM SULFONATE ORAL G (BHN BAKU OBAT)COA AC10601/10623,29339990 +"What is the hs code for PARACETAMOL USP (BHN BAKU OBAT) COA 2110058, 21100640, 2130036",29242930 +"What is the hs code for PURIDROX POWDER (BHN BAKU OBA) COA B334758,B334760,B334761,B334765",29419000 +What is the hs code for POTASSIUM L-ASPARTATE 0.5-HYDRATE (BHN BAKU OBAT) COA 3097106,29224900 +"What is the hs code for FERROUS SULFATE,DRIED, POWDER, USP43 (BHN BAKU SUPLEMEN) COA 3103276,3090743",28332920 +"What is the hs code for MAGNESIUM CARBONATE, HEAVY (BHN BAKU OBAT) COA 3091896,1104812",28369990 +What is the hs code for SELOHVITA C (BHN BAKU OBAT) COA 3103151,28429010 +"What is the hs code for SODIUM GLYCEROPHOSPHATE CRYST.,PH FRANC X(BHN BAKU SUPLEMEN) COA 3084920",29199000 +"What is the hs code for ZINC SULFATE 7-HYDRATE, CRYST, PH.EUR.10.ED (BHN BAKU OBAT) COA 3101060",28332920 +"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050489, 0321050490, 0321050491, 0321050492",29420000 +"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050492, 0321050493, 0321050494",29420000 +"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000196754, 0000196755",29362900 +What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF21092004,29420000 +What is the hs code for MONENDOX 200 BMP (BHN BAKU UTK PAKAN TERNAK) COA 2107121,29419000 +What is the hs code for ASCORBIC ACID 90 PCT GRANULATION (BHN BAKU SUPPLEMEN) COA WB21049096,29362700 +What is the hs code for METHOCEL A15 PREMIUM LV METHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D180K57021,39123900 +What is the hs code for METHOCEL E5 PREMIUM LV HYDROXYPROPYL METHYLCELLULOSE(BHN BAKU PEWARNA TABLET)COA D011K4HE02,39123900 +What is the hs code for METHOCEL K4M PREMIUM HYDROXYPROPYL METHYLCELLULOSE(BHN BAKU PEWARNA TABLET)COA D180KCJ003,39123900 +What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL METHYLCELLULOSE(BHN BAKU PEWARNA TABLET)COA D180L1I001,39123900 +What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL METHYLCELLULOSE(BHN BAKU PEWARNA TABLET)COA D180L1J001,39123900 +What is the hs code for METHOCEL E50 PREMIUM LV HYDROXYPROPYL METHYLCELLULOSE(BHN BAKU PEWARNA TABLET)COAD011K4EL02,39123900 +What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL METHYLCELLULOSE(BHN BAKU PEWARNA TABLET)COAD011K72L01,39123900 +What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL METHYLCELLULOSE(BHN BAKU PEWARNA TABLET)COAD180K5T003,39123900 +What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL METHYLCELLULOSE(BHN BAKU PEWARNA TABLET) COAD180J9O003,39123900 +What is the hs code for METHOCEL E15 PREMIUM LV HYDROXYPROPYL METHYLCELLULOSE(BHN BAKU PEWARNA TABLET)COAD011K5SL02,39123900 +What is the hs code for PANTOPRAZOLE SODIUM (STERILE) BAHAN BAKU OBAT SI/PPZ/01090721,29333990 +What is the hs code for OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA SH647139,38249999 +What is the hs code for OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA SH647138,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH647107,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH647108,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH647109,38249999 +What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH647110,38249999 +What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH647130,39061090 +What is the hs code for ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH647136,39061090 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH647111,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH647359,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH645305,38249999 +What is the hs code for OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH647113,38249999 +What is the hs code for OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH647137,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH647114,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH647115,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH647116,38249999 +What is the hs code for OPADRY YELLOW (BHN BAKU PEWARNA TABLET) COA SH647117,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH647700,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH647134,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH647133,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH646694,38249999 +What is the hs code for OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH647135,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH647294,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH647133,38249999 +What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 2109371648,29362600 +What is the hs code for 1400/1700 SUGLETS 1400/1700 (12/14 MESH) BHN BAKU PEWARNA TABLET) COA ST516915,32151900 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH647477,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH648241,38249999 +What is the hs code for ETHOCEL STANDARD 14 PREMIUM ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D184L5P021,39123900 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122101134,122101135",28363000 +What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122100910,28363000 +What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122100909,28363000 +What is the hs code for EFFERSODA (R)12 (BHN BAKU OBAT) COA 122100927,28363000 +What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122100871,29054300 +What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122100871,29054300 +What is the hs code for MANNITOL POWDER USP/EP - MANNO (POST BORDER) COA 302106305,29054300 +What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122100927,28363000 +What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122100871,29054300 +What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122100871,29054300 +What is the hs code for B WHITE TM (BHN BAKU KOSMETIK) COA 829019351M,38249999 +What is the hs code for B WHITE TM (BHN BAKU KOSMETIK) COA 829019351M,38249999 +What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769019139M,38249999 +What is the hs code for LANACHRYS 2B PF (PRESERVATIVE) (BHN BAKU KOSMETIK) COA 793059142M,38249999 +"What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK), COA 784029189M",38249999 +"What is the hs code for CW-5C 5 PCT CLEAR (BHN BAKU KOSMETIK), COA 785019289M",38249999 +What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) COA 321CAA0002,38249999 +What is the hs code for EFFERSODA (R)12 (BHN BAKU OBAT) COA 122101134,28363000 +What is the hs code for AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-022631,38249999 +What is the hs code for ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-021820,38249999 +What is the hs code for CARBAMIDE (BHN BAKU KOSMETIK) COA U210805,38249999 +What is the hs code for COMPAREX (BHN BAKU KOSMETIK) COA COEX-031181,38249999 +What is the hs code for PF CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSSBD-011351,38249999 +What is the hs code for RUBUS IDAEUS FRUIT EXTRACT (BHN BAKU KOSMETIK) COA RCFW-020720,38249999 +What is the hs code for KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-041281,38249999 +What is the hs code for FD&C BLUE 2/INDIGO CARMINE AL 11 PCT - 14 PCT (BHN BAKU PEWARNA TABLET) COA WP837604,32151900 +What is the hs code for D&C YELLOW 10 AL 15 PCT - 20 PCT (BHN BAKU PEWARNA TABLET) COA WP831856,32151900 +What is the hs code for FD&C YELLOW 6/SUNSET YELLOW... (BHN BAKU PEWARNA TABLET) COA WP839965,32151900 +What is the hs code for FD&C YELLOW 5/TARTRAZINE AL... (BHN BAKU PEWARNA TABLET) COA WP833409,32151900 +What is the hs code for ERYTHROSINE AL 38 PCT - 42 PCT (BHN BAKU UTK PEWARNA TABLET) COA WP824673,32151900 +What is the hs code for D&C YELLOW 10 AL 15 PCT - 20 PCT (BHN BAKU PEWARNA TABLET) COA WP831856,32151900 +"What is the hs code for MATCHA ( BHN BAKU KOSMETIK), COA CSP 21003 EOU",38249999 +What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040019,29420000 +What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040019,29420000 +"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00699076, VE00699077",29420000 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT21031049,29362100 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT21040018,29362100 +"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92107260, XW92107261",21069059 +What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000195881,29362900 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL02101747, TL02101752, TL02101762",29362700 +What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWDER FORM CATCOL C135(L) GRADE(B.BAKU KOSMETIK) COA 371/21,38249999 +"What is the hs code for ETHAMBUTOL (BHN BAKU OBAT) COA N1037533,N1041088-N1041095,N1042458-N1042461,....",29221910 +What is the hs code for ALLOPURINOL USP (BHN BAKU OBAT) COA 20042AY3ARIIX,29335990 +What is the hs code for LIPOID PPL-600 (BHN BAKU SUPPLEMEN) COA 57200-2210229,29232010 +What is the hs code for METOCLOPRAMIDE HYDROCHLORIDE USP (BHN BAKU OBAT) COA 21005M4RII,29242990 +What is the hs code for METOCLOPRAMIDE HYDROCHLORIDE BP (BHN BAKU OBAT) COA M-2107415,29242990 +"What is the hs code for MIAMI SCG(S) (BHN BAKU KOSMETIK) COA 21060455,21080555",34021190 +What is the hs code for FD&C RED 40/ALLURA RED AC AL38 PCT- 42 PCT (BHN BAKU PEWARNA TABLET) COA WP835349,32151900 +What is the hs code for PVAP - PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP843157,39059990 +What is the hs code for PVAP - PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP843515,39059990 +What is the hs code for PVAP - PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP843152,39059990 +What is the hs code for FD&C YELLOW 5/TARTRAZINE AL 36 PCT - 39 PCT (BHN BAKU PEWARNA TABLET) COA WP833410,32151900 +What is the hs code for FD&C YELLOW 6/SUNSET YELLOWFCF AL 38 PCT- 42 PCT (BHN BAKU PEWARNA TABLET) COA WP839969,32151900 +What is the hs code for D&C YELLOW 10 AL 15 PCT - 20 PCT (BHN BAKU PEWARNA TABLET) COA WP831856,32151900 +What is the hs code for ERYTHROSINE AL 38 PCT -42 PCT (BHN BAKU PEWARNA TABLET) COA WP822182,32151900 +What is the hs code for BIOBENEFITY (BHN BAKU KOSMETIK) COA 211041,13021990 +"What is the hs code for COMFREY LIQUID B (BHN BAKU KOSMETIK), COA 210890",13021950 +"What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK), COA 210884",13021990 +"What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK),COA 211238",38249999 +What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 201330,13021950 +What is the hs code for BIOBENEFITY (BHN BAKU KOSMETIK) COA 211041,13021990 +What is the hs code for SOAPNUT EXTRACT POWDER (BHN BAKU KOSMETIK) COA 211309,13021990 +"What is the hs code for METAMIZOLE SODIUM REGULAR GRADE(BHN BAKU OBAT) COA 21071134,21081214,1215,1216,1217,1219,1220",29331900 +What is the hs code for IBUPROFEN (BHN BAKU OBAT) COA 21087493,29163990 +What is the hs code for C47-051 SUNCROMA TITANIUM DIOXIDE (BHN BAKU KOSMETIK) COA D0NT17,38249999 +What is the hs code for CEFOTAXIME SODIUM STERILE USP (BHN BAKU OBAT) COA A200300,29419000 +What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA A201000,29419000 +"What is the hs code for COPPER SULFATE, POWDER, PH.EUR.10.ED (BHN BAKU SUPLEMEN) COA 3099671",28332500 +"What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 10715,10716",38029090 +What is the hs code for KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 08-05-21,25070000 +What is the hs code for HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 3192764,33029000 +"What is the hs code for CATECHINS TEAVIGO 1KG (BHN BAKU KOSMETIK), COA 105161",21012020 +What is the hs code for PREDNISONE USP42 (BHN BAKU OBAT) COA NPD210830,29372100 +What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE EP9/USP43 (BHN BAKU OBAT) COA NEDNA210801,29372200 +What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA EDS/CA14507,29349990 +What is the hs code for BOSWELLIA SERRATA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 21T0040100,38249999 +What is the hs code for EFFERSODA (R)12 (BHN BAKU OBAT) COA 122101136,28363000 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH648472,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH648473,38249999 +What is the hs code for METHOCEL A15 PREMIUM LV (BHN BAKU PEWARNA TABLET) COA D180K57021,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D180K3O001,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYLMETHYLCELLUL(BHN BAKU PEWARNA TABLET) COA D180KBO002,39123900 +What is the hs code for ETHOCEL STANDARD 20 PREMIUM (BHN BAKU PEWARNA TABLET) COA D184L1J021,39123900 +What is the hs code for ETHOCEL STANDARD 20 PREMIUM (BHN BAKU PEWARNA TABLET) COA D184L1J021,39123900 +What is the hs code for ETHOCEL STANDARD 20 PREMIUM (BHN BAKU PEWARNA TABLET) COA D184L1J021,39123900 +What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D180L51022,39123900 +What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D011K72L01,39123900 +What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D011K4PL02,39123900 +What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D180K61001,39123900 +What is the hs code for ETHOCEL STANDARD 10 PREMIUM (BHN BAKU PEWARNA TABLET) COA D184L3B021,39123900 +What is the hs code for ETHOCEL STANDARD 10 PREMIUM (BHN BAKU PEWARNA TABLET) COA D184K9A021,39123900 +"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP20221, MTP20321",28363000 +"What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT21040012, UT21040013",29362100 +What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT21040032,29362100 +What is the hs code for B-CAROTENE 30 PCT FS (BHN BAKU MAKANAN) COA UE02105041,32041900 +What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT21060018,29362500 +"What is the hs code for B-CAROTENE 30 PCT FS (BHN BAKU MAKANAN) COA UE02105041,UE02105042",32041900 +"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ10316049,UQ10316050,UQ10316051",29362700 +What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT21060018,29362500 +What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT21060018,29362500 +What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL02105566,29362700 +What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02105566,29362700 +What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT21070033,29362100 +"What is the hs code for VITAMIN B12 0.1 PCT WS (BHN BAKU SUPPLEMEN) COA UT20100060,UT20100061",29362600 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT21061085,29362100 +What is the hs code for B-CAROTENE 30 PCT FS (BHN BAKU SUPPLEMEN) COA UE02105042,32041900 +What is the hs code for FLORAGLO LUTEIN 5 PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT21020013,32030010 +What is the hs code for OPTISHARP (ZEAXANTHIN) 5 PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT18100002,32041900 +"What is the hs code for NORFLOXACIN (BHN BAKU PAKAN HEWAN) COA 210327,210328",29335990 +What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH648757,38249999 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH648763,38249999 +What is the hs code for GINSENG DRY EXTR 2 PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0039100,13021990 +What is the hs code for GINSENG DRY EXTR 2 PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0039200,13021990 +What is the hs code for GINSENG DRY EXTR 2 PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0052600,13021990 +What is the hs code for GINSENG DRY EXTR 2 PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0052700,13021990 +What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334752,29419000 +"What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340310, B340311,B340312",29419000 +"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG210723,MCVG210730",29362700 +What is the hs code for MANNOGEM (R) XL OPAL SPRAY DRIED MANNITOL USP/EP (BHN BAKU OBAT) COA 122101074,29054300 +What is the hs code for PVAP - PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP843718,39059990 +What is the hs code for PVAP - PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP843719,39059990 +What is the hs code for FD&C YELLOW 6/SUNSET YELLOW FCF AL 38 PCT- 42 PCT (BHN BAKU PEWARNA TABLET) COA WP831242,32151900 +What is the hs code for D&C YELLOW 10 AL 15 PCT - 20 PCT (BHN BAKU PEWARNA TABLET) COA WP844748,32151900 +What is the hs code for D&C YELLOW 10 AL 15 PCT - 20 PCT (BHN BAKU PEWARNA TABLET) COA WP844748,32151900 +What is the hs code for FD&C YELLOW 5/TARTRAZINE AL36 PCT - 39 PCT (BHN BAKU PEWARNA TABLET) COA WP833409,32151900 +What is the hs code for FD&C BLUE 2/INDIGO CARMINE AL30 PCT- 36 PCT (BHN BAKU PEWARNA TABLET) COA WP837609,32151900 +What is the hs code for ERYTHROSINE AL 38 PCT-42 PCT (BHN BAKU PEWARNA TABLET) COA WP822181,32151900 +What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 107164,38249999 +What is the hs code for KSG-210 (16KG) (BHN BAKU KOSMETIK) COA 104950,38249999 +What is the hs code for KSG-710 (16KG) (BHN BAKU KOSMETIK) COA 105425,38249999 +What is the hs code for KSP-101 (15KG) (BHN BAKU KOSMETIK) COA 106405,38249999 +What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) COA 105025,38249999 +What is the hs code for KP-561P (16KG) (BHN BAKU KOSMETIK) COA 104138,38249999 +What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) COA 107873,38249999 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1148199,38210090 +What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1160739,38210090 +What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1160733,38210090 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1182004,38210090 +What is the hs code for BOTTLE CHROMAGAR CANDIDA 500GM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1097086,38210090 +"What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM(MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1117839,48,1167524,830",38210090 +What is the hs code for BOTTLE BORDET GENGOU AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0272029,38210090 +What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1201394,38210090 +What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283759,38210090 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1188932,38210090 +What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1159422,38210090 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1140190,38210090 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1047444,38210090 +What is the hs code for BOTTLE GLYCEROL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1181694,38210090 +What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1046365,38210090 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1124600,38210090 +What is the hs code for BOTTLE BLOOD AGAR BASE 500 G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0286355,38210090 +What is the hs code for BOTTLE LEVINE EMB AGAR 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 1019596,38210090 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0315698,38210090 +What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0286434,38210090 +What is the hs code for BOTLE LYSINE DECARBOXYLASE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0272792,38210090 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1081408,38210090 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1133957,38210090 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1179332,38210090 +What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1033190,38210090 +What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283868,38210090 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1188932,38210090 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1103628,38210090 +What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335617,38210090 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1111027,38210090 +What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1138027,38210090 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1103638,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1111132,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1081518,38210090 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1042590,38210090 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1132546,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1166778,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1074280,38210090 +What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1097917,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500 G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1081510,38210090 +What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0293747,38210090 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1048461,38210090 +"What is the hs code for BOTTLE BRILLIANT GREEN 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1019484",38210090 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1097054,38210090 +"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0350990,1145029",38210090 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0322946,38210090 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1047444,38210090 +What is the hs code for BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1042865,38210090 +What is the hs code for BOTTLE MALT EXTRACT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1138882,38210090 +What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKIROORGANISME) BATCH 0273380,38210090 +What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0062865,38210090 +What is the hs code for PAIL BACTO AGAR 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1131476,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MED 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9112920,38210090 +What is the hs code for BOTTLE BORDET GENGOU AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1172498,38210090 +What is the hs code for BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1082936,38210090 +What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1042613,38210090 +What is the hs code for BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1166546,38210090 +What is the hs code for BOTTLE MICRO INOCULUM BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1075951,38210090 +What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1046365,38210090 +What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1019596,38210090 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1188932,38210090 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1103628,38210090 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1103638,38210090 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1042590,38210090 +What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1097917,38210090 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1097054,38210090 +What is the hs code for BOTTLE BIGGY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1166930,38210090 +What is the hs code for BOTTLE PHENOL RED LACTOSE BR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1081551,38210090 +What is the hs code for BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218592,38210090 +What is the hs code for BOTLE LYSINE DECARBOXYLASE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0272792,38210090 +What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0062865,38210090 +What is the hs code for BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1040332,38210090 +What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0294294,38210090 +What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1111035,38210090 +What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1068956,38210090 +What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1042613,38210090 +What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1068885,38210090 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1201123,38210090 +What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1208830,38210090 +What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335617,38210090 +What is the hs code for MECOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/0721031,29362600 +"What is the hs code for FERROUS SULFATE, DRIED, POWDER, USP 43(BHN BAKU OBAT) COA 3092988",28332920 +What is the hs code for SALBUTAMOL SULFATE BP (BHN BAKU OBAT) COA 021F051,29225090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1048171,38210090 +What is the hs code for VIAL SHIGELLA ANTIS POLY C1 LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0345561,38210090 +What is the hs code for VIAL SAL H ANTISERUM B 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0240783,38210090 +What is the hs code for VIAL SHIGELLA ANTIS POLY A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0198678,38210090 +What is the hs code for VIAL SHIGELLA ANTIS POLY D LYOPHILIZE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9172946,38210090 +What is the hs code for VIAL SAL O ANTIS GRP B FTR 1/4/5/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0205165,38210090 +What is the hs code for VIAL SAL O ANTISERUM GRP C1 FTR 6/7 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0281783,38210090 +What is the hs code for VIAL E COLI O ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0094884,38210090 +What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1145576,38210090 +What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1110880,38210090 +What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1131086,38210090 +What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1131086,38210090 +What is the hs code for VIAL E COLI H ANTISERUM H7 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0212196,38210090 +What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1145576,38210090 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1063145,38210090 +What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1221115,38210090 +"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1098974,110...",38210090 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1063145,38210090 +"What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1126127",38210090 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1070093,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1053886,38210090 +"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065943,112322",38210090 +What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1126127,38210090 +What is the hs code for CLOMIPHENE CITRATE USP/EP (BHN BAKU OBAT ) COA 202107190216,29221990 +What is the hs code for HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2510721,29391900 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH648099,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH648100,38249999 +What is the hs code for OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH648065,38249999 +What is the hs code for OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH647842,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH648073,39061090 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH648072,39061090 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH648069,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH648071,38249999 +What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH648067,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH648059,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH648166,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH647522,38249999 +What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH648068,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH648050,38249999 +What is the hs code for OPADRY RED (BHN BAKU PEWARNA TABLET) COA SH648051,38249999 +What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH648052,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH648074,38249999 +What is the hs code for OPADRY AMB RED (BHN BAKU PEWARNA TABLET) COA SH648079,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH648075,38249999 +"What is the hs code for MIRASIL DM 5 L (BHN BAKU KOSMETIK) COA 2132FF2615,21092PN115,2132FF2315",39100090 +What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105712321,17021100 +What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105712321,17021100 +What is the hs code for ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (SB) (BHN BAKU KOSMETIK)COA ROSD210603-BIO,38249999 +What is the hs code for DANDRILYS (NAT) (BHN BAKU KOSMETIK) COA DAN210604-Z,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210603,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210603,38249999 +What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIV201202-BGBIO,38249999 +What is the hs code for KIGELINE (BHN BAKU KOSMETIK)COA KA210504-B,38249999 +What is the hs code for LICORICE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA GLG210301-BGBIO,38249999 +What is the hs code for WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK)COA EG138-19060,38249999 +What is the hs code for WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK)COA EG138-191002,38249999 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO210703,38249999 +What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA210201,38249999 +What is the hs code for GREENSIL (BHN BAKU KOSMETIK) GS210702-I,38249999 +What is the hs code for GREENSIL (BHN BAKU KOSMETIK) GS210703-I,38249999 +What is the hs code for OLIVE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA OLE2108R1,38249999 +What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 210695,13021990 +What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1068182,38210090 +What is the hs code for BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1138838,38210090 +What is the hs code for CINNARIZINE (BHN BAKU OBAT) COA CIN2108101,29335990 +What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 2109431763,29362600 +What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 2109331509,29362600 +What is the hs code for PROMETHAZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA HPHCPP023,29343000 +What is the hs code for BIOBENEFITY (BHN BAKU KOSMETIK) COA 211519,13021990 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 211404,38249999 +What is the hs code for CUREPASSION (BHN BAKU KOSMETIK) COA 210905,13021990 +What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 211215,13021990 +What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 211349,13021990 +What is the hs code for BIOBENEFITY (BHN BAKU KOSMETIK) COA 211519,13021990 +What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 210550,29329990 +What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 211412,38249999 +What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 211095,13021990 +What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 211773,13021990 +What is the hs code for NICLOSAMIDE (BHN BAKU PAKAN HEWAN) COA 20210808,29242990 +"What is the hs code for POVIDONE K-25 (BHN BAKU OBAT), COA PK25-210513F32",39059990 +"What is the hs code for CROSPOVIDONE XL-10 (BHN BAKU OBAT), COA PP210622XL-10",39059990 +"What is the hs code for EMPTY FIBRE DRUM, FREE OF COST SAMPLE NO COMMERCIAL VALUE",48192000 +What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2021040501,21012020 +What is the hs code for OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH648361,38249999 +What is the hs code for OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH648362,38249999 +What is the hs code for OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH648363,38249999 +What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH648423,39061090 +What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH648364,39061090 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH648512,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH648071,38249999 +What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH648067,38249999 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH648366,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH648372,38249999 +What is the hs code for OPADRY II GRAY (BHN BAKU PEWARNA TABLET) COA SH648367,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH648375,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH648368,38249999 +What is the hs code for OPADRY AMB II CLEAR (BHN BAKU PEWARNA TABLET) COA SH648373,38249999 +What is the hs code for OPADRY AMB MAROON (BHN BAKU PEWARNA TABLET) COA SH648369,38249999 +What is the hs code for LABRAFIL M 1944 CS BF (BAHAN BAKU OBAT) COA 184833,28399000 +What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 185845,28399000 +What is the hs code for PRECIROL ATO 5 (BAHAN BAKU OBAT) COA 184931,28399000 +What is the hs code for GELOIL SC (BHN BAKU OBAT) COA 185392,28399000 +"What is the hs code for EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300013,10300014",13021950 +What is the hs code for D&C GREEN NO.5 C.I.61570 FDA CERTIFIED (BHN BAKU KOSMETIK) COA 10300039,13021950 +What is the hs code for STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN544228,35051010 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (POST BORDER) COA QZ11210435,29362500 +"What is the hs code for NIACINAMIDE PC (POST BORDER) COA 0000197488,0000197489",29362900 +"What is the hs code for DL-A-TOCOPHERYL ACETATE (POST BORDER) COA UT21050139,UT21050150,UT21070205",29362800 +What is the hs code for NIACINAMIDE PC (POST BORDER) COA 0000197488,29362900 +What is the hs code for DL-A-TOCOPHERYL ACETATE (POST BORDER) COA UT21050139,29362800 +What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF21092004,29420000 +What is the hs code for GINKGO LEAVES EXTRACT (BHN BAKU KOSMETIK) COA 21070747,13021950 +What is the hs code for VITAMIN D3 1.0 MIU/G (POST BORDER) COA UT21040137,29362900 +What is the hs code for VITAMIN D3 1.0 MIU/G (POST BORDER) COA UT21040137,29362900 +What is the hs code for VITAMIN PREMIX MILK POWDER FOR ADULTS (POST BORDER) COA XW92107434,21069059 +What is the hs code for PX 204005 (POST BORDER) COA XW92107435,21069059 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE (POST BORDER) COA QZ11210407,QZ11210434",29362500 +What is the hs code for VITAMIN D3 1.0 MIU/G (POST BORDER) COA UT21040141,29362900 +What is the hs code for VITAMIN D3 1.0 MIU/G (POST BORDER) COA UT21040141,29362900 +What is the hs code for VITAMIN D3 1.0 MIU/G (POST BORDER) COA UT21040141,29362900 +What is the hs code for B-CAROTENE 10 PCT CWS (POST BORDER) COA UT20120055,32041900 +What is the hs code for DL-A-TOCOPHERYL ACETATE (POST BORDER) COA UT21040099,29362800 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (POST BORDER) COA UT21020013,29362900 +What is the hs code for VITAMIN K1 (POST BORDER) COA SI21040009,29362900 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3 PCT (POST BORDER) COA WB20030171,29362900 +What is the hs code for D-A-TOCOPHERYL-ACETATE (POST BORDER) COA XH20210401,29362800 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (POST BORDER) COA QZ11210435,29362500 +What is the hs code for NIACINAMIDE (POST BORDER) COA OP12107007,29362900 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3 PCT (POST BORDER) COA WB20030074,29362200 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (POST BORDER) COA TL02102028,TL02102036",29362700 +What is the hs code for SODIUM ASCORBATE CRYSTALLINE (POST BORDER) COA TL02103186,29362700 +What is the hs code for DRY VITAMIN E 50 PCT CWS/S (POST BORDER) COA UT21040012,29362800 +What is the hs code for D-PANTHENOL (POST BORDER) COA TL02102012,29362400 +What is the hs code for NIACINAMIDE FCC (POST BORDER) COA 0000195881,29362900 +What is the hs code for VITAMIN PREMIX FOR FERMENTED MILK (POST BORDER) COA XW92108022,21069059 +What is the hs code for VITAMIN PREMIX MENGNIU UHT MILK (POST BORDER) COA XW92108115,21069059 +What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105712321,17021100 +What is the hs code for STARLAC (R) (BHN BAKU OBAT) COA L104265320,17021100 +What is the hs code for SORBOLAC (R) 400 (BHN BAKU OBAT) COA L103842621,17021100 +What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH648757,38249999 +What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH648423,39061090 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH648777,38249999 +What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122101211,29054300 +What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU UTK PAKAN TERNAK) COA 202100544,28183000 +What is the hs code for ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-032861,38249999 +What is the hs code for SOPHORA ROOT POWDER (BHN BAKU KOSMETIK)COA SFP-N-051851,38249999 +"What is the hs code for WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-030651,HMVBD-042481",38249999 +What is the hs code for CACTUS EXTRACT (BHN BAKU KOSMETIK) COA CAB-020321,38249999 +What is the hs code for SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 081321,28321000 +"What is the hs code for BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012711,BHA-021781",38249999 +What is the hs code for LICORICE EXTRACT (BHN BAKU KOSMETIK) COA GGB-011641,38249999 +What is the hs code for SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) 081321,28321000 +What is the hs code for TRANEXAMIC ACID (BHN BAKU KOSMETIK) COA AC210601,38249999 +What is the hs code for HOCOX (BHN BAKU KOSMETIK) COA HOXB-072081,38249999 +What is the hs code for BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-021781,38249999 +What is the hs code for MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-011151,38249999 +What is the hs code for OLIGO-HA (BHN BAKU KOSMETIK)COA OHA-113081,38249999 +What is the hs code for SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-021081,38249999 +What is the hs code for SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 083021,28321000 +What is the hs code for SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 082421,28321000 +What is the hs code for FLORAGLO (R) LUTEIN 20 PCT SAF (POST BORDER) COA UE02106008,32030010 +"What is the hs code for VC ASCORBIC ACID 325 MESH (POST BORDER) COA HPD2105074,065,058,052,037,033,027,025,023,..",29362700 +"What is the hs code for VC ASCORBIC ACID 325 MESH (POST BORDER) COA HPD2105074,088,101,111,116,121,123,126,127,..",29362700 +What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 702018037K,38249999 +What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799039054M,38249999 +What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 2021114,38249999 +What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019186M,38249999 +What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019287M,38249999 +What is the hs code for CW-5C 5 PCT CLEAR (BHN BAKU KOSMETIK) COA 785019289M,38249999 +What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019143M,38249999 +What is the hs code for PROGELINE TM (BHN BAKU KOSMETIK) COA 203149R,39139090 +What is the hs code for BODY_3 COMPLEX TM (BHN BAKU KOSMETIK) COA B3C020421,38249999 +What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769019234M,39139090 +What is the hs code for ECOSLIM TM (BHN BAKU KOSMETIK) COA 2114201,38249999 +What is the hs code for MINIPORYL TM (BHN BAKU KOSMETIK) COA 832019290M,38249999 +What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) COA 2103116,38249999 +What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029189M,39139090 +What is the hs code for TYROSTAT TM (BHN BAKU KOSMETIK) COA 784029189M,39139090 +"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP(BHN BAKU OBAT) COA 102102033",28183000 +What is the hs code for SUPPOCIRE A PELLETS (BHN BAKU OBAT) COA 21E1705,28399000 +What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 21E0801,28399000 +What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 21E1110,28399000 +What is the hs code for CANDESARTAN (BAHAN BAKU OBAT ) COA 5668-20-437,29339990 +"What is the hs code for SULPHAMETHOXAZOLE BP (BHN BAKU OBAT) COA 20060821,20100821",29359000 +"What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 19970821,20030821,19990821,20050821,...",29359000 +What is the hs code for FLORAGLO (R) LUTEIN 20 PCT SAF (POST BORDER) COA UE02106008,32030010 +"What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP19021,MTP20321",28363000 +What is the hs code for BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP19721,28363000 +What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1083193,38210090 +What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2260443,38210090 +What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2260443,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2242841,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2242841,38210090 +What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1004958,38210090 +What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1004958,38210090 +What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0022270,38210090 +What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0175474,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0343138,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0343138,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0343138,38210090 +What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105712421,17021100 +What is the hs code for MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103150821,17021100 +What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122101135,28363000 +What is the hs code for VITAMIN B12 0.1 PCT WS (BHN BAKU SUPPLEMEN) COA UT20100061,29362600 +What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT21060019,29362500 +What is the hs code for B-CAROTENE 10 PCT EM YELLOW (BHN BAKU MAKANAN) COA UT21020002,32041900 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT21061087,29362100 +What is the hs code for B-CAROTENE 30 PCT FS (BHN BAKU SUPPLEMEN) COA UE02105042,32041900 +What is the hs code for FLORAGLO LUTEIN 5 PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT21020013,32030010 +What is the hs code for BETATAB 20 PCT S (BHN BAKU SUPPLEMEN) COA UT21050013,32041900 +What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122100927,28363000 +What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122100871,29054300 +What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122100871,29054300 +"What is the hs code for RANITIDINE HCL USP (BHN BAKU OBAT) COA RH558 08 21, RH559 08 21",29321900 +"What is the hs code for RANITIDINE HCL USP (BHN BAKU OBAT) COA RH560 08 21,RH565 08 21",29321900 +"What is the hs code for RANITIDINE HCL USP (BHN BAKU OBAT) COA RH613 08 21,RH614 08 21,RH615 08 21",29321900 +"What is the hs code for TRISODIUMCITRATE DIHYDRATE FINE GRANULAR (BHN BAKU MAKANAN) COA UJ125,UJ126",29181400 +What is the hs code for ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (BHN BAKU KOSMETIK) COA ROSD210603-BIO,38249999 +What is the hs code for ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (BHN BAKU KOSMETIK) COA ROSD210704-BIO,38249999 +What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA210802,38249999 +What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA VIV201202-BGBIO,39139090 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210802,38249999 +What is the hs code for METHOCEL E6 PREMIUM LV (BHN BAKU PEWARNA TABLET) COA D011L3IL02,39123900 +What is the hs code for METHOCEL K100M PREMIUM (BHN BAKU PEWARNA TABLET) COA D180L4K001,39123900 +What is the hs code for VC CALCIUM ASCORBATE DC (POST BORDER) COA HPT2105028,29362700 +What is the hs code for OPALUX MAROON (BHN BAKU PEWARNA TABLET) COA DT719099,32151900 +What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET) COA DT717312,32151900 +What is the hs code for OPACODE GOLD (BHN BAKU PEWARNA TABLET) COA DT719053,32151900 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SHF,38249999 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA SGC,38249999 +What is the hs code for PROMOIS SILK-1000 (BHN BAKU KOSMETIK) COA SFC,38249999 +What is the hs code for NYSTATIN POWDER ROW GRADE (BHN BAKU OBAT) COA C114532,29419000 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0217346,38210090 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1047444,38210090 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1081578,38210090 +What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1216783,38210090 +What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1216783,38210090 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1200358,38210090 +What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2111335,38210090 +"What is the hs code for SACHET GASPAK EZ CO2 CONTAINER, BATCH 1208821",38210090 +What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 210030900,38210090 +What is the hs code for OPTISHARP NAT ZEA 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA EW21025003,32041900 +What is the hs code for REDIVIVO (R) (LYCOPENE) 10 PCT FS (BHN BAKU SUPPLEMEN) COA UE02104002,29420000 +What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT21040032,29362100 +What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT21070034,29362100 +What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-002-Y,13021990 +"What is the hs code for PURIDROX POWDER (BHN BAKU OBA) COA B334774,B334775,B334777",29419000 +What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 210324,13021990 +"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 210602,210618",13021950 +"What is the hs code for PERMETHRIN (PHARMA GRADE) BHN BAKU OBAT COA 215046008,215046009",29163990 +What is the hs code for AZITHROMYCIN (BHN BAKU OBAT) COA 129-210612-1,29419000 +"What is the hs code for CROSPOVIDONE XL (BHN BAKU OBAT), COA PP210415XL",39059990 +What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-200607,29397900 +What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 2110189Z,29242930 +What is the hs code for PREDNISONE USP42 (BHN BAKU OBAT) COA NPD210814,29372100 +What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE EP9/USP43 (BHN BAKU OBAT) COA NEDNA210805,29372200 +"What is the hs code for SODIUM FEREDETATE, POWDER, BP2021 (BHN BAKU OBAT) COA 3100051",29224900 +"What is the hs code for FERRIC PYROPHOSPHATE,24.0-26.0 PCT FE (BHN BAKU MAKANAN) COA 3101651",28353990 +What is the hs code for TREHALOSE (BHN BAKU MAKANAN) COA 20210905,29400000 +What is the hs code for OPADRY FX YELLOW (BHN BAKU PEWARNA OBAT) COA GA695798,38249999 +What is the hs code for OPADRY SGR TRANSLUCENT (BHN BAKU PEWARNA TABLET) COA GA695796,38249999 +What is the hs code for OPADRY SGR CLEAR (BHN BAKU PEWARNA TABLET) COA GA695797,38249999 +What is the hs code for OPADRY FX YELLOW (BHN BAKU PEWARNA OBAT) COA GA695798,38249999 +What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-002-Y,38249999 +What is the hs code for SURELEASE ETHYLCELLULOSE DISPERSION TYPE B NF CLEAR (BHN BAKU PEWARNA TABLET) COA IN545428,32151900 +What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512130,47069200 +What is the hs code for ZINC GLYCINATE (BHN BAKU UTK PAKAN TERNAK) COA 62039,29224900 +What is the hs code for MANGANESE GLYCINATE (BHN BAKU UTK PAKAN TERNAK) COA 62040,29224900 +What is the hs code for EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) COA 1571128,38249999 +What is the hs code for SENSIVA SC 10 CAN 10 KG (BHN BAKU KOSMETIK) COA 1571322,38249999 +"What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) COA 1571186,1571422,1571403",38249999 +"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT21040032,UT21070033",29362100 +What is the hs code for OPACODE S-1-277005 BLACK (BHN BAKU PEWARNA TABLET) COA TKL58703,32151900 +What is the hs code for PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 030221/006855,38249999 +What is the hs code for PEONY P118 182 (BHN BAKU KOSMETIK) COA 3192765,33029000 +What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA MLAH0510721,29341000 +What is the hs code for CURCUMA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 21S0176508,13021990 +What is the hs code for BOSWELLIA SERRATA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 21T0029500,13021990 +"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT21040099,UT21050145",29362800 +What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02102019,29362400 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU MAKANAN) COA UT21020204,UT21020206",29362100 +What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040019,29420000 +What is the hs code for D-PANTHENOL 75 L (BHN BAKU KOSMETIK) COA TL02105318,29362400 +What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0421040024,29420000 +What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040024,29420000 +What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0821010129,29420000 +What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02101008,29362700 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02105006,29362900 +What is the hs code for PREMIX VMP JELLY (BHN BAKU MAKANAN) COA XW92108005,21069059 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3 PCT (BHN BAKU SUPPLEMEN) COA WB21050185,29362900 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3 PCT (BHN BAKU SUPPLEMEN) COA WB21050185,29362900 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21040007,29362900 +What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21050103,29362400 +What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21050103,29362400 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPPLEMEN) COA UQ10513180,29362200 +What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21050103,29362400 +What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02105006,29362900 +What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21050103,29362400 +What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02105006,29362900 +What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK) COA 8483300,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH648910,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH648899,38249999 +What is the hs code for ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH648913,39061090 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH648900,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH648518,38249999 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH648902,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH648164,38249999 +What is the hs code for OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH649393,38249999 +What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH648904,39061090 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH648905,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH648914,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH648906,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH648960,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH648960,38249999 +What is the hs code for OPADRY 200 BROWN (BHN BAKU PEWARNA TABLET) COA SH648954,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH648955,38249999 +"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP(BHN BAKU OBAT) COA 102102033,102102035",28183000 +What is the hs code for POTASSIUM IODIDE AND CARRIER (BHN BAKU OBAT) COA 3104535,28276000 +What is the hs code for CHOLINE L-BITARTRATE (BAHAN BAKU OBAT) COA 3023195,29231000 +What is the hs code for EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300054,13021940 +What is the hs code for ACTIPONE (R) CAMU CAMU ET (BHN BAKU KOSMETIK) COA 10300023,13021950 +"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG210813,MCVG210820",29362700 +"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-0450621,S-A-0460621",29334910 +"What is the hs code for FERROUS GLUCONATE, POWDER, PH.EUR.10.ED. (BHN BAKU OBAT) COA 3100740",29181600 +What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET) COA DT719212,32151900 +What is the hs code for OPASPRAY YELLOW (BHN BAKU PEWARNA TABLET) COA DT718563,32151900 +What is the hs code for OPADRY TF GREEN (BHN BAKU PEWARNA TABLET) COA DT719213,38249999 +What is the hs code for AQUACOAT ECD-30 ETHYLCELLULOSE AQUEOUS... (BHN BAKU PEWARNA TABLET) COA 2173877225,39123900 +What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102169005,28161000 +"What is the hs code for MIAMI SCG(S) (BHN BAKU KOSMETIK) COA 21080555,21092155",34021190 +What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK) COA 2108EF4511,29224900 +What is the hs code for LIFE'S DHA(TM) S35-O300 (BHN BAKU SUPLEMEN) COA VY00428508,29362500 +What is the hs code for LIFE'S DHA S35-O100 (BHN BAKU SUPLEMEN) COA VY00383107,29362500 +What is the hs code for MANNOGEM (R) XL OPAL SPRAY DRIED MANNITOL USP/EP (BHN BAKU OBAT) COA 122101075,29054300 +What is the hs code for SURELEASE ETHYLCELLULOSE DISPERSION TYPE B NF CLEAR (BHN BAKU PEWARNA TABLET) COA IN545428,32151900 +What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-042481,38249999 +What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-042481,38249999 +What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-140191,38249999 +What is the hs code for HYUNDAI BIOLAND NEWAPLE (BHN BAKU KOSMETIK) COA NWPB-020681,38249999 +What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012781,38249999 +"What is the hs code for HYUNDAI BIOLAND SENAS (BHN BAKU KOSMETIK) COA NASB-011441,NASB-031281",38249999 +What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE 1 PCT SOLUTION (BHN BAKU KOSMETIK) COA HASC-130841,38249999 +What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-042481,38249999 +What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK)COA BAG-032861,38249999 +What is the hs code for HYUNDAI BIOLAND NEWAPLE (BHN BAKU KOSMETIK) COA NWPB-020681,38249999 +What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-072081,38249999 +What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-120891,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH647897,38249999 +What is the hs code for OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA SH647139,38249999 +What is the hs code for OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA SH647665,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH647293,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH647583,38249999 +What is the hs code for OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH647584,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH648277,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH648277,38249999 +What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH647586,39061090 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH646139,39061090 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH647230,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH647619,39061090 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH647620,39061090 +What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH647587,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH647588,38249999 +What is the hs code for OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH647589,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH647591,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH647592,38249999 +What is the hs code for OPADRY AMB II CLEAR (BHN BAKU PEWARNA TABLET) COA SH647621,38249999 +What is the hs code for OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH647137,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH647593,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH647594,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH646416,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH647700,38249999 +What is the hs code for OPADRY AMB II PURPLE (BHN BAKU PEWARNA TABLET) COA SH647634,38249999 +What is the hs code for OPADRY PURPLE (BHN BAKU PEWARNA TABLET) COA SH647595,38249999 +What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH647596,38249999 +What is the hs code for OPADRY YELLOW (BHN BAKU PEWARNA TABLET) COA SH647117,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH647115,38249999 +What is the hs code for ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH647624,39061090 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH647599,38249999 +What is the hs code for OPADRY YELLOW (BHN BAKU PEWARNA TABLET) COA SH647600,38249999 +What is the hs code for OPADRY II BLACK (BHN BAKU PEWARNA TABLET) COA SH647626,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH647627,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH647633,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH647107,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH647601,38249999 +What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB180721,39123900 +What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B140621,39123900 +What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B140621,39123900 +What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB180721,39123900 +What is the hs code for LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LG240621,39123900 +What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0057767,38249999 +What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 06092021,25081000 +What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040019,29420000 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK)COA 0708200129,0708200176 SD 0708200180,0708210001 SD 0708210002",29420000 +What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040024,29420000 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21070210,29362800 +What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0921020004,29420000 +What is the hs code for VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92108197,21069059 +What is the hs code for MINERAL PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92108198,21069059 +"What is the hs code for DRY VITAMIN E 50 PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21040020,UT21040021",29362800 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21040007,29362900 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21040007,29362900 +What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040009,29362900 +What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12107007,29362900 +"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92108257,XW92108258",21069059 +What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA 20210911,17023010 +What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1123046,38210090 +What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1123046,38210090 +What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1166662,38210090 +What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2260443,38210090 +What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2355402,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2242841,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2305551,38210090 +What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1004958,38210090 +What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1004958,38210090 +What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0175474,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0343138,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0343138,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1046607,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1046607,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1046607,38210090 +What is the hs code for BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0365879,38210090 +What is the hs code for DIFCO BEEF EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0182357,38210090 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH649742,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH649125,38249999 +What is the hs code for ASTABIO ARV-S (BHN BAKU OBAT) COA 2108041,32030010 +What is the hs code for SORBITOL SOLUTION 70PCT CRYSTALLIZING (BHN BAKU KOSMETIK) COA 2122P332,29054400 +What is the hs code for SORBITOL SOLUTION 70PCT CRYSTALLIZING (BHN BAKU KOSMETIK) COA 2122P332,29054400 +What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102169005,28161000 +What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102169005,28161000 +What is the hs code for DRY VITAMIN A ACETATE 500 AF (BHN BAKU SUPLEMEN) COA WB21070044,29362100 +What is the hs code for DRY VITAMIN A ACETATE 500 AF (BHN BAKU SUPLEMEN) COA WB21070035,29362100 +What is the hs code for DRY VITAMIN A ACETATE 500 AF (BHN BAKU SUPLEMEN) COA WB21070035,29362100 +"What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB21020738,WB21080755",29362800 +What is the hs code for OPTISHARP NAT. ZEA. 14 PCT SAFF. (BHN BAKU SUPLEMEN) COA 2107108366,32041900 +What is the hs code for EUXYL K 900 (BHN BAKU KOSMETIK) COA 1571128,38249999 +What is the hs code for MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50397,29061100 +What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019287M,38249999 +What is the hs code for CW-5C 5 PCT CLEAR (BHN BAKU KOSMETIK) COA 785019479M,38249999 +What is the hs code for EXO-P TM (BHN BAKU KOSMETIK) COA 715038112L,38249999 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2105706,38249999 +What is the hs code for PROGELINE TM (BHN BAKU KOSMETIK) COA 203149R,39139090 +What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799039054M,38249999 +What is the hs code for BODY_3 COMPLEX TM (BHN BAKU KOSMETIK) COA B3C030721,38249999 +What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769019234M,39139090 +What is the hs code for CW-5C 5 PCT CLEAR (BHN BAKU KOSMETIK) COA 785019479M,38249999 +What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA EDS/CA14606,29349990 +"What is the hs code for FERROUS SULFATE,DRIED, POWDER, USP43 (BHN BAKU SUPLEMEN) COA 3081610",28332920 +"What is the hs code for ZINC SULFATE 7-HYDRATE, POWDER, USP 43 (BHN BAKU OBAT) COA 3102250",28332920 +"What is the hs code for MAGNESIUM CARBONATE, HEAVY (BHN BAKU OBAT) COA 1104812",28369990 +What is the hs code for MAGNESIUM L-HYDROGENASPARTATE 2-HYDRATE (BHN BAKU OBAT) COA 3083564-9,29224900 +"What is the hs code for ZINC SULFATE 1-HYDRATE, POWDER,USP 43 (BHN BAKU OBAT) COA 3102250",28332920 +"What is the hs code for FERROUS GLUCONATE, POWDER, USP 43 (BHN BAKU OBAT) COA 3091589",29181600 +What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 21290019,30039000 +What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 21290019,30039000 +"What is the hs code for METHISOPRINOL (BHN BAKU OBAT) COA MTP1080390,MTP1090420",29349990 +What is the hs code for MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103152821,17021100 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544753,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544733,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544773,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544835,35051010 +"What is the hs code for MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HA00989,HA01033",34021990 +What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP24621,28363000 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122101178,122101179",28363000 +What is the hs code for LINAGLIPTIN (BHN BAKU OBAT) COA LG0080621,29332900 +What is the hs code for 1400/1700 SUGLETS 1400/1700 (12/14 MESH) BHN BAKU PEWARNA TABLET) COA ST516916,32151900 +What is the hs code for PGLCP 102KC RSPO MB (BHN BAKU KOSMETIK) COA 210710201,34021390 +What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122101180,28363000 +"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/07/290721,ASG/08/280821,ASG/09/020921,...",29420000 +What is the hs code for CROSCARMELLOSE SODIUM USP-NF (BHN BAKU OBAT) COA ACRMC/09/040921,39129090 +What is the hs code for LINAGLIPTIN (BHN BAKU OBAT) COA LG0080621,29332900 +What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) COA 1573252,38249999 +What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK) COA LDC34521T,27101990 +What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA E00971UP,29053200 +"What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105712321,L105712421",17021100 +What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) COA 321CAA0003,38249999 +What is the hs code for SORBITOL SPECIAL TM MDF 85 (BHN BAKU OBAT) COA M21003,29054400 +What is the hs code for ROSUVASTATIN CALSIUM (BHN BAKU OBAT) COA M325189,29359000 +What is the hs code for PERMETHRIN (PHARMA GRADE) BHN BAKU OBAT COA PMT/008/2021,29163990 +What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000076788,29309090 +What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000076789,29309090 +What is the hs code for THIOCARE (R) H105 83PCT (BHN BAKU KOSMETIK) COA 0000076790,29309090 +What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA EDSB200006,29349990 +What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) (BHN BAKU OBAT) COA 4453829622,39139090 +What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-210903,29061300 +What is the hs code for LIPOID S 20 (BHN BAKU SUPPLEMEN) COA 572000-2210138/001-020,29232010 +What is the hs code for ZINC GLUCONATE POWDER USP 43 (BHN BAKU OBAT) COA 3107385,29181600 +"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP24621,MTP24621",28363000 +What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122101141,29054300 +What is the hs code for MC-GLUCAN (BHN BAKU KOSMETIK) COA MCGL210906,39139090 +What is the hs code for GALAXY 610 EHS MB (ETHYLENE GLYCOL DISTEARATE) (BHN BAKU KOSMETIK) COA 728011,34049090 +"What is the hs code for PHENOXY ETHANOL PR (BHN BAKU KOSMETIK) COA 728616,728616,727745",29094900 +"What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105712021,L105712421",17021100 +What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122101181,28363000 +What is the hs code for MANNOGEM (R) XL OPAL SPRAY DRIED MANNITOL (BHN BAKU OBAT) COA 122101241,29054300 +What is the hs code for PHARMABURST (R) C1 (BHN BAKU OBAT) COA 122100929,21069099 +What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122101211,29054300 +What is the hs code for LEMON SECRETS (LEMON 40 BRIX ) (BAHAN BAKU KOSMETIK) COA 01/20GL4,28399000 +What is the hs code for LEMON SECRETS (LEMON 40 BRIX ) (BAHAN BAKU KOSMETIK) COA 01/21GL4,28399000 +"What is the hs code for LEMON SECRETS (LEMON 40 BRIX ) (BAHAN BAKU KOSMETIK) COA 01/20GL4, SAMPLE NO COMM VALUE",28399000 +"What is the hs code for LEMON SECRETS (LEMON 40 BRIX ) (BAHAN BAKU KOSMETIK) COA 01/21GL4, SAMPLE NO COMM VALUE",28399000 +What is the hs code for OPALUX MAROON (BHN BAKU PEWARNA TABLET) COA DT719926,32151900 +What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET) COA DT719912,32151900 +What is the hs code for OPACODE BLACK (BHN BAKU PEWARNA TABLET) COA DT718996,32151900 +What is the hs code for PRAMIPEXOLE DI HCL MONOHYDRATE (BHN BAKU OBAT) COA PP0100821,29342000 +What is the hs code for PREDNISOLONE BP2018/USP42 (BHN BAKU OBAT) COA NPL210918,29372100 +What is the hs code for TRIAMCINOLONE EP9.0 (BHN BAKU OBAT) COA NTL210901,29372200 +What is the hs code for HYDROCORTISONE ACETATE EP7/USP42 (BHN BAKU OBAT) COA NEHAC210305,29372200 +What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113681,29339990 +"What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113653,M113656",29339990 +What is the hs code for PHARMACEUTICAL CASTOR OIL E.P (BHN BAKU KOSMETIK) COA 0000037362,15152919 +What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) 0000076486,29309090 +What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) 0000076487,29309090 +"What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000076488,SAMPLE NO COMMERCIAL VALUE",29309090 +"What is the hs code for THIOCARE (R) H103 43PCT (BHN BAKU KOSMETIK) COA 0000076489, SAMPLE NO COMMERCIAL VALUE",29309090 +"What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK), COA 0000076490,SAMPLE NO COMMERCIAL VALUE",29309090 +"What is the hs code for THIOCARE (R) H105 83 PCT (BHN BAKU KOSMETIK), COA 0000076491,SAMPLE NO COMMERCIAL VALUE",29309090 +"What is the hs code for THIOCARE (R) H100L 80 PCT (BHN BAKU KOSMETIK), COA 0000076492,SAMPLE NO COMMERCIAL VALUE",29309090 +What is the hs code for NOREPINEPHRINE BITARTRATE (NORADRENALINE TARTRATE) (BHN BAKU OBAT) COA 690104,29379010 +What is the hs code for NOREPINEPHRINE BITARTRATE (NORADRENALINE TARTRATE) (BHN BAKU OBAT) COA 690104,29379010 +"What is the hs code for CEFIXIME COMPACTED USP (BHN BAKU OBAT) COA CFEC210531,CFEC210532",29419000 +"What is the hs code for CEFIXIME COMPACTED USP (BHN BAKU OBAT) COA CFEC210531,CFEC210532",29419000 +"What is the hs code for ZINC SULFATE 1-HYDRATE, POWDER, USP FCC 12 (BHN BAKU MAKANAN) COA 3095829-2",28332920 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH649432,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH649187,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH649187,38249999 +What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH649172,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH649190,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH649173,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH649627,38249999 +What is the hs code for OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH649176,38249999 +What is the hs code for ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH648913,39061090 +What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH649177,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH649194,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH649396,38249999 +What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH649184,39061090 +What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH648904,39061090 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH649180,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH648906,38249999 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH649195,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH649193,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH649185,38249999 +What is the hs code for PIGMENT BLEND BROWN (BHN BAKU PEWARNA TABLET) SH649486,32151900 +What is the hs code for OPADRY VIOLET (BHN BAKU PEWARNA TABLET) COA SH649182,38249999 +What is the hs code for OPADRY PURPLE (BHN BAKU PEWARNA TABLET) COA SH649257,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH648483,39061090 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH649529,38249999 +What is the hs code for DL-PANTHENOL 50 L (BHN BAKU KOSMETIK) COA TL02103605,29362400 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA QZ11210436,29362500 +What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0038007,29362500 +What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92108130,29420000 +What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000198172,29362900 +What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0721010014,29420000 +What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES2105544,29420000 +What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0721010013,29420000 +"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0821010129,0821010130,0821010281",29420000 +What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0421040024,29420000 +What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0921020014,29420000 +What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF21092005,29420000 +What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF21092005,29420000 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21070210,29362800 +What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0921020014,29420000 +What is the hs code for VITAMIN MINERAL PREMIX (BHN BAKU MAKANAN) COA XW92109042,21069059 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02101102,29362900 +What is the hs code for ASCORBIC ACID 90 PCT GRANULATION (BHN BAKU SUPPLEMEN) COA WB21049089,29362700 +"What is the hs code for PARACETAMOL USP (BHN BAKU OBAT) COA 21505530,21505350",29242930 +What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-200607,29397900 +What is the hs code for LINCOMYCIN HYDROCHLORIDE (BHN BAKU OBAT) COA 2106006,29419000 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO210603,38249999 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO210603,38249999 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210802,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210302,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210603,38249999 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO210703,38249999 +What is the hs code for WITCH HAZEL ORGANIC DISTILLATE 1:10 (SB) (BHN BAKU KOSMETIK) COA HAVD210806-BIO,38249999 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO210603,38249999 +What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM210602-PGH,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210306,38249999 +What is the hs code for LOTUS FROM VIETNAM ORGANIC OILY EXTRACT (BHN BAKU KOSMETIK) COA NEN210401-HBIO,38249999 +What is the hs code for SEABUCKTHORN HYDROGLYCOLIC EXTRACT (BG) (BHN BAKU KOSMETIK) COA HIR210101-B,38249999 +What is the hs code for SODIUM ACETATE ANHYDROUS (BHN BAKU SUPPLEMEN) COA 3098999,29152910 +What is the hs code for EUXYL K 712 CAN 10 KG (BHN BAKU KOSMETIK) COA 1570683,38249999 +"What is the hs code for EUXYL K 720 CAN 10 KG (BHN BAKU KOSMETIK) COA 1570630,1570829",38249999 +What is the hs code for EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) COA 1570866,38249999 +What is the hs code for EUXYL K 903 CAN 10 KG (BHN BAKU KOSMETIK) COA 1568847,38249999 +What is the hs code for EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) COA 1570860,38249999 +What is the hs code for SENSIVA PA 40 CAN 10 KG (BHN BAKU KOSMETIK) COA 1565784,38249999 +What is the hs code for VISTANOL GDHR (BHN BAKU KOSMETIK) COA SIC,38249999 +What is the hs code for PROMOIS WK-F (BHN BAKU KOSMETIK) COA SIG,38249999 +What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA SHI,38249999 +What is the hs code for AMITOSE R (BHN BAKU KOSMETIK) COA SHG,38249999 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SHF,38249999 +What is the hs code for STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN544621,35051010 +What is the hs code for KF-6038(16KG) (BHN BAKU KOSMETIK) COA 108262,38249999 +What is the hs code for KSG-210 (16KG) (BHN BAKU KOSMETIK) COA 105983,38249999 +What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) COA 110060,38249999 +What is the hs code for ETORICOXIB (BHN BAKU OBAT) COA ERBPC21006,29333990 +"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 211404,212280",38249999 +What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 211021,13021990 +What is the hs code for LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 21T0030100,13021990 +What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1203881,38210090 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1182011,38210090 +What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01D214M,38210090 +What is the hs code for BOTTLE GRAM SAFRANIN 250ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1117588,38210090 +What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1074549,38210090 +What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 210811022,38249999 +What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1242374,38210090 +"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME) BATCH 1053886,12011851",38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1123223,38210090 +What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1242374,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1123223,38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0114639,38210090 +What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0294317,38210090 +What is the hs code for BOTTLE B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1195933,38210090 +What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 1153205,38210090 +What is the hs code for BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1187757,38210090 +"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1223997",38210090 +What is the hs code for HU ANAPHYLATOXIN CBA KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1222136,38210090 +What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1102066,38210090 +What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1133939,38210090 +What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1111035,38210090 +What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1159790,38210090 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01D200M,38210090 +What is the hs code for DROPPER LACTOPHENOL COTTON BLUE STAIN (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01D110M,38210090 +What is the hs code for BOTTLE YPD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0286513,38210090 +What is the hs code for KIT CRYSTAL ENTERIC /NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1200358,38210090 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1007107,38210090 +What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283868,38210090 +What is the hs code for LOOPS INOCULATING 10/TUBE 10 MICROLITER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2110427,38210090 +What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0286434,38210090 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1081408,38210090 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1047444,38210090 +What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1068885,38210090 +What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1215037,38210090 +"What is the hs code for BOTTLE GRAM CRYSTAL VIOLET 250ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1117569",38210090 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1167834,38210090 +What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2111335,38210090 +"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1188089",38210090 +What is the hs code for BOTTLE GRAM IODINE STABILIZED 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1020480,38210090 +What is the hs code for PREDNISONE USP42 (BHN BAKU OBAT) COA NPD210915,29372100 +What is the hs code for TRIAMCINOLONE EP9.0 (BHN BAKU OBAT) COA NTL210902,29372200 +What is the hs code for METHOCEL K4M PREMIUM HYDROXYPROPYL METHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D180L3M001,39123900 +What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL METHYL... (BHN BAKU PEWARNA TABLET) COA D180KCT002,39123900 +What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL METHYL... (BHN BAKU PEWARNA TABLET) COA D180L7P001,39123900 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544879,35051010 +What is the hs code for ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL02108107,29362700 +What is the hs code for ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL02108107,29362700 +What is the hs code for ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL02108107,29362700 +What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL02108107,29362700 +What is the hs code for ZINC GLYCINATE (BHN BAKU UTK PAKAN TERNAK) COA 62058,29224900 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP26321,28363000 +What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH650237,38249999 +What is the hs code for GALAXY 610 EHS MB (ETHYLENE GLYCOL DISTEARATE) (BHN BAKU KOSMETIK) COA 728011,34049090 +What is the hs code for PHENOXY ETHANOL PR (BHN BAKU KOSMETIK) COA 729129,29094900 +What is the hs code for METAMIZOLE SODIUM (BHN BAKU UTK PAKAN TERNAK) COA 21081220,29331900 +"What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA2109137 S/D 138,MA2110003 S/D 004,MA2110010,MA2110013,....",29224900 +What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH650660,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210603,38249999 +What is the hs code for COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) COA ANTS210201,38249999 +What is the hs code for FLOWER ACIDS (BHN BAKU KOSMETIK) COA HS210703,38249999 +What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0058527,38249999 +"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0220040027, SAMPLE NO COMMERCIAL VALUE",29420000 +What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) COA 7766037,38249999 +"What is the hs code for ALUMINIUM HYDROXIDE ACETATE POWDER, DAC 2011 (BHN BAKU SUPLEMEN) COA 3016131-4",29152990 +What is the hs code for FERROUS GLUCONATE (BHN BAKU OBAT) COA 3106520,29181600 +"What is the hs code for MAGNESIUM L-HYDROGENASPARTATE 2-HYDRATE POWDER, PH.EUR.10.ED. (BHN BAKU OBAT) COA 3106187",29224900 +What is the hs code for SODIUM SELENITE IN CARRIER (BHN BAKU OBAT) COA 3106231,28429010 +What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512133,47069200 +What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512133,47069200 +"What is the hs code for FERROUS SULFATE,DRIED, POWDER, USP43 (BHN BAKU SUPLEMEN) COA 3103702",28332920 +What is the hs code for PEARL ESSENCES 35031MJ (BHN BAKU KOSMETIK) COA D1381006,32061910 +What is the hs code for PEARL ESSENCES 35031MJ (BHN BAKU KOSMETIK) COA D1320220,32061910 +What is the hs code for FLORAGLO (R) LUTEIN 20 % SAF (BHN BAKU SUPPLEMEN) COA UE02106008,32030010 +"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02101013,UE02102022,UE02102023",29362700 +"What is the hs code for BRB 1740, DRUM 190KG ( BHN BAKU KOSMETIK) COA B095086",39100020 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ10713228,29362200 +What is the hs code for OPTISHARP (ZEAXANTHIN) 5 PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT19060004,32041900 +What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT21040013,29362100 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT21070072,29362800 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT21061088,UT21061089,UT21061090",29362100 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPPLEMEN) COA UT21070061,29362100 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPPLEMEN) COA UQ10713249,29362200 +"What is the hs code for VITAMIN B12 0.1 PCT WS (BHN BAKU SUPPLEMEN) COA UT20100059,UT20100061",29362600 +"What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340314,B340318,B340320",29419000 +What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334781,29419000 +What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334763,29419000 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP26421,28363000 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP26421,28363000 +"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050109,0321050110,0321050112,0321050113,0321050114,...",29420000 +"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050107,0321050108,0321050109",29420000 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544799,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544815,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544770,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544776,35051010 +What is the hs code for ACRYL-EZE PURPLE (BHN BAKU PEWARNA TABLET) COA SH649630,39061090 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH649626,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH649631,39061090 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH649627,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH649660,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH649661,38249999 +What is the hs code for OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH649628,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH649194,38249999 +What is the hs code for OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH649632,38249999 +What is the hs code for ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH649633,39061090 +What is the hs code for PIGMENT BLEND GREEN (BHN BAKU PEWARNA TABLET) COA SH649634,32151900 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH649636,38249999 +What is the hs code for OPADRY II BLUE (BHN BAKU PEWARNA TABLET) COA SH649637,38249999 +What is the hs code for OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH649635,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH649629,38249999 +What is the hs code for PIGMENT BLEND YELLOW (BHN BAKU UTK PEWARNA TABLET) COA SH649659,32151900 +What is the hs code for MONOCALCIUM PHOSPHATE FEED GRADE MICROGRANULAR (BHN BAKU PAKAN TERNAK) COA 20210928028,28352600 +"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA270211,ROA271213",28363000 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH650146,38249999 +What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH650134,38249999 +What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH650135,39061090 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH650166,39061090 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH650148,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH650136,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH650635,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH650137,38249999 +What is the hs code for OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH650158,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH650138,38249999 +What is the hs code for ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH650164,39061090 +What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH650154,38249999 +What is the hs code for PIGMENT BLEND GREEN (BHN BAKU PEWARNA TABLET) COA SH650149,32151900 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH650155,38249999 +What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH650150,39061090 +What is the hs code for OPADRY YELLOW (BHN BAKU PEWARNA TABLET) COA SH650139,38249999 +What is the hs code for GRANULAC (R) 200 H (BHN BAKU OBAT) COA L105713621,17021100 +What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104312821,17021100 +What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP846871,39059990 +What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP846870,39059990 +What is the hs code for PVAP - PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP846853,39059990 +What is the hs code for FD&C YELLOW #6/SUNSET YELLOW FCF AL ... (BHN BAKU PEWARNA TABLET) COA WP839971:BA7547,32151900 +What is the hs code for FD&C YELLOW #5/TARTRAZINE AL ... (BHN BAKU PEWARNA TABLET) COA WP844301:BA9667,32151900 +What is the hs code for D&C YELLOW #10 AL 15 PCT - 20 PCT ... (BHN BAKU PEWARNA TABLET) COA WP844755:BA9949,32151900 +What is the hs code for D&C YELLOW #10 AL 15 PCT - 20 PCT ... (BHN BAKU PEWARNA TABLET) COA WP844755:BA9949,32151900 +What is the hs code for FD&C YELLOW #6/SUNSET YELLOW FCF AL ... (BHN BAKU PEWARNA TABLET) COA WP839971:BA7547,32151900 +What is the hs code for FD&C RED #40/ALLURA RED AC AL 38 PCT- 42 PCT.. (BHN BAKU PEWARNA TABLET) COA WP841246:BA8625,32151900 +What is the hs code for ERYTHROSINE AL 38 PCT - 42 PCT... (BHN BAKU PEWARNA TABLET) COA WP844564:1,32151900 +"What is the hs code for ZINC CITRATE, POWDER, USP 43 (DIETARY SUPPL.) (BHN BAKU SUPPLEMEN) COA 3094704-2",29181590 +What is the hs code for NABUMETONE USP (BAHAN BAKU OBAT) COA.H-0690421,29145000 +What is the hs code for ONDANSETRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA 20015OH2RII,29332900 +What is the hs code for SODIUM CARBONATE IPH (BHN BAKU SUPPLEMEN) COA DOC2632121,28363000 +"What is the hs code for DICLOFENAC SODIUM USP 43 (BHN BAKU OBAT) COA DFS/11090382 - 11090387,11090390,11090394 ...",29224900 +What is the hs code for FERROUS FUMARATE (BHN BAKU OBAT) COA 2021/320,29171900 +What is the hs code for LEVOFLOXACIN HEMIHYDRATE (BHN BAKU OBAT) COA C008-2106507,29349990 +What is the hs code for NORIT SX SUPER E 153 (BHN BAKU KOSMETIK) COA 4978845,38021000 +"What is the hs code for ASCORBIC ACID 90 PCT GRANULATION (BHN BAKU SUPPLEMEN) COA WB21049093,WB21049094",29362700 +What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20210702,29362800 +What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2021091803,21012020 +"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 170321,180321,190321",38029090 +"What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-051851,SFP-N-061391",38249999 +"What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-051851,SFP-N-061391",38249999 +What is the hs code for HYUNDAI BIOLAND NEWAPLE (BHN BAKU KOSMETIK) COA NWPD-020681,38249999 +What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (B) (BHN BAKU KOSMETIK) COA AMIBD-081761,38249999 +What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-010231,38249999 +What is the hs code for HYUNDAI BIOLAND JEJU TANGERINE EXTRACT (BHN BAKU KOSMETIK) COA GTUP-T-021910,38249999 +What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUP-011851,38249999 +What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) BHN BAKU KOSMETIK) COA CHP1210913,38249999 +What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA H HMVBD-042481,38249999 +What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-163091,38249999 +What is the hs code for MINIPORYL TM (BHN BAKU KOSMETIK) COA 832019610M,38249999 +What is the hs code for CW-5C 5 PCT CLEAR (BHN BAKU KOSMETIK) COA 785019611M,38249999 +What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 702018037K,38249999 +What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769019234M,39139090 +What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769019234M,39139090 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2119406,38249999 +What is the hs code for MINIPORYL TM (BHN BAKU KOSMETIK) COA 832019610M,38249999 +What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU KOSMETIK) COA 02/19GAAK,28399000 +"What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK)COA 02/19GAAK, SAMPLE NO COMM VALUE",28399000 +What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 185845,28399000 +"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102102035",28183000 +"What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M -31.0 PCT (BHN BAKU OBAT) COA 102129041,102129045",28161000 +"What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M534658 S/D M534662,M534657",29411019 +"What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M534586,M534643,M534655 S/D M534657,M534654",29411019 +What is the hs code for DRY VITAMIN E 50 PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21050024,29362800 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT21090026,29362100 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT21090026,29362100 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL02105701,TL02105708",29362700 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT21060188,29362800 +What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW92109285,21069059 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12108030,29362900 +"What is the hs code for MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL211011,MCCPOL211026",29094900 +What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) COA 1573747,38249999 +What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-061391,38249999 +"What is the hs code for IONOL (R) CP (BHN BAKU KOSMETIK), COA 01141420",29071900 +"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA210802,HEA211003",38249999 +"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA210802,HEA211003",38249999 +"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA210802,HEA211003",38249999 +"What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA210802,HEA211003",38249999 +What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET) COA DT721117,32151900 +What is the hs code for HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-010411,13021990 +What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011851,13021990 +What is the hs code for HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-021820,13021990 +What is the hs code for HYUNDAI BIOLAND CARBAMIDE (BHN BAKU KOSMETIK) COA U211027,13021990 +What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-010231,13021990 +What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-072081,13021990 +What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE 1PCT SOLUTION (BHN BAKU KOSMETIK) COA HASC-130841,13021990 +What is the hs code for HYUNDAI BIOLAND TEA TREE EXTRACT (BHN BAKU KOSMETIK) COA MASL-031381,13021990 +What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (VLMW) (BHN BAKU KOSMETIK)COA CHP1211007,13021990 +What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-051501,13021990 +What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 102121,28321000 +What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011851,13021990 +What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-173091,13021990 +What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (LMW) (BHN BAKU KOSMETIK)COA CHP1210927,13021990 +What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-061391,13021990 +What is the hs code for HYUNDAI BIOLAND KIWI EXTRACT(BHN BAKU KOSMETIK) COA KFB-L-041281,13021990 +What is the hs code for KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0050521,29339990 +What is the hs code for METOCLOPRAMIDE HYDROCHLORIDE BP (BHN BAKU OBAT) COA M-2109418,29242990 +What is the hs code for DESONIDE MICRONIZED (BHN BAKU OBAT) COA NB2195M,29372900 +"What is the hs code for SELOHVITA C (BHN BAKU SUPPLEMEN) COA 3105597,3105469",28429010 +What is the hs code for SELOHVITA C (BHN BAKU SUPPLEMEN) COA 3107175,28429010 +"What is the hs code for FERROUS LACTATE 2-HYDRATE, POWDER (BHN BAKU MAKANAN) COA 3107161",29181200 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20210919,17029019 +What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 2120606,38249999 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 212280,38249999 +What is the hs code for AP GRIT (ROUND)G #60-80 (BHN BAKU KOSMETIK) COA 211205,38249999 +What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 211752,13021990 +What is the hs code for KF-56A(18KG) (BHN BAKU KOSMETIK) COA 110060,38249999 +What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) COA 109262,38249999 +What is the hs code for KF-6038(16KG) (BHN BAKU KOSMETIK) COA 108262,38249999 +What is the hs code for KF-6017(17KG) (BHN BAKU KOSMETIK) COA 109167,38249999 +What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) COA 109889,38249999 +What is the hs code for KSP-101 (15KG) (BHN BAKU KOSMETIK) COA 105401,38249999 +What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0821010281,29420000 +"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02102015,UE02102021",29362700 +What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00717409,29420000 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21070210,29362800 +What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES2106548,29420000 +What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040024,29420000 +What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0421040024,29420000 +What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0821010281,29420000 +What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0921020014,29420000 +What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92109282,29420000 +"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02011038,UE02101012",29362700 +What is the hs code for DRY VITAMIN E 50 PCT CWS/S (BHN BAKU MAKANAN) COA UE02105102,29362800 +What is the hs code for B-CAROTENE 10 PCT CWS (BHN BAKU MAKANAN) COA UT21050015,32041900 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21040137,29362900 +What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02105006,29362900 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3 PCT (BHN BAKU SUPPLEMEN) COA WB20040052,29362300 +What is the hs code for DRY VITAMIN K1 5 PCT SD (BHN BAKU SUPPLEMEN) COA UT20060003,29362900 +What is the hs code for DRY VITAMIN E 50 PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21040021,29362800 +What is the hs code for DRY VITAMIN K1 5 PCT SD (BHN BAKU SUPPLEMEN) COA UT20060003,29362900 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT21060188,29362800 +What is the hs code for DRY VITAMIN E 50 PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21040021,29362800 +"What is the hs code for DRY VITAMIN E 50 PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21040021,UT21050024",29362800 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT21040137,29362900 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT21040137,29362900 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT21040140,29362900 +"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT21040140,UT21040141",29362900 +"What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21040007,UT21040011",29362900 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT21040137,29362900 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21040011,29362900 +What is the hs code for SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202110-008,35040000 +What is the hs code for SOYA LECITHIN (BHN BAKU MAKANAN) COA TY2210706-5,29232010 +What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 210415,13021990 +What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 200625,29061900 +What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 210711,13021990 +What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 210415,13021990 +What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 210618,13021990 +What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1123046,38210090 +What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2355402,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2305551,38210090 +What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1004958,38210090 +What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0175474,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1046607,38210090 +What is the hs code for BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0365879,38210090 +"What is the hs code for MAGNESIUM CARBONATE, HEAVY (BHN BAKU OBAT) COA 3095827",28369990 +What is the hs code for MAPROTILINE HCL (BHN BAKU OBAT) COA 2150002151,29214900 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH650452,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH650517,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH650515,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH650495,38249999 +What is the hs code for OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH650518,38249999 +What is the hs code for OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH650516,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH650429,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH650635,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH650431,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH650432,38249999 +What is the hs code for OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH650158,38249999 +What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 20S0252500,13021950 +What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 20S0252500,13021950 +What is the hs code for BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 21S0233301,13021990 +What is the hs code for MIRTOGENOL (R) (BHN BAKU SUPLEMEN) COA 21S0115800,13021950 +What is the hs code for CENTELLA ASIATICA/PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 20S0317200,13021950 +What is the hs code for SERENOA REPENS PURIFIED EXT (BHN BAKU SUPLEMEN) COA 20S0245600,13021950 +What is the hs code for MIRTOGENOL (R) (BHN BAKU SUPLEMEN) COA 21S0115800,13021950 +What is the hs code for ECHINACEA ANG.DRY PURIF.EX (BHN BAKU SUPLEMEN) COA 20S0173900,13021990 +What is the hs code for P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 21S0231200,13021990 +What is the hs code for P.GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 20S0004000,13021990 +What is the hs code for P.GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 20S0004000,13021990 +What is the hs code for PIROXICAM (BAHAN BAKU OBAT ) COA PRX2021002M,29349990 +What is the hs code for ISDN 25PCT-LACTOSE 450 75PCT DILUTED (BHN BAKU OBAT) COA 2111770,29329990 +What is the hs code for TRIMETHOPRIM POWDER BP (BHN BAKU PAKAN TERNAK) COA A-20112110019,29335990 +What is the hs code for CROSPOVIDONE XL (BHN BAKU OBAT) COA PP210609XL,39059990 +What is the hs code for POVIDONE K-25 (BHN BAKU OBAT) COA PK25-210628F31,39059990 +"What is the hs code for PARACETAMOL USP (BHN BAKU OBAT) COA 2130798,2110003,2150092",29242930 +What is the hs code for LEVOFLOXACIN HEMIHYDRATE (FREE ALKALINE) (BHN BAKU OBAT) COA C008-2106507,29349990 +"What is the hs code for ACRYPOL 980 (20KG) (BAHAN BAKU KOSMETIK) COA 11521029,11521030,11521031",39069099 +What is the hs code for UBIDECARENONE (COENZYM Q10 FERMENTATIVE) BHN BAKU KOSMETIK) COA 51-2105150,29146200 +What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA,21012020 +What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA,21012020 +What is the hs code for VALERIAN D.H.E> 0.8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 21B0041700,13021990 +What is the hs code for IVY DRY HYDR EXTR 10PCT HPLC (BAHAN BAKU SUPLEMEN) COA 21B0077400,13021990 +What is the hs code for PASSION FLOWER D.H.E 4PCT (BAHAN BAKU SUPLEMEN) COA 21B0099700,13021990 +What is the hs code for HAWTHORN DRY HYDR. EXTR (BHN BAKU SUPLEMEN) COA 20B0127300,13021990 +What is the hs code for BUTCHERBROOM DRY HYDR EX.9-11 (BHN BAKU SUPLEMEN) COA 20B0175500,13021990 +What is the hs code for SILYMARIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 21B0087300,13021950 +What is the hs code for SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0107000,13021950 +What is the hs code for SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0107000,13021950 +What is the hs code for SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0086000,13021950 +What is the hs code for METHOCEL E4M PREMIUM HYDROXYPROPYL METHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D180K3B013,39123900 +What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL METHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D180K6T003,39123900 +What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL METHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D180K2Q001,39123900 +What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL METHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D180K4K002,39123900 +What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D180L52021,39123900 +What is the hs code for METHOCEL K4M PREMIUM HYDROXYPROPYL METHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D180KCJ002,39123900 +What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL METHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D011L3HL01,39123900 +What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019668M,38249999 +What is the hs code for CW-5C 5 PCT CLEAR (BHN BAKU KOSMETIK) COA 785019611M,38249999 +What is the hs code for DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834019745M,39139090 +What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019668M,38249999 +What is the hs code for GREYVERSE TM (BHN BAKU KOSMETIK) COA 833019576M,39139090 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2119406,38249999 +What is the hs code for ROSALITY TM (BHN BAKU KOSMETIK) COA 2033901,38249999 +"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-0470621,S-A-0480621",29334910 +What is the hs code for SUPPOCIRE BM PELLETS (BHN BAKU OBAT) COA 20E4703,28399000 +What is the hs code for SUPPOCIRE AM PELLETS (BHN BAKU OBAT) COA 21E3701,28399000 +What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG211008,29362700 +What is the hs code for VIUSID VET POWDER @1 KG (PAKAN IKAN BERBENTUK BUBUK) COA X-2,23099090 +What is the hs code for OPACODE WHITE (BHN BAKU PEWARNA TABLET) COA WP848554,32151900 +What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPPLEMEN) COA WB21030293,29362100 +"What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340324,B340325",29419000 +What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334784,29419000 +What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ10917011,29420000 +What is the hs code for FLORAGLO (R) LUTEIN 20 PCT SAF (BHN BAKU SUPPLEMEN) COA UE02109022,32030010 +What is the hs code for OLIO VINACCIOLI RAFFINATO (BHN BAKU KOSMETIK) COA B2100275,15152919 +What is the hs code for OLIO MANDORLE DOLCI RAFF.EU PH (BHN BAKU KOSMETIK) COA B2100216,15152919 +What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0294317,38210090 +What is the hs code for BOTTLE B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1195933,38210090 +What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1244192,38210090 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1063145,38210090 +"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1201851",38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1123223,38210090 +What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1221115,38210090 +What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1126127,38210090 +What is the hs code for VIAL ISOVILATEX ENRICHMENT 10ML 5 EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1286863,38210090 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1271802,38210090 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1271802,38210090 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1271802,38210090 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1271802,38210090 +What is the hs code for LABRAFIL M 1944 CS BF (BAHAN BAKU OBAT) COA 186122,28399000 +What is the hs code for LABRASOL BF (BHN BAKU OBAT) COA 186053,28399000 +What is the hs code for GELEOL MONO AND DIGLYCERIDES NF (BAHAN BAKU OBAT) COA 21E3603,28399000 +What is the hs code for EMULCIRE 61 WL 2659 (BHN BAKU OBAT) COA 185819,28399000 +What is the hs code for COMPRITOL 888 PELLETS (BAHAN BAKU OBAT) COA 20E4902,28399000 +What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02103038,29362700 +"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ10816068,UQ10816069",29362700 +What is the hs code for BETATAB 20 PCT S (BHN BAKU SUPPLEMEN) COA UT21080014,32041900 +What is the hs code for BETATAB 20 PCT S (BHN BAKU SUPPLEMEN) COA UT21080014,32041900 +"What is the hs code for BETATAB 20 PCT S (BHN BAKU SUPPLEMEN) COA UT21080014,UT21090024",32041900 +What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02108192,29362700 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPPLEMEN) COA UT21070061,29362100 +What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT21060056,29362100 +What is the hs code for BETATAB 20 PCT S (BHN BAKU SUPPLEMEN) COA UT21090024,32041900 +"What is the hs code for VITAMIN B12 0.1 PCT WS (BHN BAKU SUPPLEMEN) COA UT21020013,UT21070019",29362600 +What is the hs code for BETATAB 20 PCT S (BHN BAKU SUPPLEMEN) COA UT21090024,32041900 +What is the hs code for BETATAB 20 PCT S (BHN BAKU SUPPLEMEN) COA UT21090024,32041900 +"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU SUPPLEMEN) COA UT21040032,UT21070034",29362100 +"What is the hs code for B-CAROTENE 30 PCT FS (BHN BAKU MAKANAN) COA UE02107051,UE02107052",32041900 +"What is the hs code for B-CAROTENE 30 PCT FS (BHN BAKU MAKANAN) COA UE02107052,UE02107053",32041900 +What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT21040014,29362100 +What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01D260M,38210090 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1204081,38210090 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1081578,38210090 +"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0217346,1188932",38210090 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1047444,38210090 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1204081,38210090 +What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01D216M,38210090 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1201798,38210090 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1231054,38210090 +What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1221531,38210090 +What is the hs code for BOTTLE BIGGY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1166930,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 4 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1176291,38210090 +What is the hs code for BOTTLE DESOXYCHOLATE CITRATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9247669,38210090 +What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1103652,38210090 +What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0002110,38210090 +"What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01D245M,B03D253M",38210090 +What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1042613,38210090 +What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1019654,38210090 +What is the hs code for BOTTLE YPD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1188444,38210090 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1231054,38210090 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B03D253M,38210090 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1231054,38210090 +"What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 1243173",38210090 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1242029,38210090 +What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01D216M,38210090 +"What is the hs code for BOTTLE GRAM CRYSTAL VIOLET 250ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1213772",38210090 +What is the hs code for KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1257090,38210090 +What is the hs code for BOTTLE GRAM IODINE STABILIZED 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1180501,38210090 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1231182,38210090 +What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1252369,38210090 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1277944,38210090 +What is the hs code for METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/11100532,29332900 +"What is the hs code for COPPER SULFATE, POWDER, PH.EUR.10.ED (BHN BAKU SUPLEMEN) COA 3104865",28332500 +What is the hs code for RUGENER DREIKRONEN HEILKREIDE 25K (BHN BAKU KOSMETIK) COA 8022125400,25090000 +What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01D270M,38210090 +What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1243442,38210090 +What is the hs code for BOTTLE GRAM SAFRANIN 250ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1243435,38210090 +What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01D270M,38210090 +"What is the hs code for CATECHINS TEAVIGO 1KG (BHN BAKU KOSMETIK), COA 105161",21012020 +What is the hs code for OCTENINDINE DIHYDROCHLORIDE (BHN BAKU KOSMETIK) COA OTD-00051021,29420000 +What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP846881,39059990 +What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP846884,39059990 +What is the hs code for FD&C YELLOW #6/SUNSET YELLOW FCF AL ... (BHN BAKU PEWARNA TABLET) COA WP839971:BA7547,32151900 +What is the hs code for D&C YELLOW #10 AL 15 PCT - 20 PCT D&C YELLOW...(BHN BAKU PEWARNA TABLET) COA WP844750:BA9967,32151900 +What is the hs code for FD&C YELLOW #6/SUNSET YELLOW FCF AL ... (BHN BAKU PEWARNA TABLET) COA WP839971:BA7547,32151900 +What is the hs code for OPACODE GOLD (BHN BAKU PEWARNA TABLET) COA WP849115,32151900 +"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB21080245,WB21080248",29362800 +What is the hs code for OPADRY SGR TRANSLUCENT (BHN BAKU PEWARNA TABLET) COA GA696991,38249999 +What is the hs code for OPADRY SGR CLEAR (BHN BAKU PEWARNA TABLET) COA GA697125,38249999 +What is the hs code for MIRASIL CM 5 L (BHN BAKU KOSMETIK) COA 2143WKQ415,29319049 +"What is the hs code for MIRASIL DM 5 L (BHN BAKU KOSMETIK) COA 2133FF2415,2132FF2615",39100090 +"What is the hs code for VC ASCORBIC ACID 325 MESH (BHN BAKU SUPLEMEN) COA HPD2110053,HPD2110052,HPD2110051,HPD....",29362700 +What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA EDS/CB00809,29349990 +"What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 21100419,21100420",29395900 +"What is the hs code for RIVAROXABAN EP (BHN BAKU OBAT) COA BAN500121,BAN500621,BAN500821,BAN501221",29349990 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02105011,29362900 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21060182,29362800 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21060182,29362800 +What is the hs code for DL-PANTHENOL 50 L (BHN BAKU KOSMETIK) COA TL02104620,29362400 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060015,29420000 +"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02102021,UE02103035",29362700 +What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040024,29420000 +What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0421040024,29420000 +What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0821010284,29420000 +"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02010815,TL02010816",29362400 +What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES2106548,29420000 +"What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COAXW92110028,XW92110029",29420000 +"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0921020014,0921020016",29420000 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA QZ11210440,29362500 +What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02103036,29362700 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210002,0708210003,0708210016,0708210017",29420000 +What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF21092005,29420000 +What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW92109286,21069059 +"What is the hs code for PX 103070 - C3 (BHN BAKU MAKANAN) COA XW92109291,XW92109292",21069059 +"What is the hs code for PX 103070 - C3 (BHN BAKU MAKANAN) COA XW92109292,XW92109293",21069059 +What is the hs code for VITAMIN MINERAL PREMIX WFP RICE KERNEL (BHN BAKU MAKANAN) COA XW92110189,21069059 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT21090026,29362100 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12108030,29362900 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT21030022,29362900 +What is the hs code for DRY VITAMIN E 50 PCT CWS/S (BHN BAKU MAKANAN) COA UE02105081,29362800 +What is the hs code for B-CAROTENE 10 PCT CWS (BHN BAKU MAKANAN) COA UT21050015,32041900 +"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12108033,OP12109001",29362900 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ10310580,29362300 +What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12108030,29362900 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ10310580,29362300 +What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2101008,29362300 +"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ10412162,UQ10412166",29362200 +"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92109294,XW92109295",21069059 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH650921,39061090 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH650920,39061090 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH650922,39061090 +What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH650888,38249999 +What is the hs code for OPADRY AMB MAROON (BHN BAKU PEWARNA TABLET) COA SH650889,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH650890,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH650911,38249999 +What is the hs code for OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH650891,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH649661,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH650443,38249999 +What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH650912,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH650892,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH650893,38249999 +What is the hs code for OPADRY AMB RED (BHN BAKU PEWARNA TABLET) COA SH650894,38249999 +What is the hs code for PIGMENT BLEND BROWN (BHN BAKU PEWARNA TABLET) COA SH650913,32151900 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH650919,38249999 +What is the hs code for OPADRY II BLUE (BHN BAKU PEWARNA TABLET) COA SH650923,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH650736,38249999 +What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0058979,38249999 +What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0058979,38249999 +What is the hs code for MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50411,29061100 +What is the hs code for PEARL ESSENCES 35031MJ (BHN BAKU KOSMETIK) COA D1390252,32061910 +What is the hs code for PEONY P118 182 (BHN BAKU KOSMETIK) COA 3215925,33029000 +What is the hs code for PROTIBOND TG-AK (BAHAN BAKU MAKANAN) COA,21069091 +"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102102039",28183000 +What is the hs code for CALCIUM CARBONATE DC TYPE CS90 PHARMA (BHN BAKU SUPPLEMEN) COA 202100523,28365010 +"What is the hs code for MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL211108,MCCPOL211112",29094900 +What is the hs code for SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0107200,13021950 +What is the hs code for SILYMARIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 21B0087300,13021950 +"What is the hs code for LIPOID S 67 F (BHN BAKU SUPPLEMEN) COA 576200-2210037/001-006,007",29232010 +What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA 8MT2109179,30032000 +What is the hs code for NEBIVOLOL HYDROCHLORIDE (BHN BAKU OBAT) COA NHM0170621,29329990 +What is the hs code for COMPLEX ANTI PESPIRANT (BHN BAKU KOSMETIK) COA ANTS210201,38249999 +What is the hs code for GREENSIL (BHN BAKU KOSMETIK) COA GS210803-1,38249999 +What is the hs code for RICE MILK AQUEOUS EXTRACT (SB) (BHN BAKU KOSMETIK) COA ORSL201101-AQ,38249999 +"What is the hs code for RICE MILK AQUEOUS EXTRACT (SB) (BHN BAKU KOSMETIK) COA ORSL201101-AQ,ORSL211102-AQ",38249999 +What is the hs code for ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (SB) (BHN BAKU KOSMETIK)COA ROSD210905-BIO,38249999 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210802,13021990 +What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK) COA 2111EF3812,29224900 +What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000199653,29362900 +"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000198941,0000199653",29362900 +What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000199653,29362900 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT21090026,29362100 +What is the hs code for NIACINAMIDE FCC (BAHAN BAKU MAKANAN) COA 0000198933,29362900 +What is the hs code for DL-A-TOCOPHEROL (BAHAN BAKU MAKANAN) COA UT21060051,29362800 +What is the hs code for VITAMIN D3 CRYSTALLINE (BAHAN BAKU SUPPLEMEN) COA UE02101004,29362900 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BAHAN BAKU SUPPLEMEN) COA UT21090026,29362100 +"What is the hs code for V003400 (BAHAN BAKU MAKANAN) COA XW92110218, XW92110219",21069059 +"What is the hs code for V003400 (BAHAN BAKU MAKANAN) COA XW92110219,XW92110220,XW92110221",21069059 +What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2355402,38210090 +What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2355402,38210090 +What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1004958,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1046610,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1046610,38210090 +What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1123046,38210090 +What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2355402,38210090 +What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2355402,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2305551,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2305551,38210090 +What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1004958,38210090 +What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0175474,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1046610,38210090 +What is the hs code for CD SUPREME FPM 500 GRAMS EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2348881,38210090 +What is the hs code for PEPTONE STARTER PAK NO 1... (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 210412001,38210090 +What is the hs code for MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103152821,17021100 +What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104312921,17021100 +What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105713621,17021100 +What is the hs code for FLOWLAC (R) 100H (BHN BAKU OBAT) COA L105812121,17021100 +What is the hs code for CELLACTOSE (R) 80 (BHN BAKU OBAT) COA L100462721,17021100 +What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105713621,17021100 +"What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M534820,M534821,M534822,M534823,M534824,M534819",29411019 +What is the hs code for FRENCH MARITIME PINE BARK EXTRACT (BAHAN BAKU OBAT) COA X/7630,13021990 +What is the hs code for OXOMEMAZINE HYDROCHLORIDE (BHN BAKU OBAT) COA HXHCPP001,29343000 +What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-021781,13021990 +What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-010231,13021990 +What is the hs code for HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-010411,13021990 +What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011851,38249999 +What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-120891,13021990 +What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 111921,28321000 +What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-061391,38249999 +What is the hs code for HYUNDAI BIOLAND TEA TREE EXTRACT (BHN BAKU KOSMETIK) COA MASL-031381,13021990 +"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK), COA HMVBD-051501",13021950 +"What is the hs code for HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-010971,APB-R-022481",13021990 +What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK) COA LCD44821T,27101990 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP27721,28363000 +What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP28121,28363000 +What is the hs code for B-CAROTENE 10% EM YELLOW (BHN BAKU MAKANAN) COA UT21090004,32041900 +What is the hs code for VIT. A PALM. 1.0 M + VIT. D3 100'000 (BHN BAKU MAKANAN) COA UT21060126,29362100 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SHF,38249999 +What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA SIJ,38249999 +What is the hs code for PROMOIS EF-1118(IS) (BHN BAKU KOSMETIK) COA SHB,38249999 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA SKG,38249999 +What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA SHI,38249999 +What is the hs code for FD&C YELLOW #6/SUNSET YELLOW FCF AL ... (BHN BAKU PEWARNA TABLET) COA WP839971:BA7546,32151900 +"What is the hs code for FENTACARE 2231 EF 25KG PAPER BOX (BHN BAKU KOSMETIK )COA ZH21J2201,ZH21K1004",34029019 +What is the hs code for JAGUAR C 162 CARDBOARD BOX 25 KG (BHN BAKU KOSMETIK) COA MJAC21292A,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA GA698164,38249999 +"What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340332,B340333",29419000 +"What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334780,B334785",29419000 +What is the hs code for MIRANOL ULTRA C-32 MB 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP110624MB,34021990 +"What is the hs code for ACETAMINOPHEN (PARACETAMOL) (BHN BAKU OBAT) COA 202109007A,202109008A",29242930 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH651577,38249999 +What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH650888,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH650892,38249999 +What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH651436,38249999 +What is the hs code for OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH651579,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH651580,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH651245,38249999 +What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH651581,39061090 +What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH651582,39061090 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH651583,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH651615,38249999 +What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH651601,39061090 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH651612,38249999 +What is the hs code for OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH651602,38249999 +What is the hs code for OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH652198,38249999 +What is the hs code for OPADRY BROWN (BHN BAKU PEWARNA TABLET) COA SH651616,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH651628,38249999 +What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH651238,38249999 +What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK) COA 2111EF6811,29224900 +"What is the hs code for MAGNESIUM CARBONATE, EXTRA LIGHT, POWDER (BHN BAKU OBAT) COA 3103621",28369990 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN545344,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN545336,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN545370,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN545355,35051010 +"What is the hs code for ONDANSETRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA 21OS002,21OS003",29332900 +What is the hs code for PHARMABURST (R) C1 (BHN BAKU OBAT) COA 122100929,21069099 +What is the hs code for PHARMABURST (R) 500 (BHN BAKU OBAT) COA 122100954,21069099 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122101178,122101182",28363000 +What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122101212,29054300 +"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SHF,SJG",38249999 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA SKH,38249999 +"What is the hs code for MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL211112,MCCPOL211115",29094900 +"What is the hs code for AMLODIPINE BESYLATE BP/EP (BHN BAKU OBAT) COA AMB/158/10/21,AMB/159/10/21",29333990 +"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 212280,212924",38249999 +What is the hs code for PHYTO COLLAGE B(N) (BAHAN BAKU KOSMETIK) COA 211021,13021990 +What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 212073,13021990 +What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 212202,13021990 +What is the hs code for ALPINIAWHITE (BAHAN BAKU KOSMETIK) COA 212418,13021990 +What is the hs code for HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 3241995,33029000 +"What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512130,G02512137",47069200 +"What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512133,G02512137",47069200 +What is the hs code for FERRIC PYROPHOSPHATE (BHN BAKU MAKANAN) COA 3101653,28353990 +"What is the hs code for FERROUS SULFATE, DRIED, POWDER, USP 43 (BHN BAKU MAKANAN) COA 3107512",28332920 +What is the hs code for KSG-15(900 G) (BHN BAKU KOSMETIK) COA 104517,38249999 +What is the hs code for NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 20LNC0927SQ880,27101990 +What is the hs code for NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 20LNC1020SQ901,27101990 +"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN)COA ROA273214,ROA276216,ROA277213,ROA...",28363000 +What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113603,29339990 +What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) COA 1573747,38249999 +What is the hs code for PREMIX FOR ENERGY DRINK (BHN BAKU MAKANAN) COA XW92110437,21069059 +What is the hs code for NYSTATIN POWDER ROW GRADE (BHN BAKU OBAT) COA C114566,29419000 +What is the hs code for HERBAL EXTRACTS (GARCINIA CAMBOGIA 60 PCT) (BAHAN BAKU KOSMETIK) COA FGC2104003,13021990 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO210904,38249999 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO210603,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210603,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS211004,38249999 +What is the hs code for GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK) COA EG209-210701,13021990 +What is the hs code for RICE MILK AQUEOUS EXTRACT (SB) (BHN BAKU KOSMETIK) COA ORSL211102-AQ,38249999 +What is the hs code for RICE MILK AQUEOUS EXTRACT (SB) (BHN BAKU KOSMETIK) COA ORSL211103-AQ,38249999 +What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COACFM210602-PGH,38249999 +What is the hs code for OLIVE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA OLE2108R1,38249999 +What is the hs code for KIGELINE (BHN BAKU KOSMETIK) COA KA210605-B,38249999 +What is the hs code for HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-031691,13021990 +What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011851,13021990 +What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-120891,39139090 +What is the hs code for HYUNDAI BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-021081,13021990 +What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 111921,28321000 +What is the hs code for HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-042781,13021990 +What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-032861,13021990 +What is the hs code for HYUNDAI BIOLAND BIOCTP-500 (BHN BAKU KOSMETIK) COA BOPN-022381,13021990 +What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1211119,39139090 +What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000199654,29362900 +"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000199654,0000199655",29362900 +"What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0721010014,0721010030",29420000 +What is the hs code for DL-PANTHENOL 50 L (BHN BAKU KOSMETIK) COA TL02104620,29362400 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060010,29420000 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210017,0708210018",29420000 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21060182,29362800 +"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21060182,UT21070210,UT21090291",29362800 +What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0038007,29362500 +What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0721010015,29420000 +What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001624169,29420000 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060015,29420000 +What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000199655,29362900 +"What is the hs code for SULPHAMETHOXAZOLE BP (BHN BAKU OBAT) COA 25311121,25331121,25351121,25371121,25391121,254....",29359000 +What is the hs code for CETIRIZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA 21006CZ6RII,29335990 +"What is the hs code for METAMIZOLE SODIUM REGULAR GRADE(BHN BAKU OBAT) COA 21111670,21111671,21111672,21111716",29331900 +"What is the hs code for CAFFEINE BP/EP/USP (BHN BAKU OBAT) COA 21101664-667,21101747,21101751,21111800",29393000 +What is the hs code for GELUCIRE 44/14 BF (BAHAN BAKU OBAT) COA 183228,28399000 +What is the hs code for GELUCIRE 44/14 BF (BAHAN BAKU OBAT) COA 183398,28399000 +What is the hs code for TEFOSE 63 BF (BAHAN BAKU OBAT) COA 185423,28399000 +What is the hs code for TRANSCUTOL P BF (BAHAN BAKU OBAT) COA 187041,28399000 +What is the hs code for LABRAFAC LIPOPHILE WL 1349 BF (BAHAN BAKU OBAT) COA 186085,28399000 +"What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET), COA DT722716",32151900 +"What is the hs code for OPALUX PINK (BHN BAKU PEWARNA TABLET), COA DT722759",32151900 +"What is the hs code for COPPER (II) GLUCONATE, FINE POWDER, USP 43 (BHN BAKU SUPLEMEN) COA 3107840",29181600 +What is the hs code for NATTOKINASE (BHN BAKU OBAT) COA H185SDK001,35079000 +What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02110596,29362700 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU MAKANAN) COA UT21040211,29362100 +What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02108192,29362700 +What is the hs code for B-CAROTENE 30 PCT FS (BHN BAKU MAKANAN) COA UE02107055,32041900 +"What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT21040013,UT21040014",29362100 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21060016,29362900 +What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT21100101,29362100 +"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02102804,TL02106807",29362400 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210076,0708210077,0708210078,0708210079,0708210080",29420000 +What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1264950,38210090 +What is the hs code for BOTTLE LACTOBACILLI AGAR AOAC 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1299409,38210090 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1063145,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1201851,38210090 +What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1126127,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1048171,38210090 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1175732,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1201851,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1123223,38210090 +What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1126127,38210090 +"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1063138",38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0128385,38210090 +What is the hs code for VIAL TINSDALE ENRICHMENT 6X15 ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1200461,38210090 +"What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1110880,1313171",38210090 +What is the hs code for BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1292716,38210090 +What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP Y 1MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1099742,38210090 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1175732,38210090 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1257917,38210090 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1068161,38210090 +"What is the hs code for SACHET GASPAK EZ ANAEROBE CONT.. (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1214470,124...",38210090 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1145029,38210090 +What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1102066,38210090 +What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1243871,38210090 +What is the hs code for BOTTLE MIDDLEBROOK 7H9 BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1081554,38210090 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01D200M,38210090 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1257917,38210090 +What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1173496,38210090 +What is the hs code for BOTTLE PHENOL RED BROTH BASE BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0335077,38210090 +What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1229997,38210090 +What is the hs code for BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9337678,38210090 +What is the hs code for BOTTLE HEMOGLOBIN FREEZE DIED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1187642,38210090 +What is the hs code for BOTTLE CHROMAGAR CANDIDA 500GM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1215989,38210090 +What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1187914,38210090 +What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1224924,38210090 +What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1292440,38210090 +What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0002110,38210090 +What is the hs code for BOTTLE KF STREPTOCOCCUS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1173803,38210090 +What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1061373,38210090 +What is the hs code for DROPPER LACTOPHENOL COTTON BLUE STAIN (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B04D215M,38210090 +What is the hs code for BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1131540,38210090 +What is the hs code for BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1097873,38210090 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1272026,38210090 +What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1236639,38210090 +What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1292440,38210090 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1201798,38210090 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1048461,38210090 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1188932,38210090 +What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1236639,38210090 +What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1088540,38210090 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1272026,38210090 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1188932,38210090 +What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1061650,38210090 +What is the hs code for LOOPS INOCULATING 10/TUBE 10 MICROLITER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2113830,38210090 +What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1292440,38210090 +What is the hs code for RIFAMPICIN POWDER (BAHAN BAKU OBAT) COA 21B015RF,29419000 +What is the hs code for CAPIXYL (TM) (BHN BAKU KOSMETIK) COA 830019287M,38249999 +What is the hs code for CW-5C 5 PCT CLEAR (BHN BAKU KOSMETIK) COA 785019671M,38249999 +What is the hs code for CW-5C 5 PCT CLEAR (BHN BAKU KOSMETIK) COA 785019762M,38249999 +What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019668M,38249999 +What is the hs code for ABYSSINE (TM) PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) COA 702029166M,38249999 +What is the hs code for B-WHITE (TM) (BHN BAKU KOSMETIK) COA 829019351M,39139090 +What is the hs code for CHRONOLINE (TM) (BHN BAKU KOSMETIK) COA 211512,39139090 +What is the hs code for DENDRICLEAR (TM) (BHN BAKU KOSMETIK) COA 834019745M,39139090 +What is the hs code for ECOGEL (TM) (BHN BAKU KOSMETIK) COA 2125802,38249999 +What is the hs code for LECIGEL (TM) (BHN BAKU KOSMETIK) COA 2110006,38249999 +What is the hs code for MELANOSTATINE(TM) 5 BG (50PPM) (BHN BAKU KOSMETIK) COA 211497,38249999 +What is the hs code for MINIPORYL (TM) (BHN BAKU KOSMETIK) COA 832019624M,38249999 +What is the hs code for ROSALITY (TM) (BHN BAKU KOSMETIK) COA 2100901,38249999 +What is the hs code for SILIGEL (TM) (BHN BAKU KOSMETIK) COA 2119602,38249999 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB21080246,29362800 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB21080246,29362800 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21060147,29362900 +What is the hs code for VITAMIN PREMIX 103093 - A (BHN BAKU MAKANAN) COA XW92110303,21069059 +What is the hs code for PX TRS1 WITHOUT K1 (BHN BAKU MAKANAN) COA XW92110304,21069059 +What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE02105011,29362900 +What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPPLEMEN) COA UQ10409510,29362300 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT21090026,29362100 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT21060147,29362900 +"What is the hs code for DRY VITAMIN E 50 PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21050024,UT21070034",29362800 +What is the hs code for DRY VITAMIN E 50 PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21070034,29362800 +"What is the hs code for DRY VITAMIN E 50 PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21070034,UT21070041",29362800 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21040010,29362900 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21040011,29362900 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPPLEMEN) COA UQ10713242,29362200 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21040011,29362900 +What is the hs code for DRY VITAMIN K1 5 PCT SD (BHN BAKU SUPPLEMEN) COA UT21050002,29362900 +What is the hs code for DRY VITAMIN K1 5 PCT SD (BHN BAKU SUPPLEMEN) COA UT21050002,29362900 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ10713242,29362200 +What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92110232,21069059 +"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-0570921,S-A-0701121",29334910 +What is the hs code for MANGANESE (II)-SULFATE 1-HYDRATE ( BHN BAKU OBAT) COA 3110084,29181600 +What is the hs code for BUDESONIDE MICRONIZED (BHN BAKU OBAT) COA NB2281M,29372900 +What is the hs code for MOMETAZONE FUROATE MICRONIZED (BHN BAKU OBAT) COA NB2941M,29372200 +What is the hs code for TRIAMCINOLONE ACETONIDE MICRONIZED (BHN BAKU OBAT) COA NB2907M,29372200 +"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/10/211021,221021,281021,011121",29420000 +What is the hs code for CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/11/021121,39123100 +What is the hs code for SODIUM STARCH GLYCOLATE BP (BHN BAKU OBAT) COA ASGP/10/011121,29420000 +What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) (BHN BAKU OBAT) COA 4454035379,39139090 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20211119,17029019 +What is the hs code for MONOPOT PHOS MKP FG 25K BG (PRAYPHOS MKP FG) (BHN BAKU KOSMETIK) COA 21-148-01,29420000 +What is the hs code for PRAYPHOS DKP FG 25KG BG (BHN BAKU KOSMETIK) COA 2025931,28352400 +What is the hs code for METHOCEL E5 PREMIUM LV HYDROXYPROPYL METHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D011K5BL02,39123900 +What is the hs code for METHOCEL E15 PREMIUM LV HYDROXYPROPYL METHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D011K5NL01,39123900 +What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL METHYL... (BHN BAKU PEWARNA TABLET) COA D180L52021,39123900 +What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2355402,38210090 +What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1082038,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1046610,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1046610,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1046610,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1046610,38210090 +What is the hs code for BACTO CASAMINO ACIDS TECHNICAL 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1153688,38210090 +What is the hs code for SOY PEPTONE 100 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2395099,38210090 +What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105713621,17021100 +What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104313121,17021100 +What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105713621,17021100 +"What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105713621,L105714621",17021100 +What is the hs code for MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HA01520,34021990 +What is the hs code for SUSTAINABLE VIRGIN OLIVE OIL (BHN BAKU KOSMETIK) COA 0000039386,38249999 +What is the hs code for VIRGIN SWEET ALMOND OIL (BHN BAKU KOSMETIK) COA 0000038920,15152919 +"What is the hs code for HYUNDAI BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK) COA NMSP-D-020121,NMSP-D-030121",39139090 +What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWDER FORM CATCOL C135(L) GRADE(B.BAKU KOSMETIK) COA 460/21,38249999 +"What is the hs code for MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HA01397,HA01520",34021990 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 212953,38249999 +What is the hs code for FLAVOSTERONE SB (BAHAN BAKU KOSMETIK) COA 212631,13021990 +"What is the hs code for AESTHEFILL V200 (POLYLACTIC ACID) ,COA AF211115",90189090 +"What is the hs code for VC ASCORBIC ACID 325 MESH (BHN BAKU SUPLEMEN) COA HPD2110152,146,145,144,134,133,.132,127,...",29362700 +What is the hs code for SORBITOL SPECIAL TM MDF 85 (BHN BAKU OBAT) COA M21007,29054400 +What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) COA 7766039,38249999 +What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) COA 7766038,38249999 +What is the hs code for EXTRAPONE (R) LICORICE GWP (BHN BAKU KOSMETIK) COA 10300015,13021950 +What is the hs code for ACTIPONE (R) WHITE TEA GW (BHN BAKU KOSMETIK) COA 10300048,13021950 +What is the hs code for PHYTOCONCENTROLE (R) CAMOMILE (BHN BAKU KOSMETIK) COA 10300044,13021950 +What is the hs code for FD&C YELLOW NO 6 87 PCT PDR (BHN BAKU KOSMETIK) COA 10300020,13021950 +What is the hs code for EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300055,13021950 +What is the hs code for EPERISONE HYDROCHLORIDE SYN-TECH (BHN BAKU OBAT) COA E10-21052,29333990 +What is the hs code for LABRAFIL M 1944 CS BF (BAHAN BAKU OBAT) COA 186488,28399000 +What is the hs code for CETYL PALMITATE PELLETSCAR (BHN BAKU OBAT) COA 185624,28399000 +What is the hs code for GELUCIRE 48/16 PELLETS CAR (BAHAN BAKU OBAT) COA 185000,28399000 +What is the hs code for PANTOPRAZOLE SODIUM (STERILE) BAHAN BAKU OBAT SI/PPZ/01691021,29333990 +What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP846876,39059990 +What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP846877,39059990 +What is the hs code for D&C YELLOW #10 AL 15 PCT - 20 PCT... (BHN BAKU PEWARNA TABLET) COA WP844752:BA9879,32151900 +What is the hs code for FD&C YELLOW #5/TARTRAZINE AL 36PCT - 39 PCT... (BHN BAKU PEWARNA TABLET) COA WP844299:BA9550,32151900 +What is the hs code for ERYTHROSINE AL 38 PCT-42 PCT... (BHN BAKU PEWARNA TABLET) COA WP844563:1,32151900 +What is the hs code for D&C YELLOW #10 AL 15 PCT - 20 PCT... (BHN BAKU PEWARNA TABLET) COA WP844749:BA9877,32151900 +What is the hs code for FD&C BLUE #1/BRILLIANT BLUE FCF AL ... (BHN BAKU PEWARNA TABLET) COA WP840330:BA7714,32151900 +What is the hs code for FD&C YELLOW #6/SUNSET YELLOW FCF AL ... (BHN BAKU PEWARNA TABLET) COA WP839971:BA7546,32151900 +"What is the hs code for ERYTHROSINE AL 38 PCT-42 PCT (JECFA, GB) ERYTHROSINE...(BHN BAKU PEWARNA TABLET) COA WP844563:1",32151900 +What is the hs code for FD&C YELLOW #5/TARTRAZINE AL36 PCT - 39 PCT.. (BHN BAKU PEWARNA TABLET) COA WP844299:BA9550,32151900 +What is the hs code for FD&C BLUE #1/BRILLIANT BLUE FCF AL 28PCT-31PCT... (BHN BAKU PEWARNA TABLET) COA WP846602:BB1029,32151900 +What is the hs code for CEFTIZOXIME SODIUM (BHN BAKU OBAT) COA A100300,29419000 +What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2021091803,21012020 +What is the hs code for LIPOID PPL-600 (BHN BAKU SUPPLEMEN) COA 577200-2210231/005--007,29232010 +What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 2109361604,29362600 +What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 2109361604,29362600 +What is the hs code for TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA S7227,29225090 +"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000200344,0000200381",29362900 +"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000199655,0000199656,0000199657,0000200344",29362900 +What is the hs code for STERLIE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW MONO YRN29-03 (ALAT KESEHATAN) COA MO2950N1210,30061010 +What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC6D YRPN19...(ALAT KESEHATAN)COA 6D19100L1210,30061010 +What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC6D YRPN21..(ALAT KESEHATAN)COA 6D2190L1210,30061010 +What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW MC HEART...(ALAT KESEHATAN) COA HL19100L1210,30061010 +What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW MC HEART.. (ALAT KESEHATAN) COA HL19100U1210,30061010 +What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC HI RHINO.(ALAT KESEHATAN) COA HR1938L1210,30061010 +What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC HI RHINO.. (ALAT KESEHATAN) COA HR1960L1210,30061010 +What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW DC DUAL... (ALAT KESEHATAN) COA DA21110N1210,30061010 +What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW DC DUAL... (ALAT KESEHATAN) COA DA21110N1210,30061010 +What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 09112021,25081000 +What is the hs code for ESOMEPRAZOLE MAGNESIUMUSP (BHN BAKU OBAT) COA ESM/2111567,29333990 +What is the hs code for BETAHISTINE MESILATE EP/BP (BHN BAKU OBAT) COA EDBHM21003,29333990 +What is the hs code for EUXYL K 100 CAN 10 KG (BHN BAKU KOSMETIK) COA 1569539,38249999 +What is the hs code for EUXYL K 120 CAN 10 KG (BHN BAKU KOSMETIK) COA 1570700,38249999 +What is the hs code for EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) COA 1573368,38249999 +What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) COA 1570953,38249999 +What is the hs code for SENSIDIN DO CAN 10 KG (BHN BAKU KOSMETIK) COA 1570026,38249999 +What is the hs code for EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) COA 1573368,38249999 +What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) COA 1574318,38249999 +What is the hs code for FENTACARE 1631 25 MB 200KG PLAS DR (BHN BAKU KOSMETIK ) COA ZH21I1404M,29239000 +What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) XH20210704,29362800 +What is the hs code for ASCORBIC ACID 90 PCT GRANULATION (BHN BAKU SUPPLEMEN) WB21109004,29362700 +"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) WB20060516,WB21030580,WB21090584,WB21090586",29362100 +"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20210901,XH20211001",29362800 +What is the hs code for MEG-3 30 N-3 INF OIL (BHN BAKU SUPPLEMEN) COA TS00018399,29362500 +What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2003565686,29372900 +What is the hs code for L-CARNITINE (EP GRADE)(BHN BAKU KOSMETIK)COA 10100120211037,29239000 +What is the hs code for MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HA01397,34021990 +What is the hs code for CHOLINE CHLORIDE 60 PCT (BHN BAKU PAKAN HEWAN) COA YF60Y202111020,38249999 +What is the hs code for BROMELAINE 1600 GDU (BHN BAKU OBAT) COA 223.777,35079000 +What is the hs code for GLIMEPIRIDE USP 43 (BHN BAKU OBAT) COA GLM/042/10/21,29359000 +"What is the hs code for PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M598040,M598041",29411019 +What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M534956 S/D M534962,29411019 +What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0058979,38249999 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20211127,17029019 +"What is the hs code for CATECHINS TEAVIGO 4 KG (BHN BAKU KOSMETIK), COA 109101",21012020 +What is the hs code for SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0126700,13021950 +What is the hs code for SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0126800,13021950 +What is the hs code for SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0126800,13021950 +What is the hs code for SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0126900,13021950 +"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/12/051221,061221,071221,081221,091221",29420000 +What is the hs code for NEOSTIGMINE METHYL SULPHATE (BHN BAKU OBAT) COA NMS0220004,29211100 +"What is the hs code for FENTACARE 2231 EF 25KG PAPER BOX (BHN BAKU KOSMETIK )COA ZH21L0404,ZH21L0904",34029019 +What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) COA 321CAA0012,38249999 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ10613218,29362200 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21060146,29362900 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ10613218,29362200 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ10612206,29362200 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21040010,29362900 +What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3 PCT (BHN BAKU SUPPLEMEN) COA WB21050060,29362500 +What is the hs code for PREMIX VMP JELLY (BHN BAKU MAKANAN) COA XW92111021,21069059 +What is the hs code for VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92111038,21069059 +What is the hs code for MINERAL PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92111019,21069059 +What is the hs code for MIN PREMIX MI A2 (BHN BAKU MAKANAN) COA XW92111020,21069059 +What is the hs code for VIT PREMIX MI A1 (BHN BAKU MAKANAN) COA XW92111039,21069059 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12110019,29362900 +What is the hs code for DRY VITAMIN K1 5 PCT SD (BHN BAKU MAKANAN) COA UT21050002,29362900 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12110019,29362900 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11210901,29362500 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11210901,29362500 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11210901,29362500 +What is the hs code for MIRASIL CM5 L (BHN BAKU KOSMETIK) COA 2149WKQ515,29319049 +What is the hs code for VALERIAN D.H.E 0.8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 21B0128500,13021990 +What is the hs code for VALERIAN D.H.E 0.8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 21B0128500,13021990 +"What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M534977,978,989,990,991,992",29411019 +"What is the hs code for RANITIDINE HCL USP ( BAHAN BAKU OBAT ) COA RH 825 10 21,RH 826 10 21,RH 824 10 21",29321900 +What is the hs code for METOCLOPRAMIDE HYDROCHLORIDE BP ( BAHAN BAKU OBAT ) COA M-2111419,29242990 +What is the hs code for FLUNARIZINE DIHYDROCHLORIDE BP ( BAHAN BAKU OBAT ) COA FLU/08211033,29335990 +What is the hs code for CINNARIZINE BP/EP( BAHAN BAKU OBAT ) COA CIN/11211143,29335990 +What is the hs code for RANITIDINE HYDROCHLORIDE( BAHAN BAKU OBAT ) COA RH 993 12 21,29321900 +What is the hs code for RANITIDINE HYDROCHLORIDE( BAHAN BAKU OBAT ) COA RH 291 04 21,29321900 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH652270,38249999 +What is the hs code for ACRYL-EZE PURPLE (BHN BAKU PEWARNA TABLET) COA SH652289,39061090 +What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH652271,39061090 +What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH652286,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH650443,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH652272,38249999 +What is the hs code for OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH652273,38249999 +What is the hs code for OPADRY AMB RED (BHN BAKU PEWARNA TABLET) COA SH652274,38249999 +What is the hs code for OPADRY II GRAY (BHN BAKU PEWARNA TABLET) COA SH652275,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH652345,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH652276,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH652277,38249999 +What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH652288,39061090 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH652595,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH652302,38249999 +What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102123012,28161000 +"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102102039",28183000 +"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102123012, SAMPLE NO COMMERCIAL..",28161000 +What is the hs code for BARCROFT TM 0600 AHMC (BHN BAKU OBAT) COA 102114002,28161000 +What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102123012,28161000 +"What is the hs code for BARCROFT TM AL HYD GEL LV13, USP (BHN BAKU OBAT) COA 102113125",28183000 +"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102123012, SAMPLE NO COMMERCIAL..",28161000 +"What is the hs code for BARCROFT TM AL HYD GEL LV13, USP (BHN BAKU OBAT) COA 102113125, SAMPLE NO COMMERCIAL VALUE",28183000 +What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 199196,29332900 +"What is the hs code for PARSOL ZX (BHN BAKU KOSMETIK) COA 201008012, SAMPLE NO COMMERCIAL VALUE",29420000 +"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040021, SAMPLE NO COMMERCIAL VALUE",29420000 +What is the hs code for ESOMEPRAZOLE MAGNESIUM USP (BHN BAKU OBAT) COA ESM/2111567,29333990 +"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP34021,MTP34021",28363000 +"What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340323,B340328,B340342",29419000 +"What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334786,B334790,B334791",29419000 +What is the hs code for PROPYPHENAZONE (ST) (BHN BAKU OBAT UTK PEWARNA TABLET) COA 2010190,29331100 +What is the hs code for DEXAMETHASONE BP2010/USP41 (BHN BAKU OBAT) COA NED220101,29372200 +"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP31121,MTP32121",28363000 +What is the hs code for SUCRALOSE (BHN BAKU OBAT) COA 21082101,29321400 +What is the hs code for DICLAZURIL (BHN BAKU PAKAN HEWAN) COA 210601-1,29339990 +What is the hs code for DL-TARTARIC ACID (BHN BAKU MAKANAN) COA RS01565,29181200 +What is the hs code for TRIMETHOPRIM (BHN BAKU PAKAN HEWAN) COA A-20112111049,29335990 +What is the hs code for L-MALIC ACID (BHN BAKU MAKANAN) COA CS11986,29181900 +What is the hs code for CROSPOVIDONE XL-10 (BHN BAKU OBAT) COA PP211114XL-10,39059990 +What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA MLAH0741021,29341000 +What is the hs code for SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202112-006,35040000 +"What is the hs code for MAGNESIUM CARBONATE, EXTRA LIGHT (BHN BAKU MAKANAN) COA 3103621,3107043,3109372-01,3106064",28369990 +"What is the hs code for SODIUM CARBONATE IPH (BHN BAKU SUPPLEMEN) COA DOC3312121,DOC3152121",28363000 +What is the hs code for ROSUVASTATIN CALSIUM (BHN BAKU OBAT) COA M325269,29359000 +What is the hs code for RANITIDINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA RHP 061 12 21; RHP 062 12 21,29321900 +What is the hs code for SODIUM VALPROATE (BAHAN BAKU OBAT) COA 455931 (V6812),29159090 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN545806,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN545797,35051010 +What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1314223,38210090 +What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1314223,38210090 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1287225,38210090 +"What is the hs code for VC ASCORBIC ACID REGULAR (BHN BAKU SUPLEMEN) COA HPD2111135,HPD2112002",29362700 +"What is the hs code for VC ASCORBIC ACID DC 97 PCT (BHN BAKU SUPLEMEN) COA HPG2111004,HPG2111005",29362700 +What is the hs code for VC ASCORBIC ACID REGULAR (BHN BAKU SUPLEMEN) COA HPB2111233,29362700 +What is the hs code for PIROXICAM (BAHAN BAKU OBAT ) COA PRX2021008M,29349990 +"What is the hs code for PHENYLEPHRINE HCL USP (BHN BAKU OBAT) COA 2-IL-D-1441221,2-IL-D-1451221,2-IL-D-1461221",29225090 +"What is the hs code for MAGNESIUM CARBONATE, HEAVY (BHN BAKU SUPLEMEN) COA 1104215,1104545,1104717",28369990 +What is the hs code for SELOHVITA C (BHN BAKU OBAT) COA 3105469,28429010 +"What is the hs code for POTASSIUM L-ASPARTATE 0,5 HYDRATE (BHN BAKU OBAT) COA 3097136",29224900 +What is the hs code for SODIUM GLYCEROPHOSPHATE (BHN BAKU OBAT) COA 3084920,29199000 +"What is the hs code for MAGNESIUM OXIDE, LIGHT, POWDER (BHN BAKU OBAT) COA 1104624",25199010 +What is the hs code for SELOHVITA C (BHN BAKU OBAT) COA 3109781,28429010 +"What is the hs code for MAGNESIUM CARBONATE, HEAVY (BHN BAKU OBAT) COA 3109046",28369990 +What is the hs code for FERRIC PYROPHOSPHATE 24 - 26 PCT FE (BHN BAKU OBAT) COA 3101624,28353990 +"What is the hs code for MAGNESIUM CARBONATE, HEAVY (BHN BAKU OBAT) COA 3103805-1,3109046,1104215",28369990 +What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT21120037,29362100 +What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA EDS/CB0210B,29349990 +What is the hs code for OPADRY 200 BROWN (BHN BAKU PEWARNA TABLET) COA SH653550,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH653549,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH652992,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH653058,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH652936,38249999 +What is the hs code for OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH652937,38249999 +What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH652938,38249999 +What is the hs code for OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH652939,38249999 +What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH652940,39061090 +What is the hs code for ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH652984,39061090 +What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH653800,39061090 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH653446,38249999 +What is the hs code for OPADRY AMB II CLEAR (BHN BAKU PEWARNA TABLET) COA SH653270,38249999 +What is the hs code for OPADRY RED (BHN BAKU PEWARNA TABLET) COA SH652943,38249999 +What is the hs code for ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH652985,39061090 +What is the hs code for OPADRY II BLUE (BHN BAKU PEWARNA TABLET) COA SH652991,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH652944,38249999 +What is the hs code for PIGMENT BLEND BROWN (BHN BAKU PEWARNA TABLET) COA SH652983,32151900 +What is the hs code for OPADRY GREEN (BHN BAKU PEWARNA TABLET) COA SH652945,38249999 +What is the hs code for OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH652990,38249999 +What is the hs code for OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH652939,38249999 +What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-021781,13021990 +What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1211208,39139090 +What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-131791,39139090 +What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE 1 PCT SOLUTION (BHN BAKU KOSMETIK) COA HASC-141341,39139090 +What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 120821,28321000 +What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-051501,13021950 +What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-050211,38249999 +What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-032861,13021990 +What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-011151,13021990 +What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011851,13021990 +What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-173011,39139090 +What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 120821,28321000 +What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-061911,13021950 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20211130,17029019 +What is the hs code for PERMETHRIN (PHARMA GRADE) BHN BAKU OBAT COA 215046012,29163990 +What is the hs code for ABSORAGE (BAHAN BAKU KOSMETIK) COA 212642,13021990 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 212953,38249999 +What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 212631,13021990 +What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 211752,13021990 +What is the hs code for ACNE BUSTERS (BHN BAKU KOSMETIK) COA 212711,38249999 +What is the hs code for ACNE BUSTERS (BHN BAKU KOSMETIK) COA 212711,38249999 +What is the hs code for ACNE BUSTERS (BHN BAKU KOSMETIK) COA 210386,38249999 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 212953,38249999 +What is the hs code for ROSE HIPS LIQUID B (BHN BAKU KOSMETIK) COA 211392,13021990 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210802,13021990 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO210904,38249999 +What is the hs code for CHAMOMILIA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO210603,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS211004,38249999 +What is the hs code for HONEY OILY EXTRACT (BHN BAKU KOSMETIK) COA MIE200101-H,13021990 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210802,13021990 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO210904,38249999 +What is the hs code for CHAMOMILIA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO210603,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS211004,38249999 +What is the hs code for SEABUCKTHORN HYDROGLYCOLIC EXTRACT(BHN BAKU KOSMETIK) COA HIR210101-B,13021990 +What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA GINSENG PHYTELENE EG 209,13021990 +What is the hs code for EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) COA 1576221,38249999 +What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113603,29339990 +What is the hs code for FIXABLE VIABILITY STAIN 510 100UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0345532,38210090 +"What is the hs code for HU IFN-GMA BV421 B27 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1110349",38210090 +What is the hs code for HU IL-2 PE MQ1-17H12 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1180913,38210090 +"What is the hs code for HU IL-4 APC 8D4-8 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1083846,1173686",38210090 +What is the hs code for HU CD8 APC-CY7 SK1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1221667,38210090 +What is the hs code for HU CD3 FITC HIT3A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0328919,38210090 +What is the hs code for CYTOFIX/CYTOPERM SOLN KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1215119,38210090 +"What is the hs code for HU CD28 NALE CD28.2 500UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1050152,1050153",38210090 +"What is the hs code for HU TH1/TH2/TH17 CBA KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1232545,1232692",38210090 +What is the hs code for CD4 PERCP-CY5.5 SK3 RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1294299,38210090 +What is the hs code for BD CST BEADS KIT 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 12948,38210090 +What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK) COA LDC44921T,27101990 +What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) COA 112080,38249999 +What is the hs code for KSG-15 (16KG) (BHN BAKU KOSMETIK) COA 111529,38249999 +What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 111170,38249999 +"What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) COA 111266,111267",38249999 +"What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) COA 1574774,1575273",38249999 +"What is the hs code for EUXYL K 720 CAN 10 KG (BHN BAKU KOSMETIK) COA 1573611,1575272",38249999 +What is the hs code for MONOCALCIUM PHOSPHATE FEED GRADE MICROGRANULAR (BHN BAKU PAKAN TERNAK) COA 202111010125,28352600 +What is the hs code for HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2510921,29391900 +What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP21124133 S/D XP21124138,29211900 +What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP21123082 S/D XP21123087,29211900 +What is the hs code for JOJOBA OIL VIRGIN LOW ODOUR (BHN BAKU KOSMETIK) COA 158779,15159011 +What is the hs code for DENDRICLEAR (TM) (BHN BAKU KOSMETIK) COA 834019745M,39139090 +What is the hs code for AMISOL TRIO (TM) (BHN BAKU KOSMETIK) COA 2100014,38249999 +What is the hs code for CAPIXYL (TM) (BHN BAKU KOSMETIK) COA 830019573M,38249999 +What is the hs code for CAPIXYL (TM) (BHN BAKU KOSMETIK) COA 830019573M,38249999 +What is the hs code for CW-5C 5 PCT CLEAR (BHN BAKU KOSMETIK) COA 785019762M,38249999 +What is the hs code for CW-5C 5 PCT CLEAR (BHN BAKU KOSMETIK) COA 785019762M,38249999 +What is the hs code for LECIGEL (TM) (BHN BAKU KOSMETIK) COA 2125202,38249999 +What is the hs code for TYROSTAT (TM) 11 (BHN BAKU KOSMETIK) COA 784029189M,39139090 +What is the hs code for WORLEE ALOE PURE BALANCE IF 200X FD (BAHAN BAKU KOSMETIK) COA 512070,13021990 +What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB191121,39123900 +What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB191121,39123900 +What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B261121,39123900 +What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B261121,39123900 +"What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 29491221,29511221,29541221,29561221,.....",29359000 +What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-211211,29061300 +"What is the hs code for CALAMINE , POWDER, BP 2021 (BHN BAKU SUPLEMEN) COA 3106872",28369990 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) SJG,38249999 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA SLI,38249999 +What is the hs code for POTASSIUM IODIDE AND CARRIER (BHN BAKU OBAT) COA 3108569,28276000 +"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA ROA275217,ROA275211,ROA272216",28363000 +"What is the hs code for LEUCOCYANIDINS (BHN BAKU SUPLEMEN) COA 1104/7, SAMPLE NO COMMERCIAL INVOICE",13021950 +"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040019,0221040059",29420000 +"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050133,0321050134,0321050136,0321050137,0321050138",29420000 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210021,0708210022,0708210023",29420000 +What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS5840321,29420000 +What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0921020002,29420000 +"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1273554",38210090 +"What is the hs code for BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1273553",38210090 +"What is the hs code for BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1273553",38210090 +"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1273554",38210090 +"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1309612",38210090 +"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1309612",38210090 +"What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 1285558,1313328",38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1123223,38210090 +"What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0219127",38210090 +What is the hs code for VIAL E COLI O ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0094884,38210090 +What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1313171,38210090 +What is the hs code for BOTTLE B12 INOCULUM BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1195933,38210090 +What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1244192,38210090 +"What is the hs code for BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1273553",38210090 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1182099,38210090 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1182099,38210090 +What is the hs code for BOTTLE FOLIC AOAC MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1133929,38210090 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1182099,38210090 +What is the hs code for TSA TM WLP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1327989,38210090 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA PENGEMBANGAN MIKROORGANISME) BATCH 1335274,38210090 +What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1335298,38210090 +What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-002-Y,13021990 +What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL METHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D011L3OL01,39123900 +What is the hs code for FD&C YELLOW #6/SUNSET YELLOW FCF.... (BHN BAKU PEWARNA TABLET) COA WP839962:BA7341,32151900 +What is the hs code for FD&C YELLOW #5/TARTRAZINE AL36PCT - 39PCT.... (BHN BAKU PEWARNA TABLET) COA WP844301:BA9667,32151900 +What is the hs code for FD&C YELLOW #5/TARTRAZINE AL 36PCT - 39PCT... (BHN BAKU PEWARNA TABLET) COA WP833410:BA4890,32151900 +What is the hs code for ERYTHROSINE AL 38PCT - 42PCT... (BHN BAKU PEWARNA TABLET) COA WP835192:1,32151900 +What is the hs code for FD&C RED #40/ALLURA RED AC AL 38PCT- 42PCT... (BHN BAKU PEWARNA TABLET) COA WP841246:BA8625,32151900 +What is the hs code for D&C YELLOW #10 AL 15PCT - 20PCT... (BHN BAKU PEWARNA TABLET) COA WP844755:BA9949,32151900 +What is the hs code for FD&C YELLOW #6/SUNSET YELLOW FCF... (BHN BAKU PEWARNA TABLET) COA WP848263:BB2196,32151900 +What is the hs code for EXTRAPONE (R) LICORICE GWP (BHN BAKU KOSMETIK) COA 10300017,13021950 +What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2103661117,29372900 +What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D011L3OL01,39123900 +What is the hs code for METHOCEL A15 PREMIUM LV METHYLCELLULOSE... (BHN BAKU PEWARNA TABLET) COA D180L6S021,39123900 +What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180K61001,39123900 +What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180L51022,39123900 +What is the hs code for METHOCEL E15 PREMIUM LV HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D011K5SL02,39123900 +What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D011L3OL01,39123900 +What is the hs code for METHOCEL K4M PREMIUM HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D180L2Q002,39123900 +What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 21E1309,28399000 +What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 21E1607,28399000 +What is the hs code for SUPPOCIRE A PELLETS (BHN BAKU OBAT) COA 21E4308,28399000 +What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK) COA 8705000,38249999 +What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1228035,38210090 +What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1215964,38210090 +What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1215964,38210090 +What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2355402,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2305552,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2305552,38210090 +What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1082038,38210090 +What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1082038,38210090 +What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0175474,38210090 +What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1153097,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1046610,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1046610,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1046610,38210090 +What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0216774,38210090 +What is the hs code for STARCH 1500 PARTIALLY PREGELATINIZED.... (BHN BAKU PEWARNA TABLET) COA IN545319,35051010 +What is the hs code for LEVOFLOXACIN HEMIHYDRATE (FREE ALKALINE) (BHN BAKU OBAT) COA C008-2111603,29349990 +What is the hs code for LINCOMYCIN HYDROCHLORIDE (BHN BAKU OBAT) COA 2107002,29419000 +What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-201107,29397900 +"What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340331,B340336,B340337",29419000 +"What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M535067,M535069 S/D M535072,M535074 ,M535075",29411019 +What is the hs code for HYDROCORTISONE ACETATE EP7/USP42 (BHN BAKU OBAT) COA NEHAC211203,29372200 +"What is the hs code for DEXAMETHASONE (BHN BAKU OBAT) COA NED220107,NED220110,NED211113",29372200 +What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE (BHN BAKU OBAT) COA NEDNA211007,29372200 +"What is the hs code for PARACETAMOL USP (BHN BAKU OBAT) COA 2210005,2210009,2210010,2151953",29242930 +What is the hs code for TSPL-30-ID (BHN BAKU KOSMETIK) COA,38249999 +What is the hs code for VITAMIN PREMIX MILK POWDER FOR ADULTS (BHN BAKU MAKANAN) COA XW92111022,21069059 +What is the hs code for MINERAL PREMIX MILK POWDER FOR ADULTS V2 (BHN BAKU MAKANAN) COA XW92111092,21069059 +"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21060146,UT21070149",29362900 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11210902,QZ11210903",29362500 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3 PCT (BHN BAKU SUPPLEMEN) COA WB21060056,29362300 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ10713265,29362200 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21070149,29362900 +"What is the hs code for B-CAROTENE 30 PCT FS (BHN BAKU MAKANAN) COA UE02104027,UE02105040,UE02105042",32041900 +What is the hs code for STAY-C (R) 50(BHN BAKU KOSMETIK) COA UE02101013,29362700 +"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0921020016,0921020022",29420000 +What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040083,29420000 +What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0421040061,29420000 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21100362,29362800 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21100362,29362800 +"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060047,0521060058",29420000 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060020,29420000 +What is the hs code for PARSOL ZX (BHN BAKU KOSMETIK) COA 190927012,29420000 +What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA,21012020 +"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA303217,ROA305212,ROA300212,....",28363000 +What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0060661,38249999 +"What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 211897,213035",13021990 +What is the hs code for BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1229957,38210090 +What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1272545,38210090 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1314313,38210090 +What is the hs code for BOTTLE CLED AGAR BBL (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1299286,38210090 +What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1061650,38210090 +What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1131505,38210090 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1257220,38210090 +What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1173496,38210090 +"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1188089",38210090 +What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1D19654,38210090 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1188932,38210090 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1188091,38210090 +"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1222962",38210090 +What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1007102,38210090 +What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1071063,38210090 +What is the hs code for BOTTLE XLD AGAR 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1145029,38210090 +What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1071109,38210090 +What is the hs code for BOTTLE MALT EXTRACT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1138882,38210090 +What is the hs code for BOTTLE MICRO INOCULUM BROTH 500 G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1075951,38210090 +What is the hs code for BOTTLE MIL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283882,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 5 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1236415,38210090 +What is the hs code for BOTTLE ISP MEDIUM 4 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1133635,38210090 +"What is the hs code for VIAL UNIVERSAL VIRAL TRANSPORT(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH N10157500,N10347800",38210090 +What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1278413,38210090 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1242041,38210090 +"What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1244312,1272570",38210090 +"What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B03D284M,B01D301M",38210090 +What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1272545,38210090 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1327503,38210090 +"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1278675,82",38210090 +What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1306190,38210090 +What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1201174,38210090 +What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283868,38210090 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1173666,38210090 +"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1068161,1257917",38210090 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1201798,38210090 +What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1173496,38210090 +"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1188089",38210090 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1048461,38210090 +What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1187601,38210090 +What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1019654,38210090 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1188932,38210090 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1144373,38210090 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0322946,38210090 +What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1201174,38210090 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1201798,38210090 +What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1019654,38210090 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1188932,38210090 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1327503,38210090 +What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1292440,38210090 +What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1215037,38210090 +"What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1155513,....",38210090 +What is the hs code for BOTTLE EOSIN METHYLENE BLUE AG HHT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1223549,38210090 +What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1229997,38210090 +What is the hs code for BOTLE LYSINE DECARBOXYLASE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1096987,38210090 +What is the hs code for BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9337678,38210090 +What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1187914,38210090 +What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0350960,38210090 +What is the hs code for BOTTLE WL DIFFERENTIAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1188436,38210090 +What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1061373,38210090 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01D341M,38210090 +What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1312204,38210090 +What is the hs code for BOTTLE M ENDO BROTH MF 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0282594,38210090 +What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1159790,38210090 +What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1111035,38210090 +"What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1279386,1181266,1102066",38210090 +"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1314313,....",38210090 +What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1319643,38210090 +What is the hs code for BOTTLE STANDARD METHODS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1244342,38210090 +"What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP32021,MTP34621",28363000 +"What is the hs code for BICAR PHARMA EXCIPIENT 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN)COA MTP32121,SAMPLE NO VALUE",28363000 +What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-070921,38249999 +What is the hs code for MIRASIL CM5 L (BHN BAKU KOSMETIK) COA 2202WKQ215,29319049 +What is the hs code for OPADRY ORANGE (BHN BAKU PEWARNA TABLET) COA GA700396,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA GA700397,38249999 +What is the hs code for TABCOAT TC WHITE (BHN BAKU PEWARNA TABLET) COA GA700398,32151900 +What is the hs code for CEFTAZIDIME BUFFERED (BHN BAKU OBAT) COA A200200,29419000 +"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040019,0221040059",29420000 +"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050133,0321050134,0321050136,0321050137,0321050138",29420000 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210021,0708210022,0708210023",29420000 +What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS5840321,29420000 +What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0921020002,29420000 +What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105714621,17021100 +What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104314021,17021100 +What is the hs code for MICROBIO M3D AUTOSCANNER EN (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH AS0149,38210090 +"What is the hs code for METAMIZOLE SODIUM REGULAR GRADE(BHN BAKU OBAT) COA 21121929,21121930,21121934,21121935",29331900 +"What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED (BHN BAKU PAKAN HEWAN) COA MTP05221,MTP00122",28363000 +"What is the hs code for MONOPOT PHOS MKP FG 25K BG (PRAYPHOS MKP FG) (BHN BAKU KOSMETIK) COA 21-244-01,21-148-01",29420000 +"What is the hs code for PRAYPHOS DKP FG 25KG BG (BHN BAKU KOSMETIK) COA 2116831,2025931",28352400 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS211004,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS211004,38249999 +What is the hs code for SEABUCKTHORN HYDROGLYCOLIC EXTRACT(BHN BAKU KOSMETIK) COA HIR210101-B,13021990 +What is the hs code for HEBELYS (BHN BAKU KOSMETIK) COA SPHC210402-Z100,38249999 +"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 12-03-21,19-03-21,17-09-21,03-09-21,01-07-21,....",38029090 +"What is the hs code for PHENOXY ETHANOL PR (BHN BAKU KOSMETIK) COA 744267,744112",29094900 +What is the hs code for COOLACT 10 (BHN BAKU KOSMETIK) COA T008444,29094900 +"What is the hs code for AVEMIX DUAL (BHN PAKAN TERNAK) COA 0000012738, SAMPLE NO COMMERCIAL VALUE",35079000 +What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 210415,13021990 +What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 210618,13021990 +What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 210918,13021990 +What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 211111,29061900 +What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 211010,13021990 +What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 210618,13021990 +"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 210803,211014",13021990 +What is the hs code for ACNE BUSTERS (BHN BAKU KOSMETIK) COA 212711,38249999 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 212953,38249999 +What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 212202,13021990 +What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 211808,13021990 +What is the hs code for PEACH LEAF LIQUID B (BHN BAKU KOSMETIK) COA 212954,13021990 +What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 211752,13021990 +What is the hs code for ALTHEA LIQUID (BHN BAKU KOSMETIK) COA 212339,13021990 +What is the hs code for BIO-PGA SOLUTION HB (BHN BAKU KOSMETIK) COA 212278,39139090 +What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 211349,13021990 +What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 202079,13021990 +What is the hs code for OPALUX MAROON (BHN BAKU PEWARNA TABLET) COA DT724198,32151900 +What is the hs code for OPASPRAY YELLOW (BHN BAKU PEWARNA TABLET) COA DT724192,32151900 +What is the hs code for OPACODE BLACK (BHN BAKU PEWARNA TABLET) COA DT724193,32151900 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH654510,38249999 +What is the hs code for ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH652982,39061090 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH653768,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH653768,38249999 +What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH652981,39061090 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH652978,39061090 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH652994,38249999 +What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK) COA 8714500,38249999 +What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-070921,38249999 +What is the hs code for HYUNDAI BIOLAND APRICOT EXTRACT (BHN BAKU KOSMETIK) COA PAS-010501,13021990 +"What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-072081,HOXB-082821",13021990 +What is the hs code for HYUNDAI BIOLAND JEJU TANGERINE EXTRACT (BHN BAKU KOSMETIK) COA GTUP-T-011971,13021990 +What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011851,13021990 +What is the hs code for HYUNDAI BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-032721,13021990 +What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE 1 PCT SOLUTION (BHN BAKU KOSMETIK) COA HASC-14134,39139090 +What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 123021,28321000 +What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-061911,13021950 +What is the hs code for HYUNDAI BIOLAND CACTUS EXTRACT (BHN BAKU KOSMETIK) COA CAB-052921,13021990 +What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-032861,13021990 +What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL ... (BHN BAKU PEWARNA TABLET) COA D180L52021,39123900 +What is the hs code for METHOCEL E4M PREMIUM HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180L21012,39123900 +What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180KCM022,39123900 +What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180K61001,39123900 +What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL ... (BHN BAKU PEWARNA TABLET) COA D180L4S022,39123900 +What is the hs code for MEG-3 '30' N-3 FOOD OIL (BHN BAKU MAKANAN) COA TS00018693,29362500 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT21090031,29362900 +What is the hs code for B-CAROTENE 10 PCT CWS (BHN BAKU SUPPLEMEN) COA UT21050015,32041900 +What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20201101,29362800 +What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12111013,29362900 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ10413604,29362500 +"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ10612206,UQ10312088",29362200 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU SUPPLEMEN) COA UT21020206,29362100 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ10312088,29362200 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ10910762,29362300 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPPLEMEN) COA TL02107035,TL02109430,TL02110597",29362700 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT21061096,UT21061097",29362100 +"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT20040088,UT20050089",29362400 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ10612206,29362200 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT20050089,29362400 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21070149,29362900 +"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000201105,0000201106",29362900 +What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000201106,29362900 +What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000201106,29362900 +"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050385,0321050386,0321050388,0321050389,0321050390",29420000 +"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000201106,0000201107",29362900 +What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF21092005,29420000 +"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21100362,UT21110383",29362800 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP33621,28363000 +What is the hs code for VC CALCIUM ASCORBATE DC (BHN BAKU SUPLEMEN) COA HPT2106002,29362700 +What is the hs code for AQUACOAT CPD-30 CELLULOSE .... (BHN BAKU PEWARNA TABLET) COA 2173804237,39123900 +What is the hs code for SENTRY POLYOX WSR 303 LEO NF ... (BHN BAKU PEWARNA TABLET) COA D682L6MRR4,39123900 +What is the hs code for SENTRY POLYOX WSR 303 LEO NF ... (BHN BAKU PEWARNA TABLET) COA D682L3TRR5,39123900 +What is the hs code for AQUACOAT CPD-30 CELLULOSE ... (BHN BAKU PEWARNA TABLET) COA 2174048104,39123900 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20211130,17029019 +What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP33621,28363000 +What is the hs code for MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50428,29061100 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH655356,39061090 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH654040,39061090 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH653656,39061090 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH649250,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH653776,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH653607,39061090 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH654249,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH653768,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH653067,39061090 +What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH653801,39061090 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH653549,38249999 +What is the hs code for OPADRY II BLUE (BHN BAKU PEWARNA TABLET) COA SH652991,38249999 +What is the hs code for OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH653825,38249999 +What is the hs code for OPADRY AMB II PURPLE (BHN BAKU PEWARNA TABLET) COA SH653836,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH653779,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH653826,38249999 +What is the hs code for OPADRY AMB II CLEAR (BHN BAKU PEWARNA TABLET) COA SH653827,38249999 +What is the hs code for ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH653780,39061090 +What is the hs code for OPADRY AMB II BROWN (BHN BAKU PEWARNA TABLET) COA SH653835,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH652510,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH653838,38249999 +What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH653705,38249999 +What is the hs code for PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 061521/007043,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH655098,38249999 +What is the hs code for OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH655303,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH654419,38249999 +What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU UTK PAKAN TERNAK) COA 202100644,28183000 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN546043,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN546048,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN546044,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN546047,35051010 +What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113692,29339990 +What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113692,29339990 +"What is the hs code for COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPLEMEN) COA TL02112175",29362700 +What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB191121,39123900 +What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B241221,39123900 +What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB191121,39123900 +What is the hs code for LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LG090122,39123900 +What is the hs code for PEARL ESSENCES 35031MJ (BHN BAKU KOSMETIK) COA D1390252,32061910 +What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWDER FORM CATCOL C135(L) GRADE(B.BAKU KOSMETIK) COA 090/22,38249999 +"What is the hs code for CALCIUM CARBONATE DC TYPE CS90 PHARMA (BHN BAKU SUPPLEMEN) COA 202100243,202100236",28365010 +What is the hs code for MAGNESIUM HYDROXYDE MS90 PHARMA (BHN BAKU SUPPLEMEN) COA 202100545,28161000 +What is the hs code for GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 21T0112100,13021950 +What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 22122021,25081000 +What is the hs code for MONENDOX 200 BMP (BHN BAKU UTK PAKAN TERNAK) COA 2112202,29419000 +What is the hs code for OPALUX TAN (BHN BAKU PEWARNA TABLET) COA DT724789,32151900 +What is the hs code for OPASPRAY YELLOW (BHN BAKU PEWARNA TABLET) COA DT724790,32151900 +What is the hs code for OPASPRAY YELLOW (BHN BAKU PEWARNA TABLET) COA DT724811,32151900 +What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET) COA DT724830,32151900 +What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET) COA DT723634,32151900 +What is the hs code for OPADRY TF WHITE (BHN BAKU PEWARNA TABLET) COA DT724822,32151900 +What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/01/020122,29420000 +"What is the hs code for CROSCARMELLOSE SODIUM USP-NF (BHN BAKU OBAT) COA ACRMC/12/181221,211221,261221,271221,091221",39129090 +"What is the hs code for SODIUM STARCH GLYCOLATE BP (BHN BAKU OBAT) COA ASGP/12/261221,271221,161221",29420000 +"What is the hs code for MAGNESIUM CHLORIDE 6-HYDRATE, CRYST. (BHN BAKU OBAT) COA 3101386",28273100 +What is the hs code for XANTHAN FFPC (BHN BAKU OBAT) COA 2551113,39139090 +What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 702018037K,38249999 +What is the hs code for ALDAVINE (TM) 5X (BHN BAKU KOSMETIK) COA 799039730M,38249999 +What is the hs code for AMISOL TRIO (TM) (BHN BAKU KOSMETIK) COA 2100014,38249999 +What is the hs code for CAPIXYL (TM) (BHN BAKU KOSMETIK) COA 830019573M,38249999 +What is the hs code for CAPIXYL (TM) (BHN BAKU KOSMETIK) COA 830019573M,38249999 +What is the hs code for CHRONOLINE (TM) (BHN BAKU KOSMETIK) COA 212000,39139090 +What is the hs code for CW-5C 5 PCT CLEAR (BHN BAKU KOSMETIK) COA 785019762M,38249999 +What is the hs code for LANABLUE (TM) PARABEN FREE (BHN BAKU KOSMETIK) COA 788029635M,38249999 +What is the hs code for LECIGEL (TM) (BHN BAKU KOSMETIK) COA 2125201,38249999 +What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019761M,38249999 +What is the hs code for ROSALITY (TM) (BHN BAKU KOSMETIK) COA 2110201,38249999 +What is the hs code for CW-5C 5 PCT CLEAR (BHN BAKU KOSMETIK) COA 785019762M,38249999 +What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1271142,38210090 +"What is the hs code for TRIPOTASSIUM CITRATE 1-HYDRATE, CRYST.,PH.EUR.10 ED.USP43 (BHN BAKU OBAT) COA 3112151",29181400 +What is the hs code for SERENOA REPENS PURIFIED EXT (BHN BAKU SUPLEMEN) COA 21S0078000,13021950 +What is the hs code for P.GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 21S0265500,13021990 +What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 20S0326000,13021950 +What is the hs code for ECHINACEA ANG.DRY PURIF.EX (BHN BAKU SUPLEMEN) COA 21S0155200,13021990 +What is the hs code for P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 21S0231200,13021990 +What is the hs code for PHASEOLUS VULGARIS DRY EXTRACT (BHN BAKU SUPLEMEN) COA 21S0215200,13021950 +"What is the hs code for PHASEOLUS VULGARIS DRY EXTRACT (BHN BAKU SUPLEMEN) COA 21S0215200, SAMPLE NO COMMERCIAL VALUE",13021950 +What is the hs code for CINNARIZINE (BHN BAKU OBAT) COA 021K039,29335990 +What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT21110015,29362100 +What is the hs code for GENIVIDA (TM) TG (BHN BAKU SUPPLEMEN) COA UT21100001,29329990 +What is the hs code for MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT21060027,29362500 +"What is the hs code for MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT21060027,UT21060028",29362500 +"What is the hs code for MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT21060028,UT21060029",29362500 +What is the hs code for MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT21060029,29362500 +What is the hs code for MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT21060029,29362500 +"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT21120037,UT21120038",29362100 +What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT21120038,29362100 +"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02103041,UE02103042,UE02103043",29362700 +"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ11016107,UQ11016108,UQ11016109",29362700 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU MAKANAN) COA UT21110213,UT21110214",29362100 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU MAKANAN) COA UT21110213,UT21110214,UT21110215",29362100 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT21050047,29362800 +What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) COA 201267,38249999 +What is the hs code for MIRANOL ULTRA C-32 MB 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP201002MB,34021990 +What is the hs code for GELOIL SC BF (BAHAN BAKU OBAT) COA 188249,28399000 +What is the hs code for EMULIUM MELLIFERA MB (BHN BAKU KOSMETIK) COA 187493,28399000 +What is the hs code for NABUMETONE USP (BAHAN BAKU OBAT) COA H-0690421,29145000 +What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 211224052,38249999 +What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) COA 201195,38249999 +What is the hs code for KSG-210 (16KG) (BHN BAKU KOSMETIK) COA 107050,38249999 +What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) COA 112896,38249999 +What is the hs code for IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S191/21,38029090 +"What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 11015,11020",38029090 +What is the hs code for WATERMELON HERBASOL (R) EXTRACT PG UNPRESERVED (BHN BAKU KOSMETIK) COA 121117,13021990 +What is the hs code for MIRANOL ULTRA C-32 MB 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP201002MB,34021990 +"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102102045",28183000 +What is the hs code for APIFILCAR (BHN BAKU OBAT) COA 183222,28399000 +What is the hs code for GELUCIRE 44/14 BF (BHN BAKU OBAT) COA 186547,28399000 +What is the hs code for TEFOSE 63 BF (BHN BAKU OBAT) COA 185821,28399000 +What is the hs code for LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 01/21GL4,28399000 +"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 01/21GL4, SAMPLE NO COMMERCIAL VALUE",28399000 +What is the hs code for LEMON SECRETS (LEMON 40° BRIX) (BHN BAKU KOSMETIK) COA 01/21GL4,28399000 +"What is the hs code for LEMON SECRETS (LEMON 40° BRIX) (BHN BAKU KOSMETIK) COA 01/21GL4, SAMPLE NO COMMERCIAL VALUE",28399000 +What is the hs code for ORIGINAL EXTRACT KIWI CSB (BHN BAKU KOSMETIK) COA 01/20GAAK,28399000 +"What is the hs code for ORIGINAL EXTRACT KIWI ECH (BHN BAKU KOSMETIK) COA 01/20GAAK, SAMPLE NO COMMERCIAL VALUE",28399000 +What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO BP (BHN BAKU KOSMETIK) COA 187350,28399000 +What is the hs code for TEFOSE 63 BF (BHN BAKU OBAT) COA 185821,28399000 +What is the hs code for AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 157743,15159011 +What is the hs code for EXTRAPONE (R) GINSENG (BHN BAKU KOSMETIK) COA 10300045,13021940 +What is the hs code for NEO EXTRAPONE (R) LEMON (BHN BAKU KOSMETIK) COA 10300017,13021950 +What is the hs code for EXTRAPONE (R) PEACH (BHN BAKU KOSMETIK) COA 10300035,13021950 +"What is the hs code for EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300057,10300058",13021950 +What is the hs code for SODIUM ACID PYROPHOSPHATE FOOD GRADE(BHN BAKU MAKANAN) COA 09220120,28353990 +What is the hs code for ORANGE EXTRACT (BHN BAKU KOSMETIK) COA 21120453,13021950 +What is the hs code for PRICKLY PEAR WATER DISTILLATE (BHN BAKU KOSMETIK) COA 21090619,33019090 +What is the hs code for GINKGO LEAVES EXTRACT (BHN BAKU KOSMETIK) COA 21120513,13021950 +What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052201,47063000 +What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052201,47063000 +What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-0781221,29334910 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP22014074,XP22014075,XP22014076,XP22014077",29211900 +"What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340330,B340351",29419000 +"What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334793,B334795",29419000 +"What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1071109,1257805",38210090 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1111125,38210090 +What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0283759,38210090 +What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1103620,38210090 +What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1131505,38210090 +What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1019654,38210090 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1188932,38210090 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1188091,38210090 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1272847,38210090 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1236408,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1257857,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1081518,38210090 +What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1159422,38210090 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1222962,38210090 +What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1229880,38210090 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1048445,38210090 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1327503,38210090 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1215026,38210090 +What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1138027,38210090 +"What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1088540,1243568",38210090 +What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1306190,38210090 +What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1133939,38210090 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1132546,38210090 +What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1243568,38210090 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1285540,38210090 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1222962,38210090 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1278356,38210090 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME) BATCH 1188091,38210090 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1215026,38210090 +What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1341761,38210090 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1215026,38210090 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1236393,38210090 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1145029,38210090 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1257917,38210090 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1145029,38210090 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1132546,38210090 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1257220,38210090 +What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1306190,38210090 +What is the hs code for L GLUTATHIONE REDUCED (BHN BAKU MAKANAN) COA B211173,29309090 +What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2355402,38210090 +What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1082038,38210090 +What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1082038,38210090 +What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1165061,38210090 +What is the hs code for BACTO CASAMINO ACIDS EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1082049,38210090 +"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000201106,0000201107",29362900 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU KOSMETIK) COA UT21020206,29362100 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060032,29420000 +What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92112233,29420000 +What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0921020022,29420000 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060032,29420000 +"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02101013,UE02102024",29362700 +What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0921020022,29420000 +What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0721010030,29420000 +"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050390,0321050394,0321050395",29420000 +"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050395,0321050396",29420000 +What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00731034,29420000 +"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040062,0221040083",29420000 +"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02010816,TL02102803",29362400 +What is the hs code for PARSOL ZX (BHN BAKU KOSMETIK) COA 190927012,29420000 +What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 2103114,38249999 +What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829019674N,38249999 +What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830011006M,38249999 +What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 211965,39139090 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2125203,38249999 +What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019761M,38249999 +What is the hs code for DEFENSCALP TM PF (BHN BAKU KOSMETIK) COA 785089070M,38249999 +What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 2103114,38249999 +What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830011006M,38249999 +What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 211965,39139090 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2125201,38249999 +What is the hs code for PROGELINE TM (BHN BAKU KOSMETIK) COA 203149R,39139090 +What is the hs code for ROSALITY TM (BHN BAKU KOSMETIK) COA 2110201,38249999 +What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029189M,39139090 +What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829019674N,38249999 +"What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-070921,SFP-N-011112",38249999 +What is the hs code for CATECHINS TEAVIGO 1 KG (BHN BAKU KOSMETIK) COA 109101,21012020 +What is the hs code for SORBITOL SOLUTION 70 PCT CRYSTALLINE (BHN BAKU KOSMETIK) COA 2122P579,29054400 +What is the hs code for IONOL (R) CP (BHN BAKU KOSMETIK) COA 01115721,29071900 +What is the hs code for HU IL-2 PE MQ1-17H12 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1180913,38210090 +What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1313171,38210090 +What is the hs code for BOTTLE LETHEEN BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1074476,38210090 +What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1313328,38210090 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1063145,38210090 +"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1341497,1341499",38210090 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1182099,38210090 +What is the hs code for STAIN BUFFER FBS 500ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0301684,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1201851,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1123223,38210090 +"What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1126127",38210090 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB21080247,29362800 +"What is the hs code for DRY VITAMIN A ACETATE 500 AF (BHN BAKU SUPLEMEN) COA WB21070034,WB21070043",29362100 +What is the hs code for NONIVAMIDE (SYNTHETIC CAPSAICIN) (BHN BAKU KOSMETIK) COA 20220109,29241990 +What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA EDS/CC0090B,29349990 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20220111,17029019 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20220111,17029019 +What is the hs code for MANGANESE (II)-SULFATE 1-HYDRATE ( BHN BAKU OBAT) COA 3109952,29181600 +What is the hs code for SODIUM ACETATE ANHYDROUS (BHN BAKU SUPPLEMEN) COA 3109952,29152910 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0053000,13021990 +What is the hs code for GINSENG DRY EXTR 2 PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0095200,13021990 +What is the hs code for GINSENG DRY EXTR 2 PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0095300,13021990 +What is the hs code for GINSENG DRY EXTR 2 PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0108900,13021990 +What is the hs code for GINSENG DRY EXTR 2 PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0109000,13021990 +What is the hs code for PERMETHRIN (PHARMA GRADE) BHN BAKU OBAT COA PMT/016/2021,29163990 +What is the hs code for KETOPROFEN (BHN BAKU OBAT) COA 199282,29183000 +"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/01/050122,070122,080122,090122,100122",29420000 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO220101,38249999 +What is the hs code for COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) COA ANTS210201,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS220101,38249999 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210802,13021990 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220101,13021990 +What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM220101-PGH,38249999 +What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM210602-PGH,38249999 +What is the hs code for WITCH HAZEL ORGANIC DISTILLATE 1:10 (SB) (BHN BAKU KOSMETIK) COA HAVD220101-BIO,38249999 +What is the hs code for LOTUS FROM VIETNAM ORGANIC OILY EXTRACT (BHN BAKU KOSMETIK) COA NEN220101-HBIO,38249999 +"What is the hs code for MIAMI SCG(S) (BHN BAKU KOSMETIK) COA 22012455,22012555",34021190 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA GAJ,38249999 +What is the hs code for PROMOIS EK-118 (IN) (BHN BAKU KOSMETIK) COA GAW,38249999 +What is the hs code for LIDOCAINE BASE (BHN BAKU OBAT) COA 198951,29242990 +What is the hs code for LIDOCAINE HCL (BHN BAKU OBAT) COA 198439,29242990 +What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) COA 7766043,38249999 +What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA F00271UP,29053200 +What is the hs code for MATCHA ( BHN BAKU KOSMETIK) COA CSP 21010 EOU,38249999 +"What is the hs code for PHENOXY ETHANOL PR (BHN BAKU KOSMETIK) COA 748640,747924",29094900 +What is the hs code for ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH655369,39061090 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH654377,38249999 +What is the hs code for OPADRY AMB MAROON (BHN BAKU PEWARNA TABLET) COA SH654378,38249999 +What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH654379,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH653955,38249999 +What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH654380,39061090 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH654381,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH654944,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH654945,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH653834,39061090 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH654382,38249999 +What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH654423,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH654383,38249999 +What is the hs code for OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH654384,38249999 +What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH654385,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH654419,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH654412,38249999 +What is the hs code for OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH654386,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH654387,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH654388,38249999 +What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH654421,39061090 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH654422,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH654424,38249999 +What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH654390,38249999 +What is the hs code for ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH654413,39061090 +What is the hs code for PIGMENT BLEND BROWN (BHN BAKU PEWARNA TABLET) COA SH654414,32151900 +What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH654415,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH654391,38249999 +What is the hs code for PIGMENT BLEND GREEN (BHN BAKU PEWARNA TABLET) COA SH654416,32151900 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH653834,39061090 +What is the hs code for FD&C YELLOW #6/SUNSET YELLOW .... (BHN BAKU PEWARNA TABLET) COA WP850543:BB2569,32151900 +What is the hs code for FD&C YELLOW #5/TARTRAZINE AL ... (BHN BAKU PEWARNA TABLET) COA WP844301:BA9666,32151900 +What is the hs code for D&C YELLOW #10 AL 15 PCT - 20 PCT... (BHN BAKU PEWARNA TABLET) COA WP844757:BB0004,32151900 +What is the hs code for D&C YELLOW #10 AL 15 PCT - 20 PCT (BHN BAKU PEWARNA TABLET) COA WP844757:BB0004,32151900 +What is the hs code for ERYTHROSINE AL 38 PCT - 42 PCT (BHN BAKU PEWARNA TABLET) COA WP844563:1,32151900 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH654410,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH654941,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH654943,38249999 +What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 212686,13021990 +What is the hs code for BURGEON-UP (HS) (BAHAN BAKU KOSMETIK) COA 220332,13021990 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 213064,38249999 +"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102102045,102102048",28183000 +"What is the hs code for OMEPRAZOLE SODIUM STERILE (BAHAN BAKU OBAT) COA SI/OPZ/00050122,00060122,00070122,00080122",29333990 +What is the hs code for SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 2108502980,29322090 +What is the hs code for ANTIOXIDANT PREMIX FOR GUMMY (BHN BAKU MAKANAN) COA XW92201201,21069059 +What is the hs code for VIUSID VET POWDER @1 KG (PAKAN IKAN BERBENTUK BUBUK) COA X-3,23099090 +What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) (BHN BAKU OBAT) COA 4454086968,39139090 +What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA B200300,29419000 +What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK) COA LDC2622T,27101990 +What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-050211,38249999 +What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE (MMW) (BHN BAKU KOSMETIK) COA CHP1220208,39139090 +What is the hs code for HYUNDAI BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK) COA CPG-020612,38249999 +"What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 120821,012022",28321000 +What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 011922,28321000 +What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-010322,13021990 +What is the hs code for HYUNDAI BIOLAND GREEN TEA SEED OIL (BHN BAKU KOSMETIK) COA CSSO-022701,13021950 +What is the hs code for MONOPROPYLENE GLYCOL (BHN BAKU KOSMETIK) COA PG(S)220116,29053200 +What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1271142,38210090 +"What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01D322M,B01D344M",38210090 +What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B04D349M,38210090 +What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B04D349M,38210090 +What is the hs code for DROPPER DMACA INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02D274M,38210090 +What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB21120305,29362100 +What is the hs code for IVY DRY HYDR EXTR 10PCT HPLC (BAHAN BAKU SUPLEMEN) COA 21B0077400,13021990 +What is the hs code for VALERIAN D.H.E> 0.8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 21B0128700,13021990 +What is the hs code for VALERIAN D.H.E> 0.8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 21B0128700,13021990 +What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180LAV001,39123900 +What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180LB4002,39123900 +What is the hs code for SENTRY POLYOX WSR 303 LEO NF (DUPONT/IFF) BHN BAKU PEWARNA TABLET) COA D682L7ERR3,39123900 +What is the hs code for HPA PURE SENSITIVE HALAL P116 13 (BHN BAKU KOSMETIK) COA 3256356,33029000 +What is the hs code for PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3264337,33029000 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS220101,38249999 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220101,13021990 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220101,13021990 +What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM220101-PGH,38249999 +What is the hs code for WITCH HAZEL ORGANIC DISTILLATE 1:10 (BHN BAKU KOSMETIK) COA HAVD220101-BIO,38249999 +What is the hs code for HEBELYS (BHN BAKU KOSMETIK) COA SPHC210301-Z100,38249999 +What is the hs code for INCA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK) COA II211214-AI-D-BIO,38249999 +What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA211204,38249999 +What is the hs code for SAFFLOWER REFINED OIL (BHN BAKU KOSMETIK) COA CARHR211109-DW,38249999 +What is the hs code for CHAMOMILLE COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO210603,38249999 +What is the hs code for CHAMOMILLE COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO220202,38249999 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220101,13021990 +What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM220101-PGH,38249999 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO220101,38249999 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO220202,38249999 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO220202,38249999 +"What is the hs code for OPACODE S-1-12052 (BHN BAKU PEWARNA TABLET) COA TKL60936, SAMPLE NO COMMERCIAL VALUE",32151900 +"What is the hs code for OPACODE S-1-277001 BLACK (BHN BAKU PEWARNA TABLET) COA TKL61044, SAMPLE NO COMMERCIAL VALUE",32151900 +What is the hs code for METRONIDAZOLE BENZOATE EP (BHN BAKU OBAT) COA MBO/12010064,29332900 +What is the hs code for DL-TARTARIC ACID (BHN BAKU MAKANAN) COA RS01566,29181200 +What is the hs code for TITANIUM DIOXIDE 3100 (BHN BAKU MAKANAN) COA 2201216,32061110 +What is the hs code for CROPOVIDONE XL (BHN BAKU OBAT) COA PP220125XL,39059990 +What is the hs code for POVIDONE K-30 (BHN BAKU OBAT) COA PK30-220120F33,39059990 +What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105714621,17021100 +"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT21070034,UT22010039",29362100 +What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02201488,29362700 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02201001,32041900 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPPLEMEN) COA UT21120028,32041900 +What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT21100013,29420000 +What is the hs code for OPTISHARP NAT. ZEA. 14PCT SAFF (BHN BAKU SUPPLEMEN) COA 2111101944,32041900 +What is the hs code for SYN(R)-AKE (BHN BAKU KOSMETIK) COA UE02112512,29420000 +What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ10917008,29420000 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP01322,28363000 +What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 2AX2202018,29181400 +What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH655220,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH655220,38249999 +What is the hs code for OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA SH655209,38249999 +What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB21120305,29362100 +What is the hs code for KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 20/05/2021,25070000 +"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA357213,ROA355216,ROA272216,...",28363000 +"What is the hs code for SODIUM ASCORBATE 99PCT TG (BHN BAKU SUPLEMEN) COA WB22010568,WB22010571",29362700 +What is the hs code for METHISOPRINOL (BHN BAKU OBAT) COA MTP220031,29349990 +"What is the hs code for LEVOFLOXACIN HEMIHYDRATE USP (BHN BAKU OBAT) COA LF20090029,LF20110044",29349990 +What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M -31.0 PCT (BHN BAKU OBAT) COA 102129053,28161000 +What is the hs code for OPADRY AMB II CLEAR (BHN BAKU PEWARNA TABLET) COA SH655212,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656054,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656031,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656055,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656057,38249999 +What is the hs code for OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH656043,38249999 +What is the hs code for OPADRY SGR RED (BHN BAKU PEWARNA TABLET) COA GA703502,38249999 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPPLEMEN) COA UT22010003,29362800 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT21070181,29362400 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11211022,29362500 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12111013,29362900 +What is the hs code for DRY VITAMIN E 50 PCT CWS/S (BHN BAKU MAKANAN) COA UE02110272,29362800 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12111013,29362900 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12111013,29362900 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11211022,QZ11211024",29362500 +What is the hs code for DRY VITAMIN E 50 PCT CWS/S (BHN BAKU SUPLEMEN) COA UT21080042,29362800 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT21090088,29362800 +"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ10910764,UQ10910765",29362300 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL02108764,29362400 +What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12111013,29362900 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ11113682,29362500 +What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3 PCT (BHN BAKU SUPLEMEN) COA WB21050065,29362500 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ10212048,29362200 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU SUPLEMEN) COA UT21030210,29362100 +What is the hs code for B-CAROTENE 10 PCT CWS (BHN BAKU SUPLEMEN) COA UT21100054,32041900 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ10212048,29362200 +"What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT21050015,UT20120055",32041900 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ11113682,29362500 +What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2103027,29362300 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ10913312,29362200 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT21100054,32041900 +What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL02110668,29362700 +"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3 PCT (BHN BAKU SUPLEMEN) COA WB21050082,WB00519051",29362200 +What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT21110243,29362400 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3 PCT (BHN BAKU SUPLEMEN) COA WB21060056,29362300 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT21090031,29362900 +What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL02111128,29362400 +What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL02111128,29362400 +What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL02111128,29362400 +What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL02111128,29362400 +What is the hs code for VITAMIN B12 0.1 PCT WS (BHN BAKU MAKANAN) COA UT21070014,29362600 +What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000199646,29362900 +What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000200423,29362900 +"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02109787,TL02108768,TL02108771",29362400 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21070150,29362900 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21070150,29362900 +What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92112345,21069059 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU MAKANAN) COA WB21060056,29362300 +"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3 PCT (BHN BAKU MAKANAN) COA WB21050080,WB21050082",29362200 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02109104,29362400 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21110383,29362800 +"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02103036,UE02103039",29362700 +What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES2109599,29420000 +What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040083,29420000 +"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050398,0321050399",29420000 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210027,0708210037,0708210038,0708210039,0708210047,...",29420000 +What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001624174,29420000 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060001,29420000 +What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS2100821,29420000 +"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02102803,TL02106807",29362400 +What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02106807,29362400 +What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0421040061,29420000 +What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0038741,29362500 +What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0038741,29362500 +What is the hs code for METHYLCOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/1121053,29362600 +What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBNB220092,29221990 +What is the hs code for MAPROTILINE HCL (BHN BAKU OBAT) COA 2150003373,29214900 +What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) COA 321CAA0017,38249999 +What is the hs code for JAGUAR HP 105 SGI (BHN BAKU KOSMETIK) COA H2110217D,38249999 +What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 201172,38249999 +What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) COA 202268,38249999 +What is the hs code for KSG-15 (16KG) (BHN BAKU KOSMETIK) COA 112540,38249999 +What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 201172,38249999 +What is the hs code for KSG-15 (16KG) (BHN BAKU KOSMETIK) COA 112542,38249999 +"What is the hs code for MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL220214,MCCPOL220217",29094900 +What is the hs code for ETHOCEL STANDARD 14 PREMIUM ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D184K5S021,39123900 +What is the hs code for ETHOCEL STANDARD 14 PREMIUM ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D184K5S021,39123900 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SJG,38249999 +"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SJG,SHF",38249999 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA GAK,38249999 +What is the hs code for PROMOIS WS (BHN BAKU KOSMETIK) COA GAG,38249999 +What is the hs code for OPACODE BLACK (BHN BAKU PEWARNA TABLET) COA DT724193,32151900 +What is the hs code for NUTRAFINISH TIO2 FREE YELLOW (BHN BAKU PEWARNA TABLET) COA DT725355,38249999 +"What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 22100033,22100038",29221990 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA MTP01322,28363000 +What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED (BHN BAKU PAKAN TERNAK) COA MTP00622,28363000 +What is the hs code for SERENOA REPENS PURIFIED EXT (BHN BAKU SUPLEMEN) COA 21S0178200,13021950 +What is the hs code for CURCUMA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 22S0007005,13021950 +What is the hs code for GREEN TEA DRY DEC.EX./PHOSPHOL (BHN BAKU SUPLEMEN) COA 19S0269705,13021950 +What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU KOSMETIK) COA 21S0135500,13021950 +"What is the hs code for DEFERASIROX (BHN BAKU OBAT) COA DF20122005,DF20122006",29339990 +What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE02202002,29362100 +What is the hs code for OPTISHARP NAT. ZEA 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA EW21065009,32041900 +What is the hs code for FLORAGLO(R) LUTEIN 20PCT SAF (BHN BAKU SUPLEMEN) COA UE02112037,32030010 +What is the hs code for CAROCARE NAT. BC 20PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA EW22012005,32041900 +What is the hs code for FLORAGLO (R) LUTEIN 20 PCT SAF (BHN BAKU SUPLEMEN) COA UE02112037,32030010 +"What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT21120058,UT22020059",29362100 +What is the hs code for BETAMETHASONE VALERATE USP (BHN BAKU OBAT) COA APL/BV/01022/A-22,29372200 +What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 212642,13021990 +"What is the hs code for ACNE BUSTERS (BHN BAKU KOSMETIK) COA 213040,220167",38249999 +What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 212631,13021990 +What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 212713,13021990 +What is the hs code for DOKUDAMI LIQUID B (BHN BAKU KOSMETIK) COA 212754,13021990 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 220149,38249999 +What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 212713,13021990 +What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 212202,13021990 +"What is the hs code for ACNE BUSTERS (BHN BAKU KOSMETIK) COA 220167,220394",38249999 +"What is the hs code for PARACETAMOL USP (BHN BAKU OBAT) COA 202112094A,202112095A,202112096A",29242930 +What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122101487,28363000 +What is the hs code for ETHOCEL STANDARD 14 PREMIUM ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D184K5S021,39123900 +What is the hs code for PRECIROL ATO 5 CAR (BHN BAKU OBAT) COA 187267,28399000 +What is the hs code for COMPRITOL 888 ATO CAR (BHN BAKU OBAT) COA 187660,28399000 +What is the hs code for GELUCIRE 48/16 PELLETS CAR (BHN BAKU OBAT) COA 185000,28399000 +What is the hs code for CETYL PALMITATE PELLETS CAR (BHN BAKU OBAT) COA 185624,28399000 +What is the hs code for EMULCIRE 61 WL 2659 CAR (BHN BAKU OBAT) COA 187386,28399000 +What is the hs code for COMPRITOL 888 PELLETS CAR (BHN BAKU OBAT) COA 21E2404,28399000 +What is the hs code for FD&C YELLOW 6/SUNSET YELLOW .... (BHN BAKU PEWARNA TABLET) COA WP848265:BB2299,32151900 +What is the hs code for FD&C YELLOW 5/TARTRAZINE AL ... (BHN BAKU PEWARNA TABLET) COA WP844301:BA9667,32151900 +What is the hs code for D&C YELLOW 10 AL 15 PCT - 20 PCT... (BHN BAKU PEWARNA TABLET) COA WP844757:BB0004,32151900 +What is the hs code for FD&C BLUE 2/INDIGO CARMINE AL... (BHN BAKU PEWARNA TABLET) COA WP847583:BB1665,32151900 +What is the hs code for METHOCEL E15 PREMIUM LV HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D011K7KL01,39123900 +What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D011L4SL02,39123900 +What is the hs code for METHOCEL A15 PREMIUM LV METHYLCELLULOSE... (BHN BAKU PEWARNA TABLET) COA D180L6S021,39123900 +What is the hs code for METHOCEL A15 PREMIUM LV METHYLCELLULOSE...(BHN BAKU PEWARNA TABLET) COA D180L6S021,39123900 +What is the hs code for METHOCEL A15 PREMIUM LV METHYLCELLULOSE... (BHN BAKU PEWARNA TABLET) COA D180L4I022,39123900 +What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180K61001,39123900 +What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D011L4SL02,39123900 +What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180L96001,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180KBO002,39123900 +"What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 03850222,03870222,03900222,03920222,....",29359000 +What is the hs code for MATCHA ( BHN BAKU KOSMETIK) COA CSP 21012 EOU,38249999 +What is the hs code for COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-2107125,29146200 +What is the hs code for PRAYPHOS DKP FG 25K BG (BHN BAKU KOSMETIK) COA 2134631,28352400 +What is the hs code for MONOPOT PHOS MKP FG 25K BG (BHN BAKU KOSMETIK) COA 22-004-01,29420000 +What is the hs code for PREDNISOLONE USP42 (BHN BAKU OBAT) COA XPL220203,29372100 +"What is the hs code for PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M598110,M598112",29411019 +"What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M535251 S/D M535252,M535255 S/D M535262,...",29411019 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT21100378,29362800 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ11113366,29362200 +What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW92112204,21069059 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02102011,29362900 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02109790,29362400 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT21100378,29362800 +What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB21050065,29362500 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02102011,29362900 +What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000200423,29362900 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT21100211,29362400 +What is the hs code for PX 204005 (BHN BAKU MAKANAN) COA XW92202066,21069059 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPPLEMEN) COA UT21090088,29362800 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPPLEMEN) COA UT21090088,29362800 +What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2103027,29362300 +What is the hs code for MINERAL PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92202061,21069059 +What is the hs code for MINERAL PREMIX HBS08022019 (BHN BAKU MAKANAN) COA XW92202068,21069059 +"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000201728,0000201729",29362900 +What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000201729,29362900 +"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000201341,0000201726,0000201728",29362900 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21100378,29362800 +What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF21092006,29420000 +"What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20211111,20211203",17029019 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02111078,32041900 +What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT21100013,29420000 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL02112207,TL02112215,TL02112226,TL02112234",29362700 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02111077,32041900 +"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPPLEMEN) COA UT21070071,UT21070072,UT21070076",29362800 +"What is the hs code for COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPPLEMEN) COA TL02112175",29362700 +What is the hs code for DL-A-TOCOPHEROL (POST BORDER) COA UT21060056,29362800 +What is the hs code for LIFE'S DHA S35-O100 (BHN BAKU SUPLEMEN) COA VY00383114,29362500 +What is the hs code for LIFE'SDHA(TM) S35-O300 (BHN BAKU SUPLEMEN) COA VY00434705,29362500 +What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 211059200,38210090 +"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)COA 1103638,1271809",38210090 +What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1250282,38210090 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1235731,38210090 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1264648,38210090 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1271813,38210090 +What is the hs code for BOTTLE NUTRIENT AGAR W/MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0063506,38210090 +What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1320085,38210090 +What is the hs code for BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9337678,38210090 +What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0062865,38210090 +What is the hs code for BOTTLE AGAR NOBLE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1223649,38210090 +What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1187914,38210090 +"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1181376,1243543",38210090 +What is the hs code for BOTTLE SODIUM DESOXYCHOLATE 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1110014,38210090 +What is the hs code for BOTTLE TODD HEWITT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1285594,38210090 +What is the hs code for GASPAK EZ STANDARD INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH7365056010,38210090 +What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1312204,38210090 +What is the hs code for BOTTLE ISP MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1319645,38210090 +What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1357833,38210090 +What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1159422,38210090 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1285540,38210090 +What is the hs code for BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1229957,38210090 +What is the hs code for BOTTLE M-PA-C AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1306276,38210090 +What is the hs code for BOTTLE M-PA-C AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1306276,38210090 +What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2010438,38210090 +What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2011124,38210090 +"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0343102,1257917",38210090 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1341759,38210090 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1222962,38210090 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1173666,38210090 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0286569,38210090 +What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1250282,38210090 +"What is the hs code for BOTTLE TAT BROTH BASE 500 G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1235731,1349644",38210090 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1349557,38210090 +"What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1320239,1357833",38210090 +What is the hs code for LOOPS INOCULATING 10/TUBE 10 MICROLITER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2102599,38210090 +What is the hs code for BOTTLE POLYSORBATE 80 100G 1 EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 1340021,38210090 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1278356,38210090 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01E012M,38210090 +What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 1355318,38210090 +What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1356186,38210090 +What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B04D349M,38210090 +What is the hs code for BOTTLE SELENITE CYSTINE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1081607,38210090 +What is the hs code for PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M598155,29411019 +"What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M535317,M535340,M535341,M535360,M535362,...",29411019 +What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU PAKAN TERNAK) COA 202100643,28183000 +What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU PAKAN TERNAK) COA 202100644,28183000 +What is the hs code for SORBITOL SOLUTION 70 PCT CRYSTALLINE (BHN BAKU KOSMETIK) COA 2122P654,29054400 +What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-220212,29061300 +What is the hs code for PHENOXY ETHANOL PR (BHN BAKU KOSMETIK) COA 748640,29094900 +What is the hs code for GALAXY 610 EHS MB (ETHYLENE GLYCOL DISTEARATE) (BHN BAKU KOSMETIK) COA 748872,34049090 +"What is the hs code for ACRYPOL 980 (20KG) (BAHAN BAKU KOSMETIK) COA 11521062,1151063,11521064",39069099 +"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 170821,010821,200521",25070000 +What is the hs code for EMULIUM MELLIFERA MB CAR (BHN BAKU KOSMETIK) COA 187898,28399000 +What is the hs code for EMULIUM MELLIFERA MB CAR (BHN BAKU KOSMETIK) COA 187898,28399000 +What is the hs code for LABRAFIL M 1944 CS BF (BHN BAKU SUPPLEMEN) COA 187197,28399000 +What is the hs code for TEFOSE 63 BF (BHN BAKU SUPPLEMEN) COA 185821,28399000 +What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512137,47069200 +What is the hs code for MEG-3 3020 EE P OIL (BHN BAKU SUPPLEMEN) COA TS00018481,29362500 +"What is the hs code for GUAIFENESIN USP 42 (B. BAKU OBAT) COA GGE-2201019 S/D GGE-2201023,GGE-2202024 S/D GGE-2202032",29094900 +What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-020422,13021990 +"What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-173011,OHA-022122",39139090 +What is the hs code for HYUNDAI BIOLAND ALOE EXTRACT (BHN BAKU KOSMETIK) COA AAL-CR-061901,13021990 +What is the hs code for HYUNDAI BIOLAND DM 3 COMPLEX (BHN BAKU KOSMETIK) COA ANFE-011401,13021990 +What is the hs code for HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-051201,13021990 +What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-042001,29224900 +What is the hs code for HYUNDAI BIOLAND CACTUS EXTRACT (BHN BAKU KOSMETIK) COA CAB-052921,13021990 +What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-082821,13021990 +What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 011922,28331900 +What is the hs code for HYUNDAI BIOLAND TEA TREE EXTRACT (BHN BAKU KOSMETIK) COA MASL-031381,13021990 +What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (B) (BHN BAKU KOSMETIK) COA AMIBD-011012,29224900 +What is the hs code for HYUNDAI BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK) COA NMSP-D-010612,39139090 +"What is the hs code for HYUNDAI BIOLAND SENAS (BHN BAKU KOSMETIK) COA NASB-031281,NASB-011122",21022090 +What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 012022,28331900 +What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 011922,28331900 +What is the hs code for ROSUVASTATIN CALSIUM (BHN BAKU OBAT) COA M325218,29359000 +"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB21090600,WB21100603",29362100 +"What is the hs code for TSPL-30-ID (1KG) (BHN BAKU KOSMETIK) COA 106015,202016",38249999 +"What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP01522,MTP01322",28363000 +What is the hs code for BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP01422,28363000 +"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102202002",28183000 +"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102102059,102202002",28183000 +"What is the hs code for FERROUS GLUCONATE, POWDER, USP 43 (BHN BAKU SUPLEMEN) COA 3112011",29181600 +"What is the hs code for ZINC SULFATE 1-HYDRATE, POWDER, USP 43 (BHN BAKU SUPLEMEN) COA 3109231",28332920 +"What is the hs code for FERROUS SULFATE, DRIED, POWDER, USP 43 (BHN BAKU SUPLEMEN) COA 3110130,3110345",28332920 +What is the hs code for TRIPOTASSIUM CITRATE 1-HYDRATE (BHN BAKU SUPLEMEN) COA 3112473,29181400 +"What is the hs code for MAGNESIUM OXIDE, LIGHT, POWDER, BP 2021 (BHN BAKU SUPLEMEN) COA 3102783-3",25199010 +"What is the hs code for ZINC SULFATE 1-HYDRATE, POWDER, USP 43 (BHN BAKU SUPLEMEN) COA 3111493",28332920 +"What is the hs code for ZINC SULFATE 1-HYDRATE, POWDER, USP 43 (BHN BAKU SUPLEMEN) COA 3111493",28332920 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH655370,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH655257,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH654941,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH655239,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH655203,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH655195,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH655471,39061090 +What is the hs code for ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH655205,39061090 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH655373,39061090 +What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH655314,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH655207,38249999 +What is the hs code for OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH655099,38249999 +What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH655221,39061090 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH655211,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH655211,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH655197,38249999 +What is the hs code for OPADRY AMB II CLEAR (BHN BAKU PEWARNA TABLET) COA SH655212,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH655198,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH655199,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH655213,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH655267,38249999 +What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH655214,38249999 +What is the hs code for OPADRY AMB II BROWN (BHN BAKU PEWARNA TABLET) COA SH655231,38249999 +What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH655230,38249999 +What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH655216,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH655200,38249999 +What is the hs code for ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH655201,39061090 +What is the hs code for ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH655205,39061090 +What is the hs code for NABUMETONE USP (BAHAN BAKU OBAT) COA H-0070122,29145000 +What is the hs code for MIRANOL ULTRA C-32 MB 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP111689MB,34021990 +"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1341497,1341499",38210090 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1182099,38210090 +What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1309681,38210090 +What is the hs code for HU CD3 FITC HIT3A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2019528,38210090 +What is the hs code for HU TH1/TH2/TH17 CBA KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1342605,38210090 +"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1200457,...",38210090 +What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1313328,38210090 +"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1309681,1341499,..",38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1063138,38210090 +What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1153205,38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0128385,38210090 +What is the hs code for VIAL TTC SOLUTION 1PCT 1X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1315600,38210090 +What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2417191,38210090 +What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1165061,38210090 +What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0216774,38210090 +What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1228035,38210090 +What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1215964,38210090 +What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2417191,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2305552,38210090 +What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1165061,38210090 +What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1153097,38210090 +What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1153097,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1046610,38210090 +What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) COA 321CAA0018,38249999 +"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 27-08-21,23-08-21,25-08-21,27-09-21,26-08-21,...",38029090 +What is the hs code for BETATAB 20PCT (BHN BAKU SUPLEMEN) COA UT21120028,32041900 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT22020063,29362100 +"What is the hs code for COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPLEMEN) COA TL02201494",29362700 +What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22020040,29362100 +"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA353215,ROA352213,ROA350216,ROA...",28363000 +What is the hs code for SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202202-025,35040000 +What is the hs code for POMEGRANATE OF ACORES HYDROGLYCERINED EXTRACT (BHN BAKU KOSMETIK) COA PUGA220102-GL,38249999 +What is the hs code for GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK) COA EG209-220201,13021990 +What is the hs code for KELCOGEL CG-HA [E] (BAHAN BAKU KOSMETIK) COA 1C8420A,38249999 +"What is the hs code for SENSIVA SC 50 CAN 10KG (BHN BAKU KOSMETIK) COA 1577257,1577808",38249999 +What is the hs code for SENSIVA SC 50 CAN 10KG (BHN BAKU KOSMETIK) COA 1577808,38249999 +"What is the hs code for EUXYL K 100 CAN 10 KG (BHN BAKU KOSMETIK) COA 1570899,1570948",38249999 +What is the hs code for EUXYL K 712 CAN 10KG (BHN BAKU KOSMETIK) COA 1577056,38249999 +What is the hs code for EUXYL PE 9010 CAN 10KG (BHN BAKU KOSMETIK) COA 1576482,38249999 +What is the hs code for SENSIDIN DO CAN 10KG (BHN BAKU KOSMETIK) COA 1572632,38249999 +What is the hs code for EUXYL K 720 CAN 10KG (BHN BAKU KOSMETIK) COA 1576441,38249999 +What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M-31.0PCT (BHN BAKU OBAT) COA 102129053,28161000 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN546300,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN546298,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN546299,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN546284,35051010 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH656773,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH656545,39061090 +What is the hs code for TRISODIUMCITRATE DIHYDRATE FINE GRANULAR (BHN BAKU MAKANAN) COA UJ201,29181400 +What is the hs code for PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 080321/007122,38249999 +What is the hs code for 985-L-MENTHOL CRYSTALS INDIAN NATURAL (BHN BAKU KOSMETIK) COA NFPL/MEN/21/021,29061100 +What is the hs code for STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN545484,35051010 +What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M-31.0PCT (BHN BAKU OBAT) COA 102129049,28161000 +What is the hs code for LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 02/21GL4,28399000 +"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 02/21GL4, SAMPLE NO COMMERCIAL VALUE",28399000 +"What is the hs code for FERROUS GLUCONATE, POWDER, USP 43 (BHN BAKU SUPLEMEN) COA 3089085",29181600 +"What is the hs code for FERROUS GLUCONATE, POWDER, USP 43 (BHN BAKU SUPLEMEN) COA 3114276",29181600 +What is the hs code for PEARL ESSENCES 35031MJ (BHN BAKU KOSMETIK) COA D2010841,32061910 +What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2022021502,21012020 +What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2022021502,21012020 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT22010002,29362800 +What is the hs code for VITAMIN PREMIX 103093 - A (BHN BAKU MAKANAN) COA XW92202067,21069059 +What is the hs code for PX TRS1 WITHOUT K1 (BHN BAKU MAKANAN) COA XW92202075,21069059 +"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12111015,OP12111016",29362900 +What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12111015,29362900 +"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21100060,UT21100067",29362800 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPPLEMEN) COA UQ11113356,29362200 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT21100037,29362100 +"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2103027,UEB2103028,UEB2103030,...",29362300 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPPLEMEN) COA UQ11113356,29362200 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT21100037,29362100 +"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2103031,UEB2103032,UEB2103029,...",29362300 +What is the hs code for VITAMIN PREMIX MENGNIU UHT MILK (POST BORDER) COA XW92202044,21069059 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ11010766,29362300 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT21100378,29362800 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT21100037,29362100 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT21090027,29362100 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT21100058,32041900 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT21100058,32041900 +What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12111016,29362900 +What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPPLEMEN) COA TL02111883,29362700 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02109791,29362400 +What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB21050065,29362500 +What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21110243,29362400 +What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21110243,29362400 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ11113684,29362500 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT21100151,29362900 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT21100151,29362900 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT21070022,29362600 +What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040009,29362900 +What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040009,29362900 +What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040009,29362900 +What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92202076,21069059 +What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92202079,21069059 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ11113356,29362200 +What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92202077,21069059 +What is the hs code for VITAMIN PREMIX MENGNIU UHT MILK (POST BORDER) COA XW92202044,21069059 +What is the hs code for VITAMIN PREMIX MENGNIU UHT MILK (BHN BAKU MAKANAN) COA XW92202294,21069059 +"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050410,0321050411,0321050412,0321050414,0321050604,...",29420000 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02109104,29362400 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA QZ11211025,29362500 +What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00734475,29420000 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02106017,29362900 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02106017,29362900 +What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0038741,29362500 +What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0921020021,29420000 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02109104,29362400 +What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02103039,29362700 +"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050606,0321050607,0321050608,0321050609,0321050610,...",29420000 +"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0921020021,0921020022",29420000 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210031,0708210049,0708210050,0708210051,0708210052,...",29420000 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21110383,29362800 +What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180LB6003,39123900 +What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180LB4002,39123900 +"What is the hs code for FENTACARE 2231 EF 25KG PAPER BOX (BHN BAKU KOSMETIK )COA ZH22B1205,ZH22B2408",34029019 +What is the hs code for SUNTHEANINE (L-THEANINE) (BHN BAKU MAKANAN) COA 111082,13021950 +What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180LBS00A,39123900 +What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180LBR00C,39123900 +What is the hs code for MIRASIL CM5 L (BHN BAKU KOSMETIK) COA 2208WKQA15,29319049 +What is the hs code for DEXAMETHASONE ACETATE ANHYDROUS MICRONISED PH.EUR.USP (BHN BAKU OBAT) COA 2104333520,29372200 +"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-0150222,S-A-0160222,S-A-0190222",29334910 +What is the hs code for TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA S7227,29225090 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS220101,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS220202,38249999 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220101,13021990 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220302,13021990 +What is the hs code for WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK) COA EG138-210901,38249999 +What is the hs code for ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (SB) (BHN BAKU KOSMETIK) COA ROSD220101-BIO,38249999 +What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM220101-PGH,38249999 +What is the hs code for RICE MILK AQUEOUS EXTRACT (SB) (BHN BAKU KOSMETIK) COA ORSL210101-AQ,38249999 +What is the hs code for PAPAIN POWDER (BHN BAKU KOSMETIK) COA PAP220101-GC2,38249999 +What is the hs code for ACTIPONE (R) GINGER JUICE (ORGANIC) GW (BHN BAKU KOSMETIK) COA 10300017,13021950 +What is the hs code for EXTRAPONE (R) MANGO B (BHN BAKU KOSMETIK) COA 10300039,13021950 +What is the hs code for ACTIPONE (R) WHITE TEA GW (BHN BAKU KOSMETIK) COA 10300049,13021950 +What is the hs code for GRANULAC 230 (BHN BAKU OBAT) COA L101875221,17021100 +What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2417191,38210090 +What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1229742,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0343138,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1046607,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0265643,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0300725,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1071038,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1071038,38210090 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP01322,28363000 +"What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP04222,MTP03222",28363000 +"What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP04222,MTP03222, SAMPLE....",28363000 +"What is the hs code for SODIUM FEREDETATE, POWDER, BP2021 (BHN BAKU OBAT) COA 3111933",29224900 +"What is the hs code for OMEPRAZOLE SODIUM STERILE (BAHAN BAKU OBAT) COA SI/OPZ/00090222,00100222,00110222,00120222",29333990 +What is the hs code for SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0147800,13021950 +What is the hs code for SILYMARIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0131900,13021950 +What is the hs code for BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 21S0317200,13021990 +What is the hs code for BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 21S0279100,13021990 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP22013208,XP22013209,XP22013210,XP22013211",29211900 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH655876,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH655877,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH655913,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH655878,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH655328,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH656174,38249999 +What is the hs code for OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH655910,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH656509,38249999 +What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH655899,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH655908,38249999 +What is the hs code for OPADRY TF WHITE (BHN BAKU PEWARNA TABLET) COA SH656377,38249999 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP05122,28363000 +What is the hs code for BICAR FOOD 27/50 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP06122,28363000 +What is the hs code for OPADRY ORANGE (BHN BAKU PEWARNA TABLET) COA GA703499,38249999 +What is the hs code for OPADRY SGR TRANSLUCENT (BHN BAKU PEWARNA TABLET) COA GA703500,38249999 +What is the hs code for OPADRY SGR CLEAR (BHN BAKU PEWARNA TABLET) COA GA703722,38249999 +What is the hs code for OPADRY SGR RED (BHN BAKU PEWARNA TABLET) COA GA703502,38249999 +What is the hs code for OPADRY SGR RED (BHN BAKU PEWARNA TABLET) COA GA704687,38249999 +What is the hs code for SKINECTURA TM (BHN BAKU KOSMETIK) COA 220222,13021990 +What is the hs code for OILESS CITY TM (BHN BAKU KOSMETIK) COA 211115,13021990 +What is the hs code for OILESS CITY TM (BHN BAKU KOSMETIK) COA 211115,13021990 +What is the hs code for MELAFRESH TM 96 (BHN BAKU KOSMETIK) COA 220201,29061900 +What is the hs code for OILESS CITY TM (BHN BAKU KOSMETIK) COA 211115,13021990 +What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 211014,13021990 +What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB22020312,29362100 +What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB22020312,29362100 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB21080247,29362800 +What is the hs code for NORIT SX SUPER E 153 (BHN BAKU KOSMETIK) COA 5195734,38021010 +What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02201616,29362700 +What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) COA 203110,38249999 +What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) COA 202269,38249999 +What is the hs code for KSG-210 (16KG) (BHN BAKU KOSMETIK) COA 109111,38249999 +"What is the hs code for VC SODIUM ASCORBATE REGULAR (BHN BAKU MAKANAN) COA HPN2202018,HPN2202048,HPN2202076,HPN...",29362700 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02201001,32041900 +"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02201001,UE02201002",32041900 +What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22010039,29362100 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU MAKANAN) COA UT21110215 S/D UT21110218,29362100 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPPLEMEN) COA UT21100062,29362100 +What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT21120058,29362100 +What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 2AX2203012,29181400 +What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT21110016,29362100 +What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02201460,29362700 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02201001,32041900 +What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT21100013,29420000 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT22011138,UT22011140,UT22011141,..",29362100 +What is the hs code for OPADRY AMB II CLEAR (BHN BAKU PEWARNA TABLET) COA SH655212,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656171,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656163,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656165,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656167,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656168,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656166,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656169,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656170,38249999 +What is the hs code for ACRYL-EZE PURPLE (BHN BAKU PEWARNA TABLET) COA SH656173,39061090 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH655883,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH656174,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH655908,38249999 +What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH656175,38249999 +What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH656176,39061090 +What is the hs code for ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH656177,39061090 +What is the hs code for OPADRY II BLACK (BHN BAKU PEWARNA TABLET) COA SH656178,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH656181,38249999 +What is the hs code for OPADRY II PURPLE (BHN BAKU PEWARNA TABLET) COA SH656179,38249999 +What is the hs code for CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/03/140322,39123100 +"What is the hs code for CAFFEINE BP/EP/USP (BHN BAKU OBAT) COA 2203314,2203322 S/D 2203325,2203331,2203332,2203341",29393000 +What is the hs code for METHYLPREDNISOLONE SOD SUC FOR INJ (LYOPHILISED STERILE BULK) (BHN BAKU OBAT) COA MNS0222003,29372900 +What is the hs code for METHYLPREDNISOLONE SOD SUC FOR INJ (LYOPHILISED STERILE BULK) (BHN BAKU OBAT) COA MNS0222003,29372900 +What is the hs code for METHYLPREDNISOLONE SOD SUC FOR INJ (LYOPHILISED STERILE BULK) (BHN BAKU OBAT) COA MNS0222003,29372900 +What is the hs code for METHYLPREDNISOLONE SOD SUC FOR INJ (LYOPHILISED STERILE BULK) (BHN BAKU OBAT) COA MNS0222003,29372900 +What is the hs code for METHYLPREDNISOLONE SOD SUC FOR INJ (LYOPHILISED STERILE BULK) (BHN BAKU OBAT) COA MNS0222003,29372900 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2011820,38210090 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2011820,38210090 +What is the hs code for LIPEX (R) BASSOL C VEGETABLE OIL (BHN BAKU KOSMETIK) COA 0002477552,15162049 +What is the hs code for HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-051711,13021990 +What is the hs code for HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-031691,13021990 +What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-010322,13021990 +What is the hs code for HYUNDAI BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSFAC-011791,13021950 +What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-022791,13021990 +What is the hs code for HYUNDAI BIOLAND ROSEMARY EXTRACT (BHN BAKU KOSMETIK) COA RSL-031211,13021950 +"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-061911,010722,0022322",13021950 +What is the hs code for ASTABIO AR10 (ASTAXANTHIN OIL 10PCT) (BHN BAKU OBAT) COA 2108041,32030010 +"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 020221,170821,140921",25070000 +"What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M535438,M535439,M535440,M535442,M535443,M535448",29411019 +"What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340361,B340362,B340363",29419000 +"What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334804,B334805,B334806",29419000 +"What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340356,B340357,B340358",29419000 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH656330,38249999 +What is the hs code for OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH656717,38249999 +What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785019821N,38249999 +What is the hs code for PRO-LIPO TM NEO (BHN BAKU KOSMETIK) COA 2131002,38249999 +What is the hs code for ROSALITY TM (BHN BAKU KOSMETIK) COA 2110201,38249999 +What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785019821N,38249999 +What is the hs code for GREYVERSE TM (BHN BAKU KOSMETIK) COA 833011021N,39139090 +What is the hs code for MELANOSTATINE TM 5 BG (50PPM) (BHN BAKU KOSMETIK) COA 213801,38249999 +What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 2103114,38249999 +What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019729N,38249999 +What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019447N,38249999 +What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 212000,39139090 +What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 213799,39139090 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2125201,38249999 +What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019761M,38249999 +What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829019674N,39139090 +What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829019674N,39139090 +What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019447N,38249999 +What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 213799,39139090 +What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785019821N,38249999 +What is the hs code for GREYVERSE TM (BHN BAKU KOSMETIK) COA 833011021N,39139090 +What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019761M,38249999 +What is the hs code for SILIGEL TM (BHN BAKU KOSMETIK) COA 2134602,38249999 +What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799039730M,38249999 +What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785019821N,38249999 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2125203,38249999 +What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019761M,38249999 +What is the hs code for MINIPORYL TM (BHN BAKU KOSMETIK) COA 832019764M,38249999 +What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113862,29339990 +What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113862,29339990 +What is the hs code for VIT MIN MIX IMS FB APAC STDP IMM (BHN BAKU MAKANAN) COA XW92202040,21069059 +"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT21100378,UT21110397",29362800 +What is the hs code for B-CAROTENE 1PCT CWS/M (POST BORDER) COA UT21100029,32041900 +What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000200424,29362900 +"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ11010766,UQ20110508",29362300 +"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ11212414,UQ10312088,UQ10212050",29362200 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB21060056,29362300 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02102011,29362900 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT21120005,29362900 +"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060075,0521060071",29420000 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT21120005,29362900 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPPLEMEN) COA UQ11113361,29362200 +What is the hs code for RIBOFLAVIN 5-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2105052,29362300 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060071,29420000 +"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT21070022,UT21070023",29362600 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ11212414,29362200 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ11113356,29362200 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12111039,29362900 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11211026,29362500 +What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ11017014,29420000 +What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPPLEMEN) COA UQ11209528,29362300 +What is the hs code for GENIVIDA(TM) TG (BHN BAKU SUPPLEMEN) COA UT21100002,29329990 +What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT FS (BHN BAKU SUPPLEMEN) COA UE02110004,29420000 +What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0061802,38249999 +What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0061807,38249999 +"What is the hs code for MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HA01908,HA02004",34024990 +What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 21290088,30039000 +"What is the hs code for ACETAMINOPHEN (PARACETAMOL) (BHN BAKU OBAT) COA 202203010A,202203011A",29242930 +What is the hs code for CROPOVIDONE XL (BHN BAKU OBAT) COA PP220304XL,39059990 +What is the hs code for POVIDONE K-30 (BHN BAKU OBAT) COA PK30-220222F11,39059990 +"What is the hs code for ACETAMINOPHEN (PARACETAMOL) (BHN BAKU OBAT) COA 202203011A,202203012A,202203013A",29242930 +"What is the hs code for MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL220318,MCCPOL220321",29094900 +"What is the hs code for PALMEROL 1698 CETYL ALCOHOL/MB,PASTILE (BHN BAKU KOSMETIK) COA 1H0042A",29051700 +"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102169014,102169017",28161000 +What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102169017,28161000 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201529,122201530",28363000 +What is the hs code for GLICLAZIDE (BHN BAKU OBAT) COA 2240000046,29359000 +"What is the hs code for PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M598201,M598202",29411019 +What is the hs code for PALONOSETRON HCL (BHN BAKU OBAT) COA A100200,29337900 +"What is the hs code for FERROUS GLUCONATE, FINE GRAN., ACC. TO PT MI QUALITY (BHN BAKU SUPLEMEN) COA 3107780",29181600 +What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2103681184,29372900 +What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512148,47069200 +What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512148,47069200 +What is the hs code for VC ASCORBIC ACID REGULAR (BHN BAKU MAKANAN) COA HPB2202015,29362700 +What is the hs code for GALAXY 610 EHS MB (ETHYLENE GLYCOL DISTEARATE) (BHN BAKU KOSMETIK) COA 748872,34049090 +What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 17022022,25081000 +What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 21022022,25081000 +What is the hs code for HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2510122,29397900 +What is the hs code for BETAMETHASONE VALERATE USP 43 (BHN BAKU OBAT) COA APL/BV/01021/A-22,29372200 +What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-001-Z,13021990 +What is the hs code for PROCATEROL HCL HEMIHYDRATE MICRONIZED (BHN BAKU OBAT) COA 8601219M1,29337900 +"What is the hs code for COPPER SULFATE, POWDER, PH.EUR.10.ED (BHN BAKU SUPLEMEN) COA 3104245-01",28332500 +"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/03/050322,ASG/03/050322-1,ASG/03/060322-1",29420000 +"What is the hs code for CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/03/110322,ACMC/03/120322",39123100 +"What is the hs code for SODIUM STARCH GLYCOLATE BP (BHN BAKU OBAT) COA ASGP/03/140322,ASGP/03/150322",29420000 +"What is the hs code for MAGNESIUM CHLORIDE 6-HYDRATE, CRYST. (BHN BAKU KOSMETIK) COA 3105684",28273100 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220302,13021990 +What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-220201,13021990 +What is the hs code for HIBISCUS ORGANIC OILY EXTRACT (SUNFLOWER) (BHN BAKU KOSMETIK) COA HIST210101-HBIO,38249999 +What is the hs code for ROSE OILY EXTRACT (BHN BAKU KOSMETIK) COA ROS210904-H,38249999 +What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-220201,13021990 +What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) COA OLVH2203R1-ENBIO,38249999 +What is the hs code for SEABUCKTHRON HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HIR210101-B,13021990 +What is the hs code for CAPSULAC (R) 60 (BHN BAKU OBAT) COA L100410322,17021100 +What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D011L4SL02,39123900 +What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180L7R001,39123900 +What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180L96001,39123900 +What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180L3B021,39123900 +What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102123023,28161000 +"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102102056",28183000 +"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102123023, SAMPLE NO COMMERCIAL..",28161000 +What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102123023,28161000 +"What is the hs code for BARCROFT TM AL HYD GEL LV13, USP (BHN BAKU OBAT) COA 102113155",28183000 +"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102123023, SAMPLE NO COMMERCIAL..",28161000 +"What is the hs code for BARCROFT TM AL HYD GEL LV13, USP (BHN BAKU OBAT) COA 102113155, SAMPLE NO COMMERCIAL VALUE",28183000 +"What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M535460,M535469,M535477,M535481,M535482,M535483",29411019 +What is the hs code for BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 22S0056800,13021990 +What is the hs code for SILYMARIN ETHANOLIC/HF (BHN BAKU SUPLEMEN) COA 21S0222804,13021950 +What is the hs code for MEG-3 '30' N-3 INF OIL (BHN BAKU SUPPLEMEN) COA TS00019152,29362500 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201530,122201531",28363000 +What is the hs code for HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2510122,29397900 +What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB191121,39123900 +What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB240122,39123900 +What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B241221,39123900 +What is the hs code for LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LG090122,39123900 +What is the hs code for ACTIPONE (R) CAMU CAMU ET (BHN BAKU KOSMETIK) COA 10300028,13021950 +"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG220218,MCVG220303",29362700 +What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102169017,28161000 +What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET) COA DT727767,32151990 +"What is the hs code for NG 5 PCT-1,2 PROPYLENGLYCOLE 95% (BAHAN BAKU OBAT) COA",30039000 +What is the hs code for AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 157743,15159011 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02106017,29362900 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02106017,29362900 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02110124,29362400 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060071,29420000 +What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02106807,29362400 +What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040020,29420000 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210059,0708210060,0708210061,0708210062,0708210074",29420000 +What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS3821121,29420000 +What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000202398,29362900 +What is the hs code for VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92203274,21069059 +"What is the hs code for MINERAL PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92203318,XW92203319,XW92203320",21069059 +"What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-010322,BAG-023132",13021990 +What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-040732,13021990 +What is the hs code for HYUNDAI BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-032721,13021990 +What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 012022,28331900 +What is the hs code for HYUNDAI BIOLAND TEA TREE EXTRACT (BHN BAKU KOSMETIK) COA MASL-031381,13021990 +What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-022322,13021950 +What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-022432,13021990 +What is the hs code for HYUNDAI BIOLAND GREEN TEA SEED OIL (BHN BAKU KOSMETIK) COA CSSO-022701,13021950 +What is the hs code for IONOL (R) CP (BHN BAKU KOSMETIK) COA 01146120,29071900 +"What is the hs code for NYSTATIN POWDER ROW GRADE (BHN BAKU OBAT) COA C114613,C114619",29419000 +What is the hs code for NYSTATIN MICRONIZED (BHN BAKU OBAT) COA C131921,29419000 +"What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 01720122,03730222,06940322,06950322,06960322,06970322,...",29359000 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201528,122201529",28363000 +What is the hs code for PROPYPHENAZONE (CEP) (BHN BAKU OBAT UTK PEWARNA TABLET) COA 2111209,29331100 +"What is the hs code for GENIVIDA(TM) TG (POST BORDER) COA UT21100002,UT21100003",29329900 +What is the hs code for VITAMIN B12 1PCT SD (POST BORDER) COA UT22010002,29362600 +What is the hs code for FRUITFLOW II SD (POST BORDER) COA 21T0102200,29362900 +What is the hs code for VIT. A PALM. 1.0 M + VIT. D3 100'000 (BHN BAKU MAKANAN) COA UT22020137,29362100 +What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22020003,29362500 +What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ20217001,29420000 +What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02202875,29362700 +"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA023222,ROA023222",28363000 +What is the hs code for AMITOSE R (BHN BAKU KOSMETIK) COA GAH,38249999 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SJG,38249999 +"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SJG,GCH",38249999 +What is the hs code for PHARMACEUTICAL CASTOR OIL E.P (BHN BAKU KOSMETIK) COA 0000041663,15152919 +"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 08-05-21,06-03-21",25070000 +What is the hs code for KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 14-09-21,25070000 +"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 08-05-21,14-09-21",25070000 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21060148,29362900 +"What is the hs code for PX 103070 C (POST BORDER) COA XW92203351,XW92203352",21069059 +"What is the hs code for PX 103070 C (POST BORDER) COA XW92203352,XW92203353",21069059 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ20210550,29362300 +What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02106017,29362900 +What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02106017,29362900 +"What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02106017,UE02106021",29362900 +What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02106021,29362900 +What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02106021,29362900 +What is the hs code for VITAMIN B12 0.1PCT WS (POST BORDER) COA UT22010002,29362600 +What is the hs code for VITAMIN B12 0.1PCT WS (POST BORDER) COA UT22010002,29362600 +What is the hs code for VP DN03 (POST BORDER) COA XW92202353,21069059 +What is the hs code for CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/03/010422,39123100 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 220149,38249999 +What is the hs code for ACNE BUSTERS (BHN BAKU KOSMETIK) COA 220394,38249999 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 220149,38249999 +What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 220049,13021990 +What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 220070,13021990 +What is the hs code for CINDERELLACARE (BHN BAKU KOSMETIK) COA 212652,13021990 +What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 220049,13021990 +What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 220070,13021990 +What is the hs code for COMFREY LIQUID B (BHN BAKU KOSMETIK) COA 212834,13021990 +What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 212686,13021990 +What is the hs code for KOMENUKA LIQUID BK (BHN BAKU KOSMETIK) COA 212233,13021990 +What is the hs code for PLURESSENCE LEMON 5001 BA (BHN BAKU OBAT) COA 795507,28399000 +What is the hs code for GOTU KOLA EXTRACT (BHN BAKU KOSMETIK) COA 22010386,13021950 +What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000078876,29309090 +What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 1806763070,29362600 +What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 1806763070,29362600 +What is the hs code for KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 14-09-21,25070000 +What is the hs code for PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 080321/007122,38249999 +What is the hs code for EXTRAPONE (R) SEA EXTRACTS N (BHN BAKU KOSMETIK) COA 10300034,13021950 +What is the hs code for EXTRAPONE (R) GINSENG (BHN BAKU KOSMETIK) COA 10300046,13021940 +What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWDER FORM CATCOL C135(L) GRADE(B.BAKU KOSMETIK) COA 287/22,38249999 +"What is the hs code for CALCIUM STEARATE POWDER, PH.EUR.10.ED. (BHN BAKU SUPPLEMEN) COA 3097553",38249999 +"What is the hs code for TRISODIUM CITRATE ANHYDROUS CRYST. POWDER, USP 43 (BHN BAKU SUPPLEMEN) COA 3106312",29181590 +What is the hs code for SODIUM SELENITE IN CARRIER (BHN BAKU SUPPLEMEN) COA 3106230,28429010 +"What is the hs code for METAMIZOLE SODIUM REGULAR GRADE(BHN BAKU OBAT) COA 21121935,2203294,2203297,2203300",29331900 +What is the hs code for COSME-PHYTAMI LOTUS FL 5KG(BAHAN BAKU KOSMETIK) COA AM093819,13021950 +"What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052201,G05052209",47063000 +What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 2104303177,29372200 +What is the hs code for CENTELLA ASIATICA/PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 20S0317200,13021950 +What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 21S0135500,13021950 +What is the hs code for SERENOA REPENS PURIFIED EXT (BHN BAKU SUPLEMEN) COA 21S0178200,13021950 +What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 21S0135500,13021950 +What is the hs code for MIRTOGENOL (R) (BHN BAKU SUPLEMEN) COA 21S0272800,13021950 +What is the hs code for JAGUAR HP 105 SGI (BHN BAKU KOSMETIK) COA H2110217D,38249999 +What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 211115,13021990 +What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 211014,13021990 +What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 210918,13021990 +What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 211115,13021990 +"What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 220202,220304",13021990 +What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 211014,13021990 +What is the hs code for WILDPLUM HARVEST TM AF (BHN BAKU KOSMETIK) COA 211018,13021990 +What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 220211,13021990 +What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 211014,13021990 +What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02111128,29362400 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT21121131,UT21121132,UT21121133",29362100 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPPLEMEN) COA UQ10913303,29362200 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPPLEMEN) COA UQ10913303,29362200 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT21100054,32041800 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT21100054,32041800 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT21100038,29362100 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT21100054,32041800 +What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02111128,29362400 +What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02111128,29362400 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT22010006,29362800 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT22010006,29362800 +"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT22010004,UT22020066",29362800 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ10913303,29362200 +What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF21167003,29420000 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02106021,29362900 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02106021,29362900 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21110396,29362800 +"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050616,0321050617,0321050620,0321050652",29420000 +What is the hs code for PARSOL ZX (BHN BAKU KOSMETIK) COA 191002012,29420000 +"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00735148,VE00735366",29420000 +"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000202399,0000202400",29362900 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT22011134,29362100 +What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA F00451UG,29053200 +What is the hs code for AHCC-PROFESSIONAL-FG (BHN BAKUOBAT) COA 203FM01,21069099 +What is the hs code for SODIUM ACETATE ANHYDROUS (BHN BAKU SUPPLEMEN) COA 3099001,29152910 +What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) COA 7766047,38249999 +What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M-31.0PCT (BHN BAKU OBAT) COA 102229001,28161000 +What is the hs code for ORIGINAL EXTRACT KIWI CSB (BHN BAKU OBAT) COA 02/19GAAK,28399000 +"What is the hs code for ORIGINAL EXTRACT KIWI ECH (BHN BAKU OBAT) COA 02/19GAAK, SAMPLE NO COMMERCIAL VALUE",28399000 +What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO BP (BHN BAKU OBAT) COA 187350,28399000 +What is the hs code for PRECIROL ATO 5 CAR (BHN BAKU OBAT) COA 188256,28399000 +What is the hs code for LABRAFIL M 1944 CS BF (BHN BAKU OBAT) COA 189209,28399000 +What is the hs code for GELUCIRE 48/16 PELLETS CAR (BHN BAKU OBAT) COA 185000,28399000 +What is the hs code for PRECIFAC 95-3 CAR (BHN BAKU OBAT) COA 186318,28399000 +What is the hs code for PRECIROL ATO 5 CAR (BHN BAKU OBAT) COA 188256,28399000 +What is the hs code for FD&C YELLOW #6/SUNSET YELLOW FCF AL 38PCT-42PCT(BHN BAKU PEWARNA TABLET) COA WP848268:BB2464,32151990 +What is the hs code for D&C YELLOW #10 AL 15PCT - 20PCT... (BHN BAKU PEWARNA TABLET) COA WP853297:BB4378,32151990 +What is the hs code for ERYTHROSINE AL 38PCT-42PCT... (BHN BAKU PEWARNA TABLET) COA WP844565:1,32151990 +What is the hs code for FD&C RED #40/ALLURA RED AC AL 38PCT- 42PCT... (BHN BAKU PEWARNA TABLET) COA WP841245:BA8627,32151990 +What is the hs code for ERYTHROSINE AL 38PCT-42PCT... (BHN BAKU PEWARNA TABLET) COA WP844564:1,32151990 +What is the hs code for BOTTLE UREA AGAR BASE BBL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2005602,38210090 +What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1279231,38210090 +"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1201851,...",38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1243619,38210090 +What is the hs code for VIAL E COIL H ANTISERUM H7 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0212196,38210090 +What is the hs code for VIAL SAL O ANTISERUM FACTORS 4&5 GRP B (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0142756,38210090 +What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1175752,38210090 +What is the hs code for VIAL E COLI O ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0094884,38210090 +What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2004399,38210090 +What is the hs code for BOTTLE LACTOBACILLLI MRS BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1264636,38210090 +"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2033988,..",38210090 +What is the hs code for SORBITOL SPECIAL TM MDF 85 (POST BORDER) COA 122201598,29054400 +What is the hs code for BICAR FOOD 27/50 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP07722,28363000 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02E048M,38210090 +What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1229930,38210090 +What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 11108772,38210090 +What is the hs code for BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1242774,38210090 +What is the hs code for BOTTLE MUELLER HINTON AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1181403,38210090 +What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1111035,38210090 +What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1159790,38210090 +What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1312204,38210090 +"What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1221531,1",38210090 +What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2011054,38210090 +What is the hs code for BOTLE LYSINE DECARBOXYLASE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1096987,38210090 +What is the hs code for LOOPS INOCULATING 10/TUBE 1 MICROLITER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2125885,38210090 +What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1257929,38210090 +"What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1159463,2059",38210090 +What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1307340,38210090 +What is the hs code for BOTTLE WL DIFFERENTIAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1188436,38210090 +What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2040220,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0315100,38210090 +What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2028749,38210090 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2038179,38210090 +What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2038654,38210090 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1173666,38210090 +"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0048007,2011820",38210090 +What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1229880,38210090 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1173733,38210090 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0286569,38210090 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2024545,38210090 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0322946,38210090 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1349644,38210090 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA U/PENGEMBANGAN MIKROORGANISME)BATCH 2033988,38210090 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1222962,38210090 +What is the hs code for BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2028035,38210090 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2024545,38210090 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1272026,38210090 +What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1285606,38210090 +What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1320580,38210090 +"What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1071063,.",38210090 +"What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1319484,1348587",38210090 +"What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1310563,.",38210090 +What is the hs code for KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1348749,38210090 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1173666,38210090 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2038183,38210090 +What is the hs code for OPACODE WHITE (BHN BAKU PEWARNA TABLET) COA WP854882,32151990 +What is the hs code for OPACODE GOLD (BHN BAKU PEWARNA TABLET) COA WP854940,32151990 +What is the hs code for HYDROCORTISONE ACETATE EP/USP (BHN BAKU OBAT) COA NEHAC211104,29372200 +"What is the hs code for DEXAMETHASONE BP/USP (BHN BAKU OBAT) COA NED220303,NED220401,NED220305,NED220402,NED220411,...",29372200 +"What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK) COA 2203EF9011,2203EF9012",29224900 +"What is the hs code for ETHAMBUTOL (BHN BAKU OBAT) COA N2006634,N2009595 S/D N2009599,N2009675 S/D N2009679",29221910 +What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 2209970478,29362600 +What is the hs code for METRONIDAZOLE BENZOATE EP (BHN BAKU OBAT) COA MBO/12030146,29332900 +What is the hs code for HYDROSOLUBLE LIVER EXTRACT POWDER HALAL (BHN BAKU OBAT) COA 270122FIP,29332900 +What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC6D YRPN19...(ALAT KESEHATAN)COA 6D19100L0408,30061010 +What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC HI RHINO.(ALAT KESEHATAN) COA HR1938L0408,30061010 +What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC HI RHINO.. (ALAT KESEHATAN) COA HR1960L0408,30061010 +What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW DC DUAL... (ALAT KESEHATAN) COA DA21110N0408,30061010 +What is the hs code for MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50438,29061100 +What is the hs code for SERASENSE SF 2 (BAHAN BAKU KOSMETIK) COA SA20328116,29319049 +What is the hs code for SUPPOCIRE AM PELLETS (BHN BAKU OBAT) COA 22E0409,28399000 +What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 21E4906,28399000 +What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 21E5003,28399000 +What is the hs code for SUPPOCIRE BM PELLETS (BHN BAKU OBAT) COA 21E2708,28399000 +What is the hs code for SUPPOCIRE BS2X PELLETS (BHN BAKU OBAT) COA 21E2906,28399000 +What is the hs code for LANSOPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA LP0222C005,30039000 +What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET) COA DT729243,32151990 +What is the hs code for OPACODE BLACK (BHN BAKU PEWARNA TABLET) COA DT729904,32151990 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA JP517393,38249999 +What is the hs code for BOSWELLIA SERRATA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 21T0118000,13021950 +What is the hs code for AZITHROMYCIN (BHN BAKU OBAT) COA 129-210925-1,29419000 +What is the hs code for BETAMETHASONE VALERATE (BHN BAKU OBAT) COA X21-220302,29372200 +What is the hs code for CEFOTAXIME SODIUM (BHN BAKU OBAT) COA 3042203044,29419000 +"What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334809,B334813",29419000 +"What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340366,B340367",29419000 +"What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334810,B334811,B334812",29419000 +What is the hs code for SOYA LECITHIN (BHN BAKU MAKANAN) COA TY2220103-7,29232011 +What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1263533,38210090 +What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1263533,38210090 +What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1263533,38210090 +What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1014859,38210090 +What is the hs code for BACTO CASAMINO ACIDS EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1082049,38210090 +What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE (MMW) (BHN BAKU KOSMETIK) COA CHP1220405,39139090 +What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-040732,13021990 +What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 012022,28321000 +What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-022322,13021950 +What is the hs code for DNACTIVE (DNA-NA) (BHN BAKU KOSMETIK) COA DNANA-21236,29349910 +"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT22020012,UT22020013,UT22020020",29362800 +What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE02202001,29362100 +What is the hs code for MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22020003,29362500 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPPLEMEN) COA UT22020063,29362100 +What is the hs code for MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22020003,29362500 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02201012,32041800 +What is the hs code for MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22020003,29362500 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT22031160,29362100 +"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU SUPPLEMEN) COA UT22030042,UT22030043",29362100 +What is the hs code for FLORAGLO(R) LUTEIN 20 PCT SAF (POST BORDER) COA UE02203001,32030010 +What is the hs code for DRY VITAMIN D3 100 CWS PH (POST BORDER) COA UT21120003,29362900 +What is the hs code for BETATAB 20PCT S (POST BORDER) COA UT22020009,32041800 +What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (POST BORDER) COA UT22010102,29362100 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN546605,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN546644,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN546643,35051010 +What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN546642,35051010 +What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) (BHN BAKU OBAT) COA 4454086972,39139090 +What is the hs code for BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 22S0074500,13021990 +What is the hs code for BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 22S0074500,13021990 +What is the hs code for C47-051 SUNCROMA TITANIUM DIOXIDE (BHN BAKU KOSMETIK) COA D0XT06,32061110 +"What is the hs code for ADSORB AFLA (BHN BAKU UNTUK PAKAN TERNAK) COA 262,263",25081000 +"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040051, SAMPLE NO COMMERCIAL VALUE",29420000 +"What is the hs code for PARSOL ZX (BHN BAKU KOSMETIK) COA 201008012, SAMPLE NO COMMERCIAL VALUE",29420000 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 21B010900,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0138900,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0139000,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0139100,13021990 +What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 25022022,25081000 +What is the hs code for SORBITOL SOLUTION 70 PCT CRYSTALLINE (BHN BAKU KOSMETIK) COA 2223P027,29054400 +What is the hs code for TEFOSE 63 BF (BHN BAKU SUPPLEMEN) COA 188933,28399000 +What is the hs code for DL-TARTARIC ACID (BHN BAKU OBAT) COA RS01573,29181200 +What is the hs code for L-MALIC ACID (BHN BAKU OBAT) COA CS12061,29181900 +"What is the hs code for N-ACETYL-L-CYSTEINE (BHN BAKU OBAT) COA C103-202201837,202203833,202203834,202203835,202203836",29309090 +"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA AG/03/080322,ASG/04/040422",29420000 +"What is the hs code for CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/04/020422,030422,040422",39123100 +"What is the hs code for SODIUM STARCH GLYCOLATE BP (BHN BAKU OBAT) COA ASGP/03/240322,250322,230322",29420000 +What is the hs code for POTASSIUM GLYCEROPHOSPHATE SOLUTION (BHN BAKU SUPPLEMEN) COA 3115072,29199000 +What is the hs code for MIRASIL D-DML LV A2 (BHN BAKU KOSMETIK) COA 2214HK10XA,39100090 +What is the hs code for MIRASIL CM5 L (BHN BAKU KOSMETIK) COA 2215WKQ415,29319049 +What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000078604,29309090 +What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000078605,29309090 +What is the hs code for THIOCARE (R) H105 83 PCT (BHN BAKU KOSMETIK) COA 0000078606,29309090 +What is the hs code for PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) COA PH07130622,38249999 +What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000078459,29309090 +What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000078460,29309090 +What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000078461,29309090 +"What is the hs code for THIOCARE (R) H105 83 PCT (BHN BAKU KOSMETIK) COA 0000078462, SAMPLE NO COMMERCIAL VALUE",29309090 +"What is the hs code for THIOCARE (R) H103 43 PCT (BHN BAKU KOSMETIK) COA 0000078463, SAMPLE NO COMMERCIAL VALUE",29309090 +"What is the hs code for THIOCARE (R) H100 99 PCT (BHN BAKU KOSMETIK) COA 0000078464, SAMPLE NO COMMERCIAL VALUE",29309090 +"What is the hs code for THIOCARE (R) H101 71 PCT (BHN BAKU KOSMETIK) COA 0000078465, SAMPLE NO COMMERCIAL VALUE",29309090 +"What is the hs code for THIOCARE (R) H100 80 PCT (BHN BAKU KOSMETIK) COA 0000078466, SAMPLE NO COMMERCIAL VALUE",29309090 +What is the hs code for LIPOID S 67 F (BHN BAKU SUPPLEMEN) COA 576200-2220039,29232011 +What is the hs code for METAMIZOLE SODIUM (BHN OBAT TERNAK) COA 2204450,29331900 +What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 22100160,29395900 +"What is the hs code for PURIMOX POWDER (BHN BAKU OBAT) COA M485930,M485931",29411019 +What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M535626 S/D M535631,29411019 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB21120254,29362800 +What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB22020313,29362100 +What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB22020313,29362100 +What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-220201,13021990 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220302,13021990 +What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-210503-GS,38249999 +What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785019980N,38249999 +What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 702019449N,38249999 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2125201,38249999 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2133703,38249999 +What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 702019449N,38249999 +What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 2115314,38249999 +What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829019674N,29224900 +What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019763N,38249999 +What is the hs code for DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834011019N,29224900 +What is the hs code for GREYVERSE TM (BHN BAKU KOSMETIK) COA 833011021N,29224900 +What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019761M,38249999 +What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019447N,38249999 +What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019761M,38249999 +What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029946N,13021950 +What is the hs code for JAGUAR C 162 CARDBOARD BOX 25 KG (BHN BAKU KOSMETIK) COA MJAC22011B,38249999 +"What is the hs code for COPPER(II) GLUCONATE, FINE POWDER, USP 43 (BHN BAKU SUPPLEMEN) COA 3112564",29181600 +"What is the hs code for ZINC OXIDE, POWDER, PH.EUR.10.ED. (BHN BAKU SUPPLEMEN) COA 3112821",28170010 +What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-0450422,29334910 +"What is the hs code for CAFFEINE BP/EP/USP/CEP (BHN BAKU OBAT) COA 2203504,2203508 S/D 2203510,2203513,2204548 S/D 49",29393000 +"What is the hs code for CAFFEINE BP/EP/USP/CEP (BHN BAKU OBAT) COA 2203326, 2204563",29393000 +"What is the hs code for CAFFEINE BP/EP/USP/CEP (BHN BAKU OBAT) COA 2204550,2204556,2204562",29393000 +What is the hs code for ACYCLOVIR MICRONIZED (BHN BAKU OBAT) COA 22100099,29335990 +"What is the hs code for COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPPLEMEN) COA TL02201494",29362700 +"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ20116011,UQ20116015",29362700 +What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22020041,29362100 +"What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU MAKANAN) COA UT22030220,UT22030221",29362100 +"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22020040,UT22020041",29362100 +What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPPLEMEN) COA UQ11209528,29362300 +What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02201544,29362700 +What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT22020060,29362100 +"What is the hs code for COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPPLEMEN) COA TL02201494",29362700 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02201002,32041800 +What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB150322,39123900 +What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B020322,39123900 +What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B020322,39123900 +What is the hs code for LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LG120422,39123900 +What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB150322,39123900 +What is the hs code for MIAMI SCG(S) (BHN BAKU KOSMETIK) COA 22040855,34023990 +What is the hs code for BOTTLE TERGITOL 4 XLT4 SUPPLEMENT 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH SLCM0515,38210090 +What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2013578,38210090 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA GDN,38249999 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA GCH,38249999 +What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA SKM,38249999 +What is the hs code for PROTESIL KR-30(BHN BAKU KOSMETIK) COA GDC,38249999 +What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 199244,29332900 +What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 199625,29332900 +What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 199220,29332900 +What is the hs code for CATECHINS TEAVIGO 4 KG (BHN BAKU KOSMETIK) COA 203021,21012020 +What is the hs code for CATECHINS TEAVIGO 1 KG (BHN BAKU KOSMETIK) COA 203021,21012020 +"What is the hs code for CONFECTIONERY INK CI-28827 WHITE (BHN BAKU PEWARNA TABLET) COA TKL61838, SAMPLE NO COMMERCIAL..",32061910 +What is the hs code for SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 22B0024800,13021950 +What is the hs code for VALERIAN DRY HYDR. EXTR. (BAHAN BAKU SUPLEMEN) COA 21B0128800,13021990 +What is the hs code for SILYMARIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0131900,13021950 +What is the hs code for KETOPROFEN (BHN BAKU OBAT) COA 199331,29183000 +What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 203173,38249999 +What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) COA 203271,38249999 +What is the hs code for KSP-100 (10KG) )BHN BAKU KOSMETIK) COA 203918,38249999 +What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) COA 203271,38249999 +What is the hs code for KSG-710 (16KG) BHN BAKU KOSMETIK) COA 112480,38249999 +What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 203173,38249999 +What is the hs code for NEO EXTRAPONE (R) LEMON (BHN BAKU KOSMETIK) COA 10300017,13021950 +What is the hs code for EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300021,13021950 +What is the hs code for ACTIPONE(R) WHITE TEA GW (BHN BAKU KOSMETIK) COA 10300050,13021950 +What is the hs code for EXTRAPONE (R) WILD BERRIES(BHN BAKU KOSMETIK) COA 10300035,13021950 +What is the hs code for OPADRY AMB MAROON (BHN BAKU PEWARNA TABLET) COA SH656804,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH656545,39061090 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656171,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH652415,39061090 +What is the hs code for OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH656807,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH656329,38249999 +What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH656175,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH656330,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH656567,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH656835,38249999 +What is the hs code for OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH656820,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH656842,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH656832,38249999 +What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH656816,39061090 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH652415,39061090 +What is the hs code for OPADRY AMB II ORANGE (BHN BAKU PEWARNA TABLET) COA SH656836,38249999 +What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH657554,38249999 +What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH656182,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH657562,38249999 +What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH657555,38249999 +What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000078886,29309090 +What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-011732,38249999 +What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-021781,38249999 +What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-021421,13021950 +What is the hs code for HYUNDAI BIOLAND SENAS (BHN BAKU KOSMETIK) COA NASB-01112,21022090 +What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 011922,28331900 +"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK), COA HMVBD-022322,HMVBD-030742",13021950 +What is the hs code for HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-031691,13021990 +What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK)COA GSC-K-020971,13021990 +What is the hs code for HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-182822,13021990 +What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 012022,28331900 +What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 042122,28331900 +"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK), COA HMVBD-030742",13021950 +What is the hs code for HYUNDAI BIOLAND OLIGO-HA 1PCT SOLUTION (BHN BAKU KOSMETIK) COA HCPP-021842,39139090 +What is the hs code for SORBITOL SOLUTION 70 PCT CRYSTALLINE (BHN BAKU KOSMETIK) COA 2223P053,29054400 +What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180L7R001,39123900 +What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180L4S022,39123900 +What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180K34002,39123900 +What is the hs code for METHOCEL E5 PREMIUM LV HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D011LBML01,39123900 +What is the hs code for METHOCEL E5 PREMIUM LV HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D011LBKL03,39123900 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT22020066,29362800 +What is the hs code for VITAMIN PREMIX 103047 - D (BHN BAKU MAKANAN) COA XW92204005,21069059 +What is the hs code for MINERAL PREMIX FOR MILK POWDER (BHN BAKU MAKANAN) COA XW92204006,21069059 +What is the hs code for VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92203292,21069059 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12111039,29362900 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12111039,29362900 +What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12111039,29362900 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT21120005,29362900 +What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPPLEMEN) COA TL02111923,29362700 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT22020066,29362800 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT22010004,29362800 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT22010004,29362800 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ20210551,29362300 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU SUPPLEMEN) COA UT22010219,29362100 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU SUPPLEMEN) COA UT22010219,29362100 +What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB21050065,29362500 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU SUPPLEMEN) COA UT22010219,29362100 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02102013,29362900 +"What is the hs code for RIBOFLAVIN 5-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2107088,UEB2107089",29362300 +"What is the hs code for RIBOFLAVIN 5-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2107089,UEB2105056",29362300 +"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92203249,XW92203250",21069059 +What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92204160,29420000 +"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02106807,TL02109811",29362400 +What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU KOSMETIK) COA UT21030210,29362100 +What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92204160,29420000 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT21070076,29362800 +What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0063101,38249999 +What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0063344,38249999 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 220691,38249999 +What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 220943,38249999 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 220691,38249999 +What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 220943,38249999 +What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 220495,13021990 +"What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 220332,220991",13021990 +What is the hs code for ROSE HIPS LIQUID B (BHN BAKU KOSMETIK) COA 220534,13021990 +What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 220564,13021990 +What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 220564,13021990 +What is the hs code for HIBAMATA LIQUID (BHN BAKU KOSMETIK) COA 212385,13021990 +What is the hs code for COMFREY LIQUID B (BHN BAKU KOSMETIK) COA 212834,13021990 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 220691,38249999 +What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 220704,13021990 +What is the hs code for AP GRIT G 40-60 (BHN BAKU KOSMETIK) COA 220103,38249999 +What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 220665,29329900 +What is the hs code for MIRANOL ULTRA C-32 MB 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP204230MB,34024990 +What is the hs code for MIRANOL ULTRA C-32 MB 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP204230MB,34024990 +"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG220318,MCVG220325",29362700 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH656982,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH659121,39061090 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH657259,38249999 +What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH659124,38249999 +What is the hs code for ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH657552,39061090 +What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH657566,38249999 +What is the hs code for OPADRY AMB II PURPLE (BHN BAKU PEWARNA TABLET) COA SH657567,38249999 +What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH657652,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH656981,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH656982,38249999 +What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH656806,39061090 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH659123,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH659123,38249999 +What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH659127,38249999 +What is the hs code for OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH659122,38249999 +What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH656806,39061090 +What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH656806,39061090 +What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH659127,38249999 +What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH658106,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH649540,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH659121,39061090 +What is the hs code for OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH659122,38249999 +What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH656806,39061090 +What is the hs code for PANTOPRAZOLE SODIUM (STERILE) BAHAN BAKU OBAT SI/PPZ/00230222,29333990 +What is the hs code for ESOMEPRAZOLE SODIUM STERILE (BAHAN BAKU OBAT) COA SI/EPZ/00010222,29333990 +What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113906,29339990 +What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113906,29339990 +"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-0480422,S-A-0490422",29334910 +What is the hs code for MEG-3 '30' N-3 FOOD OIL (BHN BAKU MAKANAN) COA TS00019390,29362500 +"What is the hs code for BICAR FOOD 27/50 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP11222,MTP11122",28363000 +What is the hs code for DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2204001,28352510 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP10322,28363000 +What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP07122,28363000 +What is the hs code for OPACODE WHITE (BHN BAKU PEWARNA TABLET) COA WP856284,32151990 +What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK) COA 8924100,38249999 +What is the hs code for CITICOLINE SODIUM (BHN BAKU OBAT) COA 220202,29349990 +What is the hs code for RANITIDINE HCL USP (BAHAN BAKU OBAT) COA RH 258 04 22,29321900 +"What is the hs code for METHYLCOBALAMINE JP (BAHAN BAKU OBAT) COA SLL/MC/0322009,SLL/MC/0222007",29362600 +What is the hs code for DOCUSATE SODIUM (BHN BAKU OBAT) COA SD1061029,29171900 +What is the hs code for ISDN 25PCT-LACTOSE 450 75PCT DILUTED (BHN BAKU OBAT) COA 2204853,29329900 +"What is the hs code for NG 5 PCT-1,2 PROPYLENGLYCOLE 95PCT (BAHAN BAKU OBAT) COA 2204752",30039000 +What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 2209970478,29362600 +"What is the hs code for FERROUS GLUCONATE, POWDER, USP 43 (BHN BAKU SUPLEMEN) COA 3114276",29181600 +"What is the hs code for FERROUS GLUCONATE, POWDER, USP 43 (BHN BAKU SUPLEMEN) COA 3114276",29181600 +"What is the hs code for MAGNESIUM OXIDE, LIGHT, POWDER, BP 2021 (BHN BAKU SUPLEMEN) COA 1100366-4",25199010 +"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1341759,2004477",38210090 +What is the hs code for BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1334236,38210090 +What is the hs code for BOTTLE MYCOPLASMA BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1256652,38210090 +What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKIROORGANISME) BATCH 2011054,38210090 +What is the hs code for PAIL BACTO AGAR 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1327553,38210090 +What is the hs code for BOTTLE AGAR NOBLE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1223649,38210090 +What is the hs code for BOTTLE MR-VP MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1263575,38210090 +What is the hs code for BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1040332,38210090 +What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1133939,38210090 +What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1061373,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0315100,38210090 +What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1229930,38210090 +What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2011054,38210090 +What is the hs code for BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1356308,38210090 +What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1133939,38210090 +What is the hs code for BOTTLE TAT BROTH BASE 500 G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1349644,38210090 +What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1312204,38210090 +What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2103597,38210090 +"What is the hs code for BOTTLE BACTO TSB CASEIN...(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1333996,1348587,2034944",38210090 +What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1350021,38210090 +"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1176317,2028749",38210090 +"What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2011124",38210090 +What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2040220,38210090 +What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1215037,38210090 +What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2038654,38210090 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1236408,38210090 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1319633,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1188089,38210090 +What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1201174,38210090 +What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1363655,38210090 +"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1264670",38210090 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1349644,38210090 +What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B04D195M,38210090 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1236408,38210090 +What is the hs code for MICROBIOM3D TOP BOARD FOR SPOT COOLER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),38210090 +"What is the hs code for PLATE STERILE RODAC... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1310563,1316464,1340967",38210090 +What is the hs code for BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2053895,38210090 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2038183,38210090 +What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2060056,38210090 +What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2047738,38210090 +What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1341761,38210090 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1327368,38210090 +What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 1AX2205508,29181400 +What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2022021502,21012020 +What is the hs code for FD&C YELLOW 5/TARTRAZINE AL... (BHN BAKU PEWARNA TABLET) COA WP852899:BB4036,32151990 +What is the hs code for ERYTHROSINE AL 38PCT-42PCT... (BHN BAKU PEWARNA TABLET) COA WP844565:1,32151990 +What is the hs code for D&C YELLOW 10 AL 15PCT - 20PCT... (BHN BAKU PEWARNA TABLET) COA WP853299:BB4498,32151990 +What is the hs code for ERYTHROSINE AL 38PCT-42PCT... (BHN BAKU PEWARNA TABLET) COA WP844565:1,32151990 +What is the hs code for D&C YELLOW 10 AL 15PCT - 20PCT... (BHN BAKU PEWARNA TABLET) COA WP844760:BB0003,32151990 +What is the hs code for FD&C BLUE 2/INDIGO CARMINE AL... (BHN BAKU PEWARNA TABLET) COA WP847582:BB1664,32151990 +What is the hs code for FD&C YELLOW 6/SUNSET YELLOW... (BHN BAKU PEWARNA TABLET) COA WP848266:BB2369,32151990 +What is the hs code for ERYTHROSINE AL 38PCT-42PCT... (BHN BAKU PEWARNA TABLET) COA WP844563:1,32151990 +What is the hs code for FD&C YELLOW 5/TARTRAZINE AL... (BHN BAKU PEWARNA TABLET) COA WP852915:BB4112,32151990 +What is the hs code for FD&C RED 40/ALLURA RED AC AL... (BHN BAKU PEWARNA TABLET) COA WP852270:BB3528,32151990 +What is the hs code for OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA GA708010,38249999 +What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA GA708009,38249999 +What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA GA707632,39061090 +What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA GA708009,38249999 +What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP08822,28363000 +What is the hs code for BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP10422,28363000 +What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP03722,28363000 +What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP08322,28363000 +What is the hs code for STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN546116,35051010 +"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA064226,ROA063223,ROA064226,ROA...",28363000 +"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA065224,ROA064226,ROA064223",28363000 +"What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340368, B340369,B340370",29419000 +What is the hs code for KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 211021,25070000 +What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU UTK PAKAN TERNAK) COA 202200065,28183000 +"What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 2209970478,2209980571",29362600 +What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-220422,29061300 +What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-220422,29061300 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT22020066,29362800 +What is the hs code for VITAMIN PREMIX 103093 - A (BHN BAKU MAKANAN) COA XW92204008,21069059 +What is the hs code for VITAMIN PREMIX FOR MILK POWDER (BHN BAKU MAKANAN) COA XW92204007,21069059 +"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12111039,OP12112022",29362900 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11220302,29362500 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT22010019,29362800 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT22010002,29362600 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT22010019,29362800 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT22010002,29362600 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPPLEMEN) COA UQ11213382,29362200 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT22010002,29362600 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21120023,29362900 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ20110510,29362300 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ11213700,29362500 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ11213700,29362500 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT21100058,32041800 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT21120069,32041800 +What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02111128,29362400 +What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040009,29362900 +What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040009,29362900 +What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000201737,29362900 +What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0038741,29362500 +What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00748404,29420000 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02112145,29362400 +What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0922020007,29420000 +What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040020,29420000 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060086,29420000 +"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050930,0321050931",29420000 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT21100232,29362400 +What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21110243,29362400 +What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21110243,29362400 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT21120005,29362900 +What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21110243,29362400 +What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12112022,29362900 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12112022,29362900 +What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02103044,29362700 +What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0922020007,29420000 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060001,29420000 +"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02102024,UE02102026",29362700 +"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22030042,UT22030043",29362100 +What is the hs code for DRY VITAMIN D3 100 CWS PH (BHN BAKU SUPPLEMEN) COA UT21120003,29362900 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT22031157 S/D UT22031161,29362100 +What is the hs code for OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA GA708010,38249999 +What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET) COA DT730060,32151990 +What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET) COA DT730061,32151990 +What is the hs code for OPACODE BLACK (BHN BAKU PEWARNA TABLET) COA DT730062,32151990 +What is the hs code for OPATINT RED (BHN BAKU PEWARNA TABLET) COA DT730063,32151990 +What is the hs code for XANTHAN FFPC (BHN BAKU OBAT) COA 83676701,39139090 +"What is the hs code for PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) COA PH06150622,PH09160122",38249999 +What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2103661117,29372900 +What is the hs code for FRUITFLOW II SD (BHN BAKU SUPPLEMEN) COA 21T0102200,29362900 +What is the hs code for DEXCHLORPHENIRAMINE MALEATE USP (BHN BAKU OBAT) COA SLL/DC/0522011,29333990 +What is the hs code for AQUACOAT CPD-30 CELLULOSE... (BHN BAKU PEWARNA TABLET) COA 2174048104,39123900 +What is the hs code for METHOCEL E15 PREMIUM LV... (BHN BAKU PEWARNA TABLET) COA D011LCGL01,39123900 +What is the hs code for METHOCEL E6 PREMIUM LV... (BHN BAKU PEWARNA TABLET) COA D011L9UL01,39123900 +What is the hs code for METHOCEL K15M PREMIUM CR... (BHN BAKU PEWARNA TABLET) COA D180L96001,39123900 +What is the hs code for METHOCEL E6 PREMIUM LV... (BHN BAKU PEWARNA TABLET) COA D011L9LL03,39123900 +What is the hs code for METHOCEL E15 PREMIUM LV... (BHN BAKU PEWARNA TABLET) COA D011K7KL01,39123900 +What is the hs code for METHOCEL K4M PREMIUM CR... (BHN BAKU PEWARNA TABLET) COA D180K61001,39123900 +What is the hs code for METHOCEL A15 PREMIUM LV... (BHN BAKU PEWARNA TABLET) COA D180L7E022,39123900 +What is the hs code for METHOCEL K100 PREMIUM LVCR... (BHN BAKU PEWARNA TABLET) COA D180L3B021,39123900 +What is the hs code for ETHOCEL STANDARD 10 PREMIUM... (BHN BAKU PEWARNA TABLET) COA D184L7P021,39123900 +What is the hs code for METHOCEL E4M PREMIUM... (BHN BAKU PEWARNA TABLET) COA D180LAT021,39123900 +What is the hs code for METHOCEL K15M PREMIUM CR... (BHN BAKU PEWARNA TABLET) COA D180L52021,39123900 +What is the hs code for METHOCEL E4M PREMIUM... (BHN BAKU PEWARNA TABLET) COA D180LAT021,39123900 +What is the hs code for PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 101821/007264,38249999 +"What is the hs code for FENTACARE 2231 EF 25KG PAPER BOX (BHN BAKU KOSMETIK ) COA ZH22D2201,ZH22E1003",34029019 +What is the hs code for MONOPROPYLENE GLYCOL (BHN BAKU KOSMETIK) COA PG(S)220424,29053200 +What is the hs code for PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3280873,33029000 +What is the hs code for PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3302358,33029000 +What is the hs code for HPA82 PURE SENSITIVE (BHN BAKU KOSMETIK) COA 3302683,33029000 +What is the hs code for PROPYPHENAZONE (CEP) (BHN BAKU OBAT UNTUK PEWARNA TABLET) COA 2111209,29331100 +What is the hs code for HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2510222,29397900 +What is the hs code for VC CALCIUM ASCORBATE DC (BHN BAKU SUPPLEMEN) COA HPT2202005,29362700 +"What is the hs code for ASTABIO AR10 (ASTAXANTHIN OIL 10PCT) (BHN BAKU OBAT) COA 2108041,2205101",32030010 +What is the hs code for CINNARIZINE (BHN BAKU OBAT) COA 022C011,29335990 +What is the hs code for GLIBENCLAMIDE (BHN BAKU OBAT) COA 22GLB020,29359000 +What is the hs code for NYSTATIN POWDER ROW GRADE (BHN BAKU OBAT) COA C131972,29419000 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20220503,17029019 +What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 220211,13021990 +What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 211115,13021990 +What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 220402,13021990 +What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 220211,13021990 +What is the hs code for CENTELLA ASIATICA EXTRACT 95PCT ( BHN BAKU KOSMETIK) COA GKP 22019 EOU,13021950 +What is the hs code for AMITOSE R (BHN BAKU KOSMETIK) COA GCI,38249999 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA GCH,38249999 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA GEA,38249999 +"What is the hs code for SODIUM ASCORBATE 99PCT TG (BHN BAKU SUPPLEMEN) COA WB22030580,WB22030584",29362700 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB21120254,29362800 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB21120254,29362800 +"What is the hs code for ZINC SULFATE 1-HYDRATE, POWDER,USP43 (BHN BAKU OBAT) COA 3111759",28332920 +"What is the hs code for FERROUS SULFATE DRIED,POWDER,USP43 (BHN BAKU OBAT) COA 3110345",28332920 +What is the hs code for SODIUM SELENITE IN CARRIER (BHN BAKU SUPPLEMEN) COA 3106230,28429010 +"What is the hs code for ZINC OXIDE, POWDER, PH.EUR.10ED (BHN BAKU SUPPLEMEN) COA 3112821",28170010 +"What is the hs code for POTASSIUM L-ASPARTATE 0,5-HYDRATE (BHN BAKU OBAT) COA 3033229-2",29224900 +What is the hs code for BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 22S0112800,13021990 +What is the hs code for BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 22S0112800,13021990 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131... (BHN BAKU PEWARNA TABLET) COA GA707093,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03Z59026 CLEAR (BHN BAKU PEWARNA TABLET) COA GA707094,38249999 +What is the hs code for 8552-507-K05 LIPEX (R) 512 VEGETABLE OIL (BHN BAKU KOSMETIK) COA 0002518009,15162049 +What is the hs code for 8552-507-K05 LIPEX (R) 512 VEGETABLE OIL (BHN BAKU KOSMETIK) COA 0002518009,15162049 +What is the hs code for 8552-507-K05 LIPEX (R) 512 VEGETABLE OIL (BHN BAKU KOSMETIK) COA 0002518009,15162049 +What is the hs code for IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S766/21/A,38029090 +What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2027288,38210090 +"What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1063138",38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1344136,38210090 +What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2060591,38210090 +What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0219127,38210090 +What is the hs code for VIAL E COLL O ANTISERUM O157 SEROL TEST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0094884,38210090 +What is the hs code for BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2047688,38210090 +What is the hs code for BOTTLE LACTOBACILLI AGAR AOAC 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2032081,38210090 +"What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1229938,1243897",38210090 +What is the hs code for BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2047688,38210090 +What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B04E067M,38210090 +What is the hs code for DROPPER DMACA INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01E025M,38210090 +What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN546460,35051010 +What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN546459,35051010 +What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN546091,35051010 +What is the hs code for GLICLAZIDE (BHN BAKU OBAT) COA 2240000894,29359000 +What is the hs code for GLICLAZIDE (BHN BAKU OBAT) COA 2240001150,29359000 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G630022... (BHN BAKU PEWARNA TABLET) COA SH658672,38249999 +What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA GA706793,38249999 +What is the hs code for EUXYL K 940 CAN 10 KG (BHN BAKU KOSMETIK) COA 1573139,38249999 +What is the hs code for EUXYL K 720 CAN 10 KG (BHN BAKU KOSMETIK) COA 1581472,38249999 +What is the hs code for EUXYL K 940 CAN 10 KG (BHN BAKU KOSMETIK) COA 1573139,38249999 +What is the hs code for SENSIVA PA 40 CAN 10 KG (BHN BAKU KOSMETIK) COA 1579165,38249999 +What is the hs code for EUXYL K 830 CAN 10 KG (BHN BAKU KOSMETIK) COA 1581540,38249999 +What is the hs code for EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) COA 1579348,38249999 +What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) COA 1580987,38249999 +What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) COA 1581749,38249999 +What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) COA 1581949,38249999 +What is the hs code for EUXYL K 720 CAN 10 KG (BHN BAKU KOSMETIK) COA 1581474,38249999 +What is the hs code for EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) COA 1578645,38249999 +What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) COA 1580173,38249999 +What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) COA 1580173,38249999 +"What is the hs code for FENTACARE 2231 EF 25KG PAPER BOX (BHN BAKU KOSMETIK ) COA ZH22E1003,ZH22E1806",34029019 +What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-032422,38249999 +What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ20217003,29420000 +What is the hs code for SYN(R)-AKE (BHN BAKU KOSMETIK) COA UE02204005,29420000 +What is the hs code for METHOCEL (R) ID34538P (BHN BAKU PEWARNA TABLET) COA D011LCRL01,39123900 +"What is the hs code for RIVAROXABAN EP (BHN BAKU OBAT) COA BAN500122,BAN500222",29349990 +What is the hs code for CYPROHEPTADINE HCL (BHN BAKU OBAT) COA CYP/04221009,29333990 +What is the hs code for MIRASIL DM5 L (BHN BAKU KOSMETIK) COA 2216FH3415,39100090 +What is the hs code for MIRASIL D-DML LV A2 (BHN BAKU KOSMETIK) COA 2215HK03XA,39100090 +What is the hs code for MIRASIL DM5 L (BHN BAKU KOSMETIK) COA 2216FH3415,39100090 +What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052217,47063000 +What is the hs code for SODIUM CARBONATE IPH (BHN BAKU SUPPLEMEN) COA DOC1222221,28363000 +"What is the hs code for PERMETHRIN (PHARMA GRADE) (BHN BAKU OBAT) COA 225046004,22504605,225046006,225046006",29163990 +"What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 10760522,10770522,10780522,10930522,...",29359000 +"What is the hs code for TRIMETHOPRIM MICRONISED BP (BHN BAKU OBAT) COA TMP22050351,TMP22050354,TMP22040311",29335990 +"What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334819,B334820,B334822,B334824,B334825,B334828",29419000 +What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052217,47063000 +"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 19-10-21,29-09-21,30-09-21, 20-10-21",38029090 +What is the hs code for COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-2110148,29146200 +What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 221092,38249999 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 221256,38249999 +What is the hs code for DOKUDAMI LIQUID B (BHN BAKU KOSMETIK) COA 221082,13021990 +What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 221034,13021990 +"What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 220991,221275",13021990 +What is the hs code for ALPINIAWHITE (BHN BAKU KOSMETIK) COA 220567,13021990 +What is the hs code for EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300059 S/D 10300061,13021950 +What is the hs code for DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2204001,28352510 +What is the hs code for VITAMIN PREMIX FOR FERMENTED MILK (BHN BAKU MAKANAN) COA XW92205018,21069059 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT22020066,29362800 +What is the hs code for B-CAROTENE 1PCT CWS/M (BHN BAKU MAKANAN) COA UT21120038,32041800 +What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02111132,29362400 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPPLEMEN) COA UQ10913316,29362200 +What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92204312,21069059 +What is the hs code for VITAMIN B12 0.1PCT WS (POST BORDER) COA UT22010002,29362600 +What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02111132,29362400 +"What is the hs code for NIACINAMIDE PC (POST BORDER) COA 0000203938,0000203940",29362900 +What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000203940,29362900 +What is the hs code for DL-PANTHENOL 50 L (BHN BAKU KOSMETIK) COA TL02108642,29362400 +"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000203940,0000203941",29362900 +What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92204461,29420000 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21110403,29362800 +What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS3851121,29420000 +What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC211108,29420000 +What is the hs code for SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202205-015,35040000 +What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK) COA LDC19222T,27101990 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20220509,17029019 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977 WHITE(BHN BAKU PEWARNA TABLET) COA GA709224,38249999 +What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769011334N,29224900 +What is the hs code for SWT-7 TM H (BHN BAKU KOSMETIK) COA 2207403,38249999 +What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 2115314,38249999 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2125203,38249999 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2133701,38249999 +What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 702019449N,38249999 +What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019447N,38249999 +What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785019980N,38249999 +What is the hs code for DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834019745M,29224900 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2133701,38249999 +What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019877N,38249999 +What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) COA 2103116,38249999 +What is the hs code for PROGELINE TM (BHN BAKU KOSMETIK) COA 820059881M,29224900 +What is the hs code for ROSALITY TM (BHN BAKU KOSMETIK) COA 2116601,38249999 +What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122101486,28363000 +What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122101486,28363000 +What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPPLEMEN) COA WB22010760,29362800 +What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPPLEMEN) COA WB22010760,29362800 +What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPPLEMEN) COA WB22010760,29362800 +What is the hs code for ASCORBIC ACID 90PCT GRANULATION (BHN BAKU SUPPLEMEN) COA WB21109021,29362700 +What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20220201,29362800 +What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20220201,29362800 +What is the hs code for ASCORBIC ACID 90PCT GRANULATION (BHN BAKU SUPPLEMEN) COA WB21109021,29362700 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22010616,29362100 +What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2088865,38210090 +"What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2012153,...",38210090 +What is the hs code for KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2063446,38210090 +What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2049503,38210090 +What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2113510,38210090 +What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 211059200,38210090 +What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2055028,38210090 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2104107,38210090 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2104107,38210090 +What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1357822,38210090 +What is the hs code for BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1223658,38210090 +What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2103597,38210090 +What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1236551,38210090 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2034944,38210090 +What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1103620,38210090 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1132546,38210090 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2004477,38210090 +"What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2046145,...",38210090 +What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1159790,38210090 +What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2049503,38210090 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2115964,38210090 +What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG220429,29362700 +What is the hs code for L GLUTATHIONE REDUCED (BHN BAKU KOSMETIK) COA B220162,29309090 +What is the hs code for CO ENZYME Q10 (BHN BAKU KOSMETIK) COA 51-2205129,29146200 +What is the hs code for VC ASCORBIC ACID REGULAR (BHN BAKU MAKANAN) COA HPB2204045,29362700 +What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK) COA LDC20622T,27101990 +"What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-042001,021152",29224900 +What is the hs code for HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-060821,13021990 +What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-021421,13021950 +What is the hs code for HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-182822,13021990 +"What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE 1PCT SOLUTION (BHN BAKU KOSMETIK) COA HASC-402921,070252",39139090 +"What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 011922,051222",28331900 +What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-030742,13021950 +What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2104978,38210090 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2034559,38210090 +"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 2068623,2068628,...",38210090 +What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2067406,38210090 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2034559,38210090 +"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 2046133,2062781,...",38210090 +What is the hs code for BOTTLE B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2066217,38210090 +What is the hs code for VIAL ISOVITALEX ENRICHMENT 10ML 5 EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2060136,38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0128385,38210090 +What is the hs code for VIAL SHIGELLA ANTIS POLY C1 LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2039015,38210090 +What is the hs code for VIAL SHIGELLA ANTIS POLY D LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1084825,38210090 +"What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0219127",38210090 +What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2067406,38210090 +"What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1175752",38210090 +What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1279394,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1243456,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1349828,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 2053886,38210090 +What is the hs code for BOTTLE LETHEEN BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1229938,38210090 +What is the hs code for AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 157743,15159011 +What is the hs code for ARGAN OIL COLD PRESSED ORGANIC (BHN BAKU KOSMETIK) COA 159541,29362500 +What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 220495,13021990 +"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102202004",28183000 +What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBNE220260,29221990 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ20113505,29362500 +What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22010021,29362400 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ11212414,29362200 +"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ11212414,UQ11212434",29362200 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT21120005,29362900 +What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02111132,29362400 +What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20220101,29362800 +What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20220101,29362800 +What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20220101,29362800 +What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20220101,29362800 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT22010019,29362800 +What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000201738,29362900 +"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12112022,OP12202018",29362900 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11220304,29362500 +What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE02202001,29362100 +What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000201738,29362900 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02201004,29362400 +What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00756456,29420000 +"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0922020007,0922020008",29420000 +What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0040349,29362500 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02201004,29362400 +"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000203943,0000203944",29362900 +What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040020,29420000 +"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02103044,UE02103050,UE02103051",29362700 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02106017,29362900 +"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050932,0321050933",29420000 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT22030006,32030010 +What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22020003,29362500 +What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT22020060,29362100 +What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22020003,29362500 +What is the hs code for DRY VITAMIN D3 100 CWS PH (BHN BAKU SUPPLEMEN) COA UT21120003,29362900 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPPLEMEN) COA UT22020009,32041800 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT21110032,32030010 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT22030006,32030010 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT22030006,32030010 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02202020,32041800 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPPLEMEN) COA UT22030035,29362800 +What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22030043,29362100 +"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT21080083,UT21090085",29362800 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP10322,28363000 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP10322,28363000 +"What is the hs code for METAMIZOLE SODIUM REGULAR GRADE (BHN BAKU OBAT) COA 2204450,2205674 S/D 2205676",29331900 +What is the hs code for LABRAFIL M 1944 CS BF (BHN BAKU OBAT) COA 189637,28399000 +What is the hs code for LACTOFIL MOIST (BHN BAKU OBAT) COA Z13360024,28399000 +What is the hs code for CAPSULAC (R) 60 (BHN BAKU OBAT) COA L100411022,17021100 +What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103860722,17021100 +What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104311722,17021100 +What is the hs code for FLOWLAC (R) 100H (BHN BAKU OBAT) COA L105812121,17021100 +What is the hs code for SORBOLAC (R) 400 (BHN BAKU OBAT) COA L103844721,17021100 +What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK) COA 2206EF7112,29224900 +"What is the hs code for OMEPRAZOLE PELLETS -8,5PCT (BHN BAKU OBAT) COA OP8.5/121605121",30039000 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20220525,17029019 +What is the hs code for HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2510322,29397900 +What is the hs code for SODIUM ACID PYROPHOSPHATE FOOD GRADE (BHN BAKU MAKANAN) COA 0922010,28353990 +What is the hs code for ORIGINAL EXTRACT KIWI CSB (BHN BAKU OBAT) COA 02/19GAAK,28399000 +"What is the hs code for ORIGINAL EXTRACT KIWI ECH (BHN BAKU OBAT) COA 02/19GAAK, SAMPLE NO COMMERCIAL VALUE",28399000 +What is the hs code for EMULIUM MELLIFERA MB (BHN BAKU OBAT) COA 189793,28399000 +What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU OBAT) COA 187350,28399000 +What is the hs code for LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU OBAT) COA 01/22GL4,28399000 +"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU OBAT) COA 01/22GL4, SAMPLE NO COMMERCIAL VALUE",28399000 +What is the hs code for ORIGINAL EXTRACT KIWI CSB (BHN BAKU OBAT) COA 02/19GAAK,28399000 +"What is the hs code for ORIGINAL EXTRACT KIWI ECH (BHN BAKU OBAT) COA 02/19GAAK, SAMPLE NO COMMERCIAL VALUE",28399000 +What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 220429092,38249999 +"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA094223,ROA092224,ROA091227",28363000 +What is the hs code for METHOCEL (R) ID2865 (BHN BAKU PEWARNA TABLET) COA D180M2P001,39123900 +What is the hs code for METHOCEL (R) ID2865 (BHN BAKU PEWARNA TABLET) COA D180M2M002,39123900 +What is the hs code for GRANULAC 200 H (BHN BAKU OBAT) COA L105711822,17021100 +What is the hs code for GRANULAC 200 H (BHN BAKU OBAT) COA L105711822,17021100 +What is the hs code for POLYOX (R) WATER SOLUBLERESINS ID166227... (BHN BAKU PEWARNA TABLET) COA 2534163994,39123900 +What is the hs code for LORATADINE USP (BHN BAKU OBAT) COA BLRD/2205013-M,29333990 +What is the hs code for BETAMETHASONE VALERATE USP 43 (BHN BAKU OBAT) COA APL/BV/01112/E-22,29372200 +What is the hs code for BETAMETHASONE VALERATE USP 43 (BHN BAKU OBAT) COA APL/BV/01112/E-22,29372200 +What is the hs code for KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0020122,29339990 +"What is the hs code for SODIUM ACETATE ANHYDROUS POWDER, USP 43 (BHN BAKU SUPPLEMEN) COA 3109954",29152910 +"What is the hs code for FERROUS SULFATE 7-HYDRATE, CRYST. (BHN BAKU MAKANAN) COA 3114122",28332920 +"What is the hs code for FERROUS SULFATE 7-HYDRATE, CRYST. (BHN BAKU MAKANAN) COA 3114122",28332920 +What is the hs code for TRIMETHOPRIM MICRONISED BP (BHN BAKU OBAT) COA TMP22040311,29335990 +What is the hs code for ADSORB AFLA (BHN BAKU UNTUK PAKAN TERNAK) COA 280,25081000 +What is the hs code for BARCROFT TM 0501 AL HYD PDR (BHN BAKU SUPPLEMEN) COA 102160002,28183000 +What is the hs code for KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 21-10-21,25070000 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21100152,29362900 +"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21100151,UT21100152",29362900 +What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL02111132,29362400 +What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL02111132,29362400 +What is the hs code for MINERAL PREMIX MILK POWDER FOR ADULTS V2 (BHN BAKU MAKANAN) COA XW92204459,21069059 +"What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT21100232,UT21100233",29362400 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21100151,29362900 +What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040043,29420000 +What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040043,29420000 +What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P1E02QA000,29420000 +What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0722010011,29420000 +What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001643582,29420000 +What is the hs code for CEFOTAXIME SODIUM EP (BHN BAKU OBAT) COA B200800,29419000 +What is the hs code for ROSUVASTATIN CALSIUM (BHN BAKU OBAT) COA RVM0860322,29359000 +What is the hs code for BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2060378,38210090 +"What is the hs code for ACARBOSE (BHN BAKU SUPPLEMEN) COA ACAP21080D,ACAP21081B",29329900 +What is the hs code for SUCRALOSE (BHN BAKU OBAT) COA 22041302,29321400 +What is the hs code for REFINED GRAPESEED OIL (BHN BAKU KOSMETIK) COA B2200126,15152919 +What is the hs code for REFINED SWEET ALMOND OIL EU PH (BHN BAKU KOSMETIK) COA B2200125,15152919 +What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2022051306,21012020 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201531,122201846",28363000 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201846,122201847",28363000 +What is the hs code for SILIGEL TM (BHN BAKU KOSMETIK) COA 2210001,38249999 +What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785011118N,38249999 +What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) COA 2111716,38249999 +What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019729N,38249999 +What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785011118N,38249999 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2133701,38249999 +What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 702019449N,38249999 +What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 2127414,38249999 +What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019919N,38249999 +What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785011295N,38249999 +What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029946N,13021990 +What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-003-Z,13021990 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977... (BHN BAKU PEWARNA TABLET) COA SH660275,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977... (BHN BAKU PEWARNA TABLET) COA SH660275,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359... (BHN BAKU PEWARNA TABLET) COA SH658164,39061090 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650023...(BHN BAKU PEWARNA TABLET) COA SH658094,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K14834... (BHN BAKU PEWARNA TABLET) COA SH658096,38249999 +What is the hs code for OPADRY (R) COMPLETE FILMCOATING SYSTEM YS-1-7040... (BHN BAKU PEWARNA TABLET) COA SH657795,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLICENTERIC SYSTEM 93A62337...(BHN BAKU PEWARNA TABLET) COA SH658162,39061090 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F32371... (BHN BAKU PEWARNA TABLET) COA SH658168,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229... (BHN BAKU PEWARNA TABLET) COA SH658229,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55015 RED(BHN BAKU PEWARNA TABLET) COA SH658172,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014.. (BHN BAKU PEWARNA TABLET) COA SH658170,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K540033...(BHN BAKU PEWARNA TABLET) COA SH658174,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B22239... (BHN BAKU PEWARNA TABLET) COA SH658100,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011...(BHN BAKU PEWARNA TABLET) COA SH658171,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B82443...(BHN BAKU PEWARNA TABLET) COA SH658101,38249999 +What is the hs code for OPADRY (R) COMPLETE FILMCOATING SYSTEM YS-1-19025-A... (BHN BAKU PEWARNA TABLET) COA SH657560,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) COA SH659474,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-22-17515..(BHN BAKU PEWARNA TABLET) COA SH658927,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229... (BHN BAKU PEWARNA TABLET) COA SH659474,38249999 +What is the hs code for OPADRY (R) QX QUICK AND FLEXIBLEFILM COATING SYSTEM... (BHN BAKU PEWARNA TABLET) COA SH657556,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET) COA SH658712,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86674... (BHN BAKU PEWARNA TABLET) COA SH657564,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-22-17515..(BHN BAKU PEWARNA TABLET) COA SH658927,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A62337..(BHN BAKU PEWARNA TABLET) COA SH658960,39061090 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET) COA SH658961,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET) COA SH659788,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-22-7719...(BHN BAKU PEWARNA TABLET) COA SH657476,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650018...(BHN BAKU PEWARNA TABLET) COA SH659125,38249999 +What is the hs code for PIROXICAM (BAHAN BAKU OBAT) COA PRX2022002M,29349990 +What is the hs code for CANDESARTAN CILEXETIL (BAHAN BAKU OBAT ) COA 5668-21-148,29339990 +What is the hs code for IRBESARTAN (BAHAN BAKU OBAT ) COA C5637-21-060,29332900 +What is the hs code for MEROPENEM TRIHYDRATE WITH SODIUM CARBONATE STERILE (BHN BAKU OBAT ) COA S0820220115,30032000 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G5122.. (BHN BAKU PEWARNA TABLET) COA GA709228,38249999 +What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING... (BHN BAKU PEWARNA TABLET) COA GA708838,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977... (BHN BAKU PEWARNA TABLET) COA GA709224,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 02F52182... (BHN BAKU PEWARNA TABLET) COA GA709237,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O6317...(BHN BAKU PEWARNA TABLET) COA GA709233,39061090 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86512... (BHN BAKU PEWARNA TABLET) COA GA709232,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET) COA 80W86629,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G54002 PINK (BHN BAKU PEWARNA TABLET) COA GA709227,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B84893 PINK (BHN BAKU PEWARNA TABLET) COA GA708298,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B28796 WHITE (BHN BAKU PEWARNA TABLET) COA GA708889,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A... (BHN BAKU PEWARNA TABLET) COA GA708954,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G52990... (BHN BAKU PEWARNA TABLET) COA GA709236,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G54002... (BHN BAKU PEWARNA TABLET) COA GA709227,38249999 +What is the hs code for PIGMENT BLEND (R) PB-665012 BROWN (BHN BAKU PEWARNA TABLET) COA GA709225,32151990 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G66945... (BHN BAKU PEWARNA TABLET) COA GA709226,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G52696... (BHN BAKU PEWARNA TABLET) COA GA709131,38249999 +What is the hs code for PIGMENT BLEND (R) PB-52366 YELLOW (BHN BAKU PEWARNA TABLET) COA GA709235,32151990 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G62544... (BHN BAKU PEWARNA TABLET) COA GA709230,38249999 +"What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 20325,20408,20429",38029090 +"What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340355,B340381,B340382",29419000 +What is the hs code for SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 22B0044700,13021950 +What is the hs code for VALERIAN DRY HYDR. EXTR. (BAHAN BAKU SUPLEMEN) COA 21B0129000,13021990 +"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102202007",28183000 +"What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M-31,0PCT (BHN BAKU OBAT) COA 102229009,102229010",28161000 +What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT19060003,32041800 +"What is the hs code for GENIVIDA(TM) TG (BHN BAKU SUPPLEMEN) COA UT21100003,UT21100004",29329900 +"What is the hs code for MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HA02900,HA02430",34024990 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA GCH,38249999 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA GEB,38249999 +What is the hs code for PROMOIS KR-30(BHN BAKU KOSMETIK) COA GDD,38249999 +What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA GBN,38249999 +What is the hs code for PROMOIS SILK-1000 (BHN BAKU KOSMETIK) COA GDH,38249999 +What is the hs code for GELLAN GUM (GELLANEER LAF) (BHN BAKU MAKANAN) COA 2205L0465,39139090 +What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1251471,38210090 +What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1251471,38210090 +What is the hs code for BACTO CASAMINO ACIDS TECHNICAL 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1207006,38210090 +What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2024471,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2352582,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2352583,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2352583,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1071038,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1071038,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1071038,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2034964,38210090 +What is the hs code for NATURAL SOURCE MIXED TOCOPHEROLS (BHN BAKU KOSMETIK) COA 220505M001,29362800 +What is the hs code for DOCUSATE SODIUM (BHN BAKU OBAT) COA SD1061131,29171900 +What is the hs code for EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) COA 1579834,38249999 +What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) COA 1580986,38249999 +What is the hs code for EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) COA 1583570,38249999 +What is the hs code for L-CARNITINE (EP GRADE)(BHN BAKU KOSMETIK)COA 10100120220173,29239000 +"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102202007,102202008",28183000 +"What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M -31.0PCT (BHN BAKU OBAT) COA 102229016,102229019",28161000 +"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102202008,102202009",28183000 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51469..(BHN BAKU PEWARNA TABLET) COA SH660357,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51469...(BHN BAKU PEWARNA TABLET) COA SH660356,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) COA SH658738,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18509..(BHN BAKU PEWARNA TABLET) COA SH660367,39061090 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751... (BHN BAKU PEWARNA TABLET) COA SH657921,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55410 RED(BHN BAKU PEWARNA TABLET) COA SH658713,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001...(BHN BAKU PEWARNA TABLET) COA SH658676,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G60929... (BHN BAKU PEWARNA TABLET) COA SH658706,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET) COA SH658712,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014...(BHN BAKU PEWARNA TABLET) COA SH658705,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-7027... (BHN BAKU PEWARNA TABLET) COA SH658988,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-7027...(BHN BAKU PEWARNA TABLET) COA SH660320,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O63173..(BHN BAKU PEWARNA TABLET) COA SH658843,39061090 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650023..(BHN BAKU PEWARNA TABLET) COA SH658809,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET) COA SH658810,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359..(BHN BAKU PEWARNA TABLET) COA SH660384,39061090 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18509..(BHN BAKU PEWARNA TABLET) COA SH660366,39061090 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A... (BHN BAKU PEWARNA TABLET) COA SH656823,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751... (BHN BAKU PEWARNA TABLET) COA SH660641,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F48105 .. (BHN BAKU PEWARNA TABLET) COA SH660642,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011.. (BHN BAKU PEWARNA TABLET) COA SH659019,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM... (BHN BAKU PEWARNA TABLET) COA SH659103,39061090 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET) COA SH660394,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUSMOISTURE BARRIER COATING.. (BHN BAKU PEWARNA TABLET) COA SH660395,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUSMOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET) COA SH660393,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359...(BHN BAKU PEWARNA TABLET) COA SH660383,39061090 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359..(BHN BAKU PEWARNA TABLET) COA SH660382,39061090 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359..(BHN BAKU PEWARNA TABLET) COA SH660381,39061090 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977..(BHN BAKU PEWARNA TABLET) COA SH658868,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM... (BHN BAKU PEWARNA TABLET) COA SH658806,39061090 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G65197... (BHN BAKU PEWARNA TABLET) COA SH658807,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977.. (BHN BAKU PEWARNA TABLET) COA SH660276,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011.. (BHN BAKU PEWARNA TABLET) COA SH658520,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G63147.. (BHN BAKU PEWARNA TABLET) COA SH658521,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE.. (BHN BAKU PEWARNA TABLET) COA SH658563,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001.. (BHN BAKU PEWARNA TABLET) COA SH658522,38249999 +What is the hs code for PIGMENT BLEND (R) PB-21158 GREEN (BHN BAKU PEWARNA TABLET) COA SH660559,32151990 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55384 RED(BHN BAKU PEWARNA TABLET) COA SH658551,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 02K19253.. (BHN BAKU PEWARNA TABLET) COA SH658552,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B84929.. (BHN BAKU PEWARNA TABLET) COA SH658553,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G63147.. (BHN BAKU PEWARNA TABLET) COA SH658521,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G63147.. (BHN BAKU PEWARNA TABLET) COA SH658521,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G63147.. (BHN BAKU PEWARNA TABLET) COA SH658521,38249999 +What is the hs code for FERRIC HYDROXIDE POLYMALTOSE COMPLEX POWDER (BHN BAKU SUPPLEMEN) COA 3116347,29400000 +What is the hs code for DICLOFENAC POTASSIUM BP 2022 (BHN BAKU OBAT) COA DFK/12040099 S/D 12040100,29224900 +"What is the hs code for DICLOFENAC SODIUM USP 44 (BHN BAKU OBAT) COA DFS/12030110, 12050182 S/D 12050187",29224900 +What is the hs code for HYUNDAI BIOLAND APRICOT EXTRACT (BHN BAKU KOSMETIK)COA PAS-011352,13021990 +What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 2022D1282,28331900 +What is the hs code for HYUNDAI BIOLAND PEACH EXTRACT (BHN BAKU KOSMETIK)COA PEA-020381,13021990 +What is the hs code for HYUNDAI BIOLAND CACTUS EXTRACT (BHN BAKU KOSMETIK) COA CAB-052921,13021990 +What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-020971,13021990 +What is the hs code for KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-051201,13021990 +What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 2022D1282,28331900 +"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-030742,HMVBD-041052",13021950 +What is the hs code for ARBUTIN (BHN BAKU KOSMETIK) COA ARP-012642,13021990 +What is the hs code for HYUNDAI BIOLAND BIO-BLACK PEARL POWDER (BHN BAKU KOSMETIK) COA PDEG-021181,38249999 +What is the hs code for BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1220607,39139090 +What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER(BHN BAKU KOSMETIK) COA MUP-021421,13021950 +What is the hs code for SENAS (BHN BAKU KOSMETIK) COA NASB-011122,21022090 +What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 2022D1282,28331900 +What is the hs code for PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3319471,33029000 +What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA LC 013-22-801,17021100 +What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2022051306,21012020 +What is the hs code for CLOTRIMAZOLE MICRONIZED (BHN BAKU OBAT ) COA 202205100104,29332900 +What is the hs code for ATORVASTATIN CALCIUM (BHN BAKU OBAT) COA M113961,29339990 +"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/05/140522,150522,160522,190522,200522",29420000 +What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 22E0807,28399000 +What is the hs code for SUPPOCIRE AM PELLETS (BHN BAKU OBAT) COA 22E1205,28399000 +What is the hs code for SUPPOCIRE BM PELLETS (BHN BAKU OBAT) COA 21E2708,28399000 +What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105711822,17021100 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11220330,29362500 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ20210554,29362300 +"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ20210554,UQ20310593",29362300 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ20310593,29362300 +What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02201004,29362400 +"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92205167,XW92205169",21069059 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 221256,38249999 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 220149,38249999 +What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 221111,13021990 +What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 221085,13021990 +What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 220495,13021990 +What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 221092,38249999 +What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 220079,13021990 +What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 220495,13021990 +What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 220154,13021990 +What is the hs code for JAGUAR HP 105 SGI 25KG CARDBOARD CARTON (BHN BAKU KOSMETIK) COA H2202023C,38249999 +What is the hs code for NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 21LNC0612SQ047,27101990 +What is the hs code for EFFERSODA (R) 12 (BHN BAKU SUPPLEMEN) COA 122201847,28363000 +What is the hs code for VITASMOOTH (R) 041 (BHN BAKU SUPPLEMEN) COA 122201660,28365010 +What is the hs code for PHARMABURST (R) 500 (BHN BAKU SUPPLEMEN) COA 122101232,21069099 +What is the hs code for SORBITOL SPECIAL TM MDF 85 (BHN BAKU SUPPLEMEN) COA 122201598,29054400 +What is the hs code for PHARMABURST (R) C1 (BHN BAKU SUPPLEMEN) COA 122201576,21069099 +What is the hs code for SORBITOL SPECIAL TM MDF 85 (BHN BAKU SUPPLEMEN) COA 122201598,29054400 +What is the hs code for AQUACOAT ECD-30 ETHYLCELLULOSE... (BHN BAKU PEWARNA TABLET) COA 2173903592,39123900 +What is the hs code for AQUACOAT CPD-30 CELLULOSE... (BHN BAKU PEWARNA TABLET) COA 2174048787,39123900 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE... (BHN BAKU PEWARNA TABLET) COA SH658813,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE... (BHN BAKU PEWARNA TABLET) COA SH658814,38249999 +What is the hs code for OPADRY (R) KB LOW VISCOSITY FILM COATING SYSTEM... (BHN BAKU PEWARNA TABLET) COA SH658847,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET) COA SH659788,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O665... (BHN BAKU PEWARNA TABLET) COA SH658848,39061090 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-22-1751.. (BHN BAKU PEWARNA TABLET) COA SH658820,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229... (BHN BAKU PEWARNA TABLET) COA SH660681,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O92157... (BHN BAKU PEWARNA TABLET) COA SH658875,39061090 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A6233...(BHN BAKU PEWARNA TABLET) COA SH658851,39061090 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229... (BHN BAKU PEWARNA TABLET) COA SH660681,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 21K58794... (BHN BAKU PEWARNA TABLET) COA SH658823,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE... (BHN BAKU PEWARNA TABLET) COA SH658871,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K580000.. (BHN BAKU PEWARNA TABLET) COA SH658873,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-2136... (BHN BAKU PEWARNA TABLET) COA SH658825,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G65003...(BHN BAKU PEWARNA TABLET) COA SH658826,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F15789... (BHN BAKU PEWARNA TABLET) COA SH659101,38249999 +What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA 0000079486,29309090 +What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA 0000079487,29309090 +What is the hs code for HYDROCORTISONE ACETATE EP/USP (BHN BAKU OBAT) COA NEHAC220301,29372200 +What is the hs code for METHYLPREDNISOLONE EP/USP (BHN BAKU OBAT) COA NMP220411,29372900 +"What is the hs code for PREDNISONE USP (BHN BAKU OBAT) COA NPD211103,NPD220310",29372100 +What is the hs code for CINNARIZINE BP/EP (BAHAN BAKU OBAT) COA CIN/06221075,29315990 +What is the hs code for RANITIDINE HYDROCHLORIDE USP (BAHAN BAKU OBAT) COA RH4970622,29321900 +What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ20317006,29420000 +What is the hs code for ALUMINIUM HYDROXIDE ACETATE POWDER (BHN BAKU SUPPLEMEN) COA 3119107,29152990 +What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2203901903,29372900 +What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2203901903,29372900 +What is the hs code for 985-L-MENTHOL CRYSTALS INDIAN NATURAL (BHN BAKU KOSMETIK) COA NFPL.MEN.21.004,29061100 +What is the hs code for TRISODIUMCITRATE DIHYDRATE FINE GRANULAR (BHN BAKU SUPPLEMEN) COA UJ217,29181400 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201847,122201848",28363000 +What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201848,28363000 +What is the hs code for EMULIUM MELLIFERA MB CAR (BHN BAKU KOSMETIK) COA 190160,28399000 +What is the hs code for EMULIUM MELLIFERA MB CAR (BHN BAKU KOSMETIK) COA 190223,28399000 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP22064032,XP22064033,XP22064034,XP22064035",29211900 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA LC013-22-801,17021100 +What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-220423,29061300 +What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP16122,28363000 +What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWDER FORM CATCOL C135(L) GRADE(B.BAKU KOSMETIK) COA 462/22,38249999 +"What is the hs code for 1,3-BUTYLENE GLYCOL, COSMETIC QUALITY(BHN BAKU KOSMETIK) COA P0622314CC",29053200 +What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) COA 7766050,38249999 +What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B090522,39123900 +What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB290522,39123900 +What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B090522,39123900 +What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB290522,39123900 +What is the hs code for LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LG120422,39123900 +"What is the hs code for DEXAMETHASONE (BHN BAKU OBAT) COA NED220602,NED220603,NED220604",29372200 +What is the hs code for AESTHEFILL V200 (POLYLACTIC ACID) COA AF220506,90189090 +"What is the hs code for AESTHEFILL V200 (POLYLACTIC ACID) COA AF220506, SAMPLE NO COMMERCIAL VALUE",90189090 +What is the hs code for SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202206-020,35040000 +What is the hs code for VC CALCIUM ASCORBATE DC (BHN BAKU SUPPLEMEN) COA HPT2202005,29362700 +What is the hs code for JOJOBA OIL VIRGIN LOW ODOUR (BHN BAKU KOSMETIK) COA 159827,15159011 +What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 2210030697,29362600 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO220202,38249999 +What is the hs code for WITCH HAZEL ORGANIC DISTILLATE 1:10 (BHN BAKU KOSMETIK) COA HAVD220605-BIO,38249999 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO220202,38249999 +What is the hs code for COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) COA ANTS220301,38249999 +What is the hs code for GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK) COA EG209-220602,13021990 +What is the hs code for HORSECHESNUT PHYTELENE EG 402 (BHN BAKU KOSMETIK) COA EG042-220101,38249999 +What is the hs code for GREENSIL (BHN BAKU KOSMETIK) COA GS220401-I,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS220202,38249999 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220302,13021990 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS220202,38249999 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO220202,38249999 +What is the hs code for COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) COA ANTS220301,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS220202,38249999 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220302,13021990 +What is the hs code for GREENSIL (BHN BAKU KOSMETIK) COA GS220401-I,38249999 +What is the hs code for HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIE220401,13021990 +What is the hs code for HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIE220602,13021990 +What is the hs code for KIGELINE (BHN BAKU KOSMETIK) COA KAF220402-B,38249999 +What is the hs code for ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (BHN BAKU KOSMETIK) COA ROSD220202-BIO,38249999 +What is the hs code for KALE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA BOV2206R1,38249999 +What is the hs code for TAMANOL BIO IL (BHN BAKU KOSMETIK) COA CIN210701-ALMBIO,38249999 +What is the hs code for MIRASIL CM5 L (BHN BAKU KOSMETIK) COA 2226WKQ615,29319049 +What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D011L9UL01,39123900 +What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180K61001,39123900 +What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180M1S001,39123900 +What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180L3B021,39123900 +What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180K61001,39123900 +What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180L51022,39123900 +What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180K61001,39123900 +What is the hs code for STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN546900,35051010 +What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) COA 1581270,38249999 +What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) COA 1583382,38249999 +What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 220202,13021990 +What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 220211,13021990 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02202018,29362400 +What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040020,29420000 +What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0922020004,29420000 +What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040020,29420000 +What is the hs code for DL-PANTHENOL 50 L (BHN BAKU KOSMETIK) COA TL02109649,29362400 +What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92205383,29420000 +What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0040349,29362500 +What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040043,29420000 +"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT21070076,UT21090088,UT22010002",29362800 +"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21120414,UT22020065",29362800 +What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001643582,29420000 +What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS3851121,29420000 +What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02109811,29362400 +"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050963 S/D 0321050968,0321050986,0321050994,0321050995",29420000 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060001,29420000 +What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0922020004,29420000 +"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050995,0321051168,0321051169",29420000 +"What is the hs code for PURIDROX COMPACTED CEFADROXIL (BHN BAKU OBAT) COA B340382,B340384,B340386",29419000 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP16122,28363000 +"What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA 21100709,21100710",29391900 +What is the hs code for HEXYLENE GLYCOL (BHN BAKU KOSMETIK) COA 20040103,29053900 +"What is the hs code for FENTACARE 1631 25 MB 200KG PLAS DR (BHN BAKU KOSMETIK ) COA ZH22E1602M,ZH22F1803M",29239000 +What is the hs code for OPAGLOS (R) TABLET CORESEALANT PRODUCT OPAGLOS... (BHN BAKU PEWARNA TABLET) COA DT732553,32151990 +What is the hs code for OPATINT (R) CONCENTRATED COLOR DISPERSION G-50659 BLUE (BHN BAKU PEWARNA TABLET) COA DT732525,32151990 +What is the hs code for OPATINT (R) CONCENTRATED COLOR DISPERSION G-12021.. (BHN BAKU PEWARNA TABLET) COA DT732526,32151990 +What is the hs code for OPACODE (R) MONOGRAMMING INK S-1-277001 BLACK (BHN BAKU PEWARNA TABLET) COA DT733199,32151990 +What is the hs code for OPALUX (R) OPAQUE COLOR COATING CONCENTRATE... (BHN BAKU PEWARNA TABLET) COA DT733258,32151990 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP16122,28363000 +What is the hs code for ATORVASTATIN CALCIUM (BHN BAKU OBAT) COA M113962,29339990 +What is the hs code for ATORVASTATIN CALCIUM (BHN BAKU OBAT) COA M113961,29339990 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977... (BHN BAKU PEWARNA TABLET) COA GA709377,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET) COA GA709938,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229... (BHN BAKU PEWARNA TABLET) COA GA709864,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55015... (BHN BAKU PEWARNA TABLET) COA GA709942,38249999 +What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC... (BHN BAKU PEWARNA TABLET) COA GA709958,39061090 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET) COA GA709939,38249999 +"What is the hs code for SERASENSE SF CM5 (BAHAN BAKU SUPLEMEN) COA SA20616032,SA20616033",39100090 +"What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330... (BHN BAKU SUPLEMEN) COA 2AX2206040,2AX2207003",29181400 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA173223,28363000 +What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) COA 321CAA0023,38249999 +What is the hs code for COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-2206128,29146200 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2004477,38210090 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2046556,38210090 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1188932,38210090 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1272847,38210090 +What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1229930,38210090 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02E073M,38210090 +What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 1357822,38210090 +What is the hs code for BOTTLE HEMOGLOBIN FREEZE DRIED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2046463,38210090 +What is the hs code for BOTTLE RAPPAPORT VASSILIADIS MSRV 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2097356,38210090 +What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1133939,38210090 +What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2038852,38210090 +What is the hs code for BOTTLE YEAST CARBON BASE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1348724,38210090 +What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1307340,38210090 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02E073M,38210090 +What is the hs code for BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1264672,38210090 +What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2060432,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2067201,38210090 +What is the hs code for BOTTLE ENTEROCOCCOSEL AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2082306,38210090 +What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2060510,38210090 +"What is the hs code for BOTTLE TRYPTOSE PHOSPHATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2053882",38210090 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2060544,38210090 +What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2124239,38210090 +What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2124239,38210090 +What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2038654,38210090 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2004477,38210090 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1173733,38210090 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2034944,38210090 +What is the hs code for BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1334236,38210090 +What is the hs code for BOTTLE MALT EXTRACT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2059951,38210090 +"What is the hs code for BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 153552",38210090 +What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1096987,38210090 +What is the hs code for BOTTLE TRYPTONE GLUCOSE EXT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2060588,38210090 +What is the hs code for BOTTLE YEAST CARBON BASE 100 G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1348724,38210090 +What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1307340,38210090 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02E073M,38210090 +What is the hs code for BOTTLE OF BASAL MEDIUM 500GR(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1223658,38210090 +What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1216783,38210090 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2028750,38210090 +What is the hs code for BOTTLE CHROMAGAR CANDIDA 500GM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2032975,38210090 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2031326,38210090 +What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2118764,38210090 +What is the hs code for BOTTLE M-PA-C AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2066339,38210090 +What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2124239,38210090 +What is the hs code for TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2130569,38210090 +What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01E013M,38210090 +"What is the hs code for KIT CRYSTAL ENTERIC /NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2068621,..",38210090 +"What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052209,G05052217",47063000 +What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C YELLOW ...(BHN BAKU PEWARNA TABLET) COA WP848266:BB2368,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C YELLOW...(BHN BAKU PEWARNA TABLET) COA WP848266:BB2368,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5396 ERYTHROSINE ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP844565:1,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5177 FD&C YELLOW...(BHN BAKU PEWARNA TABLET) COA WP852905:BB3911,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5627 FD&C BLUE...(BHN BAKU PEWARNA TABLET) COA WP855382:BB5688,32151990 +What is the hs code for LAKE PIGMENT (R) 6010 D&C YELLOW...(BHN BAKU PEWARNA TABLET) COA WP853294:BB4295,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5406 FD&C RED...(BHN BAKU PEWARNA TABLET) COA WP851883:BB3825,32151990 +What is the hs code for LAKE PIGMENT (R) 6010 D&C YELLOW...(BHN BAKU PEWARNA TABLET) COA WP853294:BB4295,32151990 +What is the hs code for PHTHALAVIN (R) ENTERIC COATING POLYMER...(BHN BAKU PEWARNA TABLET) COA WP853883,39059990 +What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830011016N,38249999 +What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785011118N,38249999 +What is the hs code for HELIOGEL TM (BHN BAKU KOSMETIK) COA 2133001,38249999 +What is the hs code for HELIOGEL TM (BHN BAKU KOSMETIK) COA 2201402,38249999 +What is the hs code for LANABLUE TM PARABEN FREE (BHN BAKU KOSMETIK) COA 788021070N,38249999 +What is the hs code for LANACHRYS 2B PF (BHN BAKU KOSMETIK) COA 793059577N,38249999 +What is the hs code for DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834011019N,29224900 +What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 702019449N,38249999 +What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799039934N,38249999 +What is the hs code for BOREALINE (R) AURORA (BHN BAKU KOSMETIK) COA BX1220017,38249999 +What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 213916,29224900 +What is the hs code for DEFENSCALP TM (BHN BAKU KOSMETIK) COA 785071018N,38249999 +What is the hs code for ECOGEL TM (BHN BAKU KOSMETIK) COA 2207101,38249999 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2133703,38249999 +What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029946N,13021990 +"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000203944,0000203945,0000203950",29362900 +"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000203950,0000203951",29362900 +What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000203950,29362900 +What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210126 S/D 0708210129,29420000 +What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040017,29420000 +"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000203951,0000204555,0000204556",29362900 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT22040131,29362800 +What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0722010011,29420000 +What is the hs code for VITAMIN PREMIX MILK POWDER FOR ADULTS (BHN BAKU MAKANAN) COA XW92206118,21069059 +"What is the hs code for MINERAL PREMIX MILK POWDER FOR ADULTS V2 (BHN BAKU MAKANAN) COA XW92206119,XW92206120",21069059 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02112843,29362400 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02112843,29362400 +What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI22040013,29362900 +"What is the hs code for FERROUS GLUCONATE, POWDER, USP 43 (BHN BAKU SUPPLEMEN) COA 3118317",29181600 +"What is the hs code for COPPER(II) GLUCONATE, FINE POWDER, USP 43 (BHN BAKU SUPPLEMEN) COA 3112568",29181600 +"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA158227,ROA157227",28363000 +"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA161227,ROA164226",28363000 +What is the hs code for TUBE EGG YOLK ENRICHMENT50PCT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2103717,38210090 +What is the hs code for VIAL SHIGELLA ANTIS POLY A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0198678,38210090 +What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2109248,38210090 +What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1279394,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2095202,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2104103,38210090 +"What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2034559,..",38210090 +What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2101523,38210090 +What is the hs code for HU NAIVE/MEM T CELL PANEL 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2049693,38210090 +What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2101523,38210090 +What is the hs code for HU IL-4 APC 8D4-8 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1173686,38210090 +What is the hs code for HU CD8 APC-CY7 SK1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2087793,38210090 +What is the hs code for HU CD3 FITC HIT3A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2019528,38210090 +"What is the hs code for CYTOFIX/CYTOPER SOLN KIT (MEDIA TUK PENGEMBANGAN MIKRO ORGANISME), BATCH 2004703",38210090 +"What is the hs code for HU CD28 NALE CD28.2 500UG (MEDIA TUK PENGEMBANGAN MIKRO ORGANISME), BATCH 1256634",38210090 +What is the hs code for STAIN BUFFER FBS 500ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1308379,38210090 +"What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2088418",38210090 +What is the hs code for VIAL SHIGELLA ANTIS POLY C2 LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1308737,38210090 +What is the hs code for VIAL SHIGELLA ANTIS POLY B LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1217555,38210090 +What is the hs code for VIAL SHIGELLA ANTIS POLY C LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2021558,38210090 +What is the hs code for MS CD4 PERCP-CY.5 SK3 RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1294299,38210090 +What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0219127,38210090 +What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2060591,38210090 +What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2109248,38210090 +"What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B04E067M,B05E111M",38210090 +What is the hs code for SODIUM CARBONATE IPH (BHN BAKU SUPPLEMEN) COA DOC1572221,28363000 +"What is the hs code for ZINC SULFATE 1-HYDRATE, CRYST., PH.EUR.10.ED (BHN BAKU OBAT) COA 3117179",28332920 +What is the hs code for SORBITOL SOLUTION 70 PCT CRYSTALLINE (BHN BAKU KOSMETIK) COA 2223P191,29054400 +What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 2210030697,29362600 +What is the hs code for MIRASIL CM5 L (BHN BAKU KOSMETIK) COA 2227WKQ115,29319049 +What is the hs code for HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2520422,29397900 +What is the hs code for PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) COA PH12160222,38249999 +What is the hs code for ESOMEPRAZOLE MAGNESIUM TRIHYDRATE (BAHAN BAKU OBAT) COA B900100,29333990 +What is the hs code for BARCROFT TM 0501 AL HYD PDR (BHN BAKU SUPPLEMEN) COA 102160002,28183000 +What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2203901903,29372900 +"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG220527,MCVG220607",29362700 +What is the hs code for ISOFLAVONES 150 BDF - 10KG (BHN BAKU KOSMETIK) COA 0663878,38249999 +"What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 220665,221726",29329900 +What is the hs code for ALPINIAWHITE (BHN BAKU KOSMETIK) COA 221080,13021990 +"What is the hs code for CITRIC ACID ANHYDROUS (BHN BAKU SUPLEMEN) COA 3AX2206021,3AX2206018",29181400 +"What is the hs code for MAGNESIUM CARBONATE, EXTRA LIGHT, POWDER (BHN BAKU OBAT) COA 3118231",28369990 +"What is the hs code for NICLOSAMIDE ANHYDROUS (BHN BAKU PAKAN HEWAN) COA 20220310,20220308,",29242990 +What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL02202021,29362400 +What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22010021,29362400 +What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22010021,29362400 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12202018,29362900 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11220326,29362500 +What is the hs code for V003400 (POST BORDER) COA XW92206283,21069059 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11220331,QZ11220332",29362500 +"What is the hs code for MINERAL PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92205553,XW92205554,XW92205555",21069059 +What is the hs code for VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92205552,21069059 +"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92206283,XW92206284",21069059 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060087,29420000 +What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00765702,29420000 +What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00765702,29420000 +What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321051227 S/D 0321051231,29420000 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060087,29420000 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02202021,29362400 +What is the hs code for ACTIPONE(R) WHITE TEA GW (BHN BAKU KOSMETIK) COA 10300051,13021950 +What is the hs code for EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300022,13021950 +What is the hs code for LOTUS FROM VIETNAM ORGANIC OILY EXTRACT (BHN BAKU KOSMETIK) COA NEN220503-HBIO,38249999 +What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM220602-PGH,38249999 +What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM220602-PGH,38249999 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220302,13021990 +What is the hs code for COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) COA ANTS220301,38249999 +What is the hs code for DULSE PHYTELENE EG 745 (BHN BAKU KOSMETIK) COA EG745-211003-GS-B,38249999 +What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA VIV211201-BGBIO,38249999 +What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM220101-PGH,38249999 +What is the hs code for PROPOLIS HYDROGLYCERINED EXTRACT 80 (BHN BAKU KOSMETIK) COA PRO211103-GL80,29420000 +What is the hs code for WITCH HAZEL ORGANIC DISTILLATE 1:10 (SB) (BHN BAKU KOSMETIK) COA HAVD220605-BIO,38249999 +What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) COA 205274,38249999 +What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 207176,38249999 +What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 207176,38249999 +What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) COA 206276,38249999 +What is the hs code for IRON GLYCINATE (BHN BAKU UTK PAKAN TERNAK) COA 62142,29224900 +What is the hs code for MANGANESE GLYCINATE (BHN BAKU UTK PAKAN TERNAK) COA 62143,29224900 +What is the hs code for ZINC GLYCINATE (BHN BAKU UTK PAKAN TERNAK) COA 62140,29224900 +What is the hs code for MEG-3 30 N-3 INF OIL (BHN BAKU SUPPLEMEN) COA TS00019942,29362500 +"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 21-12-21,22-12-21",25070000 +"What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340388,B340389,B340397",29419000 +"What is the hs code for FERROUS SULFATE, DRIED, POWDER, USP43 (BHN BAKU OBAT) COA 3116119",28332920 +"What is the hs code for FERRIC PYROPHOSPHATE,24-26PCT FE POWDER,FCC12 (BHN BAKU MAKANAN) COA 3117765",28353990 +"What is the hs code for ZINC BISGLYCINATE POWDER,FOR THE USE IN FOOD SUPPLEMENTS (BHN BAKU SUPLEMEN) COA 3116220",29224900 +What is the hs code for KETOPROFEN (BHN BAKU OBAT) COA 200597,29183000 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02203028,32041800 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPPLEMEN) COA UT22020009,32041800 +What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22020011,29362500 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPPLEMEN) COA UT22020009,32041800 +What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22020011,29362500 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPPLEMEN) COA UT22040064,29362100 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPPLEMEN) COA UT22020009,32041800 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPPLEMEN) COA UT22020009,32041800 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPPLEMEN) COA UT22040064,29362100 +What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT22020015,29362500 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPPLEMEN) COA UT22020009,32041800 +What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPPLEMEN) COA UT22040064,29362100 +"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02203036,UE02205050",32041800 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT21090085,29362800 +What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN547191,35051010 +What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN547192,35051010 +What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN547193,35051010 +What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN547194,35051010 +"What is the hs code for MIRASIL DM5 L (BHN BAKU KOSMETIK) COA 2224FF2615,2222FF2515",39100090 +"What is the hs code for MIRASIL D-DML LV A2 (BHN BAKU KOSMETIK) COA 2226HK07XA,2226HK06XA,2226HK01XA",39100090 +What is the hs code for DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2206001,28352510 +What is the hs code for MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50467,29061100 +What is the hs code for KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0210622,29339990 +What is the hs code for MOXIFLOXACIN HYDROCHLORIDE (BHN BAKU OBAT) COA MP0070921,29334990 +"What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-002-Z,JUVE-004-Z",13021990 +What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK)COA CHP1220607,39139090 +What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (VLMW) (BHN BAKU KOSMETIK)COA CHP2220620,39139090 +What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK)COA GSC-K-050921,13021990 +What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK)COA OSLP-070172,13021990 +What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK)COA HMVBD-041052,13021950 +What is the hs code for HYUNDAI BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK)COA NMSP-D-010612,39139090 +What is the hs code for HYUNDAI BIOLAND GLA-40 (BHN BAKU KOSMETIK) COA GLCP-020252,38249999 +What is the hs code for HYUNDAI BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK)COA CPG-142832,38249999 +What is the hs code for HYUNDAI BIOLAND TEA TREE EXTRACT (BHN BAKU KOSMETIK)COA MASL-042221,13021990 +What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK)COA AACN-021152,29224900 +What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK)COA GSC-K-050921,13021990 +What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK)COA OSLP-070172,13021990 +What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK)COA BHA-050411,38249999 +What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP22063331 S/D XP22063334,29211900 +What is the hs code for MAGNESIUM L-HYDROGENASPARTATE 2-HYDRATE (BHN BAKU OBAT) COA 3117361,29224900 +What is the hs code for AQUACOAT ECD-30 ETHYLCELLULOSE... (BHN BAKU PEWARNA TABLET) COA 2174083830,39123900 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA LC 014-22-801,17021100 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA LC014-22-801,17021100 +What is the hs code for TRIMETHOPRIM MICRONISED BP (BHN BAKU OBAT) COA TMP22070503,29335990 +What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02202021,29362400 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT21120005,29362900 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02102013,29362900 +What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000202239,29362900 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02202148,29362800 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA QZ11220332,29362500 +What is the hs code for VITAMIN MINERAL PREMIX FOR BISCUIT (BHN BAKU MAKANAN) COA XW92206071,21069059 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02202146,29362800 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ20412084,29362200 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT22050094,29362400 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT21120073,32041800 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT22050094,29362400 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ20412083,29362200 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ20412083,29362200 +"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000205201,0000205217",29362900 +What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0040349,29362500 +What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0040349,29362500 +"What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA GCH,GGI",38249999 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA GGI,38249999 +What is the hs code for PROMOIS SILK-1000 (BHN BAKU KOSMETIK) COA GFI,38249999 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA GFC,38249999 +What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA GDA,38249999 +"What is the hs code for PARSOL ZX (BHN BAKU KOSMETIK) COA 200212012, SAMPLE NO COMMERCIAL VALUE",29420000 +What is the hs code for HU CD45RA BV510 HI100 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1292082,38210090 +What is the hs code for HU IFN-GMA BV421 B27 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1303289,38210090 +What is the hs code for HU IL-2 PE MQ1-17H12 100TST (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1271086,38210090 +What is the hs code for HU IL-4 APC 8D4-8 50TST (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2059272,38210090 +What is the hs code for CD4 PERCP-CY5.5 SK3 RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2038970,38210090 +What is the hs code for HU CD45RA BV510 HI100 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1292082,38210090 +What is the hs code for THIOCARE (R) H101 71 PCT (BHN BAKU KOSMETIK) COA 0000079481,29309090 +What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000079482,29309090 +What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000079483,29309090 +What is the hs code for FERROUS FUMARATE (BHN BAKU OBAT) COA 2022/175,29171900 +"What is the hs code for DESONIDE MICRONIZED (BHN BAKU OBAT) COA NB3339M,NC0506M",29372900 +What is the hs code for TRIAMCINOLONE ACETONIDE MICRONIZED (BHN BAKU OBAT) COA NC1602M,29372200 +What is the hs code for TRIPROLIDINE HCL USP (BHN BAKU OBAT) COA 2-KI-0011120,29333990 +What is the hs code for METOCLOPRAMIDE HYDROCHLORIDE USP (BHN BAKU OBAT) COA 22007MARII,29242990 +What is the hs code for METHYLCOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/0622017,29362600 +What is the hs code for HEXYLENE GLYCOL (BHN BAKU KOSMETIK) COA 20040108,29053900 +What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180M3N002,39123900 +What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180M3O001,39123900 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18509...(BHN BAKU PEWARNA TABLET) COA SH66145,39061090 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O6650...(BHN BAKU PEWARNA TABLET) COA SH661414,39061090 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O63000..(BHN BAKU PEWARNA TABLET) COA SH661408,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751.. (BHN BAKU PEWARNA TABLET) COA SH661409,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET) COA SH661424,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51469... (BHN BAKU PEWARNA TABLET) COA SH661423,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55410 RED(BHN BAKU PEWARNA TABLET) COA SH661427,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55410 RED(BHN BAKU PEWARNA TABLET) COA SH661428,38249999 +"What is the hs code for SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202207-010,",35040000 +What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF (BHN BAKU SUPPLEMEN) COA UE02206017,32030010 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02205051,32041800 +What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ20217004,29420000 +What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ20317007,29420000 +What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ20217004,29420000 +What is the hs code for BACTO MALT EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1103512,38210090 +What is the hs code for BACTO PEPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2053079,38210090 +What is the hs code for BACTO TRYPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1263533,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2352583,38210090 +What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1285442,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2034964,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2034964,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2034963,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1075037,38210090 +What is the hs code for CD SUPREME FSM 500GR EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2400756,38210090 +What is the hs code for KF-54HV (18KG) (BHN BAKU KOSMETIK) COA 207044,38249999 +What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) COA 206151,38249999 +What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) COA 206276,38249999 +What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) COA 206277,38249999 +What is the hs code for KSG-210 (16KG) (BHN BAKU KOSMETIK) COA 204248,38249999 +What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) COA 207233,38249999 +What is the hs code for SWERTIANIN-P (BHN BAKU KOSMETIK) COA 220433,13021990 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229... (BHN BAKU PEWARNA TABLET) COA GA713132,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229... (BHN BAKU PEWARNA TABLET) COA GA713132,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE... (BHN BAKU PEWARNA TABLET) COA GA713432,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751... (BHN BAKU PEWARNA TABLET) COA GA713473,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751... (BHN BAKU PEWARNA TABLET) COA GA713473,38249999 +What is the hs code for LIPOID S 20 (BHN BAKU SUPPLEMEN) COA 572000-2220140,29232011 +"What is the hs code for MIAMI SCG(S) (BHN BAKU KOSMETIK) COA 220712A5,220723A5",34023990 +What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 200881,29332900 +"What is the hs code for IMWITOR (R) GMIS (BAHAN BAKU KOSMETIK) COA 202085,203087",38249999 +What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA MLAH0280522,29341000 +What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 21290063,30039000 +What is the hs code for DEFENSCALP TM PF (BHN BAKU KOSMETIK) COA 785081244N,38249999 +What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 702019449N,38249999 +What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799031197N,38249999 +What is the hs code for DEFENSCALP TM PF (BHN BAKU KOSMETIK) COA 785081244N,38249999 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2133701,38249999 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2133702,38249999 +What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029946N,13021990 +What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829011015N,29224900 +What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799031197N,38249999 +"What is the hs code for AL HYD WET GEL VAC 20 (BHN PAKAN HEWAN TERNAK) COA 202200130,202200109",28183000 +What is the hs code for RUGENER DREIKRONEN HEILKREIDE 25K (BHN BAKU KOSMETIK) COA 6102125400,25090000 +What is the hs code for SPD-Z5 (1KG) (BHN BAKU KOSMETIK) COA 110695,38249999 +"What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02203640,TL02203641",29362400 +"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ20310597,UQ20410642",29362300 +What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI22040013,29362900 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ20412084,29362200 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT22010154,29362900 +What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20220303,29362800 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ20310597,29362300 +What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL02202021,29362400 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT22050094,29362400 +"What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ11213382,UQ11213383",29362200 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ11213383,29362200 +"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000204551,0000204552,0000205217,0000205397",29362900 +What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321051231 S/D 0321051233,29420000 +What is the hs code for DL-PANTHENOL 50 L (BHN BAKU KOSMETIK) COA TL02109649,29362400 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02204031,29362400 +What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00765703,29420000 +What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0420040043,29420000 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02201004,29362400 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060088,29420000 +"What is the hs code for D-PANTHENOL (POST BORDER) COA TL02201004,TL02202021,TL02204031",29362400 +What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF21239005,29420000 +What is the hs code for DL-A-TOCOPHERYL ACETATE (POST BORDER) COA UT22040131,29362800 +What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF21239005,29420000 +What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321051233 S/D 0321051235,29420000 +"What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS3851121,HS5840222",29420000 +"What is the hs code for STAY-C (R) 50 (POST BORDER) COA UE02201006,UE02202012",29362700 +What is the hs code for CATECHINS TEAVIGO 4 KG (BHN BAKU KOSMETIK) COA 207201,21012020 +What is the hs code for ML0974-SE0980 CUSTOM BLENDING VEGETABLES BLEND A (BHN BAKU OBAT) COAL-12712,13021950 +What is the hs code for LIDOCAINE BASE (BHN BAKU OBAT) COA 200181,29242990 +What is the hs code for LIDOCAINE HCL (BHN BAKU OBAT) COA 200304,29242990 +What is the hs code for HEXYLENE GLYCOL (BHN BAKU KOSMETIK) COA 20040115,29053900 +"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 26-10-21147,11-01-22,25-10-21",38029090 +What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000079834,29309090 +What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000079835,29309090 +What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000079836,29309090 +What is the hs code for THIOCARE (R) H105 83 PCT (BHN BAKU KOSMETIK) COA 0000079837,29309090 +"What is the hs code for THIOCARE (R) H105 83 PCT (BHN BAKU KOSMETIK) COA 0000079838,SAMPLE NO COMMERCIAL VALUE",29309090 +"What is the hs code for THIOCARE (R) H103 43 PCT (BHN BAKU KOSMETIK) COA 0000079839, SAMPLE NO COMMERCIAL VALUE",29309090 +"What is the hs code for THIOCARE (R) H100 99 PCT (BHN BAKU KOSMETIK) COA 0000079840, SAMPLE NO COMMERCIAL VALUE",29309090 +"What is the hs code for THIOCARE (R) H101 71 PCT (BHN BAKU KOSMETIK) COA 0000079841, SAMPLE NO COMMERCIAL VALUE",29309090 +"What is the hs code for THIOCARE (R) H100L 80 PCT (BHN BAKU KOSMETIK) COA 0000079842, SAMPLE NO COMMERCIAL VALUE",29309090 +What is the hs code for ISDN 10PCT IN NACL (DISPERSION) (BHN BAKU OBAT) COA 2208915,30039000 +What is the hs code for SODIUM VALPROATE (BAHAN BAKU OBAT) COA 457306(968),29159090 +What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2104103,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2053886,38210090 +"What is the hs code for VIAL ISOVITALEX ENRICHMENT 2ML 5EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2081927,....",38210090 +What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2060591,38210090 +What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0219127,38210090 +What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2109248,38210090 +What is the hs code for HU IFN-GMA BV421 B27 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1303289,38210090 +What is the hs code for HU IL-2 PE MQ1-17H12 100TST (MEDIA UTK (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1271086,38210090 +What is the hs code for HU CD8 APC-CY7 SK1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2087793,38210090 +What is the hs code for HU CD3 FITC HIT3A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2019528,38210090 +What is the hs code for HU CD28 NALE CD28.2 500NG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1256634,38210090 +What is the hs code for HU CD45RA BV510 HI100 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH1292082,38210090 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02205050,32041800 +What is the hs code for MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT22020015,29362500 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT22051179,29362100 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT22051179,UT22051180",29362100 +"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02205050,UE02205051",32041800 +What is the hs code for B-CAROTENE 10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT22050004,32041800 +What is the hs code for MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT22020015,29362500 +"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22030043,UT22030044",29362100 +"What is the hs code for COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPPLEMEN) COA TL02205693",29362700 +"What is the hs code for GENIVIDA(TM) TG (BHN BAKU SUPPLEMEN) COA UT21100003,UT21100004",29329900 +What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK)COA OHA-082572,39139090 +What is the hs code for HYUNDAI BIOLAND GLA-40 (BHN BAKU KOSMETIK) COA GLCP-030172,38249999 +What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK)COA CHP1220719,39139090 +What is the hs code for HYUNDAI BIOLAND JEJU TANGERINE EXTRACT (BHN BAKU KOSMETIK) COA GTUP-T-033052,38249999 +What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK)COA MUP-021421,13021950 +What is the hs code for HYUNDAI BIOLAND SENAS (BHN BAKU KOSMETIK)COA NASB-011122,21022090 +What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK)COA HMVBD-041052,13021950 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP20022,28363000 +"What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP17822,MTP17122",28363000 +What is the hs code for BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP18522,28363000 +What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1348303,38210090 +What is the hs code for BOTTLE AGAR NOBLE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2074166,38210090 +What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2165877,38210090 +"What is the hs code for BOTTLE LEGIONELLA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0112510",38210090 +What is the hs code for BOTTLE XLT4 AGAR BASE 500 G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCHA. 1216783,38210090 +What is the hs code for BOTTLE SODIUM DESOXYCHOLATE 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1279594,38210090 +What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2060506,38210090 +What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2088727,38210090 +What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2095371,38210090 +"What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2082495",38210090 +What is the hs code for BOTTLE TODD HEWITT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2060551,38210090 +What is the hs code for BOTTLE MIDDLEBROOK 7H10 BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2046511,38210090 +What is the hs code for BOTTLE DNASE TEST AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1236633,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 8 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2090369,38210090 +What is the hs code for BOTTLE M ENDO BROTH MF 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2068110,38210090 +What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0314278,38210090 +What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2143788,38210090 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2172773,38210090 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1306233,38210090 +What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2083009,38210090 +What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2123997,38210090 +What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1348303,38210090 +What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1224924,38210090 +What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2053778,38210090 +What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2143788,38210090 +What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1292710,38210090 +What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 2096996,38210090 +What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1350021,38210090 +"What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2011124",38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2067201,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2104097,38210090 +What is the hs code for BOTTLE AGAR NOBLE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2074166,38210090 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2104107,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1188089,38210090 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2067270,38210090 +What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2026294,38210090 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2088708,38210090 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2047633,38210090 +What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1347249,38210090 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2066085,38210090 +What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2038654,38210090 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2067270,38210090 +"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1319633,.",38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1188089,38210090 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1272665,38210090 +"What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0350990,2060316",38210090 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1285556,38210090 +"What is the hs code for BOTTLE TAT BROTH BASE 500 G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1349644,2038183,...",38210090 +What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2117655,38210090 +What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2088865,38210090 +What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2038654,38210090 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2103834,38210090 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1236443,38210090 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2123358,38210090 +What is the hs code for BOTTLE BILE SALTS NO 3 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1243829,38210090 +What is the hs code for SACHET GASPAK EZ CAMPY CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2055003,38210090 +What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 2152330,38210090 +What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2088277,38210090 +What is the hs code for LOOPS INOCULATING 10/TUBE 1 MICROLITER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2128977,38210090 +What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2124082,38210090 +What is the hs code for PLATE TSA IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2158967,38210090 +What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 2152330,38210090 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2158967,38210090 +"What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 2152330,217...",38210090 +"What is the hs code for PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 120621/007343,080321/007122",38249999 +What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2022051306,21012020 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201892,122201893",28363000 +What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) COA WP860741,38249999 +What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) COA WP860742,38249999 +What is the hs code for SUPPOCIRE NA PELLETS CAR (BHN BAKU SUPPLEMEN) COA 22E1907,28399000 +What is the hs code for SUPPOCIRE NA PELLETS CAR (BHN BAKU SUPPLEMEN) COA 22E2009,28399000 +What is the hs code for SUPPOCIRE A PELLETS CAR (BHN BAKU SUPPLEMEN) COA 22E0607,28399000 +What is the hs code for SUPPOCIRE BM PELLETS CAR (BHN BAKU SUPPLEMEN) COA 21E5008,28399000 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 02F52182...(BHN BAKU PEWARNA TABLET) COA GA711622,38249999 +What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA710197,39061090 +What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA710197,39061090 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B54445 PINK (BHN BAKU PEWARNA TABLET) COA GA710198,38249999 +What is the hs code for OPADRY (R) KB LOW VISCOSITY FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA710199,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) COA 80W68912,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G62343...(BHN BAKU PEWARNA TABLET) COA GA711593,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A...(BHN BAKU PEWARNA TABLET) COA GA712174,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131...(BHN BAKU PEWARNA TABLET) COA GA710557,38249999 +What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA711948,39061090 +What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA711948,39061090 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03Z59026...(BHN BAKU PEWARNA TABLET) COA GA710559,38249999 +What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA711693,39061090 +"What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340392,B340393",29419000 +"What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334826,B334832",29419000 +What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M114027,29339990 +What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M114027,29339990 +"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP20022,MTP18722",28363000 +What is the hs code for BACTO PEPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2053079,38210090 +What is the hs code for BACTO PEPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2053079,38210090 +What is the hs code for BACTO TRYPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1263533,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2352582,38210090 +What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1285442,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1075037,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1075037,38210090 +What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1251471,38210090 +What is the hs code for LAKE PIGMENT HT (R) 5287 FD&CYELLOW 6/SUN ...(BHN BAKU PEWARNA TABLET) COA WP848267:BB2370,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5177 FD&CYELLOW #5/TAR ...(BHN BAKU PEWARNA TABLET) COA WP844300:BA9551,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5396 ERYTHROSINE ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP844563,32151990 +What is the hs code for LAKE PIGMENT (R) 6010 D&CYELLOW 10 ALUMIN...(BHN BAKU PEWARNA TABLET) COA WP853290:BB4289,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5287 FD&CYELLOW 6/SUN...(BHN BAKU PEWARNA TABLET) COA WP848267:BB2370,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5627 FD&CBLUE 2/INDIGO...(BHN BAKU PEWARNA TABLET) COA WP855383:BB5689,32151990 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS220703,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS220202,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS220703,38249999 +What is the hs code for LICORICE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA GLG220701-BGBIO,38249999 +What is the hs code for LICORICE ORGANIC OILY EXTRACT (SUNFLOWER OIL) (BHN BAKU KOSMETIK) COA GLGT2207R1-HBIO,38249999 +"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU SUPPLEMEN) COA 102202009,102202024",28183000 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201849,122201850",28363000 +What is the hs code for MIRANOL ULTRA C-32 MB 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP207392MB,34024990 +What is the hs code for NABUMETONE USP (BAHAN BAKU OBAT) COA H-0080122,29145000 +"What is the hs code for VC SODIUM ASCORBATE REGULAR (BHN BAKU MAKANAN) COA HPN2203170,HPN2204158,HPN2204163 S/D HPN2204",29362700 +What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 220202,13021990 +What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 220402,13021990 +What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 220211,13021990 +What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 220215,13021990 +What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 220202,13021990 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA711754,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA713159,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA711755,39061090 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA712222,39061090 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA712223,39061090 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER...(BHN BAKU PEWARNA TABLET) COA GA711819,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA712218,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51469...(BHN BAKU PEWARNA TABLET) COA GA712219,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55410...(BHN BAKU PEWARNA TABLET) COA GA712220,38249999 +What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA711008,39061090 +What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA711008,39061090 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B62323...(BHN BAKU PEWARNA TABLET) COA GA713030,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359..(BHN BAKU PEWARNA TABLET) COA GA711560,39061090 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359...(BHN BAKU PEWARNA TABLET) COA GA711560,39061090 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001...(BHN BAKU PEWARNA TABLET) COA GA711029,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O92157..(BHN BAKU PEWARNA TABLET) COA GA711030,39061090 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O92157...(BHN BAKU PEWARNA TABLET) COA GA711030,39061090 +What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA711008,39061090 +What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA711008,39061090 +What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA711751,39061090 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001...(BHN BAKU PEWARNA TABLET) COA SH661839,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) COA SH661840,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE BARRIER ...(BHN BAKU PEWARNA TABLET) COA SH661848,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA SH661849,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA SH661847,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA SH661846,39061090 +What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) COA SH661841,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA SH661842,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) COA SH661845,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-22-7719...(BHN BAKU PEWARNA TABLET) COA SH661838,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-7027...(BHN BAKU PEWARNA TABLET) COA SH661843,38249999 +What is the hs code for ETORIXOCIB (BHN BAKU OBAT) COA ETC-P/22004,29333990 +"What is the hs code for FENTACARE 2231 EF 25KG PAPER BOX (BHN BAKU KOSMETIK ) COA ZH22G2402,ZH22G2602",34029019 +"What is the hs code for FERROUS SULFATE, DRIED, POWDER, USP43 (BHN BAKU MAKANAN) COA 3107512",28332920 +"What is the hs code for SODIUM FEREDETATE, POWDER, BP 2021 (BHN BAKU SUPPLEMEN) COA 3119807",29224900 +What is the hs code for SODIUM SELENITE IN CARRIER (BHN BAKU MAKANAN) COA 3106231,28429010 +What is the hs code for HYDROCORTISONE ACETATE EP/USP (BHN BAKU OBAT) COA NEHAC220410,29372100 +What is the hs code for PREDNISOLONE BP/USP (BHN BAKU OBAT) COA NPL220207,29372100 +What is the hs code for BISOPROLOL FUMARATE USP(BAHAN BAKU OBAT)COA LT-OBFA/003/21-22,29221990 +What is the hs code for HU CCR7 (CD197) PE-CY7 2-L1-A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2161787,38210090 +What is the hs code for VIAL TTC SOLUTION 1 PCT 1X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2137380,38210090 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55041...(BHN BAKU PEWARNA TABLET) COA GA714430,38249999 +What is the hs code for B-CAROTENE 10PCT CWS (POST BORDER) COA UT21120073,32041800 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11220332,29362500 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT22050024,29362800 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU MAKANAN) COA UT22030003,29362900 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT21120073,32041800 +What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02202021,29362400 +"What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92207064,XW92207065",21069059 +What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040056,29420000 +"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040056,0222040076",29420000 +"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040012,0222040043,0222040074",29420000 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210129,0708210130,0708210138,0708210140,0708210141",29420000 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O66912..(BHN BAKU PEWARNA TABLET) COA GA714514,39061090 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2097342,38210090 +What is the hs code for SODIUM CARBONATE IPH (BHN BAKU SUPPLEMEN) COA DOC1852221,28363000 +What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201849,28363000 +What is the hs code for MATCHA ( BHN BAKU KOSMETIK) COA CSP 22003 EOU,38249999 +What is the hs code for NIACINAMIDE USP (NIACINAMIDE USP/EP) (BHN BAKU KOSMETIK)COA 22-23/NMD(P)/00117 S/D 00125,29362900 +What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0066373,38249999 +What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0066375,38249999 +What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0067079,38249999 +What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0067672,38249999 +What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0067675,38249999 +What is the hs code for MANNITOL POWDER USP/EP-MANNO (BHN BAKU SUPPLEMEN) COA 302205034,29054300 +What is the hs code for CEFOTAXIME SODIUM (BAHAN BAKU OBAT ) COA3042203058,29419000 +What is the hs code for LISINOPRIL DIHYDRATE USP (BAHAN BAKU OBAT ) COA C5170-22-146,29339990 +"What is the hs code for METAMIZOLE SODIUM REGULAR GRADE (BHN BAKU OBAT) COA 2206751,2206820,2206823,2206863",29331900 +What is the hs code for IBUPROFEN (BHN BAKU OBAT) COA 22067333,29163990 +"What is the hs code for PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M598406,M598407,M598414,M598415",29411019 +What is the hs code for LINAGLIPTIN (BHN BAKU OBAT) COA LG0140622,29332900 +What is the hs code for ETORIXOCIB (BHN BAKU OBAT) COA ETC-P/22004,29333990 +"What is the hs code for ACRYPOL 980 (20KG) (BAHAN BAKU KOSMETIK) COA 11522009,11522010,11522011",39069099 +"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/07/100722-1,170722,180722,190722",29420000 +"What is the hs code for SODIUM STARCH GLYCOLATE BP (BHN BAKU OBAT) COA ASGP/07/150722,170722",29420000 +"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-1280822,S-A-1290822",29334910 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) COA WP858555,38249999 +What is the hs code for PX TRS1 WITHOUT K1 (BHN BAKU MAKANAN) COA XW92207129,21069059 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02204194,29362800 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060087,29420000 +What is the hs code for PARSOL ZX (BHN BAKU KOSMETIK) COA 191002012,29420000 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060087,29420000 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22030098,29362800 +What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P1F03QA000,29420000 +What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92207238,29420000 +What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92207239,29420000 +What is the hs code for JAGUAR C 162 SGI CARDBOARD BOX 25 KG (BHN BAKU KOSMETIK) COA MJAC22171B,38249999 +What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA M8B115,28321000 +"What is the hs code for CEFOTAXIME SODIUM STERILE USP (BAHAN BAKU OBAT) COA B200200,B200300",29419000 +What is the hs code for DIACEREIN EP (BHN BAKU OBAT) COA DCE/40020722,29189900 +What is the hs code for ASTABIO AR10 (ASTAXANTHIN OIL 10PCT) (BHN BAKU OBAT) COA 2205101,32030010 +What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-004-Z,13021990 +What is the hs code for SOYA LECITHIN (POST BORDER) COA TY2220712-16,29232011 +What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02206506,29362700 +"What is the hs code for VITAMIN A WATER-MISCIBLE, TYPE 100 (BHN BAKU SUPPLEMEN) COA UT22040064",29362100 +"What is the hs code for FRUITFLOW II SD (BHN BAKU SUPPLEMEN) COA 22T0027700,22T0027800",29362900 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02203641,29362400 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ20412085,29362200 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02203641,29362400 +"What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02202021,TL02204039",29362400 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ20412085,29362200 +What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02204039,29362400 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02203641,29362400 +What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0922020029,29420000 +What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0922020029,29420000 +What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000205403,29362900 +"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000205403,0000205404",29362900 +What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000205404,29362900 +"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000205404,0000205405",29362900 +What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000205405,29362900 +"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321051238,0321051239",29420000 +What is the hs code for CETIRIZINE HYDROCHLORIDE (BHN BAKU OBAT) COA 21038CZ6RII,29315990 +"What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340395,B340396,B340398",29419000 +What is the hs code for TRISODIUMCITRATE DIHYDRATE FINE GRANULAR (BHN BAKU SUPPLEMEN) COA UJ224,29181400 +What is the hs code for CENTELLA ASIATICA EXTRACT 95PCT ( BHN BAKU KOSMETIK) COA GKP 22068 EOU,13021950 +What is the hs code for 8552-507-K05 LIPEX 512 VEGETABLE OIL (BHN BAKU KOSMETIK) COA 0002530077,15162049 +"What is the hs code for MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 608-1,609-1",34024990 +"What is the hs code for FERROUS GLUCONATE,POWDER,USP 43 (BHN BAKU OBAT) COA 3118067",29181600 +"What is the hs code for FERROUS FUMARATE, FINE POWDER (BHN BAKU OBAT) COA 3119505",29171900 +"What is the hs code for SODIUM FEREDETATE,POWDER,BP 2021 (BHN BAKU OBAT) COA 3119499",29224900 +"What is the hs code for DIPOTASSIUM PHOSPHATE POWDER (BHN BAKU OBAT) COA 3117153,3117154",28352400 +What is the hs code for SELOHVITA C (BHN BAKU OBAT) COA 3117740,28429010 +What is the hs code for MAGNESIUM L-HYDROGENASPARTATE 2-HYDRATE (BHN BAKU OBAT) COA 3117277,29224900 +"What is the hs code for FERROUS GLUCONATE HYDRATE, POWDER, PH.EUR.10.ED (BHN BAKU OBAT) COA 3119329",29181600 +What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052225,47063000 +What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052225,47063000 +What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG220729,29362700 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA GFC,38249999 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA GGI,38249999 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA GGI,38249999 +What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA GDA,38249999 +What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA GDA,38249999 +What is the hs code for SORBOLAC (R) 400 (BHN BAKU OBAT) COA L103840822,17021100 +What is the hs code for DANDRILYS (BHN BAKU KOSMETIK) COA DAN220602-Z,38249999 +What is the hs code for INCA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK) COA II220806-AI-D-BIO,38249999 +What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-210503-GS,38249999 +What is the hs code for WITCH HAZEL ORGANIC DISTILLATE 1:10 (SB) (BHN BAKU KOSMETIK) COA HAVD220706-BIO,38249999 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO220202,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK)COA EG543-220702,38249999 +What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-210503-GS,38249999 +What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM220602-PGH,38249999 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220803,13021990 +What is the hs code for JAGUAR HP 105 SGI 25KG CARDBOARD CARTON (BHN BAKU KOSMETIK) COA H2205090H,38249999 +What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20220501,29362800 +What is the hs code for ASCORBIC ACID 90PCT GRANULATION (BHN BAKU SUPPLEMEN) COA WB22019030,29362700 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22010622,29362100 +"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22010633,WB22010634",29362100 +"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU SUPPLEMEN) COA 102202024,102202025",28183000 +What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M -31.0PCT (BHN BAKU SUPPLEMEN) COA 102229022,28161000 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201893,122201894",28363000 +What is the hs code for PHARMABURST (R) C1 (BHN BAKU OBAT) COA 122201577,21069099 +What is the hs code for VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 122201660,28365010 +What is the hs code for PHARMABURST (R) 500 (BHN BAKU OBAT) COA 122201691,21069099 +What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201850,28363000 +What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) COA 208161,38249999 +What is the hs code for KF-6017(17KG) (BHN BAKU KOSMETIK) COA 207177,38249999 +What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) COA 208280,38249999 +What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) COA 208280,38249999 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP21122,28363000 +What is the hs code for PROCATEROL HCL HEMIHYDRATE MICRONIZED (BHN BAKU OBAT) COA 8600119M1,29337900 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A18597..(BHN BAKU PEWARNA TABLET) COA GA714888,39061090 +What is the hs code for DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2208001,28352510 +What is the hs code for BIOCELLACT CHAMOMILLA BD (BHN BAKU KOSMETIK) COA 212370,13021990 +What is the hs code for DERMAVEIL (BHN BAKU KOSMETIK) COA 221122,13021990 +What is the hs code for YUZU CERAMIDE B (BHN BAKU KOSMETIK) COA 221416,13021990 +What is the hs code for DOKUDAMI LIQUID B (BHN BAKU KOSMETIK) COA 221082,13021990 +What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 221769,13021990 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2138670,38210090 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2067255,38210090 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 1349557,38210090 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2088708,38210090 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2123358,38210090 +What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2026294,38210090 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2097346,38210090 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2103834,38210090 +What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2046187,38210090 +"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1188089",38210090 +"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1236443,2005526",38210090 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2060544,38210090 +What is the hs code for SACHET GASPAK EZ CAMPY CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2055003,38210090 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2138670,38210090 +What is the hs code for BOTTLE MYP AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2208037,38210090 +What is the hs code for BOTTLE D-MANNITOL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2179301,38210090 +"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2104133",38210090 +What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2104109,38210090 +What is the hs code for BOTTLE GLYCEROL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2173051,38210090 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2173788,38210090 +What is the hs code for BOTTLE M-PA-C AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2179375,38210090 +What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2118793,38210090 +What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2145135,38210090 +What is the hs code for BOTTLE M-PA-C AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2179375,38210090 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2097346,38210090 +What is the hs code for BOTTLE KF STREPTOCOCCUS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2214351,38210090 +What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1229930,38210090 +"What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2074843",38210090 +What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1216783,38210090 +"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 5 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1236415",38210090 +What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2053778,38210090 +"What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2082495",38210090 +What is the hs code for BOTTLE YEAST CARBON BASE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2137773,38210090 +What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1307340,38210090 +"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1188089",38210090 +What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2117655,38210090 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 2034966,38210090 +What is the hs code for BOTTLE SABOURAUD AGAR MODIFIED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2060412,38210090 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B04E123M,38210090 +What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2053778,38210090 +What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0245118,38210090 +What is the hs code for PAIL R2A AGAR 2KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1243543,38210090 +What is the hs code for BOTTLE NUTRIENT AGAR W/MUG 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2088655,38210090 +What is the hs code for LIPOID PPL-600 (BHN BAKU SUPPLEMEN) COA 577200-2210231,29232011 +What is the hs code for METHOCEL E15 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D011M2NL03,39123900 +What is the hs code for METHOCEL K4M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464164938,39123900 +What is the hs code for METHOCEL A15 PREMIUM LV METHYLCELLULOSE...(BHN BAKU PEWARNA TABLET) COA D180L7E022,39123900 +What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180M27003,39123900 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA712347,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA713836,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA712349,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA713827,39061090 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) COA GA713777,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA712351,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G54002..(BHN BAKU PEWARNA TABLET) COA GA712352,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) COA GA713970,38249999 +What is the hs code for PIGMENT BLEND (R) PB-665012 BROWN (BHN BAKU PEWARNA TABLET) COA GA713767,32151990 +What is the hs code for OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA712353,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA713990,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA712354,38249999 +What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA713768,39061090 +What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA713768,39061090 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA714475,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA713867,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA712355,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA GA714154,38249999 +What is the hs code for OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA713764,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA GA713988,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA713989,38249999 +What is the hs code for PIGMENT BLEND (R) PB-52153 YELLOW (BHN BAKU PEWARNA TABLET) COA GA714028,32151990 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM ...(BHN BAKU PEWARNA TABLET) COA GA712357,39061090 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA714427,38249999 +What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE02202003,29362100 +What is the hs code for ANTIOXIDANT PREMIX FOR GUMMY (BHN BAKU MAKANAN) COA XW92208221,21069059 +"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060087,0522060048",29420000 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060048,29420000 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060048,29420000 +What is the hs code for PREGABALIN (BHN BAKU OBAT) COA PU3310921,29224900 +What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBNH220342,29221990 +What is the hs code for HYUNDAI BIOLAND COMPAREX (BHN BAKU KOSMETIK) COA COEX-041301,38249999 +What is the hs code for HYUNDAI BIOLAND TEA TREE EXTRACT (BHN BAKU KOSMETIK) COA MASL-042221,13021990 +What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1220803,39139090 +What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-041052,13021950 +What is the hs code for HYUNDAI BIOLAND TUMERIC ROOT EXTRACT (BHN BAKU KOSMETIK) COA WRGC-011682,38249999 +What is the hs code for HYUNDAI BIOLAND CUCURBITA EXTRACT (BHN BAKU KOSMETIK) COA CMB-013042,38249999 +What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-050411,38249999 +What is the hs code for HYUNDAI BIOLAND CACTUS EXTRACT (BHN BAKU KOSMETIK) COA CAB-012752,13021990 +What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-023132,13021990 +What is the hs code for HYUNDAI BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSFAC-011982,13021950 +What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-050921,13021990 +What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-012322,13021990 +What is the hs code for HYUNDAI BIOLAND NEWAPLE (BHN BAKU KOSMETIK) COA NWPB-032421,38249999 +What is the hs code for HYUNDAI BIOLAND SENAS (POST BORDER) COA NASB-01112,21022090 +"What is the hs code for FERROUS SULFATE, DRIED, POWDER, USP43 (BHN BAKU OBAT) COA 3115661",28332920 +What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPPLEMEN) COA WB22030330,29362100 +"What is the hs code for CYTOFIX/CYTOPERM SOLN KIT (MEDIA TUK PENGEMBANGAN MIKRO ORGANISME), BATCH 2010108",38210090 +What is the hs code for HU TH1/TH2/TH17 CBA KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1344320,38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2111967,38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0128385,38210090 +What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1049084,38210090 +What is the hs code for BOTTLE B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2066217,38210090 +What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2046564,38210090 +"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2095202,...",38210090 +"What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1231987,..",38210090 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2097025,38210090 +What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2109248,38210090 +What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2104127,38210090 +What is the hs code for VIAL SHIGELLA ANTIS POLY A1 LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2161354,38210090 +What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2104127,38210090 +"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2104103",38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2053886,38210090 +"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2167252",38210090 +What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT 10X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2174091,38210090 +What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT 10X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2174091,38210090 +What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2104127,38210090 +What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 2204114,38249999 +What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830011016N,38249999 +What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830011016N,38249999 +What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 213916,29224900 +What is the hs code for DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834011326N,29224900 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2133702,38249999 +What is the hs code for KETOROLAC TROMETHAMOL/TROMETHAMINE (BHN BAKU OBAT) COA 22100269,29339990 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20220823,17029019 +What is the hs code for OXOMEMAZINE HYDROCHLORIDE (BHN BAKU OBAT) COA HXHCPQ001,29343000 +What is the hs code for OPACODE (R) MONOGRAMMING INK S-1-180000 WHITE (BHN BAKU PEWARNA TABLET) COA WP861109,32151990 +What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF (BHN BAKU SUPPLEMEN) COA UE02206017,32030010 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT22050011,32030010 +What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 220202,13021990 +What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 220202,13021990 +"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 220211,220402",13021990 +What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 220402,13021990 +What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 220215,13021990 +What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 220215,13021990 +What is the hs code for OPADRY (R) TF TITANIUM FREE MOISTURE BARRIER FILM..(BHN BAKU PEWARNA TABLET) COA GA716003,38249999 +What is the hs code for TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA S7257,29225090 +What is the hs code for SILYMARIN (BHN BAKU SUPLEMEN) COA 22S0033304,13021950 +What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 21S0191800,13021950 +What is the hs code for CENTELLA ASIATICA/PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 22S0097300,13021950 +What is the hs code for P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 21S0232100,13021990 +What is the hs code for BILBERRY (V. MYRTILLUS) ET EX 36PCT (BHN BAKU SUPLEMEN) COA 22S0183902,13021990 +What is the hs code for BILBERRY (V. MYRTILLUS) ET EX 36PCT (BHN BAKU SUPLEMEN) COA 22S0183902,13021990 +What is the hs code for BILBERRY (V. MYRTILLUS) ET EX 36PCT (BHN BAKU SUPLEMEN) COA 22S0183902,13021990 +What is the hs code for SILYMARIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 22B0054100,13021950 +What is the hs code for BUTCHERBROOM DRY HYDR EX.9-11 (BHN BAKU SUPLEMEN) COA 21B0051000,13021990 +What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA 0000080129,29309090 +What is the hs code for EUXYL K 720 CAN 10 KG (BHN BAKU KOSMETIK) COA 1584891,38249999 +What is the hs code for EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) COA 1582604,38249999 +What is the hs code for EUXYL K 903 CAN 10 KG (BHN BAKU KOSMETIK) COA 1581875,38249999 +What is the hs code for EUXYL K 940 CAN 10 KG (BHN BAKU KOSMETIK) COA 1576588,38249999 +What is the hs code for EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) COA 1586325,38249999 +"What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) COA 1583461,1583499",38249999 +What is the hs code for SENSIDIN DO CAN 10 KG (BHN BAKU KOSMETIK) COA 1579588,38249999 +What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) COA 1584708,38249999 +What is the hs code for NEO EXTRAPONE (R) LEMON (BHN BAKU KOSMETIK) COA 10300019,13021950 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11220402,29362500 +What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02201482,29362700 +"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02201012,UE02201013",32041800 +What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040074,29420000 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060048,29420000 +What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040074,29420000 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02205054,29362400 +What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0421040082,29420000 +What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0922020031,29420000 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02205054,29362400 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060048,29420000 +What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0040349,29362500 +What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0922020031,29420000 +"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00765707,VE00766186",29420000 +What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P1F07QA000,29420000 +What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES2110623,29420000 +What is the hs code for PREMIX VITAMIN MINERAL CP (POST BORDER) COA XW92208088,21069059 +What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122201977,29054300 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) COA GA714382,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) COA GA714751,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G52990...(BHN BAKU PEWARNA TABLET) COA GA714383,38249999 +What is the hs code for OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA708748,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131...(BHN BAKU PEWARNA TABLET) COA GA714385,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B84893...(BHN BAKU PEWARNA TABLET) COA GA714858,38249999 +What is the hs code for OPADRY (R) TF TITANIUM FREE MOISTURE BARRIER FILM...(BHN BAKU PEWARNA TABLET) COA GA714942,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G61097...(BHN BAKU PEWARNA TABLET) COA GA714612,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A18597..(BHN BAKU PEWARNA TABLET) COA GA714888,39061090 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A18597..(BHN BAKU PEWARNA TABLET) COA GA714888,39061090 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019...(BHN BAKU PEWARNA TABLET) COA GA714388,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) COA GA714751,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55041 ...(BHN BAKU PEWARNA TABLET) COA GA714430,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA GA715186,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G63147...(BHN BAKU PEWARNA TABLET) COA GA714947,38249999 +What is the hs code for OPADRY (R) EZ EASY SWALLOW FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA714763,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G57708...(BHN BAKU PEWARNA TABLET) COA GA713924,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014...(BHN BAKU PEWARNA TABLET) COA GA713990,38249999 +What is the hs code for PIGMENT BLEND (R) PB-66511 BROWN (BHN BAKU PEWARNA TABLET) COA GA715002,32151990 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A62337..(BHN BAKU PEWARNA TABLET) COA GA714953,39061090 +What is the hs code for ESOMEPRAZOLE MAGNESIUM USP (BHN BAKU OBAT) COA ESM/2208305,29333990 +What is the hs code for OPALUX (R) OPAQUE COLOR COATING CONCENTRATE AS-R-... (BHN BAKU PEWARNA TABLET) COA DT735075,32151990 +What is the hs code for OPACODE (R) MONOGRAMMING INK S-1-277001 BLACK (BHN BAKU PEWARNA TABLET) COA DT734633,32151990 +What is the hs code for OPALUX (R) OPAQUE COLOR COATING CONCENTRATE AS-1537 PINK (BHN BAKU PEWARNA TABLET) COA DT735076,32151990 +What is the hs code for STARCH 1500 (R) PARTIALLYPREGELATINIZED MAIZE...(BHN BAKU PEWARNA TABLET) COA IN547410,35051010 +What is the hs code for SODIUM ACID PYROPHOSPHATE FOOD GRADE (BHN BAKU MAKANAN) COA 09220715,28353990 +What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105713322,17021100 +What is the hs code for CAPSULAC (R) 60 (BHN BAKU OBAT) COA L100412722,17021100 +What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104313222,17021100 +What is the hs code for VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 122201661,28365010 +What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN547853,35051010 +What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN547966,35051010 +What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN547860,35051010 +What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN547855,35051010 +What is the hs code for VIT MIN MENGNIU UHT MILK V5 (BHN BAKU MAKANAN) COA XW92208569,21069059 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ20510674,29362300 +What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22030063,29362400 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT22010007,29362800 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT22010007,29362800 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210142,0708210144,0708210145,0708210146",29420000 +"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000205405,0000205406",29362900 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22050200,29362800 +"What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS5860322,HS5870322",29420000 +What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02109811,29362400 +What is the hs code for NYSTATIN MICRONIZED (BHN BAKU OBAT) COA C132093,29419000 +What is the hs code for FLUOROMETHOLONE MICRONISED USP BP JP (BHN BAKU OBAT) COA 2201540844,29372200 +What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) COA 208162,38249999 +What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 207177,38249999 +"What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) COA 208280,208281",38249999 +What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) COA 208280,38249999 +What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) COA 207942,38249999 +What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) COA 208244,38249999 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP24122,28363000 +"What is the hs code for BICAR PHARMA EXCIPIENT 0/13...(BHN BAKU SUPPLEMEN) COA MTP10222,MTP17022,MTP16022, SAMPLE NO...",28363000 +What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000080185,29309090 +What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000080186,29309090 +What is the hs code for THIOCARE (R) H105 83 PCT (BHN BAKU KOSMETIK) COA 0000080187,29309090 +What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA 20220816,17023010 +"What is the hs code for CITRIC ACID ANHYDROUS (BHN BAKU SUPLEMEN) COA 3AX2209012,1AX2208512",29181400 +What is the hs code for WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK) COA EG138-210901,38249999 +What is the hs code for WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK) COA EG138-220801,38249999 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO220202,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) COA EG543-220702,38249999 +What is the hs code for WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK) COA EG138-220801,38249999 +What is the hs code for ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (SB) (BHN BAKU KOSMETIK) COA ROSD220603-BIO,38249999 +What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2203641990,29372900 +What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE EP/USP (BHN BAKU OBAT) COA NEDNA220811,29372200 +"What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 20701,20712,20727",38029090 +What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA MLAH0310622,29341000 +What is the hs code for LIGHT MAGNESIUM CARBONATE (BHN BAKU MAKANAN) COA 3122338,28369990 +"What is the hs code for TRIPOTASSIUM CITRATE 1-HYDRATE, CRYST.,PH.EUR.10 ED.USP43 (BHN BAKU OBAT) COA 3122359",29181400 +"What is the hs code for COPPER SULFATE, POWDER, PH.EUR.10.ED. (BHN BAKU OBAT) COA 3111010",28332500 +What is the hs code for CHOLINE L-BITARTRATE (BAHAN BAKU OBAT) COA 3025593,29231000 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202002,122202003",28363000 +What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA715083,39061090 +What is the hs code for CITRIC ACID MONOHYDRATE (CAM) GRANULAR 8-40 MESH E330 (BHN BAKU KOSMETIK) COA 1MT2105030,29181400 +What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) COA 7766052,38249999 +What is the hs code for PALMEROL 1498 MYRISTYL ALCOHOL/MB (BHN BAKU KOSMETIK) COA 1A02022,29051900 +What is the hs code for IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA 477/22,38029090 +What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB060722,39123900 +What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB060722,39123900 +What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B290622,39123900 +What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B290622,39123900 +What is the hs code for LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LG120822,39123900 +What is the hs code for BILBERRY (V. MYRTILLUS) ET EX 36PCT (BHN BAKU SUPLEMEN) COA 22S0208500,13021990 +"What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 22100448,22100449",29221990 +"What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340399,B340401,B340419",29419000 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201850,122201851",28363000 +What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201851,28363000 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202003,122202017",28363000 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202015,122202016",28363000 +"What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512148,G02512236",47069200 +What is the hs code for NONIVAMIDE (SYNTHETIC CAPSAICIN) (BHN BAKU KOSMETIK) COA 20220905,29241990 +What is the hs code for CEFOTAXIME SODIUM (BHN BAKU OBAT) COA 3042203058,29419000 +What is the hs code for ESCITALOPRAM OXALATE (BHN BAKU OBAT) COA 5689-21-013,29329900 +What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-220705,29397900 +What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) COA 321CAA0023,38249999 +What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA F02921UG,29053200 +What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-005-Z,13021990 +What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-005-Z,13021990 +What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL02205481,29362700 +"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02202020,UE02203029",32041800 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ20410652,29362300 +What is the hs code for RIBOFLAVIN 5-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2111125 S/D UEB2111127,29362300 +What is the hs code for VITAMIN PREMIX MILK POWDER FOR ADULTS (BHN BAKU MAKANAN) COA XW92208037,21069059 +"What is the hs code for STAY-C (R) 50 (POST BORDER) COA UE02201002,UE02202011",29362700 +"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060043,0522060042",29420000 +What is the hs code for MANGANESE(II)-SULFATE 1-HYDRATE (BHN BAKU OBAT) COA 3122126,29181600 +"What is the hs code for COPPER SULFATE, POWDER, PH.EUR.10.ED (BHN BAKU OBAT) COA 3104245-01, SAMPLE NO COMMERCIAL VALUE",28332500 +"What is the hs code for POTASSIUM IODIDE AND CARRIER (BHN BAKU OBAT) COA 3117712, SAMPLE NO COMMERCIAL VALUE",28276000 +What is the hs code for VIT. A PALM. 1.0 M + VIT. D3 100'000 (BHN BAKU MAKANAN) COA UT22040146,29362100 +What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02208531,29362700 +What is the hs code for VITAMIN B12 CRYST FOOD GRADE (BHN BAKU KOSMETIK) COA 012203015,29362600 +What is the hs code for BACTO PEPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2173492,38210090 +What is the hs code for BACTO TRYPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1280083,38210090 +What is the hs code for BACTO TRYPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1280083,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2420322,38210090 +What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2094440,38210090 +What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1285442,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1075037,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1075037,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1075037,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1110920,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1110920,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1110920,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1110920,38210090 +What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA EDS/CC1190B,29349990 +What is the hs code for LABRAFIL M 1944 CS (BHN BAKU SUPPLEMEN) COA 190659,28399000 +What is the hs code for TEFOSE 63 BF (BHN BAKU SUPPLEMEN) COA 190648,28399000 +What is the hs code for TEFOSE 63 BF (BHN BAKU SUPPLEMEN) COA 190657,28399000 +What is the hs code for TRANSCUTOL P BF (BHN BAKU SUPPLEMEN) COA 190825,28399000 +What is the hs code for LEMON SECRETS (LEMON 40 BRIX) CSB (BHN BAKU KOSMETIK) COA 01/22GL4,28399000 +"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) CSB (BHN BAKU KOSMETIK) COA 01/22GL4, SAMPLE NO COMMERCIAL VALUE",28399000 +What is the hs code for CETYL PALMITATE PELLETS CAR (BHN BAKU SUPPLEMEN) COA 186578,28399000 +What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO BP (BHN BAKU KOSMETIK) COA 189962,28399000 +What is the hs code for MONOPROPYLENE GLYCOL (BHN BAKU KOSMETIK) COA PG(S)220813,29053200 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) COA GA716714,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) COA GA716702,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-7003...(BHN BAKU PEWARNA TABLET) COA GA716404,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55041 RED (BHN BAKU PEWARNA TABLET) COA GA716161,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA GA716335,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K580000...(BHN BAKU PEWARNA TABLET) COA GA716542,38249999 +What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA716394,39061090 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014...(BHN BAKU PEWARNA TABLET) COA GA716261,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620041...(BHN BAKU PEWARNA TABLET) COA GA716262,38249999 +What is the hs code for PIGMENT BLEND (R) PB-52366 YELLOW (BHN BAKU PEWARNA TABLET) COA GA714306,32151990 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A...(BHN BAKU PEWARNA TABLET) COA GA714974,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 85G620014...(BHN BAKU PEWARNA TABLET) COA GA715069,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F19250...(BHN BAKU PEWARNA TABLET) COA GA715260,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE BARRIER...(BHN BAKU PEWARNA TABLET) COA GA716335,38249999 +"What is the hs code for METHYLCOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/0822025,SLL/MC/0822025",29362600 +What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA M4D120,28321000 +"What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA M4D120,M9G127",28321000 +What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA M9G127,28321000 +What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA M9G127,28321000 +What is the hs code for HYUNDAI BIOLAND COMPAREX (BHN BAKU KOSMETIK) COA COEX-013082,38249999 +What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012682,38249999 +What is the hs code for HYUNDAI BIOLAND DM 3 COMPLEX (BHN BAKU KOSMETIK) COA ANFE-010292,13021990 +What is the hs code for HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-040572,13021990 +What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012682,38249999 +What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012682,38249999 +What is the hs code for HYUNDAI BIOLAND FERMENTED KOREAN SOYBEAN SOLUTION (BHN BAKU KOSMETIK) COA TWAW-012692,38249999 +What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-112092,39139090 +What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA M9G127,28321000 +What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-220912,29061300 +What is the hs code for L-GLUTAMIC ACID (FCC GRADE) PURITY 99PCT UP (BHN BAKU MAKANAN) COA 1000094531/220908,29224900 +What is the hs code for HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2520822,29397900 +What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02208530,29362700 +What is the hs code for CLOPIDOGREL BISULFATE USP 44 (BHN BAKU OBAT) COA CLOPI/12060196,29349990 +What is the hs code for GREEN TEA FAIRTRADE DISTILLATE (BHN BAKU KOSMETIK) COA 22070268,38249999 +"What is the hs code for MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL220912,MCCPOL220915",29094900 +What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG220901,29362700 +What is the hs code for PROMOIS SILK-1000 (BHN BAKU KOSMETIK) COA GFI,38249999 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA GFC,38249999 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA GGI,38249999 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA GGI,38249999 +What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA GDB,38249999 +What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA220901,38249999 +What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA220901,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) COA EG543-220702,38249999 +What is the hs code for UNIMER U-151 (BHN BAKU KOSMETIK) COA VO00005211,39059990 +What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464151491,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464151491,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180K9G001,39123900 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA GA717458,38249999 +What is the hs code for ESOMEPRAZOLE SODIUM STERILE (BAHAN BAKU OBAT) COA SI/EPZ/00050722,29333990 +What is the hs code for PANTOPRAZOLE SODIUM (STERILE) BAHAN BAKU OBAT SI/PPZ/00890822,29333990 +What is the hs code for CETYL PALMITATE PELLETS CAR (BHN BAKU OBAT) COA 191445,28399000 +What is the hs code for PRECIROL ATO 5 CAR (BHN BAKU OBAT) COA 190960,28399000 +What is the hs code for LACTOFIL MOIST CAR (BHN BAKU OBAT) COA Z13360024,28399000 +What is the hs code for CHRONO CHARDY (BHN BAKU KOSMETIK) COA 220039,13021990 +What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 221569,13021990 +What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 221479,13021990 +"What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 221726,222375",29329900 +What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN547845,35051010 +What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN547842,35051010 +What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN547854,35051010 +What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN547849,35051010 +What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180K9G001,39123900 +What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D011LBLL03,39123900 +What is the hs code for METHOCEL E4M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180M26011,39123900 +What is the hs code for C47-051 SUNCROMA TITANIUM DIOXIDE (BHN BAKU KOSMETIK) COA D0XT06,32061110 +What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 2210060792,29362600 +What is the hs code for SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA L202209-018,35040000 +"What is the hs code for MINERAL PREMIX MILK POWDER FOR ADULTS V2 (BHN BAKU MAKANAN) COA XW92208575,XW92208576",21069059 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11220701,QZ11220706",29362500 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12204016,29362900 +What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00766186,29420000 +What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010078,29420000 +"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000205406,0000205407",29362900 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22050186,29362800 +What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001670395,29420000 +What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0922020031,29420000 +What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0421040082,29420000 +What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS5870322,29420000 +What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF22165008,29420000 +What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0040349,29362500 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22050186,29362800 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22050200,29362800 +What is the hs code for NUTRASWEETM NATURAL (BHN BAKU MAKANAN) COA MAM2209181,29389000 +"What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP20722,MTP20622",28363000 +What is the hs code for BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP21922,28363000 +"What is the hs code for BICAR PHARMA API HIGH PURITY 0/13... (BHN BAKU SUPPLEMEN) COA MTP08422,MTP18422, SAMPLE NO COMM",28363000 +"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22080652,WB22080655",29362100 +What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799031197N,38249999 +What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829011471N,29224900 +What is the hs code for BIOPHILIC TM H MB (BHN BAKU KOSMETIK) COA 2206902,38249999 +What is the hs code for GREYVERSE TM (BHN BAKU KOSMETIK) COA 833011270N,29224900 +What is the hs code for HELIOFEEL TM 22 MB (BHN BAKU KOSMETIK) COA 2131301,38249999 +What is the hs code for LANABLUE TM PARABEN FREE (BHN BAKU KOSMETIK) COA 788021070N,38249999 +What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019877N,38249999 +What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029946N,13021990 +What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829011471N,29224900 +What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830011026N,38249999 +What is the hs code for DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834011326N,29224900 +What is the hs code for EXO-P TM (BHN BAKU KOSMETIK) COA 715031272N,38249999 +What is the hs code for LANACHRYS 2B PF (PRESERVATIVE-3379305-P1K (BHN BAKU KOSMETIK) COA 793051022N,38249999 +What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029946N,13021990 +What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029946N,13021990 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201894,122202015",28363000 +"What is the hs code for LIGHT MAGNESIUM CARBONATE POWDER, BP 2021 (BHN BAKU OBAT) COA 3122338",28369990 +What is the hs code for KP-561P (16KG) (BHN BAKU KOSMETIK) COA 209151,38249999 +What is the hs code for KP-561P (16KG) (BHN BAKU KOSMETIK) COA 209151,38249999 +What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) COA 209248,38249999 +What is the hs code for KF-54HV (18KG) (BHN BAKU KOSMETIK) COA 209046,38249999 +What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 208179,38249999 +What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) COA 208280,38249999 +What is the hs code for KP-561P (16KG) (BHN BAKU KOSMETIK) COA 209151,38249999 +What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) COA 209250,38249999 +What is the hs code for VITAMIN E (BHN BAKU KOSMETIK) COA 201202206204,29362800 +What is the hs code for BOTTLE PHENOL RED LACTOSE BR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2215070,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2228563,38210090 +What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 2221937,38210090 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2061186,38210090 +What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2081022,38210090 +What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2158101,38210090 +What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2137560,38210090 +What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1215037,38210090 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2157420,38210090 +What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2067255,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1257857,38210090 +What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2158101,38210090 +What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2143804,38210090 +What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2158101,38210090 +What is the hs code for BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1229957,38210090 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2145565,38210090 +What is the hs code for SACHET GASPAK EZ CAMPY CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2173803,38210090 +"What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1340967,.",38210090 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2066085,38210090 +What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2038654,38210090 +What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1350021,38210090 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2034966,38210090 +"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2046617,...",38210090 +"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2074958,2172773",38210090 +"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1272665,...",38210090 +What is the hs code for TSA TM WLP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2199934,38210090 +What is the hs code for BOTTLE BIGGY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1166930,38210090 +What is the hs code for BOTTLE MOTILITY TEST MEDIUM BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2067250,38210090 +What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2104109,38210090 +What is the hs code for BOTTLE MICRO INOCULUM BROTH 500 G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1075951,38210090 +What is the hs code for BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9337678,38210090 +What is the hs code for BOTTLE CLED AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2214292,38210090 +What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1348303,38210090 +What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1216783,38210090 +What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2088727,38210090 +What is the hs code for BOTTLE MICRO ASSAY CULTURE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335689,38210090 +What is the hs code for BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2217600,38210090 +What is the hs code for BOTTLE YEAST CARBON BASE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2137773,38210090 +What is the hs code for BOTTLE OF BASAL MEDIUM 500GR(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1223658,38210090 +What is the hs code for BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1264672,38210090 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 2179372,38210090 +What is the hs code for BOTTLE DEXTROSE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1350021,38210090 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2034966,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2074156,38210090 +"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1188089,2214259",38210090 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2143794,38210090 +What is the hs code for METHOCEL E5 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2444151392,39123900 +What is the hs code for METHOCEL K4M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464186398,39123900 +What is the hs code for METHOCEL A15 PREMIUM LV METHYLCELLULOSE...(BHN BAKU PEWARNA TABLET) COA D180M11022,39123900 +What is the hs code for METHOCEL A15 PREMIUM LV METHYLCELLULOSE...(BHN BAKU PEWARNA TABLET) COA D180L7E022,39123900 +What is the hs code for METHOCEL A15 PREMIUM LV METHYLCELLULOSE...(BHN BAKU PEWARNA TABLET) COA D180L6S021,39123900 +What is the hs code for METHOCEL A15 PREMIUM LV METHYLCELLULOSE...(BHN BAKU PEWARNA TABLET) COA D180LCO021,39123900 +What is the hs code for METHOCEL A15 PREMIUM LV METHYLCELLULOSE...(BHN BAKU PEWARNA TABLET) COA D180M11022,39123900 +What is the hs code for BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2192310,38210090 +What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA 20220905,17023010 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP22084116,XP22084117",29211900 +"What is the hs code for BARCROFT TM AL HYD GEL LV13, USP (BHN BAKU OBAT) COA 102213046",28183000 +"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102269002,102269005",28161000 +"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2192755,..",38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2188687,38210090 +What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2214155,38210090 +What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1049084,38210090 +"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2090208,...",38210090 +What is the hs code for VIAL ISOVITALEX ENRICHMENT 2ML 5EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2157015,38210090 +"What is the hs code for VIAL E COLI H ANTISERUM H7 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2125032",38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2111967,38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2076212,38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1344136,38210090 +What is the hs code for VIAL SHIGELLA ANTIS POLY A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2125067,38210090 +What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1049084,38210090 +What is the hs code for VIAL E COLI O ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2125078,38210090 +What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2152411,38210090 +What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2109248,38210090 +"What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2104127",38210090 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2139402,38210090 +What is the hs code for HU TGF BTA1 CBA FLEX SET B6 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2109995,38210090 +What is the hs code for HU IL-8 CBA FLEX SET A9 100TST (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1295314,38210090 +What is the hs code for HU G-CSF CBA FLEX SET C8 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2168172,38210090 +What is the hs code for HU ANGIOGENIN CBA FLEX SET C4 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2007957,38210090 +What is the hs code for HU BASIC FGF CBA FLEX SET C5 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1253781,38210090 +"What is the hs code for HU IL-10 CBA FLEX SET B7 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1165999",38210090 +What is the hs code for HU IL-6 CBA FLEX SET A7 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1337708,38210090 +What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052234,47063000 +"What is the hs code for EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300062,10300063",13021950 +What is the hs code for EXTRAPONE (R) CUCUMBER GW (BHN BAKU KOSMETIK) COA 10300025,38249999 +What is the hs code for EXTRAPONE (R) SEA EXTRACTS N (BHN BAKU KOSMETIK) COA 10300036,13021950 +What is the hs code for EXTRAPONE (R) GINSENG (BHN BAKU KOSMETIK) COA 10300047,13021940 +What is the hs code for ACTIPONE (R) WHITE TEA GW (BHN BAKU KOSMETIK) COA 10300051,13021950 +What is the hs code for PARSOL SHIELD (BHN BAKU MAKANAN) COA 0822010200,29420000 +What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0722010027,29420000 +"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010231,0822010232",29420000 +What is the hs code for D-PANTHENOL 75 L (POST BORDER) COA TL02204312,29362400 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22050200,29362800 +What is the hs code for PREMIX VMP JELLY (BHN BAKU MAKANAN) COA XW92208641,21069059 +What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02206013,29362900 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ20712237,29362200 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02207333,29362800 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT22020005,32041800 +What is the hs code for NIACINAMIDE FCC (POST BORDER) COA 0000206956,29362900 +What is the hs code for THIAMINE HYDROCHLORIDE (POST BORDER) COA UQ20712237,29362200 +What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE02206013,29362900 +What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02206013,29362900 +What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02206013,29362900 +What is the hs code for DRY VITAMIN K1 5PCT SD (POST BORDER) COA UT22030003,29362900 +What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02206013,29362900 +"What is the hs code for MAGNESIUM CARBONATE, HEAVY POWDER, PH.EUR.10.ED... (POST BORDER) COA 3119795",28369990 +What is the hs code for CALCIUM ACETATE CALCIUM ACETATE (BHN BAKU OBAT) COA 3114759,29152990 +"What is the hs code for ZINC SULFATE 1-HYDRATE POWDER, USP 43, FCC 12 (BHN BAKU OBAT) COA 3080021, SAMPLE NO COMMERCIAL",28332920 +"What is the hs code for ZINC CITRATE POWDER, USP 43 (BHN BAKU OBAT) COA , 3108752 SAMPLE NO COMMERCIAL VALUE",29181590 +What is the hs code for OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA708748,38249999 +What is the hs code for PHENYTOIN SODIUM (BHN BAKU OBAT) COA 22100475,29329900 +What is the hs code for DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2209001,28352510 +"What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-021152,AACN-041992",29224900 +What is the hs code for HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-040572,13021990 +"What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012682,BHA-020192",38249999 +What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-021421,13021950 +What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA M9G127,28321000 +What is the hs code for HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-072721,13021990 +What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1220921,39139090 +What is the hs code for HYUNDAI BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) COA MSEEC-012792,38249999 +What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-041052,13021950 +What is the hs code for NOMEGESTROL ACETATE (BHN BAKU OBAT) COA NB1923,29372300 +What is the hs code for BUDESONIDE MICRONIZED (BHN BAKU OBAT) COA NB2835M,29372900 +What is the hs code for LAKE PIGMENT (R) 5396 ERYTHROSINE ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP844565:1,32151990 +What is the hs code for LAKE PIGMENT (R) 6010 D&C YELLOW 10 ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP853290:BB4288,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5177 FD&C YELLOW 5/TARTRA...(BHN BAKU PEWARNA TABLET) COA WP852908:BB3942,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C YELLOW 6/SUNSET...(BHN BAKU PEWARNA TABLET) COA WP855960:BB6383,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5177 FD&C YELLOW 5/TARTRA...(BHN BAKU PEWARNA TABLET) COA WP852908:BB3942,32151990 +What is the hs code for PHTHALAVIN (R) ENTERIC COATING POLYMER 2138 CLEAR (BHN BAKU PEWARNA TABLET) COA WP858828,39059990 +What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C YELLOW 6/SUNSET...(BHN BAKU PEWARNA TABLET) COA WP855960:BB6383,32151990 +What is the hs code for MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT22060017,29362500 +What is the hs code for DRY VITAMIN D3 100 CWS PH (BHN BAKU SUPPLEMEN) COA UT22040004,29362900 +What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE02202010,29362100 +What is the hs code for MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT22060017,29362500 +What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT22060104,29362100 +What is the hs code for GENIVIDA(TM) TG (BHN BAKU SUPPLEMEN) COA UT21100004,29329900 +"What is the hs code for VITAMIN A WATER-MISCIBLE, TYPE 100 (BHN BAKU SUPPLEMEN) COA UT22040064",29362100 +What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT22040062,29362100 +"What is the hs code for OMEPRAZOLE PELLETS -8,5PCT (BHN BAKU OBAT) COA OP-0916 09 22 S/D OP-0921 09 22",30039000 +What is the hs code for AQUACOAT ECD-30 ETHYLCELLULOSE... (BHN BAKU PEWARNA TABLET) COA 2174151144,39123900 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) COA GA717086,38249999 +What is the hs code for PIGMENT BLEND (R) PB-21158 GREEN (BHN BAKU PEWARNA TABLET) COA GA717506,32151990 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86674...(BHN BAKU PEWARNA TABLET) COA GA717088,38249999 +What is the hs code for PIGMENT BLEND (R) PB-665012 BROWN (BHN BAKU PEWARNA TABLET) COA GA717507,32151990 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC AQUEOUS ACRYLIC ENTERIC... (BHN BAKU PEWARNA TABLET) COA GA714750,39061090 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC AQUEOUS ACRYLIC ENTERIC... (BHN BAKU PEWARNA TABLET) COA GA718189,39061090 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 22B0056100,13021990 +What is the hs code for NUTRASWEETM NATURAL (BHN BAKU MAKANAN) COA MAM2209233,29389000 +What is the hs code for PRAYPHOS DKP FG 25K BG (BHN BAKU KOSMETIK) COA 2223032,28352400 +What is the hs code for MONOPOT PHOS MKP FG 25K BG (BHN BAKU KOSMETIK) COA 22-160-01,29420000 +What is the hs code for BACTO PEPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2173492,38210090 +What is the hs code for BACTO TRYPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1280083,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2420322,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484077,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH2420322,38210090 +What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1285442,38210090 +What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2173480,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1110920,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1110920,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1110920,38210090 +What is the hs code for CORTISONE ACETATE MICRONISED PH.EUR JP (BHN BAKU SUPPLEMEN) COA 2101024053,29372900 +"What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340406,B340407",29419000 +"What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334843,B334844",29419000 +"What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU SUPLEMEN) COA UJ234,UJ235",29181400 +What is the hs code for JAGUAR HP 105 SGI 25KG CARDBOARD CARTON (BHN BAKU KOSMETIK) COA H2205090H,38249999 +What is the hs code for SORBITOL SOLUTION 70 PCT CRYSTALLINE (BHN BAKU KOSMETIK) COA 2223P379,29054400 +What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) COA 210284,38249999 +What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) COA 209949,38249999 +What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) COA 210254,38249999 +"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA158227,ROA135226,ROA178227,ROA..",28363000 +What is the hs code for BROMPHENIRAMINE MALEATE USP43 (BHN BAKU OBAT) COA G2210K005,29333990 +What is the hs code for 985-L-MENTHOL CRYSTALS INDIAN NATURAL (BHN BAKU KOSMETIK) COA NFPL-MEN-21-022,29061100 +What is the hs code for ACTIPONE (R) CAMU CAMU ET (BHN BAKU KOSMETIK) COA 10300030,13021950 +What is the hs code for METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/12090505,29332900 +"What is the hs code for SODIUM VALPROATE (BAHAN BAKU OBAT) COA 456740,456741",29159090 +What is the hs code for OPADRY (R) II COMPLETE FILM II COMPLETE FILM...(BHN BAKU PEWARNA TABLET) COA GA718212,38249999 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP22094319,XP22094320",29211900 +What is the hs code for GLICLAZIDE (BHN BAKE OBAT) COA 2240001697,29359000 +What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040031,29420000 +What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040031,29420000 +"What is the hs code for MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 2008-1, 2336-1",34024990 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22050221,29362900 +What is the hs code for DRY VITAMIN A ACETATE 500 AF (BHN BAKU SUPPLEMEN) COA WB21120056,29362100 +What is the hs code for DRY VITAMIN A ACETATE 500 AF (BHN BAKU SUPPLEMEN) COA WB21120054,29362100 +What is the hs code for MATCHA ( BHN BAKU KOSMETIK) COA CSP 22006 EOU,38249999 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202004,122202089",28363000 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202004,122202017",28363000 +What is the hs code for PIPERONYL BUTOXIDE (BHN BAKU UTK PAKAN TERNAK) COA 20220921,29329900 +"What is the hs code for PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) COA PH03190622,PH04190622,PH05190722",38249999 +What is the hs code for DOPAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 22100464,29222900 +What is the hs code for VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 122201661,28365010 +What is the hs code for PHARMABURST (R) 500 (BHN BAKU OBAT) COA 122201695,21069099 +"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040021,0221040027, SAMPLE NO COMMERCIAL VALUE",29420000 +What is the hs code for PIROXICAM (BAHAN BAKU OBAT) COA PRX2022006M,29349990 +What is the hs code for LIDOCAINE BASE (BHN BAKU OBAT) COA 200219,29242990 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22080642,29362100 +"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22080641,WB22080644,WB22080645",29362100 +What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20220701,29362800 +What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPPLEMEN) COA WB22030328,29362100 +What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPPLEMEN) COA WB22030328,29362100 +What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPPLEMEN) COA WB22030328,29362100 +"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22010634,WB22080638,WB22080643",29362100 +What is the hs code for PERMETHRIN PHARMA GRADE (BHN BAKU OBAT) COA 225046016,29163990 +What is the hs code for PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3354848,33029000 +"What is the hs code for MAGNESIUM CHLORIDE 6-HYDRATE, CRYST, USP 43 (BHN BAKU KOSMETIK) COA 3105684",28273100 +"What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 22100446,22100449",29221990 +What is the hs code for AHCC-PROFESSIONAL-FG (BHN BAKU OBAT) COA 209FM01,21069099 +What is the hs code for PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PI22020009,29349920 +What is the hs code for DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2209001,28352510 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP25722,28363000 +What is the hs code for CATECHINS TEAVIGO 4 KG (BHN BAKU KOSMETIK) COA 210111,21012020 +What is the hs code for CEFTIZOXIME SODIUM (BHN BAKU OBAT) COA A300100,29419000 +What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA B100200,29419000 +What is the hs code for BAYPURE CX 100 SOLID G 25K BAG (BHN BAKU KOSMETIK) COA CHASMZ0076,38249999 +What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) COA 1586166,38249999 +What is the hs code for EUXYL K 720 CAN 10 KG (BHN BAKU KOSMETIK) COA 1584891,38249999 +What is the hs code for EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) COA 1583793,38249999 +What is the hs code for EUXYL K 903 CAN 10 KG (BHN BAKU KOSMETIK) COA 1581875,38249999 +"What is the hs code for EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) COA 1587197,1586619",38249999 +What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) COA 1584779,38249999 +What is the hs code for SENSIVA SC 10 CAN 10 KG (BHN BAKU KOSMETIK) COA 1580238,38249999 +What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) COA 1586811,38249999 +"What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) COA 1584779,1584813",38249999 +What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) COA 1586811,38249999 +What is the hs code for SENSIDIN DO CAN 10 KG (BHN BAKU KOSMETIK) COA 1581131,38249999 +What is the hs code for EUXYL K 903 CAN 10 KG (BHN BAKU KOSMETIK) COA 1581876,38249999 +What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) COA 1586166,38249999 +What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2022051306,21012020 +What is the hs code for BETAGUARD - 20 LIT (BHN BAKU PAKAN TERNAK) COA 22092808,30049099 +What is the hs code for BETA-Q 1 LIT (BHN BAKU PAKAN TERNAK) COA 22091188,30049099 +What is the hs code for BETA-Q 20 LIT (BHN BAKU PAKAN TERNAK) COA 22091187,30049099 +What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512236,47069200 +What is the hs code for PANTOPRAZOLE SODIUM (STERILE) (BAHAN BAKU OBAT) COA SI/PPZ/01151022,29333990 +What is the hs code for NORIT SX SUPER E 153 (BHN BAKU KOSMETIK) COA 5254097,38021010 +What is the hs code for MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50480,29061100 +What is the hs code for PAPER FIBER DRUM (14 X 22) (REPLACEMENT DRUMS),48192000 +What is the hs code for SILDENAFIL CITRATE USP (BHN BAKU OBAT) COA SLC 063 10 22,29335990 +What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512236,47069200 +"What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052231,G05052234,G05052237",47063000 +What is the hs code for VACC. MYRT./PINUS PIN. DRY EX. (BHN BAKU SUPLEMEN) COA 22S0159100,13021950 +What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 21S0191800,13021950 +What is the hs code for VACCINIUM MYSTILLUS DRY EX. (BHN BAKU SUPLEMEN) COA 21S0314800,13021990 +"What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334835,B334837,B334838",29419000 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) COA SH663016,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-22-7719...(BHN BAKU PEWARNA TABLET) COA SH663015,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE BARRIER...(BHN BAKU PEWARNA TABLET) COA SH663014,38249999 +What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC... (BHN BAKU PEWARNA TABLET) COA GA718788,39061090 +What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA M9G127,28321000 +What is the hs code for HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-062692,13021990 +What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-030962,13021990 +What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011702,13021950 +What is the hs code for HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-671782,13021990 +What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA M9G127,28321000 +What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-022122,38249999 +What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-041052,13021950 +What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1220921,39139090 +What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-013092,13021990 +What is the hs code for HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-062692,13021990 +What is the hs code for HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-671782,13021990 +What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-050502,13021950 +"What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-041992,AACN-051702",29224900 +What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-061302,13021990 +What is the hs code for HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-671782,13021990 +What is the hs code for TRIAMCINOLONE ACETONIDE MICRONIZED (BHN BAKU OBAT) COA NC1624M,29372200 +What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) COA 208165,38249999 +What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) COA 209281,38249999 +What is the hs code for VITAMIN MINERAL PREMIX - JELLY POWDER V2 (BHN BAKU MAKANAN) COA XW92210015,21069059 +What is the hs code for NUTRASWEETM NATURAL (BHN BAKU MAKANAN) COA MAM2209262,29389000 +What is the hs code for HERBAL EXTRACTS (GARCINIA CAMBOGIA 60 PCT CA-K SALT) (BAHAN BAKU KOSMETIK) COA FGC2104003,13021990 +What is the hs code for AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 158635,15159011 +What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB050922,39123900 +What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B011022,39123900 +What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B011022,39123900 +What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB050922,39123900 +What is the hs code for LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LG120822,39123900 +What is the hs code for OPASPRAY (R) OPAQUE COLOR CONCENTRATE FOR FILM...(BHN BAKU PEWARNA TABLET) COA DT736535,32151990 +What is the hs code for OPALUX (R) OPAQUE COLOR COATING CONCENTRATE AS-R-...(BHN BAKU PEWARNA TABLET) COA DT737694,32151990 +What is the hs code for OPALUX (R) OPAQUE COLOR COATING CONCENTRATE AS-R-...(BHN BAKU PEWARNA TABLET) COA DT737695,32151990 +What is the hs code for OPAGLOS (R) TABLET CORE SEALANT PRODUCT OPAGLOS...(BHN BAKU PEWARNA TABLET) COA DT737551,32151990 +What is the hs code for OPALUX (R) OPAQUE COLOR COATING CONCENTRATE AS-F-...(BHN BAKU PEWARNA TABLET) COA DT737696,32151990 +What is the hs code for OPASPRAY (R) OPAQUE COLOR CONCENTRATE FOR FILM...(BHN BAKU PEWARNA TABLET) COA DT737697,32151990 +What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105714022,17021100 +What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103863822,17021100 +What is the hs code for CAPSULAC (R) 60 (BHN BAKU OBAT) COA L100413522,17021100 +What is the hs code for CELLACTOSE (R) 80 (BHN BAKU OBAT) COA L100463622,17021100 +"What is the hs code for NIACINAMIDE USP (NIACINAMIDE USP/EP) (BHN BAKU KOSMETIK)COA 22-23/NMD(P)/00152 S/D 00153,...",29362900 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20221009,17029019 +What is the hs code for TRIMETHOPRIM MICRONISED BP (BHN BAKU OBAT) COA TMP22100765,29335990 +What is the hs code for KAHLWAX 2442L (BHN BAKU KOSMETIK) COA F2227043-001,15211000 +What is the hs code for KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2272144,38210090 +What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2217638,38210090 +What is the hs code for BOTTLE STARCH AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2271472,38210090 +What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2235469,38210090 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2236789,38210090 +"What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH 2229232,...",38210090 +What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2215995,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2067201,38210090 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2046556,38210090 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2123358,38210090 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2157420,38210090 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2158082,38210090 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2067270,38210090 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2047633,38210090 +"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2097346,2104107",38210090 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2172773,38210090 +What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 2074829,38210090 +What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2137560,38210090 +What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2269108,38210090 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2271288,38210090 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2138670,38210090 +What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2137560,38210090 +What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180JCV004,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180KBQ002,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180K3O001,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464151502,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180K13003,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180K24002,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180KBO002,39123900 +What is the hs code for METHOCEL E4M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180M2A011,39123900 +What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180L1V022,39123900 +What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU PAKAN HEWAN) COA 202200275,28183000 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2097025,38210090 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2097025,38210090 +What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2046564,38210090 +What is the hs code for HU VEGF CBA FLEX SET B8 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2077187,38210090 +What is the hs code for DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2209001,28352510 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G610004... (BHN BAKU PEWARNA TABLET) COA GA718201,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131.. (BHN BAKU PEWARNA TABLET) COA GA718202,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86674... (BHN BAKU PEWARNA TABLET) COA GA718203,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE.. (BHN BAKU PEWARNA TABLET) COA GA718577,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 33G28435... (BHN BAKU PEWARNA TABLET) COA GA718204,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K84823... (BHN BAKU PEWARNA TABLET) COA GA718212,38249999 +What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 2204114,38249999 +What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 213925,29224900 +What is the hs code for MELANOSTATINE TM 5 BG (50PPM) (BHN BAKU KOSMETIK) COA 220986,38249999 +What is the hs code for MINIPORYL TM (BHN BAKU KOSMETIK) COA 832011274N,38249999 +What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029946N,13021990 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2133701,38249999 +What is the hs code for PRICKLY PEAR WATER DISTILLATE (BHN BAKU KOSMETIK) COA 22090252,33019090 +What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000207171,29362900 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT22010155,29362900 +What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22030064,29362400 +"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB21050211,WB21050212",29362900 +What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT22030222,29362100 +"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92210013,XW92210014",21069059 +"What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB21050086,WB21050088",29362200 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB21050088,29362200 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB21050088,29362200 +What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12204017,29362900 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB21050088,29362200 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02205054,29362400 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02205054,29362400 +"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00781370,VE00781371",29420000 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060046,29420000 +What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0722010027,29420000 +What is the hs code for PARSOL (R) HS(BHN BAKU KOSMETIK) COA HS5870322,29420000 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060046,29420000 +What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF22165008,29420000 +What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010232,29420000 +What is the hs code for DL-PANTHENOL 50 L (BHN BAKU KOSMETIK) COA TL02110653,29362400 +What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT22010219,29362100 +What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010232,29420000 +What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0040349,29362500 +What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02109811,29362400 +"What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE EP/USP (BHN BAKU OBAT HEWAN) COA NEDNA220813,NEDNA220811",29372200 +What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102223007,28161000 +"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102223005,102223007",28161000 +What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102269006,28161000 +What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP22104590 S/DXP 22104593,29211900 +"What is the hs code for CAFFEINE BP/EP/USP (BHN BAKU OBAT) COA 22101854,22101864,22101865,22101871,22101877,...",29393000 +What is the hs code for PEARL ESSENCES 35031MJ FLONAC ML 10 C 35031 (BHN BAKU KOSMETIK) COA D2310125,32061910 +What is the hs code for PEARL ESSENCES 35031MJ FLONAC ML 10 C 35051 (BHN BAKU KOSMETIK) COA D2420059,32061910 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220803,13021990 +What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) COA OLVH220903-ENBIO,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) COA EG543-220702,38249999 +What is the hs code for SAFFLOWER REFINED OIL (BHN BAKU KOSMETIK) COA CARHR220805-DW,38249999 +What is the hs code for SEABUCKTHRON HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HIR220801-B,13021990 +What is the hs code for CLOBETASOL PROPIONATE USP MICRONISED (BHN BAKU OBAT) COA APL/CLP/06061/I-22,29372200 +What is the hs code for AEROSIL(R) R 972 (BHN BAKU KOSMETIK) COA 132041170,38249999 +What is the hs code for BIOBENEFITY (BHN BAKU KOSMETIK) COA 222021,13021990 +What is the hs code for CINDERELLACARE (BHN BAKU KOSMETIK) COA 221565,13021990 +"What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 221612,222019",38249999 +What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 221569,13021990 +What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 222375,29329900 +What is the hs code for ROSE HIPS LIQUID B (BHN BAKU KOSMETIK) COA 221686,13021990 +What is the hs code for BETAMETHASONE VALERATE USP (BHN BAKU OBAT) COA APL/BV/06027/E-2,29372200 +What is the hs code for BETAMETHASONE VALERATE USP (BHN BAKU OBAT) COA APL/BV/01210/I-22,29372200 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A62337... (BHN BAKU PEWARNA TABLET) COA GA718269,39061090 +What is the hs code for VITAMIN A PALMITATE 1.7MIU/G (BHN BAKU KOSMETIK) COA,29362100 +What is the hs code for DL-ALPHA-TOCOPHEROL (BHN BAKU KOSMETIK) COA 01220708ES,29362800 +What is the hs code for AVICEL CL 611 NF (POST BORDER) COA 2174108901,39129090 +What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105713322,17021100 +What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA LC033-22-801,17021100 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA QZ11220816 S/D QZ11220818,29362500 +"What is the hs code for CLOMIPHENE CITRATE USP/EP (BHN BAKU OBAT ) COA 202210040084,202210040085",29221990 +What is the hs code for CLOMIPHENE CITRATE USP/EP (BHN BAKU OBAT ) COA 202210040085,29221990 +What is the hs code for PROMOIS EK-118(IN) (BHN BAKU KOSMETIK) COA GFA,38249999 +What is the hs code for PROMOIS EU-118(IS) (BHN BAKU KOSMETIK) COA GFJ,38249999 +What is the hs code for PROMOIS WK-F (BHN BAKU KOSMETIK) COA GJH,38249999 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA GGI,38249999 +What is the hs code for AMITOSE HGA (BHN BAKU KOSMETIK) COA GFH,13021990 +What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA GGD,38249999 +What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA GJG,38249999 +What is the hs code for PROMOIS S-CAQ (BHN BAKU KOSMETIK) COA GGB,38249999 +"What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100MESH (BHN BAKU SUPLEMEN) COA 2AX2210017,2AX2210013",29181400 +What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20220701,29362800 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB22080257,29362800 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB22080257,29362800 +What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPPLEMEN) COA WB22030330,29362100 +What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPPLEMEN) COA WB22030330,29362100 +"What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB21120254, WB22080257",29362800 +"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22080642,WB22080651,WB22080655",29362100 +"What is the hs code for FERROUS GLUCONATE, POWDER, USP 43 (POST BORDER) COA 3118317",29181600 +"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (POST BORDER) COA ROA177227,ROA158227,ROA136227,ROA178227,..",28363000 +"What is the hs code for CROSCARMELLOSE SODIUM USP-NF (BHN BAKU OBAT) COA ACRMC/10/231022,ACRMC/10/211022",39129090 +What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464151544,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180IAL002,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180I6P002,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180I5J002,39123900 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT22030156,29362900 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT22030156,29362900 +What is the hs code for MIN PREMIX FOR TODDLER PORRIDGE (BHN BAKU MAKANAN) COA XW92209159,21069059 +What is the hs code for VIT MIN PREMIX FOR TODDLER PORRIDGE (BHN BAKU MAKANAN) COA XW92209158,21069059 +What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22050068,29362500 +"What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22030063,UT22030064",29362400 +What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02204039,29362400 +What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20220303,29362800 +What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC211108,29420000 +What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92208654,29420000 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22090304,29362800 +What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 220604,13021990 +What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 220821,29061900 +What is the hs code for OILESS' CITY TM (BHN BAKU KOSMETIK) COA 220304,13021990 +What is the hs code for OILESS' CITY TM (BHN BAKU KOSMETIK) COA 220614,13021990 +What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 220601,13021990 +What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 220513,33012990 +"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG221014,MCVG221021",29362700 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA LC034-22-801,17021100 +"What is the hs code for NEO EXTRAPONE (R) LEMON (BHN BAKU KOSMETIK) COA 10300019,10300020",13021950 +What is the hs code for EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300063,13021950 +"What is the hs code for EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300023,10300024",13021950 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE ...(BHN BAKU PEWARNA TABLET) COA SH663543,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE ...(BHN BAKU PEWARNA TABLET) COA SH663542,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE ...(BHN BAKU PEWARNA TABLET) COA SH663541,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE ...(BHN BAKU PEWARNA TABLET) COA SH663540,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE ...(BHN BAKU PEWARNA TABLET) COA SH663548,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE ...(BHN BAKU PEWARNA TABLET) COA SH663546,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE ...(BHN BAKU PEWARNA TABLET) COA SH663550,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE ...(BHN BAKU PEWARNA TABLET) COA SH663547,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE ...(BHN BAKU PEWARNA TABLET) COA SH663549,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359...(BHN BAKU PEWARNA TABLET) COA SH662957,39061090 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) COA SH662946,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA SH663539,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA SH663544,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA SH663538,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA SH662949,38249999 +What is the hs code for SOFTISAN (R) PG2 C10 (BAHAN BAKU KOSMETIK) COA 2-00016670,38249999 +What is the hs code for REFINED GRAPESEED OIL (BHN BAKU KOSMETIK) COA B2200220,15152919 +"What is the hs code for OPACODE S-1-277005 BLACK (BHN BAKU PEWARNA TABLET) COA TKL65118, SAMPLE NO COMMERCIAL VALUE",32151990 +"What is the hs code for OPACODE S-1-180000 WHITE (BHN BAKU PEWARNA TABLET) COA TKL65161, SAMPLE NO COMMERCIAL VALUE",32151990 +What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC220304,29420000 +What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040121,29420000 +What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040121,29420000 +What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040121,29420000 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB21060059,29362300 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359...(BHN BAKU PEWARNA TABLET) COA GA719393,39061090 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O63173...(BHN BAKU PEWARNA TABLET) COA GA716923,39061090 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O620011...(BHN BAKU PEWARNA TABLET) COA GA716924,39061090 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O600001...(BHN BAKU PEWARNA TABLET) COA GA716925,39061090 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G65197...(BHN BAKU PEWARNA TABLET) COA GA719649,38249999 +What is the hs code for ORIGINAL EXTRACT KIWI CSB (BHN BAKU KOSMETIK) COA 02/19GAAK,28399000 +"What is the hs code for ORIGINAL EXTRACT KIWI CSB (BHN BAKU KOSMETIK) COA 02/19GAAK, SAMPLE NO COMMERCIAL VALUE",28399000 +What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT FS (BHN BAKU SUPPLEMEN) COA UE02204002,29420000 +What is the hs code for COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-2207110,29146200 +What is the hs code for LIPOID S 20 (BHN BAKU SUPPLEMEN) COA 572000-2220141,29232011 +What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA720094,39061090 +What is the hs code for LORATADINE USP (BHN BAKU OBAT) COA BLRD/2205013-M,29333990 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22050223,29362900 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22060062,29362300 +What is the hs code for SWERTIANIN-P (BHN BAKU KOSMETIK) COA 222065,13021990 +What is the hs code for NABUMETONE USP (BAHAN BAKU OBAT) COA H-2121022,29145000 +"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22010628,WB22010629",29362100 +What is the hs code for UNIMER U-151 (BHN BAKU KOSMETIK) COA VE00794757,39059990 +What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK) COA 2209EF2313,29224900 +What is the hs code for ORANGE EXTRACT (BHN BAKU KOSMETIK) COA 22090406,13021950 +What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512242,47069200 +What is the hs code for CITRIC ACID MONOHYDRATE (CAM) GRANULAR 8-40 MESH E330 (BHN BAKU KOSMETIK) COA 1MT2108085,29181400 +"What is the hs code for SODIUM FEREDETATE, POWDER, BP 2021 (BHN BAKU SUPPLEMEN) COA 3119807",29224900 +What is the hs code for MATCHA ( BHN BAKU KOSMETIK) COA CSP 22008 EOU,38249999 +What is the hs code for EMULCIRE 61 WL 2659 CAR (BHN BAKU OBAT) COA 191440,28399000 +"What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512242,G02512245",47069200 +What is the hs code for VALSARTAN USP (BHN BAKU OBAT) COA 2-PXO-D-1550822,29332900 +What is the hs code for SENSIVA SC 80 CAN 10KG (BHN BAKU KOSMETIK) COA 16502829,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019...(BHN BAKU PEWARNA TABLET) COA GA720789,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-28849...(BHN BAKU PEWARNA TABLET) COA GA720742,38249999 +What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) COA 0014696771,38249999 +"What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829011471N, POST BORDER",29224900 +What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785011245N,38249999 +What is the hs code for EXO-P TM (BHN BAKU KOSMETIK) COA 715031367N,38249999 +What is the hs code for INST'TIGHT TM C (BHN BAKU KOSMETIK) COA 2222601,38249999 +What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019877N,38249999 +What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) COA 2204216,38249999 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2216102,38249999 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2216101,38249999 +What is the hs code for IONOL CP (BHN BAKU KOSMETIK) COA 01116722,29071900 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA LC035-22-801,17021100 +What is the hs code for METHYLCOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/1122046 POST BORDER,29362600 +What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2022102105,21012020 +What is the hs code for DEXTROSE MONOHYDRATE (POST BORDER) COA 20221103,17023010 +What is the hs code for CETIRIZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA 21020CZ6RII,29315990 +What is the hs code for GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 22T0094900,13021950 +What is the hs code for CEFTAZIDIME BUFFERED (BHN BAKU OBAT) COA B20010M,29419000 +What is the hs code for PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 011722/007400,38249999 +What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464247240,39123900 +What is the hs code for BACTO PEPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2179379,38210090 +What is the hs code for BACTO PEPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2179379,38210090 +"What is the hs code for BACTO TRYPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1280082, SAMPLE NO COMMER",38210090 +"What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0335766, SA",38210090 +What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2094434,38210090 +What is the hs code for BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1034870,38210090 +What is the hs code for BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1280120,38210090 +What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBNL220433,29221990 +What is the hs code for AQUACOAT ECD-30 ETHYLCELLULOSE AQUEOUS... (BHN BAKU PEWARNA TABLET) COA 2174180059,39123900 +"What is the hs code for HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-020592,APB-R-032412",13021990 +What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-020192,13021990 +"What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-013092,GSC-K-022802",13021990 +"What is the hs code for HYUNDAI BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) COA MSEEC-012792,021812",38249999 +What is the hs code for HYUNDAI BIOLAND PF CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSSBD-012392,13021950 +What is the hs code for HYUNDAI BIOLAND CACTUS EXTRACT (BHN BAKU KOSMETIK) COA CAB-021782,13021990 +What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-061302,13021990 +What is the hs code for HYUNDAI BIOLAND PF CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSSBD-012392,13021950 +What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-020192,13021990 +What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-051612,38249999 +What is the hs code for HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-062692,13021990 +What is the hs code for HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-072821,13021990 +"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG221014,MCVG221021",29362700 +What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01E249M,38210090 +What is the hs code for BOTTLE GRAM DECOLORIZER 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2234644,38210090 +What is the hs code for PROTEIN TRANSPORT INHIBITOR SOLN 0.7 ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1266065-A,38210090 +"What is the hs code for BARCROFT TM AL HYD GEL LV13, USP (BHN BAKU OBAT) COA 102213117",28183000 +What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102223007,28161000 +"What is the hs code for BARCROFT TM AL HYD GEL LV13, USP (BHN BAKU OBAT) COA 102213117, SAMPLE NO COMMERCIAL VALUE",28183000 +"What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102223007, SAMPLE NO COMMERCIAL V",28161000 +"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102202031",28183000 +What is the hs code for OPADRY (R) TF TITANIUM FREE FORMULATED FILM COATING...(BHN BAKU PEWARNA TABLET) COA GA721099,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86512...(BHN BAKU PEWARNA TABLET) COA GA721259,38249999 +What is the hs code for GINSENG DRY EXTR. 2PCT COLOR (BHN BAKU SUPLEMEN) COA 22B0095700,13021990 +What is the hs code for GINSENG DRY EXTR. 2PCT COLOR (BHN BAKU SUPLEMEN) COA 22B0095800,13021990 +What is the hs code for GINSENG DRY EXTR. 2PCT COLOR (BHN BAKU SUPLEMEN) COA 22B0095900,13021990 +"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (POST BORDER) COA ROA180224,ROA181226,ROA152223,ROA..",28363000 +What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) COA 209955,38249999 +What is the hs code for KSP-101 (15KG) (BHN BAKU KOSMETIK) COA 210452,38249999 +What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) COA 211285,38249999 +What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) COA 210283,38249999 +What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 221776,38249999 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 222019,38249999 +What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 221964,13021990 +What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 222022,13021990 +What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 221776,38249999 +What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 221024700,38210090 +What is the hs code for LOOPS INOCULATING 10/TUBE 10 MICROLITER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2213629,38210090 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2145565,38210090 +What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2145184,38210090 +What is the hs code for KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2272144,38210090 +What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01E231M,38210090 +What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2173800,38210090 +"What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2145184,2173810",38210090 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2145565,38210090 +What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2096824,38210090 +What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2215005,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2228563,38210090 +What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2215005,38210090 +What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 2096824,38210090 +What is the hs code for BOTTLE DUBOS BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2242444,38210090 +What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2025213,38210090 +What is the hs code for BOTTLE TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2143687,38210090 +What is the hs code for BOTTLE MACCONKEY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2158030,38210090 +What is the hs code for BOTTLE DIFCO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2215005,38210090 +What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1350021,38210090 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 2034966,38210090 +What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2060432,38210090 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2138670,38210090 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2158082,38210090 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2097346,38210090 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2103834,38210090 +What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1236551,38210090 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2172773,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2074156,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1188089,38210090 +What is the hs code for BOTTLE TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2081022,38210090 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2005526,38210090 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2026334,38210090 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1272665,38210090 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2143794,38210090 +What is the hs code for BOTTLE TAT BROTH BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2060544,38210090 +What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2096824,38210090 +What is the hs code for BOTTLE PHOSPHATE BUFFER PH 7.2 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2026405,38210090 +What is the hs code for GASPAK EZ LARGE INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7377933010,38210090 +What is the hs code for BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2088571,38210090 +What is the hs code for BOTTLE PHENOL RED BROTH BASE BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2082386,38210090 +"What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2074843",38210090 +What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1348303,38210090 +What is the hs code for BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 2143333,38210090 +What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1216783,38210090 +What is the hs code for BOTTLE NITRATE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2066240,38210090 +What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2038852,38210090 +"What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 2053778",38210090 +What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2217600,38210090 +What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2096996,38210090 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B03E123M,38210090 +What is the hs code for BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1223658,38210090 +What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1285575,38210090 +What is the hs code for BOTTLE M TGE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2201315,38210090 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA U/PENGEMBANGAN MIKROORGANISME)BATCH 2271288,38210090 +What is the hs code for TSA TM WLP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2256693,38210090 +What is the hs code for MS IFN-GMA BV421 XMG1.2 50 UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2017882,38210090 +What is the hs code for MS IL-2 PE JES6-5H4 25UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1327945,38210090 +"What is the hs code for CYTOFIX/CYTOPERM W/GOLGIPLUG KIT 250TST (MEDIA TUK PENGEMBANGAN MIKRO ORGANISME), BATCH 2038275",38210090 +What is the hs code for MS IL-4 CBA FLEX SET A7 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2006414,38210090 +What is the hs code for MS TNF CBA FLEX SET C8 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1333598,38210090 +What is the hs code for MS IL-12 P70 CBA FLEX SET D7 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1319797,38210090 +What is the hs code for MS IL-1 BTA CBA FLEX SET E5 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2006406,38210090 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2139402,38210090 +"What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2027288",38210090 +What is the hs code for VIAL SUPPLEMENT C 6X5ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2244350,38210090 +What is the hs code for VIAL ISOVILATEX ENRICHMENT 10ML 5 EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2157017,38210090 +"What is the hs code for VIAL E COLI H ANTISERUM H7 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2125032",38210090 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2139402,38210090 +"What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2027288",38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1344136,38210090 +What is the hs code for BOTTLE B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2066217,38210090 +What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 2048722,38210090 +"What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2109069,2109074,221370",38210090 +What is the hs code for BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2090212,38210090 +What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2222775,38210090 +What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT 10X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2222767,38210090 +What is the hs code for MS/RAT SOLBI PTEIN CBA BUF KIT 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2228705,38210090 +"What is the hs code for MS TH1/TH2/TH17 CBA KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2124880,2140304",38210090 +What is the hs code for MS IL-5 CBA FLEX SET A6 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2042517,38210090 +What is the hs code for GOLGIPLUG PROTEIN TRNSP INHB 1ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1277727,38210090 +What is the hs code for MS CD8A APC-CY7 53-6.7 25UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1203390,38210090 +What is the hs code for MS IL-4 APC 11B11 25UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2038855,38210090 +What is the hs code for MS CD4 PERCP-CY5.5 RM4-5 25UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2175343,38210090 +What is the hs code for MS CD3E FITC 145-2C11 500UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2004469,38210090 +What is the hs code for BARCROFT TM 0325 DRIED AL HYD GEL USP (BHN BAKU OBAT) COA 102258010,28183000 +What is the hs code for BARCROFT TM 5100 CG MG HYD PDR USP (BHN BAKU OBAT) COA 102264003 S/D 102264005,28161000 +What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340415 S/D B340417,29419000 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202091,122202092",28363000 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202090,122202091",28363000 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A18597...(BHN BAKU PEWARNA TABLET) COA SH664425,39061090 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A18597 ...(BHN BAKU PEWARNA TABLET) COA SH664426,39061090 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) COA SH664424,38249999 +"What is the hs code for LIGHT MAGNESIUM CARBONATE POWDER, BP 2021 (BHN BAKU OBAT) COA 3121984-02",28369990 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02205675,29362400 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02205675,29362400 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT22070041,29362100 +What is the hs code for VIT PREMIX FOR CHEESE BLOCK CHEDDAR (BHN BAKU MAKANAN) COA XW92210418,21069059 +What is the hs code for VITAMIN PREMIX 103047 - D (BHN BAKU MAKANAN) COA XW92210412,21069059 +"What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW92210413,XW92210414",21069059 +What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE02202010,29362100 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02205675,29362400 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02205675,29362400 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02205675,29362400 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02205675,29362400 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02205054,29362400 +What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010233,29420000 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02205054,29362400 +What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010233,29420000 +"What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF22165008,UF22101004",29420000 +What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040101,29420000 +"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 10-03-22,11-03-22,15-03-22,04-05-22",38029090 +What is the hs code for KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 22-12-21,25070000 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP26622,28363000 +What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799031522N,38249999 +What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829011551N,29224900 +What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) 830011473N,38249999 +What is the hs code for LANACHRYS 2B PF (PRESERVATIVE-3379305-P1K (BHN BAKU KOSMETIK) COA 793051022N,38249999 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2133701,38249999 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2133703,38249999 +What is the hs code for MDI COMPLEX TM (BHN BAKU KOSMETIK) COA 782011450N,38249999 +What is the hs code for MDI COMPLEX TM (BHN BAKU KOSMETIK) COA 782019877N,38249999 +What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829011471N,29224900 +What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 213916,29224900 +What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 222030,29224900 +What is the hs code for LANACHRYS 2B PF (PRESERVATIVE-3379305-P1K (BHN BAKU KOSMETIK) COA 793051022N,38249999 +What is the hs code for MINIPORYL TM (BHN BAKU KOSMETIK) COA 832011373N,38249999 +What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029946N,13021990 +What is the hs code for GREYVERSE TM (BHN BAKU KOSMETIK) COA 833011412N,29224900 +What is the hs code for WATERMELON HERBASOL (R) EXTRACT PG UNPRESERVED (BHN BAKU KOSMETIK) COA 122856,13021990 +"What is the hs code for SODIUM ACETATE ANHYDROUS POWDER, USP 43 (BHN BAKU OBAT) COA 3122451",29152910 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20221105,17029019 +"What is the hs code for FENTACARE 2231 EF 25KG PAPER BOX (BHN BAKU KOSMETIK ) COA ZH22J2401,ZH22K1606",34029019 +What is the hs code for MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 3972-1,34024990 +What is the hs code for PRAYPHOS DKP FG 25K BG (BHN BAKU KOSMETIK) COA 2223032 (POST BORDER),28352400 +What is the hs code for PRAYPHOS MKP FG 25K BG (BHN BAKU KOSMETIK) COA 22-182-01,29420000 +"What is the hs code for SORBITOL (BHN BAKU KOSMETIK) COA 22110501,22110601",29054400 +"What is the hs code for SPECWHITE VCE (BHN BAKU KOSMETIK) COA 20221111,20221112",29362700 +"What is the hs code for MFSORB 101 (BHN BAKU KOSMETIK) COA SUL-20220601,SUL-20220902",29147900 +What is the hs code for GF-B331 (BHN BAKU KOSMETIK) COA 2022111003,35051090 +"What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100MESH (BHN BAKU SUPLEMEN) COA 3AX2211016,3AX2211019",29181400 +"What is the hs code for EXTRAPONE (R) WILD BERRIES (BHN BAKU KOSMETIK) COA 10300038,10300039",13021950 +What is the hs code for EXTRAPONE (R) MANGO B (BHN BAKU KOSMETIK) COA 10300043,13021950 +What is the hs code for EXTRAPONE (R) PEACH (BHN BAKU KOSMETIK) COA 10300037,13021950 +What is the hs code for PHYTOCONCENTROLE (R) CAMOMILE (BHN BAKU KOSMETIK) COA 10300049,13021950 +"What is the hs code for OPACODE WB NS-78-17821 BLACK (BHN BAKU PEWARNA TABLET) COA TKL65031,SAMPLE NO COMMERCIAL VALUE",32151990 +What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0922020032,29420000 +What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040101,29420000 +What is the hs code for D-BIOTIN (POST BORDER) COA UE02206013,29362900 +What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02206013,29362900 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11220820,29362500 +What is the hs code for MINERAL PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92210422,21069059 +What is the hs code for VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92210421,21069059 +What is the hs code for D-BIOTIN (POST BORDER) COA UE02206013,29362900 +What is the hs code for ANTIOXIDANT PREMIX FOR GUMMY (BHN BAKU MAKANAN) COA XW92210415,21069059 +What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22050068,29362500 +What is the hs code for ARGAN OIL COLD PRESSED ORGANIC (BHN BAKU KOSMETIK) COA 161124,29362500 +"What is the hs code for POTASSIUM L-ASPARTATE 0.5-HYDRATE CRYST. POWDER, PH.EUR.10.ED. (BHN BAKU OBAT) COA 3097136",29224900 +What is the hs code for MAGNESIUM L-HYDROGENASPARTATE 2-HYDRATE (BHN BAKU OBAT) COA 3108440-02,29224900 +"What is the hs code for FERROUS GLUCONATE, POWDER, PH.EUR.10.ED. (BHN BAKU OBAT) COA 3093987",29181600 +"What is the hs code for CALCIUM STEARATE POWDER, PH.EUR.10.ED., NF 38, VEGETABLE (BHN BAKU OBAT) COA 3119702",38249999 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02207058,32041800 +What is the hs code for B-CAROTENE 10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT22050003,32041800 +What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02209089,29362400 +"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02205053,UE02205058",32041800 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02208704,29362400 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT22070041,29362100 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02208704,29362400 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22080653,29362100 +"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22080653,WB22080656",29362100 +What is the hs code for EUXYL K 940 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6,38249999 +What is the hs code for EUXYL K 720 CAN 10 KG (BHN BAKU KOSMETIK) CAS 65-85-0,38249999 +What is the hs code for EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6,38249999 +What is the hs code for SENSIVA SC 10 CAN 10 KG (BHN BAKU KOSMETIK) CAS 1117-86-8,38249999 +What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9,38249999 +What is the hs code for SENSIVA SC 80 CAN 10KG (BHN BAKU KOSMETIK) CAS 1117-86-8,38249999 +What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9,38249999 +What is the hs code for EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) CAS 122-99-6,38249999 +What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6,38249999 +What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6,38249999 +What is the hs code for CHITOSAN (BHN BAKU SUPPLEMEN) COA HK-C22092202,39139090 +What is the hs code for ONDANSETRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA AOND-22010,29332900 +"What is the hs code for MC-GLUCAN (BHN BAKU KOSMETIK) COA MCGL220926,MCGL221121",39139090 +What is the hs code for LIFE'SDHA(TM) S35-O300 (BHN BAKU SUPPLEMEN) COA VY00486413,29362500 +What is the hs code for V2G (BHN BAKU KOSMETIK) COA 85804762,29362700 +What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-151812,13021990 +What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-051612,38249999 +What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2022102105,21012020 +What is the hs code for FRK PMX MENTARI 1.0 (BHN BAKU MAKANAN) COA 2022111402,21069091 +What is the hs code for MEG-3 '30' N-3 INF OIL (BHN BAKU SUPPLEMEN) COA TS00021125,29362500 +What is the hs code for MEG-3 '30' N-3 INF OIL (BHN BAKU SUPPLEMEN) COA TS00021125,29362500 +What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 22100570,29221990 +What is the hs code for METAMIZOLE SODIUM REGULAR GRADE (BHN BAKU OBAT) COA 2206908,29331900 +What is the hs code for THEOPHYLLINE BP/EP (BHN BAKU OBAT) COA 22186,29395900 +What is the hs code for GREEN TEA FAIRTRADE DISTILLATE (BHN BAKU KOSMETIK) COA 22090299,38249999 +What is the hs code for COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-2207107,29146200 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO221203,38249999 +What is the hs code for ARGAN VIRGIN COLD PRESSED DEODORIZED ORGANIC OIL XNE112 (BHN BAKU KOSMETIK) COA ARHVD221105-SI,38249999 +What is the hs code for COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) COA ANTS220803,38249999 +What is the hs code for ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (BHN BAKU KOSMETIK) COA ROSD220904-BIO,38249999 +"What is the hs code for SODIUM CARBONATE IPH (BHN BAKU SUPPLEMEN) COA DOC3112221,DOC3192221",28363000 +"What is the hs code for OPAGLOS 6000 WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET) COA DT728046,SAMPLE NO COMMERCIAL VALUE",32151990 +What is the hs code for BILBERRY (V. MYRTILLUS) ET EX 36PCT (POST BORDER) COA 22S0302800,13021990 +"What is the hs code for PERMETHRIN (PHARMA GRADE) (BHN BAKU OBAT) COA 225046013,225046019,225046020",29163990 +What is the hs code for CARBAZOCHROME SODIUM SULFONATE ORAL G (BHN BAKU OBAT)COA AC21010/21021,29339990 +What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ21016119 S/D UQ21016121,29362700 +What is the hs code for FLORAGLO(R) LUTEIN 20 PCT SAF (BHN BAKU SUPPLEMEN) COA UE02206017,32030010 +What is the hs code for FRUITFLOW II SD (POST BORDER) COA 22T0027900,29362900 +"What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512245,G02512246",47069200 +"What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512236,G02512242,G02512246",47069200 +"What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 22100569,22100570",29221990 +"What is the hs code for MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL221024,MCCPOL221027,MCCPOL221031",29094900 +What is the hs code for HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2511122,29397900 +What is the hs code for METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/12110606,29332900 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22060063,29362300 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202092,122202093",28363000 +What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M -31.0% (BHN BAKU OBAT) COA 102229042,28161000 +What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA P-66,29397900 +What is the hs code for 4-HYDROXYACETOPHENONE (BHN BAKU MAKANAN) COA COA 202211303,29145000 +What is the hs code for LABRAFIL M 1944 CS (BHN BAKU OBAT) COA 191824,28399000 +What is the hs code for TEFOSE 63 BF (BHN BAKU OBAT) COA 192275,28399000 +What is the hs code for GELOT 64 CAR (BHN BAKU OBAT) COA 191239,28399000 +What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK) COA 2210EF4912,29224900 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20221127,17029019 +What is the hs code for BICAR FOOD 27/50 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP15122,28363000 +"What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP31522,MTP30022,MTP29122,SAMP",28363000 +"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP30122,MTP24122,MTP26622,SAMP",28363000 +"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP26622,MTP26622",28363000 +What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP29122,28363000 +What is the hs code for BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP31422,28363000 +"What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP21822,MTP28322",28363000 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-30-18037...(BHN BAKU PEWARNA TABLET) COA SH661605,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA SH663398,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019...(BHN BAKU PEWARNA TABLET) COA SH663374,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING..(BHN BAKU PEWARNA TABLET) COA SH663375,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29038...(BHN BAKU PEWARNA TABLET) COA SH663377,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) COA SH663376,38249999 +What is the hs code for SORBITOL SPECIAL (R) MDF 85 (BHN BAKU SUPPLEMEN) COA M21036,29054400 +"What is the hs code for VC ASCORBIC ACID REGULAR (BHN BAKU MAKANAN) COA HPB2207142,HPD2207068,HPD2210001",29362700 +What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA719615,39061090 +What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA721256,39061090 +What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA721256,39061090 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359... (BHN BAKU PEWARNA TABLET) COA GA719393,39061090 +What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) COA GA719637,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03Z59026...(BHN BAKU PEWARNA TABLET) COA GA718214,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019...(BHN BAKU PEWARNA TABLET) COA GA720789,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA GA721492,38249999 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22080657,29362100 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22080657,29362100 +"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22110660,WB22110661,WB22110664",29362100 +"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22110664,WB22110665",29362100 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT21040008,29362600 +"What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334848,B334850,B334855",29419000 +What is the hs code for SILVERION 2400 (BHN BAKU KOSMETIK) COA 20-10174,38249999 +What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU PAKAN HEWAN) COA 202200315,28183000 +What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA F12211UG,29053200 +What is the hs code for STERNFINE 100 N (BHN BAKU MAKANAN) COA TY2220712-16,29232011 +"What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU SUPLEMEN) COA UJ239,UJ240",29181400 +"What is the hs code for FERRIC PYROPHOSPHATE,24PCT - 26PCT FE POWDER,FCC12 (BHN BAKU OBAT) COA 3117751",28353990 +What is the hs code for ALUMINIUM HYDROXIDE ACETATE POWDER (BHN BAKU OBAT) COA 3118740,29152990 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) COA SH663695,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-7027...(BHN BAKU PEWARNA TABLET) COA SH663705,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-22-7719...(BHN BAKU PEWARNA TABLET) COA SH663696,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COMPLETE FILM... (BHN BAKU PEWARNA TABLET) COA GA722232,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) COA GA721644,38249999 +What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) COA GA721721,38249999 +What is the hs code for OPADRY (R) KB LOW VISCOSITY FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA721426,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A...(BHN BAKU PEWARNA TABLET) COA GA721996,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751... (BHN BAKU PEWARNA TABLET) COA GA721427,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03Z59026...(BHN BAKU PEWARNA TABLET) COA GA721428,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G52990...(BHN BAKU PEWARNA TABLET) COA GA721429,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) COA GA721294,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K14834 ...(BHN BAKU PEWARNA TABLET) COA GA721578,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G54002...(BHN BAKU PEWARNA TABLET) COA GA720639,38249999 +What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC... (BHN BAKU PEWARNA TABLET) COA GA721527,39061090 +What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC... (BHN BAKU PEWARNA TABLET) COA GA722130,39061090 +What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC... (BHN BAKU PEWARNA TABLET) COA GA722130,39061090 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001... (BHN BAKU PEWARNA TABLET) COA GA722077,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA GA722119,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G630013...(BHN BAKU PEWARNA TABLET) COA GA721547,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86674...(BHN BAKU PEWARNA TABLET) COA GA720635,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019...(BHN BAKU PEWARNA TABLET) COA GA721435,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019...(BHN BAKU PEWARNA TABLET) COA GA721435,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) COA GA721914,38249999 +What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) COA GA721915,38249999 +What is the hs code for DL-TARTARIC ACID (POST BORDER) COA,29181200 +What is the hs code for CROSPOVIDONE XL (BHN BAKU SUPPLEMEN) COA,39059990 +What is the hs code for TITANIUM DIOXIDE 3100 (BHN BAKU MAKANAN) COA 2212201,32061110 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20221207,17029019 +What is the hs code for VITAMIN A PALMITATE 1.7MIU/G (BHN BAKU KOSMETIK) COA 0422070010,29362100 +What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2203923528,29372900 +What is the hs code for TRICALCIUM CITRATE 4-HYDRATE POWDER (BHN BAKU OBAT) COA 3123567,29181590 +"What is the hs code for FERROUS GLUCONATE, POWDER, USP 43 (BHN BAKU OBAT) COA 3123981",29181600 +"What is the hs code for TRIPOTASSIUM CITRATE 1-HYDRATE, CRYST... (BHN BAKU OBAT) COA 3117975",29181400 +"What is the hs code for FERRIC PYROPHOSPHATE,24PCT - 26PCT FE POWDER,FCC12 (BHN BAKU MAKANAN) COA 3124836",28353990 +"What is the hs code for SODIUM GLYCEROPHOSPHATE, CRYST, .... (BHN BAKU OBAT) COA 3084920",29199000 +"What is the hs code for MAGNESIUM CARBONATE, HEAVY, POWDER... (BHN BAKU OBAT) COA 3119795,3120833,3122196",28369990 +"What is the hs code for DIPOTASSIUM PHOSPHATE POWDER (BHN BAKU MAKANAN) COA 3117154,3119969",28352400 +"What is the hs code for CALCIUM ACETATE, POWDER, PURITY... (BHN BAKU OBAT) COA 3118699",29152990 +"What is the hs code for FERROUS GLUCONATE, POWDER, USP 43 (BHN BAKU OBAT) COA 3123981",29181600 +"What is the hs code for POTASSIUM L-ASPARTATE 0,5-HYDRATE (BHN BAKU OBAT) COA3097136",29224900 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359... (BHN BAKU PEWARNA TABLET) COA GA720624,39061090 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359... (BHN BAKU PEWARNA TABLET) COA GA720625,39061090 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O63173... (BHN BAKU PEWARNA TABLET) COA GA722329,39061090 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O63173... (BHN BAKU PEWARNA TABLET) COA GA722328,39061090 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O600001...(BHN BAKU PEWARNA TABLET) COA GA720626,39061090 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA GA721147,38249999 +What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC... (BHN BAKU PEWARNA TABLET) COA GA720628,39061090 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18509... (BHN BAKU PEWARNA TABLET) COA GA720784,39061090 +What is the hs code for OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING SYSTEM 3...(BHN BAKU PEWARNA TABLET) COA GA719436,38249999 +What is the hs code for OPADRY (R) .II COMPLETE FILM COATING SYSTEM 85G86512...(BHN BAKU PEWARNA TABLET) COA GA721259,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G62343...(BHN BAKU PEWARNA TABLET) COA GA720632,38249999 +What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC... (BHN BAKU PEWARNA TABLET) COA GA721527,39061090 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G65197...(BHN BAKU PEWARNA TABLET) COA GA720633,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-25008...(BHN BAKU PEWARNA TABLET) COA GA721105,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) COA GA722191,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F48105 ...(BHN BAKU PEWARNA TABLET) COA GA721978,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014...(BHN BAKU PEWARNA TABLET) COA GA720634,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 02F52182...(BHN BAKU PEWARNA TABLET) COA GA721974,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B28796 ...(BHN BAKU PEWARNA TABLET) COA GA720988,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM OY-GM-7305...(BHN BAKU PEWARNA TABLET) COA GA721975,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86674...(BHN BAKU PEWARNA TABLET) COA GA720635,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K580000...(BHN BAKU PEWARNA TABLET) COA GA720636,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A18597...(BHN BAKU PEWARNA TABLET) COA GA720637,39061090 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A18597...(BHN BAKU PEWARNA TABLET) COA GA720637,39061090 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) COA 03K19229,38249999 +What is the hs code for OPADRY (R) TF TITANIUM FREE FORMULATED FILM COATING...(BHN BAKU PEWARNA TABLET) COA GA721994,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G54002...(BHN BAKU PEWARNA TABLET) COA GA720639,38249999 +What is the hs code for HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-111422,13021990 +What is the hs code for HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-111422,13021990 +What is the hs code for HYUNDAI BIOLAND BIOCTP-500 (BHN BAKU KOSMETIK) COA BOPN-032762,13021990 +What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1221201,39139090 +What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011702,13021950 +What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA MAK110,28321000 +What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-051612,38249999 +What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG221202,29362700 +What is the hs code for STARTAB (R) DIRECTLY COMPRESSIBLE STARCH 4001 (BHN BAKU PEWARNA TABLET) COA WP864468,35051010 +What is the hs code for ETORIXOCIB IHS (BHN BAKU OBAT) COA ETC-PM/22001,29333990 +What is the hs code for BETAMETHASONE VALERATE USP (BHN BAKU OBAT) COA APL/BV/01210/I-22,29372200 +What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-051612,38249999 +What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-051612,38249999 +What is the hs code for LIPOID PPL-600 (BHN BAKU SUPPLEMEN) COA 577200-2220234 (POST BORDER),29232011 +What is the hs code for TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA T7290,29225090 +What is the hs code for TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA T7361,29225090 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202097,122202098",28363000 +What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202098,28363000 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 20B680004...(BHN BAKU PEWARNA TABLET) COA GA722734,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85A540003 ...(BHN BAKU PEWARNA TABLET) COA GA722733,38249999 +What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC... (BHN BAKU PEWARNA TABLET) COA GA722732,39061090 +"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20220802,XH20220903",29362800 +What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20220903,29362800 +What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464246821,39123900 +What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2444185823,39123900 +What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180L8P002,39123900 +What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180L1V022,39123900 +What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464246821,39123900 +What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464244126,39123900 +What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464239749,39123900 +What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464247240,39123900 +What is the hs code for ETHOCEL STANDARD 14 PREMIUM ETHYLCELLULOSE... (BHN BAKU PEWARNA TABLET) COA D184M2P021,39123900 +"What is the hs code for PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) COA PH02460522,PH03460522,PH04460622,PH05",38249999 +What is the hs code for VIAL LEGIONELLA AGAR ENRICHMENT 6X5ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2271514,38210090 +"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2103714,...",38210090 +What is the hs code for BOTTLE MICROBIAL CONTENT TEST AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2304828,38210090 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2139402,38210090 +"What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2027288",38210090 +What is the hs code for VIAL SUPPLEMENT C 6X5ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2271516,38210090 +What is the hs code for BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2326948,38210090 +What is the hs code for HU IFN-GMA BV421 B27 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2139388,38210090 +What is the hs code for HU IL-2 PE MQ1-17H12 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2048047,38210090 +What is the hs code for (HU IL-4 APC 8D4-8 50TST MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2227896,38210090 +What is the hs code for HU CD8 APC-CY7 SK1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2203655,38210090 +What is the hs code for HU CD3 FITC HIT3A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2039630,38210090 +What is the hs code for CYTOFIX/CYTOPERM SOLN KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2137667,38210090 +"What is the hs code for HU CD28 NALE CD28.2 500UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1256637,1256638",38210090 +What is the hs code for STAIN BUFFER FBS 500ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2118763,38210090 +What is the hs code for VIAL SUPPLEMENT C 6X5ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2271516,38210090 +"What is the hs code for CYTOFIX FIXATION BUFFER 100ML (MEDIA TUK PENGEMBANGAN MIKRO ORGANISME), BATCH 2096593",38210090 +What is the hs code for VIAL ISOVILATEX ENRICHMENT 10ML 5 EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2299651,38210090 +What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP C (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2224441,38210090 +"What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP W135 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1092251",38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2111967,38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2076212,38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1344136,38210090 +What is the hs code for VIAL SHIGELLA ANTIS POLY A1 LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2161354,38210090 +What is the hs code for VIAL SHIGELLA ANTIS POLY A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2125067,38210090 +What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2196280,38210090 +What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2214155,38210090 +What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 2048722,38210090 +"What is the hs code for BD CST BEADS KIT 50 TESTS (MEDIA TUK PENGEMBANGAN MIKRO ORGANISME), BATCH 66511",38210090 +"What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL02205485,TL02205489",29362700 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11220820,29362500 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12204017,29362900 +What is the hs code for CALCIUM D-PANTOTHENATE (POST BORDER) COA TL02208718,29362400 +What is the hs code for VITAMIN MINERAL PREMIX - JELLY POWDER V2 (POST BORDER) COA XW92211273,21069059 +"What is the hs code for PX 103070 C (POST BORDER) COA XW92211023,XW92211024",21069059 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT22060162,29362900 +What is the hs code for RONOXAN A (POST BORDER) COA UE02209012,29362100 +What is the hs code for CALCIUM D-PANTOTHENATE (POST BORDER) COA TL02208718,29362400 +What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000206223,29362900 +"What is the hs code for STAY-C (R) 50 (POST BORDER) COA UE02202011,UE02202017",29362700 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210151,0708210152",29420000 +What is the hs code for STAY-C (R) 50 (POST BORDER) COA UE02202017,29362700 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060037,29420000 +What is the hs code for ARGAN OIL (POST BORDER) COA AVD0040349,29362500 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22090305,29362800 +What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040042,29420000 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02206013,29362900 +What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02109811 (POST BORDER),29362400 +"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000206223,0000206943",29362900 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22090305,29362800 +What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN548484,35051010 +What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN548561,35051010 +What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN548560,35051010 +What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN548562,35051010 +What is the hs code for LAKE PIGMENT HT (R) 5396 ERYTHROSINE ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP860976:1,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5406 FD&C RED 40/ALLURA RED..(BHN BAKU PEWARNA TABLET) COA WP852267:BB3529,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5177 FD&C YELLOW 5/... (BHN BAKU PEWARNA TABLET) COA WP852899:BB4037,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5625 FD&C BLUE 2/INDIGO.. (BHN BAKU PEWARNA TABLET) COA WP855372:BB5346,32151990 +What is the hs code for LAKE PIGMENT (R) 6010 D&C YELLOW 10 ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP853301:BB4517,32151990 +What is the hs code for LAKE PIGMENT (R) 6010 D&C YELLOW 10 ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP853298:BB4442,32151990 +What is the hs code for EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300026,13021950 +What is the hs code for ACTIPONE (R) WHITE TEA GW (BHN BAKU KOSMETIK) COA 10300052,13021950 +"What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 24021222,24041222,24051222,24061222,24071222,23811222",29359000 +"What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 15470722,15500722,15520722,15530722",29359000 +What is the hs code for SODIUM ACID PYROPHOSPHATE FOOD GRADE (BHN BAKU MAKANAN) COA 9221124,28353990 +"What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) (BHN BAKU OBAT) COA 4454103081,4454104286",39139090 +What is the hs code for KETROLAC TROMETHAMINE USP (BHN BAKU OBAT) COA KM0240622,29339990 +What is the hs code for FERRIC HYDROXIDE POLYMALTOSE COMPLEX POWDER (BHN BAKU SUPPLEMEN) COA 3127023,29400000 +"What is the hs code for MIRASIL DM5 L (BHN BAKU KOSMETIK) COA 2236FH3615,2221FF2615",39100090 +What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) COA 321CAA0023,38249999 +What is the hs code for MEG-3 30 N-3 INF OIL (BHN BAKU SUPPLEMEN) COA TS00020873,29362500 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F32371...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B82443...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 57-50-1,38249999 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11221040,29362500 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12204017,29362900 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ20610703,29362300 +What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040124,29420000 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02208072 (POST BORDER),29362400 +What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02202017 (POST BORDER),29362700 +What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00790949,29420000 +"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010248,0822010268",29420000 +What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS0810522,29420000 +What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P1G24QA000,29420000 +What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001674321,29420000 +What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02202017 (POST BORDER),29362700 +What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0922020032,29420000 +What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010248,29420000 +What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040104,29420000 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060036,29420000 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02208069,29362400 +"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02208069,TL02208072",29362400 +What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0722010087,29420000 +"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010268,0822010357",29420000 +What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0722010087,29420000 +What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040104,29420000 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22090305,29362800 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060064,29420000 +"What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0722010087,0722010083",29420000 +"What is the hs code for HYDROCORTISONE ACETATE EP/USP (BHN BAKU OBAT) COA NEHAC220711,NEHAC220607",29372100 +What is the hs code for PREDNISOLONE BP/USP (BHN BAKU OBAT) COA XPL221008,29372100 +"What is the hs code for PREDNISONE USP (BHN BAKU OBAT) COA NPD221113,NPD221015",29372100 +"What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334841,B334851 S/D B334853",29419000 +What is the hs code for SODIUM ACID PYROPHOSPHATE FOOD GRADE (BHN BAKU MAKANAN) COA 9230105,28353990 +What is the hs code for CELLOSIZE TM TEXTURE F4M HYDROXYPROPYL... (BHN BAKU KOSMETIK) COA F410L5ED32,39123900 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE ...(BHN BAKU PEWARNA TABLET) COA GA724004,38249999 +What is the hs code for AZITHROMYCIN (BAHAN BAKU OBAT) COA 129-220530-1,29419000 +What is the hs code for GRANISETRON HYDROCHLORIDE (BAHAN BAKU OBAT) COA 323-220901,29397900 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA GLJ,38249999 +What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA GIE,38249999 +What is the hs code for PROMOIS EK-118(IN) (BHN BAKU KOSMETIK) COA GLB,38249999 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA GGI,38249999 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA GLI,38249999 +What is the hs code for MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50488,29061100 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP34222 (POST BORDER),28363000 +What is the hs code for GRANISETRON HCL EP (BHN BAKU OBAT) COA GRH/121007,29397900 +What is the hs code for MIRASIL DM5 L (BHN BAKU KOSMETIK) COA 2245FH3115,39100090 +What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-221226,29061300 +"What is the hs code for PYRAZINAMIDE EP/USP (BHN BAKU OBAT) COA WHOPZ 077 K 22 S/D WHOPZ 085 K 22,WHOPZR 037 E 22, ...",29339990 +What is the hs code for BUDESONIDE MICRONIZED (BHN BAKU OBAT) COA NB3038M,29372900 +What is the hs code for DESONIDE MICRONIZED (BHN BAKU OBAT) COA NC3328M,29372900 +What is the hs code for MAGNESIUM L-HYDROGENASPARTATE 2-HYDRATE (BHN BAKU OBAT) COA 3125910,29224900 +What is the hs code for IBUPROFEN 40 MICRONS (BHN BAKU OBAT) COA 4050-4826,29163990 +What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB141122,39123900 +What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B011022,39123900 +What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB141122,39123900 +What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B011022,39123900 +What is the hs code for LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LG120822,39123900 +"What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWDER... (B.BAKU KOSMETIK) COA 057/23,058/23",38249999 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6,38249999 +What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6,38249999 +What is the hs code for RICE MILK AQUEOUS EXTRACT (SB) (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for OPAGLOS (R) TABLET CORE SEALANT PRODUCT OPAGLOS... (BHN BAKU PEWARNA TABLET) COA DT739208,32151990 +What is the hs code for OPACODE (R) MONOGRAMMING INK S-1-277001 BLACK (BHN BAKU PEWARNA TABLET) COA DT739223,32151990 +"What is the hs code for GUAIFENESIN USP 43 (B. BAKU OBAT) COA GGE-2211240 S/D GGE-2211242,GGE-2212254 S/D GGE-2212264",29094900 +"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/12/171222,181222,191222,221222,231222",29420000 +What is the hs code for PANTOPRAZOLE SODIUM (STERILE) (BAHAN BAKU OBAT) COA SI/PPZ/01561222,29333990 +What is the hs code for CETIRIZINE DIHYDROCHLORIDE BP (BHN BAKU OBAT) COA SLL/CTR/0922058,29335990 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2270946,38210090 +What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2208259,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2214270,38210090 +What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2208259,38210090 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2270946,38210090 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2116784,38210090 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2213688,38210090 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2236789,38210090 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2116784,38210090 +"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2109792,2172755",38210090 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2179372,38210090 +"What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1306233,2104098",38210090 +What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2011124,38210090 +What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1236551,38210090 +What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2297695,38210090 +What is the hs code for BOTTLE NUTRIENT GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2311059,38210090 +What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1279274,38210090 +What is the hs code for BOTTLE CHROMAGAR CANDIDA 500GM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2123851,38210090 +What is the hs code for PAIL DIFCO AGAR 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2334650,38210090 +What is the hs code for BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2293018,38210090 +What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2304673,38210090 +What is the hs code for BOTTLE SODIUM DESOXYCHOLATE 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1279594,38210090 +What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2088727,38210090 +What is the hs code for BOTTLE GLYCEROL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2252027,38210090 +What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2060510,38210090 +What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2217638,38210090 +What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2053778,38210090 +What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2217600,38210090 +What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2179358,38210090 +What is the hs code for BOTTLE TODD HEWITT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2060551,38210090 +What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2235469,38210090 +What is the hs code for GASPAK EZ STANDARD INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH7384802010,38210090 +"What is the hs code for BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2094035",38210090 +"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2046556,217937",38210090 +What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2053111,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2228563,38210090 +What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1236551,38210090 +What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2215654,38210090 +"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2229544",38210090 +What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2269108,38210090 +What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2111375,38210090 +What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2215995,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2074156,38210090 +"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1188089,2214259",38210090 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1285556,38210090 +"What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2298866,230",38210090 +What is the hs code for TSA TM WLP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2291682,38210090 +What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 2293892,38210090 +What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2214224,38210090 +What is the hs code for CULTURESWAB PLUS AMLES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 221024700,38210090 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2173796,38210090 +What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC YRPN19-8...(ALAT KESEHATAN)COA 6D19100L0106,30061010 +What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC YRPN19-10...(ALAT KESEHATAN)COA HR1938L0106,30061010 +What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC YRPN19-100..(ALAT KESEHATAN)COA HR1960L0106,30061010 +What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC YRPN19-1...(ALAT KESEHATAN)COA HL19100L0106,30061010 +What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC YRDN-FE-...(ALAT KESEHATAN)COA DA21420N0106,30061010 +What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 221769,13021990 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 221964,13021990 +What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 222375,29329900 +What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 220387,13021990 +What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for CLAIRJU (BHN BAKU KOSMETIK) COA 221795,13021990 +What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 221904,13021990 +What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 221964,13021990 +What is the hs code for DOKUDAMI LIQUID B (BHN BAKU KOSMETIK) COA 222276,13021990 +What is the hs code for CHRONO CHARDY (BHN BAKU KOSMETIK) COA 222292,13021990 +What is the hs code for CYPROHEPTADINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA BCYPH/2212089,29333990 +"What is the hs code for CALAMINE, POWDER, BP 2023 (BHN BAKU SUPLEMEN) COA 3127863 (POST BORDER)",28369990 +What is the hs code for NYSTATIN POWDER ROW GRADE (BHN BAKU OBAT) COA C114701,29419000 +What is the hs code for NYSTATIN MICRONIZED (BHN BAKU OBAT) COA C132223,29419000 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 22B0095600,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 22B0095900,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 22B0096000,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 22B0096100,13021990 +What is the hs code for ISDN 10PCT IN NACL (DISPERSION) (BHN BAKU OBAT) COA 2214400,30039000 +What is the hs code for BOSWELLIA SERRATA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 36BWP0090,13021950 +"What is the hs code for NG 5 PCT-1,2 PROPYLENGLYCOLE 95PCT (BAHAN BAKU OBAT) COA 2213201",30039000 +What is the hs code for KSG-210 (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9,38249999 +What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9,38249999 +What is the hs code for KSG-210 (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9,38249999 +What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9,38249999 +What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9,38249999 +What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4,38249999 +What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9,38249999 +What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) CAS 68937-54-2,38249999 +What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9,38249999 +"What is the hs code for BICAR PHARMA 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA ROA199224,ROA199224,ROA200226",28363000 +What is the hs code for OPACODE (R) MONOGRAMMING INK S-1-180000 WHITE (BHN BAKU PEWARNA TABLET) COA WP865510,32151990 +What is the hs code for DEXAMETHASONE BP/USP (BHN BAKU OBAT) COA NED230107,29372200 +"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (POST BORDER) COA ROA199224,ROA199224,ROA186227,ROA...",28363000 +"What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE(BHN BAKU SUPPLEMEN) COA MTP33822,MTP33922 (POST BORDER)",28363000 +What is the hs code for LYNESTRENOL BP (BHN BAKU OBAT) COA LNZ/922002,29372300 +What is the hs code for STERNFINE 100 N (BHN BAKU MAKANAN) COA N51-3109152,29232011 +What is the hs code for FLOWLAC (R) 100 H (BHN BAKU OBAT) COAL105814522,17021100 +What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104314322,17021100 +What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103864422,17021100 +What is the hs code for PHENYLEPHRINE HCL USP (BHN BAKU OBAT) COA 2-IL-D-2481222 S/D 2-IL-D-2501222,29225090 +What is the hs code for COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-2207107 (POST BORDER),29146200 +What is the hs code for COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-2208128 (POST BORDER),29146200 +"What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102202046",28183000 +What is the hs code for RAJOL WP80/BDF LIGHT LIQUID PARAFFIN-BP/LIGHT MINERAL OIL... (BHN BAKU KOSMETIK) COA 1000230001,27101990 +What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/12/241222,29420000 +What is the hs code for CROSCARMELLOSE SODIUM USP-NF (BHN BAKU OBAT) COA ACRMC/12/281222 S/D ACRMC/12/301222,39129090 +"What is the hs code for CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/01/060123,070123,160123",39123100 +"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASGP/12/191222,201222,201122",29420000 +What is the hs code for ROCOAT NIACINAMIDE 33 1/3 PCT (BHN BAKU SUPPLEMEN) COA WB21050216 (POST BORDER),29362900 +What is the hs code for ROCOAT PYRIDOXINE HCL 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22050068 (POST BORDER),29362500 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060064,29420000 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060064,29420000 +What is the hs code for HYUNDAI BIOLAND CUCURBITA EXTRACT (BHN BAKU KOSMETIK) COA CMB-013042,13021990 +What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-070122,13021950 +What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA MAK114,28321000 +What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-062102,13021950 +What is the hs code for HYUNDAI BIOLAND BIO-BLACK PEARL POWDER (BHN BAKU KOSMETIK) CAS 73049-73-7,38249999 +What is the hs code for HYUNDAI BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20221227,17029019 +What is the hs code for SYN(R)-AKE (BHN BAKU KOSMETIK) COA UE02210016,29420000 +What is the hs code for SYN(R)-AKE (BHN BAKU KOSMETIK) COA UE02210016,29420000 +What is the hs code for VEEGUM K 20K BG (BHN BAKU KOSMETIK) COA 2021472831,25081000 +What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-0130123,29334910 +"What is the hs code for AMBROXOL HYDROCHLORIDE BP(BHN BAKU OBAT) COA AMB E18 080 0123,AMB E18 081 0123",29221990 +What is the hs code for PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3386233,33029000 +"What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC211119,PC211217",29420000 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12204017 (POST BORDER),29362900 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT22090031,29362900 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02208718 (POST BORDER),29362400 +"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92212044,XW92212045",21069059 +"What is the hs code for PX 103070 - C3 (BHN BAKU MAKANAN) COA XW92212051,XW92212052",21069059 +What is the hs code for EUXYL K 712 CAN 10 KG (BHN BAKU KOSMETIK) CAS 24634-61-5,38249999 +What is the hs code for EUXYL K 903 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6,38249999 +What is the hs code for EUXYL K 940 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6,38249999 +What is the hs code for EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) CAS 122-99-6,38249999 +What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6,38249999 +What is the hs code for SENSIDIN DO CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9,38249999 +What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9,38249999 +What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9,38249999 +What is the hs code for SUPPOCIRE AM PELLETS CAR (BHN BAKU SUPPLEMEN) COA 22E2708,28399000 +What is the hs code for SUPPOCIRE BM PELLETS CAR (BHN BAKU SUPPLEMEN) COA 22E2205,28399000 +What is the hs code for SUPPOCIRE A PELLETS CAR (BHN BAKU SUPPLEMEN) COA 22E2405,28399000 +What is the hs code for SUPPOCIRE NA PELLETS CAR (BHN BAKU SUPPLEMEN) COA 22E3707,28399000 +What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 200925,29332900 +What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 200925,29332900 +What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ21016113,29362700 +"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2202017,UEB2202020,UEB2202021,UEB220",29362300 +What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22070137,29362400 +What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2444202128,39123900 +What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED MAIZE... (BHN BAKU PEWARNA TABLET) COA IN548444,35051010 +What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180K34002,39123900 +What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180L48006,39123900 +What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464207156,39123900 +What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180M2D001,39123900 +What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464207191,39123900 +What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464207192,39123900 +What is the hs code for METHOCEL E5 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2444151392,39123900 +"What is the hs code for CAFFEINE BP/EP/USP (BHN BAKU OBAT) COA 22101854,22101864,22101865,22101871,22101877,...",29393000 +"What is the hs code for CAFFEINE BP/EP/USP (BHN BAKU OBAT) COA 22122383,22122392,22122393,22122409,... (POST BORDER)",29393000 +What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG221230,29362700 +What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP23014454,29211900 +What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2444202128,39123900 +What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED MAIZE... (BHN BAKU PEWARNA TABLET) COA IN548444,35051010 +What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180K34002,39123900 +What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180L48006,39123900 +What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464207156,39123900 +What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180M2D001,39123900 +What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464207191,39123900 +What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464207192,39123900 +What is the hs code for METHOCEL E5 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2444151392,39123900 +What is the hs code for HEXETIDINE (BHN BAKU OBAT) COA FG22202170,29335990 +What is the hs code for BARCROFT TM 0501 AL HYD POWDER (BHN BAKU OBAT) COA 102260001,28183000 +What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102269006,28161000 +What is the hs code for PROCATEROL HCL HEMIHYDRATE MICRONIZED (BHN BAKU OBAT) COA 86032621M1,29337900 +What is the hs code for PHARMABURST (R) C1 (BHN BAKU OBAT) COA 122202337,21069099 +What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) CAS 1119-97-7,38249999 +What is the hs code for CATECHINS TEAVIGO 1 KG (BHN BAKU KOSMETIK) COA 211081,21012020 +What is the hs code for SENTRY POLYOX WSR 303 LEO NF (DUPONT/IFF) BHN BAKU PEWARNA TABLET) COA 2534296408,39123900 +What is the hs code for VITAMIN B12 0.1 PCT WS (BHN BAKU MAKANAN) COA UT21040008 (POST BORDER),29362600 +What is the hs code for HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2511222,29397900 +What is the hs code for TRISODIUMCITRATE DIHYDRATE FINE GRANULAR (BHN BAKU SUPPLEMEN) COA UJ247,29181400 +What is the hs code for POTASSIUM IODIDE AND CARRIER (BHN BAKU SUPLEMEN) COA 3123496,28276000 +What is the hs code for SELOHVITA C (BHN BAKU SUPLEMEN) COA 3126191,28429010 +What is the hs code for NYSTATIN MICRONIZED (BHN BAKU OBAT) COA C132247,29419000 +What is the hs code for HYDROQUINONE USP (BHN BAKU SUPPLEMEN) COA APL/A/HQE/22029,29072200 +"What is the hs code for FERRIC PYROPHOSPHATE, APPROX. 25PCT FE... (BHN BAKU OBAT) COA 3101720",28353990 +What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-051702,29224900 +What is the hs code for HYUNDAI BIOLAND JEJU TANGERINE EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-022802,13021990 +What is the hs code for HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-782692,13021990 +What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-062122,29224900 +What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-011713,13021990 +What is the hs code for HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-06292,13021990 +"What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-061302,070522",13021990 +What is the hs code for HYUNDAI BIOLAND TEA TREE EXTRACT (BHN BAKU KOSMETIK) COA MASL-011402,13021990 +What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-022802,13021990 +What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-005-Z,13021990 +"What is the hs code for EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300064,10300065",13021950 +What is the hs code for EXTRAPONE (R) GINSENG (BHN BAKU KOSMETIK) COA 10300048,13021940 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 220601,13021990 +What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 220604,13021990 +What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 220604,13021990 +What is the hs code for OILESS' CITY TM (BHN BAKU KOSMETIK) COA 220304,13021990 +What is the hs code for OILESS' CITY TM (BHN BAKU KOSMETIK) COA 220614,13021990 +What is the hs code for PANTOPRAZOLE SODIUM (STERILE) (BAHAN BAKU OBAT) COA SI/PPZ/00050123,29333990 +What is the hs code for CEFOTAXIME SODIUM (BAHAN BAKU OBAT ) COA 3042208026,29419000 +"What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92212229,XW92212230 (POST BORDER)",21069059 +What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC220713,29420000 +What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000207862,29362900 +What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02109811,29362400 +What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1251471,38210090 +What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1251471,38210090 +What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1251471,38210090 +What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1251471,38210090 +What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1251471,38210090 +What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2032032,38210090 +What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2032032,38210090 +What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2032032,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2441197,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2441197,38210090 +"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 25-03-22,26-03-22,28-03-22",38029090 +What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB141122,39123900 +What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB141122,39123900 +What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B251122,39123900 +What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B251122,39123900 +What is the hs code for TRIMETHOPRIM MICRONISED BP (BHN BAKU OBAT) COA TMPM22120001,29335990 +What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN548830,35051010 +What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN548846,35051010 +What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN548829,35051010 +What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN548831,35051010 +"What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20221002,XH20221003 (POST BORDER)",29362800 +What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 221275,13021990 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for DOKUDAMI LIQUID B (BHN BAKU KOSMETIK) COA 222276,13021990 +What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 221964,13021990 +What is the hs code for KOMENUKA LIQUID BK (BHN BAKU KOSMETIK) COA 230245,13021990 +What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 222803,13021990 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for REFINED COCONUT OIL - L (BHN BAKU KOSMETIK) COA 0002625750,15131990 +What is the hs code for RADIA 8526 LINSEED STANDOIL 60 P (BHN BAKU KOSMETIK) COA EM69220724,15180039 +What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA MLAH0040123,29341000 +What is the hs code for KETOPROFEN (BHN BAKU OBAT) COA 202112,29183000 +What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA LC043-22-801,17021100 +What is the hs code for DURALAC H (BHN BAKU OBAT) COA L046-22-805,17021100 +What is the hs code for STERNFINE 100 N (BHN BAKU MAKANAN) COA N50-3131016,29232011 +What is the hs code for LAKE PIGMENT HT (R) 5177 FD&C YELLOW 5/TARTRA...(BHN BAKU PEWARNA TABLET) COA WP861773:BB9112,32151990 +What is the hs code for LAKE PIGMENT (R) 6010 D&C YELLOW 10 ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP864266:BC1291,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5406 FD&C RED 40/ALLURA RED...(BHN BAKU PEWARNA TABLET) COA WP851884:BB3827,32151990 +What is the hs code for LAKE PIGMENT (R) 6010 D&C YELLOW 10 ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP864266:BC1291,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C YELLOW 6/SUNSET...(BHN BAKU PEWARNA TABLET) COA WP862652:BC0373,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5177 FD&C YELLOW 5/TARTRA...(BHN BAKU PEWARNA TABLET) COA WP861770:BB9108,32151990 +What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) CAS 50-70-4,38249999 +What is the hs code for AMISOL TM 4135 (BHN BAKU KOSMETIK) CAS 8002-43-5,38249999 +What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for DEFENSCALP TM PF (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for ECOGEL (BHN BAKU KOSMETIK) CAS 85711-58-6,38249999 +What is the hs code for LECIGEL (BHN BAKU KOSMETIK) CAS 85711-58-6,38249999 +What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for MELANOSTATINE TM 5 BG (50PPM) (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for INST'TIGHT TM (BHN BAKU KOSMETIK) CAS 56-81-5,38249999 +What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) CAS 50-70-4,38249999 +What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829011551N,29224900 +What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 213925,29224900 +What is the hs code for DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834011557N,29224900 +What is the hs code for PROGELINE TM (BHN BAKU KOSMETIK) COA 221447,29224900 +What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 785081368N,13021990 +What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 222035,29224900 +"What is the hs code for MAGNESIUM CHLORIDE 6-HYDRATE, CRYST... (BHN BAKU KOSMETIK) COA 3118772",28273100 +What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1230104,39139090 +What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1230104,39139090 +What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1230104,39139090 +What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-013013S,39139090 +What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N1C103,28321000 +"What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW92212060,XW92212061",21069059 +What is the hs code for VITAMIN PREMIX 103093 - A (BHN BAKU MAKANAN) COA XW92212030,21069059 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ20912367,29362200 +What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02208069,29362400 +"What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20220101,XH20220801",29362800 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT22060028,32041800 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02208072 (POST BORDER),29362400 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02208072 (POST BORDER),29362400 +What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS1150622,29420000 +What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0722010071,29420000 +What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040104,29420000 +"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0322020036,0322020037",29420000 +What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040104,29420000 +What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P1G24QA000,29420000 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22090305 (POST BORDER),29362800 +What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0722010083,29420000 +"What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210153,0708210154,0708210158",29420000 +"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040042,0222040121",29420000 +What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0722010083,29420000 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22090307 (POST BORDER),29362800 +What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0041495 (POST BORDER),29362500 +What is the hs code for DL-PANTHENOL 50 L (BHN BAKU KOSMETIK) COA TL02211634 (POST BORDER),29362400 +What is the hs code for FLOWLAC (R) 100 (BHN BAKU OBAT) COA L101500323,17021100 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751... (BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O665000...(BHN BAKU PEWARNA TABLET) COA GA724514,39061090 +What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359 ...(BHN BAKU PEWARNA TABLET) COA GA724516,39061090 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for PIGMENT BLEND (R) PB-665012 BROWN...(BHN BAKU PEWARNA TABLET) COA GA724603,32151990 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G65197...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007...(BHN BAKU PEWARNA TABLET) COA GA724518,39061090 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 151-21-3,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K14834...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G62343...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51156...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G630022...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM II COMPLETE FILM...(BHN BAKU PEWARNA TABLET) CAS,38249999 +What is the hs code for OPADRY (R) KB LOW VISCOSITY FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS,38249999 +What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA724604,39061090 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03Z59026...(BHN BAKU PEWARNA TABLET) CAS,38249999 +What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA723104,39061090 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F19250...(BHN BAKU PEWARNA TABLET) CAS,38249999 +What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA723104,39061090 +What is the hs code for CINNARIZINE (BHN BAKU OBAT) COA CIN2301001,29335990 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP23014472,XP23014473 S/D XP23014475",29211900 +What is the hs code for DOCUSATE SODIUM (BHN BAKU OBAT) COA DSW3003,29171900 +What is the hs code for FAIR FOR LIFE REFINED SHEA (BHN BAKU KOSMETIK) COA 0000044366,15159011 +What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 189962,28399000 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 57-50-1,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G63147...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA723096,39061090 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86512...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620041...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51226...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55041...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G640054...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86674...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA723104,39061090 +What is the hs code for SEABUCKTHRON HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HIR220801-B,13021990 +What is the hs code for GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK) COA EG209-220602,13021990 +What is the hs code for GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK) COA EG209-220602,13021990 +What is the hs code for SEABUCKTHRON HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HIR220801-B,13021990 +What is the hs code for POVIDONE K-30 (BHN BAKU OBAT) COA PK30-230207F21,39059990 +What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104310223,17021100 +"What is the hs code for VITAMIN A WATER-MISCIBLE, TYPE 100 (BHN BAKU SUPPLEMEN) COA UT22040064,UT22040065",29362100 +What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT22080063,29362100 +What is the hs code for GENIVIDA(TM) TG (BHN BAKU SUPPLEMEN) COA UT21100004,29329900 +"What is the hs code for COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPPLEMEN) COA TL02210552",29362700 +What is the hs code for CAROCARE NAT. BC 20PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA EW22112023,32041800 +What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6,38249999 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for DL-TARTARIC ACID (BHN BAKU MAKANAN) COA RS01623.RS01624,29181200 +What is the hs code for CROSPOVIDONE XL (BHN BAKU SUPPLEMEN) COA PP230115XL,39059990 +"What is the hs code for ACETAMINOPHEN (PARACETAMOL) (BHN BAKU SUPPLEMEN) COA 202302008A,202302009A",29242930 +What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2217756,38210090 +What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2300340,38210090 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2173796,38210090 +What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B04E347M,38210090 +What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2174795,38210090 +What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2334621,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2265467,38210090 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2313348,38210090 +What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2304673,38210090 +What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2201317,38210090 +What is the hs code for GASPAK EZ STANDARD INCUBATION CONT...(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7384802010,38210090 +What is the hs code for BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1159968,38210090 +What is the hs code for BOTTLE BORDET GENGOU AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2137558,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2265467,38210090 +"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2172775,23111",38210090 +What is the hs code for BOTTLE TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2143687,38210090 +What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2208259,38210090 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2207023,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2228563,38210090 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2047633,38210090 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2116784,38210090 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2213688,38210090 +What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 2074829,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2214259,38210090 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2005526,38210090 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1285556,38210090 +What is the hs code for SODIUM CARBONATE IPH (BHN BAKU SUPPLEMEN) COA DOC3462221,28363000 +"What is the hs code for ESOMEPRAZOLE PELLETS 22,5PCT MUPS (BHN BAKU OBAT) COA EO2222C045",30039000 +What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464237382,39123900 +What is the hs code for METHOCEL E15 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2444195957,39123900 +What is the hs code for METHOCEL K100 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464259775,39123900 +What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180L1V022,39123900 +What is the hs code for METHOCEL E50 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D011K5QL02,39123900 +What is the hs code for GRANISETRON HCL EP (BHN BAKU OBAT) COA GRH/121008,29397900 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55132...(BHN BAKU PEWARNA TABLET) CAS 14807-96-6,38249999 +What is the hs code for OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 57-50-1,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F19250...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for BOTTLE GRAM SAFRANIN 250ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2300327,38210090 +What is the hs code for BOTTLE TERGITOL 4 XLT4 SUPPLEMENT 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH SLCM0515,38210090 +What is the hs code for BOTTLE SELENITE CYSTINE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2228836,38210090 +What is the hs code for VALERIAN DRY HYDR. EXTR. (BAHAN BAKU SUPLEMEN) COA 22B0083300,13021990 +What is the hs code for CENTELLA ASIATICA/PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 22S0097300,13021950 +What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 21S0191800,13021950 +"What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/01/200123 S/D 210123,230123 S/D 250123",29420000 +What is the hs code for 985-L-MENTHOL CRYSTALS INDIAN NATURAL (BHN BAKU KOSMETIK) COA H2-114-L-21-22,29061100 +What is the hs code for 985-L-MENTHOL CRYSTALS INDIAN NATURAL (BHN BAKU KOSMETIK) COA H2-132/L/21-22,29061100 +What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000208204 (POST BORDER),29362900 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02208072 (POST BORDER),29362400 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02208072 (POST BORDER),29362400 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT22060028,32041800 +What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12211009,29362900 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ20612201,29362200 +What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02208069,29362400 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT22060163,29362900 +What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE02209014 (POST BORDER),29362100 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT22070008,29362900 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11221040 (POST BORDER),29362500 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12211009 (POST BORDER),29362900 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ21013603,29362500 +What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP C (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2224441,38210090 +What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP W135 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1092251,38210090 +What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2027288,38210090 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2139402,38210090 +What is the hs code for MS IL-4 APC 11B11 25UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2038855,38210090 +What is the hs code for ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2123411,38210090 +What is the hs code for MS CD28 NE/LE 37.51 2MG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0225887,38210090 +What is the hs code for HU IL-1BTA CBA FLEX SET B4 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2336631,38210090 +What is the hs code for HU TNF CBA FLEX SET D9 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2118450,38210090 +What is the hs code for BD CST BEADS KIT 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 66511,38210090 +What is the hs code for PROPIDIUM IODINE STAINING SOLUTION 2ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1354798,38210090 +What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2284811,38210090 +What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP C (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2224441,38210090 +What is the hs code for CD4 PERCP-CY5.5 SK3 RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2283513,38210090 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2322461,38210090 +"What is the hs code for MC-GLUCAN (BHN BAKU KOSMETIK) COA MCGL220926,MCGL221121",39139090 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7,38249999 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0,38249999 +What is the hs code for PROMOIS WK-F (BHN BAKU KOSMETIK) CAS 69430-36-0,38249999 +What is the hs code for PROMOIS WK-GB (BHN BAKU KOSMETIK) CAS 69430-36-0,38249999 +What is the hs code for AMITOSE HGA (BHN BAKU KOSMETIK) COA LAJ,13021990 +What is the hs code for FERRIC HYDROXIDE POLYMALTOSE COMPLEX POWDER (BHN BAKU SUPPLEMEN) COA 3127023,29400000 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP26622,28363000 +"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP01323,MTP01123,MTP00923",28363000 +What is the hs code for FENTACARE 1631 25 MB 200KG PLAS DR (BHN BAKU KOSMETIK ) COA ZH23B0611M,29239000 +What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202242,28363000 +What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122202354,29054300 +What is the hs code for VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 122202271,28365010 +What is the hs code for PHARMABURST (R) 500 (BHN BAKU OBAT) COA 122202332,21069099 +What is the hs code for PHARMABURST (R) C1 (BHN BAKU OBAT) COA 122202339,21069099 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202099,122202242",28363000 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202098,122202099",28363000 +What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2023010602 (POST BORDER),21012020 +What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2023010602 (POST BORDER),21012020 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for L-CARNITINE (EP GRADE)(BHN BAKU KOSMETIK) COA 10100120220702,29239000 +What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) CAS 233683-84-6,38249999 +What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 221634,13021990 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA725523,39061090 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA725479,39061090 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86512...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA726365,39061090 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001..(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F19250...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA725484,39061090 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA725820,39061090 +What is the hs code for MACKAM C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 6192-1,34024990 +What is the hs code for LORATADINE USP (BHN BAKU OBAT) COA BLRD/2211083,29333990 +What is the hs code for BISOPROLOL FUMARATE USP (BHN BAKU OBAT) COA LT-OBFM/004/22-23,29221990 +What is the hs code for METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/13020086,29332900 +What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) (BHN BAKU OBAT) COA 4454104286,39139090 +What is the hs code for CETIRIZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA 22027CZ6RIIX,29335990 +What is the hs code for RUGENER DREIKRONEN HEILKREIDE 25K (BHN BAKU KOSMETIK) COA 2062225200,25090000 +What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 2204370974,29372200 +"What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 2204370974, SAMPLE NO COMMERCIAL",29372200 +What is the hs code for EUXYL K 120 CAN 10 KG (BHN BAKU KOSMETIK) CAS 55965-84-9,38249999 +What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) CAS 8002-43-5,38249999 +What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829011471N,29224900 +What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829011551N,29224900 +What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for ABYSSINE TM PF PRESERVATIVE-FREE(BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829011551N,29224900 +What is the hs code for BOREALINE PROTECT (BHN BAKU KOSMETIK) COA AM096136,13021990 +What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 213916,29224900 +What is the hs code for GREYVERSE TM (BHN BAKU KOSMETIK) COA 833011664P,29224900 +What is the hs code for LANABLUE TM PARABEN FREE (BHN BAKU KOSMETIK) CAS 50-70-4,38249999 +What is the hs code for NEUTRAZEN TM (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for ADIPOFILL'IN TM (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) CAS 50-70-4,38249999 +What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 213925,29224900 +What is the hs code for DEFENSCALP TM (BHN BAKU KOSMETIK) COA 785071370N,13021990 +What is the hs code for ECOGEL TM (BHN BAKU KOSMETIK) CAS 85711-58-6,38249999 +What is the hs code for LANACHRYS 2B PF (PRESERVATIVE- (BHN BAKU KOSMETIK) CAS7732-18-5,38249999 +What is the hs code for PROGELINE TM (BHN BAKU KOSMETIK) COA 221196,29224900 +What is the hs code for HYDROCORTISONE ACETATE EP/USP (BHN BAKU OBAT) COA NEHAC220902,29372200 +What is the hs code for METHYLPREDNISOLONE USP (BHN BAKU OBAT) COA NMP221102,29372900 +What is the hs code for PREDNISONE USP (BHN BAKU OBAT) COA NPD221201,29372100 +"What is the hs code for DEXAMETHASONE BP/USP (BHN BAKU OBAT) COA NED230112,NED230111",29372200 +"What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02301572,TL02301573",29362700 +"What is the hs code for PARACETAMOL USP (BHN BAKU OBAT) COA 2350408,2350422,2310226,2310233",29242930 +What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20221003,29362800 +What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20221003,29362800 +"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22110672,WB22110673",29362100 +"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22110668 S/D WB22110670,WB22110672",29362100 +What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02211554,29362700 +What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ21116134 (POST BORDER),29362700 +"What is the hs code for MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT22090024,UT22090025",29362500 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02210752,29362400 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (BHN BAKU SUPPLEMEN) COA UT22061195,UT22061196",29362100 +What is the hs code for CM0100DSM (BHN BAKU MAKANAN) COA XW92301261,21069059 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11221040,QZ11221041",29362500 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12211009,29362900 +"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02208072,TL02209079 (POST BORDER)",29362400 +What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040104,29420000 +What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040104,29420000 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060069,29420000 +What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P1G27QA000,29420000 +What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010360,29420000 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060069,29420000 +What is the hs code for COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-2208175 (POST BORDER),29146200 +"What is the hs code for MICRO CRYSTALLINE CELLULOSE USP (BHN BAKU SUPPLEMEN) COA 60230125,60230126",39129090 +"What is the hs code for MICRO CRYSTALLINE CELLULOSE USP (BHN BAKU SUPPLEMEN) COA 70230121,70230122,70230123",39129090 +What is the hs code for MICRO CRYSTALLINE CELLULOSE USP (BHN BAKU SUPPLEMEN) COA 80230129,39129090 +What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA 23100045,29391900 +What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA 23100047,29391900 +What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF (BHN BAKU SUPPLEMEN) COA UE02206017,32030010 +What is the hs code for NICARDIPINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA S117A222005,29333990 +What is the hs code for AMITOSE HGA (BHN BAKU KOSMETIK) COA GKN,13021990 +What is the hs code for AMITOSE HGA (BHN BAKU KOSMETIK) COA LAB,13021990 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7,38249999 +What is the hs code for PROMOIS EU-118(IS) (BHN BAKU KOSMETIK) CAS 111174-63-1,38249999 +What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) CAS 638164-47-3,38249999 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7,38249999 +What is the hs code for PROTIBOND TG-AK (BHN BAKU MAKANAN) COA AK22113003,21069091 +What is the hs code for SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 2208682676,29322090 +What is the hs code for STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN548723,35051010 +What is the hs code for XW30794366 - PREMIX ADE (BHN BAKU MAKANAN) COA E220004206,21069059 +What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9,38249999 +"What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334872,B334874,B334876",29419000 +What is the hs code for OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 57-50-1,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G54002...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G54002...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F19250...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86674...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F20440...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G62600...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F650026...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-8855...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +"What is the hs code for NG 5 PCT-1,2 PROPYLENGLYCOLE 95PCT (BAHAN BAKU OBAT) COA 2300669",30039000 +What is the hs code for CATECHINS TEAVIGO 1 KG (BHN BAKU KOSMETIK) COA 211081,21012020 +What is the hs code for DS-CERAMIDE Y3S (BHN BAKU KOSMETIK) COA CSKI06,29241990 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20230209,17029019 +What is the hs code for AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 160645,15159011 +What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (B) (BHN BAKU KOSMETIK) COA AMIBD-022513,29224900 +What is the hs code for HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-023013 (POST BORDER),13021990 +What is the hs code for HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-062692 (POST BORDER),13021990 +What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-040812 (POST BORDER),13021990 +What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-022023,39139090 +What is the hs code for HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-910112 (POST BORDER),13021990 +What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA MAK114,28321000 +What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-070122,13021950 +What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-062122,29224900 +What is the hs code for HYUNDAI BIOLAND PINK PLANKTON EXTRACT (HD) (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-020192 (POST BORDER),13021990 +What is the hs code for HYUNDAI BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-013013 (POST BORDER),13021990 +What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-070122,13021950 +What is the hs code for ACRYPOL 980 (20KG) (BAHAN BAKU KOSMETIK) COA 11522051 S/D 11522053,39069099 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP01723 (POST BORDER),28363000 +"What is the hs code for FERRIC PYROPHOSPHATE,24PCT - 26PCT FE POWDER,FCC12 (BHN BAKU MAKANAN) COA 3124834,3124835",28353990 +What is the hs code for DIPOTASSIUM PHOSPHATE POWDER (BHN BAKU MAKANAN) COA 3124916,28352400 +"What is the hs code for FERROUS FUMARATE, FINE POWDER (BHN BAKU MAKANAN) COA 3112517 (POST BORDER)",29171900 +"What is the hs code for FERROUS SULFATE, DRIED, POWDER, USP43 (BHN BAKU MAKANAN) COA 3107512",28332920 +What is the hs code for DESONIDE MICRONIZED (BHN BAKU OBAT) COA NC3328M,29372900 +What is the hs code for METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT... (BHN BAKU OBAT) COA NC3110,29372900 +What is the hs code for GRANISETRON HYDROCHLORIDE (BAHAN BAKU OBAT) COA 323-230104,29397900 +What is the hs code for CEFOTAXIME SODIUM (BAHAN BAKU OBAT) COA 3042208026,29419000 +What is the hs code for KETOROLAC TROMETHAMOL/TROMETHAMINE (BHN BAKU OBAT) COA 21100390,29339990 +What is the hs code for POMEGRANATE OF ACORES HYDROGLYCERINED ...(BHN BAKU KOSMETIK) COA PUGA221210-GL (POST BORDER),13021990 +What is the hs code for HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIE220602 (POST BORDER),13021990 +What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for ZORYALYS (BHN BAKU KOSMETIK) CAS 73398-61-5,38249999 +What is the hs code for HEBELYS (BHN BAKU KOSMETIK) CAS 504-63-2,38249999 +What is the hs code for LOTUS FROM VIETNAM ORGANIC OILY EXTRACT (BHN BAKU KOSMETIK) CAS 73398-61-5,38249999 +What is the hs code for PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3405014,33029000 +What is the hs code for NAI-WHITE A (BHN BAKU KOSMETIK) COA 2210B28102,32061110 +What is the hs code for DL-ALPHA-TOCOPHEROL (BHN BAKU KOSMETIK) COA 01221213ES (POST BORDER),29362800 +What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010361,29420000 +What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS1160622,29420000 +"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0322020784 S/D 0322020786,0322021116",29420000 +What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES2209782,29420000 +What is the hs code for PX TRS1 WITHOUT K1 (BHN BAKU MAKANAN) COA XW92301260 (POST BORDER),21069059 +What is the hs code for ANTIOXIDANT PREMIX FOR GUMMY (BHN BAKU MAKANAN) COA XW92301262 (POST BORDER),21069059 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT22051191 (POST BORDER),29362100 +What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 221275,13021990 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 222448,13021990 +What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 222516,13021990 +What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 222980,13021990 +What is the hs code for YUZU CERAMIDE B (BHN BAKU KOSMETIK) COA 230116,13021990 +What is the hs code for ROSE HIPS LIQUID B (BHN BAKU KOSMETIK) COA 221686,13021990 +What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 220892,13021990 +What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 060522,25070000 +What is the hs code for VALERIAN DRY HYDR. EXTR. (BAHAN BAKU SUPLEMEN) COA 22B0083300 (POST BORDER),13021990 +What is the hs code for VALERIAN DRY HYDR. EXTR. (BAHAN BAKU SUPLEMEN) COA 22B0083300,13021990 +What is the hs code for PASSION FLOWER D.H.E 4PCT (BAHAN BAKU SUPLEMEN) COA 22B0076600 (POST BORDER),13021990 +What is the hs code for HAWTHORN DRY HYDR. EXTR (BHN BAKU SUPLEMEN) COA 20B0127300 (POST BORDER),13021990 +What is the hs code for CALCIUM CARBONATE DC TYPE CS90 PHARMA (BHN BAKU SUPPLEMEN) COA 202200303,28365010 +What is the hs code for BETAMETHASONE VALERATE USP 43 (BHN BAKU OBAT) COA APL/BV/01029/A-23,29372200 +What is the hs code for BETAMETHASONE VALERATE USP 43 (BHN BAKU OBAT) COA APL/BV/01029/A-23,29372200 +"What is the hs code for PARSOL ZX (BHN BAKU KOSMETIK) COA 201019032, SAMPLE NO COMMERCIAL VALUE",29420000 +"What is the hs code for ACETAMINOPHEN (PARACETAMOL) (BHN BAKU OBAT) COA 202302096A,202302097A",29242930 +"What is the hs code for ALBENDAZOLE USP (BHN BAKU OBAT TERNAK) COA 2260223, 2270223, 2290223, 2300223, 2310223, 2320223",29339990 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP23024195,XP23024197,XP23024196,XP23024198",29211900 +What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 220807 (POST BORDER),13021990 +What is the hs code for OILESS' CITY TM (BHN BAKU KOSMETIK) COA 220304 (POST BORDER),13021990 +What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 220806 (POST BORDER),13021990 +What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 221110 (POST BORDER),13021990 +What is the hs code for TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA 220624 (POST BORDER),13021990 +What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 221126,29061900 +What is the hs code for PROPYPHENAZONE (CEP) (BHN BAKU OBAT UNTUK PEWARNA TABLET) COA 2210246,29331100 +"What is the hs code for ACETAMINOPHEN (PARACETAMOL) (BHN BAKU OBAT) COA 202302094A,202302095A",29242930 +What is the hs code for POVIDONE K 30 (BHN BAKU OBAT) COA PK30-230216F21,39059990 +What is the hs code for PRAYPHOS MKP FG 25K BG (BHN BAKU KOSMETIK) COA 22-280-01,29420000 +"What is the hs code for FENTACARE 2231 EF 25KG PAPER BOX (BHN BAKU KOSMETIK ) COA ZH23B2101,ZH23B2501",34029019 +What is the hs code for GF-B331 (BHN BAKU KOSMETIK) COA 20230224001,35051090 +What is the hs code for SPECWHITE VCE (BHN BAKU KOSMETIK) COA 20221105 (POST BORDER),29362700 +"What is the hs code for MACKAM C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 5915-1,3170-1",34024990 +What is the hs code for EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300027,13021950 +What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ21217019,29420000 +What is the hs code for VITAMIN B12 CRYST FOOD GRADE (BHN BAKU KOSMETIK) COA 012206086 (POST BORDER),29362600 +"What is the hs code for VIT. A PALM. 1.0 M + VIT. D3 100'000 (BHN BAKU MAKANAN) COA UT22120157,UT22120158",29362100 +What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22110028,29362500 +What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B03F024M,38210090 +What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2174795,38210090 +"What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2173810,2173817,.",38210090 +What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2334298,38210090 +What is the hs code for BOTTLE MANNITOL SALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2179372,38210090 +What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2215995,38210090 +What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2026294,38210090 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2172755,38210090 +What is the hs code for D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2104098,38210090 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 2034966,38210090 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2313348,38210090 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2207023,38210090 +What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2011124,38210090 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2123842,38210090 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2047633,38210090 +What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 2074829,38210090 +What is the hs code for ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2214259,38210090 +What is the hs code for BOTTLE TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2081022,38210090 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2005526,38210090 +"What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1272665,21580",38210090 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1285556,38210090 +What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 2304648,38210090 +"What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2217756,2221477",38210090 +What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1350021,38210090 +What is the hs code for TSA TM WLP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2341397,38210090 +What is the hs code for PLATE TM W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3031264,38210090 +What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2364106,38210090 +What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B03F024M,38210090 +What is the hs code for BOTTLE GRAM IODINE STABILIZED 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2335326,38210090 +What is the hs code for BOTTLE GRAM IODINE STABILIZED 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2335326,38210090 +What is the hs code for LEMON SECRETS (LEMON 40 BRIX) CSB (BHN BAKU KOSMETIK) COA 01/22GL4,28399000 +"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) ECH (BHN BAKU KOSMETIK) COA 01/22GL4, SAMPLE NO COMMERCIAL VALUE",28399000 +What is the hs code for OPACODE (R) MONOGRAMMING INK S-1-180000 WHITE (BHN BAKU PEWARNA TABLET) COA WP867034,32151990 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-28849...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for STARTAB (R) DIRECTLY COMPRESSIBLE STARCH 4001 (BHN BAKU PEWARNA TABLET) COA WP864467,35051010 +What is the hs code for STARTAB (R) DIRECTLY COMPRESSIBLE STARCH 4001 (BHN BAKU PEWARNA TABLET) COA WP865752,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C YELLOW 6/SUNSET...(BHN BAKU PEWARNA TABLET) COA WP855961:BB6473,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5177 FD&C YELLOW 5/TARTRAZ...(BHN BAKU PEWARNA TABLET) COA WP852907:BB3944,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5396 ERYTHROSINE ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP860977:1,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5406 FD&C RED 40/ALLURA RE...(BHN BAKU PEWARNA TABLET) COA WP851879:BB3365,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5627 FD&C BLUE 2/INDIGO CA...(BHN BAKU PEWARNA TABLET) COA WP862708:BB9467,32151990 +What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA G00361UG,29053200 +What is the hs code for VIAL ISOVITALEX ENRICHMENT 10ML 5 EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2349228,38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2111967,38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2244735,38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1344136,38210090 +What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2322505,38210090 +What is the hs code for BOTTLE LACTOBACILLLI MRS BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2315617,38210090 +What is the hs code for BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2326948,38210090 +What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2132015,38210090 +What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP A (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2342259,38210090 +What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP C (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2224441,38210090 +What is the hs code for BOTTLE HEMOGLOBIN SOL 2PCT 100ML 10EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2179007,38210090 +What is the hs code for BOTTLE MYCOPLASMA SUPLLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2264446,38210090 +What is the hs code for BOTTLE HEMOGLOBIN SOL 2PCT 100ML 10EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2179007,38210090 +What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP A (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2342259,38210090 +What is the hs code for VIAL PENICILLINASE 10000000 KU/ML 1EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2354356,38210090 +What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP A (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2342259,38210090 +"What is the hs code for BOTTLE MODIFIED LETHEEN BROTH...(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2104103,3033582",38210090 +What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP A (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2342259,38210090 +"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA237227,ROA200227 (POST BORDER)",28363000 +What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100MESH (BHN BAKU SUPLEMEN) COA 6AX2302022,29181400 +What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for OLIVE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220803 (POST BORDER),13021990 +What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-220602 (POST BORDER),13021990 +What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6,38249999 +What is the hs code for WITCH HAZEL ORGANIC DISTILLATE 1:10 (SB) (BHN BAKU KOSMETIK) CAS 84696-19-5,38249999 +What is the hs code for GRAPE SEED ORGANIC OIL C00031 (BHN BAKU KOSMETIK) CAS 8024-22-4,38249999 +What is the hs code for DIENOGEST MICRONIZED (BHN BAKU OBAT) COA NC2093M,29372300 +What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100MESH (BHN BAKU SUPLEMEN) COA 2AX2302014,29181400 +What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) CAS 1119-97-7,38249999 +What is the hs code for SILVERION 2400 (BHN BAKU KOSMETIK) CAS 77-92-9,38249999 +What is the hs code for CYPROHEPTADINE HCL BP/PH. EUR. (BHN BAKU OBAT) COA CYP/02231004,29333990 +What is the hs code for METHYLCOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/0123001 (POST BORDER),29362600 +What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBNB230058,29221990 +What is the hs code for BOTTLE GRAM SAFRANIN 250ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2215284,38210090 +What is the hs code for FERROUS GLUCONATE FINE GRAN.... (BHN BAKU SUPPLEMEN) COA 3127778 (POST BORDER),29181600 +What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPPLEMEN) COA WB22080772 (POST BORDER),29362800 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O600001...(BHN BAKU PEWARNA TABLET) COA GA726673,39061090 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03F82532...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 20C59060...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA727133,39061090 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007...(BHN BAKU PEWARNA TABLET) COA GA726673,39061090 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 88A520024,38249999 +"What is the hs code for ETHAMBUTOL (BHN BAKU OBAT) COA N3131826 S/D N3131829,N3133401 S/D N3133406",29221910 +"What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334873,B334867,B334875",29419000 +What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464288167,39123900 +What is the hs code for METHOCEL K4M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464186395,39123900 +What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464207195,39123900 +What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180L8N001,39123900 +What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2444185823,39123900 +What is the hs code for APIFILCAR (BHN BAKU SUPPLEMEN) COA 190714,28399000 +What is the hs code for CETYL PALMITATE PELLETSCAR (BHN BAKU SUPPLEMEN) COA 192063,28399000 +What is the hs code for PRECIROL ATO 5 (BHN BAKU SUPPLEMEN) COA 193319,28399000 +What is the hs code for PRECIFAC 95-3 (BHN BAKU SUPPLEMEN) COA 192853,28399000 +What is the hs code for LABRASOL BF (BHN BAKU SUPPLEMEN) COA 191345,28399000 +What is the hs code for FERROUS GLUCONATE FINE GRAN.... (BHN BAKU SUPPLEMEN) COA 3127778 (POST BORDER),29181600 +"What is the hs code for PARSOL (R) HS(BHN BAKU KOSMETIK) COA HS1150622,HS1160622",29420000 +"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02202018,UE02202019",29362700 +"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02202019,UE02210027",29362700 +What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040006,29420000 +What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0722010083,29420000 +What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040104,29420000 +"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000208205,00002082056 (POST BORDER)",29362900 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22100325 (POST BORDER),29362800 +"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02109811,TL02112813 (POST BORDER)",29362400 +What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040104,29420000 +What is the hs code for PARSOL ZX (BHN BAKU KOSMETIK) COA 200206012,29420000 +What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040124,29420000 +What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02202009 (POST BORDER),29362700 +What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020001,29420000 +"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020001,0923020002",29420000 +What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020001,29420000 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT22100092 (POST BORDER),29362800 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT22060028,32041800 +"What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02208069,TL02209090",29362400 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT22100033,29362600 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT22061192,29362100 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12211009,29362900 +What is the hs code for BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 22S0329502 (POST BORDER),13021990 +What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU KOSMETIK) COA 21S0191800,13021950 +What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 21S0191800,13021950 +What is the hs code for VACCINIUM MYRTILLUS DRY EX. (BHN BAKU SUPLEMEN) COA 21S0314800 (POST BORDER),13021990 +What is the hs code for PREDNISOLONE USP2022 (BHN BAKU OBAT) COA XPL221002,29372100 +"What is the hs code for PREDNISOLONE (BHN BAKU OBAT) COA XPL221002, SAMPLE NO COMMERCIAL VALUE",29372100 +What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2270988,38210090 +What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2417191,38210090 +What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2448264,38210090 +What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2173480,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0335766,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1110920,38210090 +What is the hs code for BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2031316,38210090 +What is the hs code for BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2031316,38210090 +What is the hs code for BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2031316,38210090 +What is the hs code for CD SUPREME FPM 500GR EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2558581,38210090 +What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2094434,38210090 +What is the hs code for MIRASIL DM350 A2 (BHN BAKU KOSMETIK) COA 2307WKW215,39100090 +"What is the hs code for OPACODE S-1-11068 GREEN (BHN BAKU PEWARNA TABLET) COA TKL67128,SAMPLE NO COMMERCIAL VALUE",32151990 +What is the hs code for SYN(R)-AKE (BHN BAKU KOSMETIK) COA UE02210016,29420000 +What is the hs code for GENIVIDA(TM) TG (BHN BAKU SUPPLEMEN) COA UT21100004 (POST BORDER),29329900 +What is the hs code for GENIVIDA(TM) TG (BHN BAKU SUPPLEMEN) COA UT21100004 (POST BORDER),29329900 +"What is the hs code for COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPPLEMEN) COA TL02301182",29362700 +What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22110029,29362500 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT22120029 (POST BORDER),32030010 +What is the hs code for PHTHALAVIN (R) ENTERIC COATING POLYMER 2138 CLEAR (BHN BAKU PEWARNA TABLET) COA WP865541,39059990 +What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C YELLOW 6/SUNSET... (BHN BAKU PEWARNA TABLET) COA WP831240:BA3592,32151990 +What is the hs code for LAKE PIGMENT (R) 6010 D&C YELLOW 10... (BHN BAKU PEWARNA TABLET) COA WP853308:BB4662,32151990 +What is the hs code for LAKE PIGMENT (R) 6010 D&C YELLOW 10.. (BHN BAKU PEWARNA TABLET) COA WP864266:BC1291,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C YELLOW 6/...(BHN BAKU PEWARNA TABLET) COA WP862652:BC0373,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5517 FD&C BLUE 1/...(BHN BAKU PEWARNA TABLET) COA WP855129:BB5151,32151990 +"What is the hs code for COPPER(II) GLUCONATE, FINE POWDER, USP 43 (BHN BAKU SUPPLEMEN) COA 3126579 (POST BORDER)",29181600 +"What is the hs code for COPPER(II) GLUCONATE, FINE POWDER, USP 43 (BHN BAKU SUPPLEMEN) COA 3112568 (POST BORDER)",29181600 +What is the hs code for TAPIOKA STARCH NATURAL 25KG BAG (BHN BAKU KOSMETIK) CAS 9005-25-8,38249999 +What is the hs code for PEARL ESSENCES 35178MJ (BHN BAKU KOSMETIK) COA D3080428,32061910 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02210438,29362800 +"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ20916090,UQ20916091 (POST BORDER)",29362700 +What is the hs code for MIN PREMIX LTP 6-12 MONTHS (BHN BAKU MAKANAN) COA XW92302320 (POST BORDER),21069059 +What is the hs code for MIN PREMIX LTP 1-3 YEARS (BHN BAKU MAKANAN) COA XW92302319 (POST BORDER),21069059 +What is the hs code for CHOLINE CA FE PREMIX LTP MATERNAL (BHN BAKU MAKANAN) COA XW92302321 (POST BORDER),21069059 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT22061192,29362100 +"What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL02207948,TL02208199",29362700 +What is the hs code for VITAMIN MINERAL PREMIX - JELLY POWDER V2 (BHN BAKU MAKANAN) COA XW92302315 (POST BORDER),21069059 +"What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT22070164,UT22070165",29362900 +What is the hs code for VIT MIN PREMIX LTP 6-12 MONTHS (BHN BAKU MAKANAN) COA XW92302318 (POST BORDER),21069059 +What is the hs code for VIT MIN PREMIX LTP 1-3 YEARS (BHN BAKU MAKANAN) COA XW92302316 (POST BORDER),21069059 +What is the hs code for VIT MIN PREMIX LTP MATERNAL (BHN BAKU MAKANAN) COA XW92302317 (POST BORDER),21069059 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ20912328,29362200 +"What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000209967,0000209968",29362900 +What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL02209090,29362400 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT22060028 (POST BORDER),32041800 +What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02208069,29362400 +What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12211021,29362900 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ21013603,29362500 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ20912354,29362200 +What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00798962,29420000 +"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00798962,VE00798963",29420000 +What is the hs code for DL-PANTHENOL 50 L (BHN BAKU KOSMETIK) COA TL02211634 (POST BORDER),29362400 +"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000208206,0000208207 (POST BORDER)",29362900 +"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02205054,TL02209090",29362400 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02209079,29362400 +What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00798963,29420000 +What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB240123,39123900 +What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B120123,39123900 +What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B120123,39123900 +What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 060522,25070000 +What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-230202 (POST BORDER),29061300 +"What is the hs code for AMLODIPINE BESILATE BP/EP (BHN BAKU OBAT) COA AMB/004/02/23, AMB/005/02/23",29333990 +"What is the hs code for OMEPRAZOLE PELLETS 8,5PCT W/W (BHN BAKU OBAT) COA OP-1845 02 23 S/D OP-1850 02 23",30039000 +What is the hs code for GUAIFENESIN USP 43 (B. BAKU OBAT) COA GGE-2301004 S/D GGE-2302017,29094900 +What is the hs code for VACCINIUM MYRTILLUS DRY EX. (BHN BAKU SUPLEMEN) COA 21S0314800 (POST BORDER),13021990 +What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU KOSMETIK) COA 22S0183200,13021950 +What is the hs code for CENTELLA ASIATICA/PHOSPHOLIPID (BHN BAKU KOSMETIK) COA 22S0097300,13021950 +What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23B0001600,13021950 +What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23B0001700,13021950 +What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23B0001800,13021950 +What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22050071 (POST BORDER),29362500 +What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02301582 (POST BORDER),29362700 +"What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02301582,TL02302583 (POST BORDER)",29362700 +What is the hs code for SYN(R)-AKE (BHN BAKU KOSMETIK) COA UE02210014,29420000 +What is the hs code for KF-54HV (18KG) (BHN BAKU KOSMETIK) CAS 68083-14-7,38249999 +What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9,38249999 +What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) CAS 68937-54-2,38249999 +What is the hs code for KP-561P (16KG) (BHN BAKU KOSMETIK) CAS 329236-76-2,38249999 +What is the hs code for KSG-210 (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9,38249999 +What is the hs code for KSG-710 (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9,38249999 +What is the hs code for ISOFLAVONES 150 BDF (BHN BAKU KOSMETIK) CAS 84776-91-0,38249999 +What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) CAS 8002-43-5,38249999 +What is the hs code for TYROSTAT TM 09 (BHN BAKU KOSMETIK) COA 784011715P (POST BORDER),13021990 +What is the hs code for ABYSSINE TM PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for ABYSSINE TM PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for SILIGEL TM (BHN BAKU KOSMETIK) CAS 11138-66-2,38249999 +What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for LANACHRYS 2B PF (PRESERVATIVE- (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784021665N (POST BORDER),13021990 +What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829011551N (POST BORDER),29224900 +What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for LIPOID PPL-600 (BHN BAKU SUPPLEMEN) COA 577200-2220234 (POST BORDER),29232011 +What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG230224 (POST BORDER),29362700 +What is the hs code for VITAMIN E (BHN BAKU KOSMETIK) COA 201202301207 (POST BORDER),29362800 +"What is the hs code for BICAR FOOD 0/13 SODIUM...(BHN BAKU MAKANAN) COA ROA239223,ROA203226,ROA245224,...(POST BORDER)",28363000 +What is the hs code for VIT PREMIX FOR CHEESE BLOCK CHEDDAR (BHN BAKU MAKANAN) COA XW92302188 (POST BORDER),21069059 +"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02210027,UE02210029 (POST BORDER)",29362700 +"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060101,0522060103",29420000 +What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02210029 (POST BORDER),29362700 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060103,29420000 +What is the hs code for VC CALCIUM ASCORBATE DC (BHN BAKU SUPPLEMEN) COA HPT2302021 (POST BORDER),29362700 +What is the hs code for VC CALCIUM ASCORBATE DC (BHN BAKU SUPPLEMEN) COA HPT2302021 (POST BORDER),29362700 +What is the hs code for PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) CAS 1332-09-8,38249999 +What is the hs code for SORBITOL SOLUTION 70 PCT CRYSTALLINE (BHN BAKU KOSMETIK) COA 2223P707,29054400 +"What is the hs code for LIGHT MAGNESIUM CARBONATE POWDER, BP 2021 (BHN BAKU MAKANAN) COA 3121984-02",28369990 +"What is the hs code for FERROUS SULFATE, DRIED, POWDER, USP43 (BHN BAKU SUPPLEMEN) COA 3116763",28332920 +What is the hs code for DIPOTASSIUM PHOSPHATE POWDER (BHN BAKU MAKANAN) COA 3124916,28352400 +"What is the hs code for POTASSIUM L-ASPARTATE 0,5-HYDRATE (BHN BAKU SUPPLEMEN) COA 3097137",29224900 +What is the hs code for TRICALCIUM CITRATE 4-HYDRATE POWDER (BHN BAKU OBAT) COA 3127724,29181590 +"What is the hs code for FERROUS LACTATE 2-HYDRATE, POWDER (BHN BAKU MAKANAN) COA 3122394",29181200 +"What is the hs code for FERROUS GLUCONATE, POWDER, USP 43 (BHN BAKU SUPPLEMEN) COA 3127991",29181600 +What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN549332,35051010 +What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN549333,35051010 +What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN549335,35051010 +What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN549334,35051010 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS,38249999 +What is the hs code for PEARL ESSENCES 35178MJ (BHN BAKU KOSMETIK) COA D3080428,32061910 +What is the hs code for HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-042033 (POST BORDER),13021990 +What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5,38249999 +What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5,38249999 +What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5,38249999 +What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-012023 (POST BORDER),29224900 +What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-012723,13021950 +What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP2230227,39139090 +What is the hs code for HYUNDAI BIOLAND BIOCTP-500 (BHN BAKU KOSMETIK) COA BOPN-052822 (POST BORDER),13021990 +What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (B) (BHN BAKU KOSMETIK) COA AMIBD-022513 (POST BORDER),29224900 +What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +"What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-012023,062122 (POST BORDER)",29224900 +What is the hs code for HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-042033 (POST BORDER),13021990 +What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1230309,39139090 +What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-070522 (POST BORDER),13021990 +What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011702,13021950 +What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N28115,28321000 +"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-012723,070122",13021950 +What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NC1457M,29372200 +What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-005-Z (POST BORDER),13021990 +What is the hs code for DOWSIL 9041 SIL ELAST BLEND (BHN BAKU KOSMETIK) COA H052M9F033,39100020 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA DRY VITAMIN A ACETATE 325 CWS/A,29362100 +What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20221003,29362800 +What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20221003,29362800 +What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPPLEMEN) COA WB22080772,29362800 +What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU SUPPLEMEN) COA 102369001,28161000 +What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4,38249999 +What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9,38249999 +What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9,38249999 +What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9,38249999 +"What is the hs code for SPECWHITE VCE (BHN BAKU KOSMETIK) COA 20221105,20230203 (POST BORDER)",29362700 +What is the hs code for GF-B331 (BHN BAKU KOSMETIK) COA 20230224001,35051090 +What is the hs code for DOPAMINE HCL (BHN BAKU OBAT) COA 23100084,29222900 +What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 23100075,29221990 +What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 23100076,29221990 +What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 23100076,29221990 +What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-0740323,29334910 +What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWDER... (B.BAKU KOSMETIK) CAS 65497-29-2,38249999 +What is the hs code for CITRIC ACID MONOHYDRATE (CAM) GRANULAR 8-40 MESH E330 (BHN BAKU KOSMETIK) COA 6MT2212013,29181400 +What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323020044,29420000 +"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ20912328,UQ20912329",29362200 +"What is the hs code for MINERAL PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92302150,XW92302151",21069059 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ21210857 (POST BORDER,29362300 +What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2201009,29362300 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT22061192(POST BORDER),29362100 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ21210857 (POST BORDER),29362300 +What is the hs code for VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92302149 (POST BORDER),21069059 +What is the hs code for VIT-MIN PEDIATRIC NUTRITION PREMIX 1 (BHN BAKU MAKANAN) COA XW92303002 (POST BORDER),21069059 +What is the hs code for VIT-MIN PEDIATRIC NUTRITION PREMIX 2 (BHN BAKU MAKANAN) COA XW92303003 (POST BORDER),21069059 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ21210857 (POST BORDER),29362300 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT22080166 (POST BORDER),29362900 +"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02210029,UE02211038 (POST BORDER)",29362700 +"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211038,UE02211041 (POST BORDER)",29362700 +What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92302152,29420000 +What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES2209782,29420000 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPPLEMEN) COA UT22090037 (POST BORDER),29362900 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22060063 (POST BORDER),29362300 +"What is the hs code for FERROUS GLUCONATE HYDRATE, POWDER... (BHN BAKU SUPPLEMEN) COA 3123925 (POST BORDER)",29181600 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA728050,39061090 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O665000...(BHN BAKU PEWARNA TABLET) COA GA728052,39061090 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86512...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007...(BHN BAKU PEWARNA TABLET) COA GA728054,39061090 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86674...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 02F52182...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A62337...(BHN BAKU PEWARNA TABLET) COA GA728264,39061090 +What is the hs code for OPADRY (R) KB LOW VISCOSITY FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 151-21-3,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86674...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G54002...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA727607,39061090 +What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA727607,39061090 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B82443...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7,38249999 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7,38249999 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0,38249999 +What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) CAS 638164-47-3,38249999 +What is the hs code for PROMOIS SILK-1000 (BHN BAKU KOSMETIK) CAS 96690-41-4,38249999 +What is the hs code for AMITOSE HGA (BHN BAKU KOSMETIK) COA LAA (POST BORDER),13021990 +What is the hs code for FLOWLAC (R) 100 (BHN BAKU OBAT) COA L101500823,17021100 +What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104310523,17021100 +What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103860823,17021100 +What is the hs code for CAPSULAC (R) 60 (BHN BAKU OBAT) COA L100410423,17021100 +What is the hs code for MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103154322,17021100 +What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 222516 (POST BORDER),13021990 +What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 230453,29329900 +What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 221275 (POST BORDER),13021990 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 222274 (POST BORDER),13021990 +What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 222516 (POST BORDER),13021990 +What is the hs code for BIO-PGA SOLUTION HB (BHN BAKU KOSMETIK) COA 222624,39139090 +What is the hs code for CHRONO CHARDY (BHN BAKU KOSMETIK) COA 222667 (POST BORDER),13021990 +What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 221252 (POST BORDER),13021990 +What is the hs code for GABAPENTIN (USP) (BHN BAKU OBAT) COA CGBU230112,29224900 +What is the hs code for BUDESONIDE MICRONIZED (BHN BAKU OBAT) COA NB3038M,29372900 +What is the hs code for DESONIDE MICRONIZED (BHN BAKU OBAT) COA NC3328M,29372900 +What is the hs code for SODIUM STARCH GLYCOLATE USP (BAHAN BAKU OBAT) COA ASG/03/020323,29420000 +What is the hs code for CROSCARMELLOSE SODIUM USP-NF (BHN BAKU OBAT) COA ACRMC/03/020323 S/D 060323,39129090 +What is the hs code for CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/03/020323,39123100 +"What is the hs code for SODIUM STARCH GLYCOLATE BP (BAHAN BAKU OBAT) COA ASGP/02/190223,ASGP/02/050223",29420000 +"What is the hs code for SODIUM STARCH GLYCOLATE USP (BAHAN BAKU OBAT) COA ASG/03/030323,040323,040323-1,050323,050323-1",29420000 +What is the hs code for WORLEE ALOE PURE BALANCE IF 200X FD (BAHAN BAKU KOSMETIK) COA 512251 (POST BORDER),13021990 +"What is the hs code for OPAGLOS 6000 WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET) COA DT736523,SAMPLE NO COMMERCIAL VALUE",32151990 +What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT22090105 (POST BORDER),29362100 +What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22110028 (POST BORDER),29362500 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02209078 (POST BORDER),32041800 +What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22070048 (POST BORDER),29362100 +What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22110028 (POST BORDER),29362500 +What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22110029 (POST BORDER),29362500 +What is the hs code for B-CAROTENE 10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT22120006 (POST BORDER),32041800 +"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02209079,UE02209080 (POST BORDER)",32041800 +What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22060047 (POST BORDER),29362100 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT22111211 S/D UT22111213 (POST BOR,29362100 +What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22070048 (POST BORDER),29362100 +"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ30110523,UQ30110524",29362300 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT22111213,UT22111214",29362100 +What is the hs code for MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT22090027 S/D UT22110029,29362500 +What is the hs code for BETATAB 20PCT S (BHN BAKU MAKANAN) COA UT22100026,32041800 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT22120029,32030010 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT22120029,32030010 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPPLEMEN) COA UT23010007,29362800 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202405,122202406",28363000 +What is the hs code for CLOBETASOL PROPIONATE USP MICRONISED (BHN BAKU OBAT) COA APL/CLP/01054/B-2,29372200 +What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 23100120,29395900 +What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 23100121,29395900 +What is the hs code for FERROUS FUMARATE (BHN BAKU OBAT) COA 2023/33,29171900 +What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA LC002-23-801,17021100 +What is the hs code for DURALAC H (BHN BAKU OBAT) COA LC045-22-805,17021100 +What is the hs code for ORIGINAL EXTRACT KIWI CSB (BHN BAKU KOSMETIK) COA 02/19GAAK,28399000 +"What is the hs code for ORIGINAL EXTRACT KIWI ECH (BHN BAKU KOSMETIK) COA 02/19GAAK, SAMPLE NO COMMERCIAL VALUE",28399000 +What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO BP (BHN BAKU KOSMETIK) COA 192311,28399000 +What is the hs code for CORTISONE ACETATE MICRONISED PH.EUR JP (BHN BAKU SUPPLEMEN) COA 2301060512,29372900 +What is the hs code for HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2530323,29397900 +What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA B100400,29419000 +What is the hs code for CEFTAZIDIME BUFFERED (BHN BAKU OBAT) COA B20070M,29419000 +What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG230303 (POST BORDER),29362700 +What is the hs code for L-GLUTAMIC ACID (FCC GRADE) PURITY... (BHN BAKU MAKANAN) COA 1000104173/230327 (POST BORDER),29224900 +"What is the hs code for COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPPLEMEN) COA TL02301358 (POST BORDER)",29362700 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT22120030 (POST BORDER),32030010 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT22100036 (POST BORDER),29362600 +What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 3072748,38210090 +What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 3172748,38210090 +What is the hs code for BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2269098,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2228563,38210090 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2339387,38210090 +What is the hs code for BOTTLE MR-VP MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3045918,38210090 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2104098,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2228563,38210090 +What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2143804,38210090 +What is the hs code for BOTTLE TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2143687,38210090 +What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2066423,38210090 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 2034966,38210090 +What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2188691,38210090 +What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2313348,38210090 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2207189,38210090 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2123842,38210090 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2047633,38210090 +What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2103834,38210090 +What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2235469,38210090 +"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1264670,..",38210090 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2158081,38210090 +What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2269093,38210090 +What is the hs code for BOTTLE MOTILITY TEST MEDIUM BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2067250,38210090 +What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2096996,38210090 +What is the hs code for BOTTLE MYP AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 220803,38210090 +What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1292710,38210090 +What is the hs code for BOTTLE M TGE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2201315,38210090 +What is the hs code for CULTURESWAB PLUS AMLES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 221603900,38210090 +"What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2208003,2231719,.",38210090 +What is the hs code for MIAMI SCG(S) (BHN BAKU KOSMETIK) COA MWC2300431,34023990 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2139402,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3032477,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3032477,38210090 +"What is the hs code for CYTOFIX/CYTOPERM SOLN KIT (MEDIA TUK PENGEMBANGAN MIKRO ORGANISME) BATCH 2242794,2242817",38210090 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2139402,38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2300555,38210090 +What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2060591,38210090 +What is the hs code for VIAL SAL H ANTISERUM C 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1140112,38210090 +What is the hs code for VIAL SHIGELLA ANTIS POLY A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2125067,38210090 +What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2322505,38210090 +What is the hs code for VIAL E COLI O ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2125078,38210090 +What is the hs code for VIAL TTC SOLUTION 1 PCT 1X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2363660,38210090 +What is the hs code for BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2244351,38210090 +What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP W135 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1092251,38210090 +What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9,38249999 +What is the hs code for SUNOBEL HMS (HOMOSALATE(OTC)) (BHN BAKU KOSMETIK) COA 0423040028,29182300 +What is the hs code for SUNOBEL OS (OCTYL SALICYLATE(OTC)) (BHN BAKU KOSMETIK) COA 0723010019,29182300 +What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323020044,29420000 +What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P1G27QA000,29420000 +What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001677950,29420000 +"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323020044,0323020046,0323020047",29420000 +"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010524,0822010525",29420000 +What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020002,29420000 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02206017 (POST BORDER),29362900 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22060202 (POST BORDER),29362800 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02206017 (POST BORDER),29362900 +What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040104,29420000 +What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES2209782,29420000 +"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22060202,UT23010001 (POST BORDER)",29362800 +What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC220713,29420000 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02206015 (POST BORDER),29362900 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22060063 (POST BORDER),29362300 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22060063 (POST BORDER),29362300 +"What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW92303092,XW92303093 (POST BORDER)",21069059 +What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP12211021 (POST BORDER),29362900 +"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000209474,0000209599 (POST BORDER)",29362900 +What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211041 (POST BORDER),29362700 +What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02112813 (POST BORDER),29362400 +What is the hs code for VITAMIN PREMIX FOR MARGARINE MY15-0027 (BHN BAKU MAKANAN) COA MY62303210 (POST BORDER),21069059 +What is the hs code for NABUMETONE USP (BAHAN BAKU OBAT) COA H-2501222,29145000 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for INCA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK) CAS 68956-68-3,38249999 +What is the hs code for SEABUCKTHRON HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HIR220801-B (POST BORDER),13021990 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220803 (POST BORDER),13021990 +What is the hs code for HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIE220602 (POST BORDER),13021990 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) CAS 8001-25-0,38249999 +What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP03023 (POST BORDER),28363000 +What is the hs code for BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP01423 (POST BORDER),28363000 +"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM.. (BHN BAKU SUPPLEMEN) COA MTP03123,... , SAMPLE..., (POST BORDER)",28363000 +What is the hs code for LIPOID PPL-600 (BHN BAKU SUPPLEMEN) COA 577200-2230235 (POST BORDER),29232011 +What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP23034137 S/D XP23034140,29211900 +What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2032032,38210090 +What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2270988,38210090 +What is the hs code for BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1341564,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2441197,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1110920,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1110920,38210090 +What is the hs code for ZINC GLUCONATE POWDER USP 43 (BHN BAKU OBAT) COA 3131555 (POST BORDER),29181600 +What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9,38249999 +What is the hs code for SENSIVA SC 80 CAN 10KG (BHN BAKU KOSMETIK) CAS 1117-86-8,38249999 +What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9,38249999 +What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9,38249999 +What is the hs code for EUXYL K 712 CAN 10 KG (BHN BAKU KOSMETIK) CAS 65-85-0,38249999 +What is the hs code for EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6,38249999 +What is the hs code for EUXYL K 903 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6,38249999 +What is the hs code for EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) CAS 122-99-6,38249999 +What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6,38249999 +What is the hs code for SENSIVA SC 10 CAN 10 KG (BHN BAKU KOSMETIK) CAS 1117-86-8,38249999 +What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9,38249999 +What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6,38249999 +What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9,38249999 +What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9,38249999 +What is the hs code for NIACINAMIDE USP (NIACINAMIDE USP/EP) (BHN BAKU KOSMETIK)COA 22-23/NMD[P]/00366 S/D 00373,29362900 +What is the hs code for SETACIN 103/SPEZIAL OR NP - RSPO - MB (BHN BAKU KOSMETIK) COA 804,34023990 +What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464343755,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464343755,39123900 +What is the hs code for METHOCEL K4M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464186398,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464343755,39123900 +"What is the hs code for TRISODIUMCITRATE DIHYDRATE FINE GRANULAR (BHN BAKU SUPPLEMEN) COA UJ251,UJ252",29181400 +What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU SUPLEMEN) COA UJ248,29181400 +What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU SUPLEMEN) COA UJ248,29181400 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT22121222,UT23011226",29362100 +What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30216022,29362700 +What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL02211943,29362700 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT23020021,29362800 +What is the hs code for PRO-LIPO TM NEO (BHN BAKU KOSMETIK) CAS 504-63-2,38249999 +What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829011771P,29224900 +What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) CAS 50-70-4,38249999 +What is the hs code for AMISOL TM 4135 (BHN BAKU KOSMETIK) CAS 8002-43-5,38249999 +What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769011334N,29224900 +What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769011397N,29224900 +What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834011557N,29224900 +What is the hs code for GREYVERSE TM (BHN BAKU KOSMETIK) COA 833011664P,29224900 +What is the hs code for LANABLUE TM PARABEN FREE (BHN BAKU KOSMETIK) CAS 50-70-4,38249999 +What is the hs code for LANACHRYS 2B PF (PRESERVATIVE) (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for MELANOSTATINE TM 5 BG (50PPM) (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for PROGELINE TM (BHN BAKU KOSMETIK) COA 213920,29224900 +What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784021665N,13021990 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) CAS 8002-43-5,38249999 +What is the hs code for DL-ALPHA-TOCOPHEROL (BHN BAKU KOSMETIK) COA 01230107ES,29362800 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O665000...(BHN BAKU PEWARNA TABLET) COA GA728878,39061090 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007...(BHN BAKU PEWARNA TABLET) COA GA728879,39061090 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O92157...(BHN BAKU PEWARNA TABLET) COA GA728880,39061090 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359.. (BHN BAKU PEWARNA TABLET) COA GA728915,39061090 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O620011...(BHN BAKU PEWARNA TABLET) COA GA728916,39061090 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B84893...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B54445...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B28796...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G62544...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 02F54189...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 02F52182...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51156...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A18597...(BHN BAKU PEWARNA TABLET) COA GA728923,39061090 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A18597...(BHN BAKU PEWARNA TABLET) COA GA728923,39061090 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A62337...(BHN BAKU PEWARNA TABLET) COA GA728973,39061090 +What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-6708...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +"What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M536854 S/D ,M536856,M536877,M536878",29411019 +What is the hs code for PURIMOX POWDER (BHN BAKU OBAT) COA M486456,29411019 +"What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M536878,M536879,M536881,M536882",29411019 +"What is the hs code for PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M598846,M599016,M599017,M599024",29411019 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220803,13021990 +What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-220602,13021990 +What is the hs code for KIGELINE (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6,38249999 +What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for SEABUCKTHRON HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HIR220801-B,13021990 +What is the hs code for LEMON SECRETS (LEMON 40 BRIX) CSB (BHN BAKU KOSMETIK) COA 02/22GL4,28399000 +"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) ECH (B.BAKU KOSMETIK) COA 02/22GL4, SAMPLE NO COMMERCIAL VALUE",28399000 +What is the hs code for EMULIUM MELLIFERA MB (BHN BAKU KOSMETIK) COA 194235,28399000 +"What is the hs code for FENTACARE 1631 25 MB 200KG PLAS DR (BHN BAKU KOSMETIK ) COA ZH23B2505M,ZH23C2303M",29239000 +What is the hs code for IMERCARE (R) VELLUTO (BHN BAKU KOSMETIK) COA L763690,38029090 +What is the hs code for CELLOSIZE TM TEXTURE F4M HYDROXYPROPYL... (BHN BAKU KOSMETIK) COA F410M46D31,39123900 +"What is the hs code for SERASENSE SF 2 (BAHAN BAKU SUPLEMEN) COA SA30316012,SA30316018,SA30316020,SA30316021",39100090 +What is the hs code for 4-HYDROXYACETOPHENONE (BHN BAKU KOSMETIK) COA 202303022,29145000 +What is the hs code for VALERIAN DRY HYDR. EXTR. (BAHAN BAKU SUPLEMEN) COA 22B0109000,13021990 +What is the hs code for SILYMARIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23B0010200,13021990 +What is the hs code for ONDANSETRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA AOND-23003,29332900 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202406,122202407",28363000 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202407,122302511",28363000 +What is the hs code for SUNFIBER AG (BHN BAKU MAKANAN) COA 212311,13021950 +What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) CAS 233683-84-6,38249999 +"What is the hs code for FENTACARE 2231 EF 25KG PAPER BOX (BHN BAKU KOSMETIK ) COA ZH23B1102,ZH23D1001",34029019 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB22080265 (POST BORDER),29362800 +What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPPLEMEN) COA WB23030781 (POST BORDER),29362800 +What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02303309 (POST BORDER),29362700 +What is the hs code for SYN(R)-AKE (BHN BAKU KOSMETIK) COA UE02210014,29420000 +What is the hs code for ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2205101 (POST BORDER),32030010 +What is the hs code for DS-CERAMIDE Y3S (BHN BAKU KOSMETIK) COA CSKI06,29241990 +What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100MESH (BHN BAKU SUPLEMEN) COA 6AX2303063,29181400 +"What is the hs code for PANTOPRAZOLE SODIUM (STERILE) (BAHAN BAKU OBAT) COA SI/PPZ/00320323,SI/PPZ/00350323",29333990 +What is the hs code for IRBESARTAN (BAHAN BAKU OBAT ) COA C5415-22-026,29332900 +What is the hs code for PYRAZINAMIDE EP/USP (BHN BAKU OBAT) COA WHOPZ 004 D 23 S/D WHOPZ 014 D 23,29339990 +"What is the hs code for SODIUM STARCH GLYCOLATE USP (BAHAN BAKU OBAT) COA ASG/03/300323,ASG/04/060423 S/D 090423",29420000 +What is the hs code for PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3426790 (POST BORDER),33029000 +What is the hs code for PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3428591 (POST BORDER),33029000 +What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 22290043,30039000 +What is the hs code for VC SODIUM ASCORBATE REGULAR (BHN BAKU SUPPLEMEN) COA HPN2303154 (POST BORDER),29362700 +"What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512245,G0251303",47069200 +What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE... (BHN BAKU KOSMETIK) COA CHP1230309 (POST BORDER),39139090 +"What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-022802,012333 (POST BORDER)",13021990 +What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-031333 (POST BORDER),39139090 +What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-012723,13021950 +What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA MAK114,28321000 +What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE... (BHN BAKU KOSMETIK) COA CHP1230309 (POST BORDER),39139090 +What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012333 (POST BORDER),13021990 +What is the hs code for HYUNDAI BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011702,13021950 +What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-043133 (POST BORDER),39139090 +What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N28115,28321000 +What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5,38249999 +What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-070522 (POST BORDER),13021990 +What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-020192 (POST BORDER),13021990 +What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N28115,28321000 +What is the hs code for HYUNDAI BIOLAND TEA TREE EXTRACT (BHN BAKU KOSMETIK) COA MASL-010933 (POST BORDER),13021990 +What is the hs code for FLOWLAC (R) 100 (BHN BAKU OBAT) COA L101500823 (POST BORDER),17021100 +What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104311323 (POST BORDER),17021100 +What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) CAS 8002-43-5,38249999 +What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for ECOGEL TM (BHN BAKU KOSMETIK) CAS 85711-58-6,38249999 +What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784021665N (POST BORDER),13021990 +What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for OPADRY (R) TF TIO2 FREE MOISTURE BARRIER FILM...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) TF TIO2 FREE MOISTURE BARRIER FILM...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O620011...(BHN BAKU PEWARNA TABLET) COA GA729764,39061090 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) KB LOW VISCOSITY FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 151-21-3,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359...(BHN BAKU PEWARNA TABLET) COA GA729689,39061090 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G54002...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-22-17515...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55015...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55041..(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229... (BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for NAI-WHITE A (BHN BAKU KOSMETIK) COA C221012AA,32061190 +What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-0940423,29334910 +What is the hs code for CHOLINE CHLORIDE 60 PCT (BHN BAKU PAKAN HEWAN) CAS 67-48-1,38249999 +What is the hs code for IMERCARE (R) VELLUTO (BHN BAKU KOSMETIK) COA L763690,38029090 +What is the hs code for MIRASIL DM5 L (BHN BAKU KOSMETIK) COA 2312FF2415,39100090 +What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG230331 (POST BORDER),29362700 +What is the hs code for PRAYPHOS DKP FG 25K BG (BHN BAKU KOSMETIK) COA 2223032,28352400 +What is the hs code for PRAYPHOS MKP FG 25K BG (BHN BAKU KOSMETIK) COA 0009E,29420000 +What is the hs code for DRY VITAMIN K1 5CT SD (BHN BAKU SUPPLEMEN) COA UT22070008 (POST BORDER),29362900 +What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22120257 (POST BORDER),29362400 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ21213653 (POST BORDER),29362500 +What is the hs code for VITAMIN PREMIX MILK POWDER FOR ADULTS (BHN BAKU MAKANAN) COA XW92303074 (POST BORDER),21069059 +"What is the hs code for MINERAL PREMIX MILK POWDER FOR ADULTS V2 (BHN BAKU MAKANAN) COA XW92303075,XW92303076 (POST BOR",21069059 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ21210864 (POST BORDER),29362300 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11221041 (POST BORDER),29362500 +"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12211021,OP12301007 (POST BORDER)",29362900 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT22110042 (POST BORDER),29362100 +What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22120257 (POST BORDER),29362400 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22060064 (POST BORDER),29362300 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU MAKANAN) COA UT22070008 (POST BORDER),29362900 +What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL02208214 (POST BORDER),29362700 +What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL02211116 (POST BORDER),29362400 +What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000209969 (POST BORDER),29362900 +What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0723010013,29420000 +What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P2B06QA000,29420000 +What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040006,29420000 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060078,29420000 +What is the hs code for FOLIC ACID (BHN BAKU KOSMETIK) COA UT22120257 (POST BORDER),29362400 +What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040006,29420000 +What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0723010013,29420000 +What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS1170622,29420000 +"What is the hs code for IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S145/23,S191/21,S181/22,S600/22",38029090 +"What is the hs code for ETHAMBUTOL (BHN BAKU OBAT) COA N3142156 S/D N3142158, N3142257 S/D N3142259",29221910 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202098,122202099",28363000 +"What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202099,122202242",28363000 +"What is the hs code for LIGHT MAGNESIUM CARBONATE POWDER, BP 2021 (BHN BAKU MAKANAN) COA 3121984-02",28369990 +"What is the hs code for FERROUS SULFATE, DRIED, POWDER, USP43 (BHN BAKU SUPPLEMEN) COA 3116763",28332920 +What is the hs code for DIPOTASSIUM PHOSPHATE POWDER (BHN BAKU MAKANAN) COA 3124916,28352400 +"What is the hs code for POTASSIUM L-ASPARTATE 0,5-HYDRATE (BHN BAKU SUPPLEMEN) COA 3097137",29224900 +What is the hs code for TRICALCIUM CITRATE 4-HYDRATE POWDER (BHN BAKU OBAT) COA 3127724,29181590 +"What is the hs code for FERROUS LACTATE 2-HYDRATE, POWDER (BHN BAKU MAKANAN) COA 3122394",29181200 +"What is the hs code for FERROUS GLUCONATE, POWDER, USP 43 (BHN BAKU SUPPLEMEN) COA 3127991",29181600 +What is the hs code for VACC.MYRT./PINUS PIN. DRY (BHN BAKU SUPPLEMEN) COA 22S0290300,13021950 +What is the hs code for ECHINACEA ANG.DRY PURIF.EX. (BHN BAKU SUPLEMEN) COA 21S0155200 (POST BORDER),13021990 +What is the hs code for POTASSIUM IODIDE AND CARRIER (BHN BAKU OBAT) COA 3131168,28276000 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F19250...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2023020105 (POST BORDER),21012020 +What is the hs code for RANITIDINE HYDROCHLORIDE USP (BAHAN BAKU OBAT) COA RH 115 02 23,29321900 +What is the hs code for PANTOPRAZOLE SODIUM USP (BHN BAKU OBAT) COA PS0581221,29333990 +What is the hs code for VITAMIN E (BHN BAKU KOSMETIK) COA 201202302204 (POST BORDER),29362800 +What is the hs code for IONOL CP (BHN BAKU KOSMETIK) COA 01117322 (POST BORDER),29071900 +What is the hs code for CEFTAZIDIME BUFFERED (BHN BAKU OBAT) COA B20090M,29419000 +What is the hs code for AMPICILLIN SODIUM (STERILE) BP (BHN BAKU OBAT) COA SI/AMP/00100323,29411020 +"What is the hs code for BICAR FOOD 0/13 SODIUM...(BHN BAKU MAKANAN) COA ROA041237,ROA042233,ROA038234,... (POST BORDER)",28363000 +What is the hs code for COOLACT 10 (BHN BAKU KOSMETIK) COA T008800,29094900 +"What is the hs code for POTASSIUM IODIDE FCC (BHN BAKU OBAT UTK PAKAN TERNAK) COA KID/E/2223/012, KID/E/2324/001",28276000 +What is the hs code for GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 22T0095000 (POST BORDER),13021990 +What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 22290043,30039000 +What is the hs code for PANTOPRAZOLE SODIUM USP (BHN BAKU OBAT) COA PS0581221,29333990 +What is the hs code for HERBAL EXTRACTS (GARCINIA CAMBOGIA 60 PCT CA-K SALT) (BHN BAKU KOSMETIK) COA FGC2210003 (POST B,13021990 +What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU UTK PAKAN TERNAK) COA 202300029,28183000 +What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 230312,29061900 +What is the hs code for OILESS' CITY TM (BHN BAKU KOSMETIK) COA (POST BORDER),13021990 +What is the hs code for OILESS' CITY TM (BHN BAKU KOSMETIK) COA (POST BORDER),13021990 +What is the hs code for WILDPLUM HARVEST TM AF (BHN BAKU KOSMETIK) COA (POST BORDER),13021990 +What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 221110 (POST BORDER),13021990 +What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA (POST BORDER),13021990 +What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA (POST BORDER),33012990 +What is the hs code for PROMOIS EU-118(IS) (BHN BAKU KOSMETIK) CAS 111174-63-1,38249999 +What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) CAS 638164-47-3,38249999 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7,38249999 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7,38249999 +What is the hs code for PROMOIS SILK-1000 (BHN BAKU KOSMETIK) CAS 96690-41-4,38249999 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0,38249999 +What is the hs code for MAGNESIUM HYDROXYDE MS90 PHARMA (BHN BAKU OBAT) COA 202300122,28161000 +What is the hs code for CALCIUM CARBONATE DC TYPE CS90 PHARMA (BHN BAKU OBAT) COA 202300072,28365010 +What is the hs code for MAGNESIUM HYDROXYDE MS90 PHARMA (BHN BAKU OBAT) COA 202300122,28161000 +What is the hs code for DEXTROSE ANHYDROUS (BHN BAKU OBAT UTK PAKAN TERNAK) COA XWA230405,17023010 +What is the hs code for MATCHA (BHN BAKU KOSMETIK) CAS 84650-60-2,38249999 +What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M536998 S/D M537003,29411019 +"What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M536996,M536998",29411019 +What is the hs code for CROSPOVIDONE XL (BHN BAKU SUPPLEMEN) COA PP230402XL,39059990 +"What is the hs code for FIBRE DRUM, PRICE AND AMOUNT ARE FOR CUSTOM ONLY",48192000 +What is the hs code for EMULIUM MELLIFERA MB (BHN BAKU KOSMETIK) COA HF-1220064,28399000 +What is the hs code for GELUCIRE 44/14 (BHN BAKU SUPPLEMEN) COA 190294,28399000 +What is the hs code for LABRAFIL M 1944 CS BF (BHN BAKU SUPPLEMEN) COA 193517,28399000 +What is the hs code for TEFOSE 63 BF (BHN BAKU SUPPLEMEN) COA 193853,28399000 +What is the hs code for EMULCIRE 61 WL 2659 (BHN BAKU SUPPLEMEN) COA 193520,28399000 +What is the hs code for GELOIL SC (BHN BAKU SUPPLEMEN) COA 194704,28399000 +What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 192311,28399000 +What is the hs code for PRECIROL ATO 5 (BHN BAKU SUPPLEMEN) COA 194467,28399000 +What is the hs code for CETYL PALMITATE PELLETSCAR (BHN BAKU SUPPLEMEN) COA 192063,28399000 +What is the hs code for GELUCIRE 48/16 PELLETS (BHN BAKU SUPPLEMEN) COA 185000,28399000 +What is the hs code for COMPRITOL 888 ATO (BHN BAKU SUPPLEMEN) COA 195007,28399000 +What is the hs code for CETYL PALMITATE PELLETSCAR (BHN BAKU SUPPLEMEN) COA 192063,28399000 +What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12301007 (POST BORDER),29362900 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ21213653 (POST BORDER),29362500 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ20912354 (POST BORDER),29362200 +What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22120257 (POST BORDER),29362400 +What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000209969 (POST BORDER),29362900 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02301057 (POST BORDER),29362800 +What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000209969 (POST BORDER),29362900 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT22090038,29362900 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ20912354 (POST BORDER),29362200 +What is the hs code for PREMIX VMP JELLY (BHN BAKU MAKANAN) COA XW92303188 (POST BORDER),21069059 +What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000210457 (POST BORDER),29362900 +What is the hs code for VITAMIN PREMIX FOR FERMENTED MILK (BHN BAKU MAKANAN) COA XW92303214 (POST BORDER),21069059 +What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2204104535,29372900 +What is the hs code for BETAMETHASONE BP/USP (BHN BAKU OBAT) COA XBE230103,29372200 +"What is the hs code for PREDNISONE USP (BHN BAKU OBAT) COA NPD221001,NPD230102",29372100 +"What is the hs code for DEXAMETHASONE BP/USP (BHN BAKU OBAT) COA NED230403,NED230404",29372200 +What is the hs code for BOTTLE RAPPAPORT VASSILLIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3079261,38210090 +What is the hs code for BOTTLE RAPPAPORT VASSILLIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3079261,38210090 +What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2334621,38210090 +"What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2111375,2",38210090 +What is the hs code for BOTTLE MICRO INOCULUM BROTH 500 G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1075951,38210090 +What is the hs code for BOTTLE MICRO ASSAY CULTURE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335689,38210090 +What is the hs code for BOTTLE M ENDO BROTH MF 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2068110,38210090 +What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2271456,38210090 +What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2143788,38210090 +What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2291792,38210090 +What is the hs code for BOTTLE D-MANNITOL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2229527,38210090 +What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3055274,38210090 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA U/PENGEMBANGAN MIKROORGANISME)BATCH 3052767,38210090 +What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2277799,38210090 +"What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2151941",38210090 +What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2263336,38210090 +What is the hs code for BOTTLE CHROMAGAR CANDIDA 500GM (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2123851,38210090 +What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2165877,38210090 +What is the hs code for BOTTLE TRYPTONE GLUCOSE EXT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH. 2060588,38210090 +What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2088727,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 5 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1236415,38210090 +What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2217638,38210090 +What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2053778,38210090 +"What is the hs code for BOTTLE WL DIFFERENTIAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2123844",38210090 +What is the hs code for BOTTLE TODD HEWITT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2060551,38210090 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH B01E335M,38210090 +What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2117655,38210090 +What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1285575,38210090 +What is the hs code for BOTTLE SABOURAUD AGAR MODIFIED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2060412,38210090 +What is the hs code for BOTTLE YPD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2305146,38210090 +What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1292710,38210090 +What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2271456,38210090 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2311158,38210090 +What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2067204,38210090 +"What is the hs code for BOTTLE TSB CASEIN MED 500G ( MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 2143687,2256092",38210090 +What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2158117,38210090 +"What is the hs code for BOTTLE DIFCO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2312054,3004839",38210090 +What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1350021,38210090 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2034966,38210090 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2207189,38210090 +What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2011124,38210090 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2123842,38210090 +What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2143788,38210090 +What is the hs code for BOTTLE POTATO DEXROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2271446,38210090 +"What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2005526,2200729",38210090 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1285556,38210090 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2152796,38210090 +"What is the hs code for BOTTLE GRAM CRYSTAL VIOLET 250ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 3031453",38210090 +What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3075347,38210090 +What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3075347,38210090 +What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3075347,38210090 +What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3075347,38210090 +What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3075347,38210090 +What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3075347,38210090 +What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN549556,35051010 +What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN549553,35051010 +What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN549559,35051010 +What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN549558,35051010 +What is the hs code for MACKAM C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 8776-1,34024990 +What is the hs code for ACTIPONE (R) CAMU CAMU GW (BHN BAKU KOSMETIK) COA 10300019,13021950 +What is the hs code for EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300066,13021950 +What is the hs code for IVY DRY HYDR EXTR 10PCT HPLC (BHN BAKU SUPLEMEN) COA 22B0092500,13021990 +What is the hs code for MIAMI SCG(S) (BHN BAKU KOSMETIK) COA MWC2300511,34023990 +"What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 30214,30302,30308",38029090 +What is the hs code for REFINED COCONUT OIL - L (BHN BAKU KOSMETIK) COA 0002640007,15131990 +What is the hs code for LAKE PIGMENT (R) 6010 D&C YELLOW 10 ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP853299:BB4499,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5396 ERYTHROSINE ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP860977:1,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5406 FD&C RED 40... (BHN BAKU PEWARNA TABLET) COA WP857248:BB7542,32151990 +What is the hs code for LAKE PIGMENT (R) 6010 D&C YELLOW 10 ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP853307:BB4660,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C YELLOW 6/SUNSET...(BHN BAKU PEWARNA TABLET) COA WP862658:BC0557,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5517 FD&C BLUE 1/BRILLIANT...(BHN BAKU PEWARNA TABLET) COA WP860651:BB8658,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5627 FD&C BLUE 2/INDIGO...(BHN BAKU PEWARNA TABLET) COA WP863102:BC1252,32151990 +What is the hs code for MAGNESIUM HYDROXYDE MS90 PHARMA (BHN BAKU OBAT) COA 202300122,28161000 +What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) CAS 1119-97-7,38249999 +What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20230101 (POST BORDER),29362800 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB23030694 S/D WB23030696 (POST BORDER),29362100 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB23030694 (POST BORDER),29362100 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB23030698 S/D WB23030700 (POST BORDER),29362100 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB22080265 (POST BORDER),29362800 +What is the hs code for FAIR FOR LIFE REFINED SHEA (BHN BAKU KOSMETIK) COA 0000045896,15159011 +What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9,38249999 +What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) CAS 68937-54-2,38249999 +What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9,38249999 +What is the hs code for KP-561P (16KG) (BHN BAKU KOSMETIK) CAS 329236-76-2,38249999 +What is the hs code for KSG-210 (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9,38249999 +What is the hs code for KSP-101 (15KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6,38249999 +What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9,38249999 +What is the hs code for MC-GLUCAN (BHN BAKU KOSMETIK) COA MCGL230427,39139090 +What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-001-A (POST BORDER),13021990 +What is the hs code for BOTTLE MICROBIAL CONTENT TEST AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2347732,38210090 +What is the hs code for PROPIDIUM IODINE STAINING SOLUTION 2ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1354798,38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1344136,38210090 +What is the hs code for VIAL SAL H ANTISERUM B 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1364584,38210090 +What is the hs code for VIAL SAL H ANTISERUM C 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1140112,38210090 +What is the hs code for VIAL SAL O ANTIS GRP B FLR 1/4/5/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1217576,38210090 +What is the hs code for VIAL SAL O ANTISERUM GRP C1 FTR 6/7 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2244880,38210090 +What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIAUTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2322452,38210090 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2279321,38210090 +What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3038435,38210090 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2279321,38210090 +What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3093476,38210090 +What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3076458,38210090 +What is the hs code for HYCHECK FOR TOTAL COUNT 10/PK (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 23020301,38210090 +What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3006876,38210090 +What is the hs code for VIAL SAL H ANTISERUM B 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1364584,38210090 +What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3076458,38210090 +What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3006876,38210090 +What is the hs code for OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 57-50-1,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K84823...(BHN BAKU PEWARNA TABLET) CAS 64044-51-5,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-38956...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B82443...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) ENTERIC COATING SYSTEM 94O190003...(BHN BAKU PEWARNA TABLET) CAS 25086-15-1,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 151-21-3,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620023...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B84893...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for AQUACOAT ECD-30 ETHYLCELLULOSE AQUEOUS... (BHN BAKU PEWARNA TABLET) COA 2174151144,39123900 +What is the hs code for AQUACOAT ECD-30 ETHYLCELLULOSE AQUEOUS... (BHN BAKU PEWARNA TABLET) COA 2174260754,39123900 +"What is the hs code for SODIUM CARBONATE IPH (BHN BAKU SUPPLEMEN) COA DOC1002321,DOC0862321",28363000 +What is the hs code for ARTESUNATE (STERILE) IP (BHN BAKU OBAT) COA SI/BARS/0010123,29329900 +What is the hs code for OMEPRAZOLE SODIUM STERILE (BHN BAKU OBAT) COA SI/OPZ/00251222,29333990 +What is the hs code for CINNARIZINE BP/EP (BHN BAKU OBAT) COA CIN2304020,29335990 +"What is the hs code for VC ASCORBIC ACID REGULAR (BHN BAKU MAKANAN) COA HPB2303210,HPB2303217 (POST BORDER)",29362700 +What is the hs code for VC ASCORBIC ACID REGULAR (BHN BAKU MAKANAN) COA HPB2303233 (POST BORDER),29362700 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0003600,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23BB0003700,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23BB0003800,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23BB0003900,13021990 +"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT23020002,UT23020003 (POST BORDER)",29362600 +What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF (BHN BAKU SUPPLEMEN) COA UE02302003,32030010 +"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30216029,UQ30216030",29362700 +What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30216030 S/D UQ30216032,29362700 +What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02303308,29362700 +What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT23020001,29362100 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT23020023,29362800 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT23020003 (POST BORDER),29362600 +"What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02303308,TL02303309",29362700 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT23020023,29362800 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02301001 S/D UE02301003,32041800 +What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2270988,38210090 +What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2484059,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2441197,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2441197,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2461100,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1110920,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1124396,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1124396,38210090 +What is the hs code for BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2031316,38210090 +What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2094434,38210090 +What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2314938,38210090 +What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2314938,38210090 +What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2011614,38210090 +What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2346604,38210090 +What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2314938,38210090 +What is the hs code for HYUNDAI BIOLAND OXYGEN WATER (L) (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +"What is the hs code for HYUNDAI BIOLAND BIOCTP-500 (BHN BAKU KOSMETIK) COA BOPN-052822,021743 (POST BORDER)",13021990 +What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-040812 (POST BORDER),13021990 +What is the hs code for HYUNDAI BIOLAND PF CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSSBD-011143,13021950 +What is the hs code for HYUNDAI BIOLAND SENAS (BHN BAKU KOSMETIK) COA NASB-032912,21022090 +What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N28115,28321000 +What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-071343 (POST BORDER),13021990 +What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012423 (POST BORDER),13021990 +What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1230406,39139090 +What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N4O107,28321000 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101851323,17021100 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101851323,17021100 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP23044147,XP230440148",29211900 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55041... (BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G630022...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 21K58794... (BHN BAKU PEWARNA TABLET) CAS,38249999 +"What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512303,G02512310",47069200 +What is the hs code for MIRASIL DM5 L (BHN BAKU KOSMETIK) COA 2312FF2415,39100090 +What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG230414,29362700 +"What is the hs code for DRIED ALUMINUM HYDROXIDE, SORBITOL BLEND BARCROFT TM 0501 (BHN BAKU OBAT) COA 102360002",28183000 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT22040081(POST BORDER),29362400 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT23010001 (POST BORDER),29362800 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ20912354 (POST BORDER),29362200 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT22110042 (POST BORDER),29362100 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT22040081 (POST BORDER),29362400 +What is the hs code for D-PANTHENOL 75 L (BHN BAKU KOSMETIK) COA TL02210333 (POST BORDER),29362400 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22110352 (POST BORDER),29362800 +What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010528,29420000 +What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010528,29420000 +What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010528,29420000 +What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211042 (POST BORDER),29362700 +"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020002,0923020003",29420000 +"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000209965,0000209966 (POST BORDER)",29362900 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6,38249999 +What is the hs code for HEBELYS (BHN BAKU KOSMETIK) CAS 504-63-2,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220803,13021990 +What is the hs code for JOB’S TEARS HYDROGLYCOLIC EXTRACT (BG) (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230501,13021990 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230501,13021990 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230501,13021990 +What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6,38249999 +What is the hs code for WITCH HAZEL ORGANIC DISTILLATE 1:10 (SB) (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (BHN BAKU KOSMETIK) CAS 90106-38-0,38249999 +What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4,38249999 +What is the hs code for SPECWHITE VCE (BHN BAKU KOSMETIK) COA 20230304 (POST BORDER),29362700 +What is the hs code for GF-B331 (BHN BAKU KOSMETIK) COA 20230410002,35051090 +What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-230214 (POST BORDER),29061300 +What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 230464 (POST BORDER),13021990 +What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 230386 (POST BORDER),13021990 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 222900 (POST BORDER),13021990 +"What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 222516,222677 (POST BORDER)",13021990 +What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 230453 (POST BORDER),29329900 +What is the hs code for BIO-PGA SOLUTION HB (BHN BAKU KOSMETIK) COA 230184,39139090 +What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02303830 (POST BORDER),29362700 +What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02303830 (POST BORDER),29362700 +What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02303830 (POST BORDER),29362700 +What is the hs code for PYRAZINAMIDE EP (BHN BAKU OBAT) COA WHOPZ 029 D 23 S/D WHOPZ 029 D 23,29339990 +What is the hs code for DOPAMINE HCL (BHN BAKU OBAT) COA 23100086,29222900 +What is the hs code for CENTELLA ASIATICA/PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 22S0097300,13021990 +What is the hs code for VACC.MYRT./PINUS PIN. DRY (BHN BAKU SUPPLEMEN) COA 22S0290300,13021990 +What is the hs code for CURCUMA PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 23S0012605,13021990 +What is the hs code for METHOCEL E15 PREMIUM LV HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2444208486,39123900 +What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2444185823,39123900 +What is the hs code for METHOCEL E50 PREMIUM LV HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA D011L9HL02,39123900 +What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464207191,39123900 +What is the hs code for METHOCEL A15 PREMIUM LV METHYLCELLULOSE..(BHN BAKU PEWARNA TABLET) COA D180M11022,39123900 +What is the hs code for METHOCEL A15 PREMIUM LV METHYLCELLULOSE..(BHN BAKU PEWARNA TABLET) COA 2464205144,39123900 +What is the hs code for METHOCEL A15 PREMIUM LV METHYLCELLULOSE...(BHN BAKU PEWARNA TABLET) COA D180M11022,39123900 +What is the hs code for METHOCEL A15 PREMIUM LV METHYLCELLULOSE..(BHN BAKU PEWARNA TABLET) COA 2464274694,39123900 +What is the hs code for METHOCEL A15 PREMIUM LV METHYLCELLULOSE...(BHN BAKU PEWARNA TABLET) COA 2464205135,39123900 +What is the hs code for METHOCEL E50 PREMIUM LV HYDROXYPROPYL....(BHN BAKU PEWARNA TABLET) COA D011M3CL02,39123900 +What is the hs code for OPACODE (R) MONOGRAMMING INK S-1-180000 ... (BHN BAKU PEWARNA TABLET) COA WP869360,32151990 +"What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA MLAH0130323,MLAH0170323",29341000 +What is the hs code for SENSIDIN DO CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9,38249999 +What is the hs code for PHARMAKAOLIN B 860 X (BHN BAKU KOSMETIK) COA 15.12.21,25070000 +What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M114079,29339990 +What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M114170,29339990 +"What is the hs code for CAFFEINE BP/EP/USP (BHN BAKU OBAT) COA 2303629,2303630,2303649,2304771,2304779,2304780 (POST B",29393000 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359...(BHN BAKU PEWARNA TABLET) COA GA730515,39061090 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O63173...(BHN BAKU PEWARNA TABLET) COA GA731387,39061090 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA731075,39061090 +What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA731075,39061090 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620041...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03A690090...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG230421 (POST BORDER),29362700 +"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92304304,XW92304305 (POST BORDER)",21069059 +"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92304305,XW92304306 (POST BORDER)",21069059 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02301608 (POST BORDER),29362400 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT23010170 (POST BORDER),29362900 +"What is the hs code for ROCOAT NIACINAMIDE 33 1/3 PCT (BHN BAKU SUPPLEMEN) COA WB22050228,WB22050229 (POST BORDER)",29362900 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30201014 (POST BORDER),29362500 +"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92304303,XW92304304 (POST BORDER)",21069059 +What is the hs code for PX TRS1 WITHOUT K1 (BHN BAKU MAKANAN) COA XW92303374 (POST BORDER),21069059 +What is the hs code for VITAMIN PREMIX FOR MARGARINE SG15-0027 (BHN BAKU MAKANAN) COA XW92304417 (POST BORDER),21069059 +What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040127,29420000 +What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0041495 (POST BORDER),29362500 +"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323020370,0323020371",29420000 +What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF23013003,29420000 +What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001696243,29420000 +What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211042 (POST BORDER),29362700 +"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060078,0522060107",29420000 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060069,29420000 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060107,29420000 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22110352 (POST BORDER),29362800 +"What is the hs code for PARSOL TX, (BHN BAKU KOSMETIK) COA P2B06QA000",29420000 +What is the hs code for PARSOL EHT (BHN BAKU KOSMETIK) COA 1323020173,29420000 +What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P2B06QA000,29420000 +What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000209966 (POST BORDER),29362900 +"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040127,0223040040",29420000 +What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0723010022,29420000 +What is the hs code for MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50509,29061100 +What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B120123,39123900 +What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB240323,39123900 +What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB240323,39123900 +What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B120123,39123900 +What is the hs code for LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LG260323,39123900 +What is the hs code for DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2305001,28352510 +What is the hs code for NUTRALIPIDS TYPE HY (BHN BAKU KOSMETIK) COA 3116300127,15179090 +What is the hs code for OPTISHARP NAT. ZEA. 14PCT SAFF. (BHN BAKU SUPPLEMEN) COA 2303101940,32041800 +What is the hs code for ERDOSTEINE IH (BAHAN BAKU OBAT) COA EDSF230014 (POST BORDER),29349990 +What is the hs code for ERDOSTEINE IH (BAHAN BAKU OBAT) COA EDSF230014 (POST BORDER),29349990 +What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 23100080,29221990 +What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 23100109,29221990 +What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 23100110,29221990 +"What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100MESH (BHN BAKU SUPLEMEN) COA 6AX2304047,6AX2304048",29181400 +What is the hs code for LIPOID S 67 F (BHN BAKU SUPPLEMEN) COA 576200-2230040,29232011 +What is the hs code for DL-ALPHA-TOCOPHEROL (BHN BAKU KOSMETIK) COA 01230107ES,29362800 +What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL02211116 (POST BORDER),29362400 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12301007 (POST BORDER),29362900 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12301007 (POST BORDER),29362900 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT23010170 (POST BORDER),29362900 +What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000210457 (POST BORDER),29362900 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ21210865 (POST BORDER),29362300 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT22100034 (POST BORDER),29362600 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT23010170 (POST BORDER),29362900 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02212492 (POST BORDER),29362800 +"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02212492,UE02301044 (POST BORDER)",29362800 +What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0041495 (POST BORDER),29362500 +"What is the hs code for D-PANTHENOL 50 L (BHN BAKU KOSMETIK) COA TL02211634,TL02212644 (POST BORDER)",29362400 +"What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02210111,TL02211116 (POST BORDER)",29362400 +What is the hs code for D-PANTHENOL 75 L (BHN BAKU KOSMETIK) COA TL02210334 (POST BORDER),29362400 +"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000209966,0000209971 (POST BORDER)",29362900 +What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323020371,29420000 +What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF23013003,29420000 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02206017 (POST BORDER),29362900 +What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02112813 (POST BORDER),29362400 +What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211042 (POST BORDER),29362700 +What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323020371 S/D 0323020373,29420000 +What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000209971 (POST BORDER),29362900 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060107,29420000 +What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3094598,38210090 +What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3094598,38210090 +What is the hs code for BOTTLE MR VP BROTH 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 3045918,38210090 +What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2334621,38210090 +What is the hs code for PAIL DIFCO AGAR 10KG (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3004841,38210090 +What is the hs code for BOTTLE SABOURAUD AGAR MODIFIED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2060412,38210090 +What is the hs code for BOTTLE YPD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2305146,38210090 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3039541,38210090 +What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2343200,38210090 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3039541,38210090 +What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3013742,38210090 +What is the hs code for BOTTLE RAPPAPORT VASSILIADIS MSRV 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3107304,38210090 +What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2343200,38210090 +What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2117655,38210090 +What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3052527,38210090 +What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2271456,38210090 +What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3086104,38210090 +What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2362182,38210090 +What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for AMBROXOL HYDROCHLORIDE PH.EUR. (BHN BAKU OBAT) COA VBND230125,29221990 +"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22060046,UT22060047 (POST BORDER)",29362100 +What is the hs code for OPAGLOS (R) TABLET CORE SEALANT PRODUCT OPAGLOS... (BHN BAKU PEWARNA TABLET) COA DT745507,32151990 +What is the hs code for OPATINT (R) CONCENTRATED COLOR DISPERSION G-55286... (BHN BAKU PEWARNA TABLET) COA DT745803,32151990 +What is the hs code for OPATINT (R) CONCENTRATED COLOR DISPERSION G-50659...(BHN BAKU PEWARNA TABLET) COA DT745806,32151990 +What is the hs code for GARLIC EXTRACT ALLICIN 1PCT POWDER (BHN BAKU OBAT) COA 230403C106601,13021950 +What is the hs code for PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) CAS 1332-09-8,38249999 +What is the hs code for CANADIAN WILLOWHERB TM 5C PF (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) CAS 50-70-4,38249999 +What is the hs code for LANABLUE TM PARABEN FREE (BHN BAKU KOSMETIK) CAS 50-70-4,38249999 +What is the hs code for MELANOSTATINE TM 5 BG (50PPM) (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784021665N (POST BORDER),13021990 +What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784021777P (POST BORDER),13021990 +What is the hs code for ISDN 10PCT IN NACL (DISPERSION) (BHN BAKU OBAT) COA 2305377,30039000 +"What is the hs code for MIRASIL DM350 A2 (BHN BAKU KOSMETIK) COA 2313WKW615,2319WKW315",39100090 +"What is the hs code for MANNITOL USP/EP (BHN BAKU OBAT) COA 122302963,122302964",29054300 +What is the hs code for PHARMABURST (R) 500 (BHN BAKU OBAT) COA 122302870,21069099 +What is the hs code for PHARMABURST (R) C1 (BHN BAKU OBAT) COA 122202340,21069099 +What is the hs code for EFFERSODA (R) 20 (BHN BAKU SUPPLEMEN) COA 122302511,28363000 +"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA076233,ROA074235,ROA076233,ROA....",28363000 +"What is the hs code for OPAGLOS 6000 WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET) COA DT736523,SAMPLE NO COMMERCIAL VALUE",32151990 +What is the hs code for WASTAR TM LAVENDER (BHN BAKU KOSMETIK) CAS 90063-37-9,38249999 +What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464161453,39123900 +What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464151591,39123900 +What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464161453,39123900 +What is the hs code for METHOCEL E4M PREMIUM HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464213620,39123900 +What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464207195,39123900 +What is the hs code for METHOCEL K100 PREMIUM LV HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464292878,39123900 +What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA D180L8P002,39123900 +What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464207191,39123900 +What is the hs code for BUDESONIDE MICRONIZED (BHN BAKU OBAT) COA NB3038M,29372900 +What is the hs code for BOSWELLIA SERRATA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 22T0031000,13021990 +What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9,38249999 +What is the hs code for KP-578 (16KG) (BHN BAKU KOSMETIK) CAS 1802167-80-1,38249999 +What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9,38249999 +"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3006876,30",38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3104591,38210090 +What is the hs code for BILBERRY(V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPPLEMEN) COA 23S0052203 (POST BORDER),13021990 +What is the hs code for BUTCHERBROOM DRY HYDR EX 9-11PCT (BHN BAKU SUPLEMEN) COA 22B0070500 (POST BORDER),13021990 +What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23B0027400 (POST BORDER),13021990 +What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23B0027500 (POST BORDER),13021990 +What is the hs code for DS-CERAMIDE Y3S (BHN BAKU KOSMETIK) COA CSLD04,29241990 +What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 23100265,29395900 +What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 23100268,29395900 +What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 23100270,29395900 +What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 23100270,29395900 +What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 23100271,29395900 +What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 23100265,29395900 +What is the hs code for PREDNISONE USP (BHN BAKU OBAT) COA NPD230505,29372100 +What is the hs code for DEXAMETHASONE CEP (BHN BAKU OBAT) COA NUD230301,29372200 +"What is the hs code for DEXAMETHASONE CEP (BHN BAKU OBAT) COA NUD230301, SAMPLE NO COMMERCIAL VALUE",29372200 +What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) CAS 7631-86-9,38249999 +What is the hs code for WORLEE ALOE PURE BALANCE IF 200X FD (BAHAN BAKU KOSMETIK) COA 512290 (POST BORDER),13021990 +What is the hs code for NONIVAMIDE (SYNTHETIC CAPSAICIN) (BHN BAKU KOSMETIK) COA 20230417,29241990 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060104,29420000 +What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0723010030,29420000 +What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0723010030,29420000 +"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000210451,0000211245 (POST BORDER)",29362900 +What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211042 S/D UE02211044 (POST BORDER),29362700 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02211116 (POST BORDER),29362400 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22110352 (POST BORDER),29362800 +What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000211245 (POST BORDER),29362900 +What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211042 S/D UE02211044 (POST BORDER),29362700 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22110352 (POST BORDER),29362800 +What is the hs code for PARSOL ZX (BHN BAKU KOSMETIK) COA 200206012,29420000 +"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT22100034,UT22100036 (POST BORDER)",29362600 +What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02211116 (POST BORDER),29362400 +What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92303403 (POST BORDER),21069059 +What is the hs code for VITAMIN PREMIX 103047 - D (BHN BAKU MAKANAN) COA XW92304310 (POST BORDER),21069059 +What is the hs code for VITAMIN MINERAL PREMIX - JELLY POWDER V2 (BHN BAKU MAKANAN) COA XW92304312 S/D XW92304313 (POST,21069059 +What is the hs code for V 427502 (BHN BAKU MAKANAN) COA XW92304311 (POST BORDER),21069059 +"What is the hs code for DWI-BI (BHN BAKU MAKANAN) COA XW92305001, XW92305002 (POST BORDER)",21069059 +What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12301007 (POST BORDER),29362900 +What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20220801 (POST BORDER),29362800 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ112211023 (POST BORDER),29362500 +What is the hs code for DEXTROSE ANHYDROUS (BHN BAKU OBAT UTK PAKAN TERNAK) COA XWA230509,17023010 +What is the hs code for OPTISHARP NAT. ZEA 5PCT CWS/S-TG (BHN BAKU MAKANAN) COA EW23035003 (POST BORDER),32041800 +What is the hs code for OPTISHARP NAT. ZEA 5PCT CWS/S-TG (BHN BAKU MAKANAN) COA EW23035003 (POST BORDER),32041800 +What is the hs code for OPTISHARP NAT. ZEA 5PCT CWS/S-TG (BHN BAKU MAKANAN) COA EW23035003 (POST BORDER),32041800 +What is the hs code for DRIED ALUMINUM HYDROXIDE GEL USP (BHN BAKU OBAT) COA 102358001,28183000 +"What is the hs code for GUAIFENESIN USP (B. BAKU OBAT) COA GGE-2302024 S/D GGE-2302030, GGE-2303031 S/D GGE-2303037",29094900 +What is the hs code for VIT. A PALM. 1.0 M + VIT. D3 100'000 (BHN BAKU MAKANAN) COA UT22120164 (POST BORDER),29362100 +What is the hs code for STERNFINE 100 N (BHN BAKU MAKANAN) COA N51-3515064 (POST BORDER),29232011 +What is the hs code for EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300029,13021950 +What is the hs code for NEO EXTRAPONE (R) LEMON (BHN BAKU KOSMETIK) COA 10300021,13021950 +What is the hs code for PHYTOCONCENTROLE (R) CAMOMILE (BHN BAKU KOSMETIK) COA 10300051,13021950 +What is the hs code for ACTIPONE (R) WHITE TEA GW (BHN BAKU KOSMETIK) COA 10300053,13021950 +What is the hs code for HYDROLITE (R) 6 (BHN BAKU KOSMETIK) COA 10301086,29053900 +What is the hs code for NORIT SX SUPER E 153 (BHN BAKU KOSMETIK) COA 5358323,38021010 +What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG230428 (POST BORDER),29362700 +What is the hs code for OPADRY (R) TF TIO2 FREE MOISTURE BARRIER FILM... (BHN BAKU PEWARNA TABLET) CAS 9004-64-2,38249999 +What is the hs code for NUTRAFINISH (R) TIO2 FREE MOISTURE BARRIER FILM...(BHN BAKU PEWARNA TABLET) CAS 9004-64-2,38249999 +What is the hs code for NUTRAFINISH (R) TIO2 FREE COATING 176U210026 GREEN... (BHN BAKU PEWARNA TABLET) CAS 471-34-1,38249999 +What is the hs code for METHOCEL E4M PREMIUM CR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA 2464213548,39123900 +What is the hs code for SUGLETS (R) SUGAR SPHERES PF006... (BHN BAKU PEWARNA TABLET) COA ST519552,32151990 +What is the hs code for CHONDROITIN SULFATE - A ORAL (BHN BAKU OBAT) COA 070422CSA (POST BORDER),29362900 +What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 220513 (POST BORDER),33012990 +What is the hs code for MANUKA HONEY EXTRACT GL (WATSON) (BHN BAKU KOSMETIK) COA 230408,38249999 +What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN549775,35051010 +What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN549816,35051010 +What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN549769,35051010 +What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN549616,35051010 +What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC211108,29420000 +What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020003,29420000 +What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA P-78,29397900 +"What is the hs code for PARACETAMOL USP43 (BHN BAKU PAKAN HEWAN) COA 2310578,2351000,2351034",29242930 +What is the hs code for PANTOPRAZOLE SODIUM (STERILE) (BAHAN BAKU OBAT) COA SI/PPZ/00750523,29333990 +"What is the hs code for METAMIZOLE SODIUM REGULAR GRADE (BHN BAKU OBAT) COA 2304665, 2304668 S/D 2304670",29331900 +What is the hs code for PREGABALIN (BHN BAKU OBAT) COA PU1110423,29224900 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA731971,39061090 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007...(BHN BAKU PEWARNA TABLET) COA GA731972,39061090 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G62343...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K580000...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 21K58794...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G65197...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A62337...(BHN BAKU PEWARNA TABLET) COA GA732113,39061090 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A62337...(BHN BAKU PEWARNA TABLET) COA GA732113,39061090 +What is the hs code for PIGMENT BLEND (R) PB-66511 BROWN (BHN BAKU PEWARNA TABLET) COA GA731979,32151990 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O92157...(BHN BAKU PEWARNA TABLET) COA GA731976,39061090 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650018...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019..(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for DRIED ALUMINUM HYDROXIDE GEL USP (BHN BAKU OBAT) COA 102358001,28183000 +What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2023050501 (POST BORDER),21012020 +What is the hs code for PROMOIS S-CAQ (BHN BAKU KOSMETIK) CAS 169590-74-3,38249999 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0,38249999 +What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) CAS 638164-47-3,38249999 +What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) CAS 638164-47-3,38249999 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7,38249999 +What is the hs code for EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6,38249999 +What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9,38249999 +What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9,38249999 +What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9,38249999 +What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6,38249999 +What is the hs code for EUXYL K 100 CAN 10 KG (BHN BAKU KOSMETIK) CAS 55965-84-9,38249999 +What is the hs code for EUXYL K 830 CAN 10 KG (BHN BAKU KOSMETIK) CAS 55965-84-9,38249999 +What is the hs code for SENSIDIN DO CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9,38249999 +"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP11623,MTP11623 (POST BORDE",28363000 +What is the hs code for RUGENER DREIKRONEN HEILKREIDE 25K (BHN BAKU KOSMETIK) COA 6012325400,25090000 +What is the hs code for SUGLETS (R) SUGAR SPHERES PF006... (BHN BAKU PEWARNA TABLET) COA ST519552,32151990 +"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA076233,ROA074235,ROA076233,ROA....",28363000 +What is the hs code for FLUNARIZINE DIHYDROCHLORIDE BP ( BAHAN BAKU OBAT ) COA FLU/04231003,29335990 +What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334877 S/D B334879,29419000 +What is the hs code for METHOCEL K100 PREMIUM HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464331338,39123900 +What is the hs code for METHOCEL K100 PREMIUM HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464340948,39123900 +What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP13223 (POST BORDER),28363000 +What is the hs code for BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP09623 (POST BORDER),28363000 +What is the hs code for PRAYPHOS MKP FG 25K BG (BHN BAKU KOSMETIK) COA 22-280-01,29420000 +What is the hs code for NIACINAMIDE USP (NIACINAMIDE USP/EP) (BHN BAKU KOSMETIK) COA 23-24/NMD[P]/00061S/D 00065,29362900 +What is the hs code for OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 57-50-1,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55089..(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ20912357,UQ20912367,UQ20912368 (POST BORDER)",29362200 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT22100176 (POST BORDER),29362400 +"What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3 PCT (BHN BAKU SUPLEMEN) COA WB22050068, WB22050071 (POST",29362500 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ20912369 (POST BORDER),29362200 +"What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS0800523, HS0810523",29420000 +What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0041495 (POST BORDER),29362500 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT22070070 (POST BORDER),29362800 +What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30316053 (POST BORDER),29362700 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02302017 (POST BORDER),32041800 +What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22060046 S/D UT22060048 (POST BORDE,29362100 +"What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL02303830,TL02304900 (POST BORDER)",29362700 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT23030026 (POST BORDER),29362800 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP23044768,XP23044769",29211900 +What is the hs code for PIROXICAM (BAHAN BAKU OBAT ) COA PRX2023001M (POST BORDER),29349990 +"What is the hs code for CARBAZOCHROME SODIUM SULFONATE ORAL G (BHN BAKU OBAT)COA AC21010/21021,AC21101/21107",29339990 +What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340457,29419000 +What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100MESH (BHN BAKU SUPLEMEN) COA 3AX2305001,29181400 +What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829011771P (POST BORDER),29224900 +What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769011334N (POST BORDER),29224900 +What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for EXO-P TM (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784021777P (POST BORDER),13021990 +What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) CAS 50-70-4,38249999 +What is the hs code for LANACHRYS 2B PF (PRESERVATIVE (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029946N (POST BORDER),13021990 +What is the hs code for CELLOSIZE TM TEXTURE F4M HYDROXYPROPYL... (BHN BAKU KOSMETIK) COA F410M46D31,39123900 +What is the hs code for JOJOBA OIL VIRGIN LOW ODOUR (BHN BAKU KOSMETIK) COA 162763,15159011 +What is the hs code for STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN548730,35051010 +What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU KOSMETIK) COA 23E1202,28399000 +What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU KOSMETIK) COA 23E1205,28399000 +What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU KOSMETIK) COA 21E0801,28399000 +What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU KOSMETIK) COA 23E1207,28399000 +What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU KOSMETIK) COA 23E1603,28399000 +What is the hs code for SUPPOCIRE BM PELLETS (BHN BAKU KOSMETIK) COA 22E4302,28399000 +What is the hs code for MIRANOL ULTRA C-32 MB 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP305236MB,34024990 +What is the hs code for FAIR FOR LIFE REFINED SHEA (BHN BAKU KOSMETIK) COA 0000046155,15159011 +What is the hs code for DRIED ALUMINUM HYDROXIDE (BHN BAKU OBAT) COA 102360002,28183000 +What is the hs code for FLOWER ACIDS (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +"What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512310,G02512317",47069200 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG- CO230501 (POST BORDER),13021990 +What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-230501 (POST BORDER),13021990 +What is the hs code for PHYTELENE COMPLEXE EGX 773 (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for HEBELYS (BHN BAKU KOSMETIK) CAS 504-63-2,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6,38249999 +What is the hs code for MEG-3 '30' N-3 INF OIL (BHN BAKU SUPPLEMEN) COA TS00022014 (POST BORDER),29362500 +What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2271456,38210090 +What is the hs code for BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1097873,38210090 +What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 3072748,38210090 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2362152,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3004799,38210090 +What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2263336,38210090 +What is the hs code for BOTTLE MIL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283882,38210090 +What is the hs code for BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 2143333,38210090 +"What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2304673,3040504",38210090 +What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2088727,38210090 +What is the hs code for BOTTLE KF STREPTOCOCCUS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2214351,38210090 +What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3052527,38210090 +What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2201317,38210090 +What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2291792,38210090 +What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2160342,38210090 +What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2158117,38210090 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2172755,38210090 +What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2066423,38210090 +What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2067241,38210090 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2104098,38210090 +"What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2188691,2293109",38210090 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2207189,38210090 +"What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2011124",38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2214270,38210090 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 3039541,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2265467,38210090 +What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 2074829,38210090 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2236789,38210090 +What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2229544,38210090 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1285556,38210090 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1285556,38210090 +What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2269093,38210090 +What is the hs code for BOTTLE TAT BROTH BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2152796,38210090 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA U/PENGEMBANGAN MIKROORGANISME)BATCH 3094174,38210090 +What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02F053M,38210090 +"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2123842,....",38210090 +"What is the hs code for LEUCOCYANIDINS (BHN BAKU SUPPLEMEN) COA 928/34, SAMPLE NO COMMERCIAL VALUE",13021950 +What is the hs code for MICONAZOLE NITRATE (BHN BAKU OBAT ) COA H20230301,29332900 +What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-230301,29397900 +What is the hs code for LISINOPRIL DIHYDRATE USP (BAHAN BAKU OBAT ) COA C5170-23-042R,29339990 +What is the hs code for MICONAZOLE NITRATE (BHN BAKU OBAT ) COA H20230301,29332900 +What is the hs code for ADEPLUMP (BHN BAKU KOSMETIK) COA 230139 (POST BORDER),13021990 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 230849 (POST BORDER),13021990 +What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 222900 (POST BORDER),13021990 +What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 230464 (POST BORDER),13021990 +What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 230386 (POST BORDER),13021990 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 222516 (POST BORDER),13021990 +What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 230453 (POST BORDER),29329900 +What is the hs code for YUZU CERAMIDE B (BHN BAKU KOSMETIK) COA 230294 (POST BORDER),13021990 +What is the hs code for EMALEX OD-16 (BHN BAKU KOSMETIK) COA OD-16665,34024210 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT23020002 (POST BORDER),29362600 +What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT23030002 (POST BORDER),29362500 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT23020002 (POST BORDER),29362600 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT23020003 (POST BORDER),29362600 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02302016 (POST BORDER),32041800 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT23031233,UT23031234 (POST BORDER)",29362100 +What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL02303830 (POST BORDER),29362700 +What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02303830 (POST BORDER),29362700 +What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00820740,29420000 +"What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT23030003,UT23030004 (POST BORDER)",29362500 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT23030089 (POST BORDER),29362400 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT22070008 (POST BORDER),29362900 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT22070008 (POST BORDER),29362900 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT22070008 (POST BORDER),29362900 +What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0041495 (POST BORDER),29362500 +What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000211841 (POST BORDER),29362900 +What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020003,29420000 +What is the hs code for SURELEASE (R) ETHYLCELLULOSE DISPERSION TYPE B NF E-7... (BHN BAKU PEWARNA TABLET) COA IN549961,32151990 +What is the hs code for METHOCEL K100 PREMIUM LV DC2 HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA 24641866,39123900 +What is the hs code for LIPOID PPL-600 (BHN BAKU SUPPLEMEN) COA 577200-2230235 (POST BORDER),29232011 +What is the hs code for NOMEGESTROL ACETATE (BHN BAKU OBAT) COA ND1116,29372300 +What is the hs code for PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PI22030014,29349920 +What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU SUPPLEMEN) COA 23E0309,28399000 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101851923,17021100 +What is the hs code for NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 23LNC0321SQ375,27101990 +What is the hs code for KETOPROFEN (BHN BAKU OBAT) COA 203201,29183000 +What is the hs code for KETOPROFEN (BHN BAKU OBAT) COA 203201,29183000 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55089...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for CETRIMIDE CETRIMIDE GEN (BHN BAKU KOSMETIK) CAS 1119-97-7,38249999 +What is the hs code for HYUNDAI BIOLAND SNAIL SECRETION FILTRA (BHN BAKU KOSMETIK) COA SAFW-031553 (POST BORDER),13021990 +What is the hs code for BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1230504 (POST BORDER),39139090 +What is the hs code for HYUNDAI BIOLAND BIO-FRGE PLUS (BHN BAKU KOSMETIK) COA CFRK-042812 (POST BORDER),13021990 +What is the hs code for HYUNDAI BIOLAND SENAS (BHN BAKU KOSMETIK) COA NASB-032912 (POST BORDER),21022090 +What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5,38249999 +"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-020443,030353",13021950 +What is the hs code for HYUNDAI BIOLAND PINK PLANKTON EXTRACT (HD) (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for HYUNDAI BIOLAND CUCURBITA EXTRACT (BHN BAKU KOSMETIK) COA CMB-011913 (POST BORDER),13021990 +What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-020963 (POST BORDER),13021990 +What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-041013 (POST BORDER),13021990 +What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA MAK114,28321000 +What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N4O107,28321000 +What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5,38249999 +What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-020443,13021950 +What is the hs code for VC ASCORBIC ACID DC 97PCT (BHN BAKU SUPPLEMEN) COA HPG2302001 (POST BORDER),29362700 +What is the hs code for BOREALINE R PROTECT (BHN BAKU KOSMETIK) COA AM096136 (POST BORDER),13021990 +What is the hs code for LECIGEL (BHN BAKU KOSMETIK) CAS 37350-42-8,38249999 +What is the hs code for DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834011557N (POST BORDER),29224900 +What is the hs code for SELOHVITA C (BHN BAKU OBAT) COA 3131996,28429010 +What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010098,29420000 +What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040040,29420000 +What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0723010030,29420000 +What is the hs code for STAY C (R) 50 (BHN BAKU KOSMETIK) COA UE02211125 (POST BORDER),29362700 +"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060106,0523060007",29420000 +What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P2C09QA000,29420000 +What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010098,29420000 +What is the hs code for STAY C (R) 50 (BHN BAKU KOSMETIK) COA UE02202022 (POST BORDER),29362700 +What is the hs code for WORLEE ALOE PURE BALANCE IF 200X FD (BAHAN BAKU KOSMETIK) COA 512385 (POST BORDER),13021990 +What is the hs code for GELOT 64 (BHN BAKU SUPPLEMEN) COA 193923,28399000 +What is the hs code for TRANSCUTOL P (BHN BAKU SUPPLEMEN) COA 194348,28399000 +What is the hs code for COMPRITOL 888 ATO (BHN BAKU SUPPLEMEN) COA 195027,28399000 +What is the hs code for LABRAFIL M 1944 CS BF (BHN BAKU SUPPLEMEN) COA 195185,28399000 +What is the hs code for EMULIUM MELLIFERA MB (BHN BAKU KOSMETIK) COA 195131,28399000 +"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22050239,WB22050240 (POST BORDER)",29362900 +What is the hs code for SIMETHICONE (BHN BAKU OBAT) COA 22075,30039000 +"What is the hs code for MAGNESIUM HYDROXIDE USP (BHN BAKU OBAT) COA 102369001,102369005",28161000 +What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA G01641UG,29053200 +What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0078436,38249999 +What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) CAS 233683-84-6,38249999 +What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) CAS 7631-86-9,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51469...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) KB LOW VISCOSITY FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 151-21-3,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G57708...(BHN BAKU PEWARNA TABLET) CAS 12227-89-3,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B84893...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 02F52182...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F19250...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for NYSTATIN MICRONIZED (BHN BAKU OBAT) COA C132333,29419000 +"What is the hs code for MICRO CRYSTALLINE CELLULOSE USP, ACCEL 102 (BHN BAKU SUPPLEMEN) COA D104230369 (POST BORDER)",39129090 +"What is the hs code for MICRO CRYSTALLINE CELLULOSE USP, ACCEL 102 (BHN BAKU SUPPLEMEN) COA D104230370 (POST BORDER)",39129090 +What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9,38249999 +What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9,38249999 +What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) CAS 68937-54-2,38249999 +What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9,38249999 +What is the hs code for KP-561P (16KG) (BHN BAKU KOSMETIK) CAS 329236-76-2,38249999 +What is the hs code for KSG-15 (16KG) (BHN BAKU KOSMETIK) CAS 541-02-6,38249999 +What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9,38249999 +"What is the hs code for TRIMAGNESIUM DICITRATE, ANHYDROUS..(BHN BAKU MAKANAN) COA 3131353 S/D 31313536",29181590 +What is the hs code for PEARL ESSENCES 35178MJ (BHN BAKU KOSMETIK) COA D3230092,32061910 +What is the hs code for 4-HYDROXYACETOPHENONE (BHN BAKU KOSMETIK) COA 202305001,29145000 +What is the hs code for CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) COA 304271 (POST BORDER),21012020 +What is the hs code for FLORAGLO (R) LUTEIN 20 PCT SAF (BHN BAKU SUPPLEMEN) COA UE02304021 (POST BORDER),32030010 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT23040009 (POST BORDER),32030010 +"What is the hs code for VITAMIN A WATER-MISCIBLE, TYPE 100 (BHN BAKU SUPPLEMEN) COA UT23030066 (POST BORDER)",29362100 +What is the hs code for VITAMIN B12 CRYST FOOD GRADE (BHN BAKU KOSMETIK) COA 012303107 (POST BORDER),29362600 +What is the hs code for SYN(R)-AKE (BHN BAKU KOSMETIK) COA UE02210016,29420000 +What is the hs code for BISOPROLOL FUMARATE USP (BHN BAKU OBAT) COA LT-OBFA/002/22-23,29221990 +What is the hs code for LIPOID S 20 (BHN BAKU SUPPLEMEN) COA 572000-2220141,29232011 +What is the hs code for FERROUS GLUCONATE (BHN BAKU OBAT) COA 3127061 (POST BORDER),29181600 +What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/04/220423 S/D 240423,29420000 +"What is the hs code for CROSCARMELLOSE SODIUM USP-NF (BHN BAKU OBAT) COA ACRMC/05/020523, 060523, 070523 (POST BORDER)",39129090 +What is the hs code for SODIUM STARCH GLYCOLATE BP (BHN BAKU OBAT) COA ASGP/05/140523 S/D 150523,29420000 +What is the hs code for DL-ALPHA-TOCOPHEROL (BHN BAKU KOSMETIK) COA 01230502ES (POST BORDER),29362800 +What is the hs code for SALBUTAMOL SULFATE BP (BHN BAKU OBAT) COA 023E067 (POST BORDER),29225090 +What is the hs code for PROCATEROL HCL HEMIHYDRATE MICRONIZED (BHN BAKU OBAT) COA 86032721M1,29337900 +What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340465 S/D B340467,29419000 +"What is the hs code for SODIUM STARCH GLYCOLATE USP (BAHAN BAKU OBAT) COA ASG/05/180523,ASG/04/240423",29420000 +What is the hs code for CROSCARMELLOSE SODIUM USP-NF (BHN BAKU OBAT) COA ACRMC/05/310523,39129090 +"What is the hs code for CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/06/050623,060623",39123100 +"What is the hs code for SODIUM STARCH GLYCOLATE BP (BAHAN BAKU OBAT) COA ASGP/05/270523,290523,300523",29420000 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP23064006,XP23064007",29211900 +What is the hs code for CALCIUM PROPIONATE 20 KG (BHN BAKU PAKAN TERNAK) COA 23031708 S/D 23031758,29155000 +What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5,38249999 +What is the hs code for BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2031316,38210090 +What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2270988,38210090 +What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2179381,38210090 +What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2484059,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2461100,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1124396,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1124396,38210090 +What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2094434,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1124396,38210090 +What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2484059,38210090 +What is the hs code for BACTO CASAMINO ACIDS EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2208138,38210090 +What is the hs code for UCARE POLYMER JR-125 PC 68.04K KNN (BHN BAKU KOSMETIK) COA D632M5OMBC,39123900 +What is the hs code for MIEL ACACIA HONGRIE IONISE 20 (BHN BAKU KOSMETIK) COA 20384 (POST BORDER),17029099 +"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA100233,ROA095236,ROA.(POST BORDER)",28363000 +"What is the hs code for PURIDROX (R) COMPACTED CEFADROXIL (BHN BAKU OBAT) COA B340484,B340490,B340491",29419000 +"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG230526,MCVG230519 (POST BORDER)",29362700 +"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA100234,ROA100233,... (POST BORDER)",28363000 +"What is the hs code for MAGNESIUM CARBONATE, HEAVY, POWDER... (BHN BAKU OBAT) COA 3122196 (POST BORDER)",28369990 +"What is the hs code for DIPOTASSIUM PHOSPHATE POWDER (BHN BAKU MAKANAN) COA 3128287,3131441 (POST BORDER)",28352400 +What is the hs code for SELOHVITA C (BHN BAKU OBAT) COA 3129181,28429010 +"What is the hs code for TRIPOTASSIUM CITRATE 1-HYDRATE, CRYST... (BHN BAKU OBAT) COA 3133037",29181400 +"What is the hs code for MAGNESIUM OXIDE, LIGHT, POWDER, BP 2023 (BHN BAKU SUPLEMEN) COA 3131441",25199010 +"What is the hs code for FERROUS GLUCONATE, POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3131114 (POST BORDER)",29181600 +"What is the hs code for FERROUS SULFATE, DRIED, POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3116763",28332920 +What is the hs code for SELOHVITA C (BHN BAKU OBAT) COA 3129178,28429010 +"What is the hs code for FERROUS SULFATE, DRIED, POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3128451",28332920 +"What is the hs code for POTASSIUM L-ASPARTATE 0,5-HYDRATE...(BHN BAKU OBAT) COA 3097137",29224900 +"What is the hs code for CALCIUM ACETATE,POWDER,PURITY ACC (BHN BAKU SUPLEMEN) COA 3118785",29152990 +"What is the hs code for SODIUM FEREDETATE, POWDER, BP 2023 (BHN BAKU SUPPLEMEN) COA 311934 (POST BORDER)",29224900 +What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA ND1417M,29372200 +"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT23010011,UT23010028 (POST BORDER)",29362800 +What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12302031 (POST BORDER),29362900 +What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2207086 (POST BORDER),29362300 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ20912369 (POST BORDER),29362200 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02103502 (POST BORDER),29362900 +What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22120262 (POST BORDER),29362400 +What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02206017 (POST BORDER),29362900 +"What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW92305340,XW92305339 (POST BORDER)",21069059 +What is the hs code for B-CAROTENE 1PCT CWS/M (BHN BAKU MAKANAN) COA UT22040024 (POST BORDER),32041800 +What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC230402,29420000 +What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010362,29420000 +What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010362,29420000 +What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010362,29420000 +"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323020530,0323020532",29420000 +What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323020532,29420000 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02211116 (POST BORDER),29362400 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060069,29420000 +What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040104,29420000 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060108,29420000 +What is the hs code for SILYBIN/PHOSPHOLIPIDS (BAHAN BAKU SUPPLEMENT) COA 23B0046600 (POST BORDER),13021990 +What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2204084413,29372900 +"What is the hs code for SPECWHITE VCE (BHN BAKU KOSMETIK) COA 20230501,20230502 (POST BORDER)",29362700 +What is the hs code for POTASSIUM L-ASPARTATE 0.5-HYDRATE (BHN BAKU OBAT) COA 3097137 (POST BORDER),29224900 +What is the hs code for SODIUM CALCIUM EDETATE (BHN BAKU OBAT) COA 3112656 (POST BORDER),29224900 +"What is the hs code for ZINC GLUCONATE POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3131245 (POST BORDER)",29181600 +What is the hs code for STERNFINE 100 N (BHN BAKU MAKANAN) COA N51-3615085 (POST BORDER),29232011 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101852123,17021100 +"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP16923,MTP17023 (POST BORD",28363000 +What is the hs code for BICAR PHARMA API HIGH PURITY 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP14823 (POST BO,28363000 +"What is the hs code for BICAR PHARMA API HIGH PURITY 0/13... (BHN BAKU SUPPLEMEN) COA MTP12623, SAMPLE NO (POST BORDER)",28363000 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for SEABUCKTHORN HYDROGLYCOLIC EXTRACT (BG) (BHN BAKU KOSMETIK) COA HIR230501-B (POST BORDER),13021990 +What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIEP230601-B (POST BORDER),13021990 +What is the hs code for KIGELINE (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for SEABUCKTHORN HYDROGLYCOLIC EXTRACT (BG) (BHN BAKU KOSMETIK) COA HIR230501-B (POST BORDER),13021990 +What is the hs code for PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3438022 (POST BORDER),33029000 +What is the hs code for ONDANSETRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA 23OS002,29332900 +What is the hs code for SETACIN 103/SPEZIAL OR NP - RSPO - MB (BHN BAKU KOSMETIK) COA 3569,34023990 +What is the hs code for REFINED GRAPESEED OIL (BHN BAKU KOSMETIK) COA B2300016,15152919 +What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-230613 (POST BORDER),29061300 +"What is the hs code for SODIUM VALPROATE (BAHAN BAKU OBAT) COA 458272,458380",29159090 +What is the hs code for DEXTROSE ANHYDROUS (BHN BAKU OBAT UTK PAKAN TERNAK) COA XWA230621,17023010 +What is the hs code for CITRIC ACID MONOHYDRATE GRANULAR (BHN BAKU SUPLEMEN) COA UJ312,29181400 +What is the hs code for FERROUS FUMARATE (BHN BAKU OBAT) COA 2023/100,29171900 +What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 201024,29332900 +What is the hs code for ESCIN (BHN BAKU KOSMETIK) COA CP00000481,13021950 +What is the hs code for LEUCOSELECT PHYTOSOME (BHN BAKU KOSMETIK) CAS 84929-27-1,38249999 +What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 02/19GAAK,28399000 +What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 192311,28399000 +What is the hs code for ACTICIRE MB BF (BHN BAKU KOSMETIK) COA 195723,28399000 +"What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334892,B334894,B334895",29419000 +What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334895 S/D B334898,29419000 +What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340467 S/D B340470,29419000 +What is the hs code for KETOROLAC TROMETAMOL / TROMETHAMINE (BHN BAKU OBAT) COA 23100187,29339990 +What is the hs code for TAPIOKA STER (BHN BAKU KOSMETIK) CAS 9005-25-8,38249999 +What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG230602 (POST BORDER),29362700 +What is the hs code for LEVAMISOLE HYDROCHLORIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA LV22366,29349990 +What is the hs code for ALBENDAZOLE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 20230402,29339990 +What is the hs code for AMPROLIUM HCL (BHN BAKU OBAT UTK PAKAN TERNAK) COA 20230405,29335990 +What is the hs code for CROSPOVIDONE XL (BHN BAKU SUPPLEMEN) COA PP230424XL,39059990 +"What is the hs code for DEXAMETHASONE BP2010/USP42 (BHN BAKU OBAT) COA NED230508, NED230519,NED230520",29372200 +What is the hs code for HYDROCORTISONE ACETATE EP7/USP42 (BHN BAKU OBAT) COA NEHAC230606,29372200 +What is the hs code for METHYLPREDNISOLONE USP2022 (BHN BAKU OBAT) COA NMP221102,29372900 +"What is the hs code for PREDNISONE USP2022 (BHN BAKU OBAT) COA NPD 221018, NPD 230615",29372100 +What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9,38249999 +What is the hs code for 8552-507-K05 LIPEX 512 VEGETABLE OIL (BHN BAKU KOSMETIK) COA 0002640615,15162049 +What is the hs code for SUNBELLIN (BHN BAKU KOSMETIK) COA F210-2303044 S/D F210-2303046,29339990 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP23064091,XP23064092",29211900 +What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA MLAH0180323,29341000 +"What is the hs code for MEG-3 '30' N-3 FOOD OIL (BHN BAKU MAKANAN) COA TS00021856,TS00022239 (POST BORDER)",29362500 +"What is the hs code for MEG-3 '30' N-3 FOOD OIL (BHN BAKU MAKANAN) COA TS00021856,TS00022239 (POST BORDER) SAMPLE.....",29362500 +What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2023050501 (POST BORDER),21012020 +What is the hs code for BIOPHILIC TM H MB (BHN BAKU KOSMETIK) CAS 68855-56-1,38249999 +What is the hs code for DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834011557N (POST BORDER),29224900 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) CAS 37350-42-8,38249999 +What is the hs code for ROSALITY TM (BHN BAKU KOSMETIK) CAS 5343-92-0,38249999 +What is the hs code for WASTAR TM LAVENDER (BHN BAKU KOSMETIK) CAS 90063-37-9,38249999 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) CAS 37350-42-8,38249999 +What is the hs code for BOREALINE R PROTECT (BHN BAKU KOSMETIK) COA AM094500 (POST BORDER),13021990 +"What is the hs code for FENTACARE 2231 EF 25KG PAPER BOX (BHN BAKU KOSMETIK ) COA ZH23E1401,ZH23E2002,ZH23F0405",34029019 +"What is the hs code for MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL230608,MCCPOL230619",29094900 +What is the hs code for KF-54HV (18KG) (BHN BAKU KOSMETIK) CAS 68083-14-7,38249999 +What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6,38249999 +What is the hs code for KSP-101 (15KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6,38249999 +What is the hs code for KF-6017(17KG) (BHN BAKU KOSMETIK) CAS 68937-54-2,38249999 +What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9,38249999 +What is the hs code for KP-561P (16KG) (BHN BAKU KOSMETIK) CAS 329236-76-2,38249999 +What is the hs code for KSG-210 (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9,38249999 +What is the hs code for KSP-101 (15KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6,38249999 +What is the hs code for SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202306-028,35040000 +"What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS1380523,HS1390623,HS1430623",29420000 +What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS1430623,29420000 +What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22120265 (POST BORDER),29362400 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11221104 (POST BORDER),29362500 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT23010170 (POST BORDER),29362900 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT23010170 (POST BORDER),29362900 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT23030089 (POST BORDER),29362400 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02303106 (POST BORDER),29362800 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT22090039 (POST BORDER),29362900 +What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU SUPPLEMEN) COA 23E2002,28399000 +What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU SUPPLEMEN) COA 23E1603,28399000 +What is the hs code for SUPPOCIRE BM PELLETS (BHN BAKU SUPPLEMEN) COA 22E4808,28399000 +What is the hs code for FLUOROMETHOLONE MICRONISED USP BP JP (BHN BAKU OBAT) COA 2201584198,29372200 +What is the hs code for PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PG0350522,29349920 +What is the hs code for NAPROXEN SODIUM USP (BHN BAKU OBAT) COA 2-SN-0970523,29189900 +What is the hs code for ORANGE EXTRACT (BHN BAKU KOSMETIK) COA 23050123,13021950 +What is the hs code for GINKGO LEAVES EXTRACT (BHN BAKU KOSMETIK) COA 23050109,13021950 +What is the hs code for PRICKLY PEAR WATER DISTILLATE (BHN BAKU KOSMETIK) COA 23060203,33019090 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G60929...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP16023 (POST BORD,28363000 +What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWDER... (B.BAKU KOSMETIK) CAS 65497-29-2,38249999 +"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 27-10-22,24-01-23,20-01-23",38029090 +What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-1750623,29334910 +What is the hs code for PANTOPRAZOLE SODIUM (STERILE) (BAHAN BAKU OBAT) COA SI/PPZ/01210623,29333990 +What is the hs code for ESOMEPRAZOLE SODIUM (STERILE) (BHN BAKU OBAT) COA SI/EPZ/00100623,29333990 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101851923,17021100 +What is the hs code for METHOCEL K100 CR PREMIUM HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464346607,39123900 +What is the hs code for EDIBLE BOVINE GELATINE 180/20 (BHN BAKU OBAT ) COA 5002301267,35030049 +What is the hs code for SENTRY POLYOX WSR 1105 LEO NF..(BHN BAKU PEWARNA TABLET) COA 2534432764,39123900 +What is the hs code for SENTRY POLYOX WSR N750 LEO NF..(BHN BAKU PEWARNA TABLET) COA D682L77RJ2,39123900 +What is the hs code for AMITOSE R (BHN BAKU KOSMETIK) COA LEC (POST BORDER),13021990 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7,38249999 +What is the hs code for PROMOIS EK-118(IN) (BHN BAKU KOSMETIK) CAS 59219-71-5,38249999 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0,38249999 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7,38249999 +What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 231297 (POST BORDER),29329900 +What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 222274 (POST BORDER),13021990 +What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) CAS,38249999 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for CLAIRJU (BHN BAKU KOSMETIK) COA 222073 (POST BORDER),13021990 +What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 230849 (POST BORDER),13021990 +What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 230386 (POST BORDER),13021990 +What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 222677 (POST BORDER),13021990 +What is the hs code for ROSE HIPS LIQUID B (BHN BAKU KOSMETIK) COA 231036 (POST BORDER),13021990 +What is the hs code for BIOBENEFITY (BHN BAKU KOSMETIK) COA 230679 (POST BORDER),13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0003900,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0005100,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0005200,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0012000,13021990 +What is the hs code for PEARL ESSENCES 35178MJ (BHN BAKU KOSMETIK) COA D3240363,32061910 +What is the hs code for AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 162893,15159011 +"What is the hs code for EXTRAPONE (R) MANGO B (BHN BAKU KOSMETIK) COA 10300045,10300046",13021950 +What is the hs code for EXTRAPONE (R) WILD BERRIES (BHN BAKU KOSMETIK) COA 10300041,13021950 +What is the hs code for ABYSSINE TM PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) CAS 50-70-4,38249999 +What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829011771P (POST BORDER),29224900 +What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829011886P (POST BORDER),29224900 +What is the hs code for PROGELINE TM (BHN BAKU KOSMETIK) COA 221196 (POST BORDER),29224900 +What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP12302031 (POST BORDER),29362900 +What is the hs code for FOLIC ACID BHN BAKU KOSMETIK)) COA UT22120263 (POST BORDER),29362400 +What is the hs code for D-PANTHENOL 75 L (BHN BAKU KOSMETIK) COA TL02210334 (POST BORDER),29362400 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22110361 (POST BORDER),29362800 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22110361 (POST BORDER),29362800 +"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323020533,0323020534 (POST BORDER)",29420000 +What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF23003008 (POST BORDER),29420000 +"What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211125,UE02211046 (POST BORDER)",29362700 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23010028 (POST BORDER),29362800 +"What is the hs code for VITAMIN A WATER-MISCIBLE, TYPE 100 (BHN BAKU SUPPLEMEN) COA UT23030066 (POST BORDER)",29362100 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT23041237 S/D UT23041239 (POST,29362100 +"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30416076,UQ30416077 (POST BORDER)",29362700 +What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30416077,29362700 +What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30416077,29362700 +What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30316063,29362700 +"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30316063, UQ30316064",29362700 +What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL02303607 (POST BORDER),29362700 +"What is the hs code for FERROUS GLUCONATE, POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3127991 (POST BORDER)",29181600 +What is the hs code for POTASSIUM IODIDE AND CARRIER (BHN BAKU OBAT) COA 3126908 (POST BORDER),28276000 +What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-072763 (POST BORDER),39139090 +What is the hs code for HYUNDAI BIOLAND BIOCTP-500 (BHN BAKU KOSMETIK) COA BOPN-021743 (POST BORDER),13021990 +What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012423 (POST BORDER),13021990 +What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-020963 (POST BORDER),13021990 +What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011702,13021950 +What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA MAK114,28321000 +What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5,38249999 +What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-030353,13021950 +"What is the hs code for HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-032412,052922 (POST BORDER)",13021990 +What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012423 (POST BORDER),13021990 +What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP2230607 (POST BO,39139090 +What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-072763 (POST BORDER),39139090 +What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N4O107,28321000 +What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N4O107,28321000 +What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5,38249999 +What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-011713 (POST BORDER),13021990 +What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-040812 (POST BORDER),13021990 +What is the hs code for HYUNDAI BIOLAND BIOCTP-500 (BHN BAKU KOSMETIK) COA BOPN-021743 (POST BORDER),13021990 +What is the hs code for HYUNDAI BIOLAND YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) CAS 233683-84-6,38249999 +What is the hs code for DEXTROSE ANHYDROUS (BHN BAKU OBAT UTK PAKAN TERNAK) COA XWA230621,17023010 +What is the hs code for CYPROTERONE ACETATE MICRONIZED (BHN BAKU OBAT) COA ND0688M,29372900 +What is the hs code for MOXIFLOXACIN HYDROCHLORIDE (BHN BAKU OBAT) COA MP0040523,29334990 +"What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340488,B340489",29419000 +"What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334898,B334899",29419000 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620023...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-22-17515...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-30-18037...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G52990...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55015...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620041...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A18597...(BHN BAKU PEWARNA TABLET) COA GA734387,39061090 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A18597...(BHN BAKU PEWARNA TABLET) COA GA734387,39061090 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 151-21-3,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G64786...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G640054...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) ENTERIC COATING SYSTEM 94O520141...(BHN BAKU PEWARNA TABLET) CAS 25086-15-1,38249999 +What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA734408,39061090 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O66912...(BHN BAKU PEWARNA TABLET) COA GA734409,39061090 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-19025-A..(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +"What is the hs code for LEUCOCYANIDINS (BHN BAKU SUPPLEMEN) COA 1104/7, SAMPLE NO COMMERCIAL VALUE",13021950 +"What is the hs code for LEUCOCYANIDINS (BHN BAKU SUPPLEMEN) COA 928/34, SAMPLE NO COMMERCIAL VALUE",13021950 +What is the hs code for MIRASIL DM5 L (BHN BAKU KOSMETIK) COA 2312FF2415,39100090 +What is the hs code for MACKAM C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 10004-1,34024990 +What is the hs code for CEFOTAXIME SODIUM (BAHAN BAKU OBAT) COA 3042305024,29419000 +What is the hs code for VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 122202271,28365010 +What is the hs code for FLOWLAC (R) 100 (BHN BAKU OBAT) COA L101502123,17021100 +What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104312123,17021100 +What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103861823,17021100 +What is the hs code for CELLACTOSE (R) 80 (BHN BAKU OBAT) COA L100460523,17021100 +What is the hs code for MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103150723,17021100 +What is the hs code for OPALUX (R) OPAQUE COLOR COATING CONCENTRATE AS-R-...(BHN BAKU PEWARNA TABLET) COA DT748101,32151990 +What is the hs code for OPASPRAY (R) OPAQUE COLOR CONCENTRATE FOR FILM...(BHN BAKU PEWARNA TABLET) COA DT748103,32151990 +What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340471 S/D B340473,29419000 +What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPPLEMEN) COA WB23030781 (POST BORDER),29362800 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB22080266 (POST BORDER),29362800 +What is the hs code for STERNFINE 100 N (BHN BAKU MAKANAN) COA N51-3623086 (POST BORDER),29232011 +What is the hs code for FLORAGLO (R) LUTEIN 20 PCT SAF (BHN BAKU SUPPLEMEN) COA UE02304021 (POST BORDER),32030010 +What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ21217019,29420000 +What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 220513,33012990 +What is the hs code for OILESS' CITY TM (BHN BAKU KOSMETIK) COA 220304,13021990 +What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 230312,29061900 +What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 220513,33012990 +What is the hs code for PHTHALAVIN (R) ENTERIC COATING POLYMER 2138 CLEAR (BHN BAKU PEWARNA TABLET) COA WP865595,39059990 +What is the hs code for LAKE PIGMENT HT (R) 5406 FD&C RED...(BHN BAKU PEWARNA TABLET) COA WP857243:BB7480,32151990 +What is the hs code for LAKE PIGMENT (R) 6010 D&CYELLOW 10 ALUMIN...(BHN BAKU PEWARNA TABLET) COA WP864266:BC1291,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C YELLOW 6/SUNSET...(BHN BAKU PEWARNA TABLET) COA WP868324:BC3385,32151990 +What is the hs code for CENTELLA ASIATICA EXTRACT 95 PCT (BHN BAKU KOSMETIK) COA GKP 23067 EOU,13021950 +What is the hs code for MATCHA (BHN BAKU KOSMETIK) CAS 84650-60-2,38249999 +What is the hs code for DL-ALPHA-TOCOPHEROL (BHN BAKU KOSMETIK) COA 01230507ES,29362800 +What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6,38249999 +What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9,38249999 +What is the hs code for KSG-15 (16KG) (BHN BAKU KOSMETIK) CAS 541-02-6,38249999 +"What is the hs code for PX 103070-C3 (BHN BAKU MAKANAN) COA XW92305351,XW92305352 (POST BORDER)",21069059 +What is the hs code for VITAMIN PREMIX FOR MARGARINE SG15-0027 (BHN BAKU MAKANAN) COA XW92306023 (POST BORDER),21069059 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT23010005 (POST BORDER),32041800 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02303109 (POST BORDER),29362800 +"What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02303109,UE02303129 (POST BORDER)",29362800 +"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2111132,UEB2111133,... (POST BORDER)",29362300 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT23020003 (POST BORDER),29362600 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT23020001 (POST BORDER),29362100 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12302031 (POST BORDER),29362900 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12302031 (POST BORDER),29362900 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11221105 (POST BORDER),29362500 +What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000212577 (POST BORDER),29362900 +What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010365,29420000 +What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010365,29420000 +What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010365,29420000 +What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010365,29420000 +What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED MAIZE STARCH...(BHN BAKU PEWARNA TABLET) COA IN549806,35051010 +What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED MAIZE STARCH...(BHN BAKU PEWARNA TABLET) COA IN549767,35051010 +What is the hs code for DESONIDE MICRONIZED (BHN BAKU OBAT) COA NC3328M,29372900 +What is the hs code for CLONIDINE HCL (BHN BAKU OBAT) COA 194081,29332900 +What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA 2023F1147,28321000 +What is the hs code for ROSE OILY EXTRACT (BHN BAKU KOSMETIK) CAS 65381-09-1,38249999 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for SEABUCKTHORN HYDROGLYCOLIC EXTRACT (BG) (BHN BAKU KOSMETIK) COA HIR230501-B (POST BORDER),13021990 +What is the hs code for RICE MILK AQUEOUS EXTRACT (SB) (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA735339,39061090 +What is the hs code for OPADRY (R) KB LOW VISCOSITY FILM COATING SYSTEM..(BHN BAKU PEWARNA TABLET) CAS 151-21-3,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G63147...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86512...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K580000...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G60929...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for NYSTATIN POWDER ROW GRADE (BHN BAKU OBAT) COA C114726,29419000 +What is the hs code for MAGNESIUM SULFATE DIHYDRATE...(BHN BAKU SUPPLEMEN) COA 3132117,28332100 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT23020002 (POST BORDER),29362900 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT23020002,29362900 +What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040040,29420000 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060108,29420000 +"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020003,0923020023,0923020025",29420000 +What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-1870723,29334910 +What is the hs code for PERMETHRIN 25:75 EP (BHN BAKU OBAT) COA PMT/010/2023,29162000 +What is the hs code for OPALUX (R) OPAQUE COLOR COATING CONCENTRATE AS-R-...(BHN BAKU PEWARNA TABLET) COA DT748791,32151990 +What is the hs code for OPACODE (R) MONOGRAMMING INK S-1-277001 BLACK (BHN BAKU PEWARNA TABLET) COA DT748789,32151990 +What is the hs code for OPACODE (R) MONOGRAMMING INK A-R-8032 RED (BHN BAKU PEWARNA TABLET) COA DT748790,32151990 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT23040010 (POST BORDER),32030010 +What is the hs code for OPTISHARP NAT. ZEA 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA EW23065005,32041800 +What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20230302 (POST BORDER),29362800 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3079261,38210090 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3079261,38210090 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3079261,38210090 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3079261,38210090 +What is the hs code for BOTTLE BRAIN HEART INFUSION BBL 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1159375,38210090 +What is the hs code for BOTTLE MUELLER HINTON II AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2293662,38210090 +What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2263336,38210090 +What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2334621,38210090 +What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2053778,38210090 +What is the hs code for BOTTLE HEART INFUSION BROTH 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2179358,38210090 +What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2117655,38210090 +What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH 3145004,38210090 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA U/PENGEMBANGAN MIKROORGANISME)BATCH 3094405,38210090 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2311158,38210090 +"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2270340,2305239",38210090 +What is the hs code for BOTTLE TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2256092,38210090 +What is the hs code for BOTTLE DIFCO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3040509,38210090 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2339387,38210090 +"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 21403834,2269127",38210090 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2213688,38210090 +What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 2074829,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 3004794,38210090 +What is the hs code for BOTTLE TRYTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2081022,38210090 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1285556,38210090 +What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2269093,38210090 +What is the hs code for BOTTLE MACCONKEY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2291752,38210090 +What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2263336,38210090 +What is the hs code for BOTTLE MYP AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2276880,38210090 +What is the hs code for BOTTLE MITIS SALIVARIUS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2038855,38210090 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01E343M,38210090 +What is the hs code for BOTTLE M-PA-C AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3114659,38210090 +What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 3096414,38210090 +What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2271456,38210090 +What is the hs code for BOTTLE KF STREPTOCOCCUS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2214351,38210090 +What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3040515,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3004802,38210090 +What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3030476,38210090 +What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) CAS 233683-84-6,38249999 +What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3094622,38210090 +What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3094622,38210090 +What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3094622,38210090 +What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP Y 1ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2349773,38210090 +What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP Y 1ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2349773,38210090 +What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3061959,38210090 +What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP Y 1ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2349773,38210090 +What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP W135 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2349778,38210090 +What is the hs code for BOTTLE MICROBIAL CONTENT TEST AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3072210,38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1344136,38210090 +What is the hs code for VIAL SHIGELLA ANTIS POLY A1 LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2161354,38210090 +What is the hs code for VIAL SHIGELLA ANTIS POLY C2 LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2230296,38210090 +"What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2363671",38210090 +What is the hs code for VIAL SHIGELLA ANTIS POLY B LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2322617,38210090 +What is the hs code for VIAL SHIGELLA ANTIS POLY C LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2069165,38210090 +What is the hs code for VIAL SHIGELLA ANTIS POLY D LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2224553,38210090 +What is the hs code for VIAL E COLI O ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2125078,38210090 +What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3019035,38210090 +What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 3093476,38210090 +What is the hs code for BOTTLE LACTOBACILLLI MRS BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3004891,38210090 +What is the hs code for BOTTLE LACTOBACILLLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3039438,38210090 +"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3054289,....",38210090 +What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2060591,38210090 +What is the hs code for BOTTLE HEMOGLOBIN SOL 2PCT 100ML 10EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3018256,38210090 +What is the hs code for VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3061956,38210090 +"What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 3121809",38210090 +"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3061959,.",38210090 +What is the hs code for MAGNESIUM BISGLYCINATE POWDER (BHN BAKU SUPPLEMEN) COA 3130167 (POST BORDER),29224900 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT23041240,UT23041241",29362100 +"What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02304001,TL02304013,TL02305296, (POST",29362700 +What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30416083 S/D UQ30416085 (POST BORDER),29362700 +"What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT23040008,UT23040009",29362600 +What is the hs code for B-CAROTENE 10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT23040001,32041800 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02305037,32041800 +"What is the hs code for ACETAMINOPHEN (PARACETAMOL) (BHN BAKU OBAT) COA 202306088A,202306089A",29242930 +"What is the hs code for PARACETAMOL USP43 (BHN BAKU OBAT) COA 2351466,2351480,2310855,2310863",29242930 +"What is the hs code for EFFERSODA (R) 20 (BHN BAKU SUPPLEMEN) COA 122302620,122302933",28363000 +"What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 12200723,12210723,12220723,12240723 S/D 12260723,12280723",29359000 +"What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 11620723,11930723,12230723",29359000 +What is the hs code for REFINED COCONUT OIL - L (BHN BAKU KOSMETIK) COA 0002640007 (POST BORDER),15131990 +"What is the hs code for HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-052922,011373 (POST BORDER)",13021990 +What is the hs code for HYUNDAI BIOLAND PEACH EXTRACT (BHN BAKU KOSMETIK) COA PEA-032822 (POST BORDER),13021990 +What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N4O107,28321000 +What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5,38249999 +What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-020963 (POST BORDER),13021990 +What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012423 (POST BORDER),13021990 +What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012423 (POST BORDER),13021990 +"What is the hs code for ZINC CITRATE, POWDER, USP-NF 2023 (BHN BAKU SUPPLEMEN) COA 3131855-02",29181590 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K120033...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM..(BHN BAKU PEWARNA TABLET) CAS 57-50-1,38249999 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20230619,17029019 +What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0041495 (POST BORDER),29362500 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02211116 (POST BORDER),29362400 +What is the hs code for DL-PANTHENOL 50 L (BHN BAKU KOSMETIK) COA TL02212644 (POST BORDER),29362400 +"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000212579,0000213111 (POST BORDER)",29362900 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22110361 (POST BORDER),29362800 +What is the hs code for PERMETHRIN PHARMA GRADE (BHN BAKU OBAT) COA 235046006,29162000 +What is the hs code for MIRASIL DM350 A2 (BHN BAKU KOSMETIK) COA 2330WKW215,39100090 +What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP19423 (POST BORDER),28363000 +What is the hs code for BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP17123 (POST BORDER),28363000 +"What is the hs code for CALAMINE, POWDER, BP 2023 (BHN BAKU SUPPLEMEN) COA 3130806 (POST BORDER)",28369990 +"What is the hs code for SODIUM STARCH GLYCOLATE USP (BAHAN BAKU OBAT) COA ASG/05/260523,270523,290523,...",29420000 +What is the hs code for GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 23T0043200 (POST BORDER),13021990 +What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) CAS 1119-97-7,38249999 +What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) CAS 1119-97-7,38249999 +What is the hs code for ADEPLUMP (BHN BAKU KOSMETIK) COA 230139 (POST BORDER),13021990 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 230849 (POST BORDER),13021990 +What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 222900 (POST BORDER),13021990 +What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 230464 (POST BORDER),13021990 +What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 230386 (POST BORDER),13021990 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 222516 (POST BORDER),13021990 +What is the hs code for YUZU CERAMIDE B (BHN BAKU KOSMETIK) COA 230294 (POST BORDER),13021990 +What is the hs code for EMALEX OD-16 (BHN BAKU KOSMETIK) COA OD-16665,34024210 +What is the hs code for GELUCIRE 44/14 (BHN BAKU SUPPLEMEN) COA 195856,28399000 +What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 01/22GAAK,28399000 +What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 192311,28399000 +What is the hs code for EMULCIRE 61 WL 2659 (BHN BAKU SUPPLEMEN) COA 195020,28399000 +What is the hs code for COMPRITOL 888 ATO (BHN BAKU SUPPLEMEN) COA 195342,28399000 +What is the hs code for ACTICIRE MB BF (BHN BAKU KOSMETIK) COA 195723,28399000 +What is the hs code for XANTHAN 80 (BAHAN BAKU OBAT) COA 4454325408,39139090 +What is the hs code for JAGUAR C162 SGI (BHN BAKU KOSMETIK) CAS 71329-50-5,38249999 +What is the hs code for METHOCEL K100 CR PREMIUM HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464397261,39123900 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G630022...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22110361 (POST BORDER),29362800 +What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP12305023 (POST BORDER),29362900 +What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010444,29420000 +"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010443,0823010444",29420000 +What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000213261 (POST BORDER),29362900 +"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02112813,TL02211812 (POST BORDER)",29362400 +What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT22060225 (POST BORDER),29362100 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02304147 (POST BORDER),29362800 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT23010170 (POST BORDER),29362900 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ30210559 (POST BORDER),29362300 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ30210559 (POST BORDER),29362300 +"What is the hs code for MAGNESIUM CHLORIDE 6-HYDRATE, CRYST, USP 43 (BHN BAKU KOSMETIK) COA 3130542",28273100 +What is the hs code for DL-TARTARIC ACID (BHN BAKU MAKANAN) COA RS015RS0166566,29181200 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for 985-L-MENTHOL CRYSTALS INDIAN NATURAL (BHN BAKU KOSMETIK) COA H2-095/L/22-23,29061100 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7,38249999 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7,38249999 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0,38249999 +What is the hs code for VITAMIN A PALMITATE 1.7M IU/G (BHN BAKU KOSMETIK) COA 0423060011,29362100 +What is the hs code for CITICOLINE SODIUM (BHN BAKU OBAT) COA 230220,29349990 +What is the hs code for GLUCOSAMINE SULFATE 2KCL (BHN BAKU OBAT) COA JSTK230722,29329900 +What is the hs code for ALUMINIUM HYDROXIDE ACETATE POWDER (BHN BAKU OBAT) COA 3133329,29152990 +"What is the hs code for NG 5 PCT-1,2 PROPYLENGLYCOLE 95PCT (BAHAN BAKU OBAT) COA 2307839",30039000 +"What is the hs code for SUNBELLIN (BHN BAKU KOSMETIK) COA F210-2303049, 2303053 S/D 2303056",29339990 +What is the hs code for ADENOSINE(L) (BHN BAKU KOSMETIK) COA C01202302001L S/D C01202302004L,29349990 +What is the hs code for SPECWHITE 05 (BHN BAKU KOSMETIK) COA 20221118,29222900 +What is the hs code for PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) CAS 5743-47-5,38249999 +What is the hs code for BEE PANDA HONEY (BHN BAKU KOSMETIK) CAS 8028-66-8,38249999 +What is the hs code for LYOPHILIZED ROYAL JELLY POWDER (BHN BAKU KOSMETIK) CAS 8031-67-2,38249999 +What is the hs code for TWEEN 80 PHARMA-LQ-(SG) (BHN BAKU KOSMETIK) COA 54408,34024290 +What is the hs code for CALCIUM CARBONATE DC TYPE CS90 PHARMA (BHN BAKU OBAT) COA 202300090,28365010 +What is the hs code for SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 2308861414,29322090 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230501;,13021990 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230501;,13021990 +What is the hs code for INCA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK) CAS 68956-68-3,38249999 +What is the hs code for ARGAN VIRGIN COLD PRESSED DEODORISED ORGANIC OIL XNE112(B.BAKU KOSMETIK) CAS 299184-75-1,38249999 +What is the hs code for OLIVE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for LOTUS FROM VIETNAM ORGANIC OILY EXTRACT (BHN BAKU KOSMETIK) CAS 73398-61-5,38249999 +What is the hs code for PHTHALAVIN (R) ENTERIC COATING POLYMER 2138 CLEAR (BHN BAKU PEWARNA TABLET) COA WP871770,39059990 +What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C YELLOW #6/SUNSET... (BHN BAKU PEWARNA TABLET) COA WP862649:BC0368,32151990 +What is the hs code for LAKE PIGMENT (R) 6010 D&C YELLOW #10 ALUMINUM... (BHN BAKU PEWARNA TABLET) COA WP864266:BC1291,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5177 FD&C YELLOW #5/... (BHN BAKU PEWARNA TABLET) COA WP861770:BB9108,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5396 ERYTHROSINE ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP860976:1,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5627 FD&C BLUE #2/INDIGO... (BHN BAKU PEWARNA TABLET) COA WP862709:BB9470,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5517 FD&C BLUE #1/BRILLIANT.. (BHN BAKU PEWARNA TABLET) COA WP866727:BC4487,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C YELLOW #6/SUNSET.. (BHN BAKU PEWARNA TABLET) COA WP868324:BC3385,32151990 +What is the hs code for ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2302281,32030010 +What is the hs code for DEXTROSE ANHYDROUS (BHN BAKU OBAT UTK PAKAN TERNAK) COA XWA230723,17023010 +What is the hs code for IONOL CP (BHN BAKU KOSMETIK) COA 01106523,29071900 +What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2023062101 (POST BORDER),21012020 +What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA LC020-23-801 (POST BORDER),17021100 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 5 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2322284,38210090 +What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3094598,38210090 +What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3059508,38210090 +What is the hs code for BOTTLE BIGGY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2208599,38210090 +What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2334621,38210090 +What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2201317,38210090 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3096196,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 3114639,38210090 +What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 3096316,38210090 +What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3045915,38210090 +What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3040515,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 5 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2322284,38210090 +What is the hs code for BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2343459,38210090 +What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3094598,38210090 +"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2067241,3096321",38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2265467,38210090 +What is the hs code for BOTTLE TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2081022,38210090 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1285556,38210090 +What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2297695,38210090 +What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2305095,38210090 +What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2269108,38210090 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3079261,38210090 +What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2143788,38210090 +What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2179358,38210090 +What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2271456,38210090 +What is the hs code for BOTTLE KF STREPTOCOCCUS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2214351,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 8 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3005734,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3004799,38210090 +What is the hs code for BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1223658,38210090 +What is the hs code for BOTTLE STARCH AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2271472,38210090 +What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3116919,38210090 +What is the hs code for OPTISHARP NAT. ZEA. 14PCT SAFF. (BHN BAKU SUPPLEMEN) COA 2306101041 (POST BORDER),32041800 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB22080266 (POST BORDER),29362800 +What is the hs code for SODIUM ASCORBATE 99PCT TG (BHN BAKU SUPPLEMEN) COA WB22080500 (POST BORDER),29362700 +What is the hs code for METHOCEL E15 PREMIUM LV HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2444208486,39123900 +What is the hs code for METHOCELA 15 PREMIUM LV METHYLCELLULOSE..(BHN BAKU PEWARNA TABLET) COA 2464275134,39123900 +What is the hs code for METHOCEL K100 PREMIUM LV HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464292878,39123900 +What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA D180LCO001,39123900 +What is the hs code for METHOCEL K4M PREMIUM HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464186396,39123900 +What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2444185823,39123900 +What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464207167,39123900 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O600001...(BHN BAKU PEWARNA TABLET) COA GA736376,39061090 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G610004...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) SGR RAPID SUGA FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 57-50-1,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE ...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-22-17515...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007...(BHN BAKU PEWARNA TABLET) COA GA736380,39061090 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 86G600000...(BHN BAKU PEWARNA TABLET) CAS 9004-64-2,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650018...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 20A680000...(BHN BAKU PEWARNA TABLET) CAS 9004-64-2,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A62337...(BHN BAKU PEWARNA TABLET) COA GA736697,39061090 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A62337...(BHN BAKU PEWARNA TABLET) COA GA736697,39061090 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F17438...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55041...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2300555,38210090 +"What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3094622,3187811",38210090 +What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2060591,38210090 +"What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2363671",38210090 +What is the hs code for BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3039438,38210090 +What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3187811,38210090 +What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3187811,38210090 +"What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2027288",38210090 +What is the hs code for BOTTLE MICROBIAL CONTENT TEST AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3172210,38210090 +What is the hs code for SODIUM CARBONATE IPH (BHN BAKU SUPPLEMEN) COA DOC1842321,28363000 +What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20230201 (POST BORDER),29362800 +"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ30210558,UQ30210559 (POST BORDER)",29362300 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12305024 (POST BORDER),29362900 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT23010028 (POST BORDER),29362800 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02103502 (POST BORDER),29362900 +"What is the hs code for FOLIC ACID (BHN BAKU KOSMETIK) COA UT22120263,UT22120265 (POST BORDER)",29362400 +What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC230503,29420000 +What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211039 (POST BORDER),29362700 +What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211039 (POST BORDER),29362700 +What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC230503,29420000 +What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211039 (POST BORDER),29362700 +What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02211812 (POST BORDER),29362400 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02206017 (POST BORDER),29362900 +What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000213269 (POST BORDER),29362900 +What is the hs code for DIFCO BEEF EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2084515,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 3114540,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 3114540,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 3114524,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 3114524,38210090 +What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059,38210090 +"What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 2242551,REPLACEMENT 35729",38210090 +What is the hs code for CD SUPREME FPM 500GR EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2558581,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2528862,38210090 +What is the hs code for ADIPOFILL'IN TM (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) CAS 37350-42-8,38249999 +What is the hs code for ROSALITY TM (BHN BAKU KOSMETIK) CAS 5343-92-0,38249999 +What is the hs code for WASTAR TM PINK BERRY (BHN BAKU KOSMETIK) CAS 9050-36-6,38249999 +What is the hs code for WASTAR TM LAVENDER (BHN BAKU KOSMETIK) CAS 90063-37-9,38249999 +What is the hs code for ECOGEL TM (BHN BAKU KOSMETIK) CAS 85711-58-6,38249999 +"What is the hs code for EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300029,10300030",13021950 +What is the hs code for NEO EXTRAPONE (R) LEMON (BHN BAKU KOSMETIK) COA 10300023,13021950 +What is the hs code for ACTIPONE (R) GINGER JUICE (ORGANIC) GW (BHN BAKU KOSMETIK) COA 10300023,13021950 +"What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU UTK PAKAN TERNAK) COA 202300162,202300154",28183000 +What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9,38249999 +What is the hs code for EUXYL K 720 CAN 10 KG (BHN BAKU KOSMETIK) CAS 65-85-0,38249999 +What is the hs code for EUXYL K 940 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6,38249999 +What is the hs code for EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) CAS 122-99-6,38249999 +What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6,38249999 +What is the hs code for SENSIDIN DO CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9,38249999 +What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9,38249999 +What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9,38249999 +What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9,38249999 +"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 27-10-22,24-01-23,20-01-23",38029090 +What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20230201 (POST BORDER),29362800 +"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ30210558,UQ30210559 (POST BORDER)",29362300 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12305024 (POST BORDER),29362900 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT23010028 (POST BORDER),29362800 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02103502 (POST BORDER),29362900 +"What is the hs code for FOLIC ACID (BHN BAKU KOSMETIK) COA UT22120263,UT22120265 (POST BORDER)",29362400 +What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC230503,29420000 +What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211039 (POST BORDER),29362700 +What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211039 (POST BORDER),29362700 +What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC230503,29420000 +What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211039 (POST BORDER),29362700 +What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02211812 (POST BORDER),29362400 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02206017 (POST BORDER),29362900 +What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000213269 (POST BORDER),29362900 +What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW92307039 (POST BORDER),21069059 +What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040011 (POST BORDER),29362900 +What is the hs code for DWI-BI (BHN BAKU MAKANAN) COA XW92306388 (POST BORDER),21069059 +What is the hs code for VIT MIN PREMIX FOR TODDLER PORRIDGE (BHN BAKU MAKANAN) COA XW92307205 (POST BORDER),21069059 +What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040011 (POST BORDER),29362900 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02103502 (POST BORDER),29362900 +What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040011 (POST BORDER),29362900 +"What is the hs code for MIN PREMIX FOR TODDLER PORRIDGE (BHN BAKU MAKANAN) COA XW92307203, XW92307204 (POST BORDER)",21069059 +What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040011 (POST BORDER),29362900 +What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12305024 (POST BORDER),29362900 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ30210560 (POST BORDER),29362300 +What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010447,29420000 +What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020023,29420000 +What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001696245,29420000 +"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020023,0923020025",29420000 +What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020025,29420000 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0523060007,29420000 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0523060007,29420000 +What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323020534,29420000 +What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) CAS 50-70-4,38249999 +What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 222035 (POST BORDER),29224900 +What is the hs code for GREYVERSE TM (BHN BAKU KOSMETIK) COA GREYVERSE (POST BORDER),29224900 +What is the hs code for MELANOSTATINE TM 5 BG (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for MINIPORYL TM (BHN BAKU KOSMETIK) CAS,38249999 +"What is the hs code for LIGHT MAGNESIUM CARBONATE POWDER, BP 2023 (BHN BAKU MAKANAN) COA 3133184",28369990 +What is the hs code for PIPERAZINE CITRATE BP ( BHN BAKU OBAT HEWAN ) COA PCT/E/2324/065,29397900 +What is the hs code for MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011702,13021950 +What is the hs code for ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-011373 (POST BORDER),13021990 +"What is the hs code for ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-011713,022073 (POST BORDER)",13021990 +What is the hs code for BIOCTP-500 (BHN BAKU KOSMETIK) COA BOPN-021743 (POST BORDER),13021990 +What is the hs code for GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-052873 (POST BORDER),13021990 +What is the hs code for SODIUM BISULFITE (BHN BAKU KOSMETIK) COA MAK114,28321000 +What is the hs code for SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N4O107,28321000 +What is the hs code for CACTUS EXTRACT (BHN BAKU KOSMETIK) COA CAB-030883 (POST BORDER),13021990 +What is the hs code for HOCOX (BHN BAKU KOSMETIK) COA HOXB-020963 (POST BORDER),13021990 +What is the hs code for TEA TREE EXTRACT (BHN BAKU KOSMETIK) COA MASL-010933 (POST BORDER),13021990 +What is the hs code for BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-092743 (POST BORDER),13021990 +What is the hs code for TURMERIC ROOT EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for BIO-OSLP (BHN BAKU KOSMETIK) COA BOPN-021743 (POST BORDER),13021990 +What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9,38249999 +What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) CAS 68937-54-2,38249999 +What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9,38249999 +What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9,38249999 +What is the hs code for KF-54HV (18KG) (BHN BAKU KOSMETIK) CAS 68083-14-7,38249999 +What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9,38249999 +What is the hs code for KSG-210 (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9,38249999 +What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4,38249999 +What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) CAS 68937-54-2,38249999 +What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) CAS 68937-54-2,38249999 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20230707,17029019 +What is the hs code for MIAMI SCG(S) (BHN BAKU KOSMETIK) COA MWC2301048,34023990 +What is the hs code for MACKAM C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 11382-1,34024990 +"What is the hs code for EDTA 4NA (BHN BAKU KOSMETIK) COA 20221107,20230714 (POST BORDER)",29224900 +"What is the hs code for MAGNESIUM SULFATE DIHYDRATE, POWDER... (BHN BAKU OBAT) COA 3133614 (POST BORDER)",28332100 +What is the hs code for PREDNISOLONE BP2022/USP2022 (BHN BAKU OBAT) COA XPL221002,29372100 +"What is the hs code for DEXAMETHASONE BP2010/USP42 (BHN BAKU OBAT) COA NED230203,NED230204,NED230523",29372200 +What is the hs code for HYDROCORTISONE ACETATE EP7/USP42 (BHN BAKU OBAT) COA NEHAC230613,29372200 +"What is the hs code for FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU OBAT) COA 3131408",28332920 +"What is the hs code for ZINC SULFATE 1-HYDRATE, POWDER,USP43 (BHN BAKU OBAT) COA 3124302",28332920 +"What is the hs code for MAGNESIUM OXIDE, LIGHT, POWDER, ...(BHN BAKU OBAT) COA 3130559-02",25199010 +What is the hs code for GENIVIDA (BHN BAKU SUPPLEMEN) COA A002190223 (POST BORDER),29329900 +What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF (BHN BAKU SUPPLEMEN) COA UE02304021 (POST BORDER),32030010 +What is the hs code for OPTISHARP NAT. ZEA 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA EW23065008 (POST BORDER),32041800 +"What is the hs code for COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPPLEMEN) COA TL02306331 (POST BORDER)",29362700 +What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT FS (BHN BAKU SUPPLEMEN) COA UE02301003,29420000 +"What is the hs code for SODIUM STARCH GLYCOLATE USP (BAHAN BAKU OBAT) COA ASG/07/190723,210723,220723",29420000 +"What is the hs code for CROSCARMELLOSE SODIUM USP-NF (BHN BAKU OBAT) COA ACRMC/07/100723,1207232,1407232 (POST BORDER)",39129090 +"What is the hs code for SODIUM STARCH GLYCOLATE BP (BAHAN BAKU OBAT) COA ASGP/07/230723,240723",29420000 +"What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2210099,UEB2210100 (POST BORDER)",29362300 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT23041243,UT23041244 (POST BORDER)",29362100 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT23040014 (POST BORDER),29362600 +"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30416089,UQ30416090 (POST BORDER)",29362700 +What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL02304968 (POST BORDER),29362700 +What is the hs code for SODIUM ACID PYROPHOSPHATE FOOD GRADE (BHN BAKU MAKANAN) COA 9230802,28353990 +What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK) COA 2307EF3013 (POST BORDER),29224900 +What is the hs code for HYDROSELLA TM (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 230612 (POST BORDER),13021990 +What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 230507 (POST BORDER),13021990 +What is the hs code for IMERCARE (R) VELLUTO (BHN BAKU KOSMETIK) COA L763690,38029090 +What is the hs code for BEE PANDA HONEY (BHN BAKU KOSMETIK) CAS 8028-66-8,38249999 +What is the hs code for LYOPHILIZED ROYAL JELLY POWDER (BHN BAKU KOSMETIK) CAS 8031-67-2,38249999 +What is the hs code for NICARDIPINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA S117A23002,29333990 +What is the hs code for IBUPROFEN 40 MICRONS (BHN BAKU OBAT) COA 4050-5000,29163990 +"What is the hs code for SODIUM ACETATE ANHYDROUS POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3122829",29152910 +What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000082442,29309090 +What is the hs code for THIOCARE (R) H105 83 PCT (BHN BAKU KOSMETIK) COA 0000082443,29309090 +What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000082444,29309090 +What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA 0000082445,29309090 +"What is the hs code for THIOCARE (R) H105 83 PCT (BHN BAKU KOSMETIK) COA 0000082446, SAMPLE NO COMMERCIAL VALUE",29309090 +"What is the hs code for THIOCARE (R) H103 43 PCT (BHN BAKU KOSMETIK) COA 0000082447, SAMPLE NO COMMERCIAL VALUE",29309090 +"What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000082448, SAMPLE NO COMMERCIAL VALUE",29309090 +"What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000082449, SAMPLE NO COMMERCIAL VALUE",29309090 +"What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA 0000082450, SAMPLE NO COMMERCIAL VALUE",29309090 +What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550373,35051010 +What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550394,35051010 +What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550393,35051010 +What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550391,35051010 +What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550401,35051010 +What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550402,35051010 +What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550399,35051010 +What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550398,35051010 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O620011...(BHN BAKU PEWARNA TABLET) COA GA737249,39061090 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751 ...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007...(BHN BAKU PEWARNA TABLET) COA GA737252,39061090 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G63147...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B28796...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 02F52182...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K580000...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7,38249999 +What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA737318,39061090 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650018...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650023...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650032...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30112044 (POST BORDER),29362200 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT22090039 (POST BORDER),29362900 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT22090039 (POST BORDER),29362900 +"What is the hs code for ANTIOXIDANT PREMIX FOR GUMMY (BHN BAKU MAKANAN) COA XW92307317,XW92307318 (POST BORDER)",21069059 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02303660 (POST BORDER),29362400 +What is the hs code for VIT PREMIX FOR CHEESE BLOCK CHEDDAR (BHN BAKU MAKANAN) COA XW92307174 (POST BORDER),21069059 +"What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW92307170,XW92307171 (POST BORDER)",21069059 +"What is the hs code for PX 103070 - C3 (BHN BAKU MAKANAN) COA XW92307172,XW92307173 (POST BORDER)",21069059 +What is the hs code for PREMIX ADE (BHN BAKU MAKANAN) COA XW92307319 (POST BORDER),21069059 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230302 (POST BORDER),29362500 +"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010449,0823010450",29420000 +What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010448,29420000 +"What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010448,0823010449",29420000 +What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010449,29420000 +What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010449,29420000 +What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010449,29420000 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT23030032 (POST BORDER),29362800 +What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0041495 (POST BORDER),29362500 +What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02304060 (POST BORDER),29362700 +What is the hs code for CAROCARE NAT. BC 20PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA EW23042006 (POST BORDER),32041800 +What is the hs code for SODIUM ASCORBATE PH (BHN BAKU SUPPLEMEN) COA TL02303687 (POST BORDER),29362700 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP22523 (POST BORDER),28363000 +"What is the hs code for MICRO CRYSTALLINE CELLULOSE USP, ACCEL 102 (BHN BAKU SUPPLEMEN) COA D108230674",39129090 +"What is the hs code for MICRO CRYSTALLINE CELLULOSE USP, ACCEL 102 (BHN BAKU SUPPLEMEN) COA D108230675",39129090 +What is the hs code for VITAMIN E (BHN BAKU KOSMETIK) COA 201202306201 (POST BORDER),29362800 +"What is the hs code for CHOLINE L-BITARTRATE (BAHAN BAKU OBAT) COA 3027697,3027698 (POST BORDER)",29231000 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB23040706,29362100 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB23040706,29362100 +What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20230302,29362800 +What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20230302,29362800 +What is the hs code for GRANISETRON HCL EP (BHN BAKU OBAT) COA GRH/123004,29397900 +What is the hs code for VC CALCIUM ASCORBATE DC (BHN BAKU SUPPLEMEN) COA HPT2303001 (POST BORDER),29362700 +What is the hs code for L-LYSINE HCL (BHN BAKU OBAT) COA 2312270827 (POST BORDER),29224100 +What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA G02831UG,29053200 +What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB050623,39123900 +What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B070523,39123900 +What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B070523,39123900 +What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB050623,39123900 +What is the hs code for LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LC300523,39123900 +What is the hs code for HYUNDAI BIOLAND BIO-FRGE PLUS (BHN BAKU KOSMETIK) COA CFRK-010223 (POST BORDER),13021990 +What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012423 (POST BORDER),13021990 +What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-020883 (POST BORDER),13021990 +What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1230809,39139090 +What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK)COA CHP1230809,39139090 +What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012333 (POST BORDER),13021990 +What is the hs code for HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-052873 (POST BORDER),13021990 +What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-100983,39139090 +What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA MAK114,28321000 +What is the hs code for HYUNDAI BIOLAND TEA TREE EXTRACT (BHN BAKU KOSMETIK) COA MASL-021553 (POST BORDER),13021990 +What is the hs code for PROTIBOND TG-AK (BHN BAKU MAKANAN) COA AK23080906 (POST BORDER),21069091 +What is the hs code for PROTIBOND TG-GW (BHN BAKU MAKANAN) COA GW23071303 (POST BORDER),21069091 +What is the hs code for VITAMIN PREMIX MILK POWDER FOR ADULTS (BHN BAKU MAKANAN) COA XW92307206 (POST BORDER),21069059 +"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00821682,VE00821684,VE00825823",29420000 +What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040069,29420000 +What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040069,29420000 +What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040069,29420000 +What is the hs code for PARSOL ZX (BHN BAKU KOSMETIK) COA 200206012,29420000 +What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000213857 (POST BORDER),29362900 +What is the hs code for AQUACERAMIDE-RC (BHN BAKU KOSMETIK) COA 231003 (POST BORDER),33019090 +What is the hs code for BIO-PGA SOLUTION HB (BHN BAKU KOSMETIK) COA 230913 (POST BORDER),39139090 +What is the hs code for CHRONO CHARDY (BHN BAKU KOSMETIK) COA 230665 (POST BORDER),13021990 +What is the hs code for CLAIR BLANCHE-III (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 231297 (POST BORDER),29329900 +What is the hs code for KOMENUKA LIQUID BK (BHN BAKU KOSMETIK) COA 230709 (POST BORDER),13021990 +What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 231079 (POST BORDER),13021990 +What is the hs code for YUZU CERAMIDE B (BHN BAKU KOSMETIK) COA 230782 (POST BORDER),13021990 +What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 231297 (POST BORDER),29329900 +What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 230386 (POST BORDER),13021990 +What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 231297 (POST BORDER),29329900 +What is the hs code for YUZU CERAMIDE B (BHN BAKU KOSMETIK) COA 230782 (POST BORDER),13021990 +What is the hs code for BIO-PGA SOLUTION HB (BHN BAKU KOSMETIK) COA 230913 (POST BORDER),39139090 +What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 230743 (POST BORDER),13021990 +What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG230602 (POST BORDER),29362700 +What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9,38249999 +What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4,38249999 +What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9,38249999 +What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6,38249999 +What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9,38249999 +What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6,38249999 +What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9,38249999 +What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) CAS 68937-54-2,38249999 +What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4,38249999 +What is the hs code for KSG-210 (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9,38249999 +What is the hs code for KF-54HV (18KG) (BHN BAKU KOSMETIK) CAS 68083-14-7,38249999 +What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9,38249999 +What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4,38249999 +What is the hs code for TRANSCUTOL P (BHN BAKU SUPPLEMEN) COA 195100,28399000 +What is the hs code for TEFOSE 63 (BHN BAKU SUPPLEMEN) COA 195196,28399000 +What is the hs code for TEFOSE 63 (BHN BAKU SUPPLEMEN) COA 195877,28399000 +What is the hs code for GELUCIRE 48/16 PELLETS (BHN BAKU SUPPLEMEN) COA 185000,28399000 +What is the hs code for RIVAROXABAN EP (BHN BAKU OBAT) COA BAN600123,29349990 +"What is the hs code for OMEPRAZOLE PELLETS 8,5PCT W/W (BHN BAKU OBAT) COA",30039000 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007...(BHN BAKU PEWARNA TABLET) COA GA738809,39061090 +What is the hs code for OPASPRAY (R) OPAQUE COLOR CONCENTRATE FOR FILM...(BHN BAKU PEWARNA TABLET) COA DT745737,32151990 +What is the hs code for OPAGLOS (R) TABLET CORE SEALANT PRODUCT OPAGLOS... (BHN BAKU PEWARNA TABLET) COA DT748608,32151990 +What is the hs code for EDTA 4NA (BHN BAKU KOSMETIK) COA 20230714,29224900 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230802,13021990 +What is the hs code for THIN AND DULL HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230802,13021990 +What is the hs code for ZORYALYS (BHN BAKU KOSMETIK) CAS 73398-61-5,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +"What is the hs code for SODIUM STARCH GLYCOLATE USP (BAHAN BAKU OBAT) COA ASG/07/230723,250723,220723",29420000 +"What is the hs code for CROSCARMELLOSE SODIUM USP-NF (BHN BAKU OBAT) COA ACRMC/07/160723,170723,200723",39129090 +"What is the hs code for SODIUM STARCH GLYCOLATE BP (BAHAN BAKU OBAT) COA ASGP/07/260723,240723",29420000 +"What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-2200823,2220823",29334910 +What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-230807 (POST BORDER),29061300 +"What is the hs code for COPPER SULFATE, POWDER, PH.EUR.11.ED. (BHN BAKU SUPPLEMEN) COA 3131021",28332500 +What is the hs code for NYSTATIN POWDER ROW GRADE (BHN BAKU OBAT) COA C114761,29419000 +What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100MESH (BHN BAKU SUPLEMEN) COA 6AX2308033,29181400 +What is the hs code for CALCIUM PROPIONATE 20 KG (BHN BAKU PAKAN TERNAK) COA 23080065 S/D 23080303,29155000 +What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBNG230224,29221990 +What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464161453,39123900 +What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464259779,39123900 +What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464288266,39123900 +What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464259779,39123900 +What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464207191,39123900 +What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464207196,39123900 +What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464207191,39123900 +What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA LC024-23-801,17021100 +What is the hs code for CYPROHEPTADINE HCL BP/PH. EUR. (BHN BAKU OBAT) COA CYP/05231009,29333990 +What is the hs code for ESOMEPRAZOLE SODIUM STERILE (BHN BAKU OBAT) COA SI/EPZ/00130723,29333990 +What is the hs code for NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 23LNC0430SQ397,27101990 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) CAS 37350-42-8,38249999 +What is the hs code for PRO-LIPO TM NEO (BHN BAKU KOSMETIK) CAS 504-63-2,38249999 +What is the hs code for SILIGEL TM (BHN BAKU KOSMETIK) CAS 11138-66-2,38249999 +What is the hs code for ECOGEL TM (BHN BAKU KOSMETIK) CAS 85711-58-6,38249999 +What is the hs code for SENTRY POLYOX WSR 1105 LEO...(BHN BAKU PEWARNA TABLET) COA 2744291066,39123900 +What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000213857,29362900 +"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000213858, 0000213859",29362900 +"What is the hs code for CALCIUM CARBONATE, HEAVY, POWDER... (BHN BAKU SUPPLEMEN) COA 3104884",25174100 +What is the hs code for VC ASCORBIC ACID DC 97PCT (BHN BAKU SUPPLEMEN) COA HPG2302013 (POST BORDER),29362700 +What is the hs code for GUAIFENESIN USP (B. BAKU OBAT) COA GGE-2305055 S/D GGE-2308068,29094900 +"What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 15330823,15630823,15650823,15670823,15680823,15700823",29359000 +"What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 15310823,15620823,15640823,15660823",29359000 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM ...(BHN BAKU PEWARNA TABLET) COA GA738162,39061090 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING..(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B84893...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K580000..(BHN BAKU PEWARNA TABLET)CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B28796...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING..(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) EZ EASY SWALLOW EZ EASY SWALLOW..(BHN BAKU PEWARNA TABLET) CAS 9050-36-6,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02305047 (POST BORDER),32041800 +"What is the hs code for 1,3-BUTYLENE GLYCOL, COSMETIC QUALITY(BHN BAKU KOSMETIK) COA P0623626CC",29053200 +What is the hs code for DEXTROSE ANHYDROUS (BHN BAKU OBAT UTK PAKAN TERNAK) COA XWA230808,17023010 +"What is the hs code for CLOTRIMAZOLE MICRONIZED (BHN BAKU OBAT ) COA 202306090013,202306140054",29332900 +What is the hs code for CLAIR BLANCHE-III (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 230849 (POST BORDER),13021990 +"What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 222677, 230975 (POST BORDER)",13021990 +What is the hs code for PEACH LEAF LIQUID B (BHN BAKU KOSMETIK) COA 231435 (POST BORDER),13021990 +What is the hs code for CHRONO CHARDY (BHN BAKU KOSMETIK) COA 230665 (POST BORDER),13021990 +What is the hs code for AMITOSE R (BHN BAKU KOSMETIK) COA LFD (POST BORDER),13021990 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7,38249999 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0,38249999 +What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) CAS 638164-47-3,38249999 +"What is the hs code for MACKAM C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 11382-1,10302-1",34024990 +"What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052326,G05052331",47063000 +"What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052326,G05052331",47063000 +What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23B0068300 (POST BORDER),13021990 +What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23B0046900 (POST BORDER),13021990 +"What is the hs code for DRIED ALUMINUM HYDROXIDE GEL USP (BHN BAKU OBAT) COA 102358002,102358003",28183000 +"What is the hs code for OMEPRAZOLE PELLETS -8,5PCT (BHN BAKU OBAT) COA OP8.5/121604923",30039000 +What is the hs code for MC-GLUCAN (BHN BAKU KOSMETIK) COA MCGL230807,39139090 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for COMPLEX TIRED LEGS (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230802,13021990 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for SENSIDIN PURE CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9,38249999 +What is the hs code for SENSIDIN PURE CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9,38249999 +What is the hs code for METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT LYOPHIZED (BHN BAKU OBAT) COA ND1670,29372900 +What is the hs code for ETORIXOCIB (BHN BAKU OBAT) COA ETC-PM/23001,29333990 +"What is the hs code for MANNITOL USP/EP (BHN BAKU OBAT) COA 122303007,122303235",29054300 +What is the hs code for VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 122302553,28365010 +What is the hs code for PHARMABURST (R) C1 (BHN BAKU OBAT) COA 122302946,21069099 +What is the hs code for PHARMABURST (R) 500 (BHN BAKU OBAT) COA 122302870,21069099 +What is the hs code for MAGNESIUM HYDROXIDE USP BARCROFT TM 5300 (BHN BAKU OBAT) COA 102369009,28161000 +"What is the hs code for DRIED ALUMINUM HYDROXIDE, SORBITOL BLEND BARCROFT TM 0501 (BHN BAKU OBAT) COA 102360002",28183000 +What is the hs code for ALUMINUM HYDROXIDE GEL USP BARCROFT TM LV13(BHN BAKU OBAT) COA 102313051,28183000 +What is the hs code for SUPPOCIRE A PELLETS (BHN BAKU SUPPLEMEN) COA 22E0702,28399000 +What is the hs code for SUPPOCIRE A PELLETS (BHN BAKU SUPPLEMEN) COA 22E2003,28399000 +What is the hs code for SUPPOCIRE BM PELLETS (BHN BAKU SUPPLEMEN) COA 21E2708,28399000 +What is the hs code for SUPPOCIRE BM PELLETS (BHN BAKU SUPPLEMEN) COA 23E2304,28399000 +What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU SUPPLEMEN) COA 23E2210,28399000 +What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ30617014,29420000 +What is the hs code for VITAMIN B12 CRYST FOOD GRADE (BHN BAKU KOSMETIK) COA 012303107,29362600 +What is the hs code for SYN(R)-AKE (BHN BAKU KOSMETIK) COA UE02303002,29420000 +What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) CAS 7631-86-9,38249999 +What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3168376,38210090 +What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3168382,38210090 +What is the hs code for BOTTLE TETRATHIONATE BR BASE HAJNA 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3158214,38210090 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3030339,38210090 +What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2066423,38210090 +What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2313348,38210090 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)COA 3096242,38210090 +What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3039541,38210090 +"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2339387,2339390",38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3096482,38210090 +"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 3096196",38210090 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2236789,38210090 +What is the hs code for BOTTLE XLD AGAR 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2143794,38210090 +What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2269093,38210090 +What is the hs code for BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2297791,38210090 +"What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2305095",38210090 +What is the hs code for BOTTLE CHROMAGAR CANDIDA 500GM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2325559,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 4 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2313875,38210090 +What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2088727,38210090 +What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2217638,38210090 +"What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3107977,3107986",38210090 +What is the hs code for BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2298727,38210090 +What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 2291792,38210090 +What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3072748,38210090 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT23040025,29362600 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT23060012,29362900 +What is the hs code for B-CAROTENE 1PCT CWS/M (BHN BAKU MAKANAN) COA UT23020002,32041800 +What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02304060,29362700 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT23040010,32030010 +"What is the hs code for VITAMIN A WATER-MISCIBLE, TYPE 100 (BHN BAKU SUPPLEMEN) COA UT23070067",29362100 +What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02307644,29362700 +"What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02306444, TL02307644",29362700 +What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) CAS 68937-54-2,38249999 +What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9,38249999 +What is the hs code for KP-578 (16KG) (BHN BAKU KOSMETIK) CAS 1802167-80-1,38249999 +What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6,38249999 +What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9,38249999 +What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9,38249999 +What is the hs code for KF-7312K (18KG) (BHN BAKU KOSMETIK) CAS 56275-01-5,38249999 +What is the hs code for KF-54HV (18KG) (BHN BAKU KOSMETIK) CAS 68083-14-7,38249999 +What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2444314878,39123900 +What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180LCP002,39123900 +What is the hs code for ETHOCEL STANDARD 20 PREMIUM...(BHN BAKU PEWARNA TABLET) COA D184L9F021,39123900 +What is the hs code for ETHOCEL STANDARD 20 PREMIUM...(BHN BAKU PEWARNA TABLET) COA D184L57021,39123900 +What is the hs code for METHOCEL E4M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464213628,39123900 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101852623,17021100 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT22090039 (POST BORDER),29362900 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ30112044 (POST BORDER),29362200 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ30112045 (POST BORDER),29362200 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ30112045 (POST BORDER),29362200 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ30112045 (POST BORDER),29362200 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12305024 (POST BORDER),29362900 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT23030096 (POST BORDER),29362400 +What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02206017 (POST BORDER),29362900 +What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22120267 (POST BORDER),29362400 +"What is the hs code for MINERAL PREMIX MILK POWDER FOR ADULTS V2 (BHN BAKU MAKANAN) COA XW92307199,XW.... (POST BORDER)",21069059 +What is the hs code for VITAMIN B12 0.1 PCT WS (BHN BAKU SUPPLEMEN) COA UT23020003 (POST BORDER),29362600 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202012 (POST BORDER),29362900 +What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02301212 (POST BORDER),29362700 +What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22120267 (POST BORDER),29362400 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202012 (POST BORDER),29362900 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3138445,38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3138445,38210090 +What is the hs code for VIAL ISOVITALEX ENRICHMENT 10ML 5 EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3191540,38210090 +What is the hs code for VIAL SAL O ANTISERUM POLY B LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1245637,38210090 +"What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2363671",38210090 +What is the hs code for BOTTLE B12 INOCULUM BROTH 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3074932,38210090 +"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 3191081",38210090 +What is the hs code for VIAL ISOVITALEX ENRICHMENT 10ML 5 EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3191540,38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3138445,38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1344136,38210090 +"What is the hs code for BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 3131935",38210090 +What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3171742,38210090 +What is the hs code for HU TNF CBA FLEX SET D9 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2266983,38210090 +What is the hs code for HU IL-1BTA CBA FLEX SET B4 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3160249,38210090 +What is the hs code for HU VEGF CBA FLEX SET B8 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3054677,38210090 +What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3171742,38210090 +What is the hs code for BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3067796,38210090 +What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3110438,38210090 +What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3110438,38210090 +What is the hs code for BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3067796,38210090 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51469...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007.. (BHN BAKU PEWARNA TABLET) COA GA738937,39061090 +What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001...(BHN BAKU PEWARNA TABLET)CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650023...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA738989,39061090 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G52990...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G65197...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 02F52182...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F48105...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 151-21-3,38249999 +What is the hs code for NAI-WHITE A (BHN BAKU KOSMETIK) COA 2307C10103,32061110 +What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 23290044,30039000 +What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT FS (BHN BAKU SUPPLEMEN) COA UE02301001,29420000 +What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) CAS 1119-97-7,38249999 +What is the hs code for RANITIDINE HYDROCHLORIDE USP (DC GRADE) (BHN BAKU OBAT) COA RH6050823,29321900 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING..(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019..(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-30-18037..(BHN BAKU PEWARNA TABLET) CAS 64044-51-5,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-19025-A..(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20230829,17029019 +What is the hs code for LAKE PIGMENT (R) 6010 D&C ...(BHN BAKU PEWARNA TABLET) COA WP864274:BC1443,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5396...(BHN BAKU PEWARNA TABLET) COA WP864274:BC14,32151990 +What is the hs code for LAKE PIGMENT (R) 6010 D&C ...(BHN BAKU PEWARNA TABLET) COA WP870801:BC5567,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5396...(BHN BAKU PEWARNA TABLET) COA WP860976:1,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5627 FD&C...(BHN BAKU PEWARNA TABLET) COA WP863100:BC2860,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5517 FD&C...(BHN BAKU PEWARNA TABLET) COA WP866727:BC4487,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5406 FD&C...(BHN BAKU PEWARNA TABLET) COA WP866896:BC2990,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5517 FD&C...(BHN BAKU PEWARNA TABLET) COA WP865812:BC2276,32151990 +What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWDER... (B.BAKU KOSMETIK) CAS 65497-29-2,38249999 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT22090040 (POST BORDER),29362900 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230502 (POST BORDER),29362500 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230502 (POST BORDER),29362500 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12305024 (POST BORDER),29362900 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230502 (POST BORDER),29362500 +"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020025,0923020035",29420000 +What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040069,29420000 +What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040069,29420000 +What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02211812 (POST BORDER),29362400 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22120378 (POST BORDER),29362800 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02206017 (POST BORDER),29362900 +What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211039 (POST BORDER),29362700 +"What is the hs code for OPACODE S-1-290000 CLEAR (BHN BAKU PEWARNA TABLET) COA TKL69417,SAMPLE NO COMMERCIAL VALUE",32151990 +What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) CAS 7631-86-9,38249999 +What is the hs code for PRAVASTATIN SODIUM (BHN BAKU OBAT) COA PV202210109,29181900 +What is the hs code for LINCOMYCIN HYDROCHLORIDE (BHN BAKU OBAT) COA 2305007,29419000 +What is the hs code for VITAMIN A PALMITATE 1.7M IU/G (BHN BAKU KOSMETIK) COA 0423060013,29362100 +"What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-012023,AACN-020193",29224900 +What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-022073,13021990 +What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1230831,39139090 +What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-020493,13021950 +What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N94107,28321000 +What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5,38249999 +What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5,38249999 +What is the hs code for HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-011373,13021990 +What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N7L103,28321000 +What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-020193,29224900 +What is the hs code for HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-011373,13021990 +What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-022073,13021990 +What is the hs code for HYUNDAI BIOLAND CUCURBITA EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012423,13021990 +"What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-020963,040593",13021990 +What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-020493,13021950 +What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-131993,39139090 +What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N94107,28321000 +What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-040493,13021950 +What is the hs code for BISOPROLOL FUMARATE USP (BHN BAKU OBAT) COA LT-OBFA/003/22-23,29221990 +What is the hs code for GREEN TEA DRY DEC.EX ./PHOSPHOL (BHN BAKU SUPLEMEN) COA 23S0183400,13021990 +What is the hs code for P. GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPPLEMEN) COA 21S0265500,13021990 +What is the hs code for P. GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPPLEMEN) COA 23S0178700,13021990 +What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP22323 (POST BORDER),28363000 +What is the hs code for BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP21923 (POST BORDER),28363000 +"What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP11423,SAMPLE (POST BORDER)",28363000 +What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP25223 (POST BORDER),28363000 +What is the hs code for ESOMEPRAZOLE SODIUM STERILE (BHN BAKU OBAT) COA SI/EPZ/00160923,29333990 +"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30616137,UQ30616138,UQ30616143,UQ30616144",29362700 +What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02306333,29362700 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPPLEMEN) COA UT22120044,32041800 +"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22040044,UT22040045",29362100 +"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02305047,UE02305048",32041800 +"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30616138,UQ30616139",29362700 +"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30616131,UQ30616132,UQ30616144",29362700 +"What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30616129,UQ30616131",29362700 +What is the hs code for NABUMETON USP (BHN BAKU OBAT) COA H-1130623,29145000 +What is the hs code for LIFE'SDHA(TM) S35-O300 (BHN BAKU SUPPLEMEN) COA VY00519402,29362500 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP25723,28363000 +What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2311108,38210090 +What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2201322,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2528862,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3114524,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3114524,38210090 +What is the hs code for DIFCO BEEF EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2084515,38210090 +What is the hs code for BACTO PROTEOSE PEPTONE NO.3 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1088610,38210090 +What is the hs code for BACTO PROTEOSE PEPTONE NO.3 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1088610,38210090 +What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2308027,38210090 +What is the hs code for DIFCO TRYPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2208158,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3114524,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3114524,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3114524,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3114540,38210090 +What is the hs code for BACTO CASAMINO ACIDS EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2208138,38210090 +What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 231090,13021990 +What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 231331,13021990 +What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 230386,13021990 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 231297,29329900 +What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 230975,13021990 +What is the hs code for COMFREY LIQUID B (BHN BAKU KOSMETIK) COA 230823,13021990 +What is the hs code for PRAYPHOS DKP FG 25K BG (BHN BAKU KOSMETIK) COA 2301731,28352400 +What is the hs code for PRAYPHOS MKP FG 25K BG (BHN BAKU KOSMETIK) COA 23-048-01,29420000 +"What is the hs code for OPAGLOS 6000 WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET) COA DT739887,SAMPLE NO COMMERCIAL VALUE",32151990 +What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010454,29420000 +What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020035,29420000 +What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF23003008,29420000 +What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02211812,29362400 +"What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES2210804,ES2212812",29420000 +What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92307450 S/D XW92307452,21069059 +What is the hs code for PURILEX POWDER (BHN BAKU OBAT) COA B424984,29419000 +What is the hs code for PURILEX COMPACTED (BHN BAKU OBAT) COA B428639,29419000 +What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA ND2275M,29372200 +What is the hs code for ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2302281,32030010 +What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA LC 026-23-801,17021100 +What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA LC 026-23-801,17021100 +"What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 23100475,23100476",29395900 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-230501,13021990 +What is the hs code for INCA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK) CAS 68956-68-3,38249999 +What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) CAS 8001-25-0,38249999 +What is the hs code for SEABUCKTHORN HYDROGLYCOLIC EXTRACT(BHN BAKU KOSMETIK) COA HIR230501-B,13021990 +What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for VIT-MIN PREMIX MILK POWDER FOR PEDIATRIC (BHN BAKU MAKANAN) COA XW92308122,21069059 +What is the hs code for MINERAL PREMIX MILK POWDER FOR PEDIATRIC (BHN BAKU MAKANAN) COA XW92308121,21069059 +What is the hs code for VIT MIN PRX TABURIN TYPE ENKAPSULASI (BHN BAKU SUPPLEMEN) COA MY62309087,21069059 +What is the hs code for ZINCIDONE 25KG (BHN BAKU KOSMETIK) CAS 15454-75-8,38249999 +"What is the hs code for COPPER SULFATE, POWDER, PH.EUR.11.ED. (BHN BAKU SUPLEMEN) COA 3131021",28332500 +What is the hs code for KF-6017 (17KG) (J) (BHN BAKU KOSMETIK) CAS 68937-54-2,38249999 +What is the hs code for KF-6017 (17KG) (J) (BHN BAKU KOSMETIK) CAS 68937-54-2,38249999 +What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4,38249999 +What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9,38249999 +What is the hs code for KSG-210 (16KG) (BHN BAKU KOSMETIK) CAS KSG-210 (16KG),38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O66912...(BHN BAKU PEWARNA TABLET) COA GA739804,39061090 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18509...(BHN BAKU PEWARNA TABLET) COA GA739769,39061090 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G63147...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58923...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-19025-A...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM GA739772...(BHN BAKU PEWARNA TABLET)CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 151-21-3,38249999 +What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2304161921,29372900 +What is the hs code for FLOWLAC (R) 100 (BHN BAKU OBAT) COA L101502823,17021100 +What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104313423,17021100 +What is the hs code for CELLACTOSE (R) 80 (BHN BAKU OBAT) COA L100463223,17021100 +What is the hs code for MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103152023,17021100 +What is the hs code for PIROXICAM MICRONIZED (BHN BAKU OBAT) COA PRX2023007M,29349990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0012000,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0012100,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0020900,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0055600,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0055700,13021990 +"What is the hs code for FERROUS SULFATE 7-HYDRATE, CRYST.,... (BHN BAKU MAKANAN) COA 3137170",28332920 +What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000214491,29362900 +What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 230802,13021990 +What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 230507,13021990 +What is the hs code for FLOWER ACIDS (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for REFINED COCONUT OIL - L (BHN BAKU KOSMETIK) COA 0002712094,15131990 +What is the hs code for BROMHEXINE HYDROCHLORIDE EP (BHN BAKU OBAT) COA ORX/BRH/2305057,29215900 +"What is the hs code for CAFFEINE BP/EP/USP (BHN BAKU OBAT) COA 23081511,23081514,23081520,23081530,23081538,23081542",29393000 +What is the hs code for CELLACTOSE (R) 80 (BHN BAKU OBAT) COA L100463223,17021100 +What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 2308029T,39100020 +What is the hs code for ASCORBIC ACID 90PCT GRANULATION (BHN BAKU SUPPLEMEN) COA WB22119066,29362700 +"What is the hs code for VIT MIN PRX TABURIN TYPE ENKAPSULASI (BHN BAKU SUPPLEMEN) COA MY62309088,MY62309089",21069059 +What is the hs code for MEG-3 30 N-3 INF OIL (BHN BAKU SUPPLEMEN) COA TS00022446,29362500 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B28796..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B640047...(BHN BAKU PEWARNA TABLET)CAS 9004-65-3,38249999 +What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA 8MT2308142,30032000 +"What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP27223,MTP03023",28363000 +"What is the hs code for OMEPRAZOLE PELLETS 8.5PCT W/W ( BHN BAKU OBAT) COA OP-07270923,07280923,07290923",30039000 +What is the hs code for SODIUM STARCH GLYCOLATE USP (BAHAN BAKU OBAT) COA JCBA0003 S/D JCBA0006,29420000 +"What is the hs code for CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA JCDA0005,JCDA0006",39123100 +What is the hs code for ABYSSINE (TM) PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for DEFENSCALP TM PF (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for EXO-P TM (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for LANACHRYS 2B PF (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for LYSOFIX TM LIQUID (BHN BAKU KOSMETIK) COA 222079,13021990 +What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for PROGELINE TM (BHN BAKU KOSMETIK) COA 222048,29224900 +What is the hs code for STARTAB (R) DIRECTLY COMPRESSIBLE STARCH 4001 (BHN BAKU PEWARNA TABLET) COA WP873593,35051010 +What is the hs code for NOSCAPINE PH.EUR (BHN BAKU OBAT) COA NOS23009,29391900 +What is the hs code for PEARL ESSENCES 35178MJ (BHN BAKU KOSMETIK) COA D3350256,32061910 +What is the hs code for PIGMENT BLEND (R) PB-21158 (BHN BAKU PEWARNA TABLET) COA GA741045,32151990 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET)CAS 57-50-1,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G62544...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G52990...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B54445...(BHN BAKU PEWARNA TABLET)CAS 9004-65-3,38249999 +What is the hs code for NYSTATIN POWDER ROW GRADE (BHN BAKU OBAT) COA C114759,29419000 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT23020003,29362600 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT23030172,29362900 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT23020046,29362800 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT23030172,29362900 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30112045,29362200 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT23020003,29362600 +What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02305056,29362400 +"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT23020046,UT23020059",29362800 +What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000214335,29362900 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ30210563,29362300 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT23010005,32041800 +"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23030084,UT23040116",29362800 +What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211039,29362700 +"What is the hs code for MACKAM C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 10302-1,11383-1",34024990 +What is the hs code for SENTRY POLYOX WSR 303 LEO NF... (BHN BAKU PEWARNA TABLET) COA 2534501244,39123900 +What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) CAS 8002-43-5,38249999 +What is the hs code for PRO-LIPO TM NEO (BHN BAKU KOSMETIK) CAS 504-63-2,38249999 +What is the hs code for WASTAR TM LAVENDER (BHN BAKU KOSMETIK) CAS 90063-37-9,38249999 +What is the hs code for WASTAR TM PINK BERRY (BHN BAKU KOSMETIK) CAS 9050-36-6,38249999 +What is the hs code for SILIGEL TM (BHN BAKU KOSMETIK) CAS 11138-66-2,38249999 +What is the hs code for ROSALITY TM (BHN BAKU KOSMETIK) CAS 5343-92-0,38249999 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) CAS 37350-42-8,38249999 +What is the hs code for VC ASCORBIC ACID DC 97PCT (BHN BAKU SUPPLEMEN) COA HPG2302013,29362700 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT23041248,UT23051249",29362100 +What is the hs code for MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50529,29061100 +What is the hs code for DIACEREIN EP (BHN BAKU OBAT) COA DCE/40140623,29189900 +What is the hs code for ATORVASTATIN CALCIUM (BHN BAKU OBAT) COA M114312,29339990 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT23050162,29362800 +What is the hs code for VIUSID VET 1 KG (PAKAN IKAN BERBENTUK BUBUK) COA A-1,23099090 +What is the hs code for VIUSID VET 1 KG (PAKAN IKAN BERBENTUK BUBUK) COA A-2,23099090 +What is the hs code for ETHOCEL STANDARD 14 PREMIUM... (BHN BAKU PEWARNA TABLET) COA 2534248998,39123900 +What is the hs code for ETHOCEL STANDARD 10 FP... (BHN BAKU PEWARNA TABLET) COA D184MAV010,39123900 +What is the hs code for DULSE PHYTELENE EG 745 (BHN BAKU KOSMETIK) COA EG745-221102-GS-B,13021990 +What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-230501,13021990 +What is the hs code for INCA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK) CAS 68956-68-3,38249999 +What is the hs code for ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (SB) (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO230804,13021990 +What is the hs code for GREENSIL (BHN BAKU KOSMETIK) CAS 91771-32-3,38249999 +What is the hs code for COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) COA ANTS230503,13021990 +What is the hs code for HYUNDAI BIOLAND BIO-BLACK PEARL POWDER (BHN BAKU KOSMETIK) CAS -,38249999 +What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-020883,13021990 +What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1231006,39139090 +What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1231006,39139090 +What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012333,13021990 +What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012333,13021990 +What is the hs code for HYUNDAI BIOLAND PF CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSSBD-011143,13021950 +What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N7L103,28321000 +What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-020883,13021990 +What is the hs code for HYUNDAI BIOLAND CACTUS EXTRACT (BHN BAKU KOSMETIK) COA CAB-030883,13021990 +What is the hs code for HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-012773,13021990 +What is the hs code for HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-600403,13021990 +What is the hs code for HYUNDAI BIOLAND NEWAPLE (BHN BAKU KOSMETIK) COA NWPB-022093,13021990 +What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-050503,13021990 +What is the hs code for KANEKA Q10 UBIDECARENONE 5KG JP (BHN BAKU KOSMETIK) COA FA01-4737,29146200 +What is the hs code for AMITOSE R (BHN BAKU KOSMETIK) COA LHE,13021990 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7,38249999 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7,38249999 +What is the hs code for PROMOIS SILK-1000 (BHN BAKU KOSMETIK) CAS 96690-41-4,38249999 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0,38249999 +"What is the hs code for SUNBELLIN (BHN BAKU KOSMETIK) COA F210-2305034,F210-2305035",29339990 +What is the hs code for ADENOSINE(L) (BHN BAKU KOSMETIK) COA C01202304006L,29349990 +What is the hs code for MOPD (BHN BAKU KOSMETIK) COA 230815001,29242990 +What is the hs code for GF-B331 (BHN BAKU KOSMETIK) COA 20230905003,35051090 +What is the hs code for DOWSIL 9041 SIL ELAST BLEND (BHN BAKU KOSMETIK) COA H052N46065,39100020 +What is the hs code for SUGLETS (R) SUGAR SPHERES PF006... (BHN BAKU PEWARNA TABLET) COA ST519851,32151990 +What is the hs code for CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) COA 307041,21012020 +What is the hs code for FEBUXOSTAT FORM A (BHN BAKU OBAT) COA C025(T)-22306002,29341000 +"What is the hs code for FEBUXOSTAT (WORKING STANDARD) (BHN BAKU OBAT) COA C025(T)-22306002, SAMPLE NO COMMERCIAL...",29341000 +What is the hs code for ESCITALOPRAM OXALATE (BHN BAKU OBAT) COA 5708-22-003,29329900 +What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3094598,38210090 +What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3173770,38210090 +What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3079291,38210090 +What is the hs code for BOTTLE HEMOGLOBIN FREEZE DIED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3173780,38210090 +What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2291792,38210090 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3212006,38210090 +What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3219531,38210090 +What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2208223,38210090 +What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 230095700,38210090 +"What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2215995,2305239",38210090 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2270946,38210090 +What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3158193,38210090 +What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2297695,38210090 +What is the hs code for BOTTLE MALT EXTRACT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2277807,38210090 +What is the hs code for BOTTLE MR-VP BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3045918,38210090 +What is the hs code for BOTTLE MOTILITY TEST MEDIUM BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2298713,38210090 +What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2263336,38210090 +What is the hs code for BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2343459,38210090 +What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2269108,38210090 +What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2334621,38210090 +What is the hs code for BOTTLE AGAR NOBLE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2213711,38210090 +What is the hs code for BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1273033,38210090 +"What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2165877",38210090 +What is the hs code for BOTTLE RAPPAPORT VASSILIADIS MSRV 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3107304,38210090 +What is the hs code for BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3114621,38210090 +What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2088727,38210090 +What is the hs code for BOTTLE MICRO ASSAY CULTURE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3158196,38210090 +What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2217600,38210090 +What is the hs code for BOTTLE BRAIN HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3168382,38210090 +"What is the hs code for BOTTLE BORDET GENGOU AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2137558",38210090 +What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3040515,38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3004799,38210090 +What is the hs code for BOTTLE YEAST MOLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2264582,38210090 +"What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2117655",38210090 +What is the hs code for BOTTLE MACCONKEY SORBITOL AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2263334,38210090 +What is the hs code for BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2269098,38210090 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB23070721 S/D WB23070723,29362100 +What is the hs code for NOSCAPINE PH.EUR (BHN BAKU OBAT) COA NOS23006,29391900 +What is the hs code for LIPOID PPL-600 (BHN BAKU SUPPLEMEN) COA 577200-2230236,29232011 +What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA G11031UG,29053200 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT23030172,29362900 +"What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT23030172,XH20230503",29362800 +What is the hs code for VITAMIN PREMIX MILK POWDER FOR ADULTS (BHN BAKU MAKANAN) COA XW92309093,21069059 +"What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92308233,XW92308234",21069059 +"What is the hs code for MINERAL PREMIX MILK POWDER FOR ADULTS V2 (BHN BAKU MAKANAN) COA XW92309094,XW92309095",21069059 +What is the hs code for PARSOL ZX (BHN BAKU KOSMETIK) COA 200206012,29420000 +"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040069,0223040073",29420000 +What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020035,29420000 +What is the hs code for PARSOL(R) HS (BHN BAKU KOSMETIK) COA HS4040923,29420000 +What is the hs code for PARSOL(R) HS (BHN BAKU KOSMETIK) COA HS4040923,29420000 +What is the hs code for PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3485217,33029000 +What is the hs code for VIAL SHIGELLA ANTIS POLY C1 LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3082538,38210090 +What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3194539,38210090 +What is the hs code for DISC TAXO V FACTOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3116006,38210090 +What is the hs code for DISC TAXO X FACTOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3116009,38210090 +What is the hs code for DISC TAXO VX FACTOR 50 DISCS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2277212,38210090 +What is the hs code for HU NAIVE/MEM T CELL PANEL 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2308427,38210090 +What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3256362,38210090 +What is the hs code for MS TH1/TH2/TH17 CBA KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3243113,38210090 +What is the hs code for OPALUX (R) OPAQUE COLOR COATING CONCENTRATE... (BHN BAKU PEWARNA TABLET) COA DT751690,32151990 +What is the hs code for OPACODE (R) MONOGRAMMING INK... (BHN BAKU PEWARNA TABLET) COA DT751221,32151990 +What is the hs code for OPALUX (R) OPAQUE COLOR COATING CONCENTRATE... (BHN BAKU PEWARNA TABLET) COA DT751697,32151990 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G630022...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977.. (BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O665000...(BHN BAKU PEWARNA TABLET) COA GA740699,39061090 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751.. (BHN BAKU PEWARNA TABLET)CAS 13463-67-7,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007.. (BHN BAKU PEWARNA TABLET) COA GA740701,39061090 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A..(BHN BAKU PEWARNA TABLET)CAS 13463-67-7,38249999 +What is the hs code for TABCOAT TC (R) FILM COATING PRODUCT TC-GFII... (BHN BAKU PEWARNA TABLET)COA GA740705,32151900 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O92157.. (BHN BAKU PEWARNA TABLET) COA GA740706,39061090 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING.. (BHN BAKU PEWARNA TABLET)CAS 121786-16-1,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 151-21-3,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 151-21-3,38249999 +What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2311108,38210090 +What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2201322,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2528862,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3114524,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3039818,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3039818,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2528862,38210090 +What is the hs code for BACTO CASAMINO ACIDS TECHNICALS 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1308076,38210090 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101853023,17021100 +"What is the hs code for SODIUM FEREDETATE, POWDER, BP2023 (BHN BAKU OBAT) COA 3130632",29224900 +"What is the hs code for POTASSIUM L-ASPARTATE 0,5 HYDRATE (BHN BAKU OBAT) COA 3097137",29224900 +"What is the hs code for FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU OBAT) COA 3131113",28332920 +"What is the hs code for FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU OBAT) COA 3131113",28332920 +"What is the hs code for FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU OBAT) COA 3137011",28332920 +"What is the hs code for CALENDERS 2024, NO COMMERCIAL VALUE",49100000 +What is the hs code for PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) CAS 1332-09-8,38249999 +What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052339,47063000 +What is the hs code for PROMETHAZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA HPHCPR070,29343000 +"What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M537468,M537469,M537573,M537574",29411019 +What is the hs code for DS-CERAMIDE Y3S (BHN BAKU KOSMETIK) COA CSLG17,29241990 +What is the hs code for DS-CERAMIDE Y3S (BHN BAKU KOSMETIK) COA CSLG19,29241990 +What is the hs code for GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 23T0078700,13021990 +What is the hs code for BOSWELLIA SERRATA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 23T0061400,13021990 +What is the hs code for NATURAL SOURCE MIXED TOCOPHEROLS (BHN BAKU KOSMETIK) COA 230907M001,29362800 +What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for BIOBENEFITY (BHN BAKU KOSMETIK) COA 231180,13021990 +What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 230386,13021990 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for CLAIR BLANCHE-III (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for HAPPICLOV (BHN BAKU KOSMETIK) COA 231266,13021990 +What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 230975,13021990 +What is the hs code for SWERTIANIN-P (BHN BAKU KOSMETIK) COA 231640,13021990 +What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 231090,13021990 +What is the hs code for CLAIRJU (BHN BAKU KOSMETIK) COA 230167,13021990 +What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9,38249999 +What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4,38249999 +What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9,38249999 +What is the hs code for KSG-15 (16KG) (BHN BAKU KOSMETIK) CAS 541-02-6,38249999 +What is the hs code for EMULCIRE 61 WL 2659 (BHN BAKU SUPPLEMEN) COA 196936,28399000 +What is the hs code for TRANSCUTOL P (BHN BAKU SUPPLEMEN) COA 195556,28399000 +What is the hs code for LEMON SECRETS (LEMON 40° BRIX) (BHN BAKU KOSMETIK) COA 02/22GL4,28399000 +"What is the hs code for LEMON SECRETS (LEMON 40° BRIX) (BHN BAKU KOSMETIK) COA 02/22GL4, SAMPLE NO COMMERCIAL VALUE",28399000 +What is the hs code for APIFIL CAR (BHN BAKU SUPPLEMEN) COA 188262,28399000 +What is the hs code for LABRAFAC LIPOPHILE WL 1349 (BHN BAKU SUPPLEMEN) COA 195981,28399000 +What is the hs code for GELEOL MONO AND DIGLYCERIDES NF (BHN BAKU SUPPLEMEN) COA 23E0304,28399000 +What is the hs code for LABRASOL BF (BHN BAKU SUPPLEMEN) COA 195283,28399000 +What is the hs code for PRECIROL ATO 5 (BHN BAKU SUPPLEMEN) COA 196484,28399000 +What is the hs code for COMPRITOL 888 PELLETS (BHN BAKU SUPPLEMEN) COA 22E4306,28399000 +What is the hs code for COMPRITOL 888 ATO (BHN BAKU SUPPLEMEN) COA 197169,28399000 +What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20230801,29362800 +What is the hs code for PROMETHAZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA HPHCPR070,29343000 +What is the hs code for BISOPROLOL FUMARATE USP (BHN BAKU OBAT) COA LT-OBFA/006/23-24,29221990 +What is the hs code for XANTHAN 80 (BAHAN BAKU OBAT) COA 4454309807,39139090 +What is the hs code for ONDANSETRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA 23OS002,29332900 +What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G630022...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 02F54189...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 02F52182...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A..(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-020883,13021990 +What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1231006,39139090 +What is the hs code for HYUNDAI BIOLAND NEWAPLE (BHN BAKU KOSMETIK) COA NWPB-022093,13021990 +What is the hs code for HYUNDAI BIOLAND SENAS (BHN BAKU KOSMETIK) COA NASB-012593,21022090 +What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N94107,28321000 +What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N7L103,28321000 +What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5,38249999 +What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-040493,13021950 +What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-040493,13021950 +What is the hs code for PANTOPRAZOLE SODIUM (STERILE) (BHN BAKU OBAT) COA SI/PPZ/01891023,29333990 +What is the hs code for VC CALCIUM ASCORBATE DC (BHN BAKU SUPPLEMEN) COA HPT2303001,29362700 +What is the hs code for P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 23S0224200,13021990 +What is the hs code for BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 23S0218001,13021990 +What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 23S0121400,13021990 +What is the hs code for CURCUMINOIDS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 23S0164401,13021990 +What is the hs code for P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 23S0224200,13021990 +What is the hs code for BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 23S0218001,13021990 +What is the hs code for SILDENAFIL CITRATE USP (BHN BAKU OBAT) COA SLC0570923,29359000 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 57-50-1,38249999 +What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA740864,39061090 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650035...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007...(BHN BAKU PEWARNA TABLET) COA GA740701,39061090 +What is the hs code for OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING...(BHN BAKU PEWARNA TABLET)CAS 121786-16-1,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 21K58794..(BHN BAKU PEWARNA TABLET)CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51226...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K580000...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) FX SPECIAL EFFECTS FILM COATING SYSTEM..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT23070049,29362100 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT23070187,29362400 +What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT23070049,29362100 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02305048,32041800 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT23070016,29362900 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT23040015,29362600 +What is the hs code for EUXYL K 100 CAN 10 KG (BHN BAKU KOSMETIK) CAS 55965-84-9,38249999 +What is the hs code for EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6,38249999 +What is the hs code for EUXYL K 940 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6,38249999 +What is the hs code for EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) CAS 122-99-6,38249999 +What is the hs code for SENSIDIN DO CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9,38249999 +What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9,38249999 +What is the hs code for EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6,38249999 +What is the hs code for EUXYL K 120 CAN 10 KG (BHN BAKU KOSMETIK) CAS 65-85-0,38249999 +What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6,38249999 +"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG230908,MCVG230915,MCVG231005",29362700 +What is the hs code for NICLOSAMIDE ANHYDROUS (BHN BAKU PAKAN HEWAN) COA 20230908,29242990 +What is the hs code for V 427502 (BHN BAKU MAKANAN) COA XW92309278,21069059 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB23070719 S/D WB23070721,29362100 +"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 05-07-23 S/D 07-07-23,08-09-23 ,10-03-23",38029090 +"What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 23-05-22 ,16-05-22 ,24-05-22",25070000 +What is the hs code for XANTHAN 80 (BAHAN BAKU OBAT) COA 4454309807,39139090 +What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010454,29420000 +What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020035,29420000 +What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF23003008,29420000 +What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02211812,29362400 +"What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES2210804,ES2212812",29420000 +What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92307450 S/D XW92307452,21069059 +"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG230908,MCVG230915,MCVG231005",29362700 +"What is the hs code for VIT. A PALM. 1.0 M + VIT. D3 100'000 (BHN BAKU MAKANAN) COA UT23070179,UT23070180",29362100 +What is the hs code for PHTHALAVIN (R) ENTERIC COATING POLYMER 2138 CLEAR (BHN BAKU PEWARNA TABLET) COA WP871784,39059990 +What is the hs code for LAKE PIGMENT (R) 6010 D&C ...(BHN BAKU PEWARNA TABLET) COA WP870800:BC5548,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C...(BHN BAKU PEWARNA TABLET) COA WP868324:BC3385,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5517 FD&C...(BHN BAKU PEWARNA TABLET) COA WP866727:BC4487,32151990 +"What is the hs code for PURIDROX (R) COMPACTED (BHN BAKU OBAT) COA B340493,B340494,B340496",29419000 +What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5,38249999 +What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) CAS 122-99-6,38249999 +What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) CAS 122-99-6,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03F140006..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3,38249999 +What is the hs code for LEMON SECRETS (LEMON 40° BRIX) (BHN BAKU KOSMETIK) COA 02/22GL4,28399000 +"What is the hs code for LEMON SECRETS (LEMON 40° BRIX) (BHN BAKU KOSMETIK) COA 02/22GL4, SAMPLE NO COMMERCIAL VALUE",28399000 +What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 2310035T,39100020 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230802,13021990 +What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-231002,13021990 +What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-231002,13021990 +What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) CAS 8001-25-0,38249999 +"What is the hs code for COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPPLEMEN) COA TL02306407",29362700 +What is the hs code for FLORAGLO(R) LUTEIN 20 PCT SAF (BHN BAKU SUPPLEMEN) COA UE02304021,32030010 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02307060,32041800 +What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02307737,29362700 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPPLEMEN) COA UT23050002,32041800 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT23070015,32030010 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT23050011,29362900 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT23060023,29362100 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT23040025,29362600 +"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT23090058,UT23090063",29362800 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT23060014,29362900 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT23050162,29362800 +What is the hs code for VC ASCORBIC ACID DC 97PCT (BHN BAKU SUPPLEMEN) COA HPG2303001,29362700 +What is the hs code for NAPROXEN SODIUM USP (BHN BAKU OBAT) COA 2-SN-1570823,29189900 +What is the hs code for ESOMEPRAZOLE MAGNESIUM TRIHYDRATE (BHN BAKU OBAT) COA C900100,29333990 +What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000215220,29362900 +What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000215219 S/D 0000215221,29362900 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP29323,28363000 +What is the hs code for AMITOSE HGA (BHN BAKU KOSMETIK) COA LIL,13021990 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7,38249999 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7,38249999 +What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) CAS 638164-47-3,38249999 +What is the hs code for PROMOIS SILK-1000 (BHN BAKU KOSMETIK) CAS 96690-41-4,38249999 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0,38249999 +What is the hs code for PROMOIS EK-118(IN) (BHN BAKU KOSMETIK) CAS 59219-71-5,38249999 +What is the hs code for SENSIDIN DO CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9,38249999 +What is the hs code for SENSIDIN PURE CAN 10 KG (BHN BAKU KOSMETIK) CAS 70775-75-6,38249999 +What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for BOREALINE PROTECT (BHN BAKU KOSMETIK) COA AM097578,13021990 +What is the hs code for LANACHRYS 2B PF (PRESERVATIVE) (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for PROGELINE TM (BHN BAKU KOSMETIK) COA 222048,29224900 +What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for ABYSSINE (TM) PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 231544,13021990 +What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 232178,13021990 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 230972,13021990 +What is the hs code for HAPPICLOV (BHN BAKU KOSMETIK) COA 231266,13021990 +What is the hs code for EXTRAPONE (R) PEACH (BHN BAKU KOSMETIK) COA 10300039,13021950 +What is the hs code for ACTIPONE (R) CAMU CAMU GW (BHN BAKU KOSMETIK) COA 10300021,13021950 +What is the hs code for VACCINIUM MYRTILLUS DRY EX. (BHN BAKU SUPLEMEN) COA 22S0239900,13021990 +What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 23S0121400,13021990 +What is the hs code for ECHINACEA ANG.DRY PURIF. EX. (BHN BAKU SUPPLEMEN) COA 21S0155200,13021990 +What is the hs code for SODIUM ACID PYROPHOSPHATE FOOD GRADE (BHN BAKU MAKANAN) COA 9231024,28353990 +What is the hs code for GLUCOSAMINE SULFATE POTASSIUM CHLORIDE (BHN BAKU OBAT) COA WA202308007,29329900 +"What is the hs code for MOXIFLOXACIN HYDROCHLORIDE EP (BHN BAKU OBAT) COA EL-05/L011/23083,EL-05/L011/23076",29334990 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101853923,17021100 +"What is the hs code for VC ASCORBIC ACID REGULAR (BHN BAKU SUPPLEMEN) COA HPB2305045,HPB2305049",29362700 +What is the hs code for VC ASCORBIC ACID REGULAR (BHN BAKU SUPPLEMEN) COA HPB2305045,29362700 +What is the hs code for VC SODIUM ASCORBATE REGULAR (BHN BAKU SUPPLEMEN) COA HPN2305002,29362700 +What is the hs code for VC ASCORBIC ACID REGULAR (BHN BAKU SUPPLEMEN) COA HPB2305049,29362700 +What is the hs code for METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/13100586,29332900 +What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-231019,29061300 +What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550818,35051010 +What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550778,35051010 +What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550800,35051010 +What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550817,35051010 +What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550853,35051010 +What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550797,35051010 +What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550852,35051010 +What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550851,35051010 +"What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 23100533,23100534",29395900 +What is the hs code for MACKAM C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 11384-1,34024990 +What is the hs code for CITRIC ACID MONOHYDRAT BP/EP/U F6000 (BHN BAKU KOSMETIK) COA 84022504,29181400 +What is the hs code for LIDOCAINE BASE (BHN BAKU OBAT) COA 203876,29242990 +What is the hs code for LIDOCAINE HCL (BHN BAKU OBAT) COA 202193,29242990 +What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG231006,29362700 +What is the hs code for WASTAR TM PINK BERRY (BHN BAKU KOSMETIK) CAS 9050-36-6,38249999 +What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) CAS 8002-43-5,38249999 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) CAS 37350-42-8,38249999 +What is the hs code for ECOSLIM TM (BHN BAKU KOSMETIK) CAS 58-08-2,38249999 +What is the hs code for BOREALINE (R) AURORA (BHN BAKU KOSMETIK) COA BX1220017,13021990 +"What is the hs code for OPACODE S-1-8114 BLACK (BHN BAKU PEWARNA TABLET) COA TKL70208,SAMPLE NO COMMERCIAL VALUE",32151990 +"What is the hs code for MAGNESIUM ASPARTATE DIHYDRATE,... (BHN BAKU SUPPLEMEN) COA 3118345-04",29224900 +"What is the hs code for SODIUM SELENITE IN CARRIER,... (BHN BAKU SUPPLEMEN) COA 3127495",28429010 +What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 23S0121400,13021990 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101853723,17021100 +"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02211812,TL02211813",29362400 +"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060089,0522060090,0523060007,0523060011",29420000 +What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES2301822,29420000 +"What is the hs code for PX 103070 - C3 (BHN BAKU MAKANAN) COA XW92309193,XW92309194",21069059 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ30310571,29362300 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT23050153,29362400 +"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ20512156,UQ20512157",29362200 +What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000214335,29362900 +What is the hs code for VITAMIN PREMIX FOR MARGARINE SG15-0027 (BHN BAKU MAKANAN) COA XW92310004,21069059 +What is the hs code for PREMIX VMP JELLY (BHN BAKU MAKANAN) COA XW92310084,21069059 +What is the hs code for VITAMIN PREMIX FOR JELLY DRINK V4 (BHN BAKU MAKANAN) COA XW92310085,21069059 +What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040011,29362900 +What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040011,29362900 +What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI23030003,29362900 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING..(BHN BAKU PEWARNA TABLET)CAS9002-89-5,38249999 +What is the hs code for OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 57-50-1,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS,38249999 +What is the hs code for OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET)CAS 121786-16-1,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B28796...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620041...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650018...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) CAS,38249999 +What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA 2464438852,39123900 +What is the hs code for PRECIROL ATO 5 (BHN BAKU SUPPLEMEN) COA 197385,28399000 +What is the hs code for GELUCIRE 48/16 PELLETS (BHN BAKU SUPPLEMEN) COA 185000,28399000 +What is the hs code for CARBOWAX SENTRY PEG 1450 (BHN BAKU KOSMETIK) COA D684N4QPB2,39072990 +What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2023102701,21012020 +What is the hs code for SUCRALOSE (BHN BAKU OBAT) COA 23082601,29321400 +What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA 2301420140,29419000 +What is the hs code for CANDESARTAN CILEXETIL (BHN BAKU OBAT) COA 5712-23-078,29339990 +What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-183003,39139090 +What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-183003,39139090 +What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-183003,39139090 +What is the hs code for HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-011373,13021990 +What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1231108,39139090 +"What is the hs code for HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-052873,060693",13021990 +What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-040593,13021990 +What is the hs code for HYUNDAI BIOLAND JEJU TANGERINE EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-012773,13021990 +What is the hs code for HYUNDAI BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for HYUNDAI BIOLAND SENAS (BHN BAKU KOSMETIK) COA NASB-01259,21022090 +What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N7L103,28321000 +What is the hs code for HYUNDAI BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for HYUNDAI BIOLAND CUCURBITA EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for HYUNDAI BIOLAND COLINUS (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +"What is the hs code for 1,3-BUTYLENE GLYCOL (NATUROBG) (BHN BAKU KOSMETIK) COA BGC/L65/23",29053200 +What is the hs code for TRIBUTYRIN 65PCT 25 KG (BHN BAKU PAKAN TERNAK) COA 20231103,29156000 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 23290081,30039000 +What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWDER... (B.BAKU KOSMETIK) CAS 65497-29-2,38249999 +What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512326,47069200 +What is the hs code for NONIVAMIDE (SYNTHETIC CAPSAICIN) (BHN BAKU KOSMETIK) COA 20231020,29241990 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51469..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O600001...(BHN BAKU PEWARNA TABLET) COA GA742434,39061090 +What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA742435,39061090 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007...(BHN BAKU PEWARNA TABLET) COA GA742437,39061090 +What is the hs code for TABCOAT TC (R) FILM COATING PRODUCT TC-GFII-1505...(BHN BAKU PEWARNA TABLET) COA GA742438,32151990 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM OY-GM-7305..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K80814..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B82443..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM Y-1-7000..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) KB LOW VISCOSITY FILM COATING SYSTEM..(BHN BAKU PEWARNA TABLET)CAS 151-21-3,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3485217,33029000 +What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464397264,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464397261,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464397261,39123900 +What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052339,47063000 +What is the hs code for DESONIDE MICRONIZED (BHN BAKU OBAT) COA NC3328M,29372900 +What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4,38249999 +What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9,38249999 +What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9,38249999 +What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6,38249999 +What is the hs code for PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059,38210090 +What is the hs code for PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059,38210090 +What is the hs code for PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059,38210090 +What is the hs code for DIFCO BEEF EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2312117,38210090 +What is the hs code for PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059,38210090 +What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3100095,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2528862,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3039818,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3039818,38210090 +What is the hs code for PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059,38210090 +What is the hs code for PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059,38210090 +What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3100095,38210090 +What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3100095,38210090 +What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2201322,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2509110,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3039818,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3114540,38210090 +What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3018648,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2528862,38210090 +What is the hs code for PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059,38210090 +What is the hs code for PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059,38210090 +What is the hs code for VC CALCIUM ASCORBATE DC (BHN BAKU SUPPLEMEN) COA HPT2303003,29362700 +What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3168376,38210090 +What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 3221348,38210090 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2311158,38210090 +What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2343200,38210090 +What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3096321,38210090 +What is the hs code for BOTTLE R2A AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3053725,38210090 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2236789,38210090 +What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2046206,38210090 +What is the hs code for BOTTLE MUELLER HILTON AGAR II 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3172757,38210090 +What is the hs code for BOTTLE SIM MEDIUM BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2299810,38210090 +What is the hs code for BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2343459,38210090 +"What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2269108,3142346",38210090 +What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3206413,38210090 +What is the hs code for BOTTLE DERMATOPHYTE TEST MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3221072,38210090 +What is the hs code for BOTTLE GLYCEROL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2292718,38210090 +What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2217638,38210090 +What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2053778,38210090 +What is the hs code for BOTTLE TETRATHIONATE BR BASE HAJNA 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3158214,38210090 +What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3199948,38210090 +What is the hs code for BOTTLE M TGE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2201315,38210090 +What is the hs code for BOTTLE MUELLER HILTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3150802,38210090 +What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3137222,38210090 +What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 3221348,38210090 +"What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3088713,3173090",38210090 +"What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2362156,3088713",38210090 +What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 3186480,38210090 +What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2229527,38210090 +What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3144373,38210090 +What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2291792,38210090 +What is the hs code for BOTTLE MICRO INOCULUM BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3199057,38210090 +What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3206413,38210090 +What is the hs code for BOTTLE CHROMAGAR CANDIDA 500GM (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3223967,38210090 +What is the hs code for BOTTLE MIDDLEBROOK 7H9 BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2207029,38210090 +"What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3144306,3144373",38210090 +"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 3114639",38210090 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2339390,38210090 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2143794,38210090 +What is the hs code for BOTTLE MACCONKEY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1172869,38210090 +What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA G12101UP,29053200 +What is the hs code for MIRASIL DM5 (BHN BAKU KOSMETIK) COA 2344FF2215,39100090 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP31623,28363000 +"What is the hs code for SUNBELLIN (BHN BAKU KOSMETIK) COA F210-2309040,2309041,2309042",29339990 +"What is the hs code for MOPD (BHN BAKU KOSMETIK) COA 230815001,230915001",29242990 +What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW DC YRDN-FE-...(ALAT KESEHATAN)COA DA21420N1027,30061010 +What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW MC YRPN19-12..(ALAT KESEHATAN)COA HL19100L1027,30061010 +What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC YRPN19-105..(ALAT KESEHATAN)COA HR1960L1027,30061010 +"What is the hs code for FERRIC HYDROXIDE POLYMALTOSE COMPLEX,... (BHN BAKU SUPPLEMEN) COA 3118698",29400000 +"What is the hs code for COPPER(II) GLUCONATE, FINE POWDER, USP-NF 2023,... (BHN BAKU SUPPLEMEN) COA 3137051",29181600 +"What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340504,B340506,B340507",29419000 +What is the hs code for CLOMIPHENE CITRATE USP/EP (BHN BAKU OBAT ) COA 202309280060,29221990 +What is the hs code for CLOMIPHENE CITRATE USP/EP (BHN BAKU OBAT ) COA 202309280060,29221990 +"What is the hs code for CLOMIPHENE CITRATE USP/EP (BHN BAKU OBAT ) COA 202309280060,202309280061",29221990 +What is the hs code for COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) COA ANTS230804,13021990 +What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for DANDRILYS (NAT) (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for OLIVE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6,38249999 +What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for SILDENAFIL CITRATE USP (BHN BAKU OBAT) COA SLC0631023,29359000 +"What is the hs code for SELOHVITA C (BHN BAKU SUPPLEMEN) COA 3129180,3131996",28429010 +What is the hs code for SILDENAFIL CITRATE USP (BHN BAKU OBAT) COA SLC0721123,29359000 +What is the hs code for ISDN 10PCT IN NACL (DISPERSION) (BHN BAKU OBAT) COA 2311946,30039000 +What is the hs code for ETORIXOCIB (BHN BAKU OBAT) COA ETC-P/23003,29333990 +What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) CAS 122-99-6,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA743067,39061090 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K665000..(BHN BAKU PEWARNA TABLET)CAS 1309-37-1,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55015..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A62337..(BHN BAKU PEWARNA TABLET) COA GA743068,39061090 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A62337..(BHN BAKU PEWARNA TABLET) COA GA743068,39061090 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K580000..(BHN BAKU PEWARNA TABLET)CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650018..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for STAIN BUFFER FBS 500ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2341228,38210090 +What is the hs code for VIAL E COLI H ANTISERUM H7 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3068676,38210090 +What is the hs code for VIAL E COLI H ANTISERUM H7 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3068676,38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3145963,38210090 +What is the hs code for VIAL E COLI H ANTISERUM H7 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3068676,38210090 +What is the hs code for VIAL E COLI ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3166212,38210090 +What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3145963,38210090 +What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3072777,38210090 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2335015,38210090 +What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2027288,38210090 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3103247,38210090 +"What is the hs code for BOTTLE MICROBIAL CONTENT TEST AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3072210,.",38210090 +What is the hs code for MS IG KPA COMP BEAD SET 6ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2300045,38210090 +"What is the hs code for HU SOLBL PLEIN CBA BUF KIT 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3013096,3153966",38210090 +What is the hs code for ENOS ALEXA 647 33/ENOS 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3290230,38210090 +What is the hs code for HU VEGFR-2/CD309 PE 89106 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3145598,38210090 +What is the hs code for HU IL-8 CBA FLEX SET A9 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3093736,38210090 +What is the hs code for HU G-CSF CBA FLEX SET C8 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2168170,38210090 +What is the hs code for HU ANGIOGENIN CBA FLEX SET C4 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2188696,38210090 +What is the hs code for HU BASIC FGF CBA FLEX SET C5 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2066607,38210090 +What is the hs code for HU IL-10 CBA FLEX SET B7 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2199637,38210090 +What is the hs code for HU CD133 FITC W6B3C1 100UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3174018,38210090 +"What is the hs code for HU CD45 APC-H7 2D1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2257391,3153488",38210090 +What is the hs code for BD FACSUITE CS&T BEADS 50 TESTS RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 63586,38210090 +What is the hs code for SIMULTEST CD4 FITC/CD8 PE SK3/SK1 IVD (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2363537,38210090 +What is the hs code for MS IGG1 KPA ITCL APC MOPC-21 100UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3191634,38210090 +What is the hs code for MS IGG2B KPA ITCL APC 27-35 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3226564,38210090 +What is the hs code for MS IGG1 KPA ITCL FITC MOPC-21 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2234633,38210090 +What is the hs code for HU CD90 FITC 5E10 100UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2320580,38210090 +What is the hs code for HU CD44 APC G44-26 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3041946,38210090 +What is the hs code for HU CD90 APC 5E10 100UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3116500,38210090 +What is the hs code for HU CD31 FITC WM59 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2188676,38210090 +What is the hs code for HU CD45 FITC HI30 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3124102,38210090 +What is the hs code for HU CD146 FITC P1H12 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1342584,38210090 +What is the hs code for MS IGG1KPA ITCL PE MOPC-21 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2136343,38210090 +What is the hs code for HU CD54 APC HA58 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2168169,38210090 +What is the hs code for HU CD274 APC MIH1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3242893,38210090 +What is the hs code for HU CD166 PE 3A6 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3003473,38210090 +What is the hs code for HU TGF BTA1 CBA FLEX SET B6 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3093742,38210090 +What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464456907,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464457070,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464381183,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464453444,39123900 +What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464456907,39123900 +"What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512326,G02512342",47069200 +What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052341,47063000 +What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464438852,39123900 +What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464207192,39123900 +What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA D180LCP002,39123900 +What is the hs code for METHOCEL K4M PREMIUM HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464186441,39123900 +What is the hs code for METHOCEL E3 PREMIUM LV HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA D011L4OL02,39123900 +What is the hs code for METHOCEL E4M PREMIUM HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464213628,39123900 +What is the hs code for METHOCEL E5 PREMIUM LV HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2444226862,39123900 +What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2444374837,39123900 +What is the hs code for METHOCEL K15M PREMIUM CR HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464207178,39123900 +What is the hs code for THEOPHYLLINE ANHYDROUS (BHN BAKU OBAT) COA 23238 S/D 23241,29395900 +"What is the hs code for METAMIZOLE SODIUM MONOHYDRATE (BHN BAKU OBAT) COA 23081361,23081362,23091413,23091417",29331900 +What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-3021123,29334910 +What is the hs code for MOXIFLOXACIN HYDROCHLORIDE EP (BHN BAKU OBAT) COA EL-05/L011/23091,29334990 +What is the hs code for MECOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/1123052,29362600 +What is the hs code for ZINC BISGLYCINATE.. (BHN BAKU SUPPLEMEN) COA 3138610-01,29224900 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20231107,17029019 +What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4,38249999 +What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9,38249999 +What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6,38249999 +What is the hs code for KSP-101 (15KG)(BHN BAKU KOSMETIK) CAS 1004791-75-6,38249999 +What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) COA 310294,39100020 +What is the hs code for GELOIL SC (BHN BAKU SUPPLEMEN) COA 197910,28399000 +What is the hs code for GELOT 64 (BHN BAKU SUPPLEMEN) COA 197482,28399000 +What is the hs code for PRECIFAC 95-3 (BHN BAKU SUPPLEMEN) COA 196802,28399000 +What is the hs code for GELOIL SC (BHN BAKU SUPPLEMEN) COA 197910,28399000 +What is the hs code for HYUNDAI BIOLAND JMSW ED (BHN BAKU KOSMETIK) COA SBDAE-012263,25010050 +What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-020193,29224900 +What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1231108,39139090 +What is the hs code for HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-600403,13021990 +What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012333,13021990 +What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-040493,13021950 +What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23B0090500,13021950 +What is the hs code for HAWTHORN DRY HYDR. EXTR. (BHN BAKU SUPLEMEN) COA 21B0148600,13021990 +What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23B0090600,13021950 +What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23B0090500,13021950 +What is the hs code for VITAMIN A PALMITATE 1.7M IU/G (BHN BAKU KOSMETIK) COA 0423060013,29362100 +What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334906 S/D B334908,29419000 +What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 2310035T,39100020 +What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 2310035T,39100020 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101854223,17021100 +What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M537674 S/D M537677,29411019 +"What is the hs code for PURIMOX POWDER (BHN BAKU OBAT) COA M486816,M486817",29411019 +"What is the hs code for PURICILIN POWDER (BHN BAKU OBAT) COA M781119,M781120",29411020 +"What is the hs code for PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M599294,M599299 S/D M599301",29411019 +What is the hs code for DC CODRIED POWDER AHMH 3535 NG (BHN BAKU SUPPLEMEN) COA 202300242,28183000 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING SYSTEM..(BHN BAKU PEWARNA TABLET) CAS 121786-16-1,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B62323...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B28796...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B54445...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G64786...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 13K605000...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B84893...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G54078..(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51226..(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G52990...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for METRONIDAZOLE EP (BHN BAKU OBAT) COA MTZ/3050801,29332900 +What is the hs code for CORTISONE ACETATE MICRONISED PH.EUR JP (BHN BAKU SUPPLEMEN) COA 2301084222,29372900 +What is the hs code for L-LYSINE HCL (BHN BAKU OBAT) COA 2312271137,29224100 +What is the hs code for SUCRALOSE (BHN BAKU OBAT) COA 23082601,29321400 +"What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 232178,232422",13021990 +What is the hs code for DOKUDAMI LIQUID B (BHN BAKU KOSMETIK) COA 231637,13021990 +"What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 231297,232477",29329900 +What is the hs code for BIWA LEAF LIQUID B (BHN BAKU KOSMETIK) COA 017212,13021990 +What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 230975,13021990 +What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 230972,13021990 +What is the hs code for BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP31023,28363000 +"What is the hs code for DEXAMETHASONE BP2010/USP42 (BHN BAKU OBAT) COA NED231109,NED231112",29372200 +What is the hs code for PREDNISONE USP2023 (BHN BAKU OBAT) COA NPD231102,29372100 +What is the hs code for BETAMETHASONE BP2020/USP2022 (BHN BAKU OBAT) COA XBE230402,29372200 +What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 2204434803,29372200 +"What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 2204434803, SAMPLE NO COMMERCIAL",29372200 +What is the hs code for ERDOSTEINE IH (BAHAN BAKU OBAT) COA EDSF230072,29349990 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT23050011,29362900 +"What is the hs code for VITAMIN A WATER-MISCIBLE, TYPE 100 (BHN BAKU SUPPLEMEN) COA UT23070067",29362100 +What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT23090067,29362100 +What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF (BHN BAKU SUPPLEMEN) COA UE02304021,32030010 +What is the hs code for VITAMIN B12 1PCT SD (BHN BAKU SUPPLEMEN) COA UT23070008,29362600 +What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-063013,13021990 +What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-030913,29224900 +"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-040493,050493",13021950 +What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-040493,13021950 +What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1231120,39139090 +What is the hs code for HYUNDAI BIOLAND JEJU TANGERINE EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for HYUNDAI BIOLAND NEWAPLE (BHN BAKU KOSMETIK) COA NWPB-022093,13021990 +What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-192013,39139090 +What is the hs code for HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-012773,13021990 +What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012333,13021990 +What is the hs code for HYUNDAI BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for HYUNDAI BIOLAND BIO-FRGE PLUS (BHN BAKU KOSMETIK) COA CFRK-042283,13021990 +What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-020883,13021990 +What is the hs code for HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-012773,13021990 +What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-020493,13021950 +What is the hs code for HYUNDAI BIOLAND JEJU TANGERINE EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230802,13021990 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230803,13021990 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230803,13021990 +What is the hs code for PEPPERMINT ORGANIC FROM FRANCE DISTILLATE (SB) (BHN BAKU KOSMETIK) CAS 84082-70-2,38249999 +What is the hs code for ZORYALYS (BHN BAKU KOSMETIK) CAS 73398-61-5,38249999 +What is the hs code for GREENSIL (BHN BAKU KOSMETIK) CAS 91771-32-3,38249999 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO230804,13021990 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for KIGELINE (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340511 S/D B340514,29419000 +What is the hs code for RAJOL WP80/LOREAL LIGHT LIQUID PARAFFIN-BP/LIGHT... (BHN BAKU KOSMETIK) COA 1000230002,27101990 +What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 231006,33012990 +What is the hs code for SKINECTURA TM (BHN BAKU KOSMETIK) COA 230407,13021990 +What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 230612,13021990 +What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 231006,33012990 +What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 220807,13021990 +What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 230516,29061900 +What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 230612,13021990 +What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 230802,13021990 +What is the hs code for AMITOSE R (BHN BAKU KOSMETIK) COA LKG,13021990 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7,38249999 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7,38249999 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0,38249999 +What is the hs code for PROMOIS SILK-1000 (BHN BAKU KOSMETIK) CAS 96690-41-4,38249999 +What is the hs code for PROMOIS EU-118(IS) (BHN BAKU KOSMETIK) CAS 111174-63-1,38249999 +What is the hs code for ABYSSINE TM PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) CAS 68425-17-2,38249999 +What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829012074P,29224900 +What is the hs code for BOREALINE PROTECT (BHN BAKU KOSMETIK) COA AM097578,13021990 +What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for LYSOFIX TM LIQUID (BHN BAKU KOSMETIK) CAS 1448790-48-4,38249999 +What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for PROGELINE TM (BHN BAKU KOSMETIK) COA 222048,29224900 +What is the hs code for TYROSTAT TM 11(BHN BAKU KOSMETIK) COA 784022021P,13021990 +What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) CAS 68425-17-2,38249999 +What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829012074P,29224900 +What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 222059,29224900 +What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) CAS,38249999 +What is the hs code for MINIPORYL TM (BHN BAKU KOSMETIK) CAS,38249999 +What is the hs code for TYROSTAT TM 11(BHN BAKU KOSMETIK) COA 784022021P,13021990 +What is the hs code for PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) CAS 5743-47-5,38249999 +What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-3071123,29334910 +What is the hs code for SENSIVA GO NATURAL CAN 10 KG (BHN BAKU KOSMETIK) CAS 1117-86-8,38249999 +What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9,38249999 +What is the hs code for POTASSIUM IODIDE AND CARRIER.. (BHN BAKU SUPPLEMEN) COA 3131670,28276000 +What is the hs code for GLUCOSAMINE SULFATE 2KCL (BHN BAKU SUPPLEMEN) COA JSTK231205,29329900 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101854223,17021100 +What is the hs code for CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) COA 307041,21012020 +What is the hs code for WASTAR TM PINK BERRY (BHN BAKU KOSMETIK) CAS 9050-36-6,38249999 +What is the hs code for WASTAR TM LAVENDER (BHN BAKU KOSMETIK) CAS 90063-37-9,38249999 +What is the hs code for SILIGEL TM (BHN BAKU KOSMETIK) CAS 11138-66-2,38249999 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) CAS 8002-43-5,38249999 +What is the hs code for ROSALITY TM (BHN BAKU KOSMETIK) CAS 5343-92-0,38249999 +What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) CAS 8002-43-5,38249999 +What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) CAS 8002-43-5,38249999 +What is the hs code for SILIGEL TM (BHN BAKU KOSMETIK) CAS 11138-66-2,38249999 +What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0046906,29362500 +What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS4851023,29420000 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0523060065,29420000 +What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS4851023,29420000 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0523060016,29420000 +"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323021071,0323021072",29420000 +"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020052,0923020055",29420000 +What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB23050082,29362500 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02206017,29362900 +What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20230503,29362800 +"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ30310594,UQ30310597",29362300 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30112047,29362200 +What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT22070226,29362100 +What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22120266,29362400 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02308753,29362400 +What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12305024,29362900 +What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02305056,29362400 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT22120082,29362800 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT23060009,29362900 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT23030172,29362900 +What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22120266,29362400 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT23040011,29362600 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02308753,29362400 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12305024,29362900 +"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92309310,XW92309311",21069059 +What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE02206017,29362900 +What is the hs code for PREMIX ADE (BHN BAKU MAKANAN) COA XW92310216,21069059 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT23060012,29362900 +What is the hs code for PREMIX ADE (BHN BAKU MAKANAN) COA XW92310316,21069059 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230509,29362500 +"What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340515,B340525,B340527",29419000 +What is the hs code for BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3137940,38210090 +What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3272500,38210090 +What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3088838,38210090 +"What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2027288",38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3086871,38210090 +What is the hs code for HU CD105 APC 266 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3006776,38210090 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2335015,38210090 +What is the hs code for BOTTLE MICROBIAL CONTENT TEST AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3172759,38210090 +What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3272500,38210090 +"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3081961,308",38210090 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2335015,38210090 +"What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2027288",38210090 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3103247,38210090 +"What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2271502,3086871",38210090 +What is the hs code for BOTTLE MICROBIAL CONTENT TEST AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3172759,38210090 +What is the hs code for VIAL ISOVITALEX ENRICHMENT 10ML 5 EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3284473,38210090 +What is the hs code for VIAL SAL H ANTISERUM G COMPLEX (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3026384,38210090 +What is the hs code for VIAL SAL H ANTISERUM F 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1308721,38210090 +What is the hs code for VIAL SAL H ANTISERUM M 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2349775,38210090 +What is the hs code for VIAL SAL H ANTISERUM P 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1322546,38210090 +What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIAUTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2335855,38210090 +What is the hs code for VIAL E COLI ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3166212,38210090 +What is the hs code for VIAL SAL O ANTIS GRP B FTR 1/4/12/27 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2293465,38210090 +What is the hs code for DISC TAXO V FACTOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3212707,38210090 +What is the hs code for DISC TAXO X FACTOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3212733,38210090 +What is the hs code for DISC TAXO VX FACTOR 50 DISCS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3254294,38210090 +What is the hs code for BOTTLE LACTOBACILLI MRS BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3004891,38210090 +What is the hs code for ANTI-HLA DR FITC L243 (G46-6) RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3170864,38210090 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3290069,38210090 +What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3270453,38210090 +What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2046206,38210090 +What is the hs code for BOTTLE MUELLER HINTON II AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3172757,38210090 +What is the hs code for BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2143333,38210090 +What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2215654,38210090 +What is the hs code for BOTTLE R2A AGAR 2KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2270184,38210090 +What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 3221348,38210090 +What is the hs code for BOTTLE MACCONKEY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1172869,38210090 +What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3094598,38210090 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2152796,38210090 +What is the hs code for BOTTLE MACCONKEY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1172869,38210090 +"What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2311158",38210090 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH. 2256092,38210090 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2172755,38210090 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2270946,38210090 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2034966,38210090 +What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3053725,38210090 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3086819,38210090 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3096242,38210090 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3096196,38210090 +"What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2074829,2221886",38210090 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2158081,38210090 +What is the hs code for BOTTLE MUELLER HINTON II AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3172757,38210090 +What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3173791,38210090 +What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2088727,38210090 +What is the hs code for BOTTLE NITRATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2066240,38210090 +What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2217638,38210090 +What is the hs code for BOTTLE MYP AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2276880,38210090 +What is the hs code for BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1264672,38210090 +What is the hs code for BOTTLE YEAST NITROGEN BASE W/O AA 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1223708,38210090 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2200729,38210090 +What is the hs code for CALCIUM CARBONATE DC TYPE CS90 PHARMA (BHN BAKU OBAT) COA 202300093,28365010 +What is the hs code for PASSION FLOWER D.H.E 4PCT (BAHAN BAKU SUPLEMEN) COA 23B0096400,13021990 +"What is the hs code for PARACETAMOL USP43 (BHN BAKU OBAT) COA 2311230,2311335,2352365,2352594",29242930 +"What is the hs code for PARACETAMOL USP43 (BHN BAKU OBAT) COA 2352653,2352672,2352680",29242930 +What is the hs code for KETOROLAC TROMETHAMINE USP (BHN BAKU OBAT) COA KM0150323,29339990 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101854423,17021100 +"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020055,0923020058",29420000 +What is the hs code for ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2311221,32030010 +"What is the hs code for NG 5 PCT-1,2 PROPYLENGLYCOLE 95PCT (BAHAN BAKU OBAT) COA 2313370",30039000 +What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 20236,29332900 +What is the hs code for ONDANSETRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA 23OS004,29332900 +What is the hs code for SORBITOL SPECIAL (R) MDF 85 (BHN BAKU SUPPLEMEN) COA 122303217,29054400 +What is the hs code for DEXTROSE ANHYDROUS (BHN BAKU PAKAN HEWAN) COA XW202311005,17023010 +"What is the hs code for CALCIUM PROPIONATE 20 KG (BHN BAKU PAKAN TERNAK) COA 23111884 S/D 23111904, 23112025 S/D ....",29155000 +What is the hs code for BETA-Q 20 LIT (V) (BHN BAKU PAKAN TERNAK) COA 23112013,30049099 +What is the hs code for BETAGUARD 20 LIT (V) (BHN BAKU PAKAN TERNAK) COA 23112355,30049099 +What is the hs code for OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM..(BHN BAKU PEWARNA TABLET)CAS 57-50-1,38249999 +What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000215652,29362900 +What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010637,29420000 +What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS4851023,29420000 +What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323021073,29420000 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23040136,29362800 +What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS4851023,29420000 +What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02211813,29362400 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23020059,29362800 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT23090059,29362800 +What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040160,29420000 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT23090059,29362800 +"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0523060016,0523060024",29420000 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPPLEMEN) COA UT23060012,29362900 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30212055,29362200 +What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02301001,29362400 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT22120082,29362800 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT23060009,29362900 +What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPPLEMEN) COA TL02303656,29362700 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT23040011,29362600 +What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI23040013 (POST BORDER),29362900 +What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02206017 (POST BORDER),29362900 +What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02206017,29362900 +What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI23040013,29362900 +What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI23040013,29362900 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02303664,29362400 +What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF (BHN BAKU SUPPLEMEN) COA UE02304021,32030010 +What is the hs code for VC ASCORBIC ACID DC 97PCT (BHN BAKU SUPPLEMEN) COA HPG2303001,29362700 +"What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 23100624,23100626",29395900 +What is the hs code for BROMHEXINE HYDROCHLORIDE EP (BHN BAKU OBAT) COA ORX/BRH/M/2311004,29215900 +What is the hs code for PREGABALIN (BHN BAKU OBAT) COA PU1110423,29224900 +What is the hs code for ALLOPURINOL USP (BHN BAKU OBAT) COA ALP0011123,29335990 +What is the hs code for PANTOPRAZOLE SODIUM (STERILE) (BHN BAKU OBAT) COA SI/PPZ/02441223,29333990 +"What is the hs code for TADALAFIL USP (BHN BAKU OBAT) COA TAD-M/0823044,TAD-M/0923058",29349990 +What is the hs code for VITAMIN E (BHN BAKU KOSMETIK) COA 201202310203,29362800 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20231123,17029019 +What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) CAS 7631-86-9,38249999 +What is the hs code for 4-HYDROXYACETOPHENONE (BHN BAKU KOSMETIK) COA 202311008,29145000 +What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052346,47063000 +What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052346,47063000 +"What is the hs code for SUNBELLIN (BHN BAKU KOSMETIK) COA F210-2310048 S/D 2310050,F210-2311001",29339990 +What is the hs code for ADENOSINE(L) (BHN BAKU KOSMETIK) COA C01202304010L,29349990 +What is the hs code for MOPD (BHN BAKU KOSMETIK) COA 231115001,29242990 +What is the hs code for GF-B331 (BHN BAKU KOSMETIK) COA 20231015004,35051090 +"What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02305048,UE02307060",32041800 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02303003,29362900 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02303003,29362900 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30501066,UQ30701084 (POST BORDER)",29362500 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02303003,29362900 +"What is the hs code for ASCORBIC ACID 90PCT GRANULATION (BHN BAKU SUPPLEMEN) COA WB22049035,WB22049036",29362700 +What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT22070226,29362100 +What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020058,29420000 +"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020058, 0923020059",29420000 +What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020059,29420000 +What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020059,29420000 +"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0523060024,0523060021",29420000 +What is the hs code for PARSOL ZX (BHN BAKU KOSMETIK) COA 200206012,29420000 +What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT22070226,29362100 +What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC230402,29420000 +What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC230402,29420000 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230509 (POST BORDER,29362500 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT23010005,32041800 +What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000214336 (POST BORDER),29362900 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT23070179 (POST BORDER),29362900 +What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE02302006,29362100 +"What is the hs code for PX 103070 - C3 (BHN BAKU MAKANAN) COA XW92307172,XW92307173",21069059 +What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT23070108,29362100 +What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT23070108,29362100 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20231207,17029019 +"What is the hs code for 1,3-BUTYLENE GLYCOL (NATUROBG) (BHN BAKU KOSMETIK) COA BGC/L73/23",29053200 +What is the hs code for DL ALPHA TOCOPHEROL (BHN BAKU KOSMETIK) COA 01230718ES,29362800 +What is the hs code for SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA L202312-026,35040000 +What is the hs code for MACKAM C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 12874-1,34024990 +What is the hs code for OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM..(BHN BAKU PEWARNA TABLET)CAS 57-50-1,38249999 +What is the hs code for OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING ...(BHN BAKU PEWARNA TABLET) CAS 121786-16-1,38249999 +What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA743794,39061090 +What is the hs code for OPADRY (R) KB LOW VISCOSITY FILM COATING SYSTEM..(BHN BAKU PEWARNA TABLET)CAS 151-21-3,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA744015,39061090 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM Y-1-7000..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 21K58794..(BHN BAKU PEWARNA TABLET)CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for PIGMENT BLEND (R) PB-66511 BROWN (BHN BAKU PEWARNA TABLET)COA GA744017,32151990 +What is the hs code for MECOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/1123059,29362600 +What is the hs code for SERASENSE SF 2 (BAHAN BAKU SUPLEMEN) COA SA30327063,39100090 +What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2304321918,29372900 +What is the hs code for VALERIAN DRY HYDR. EXTR. (BAHAN BAKU SUPLEMEN) COA 23B0028600,13021990 +What is the hs code for VALERIAN DRY HYDR. EXTR. (BAHAN BAKU SUPLEMEN) COA 23B0028700,13021990 +What is the hs code for SILYMARINPHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23B0034200,13021950 +"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92310355,XW92310356",21069059 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12306007,29362900 +"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00844849,VE00847146,VE00847148",29420000 +"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000215652,0000215653",29362900 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101854523,17021100 +What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334920 S/D B3349202,29419000 +What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU SUPPLEMEN) COA 23E2303,28399000 +What is the hs code for SUPPOCIRE BM PELLETS (BHN BAKU SUPPLEMEN) COA 23E44209,28399000 +What is the hs code for SUPPOCIRE AM PELLETS (BHN BAKU SUPPLEMEN) COA 23E1708,28399000 +What is the hs code for SUPPOCIRE A PELLETS (BHN BAKU SUPPLEMEN) COA 23E3406,28399000 +What is the hs code for ALUMINUM HYDROXIDE GEL USP BARCROFT TM LV13 (BHN BAKU SUPPLEMEN) COA 102313075,28183000 +"What is the hs code for ALUMINUM HYDROXIDE GEL USP BARCROFT TM LV13 (BHN BAKU SUPPLEMEN) COA 102313075, SAMPLE NO COMME",28183000 +What is the hs code for CROSPOVIDONE XL (BHN BAKU SUPPLEMEN) COA PP230914XL-10,39059990 +What is the hs code for SUCRALOSE (BHN BAKU OBAT) COA 23082601,29321400 +What is the hs code for OXOMEMAZINE HYDROCHLORIDE (BHN BAKU OBAT) COA HXHCPR002,29343000 +"What is the hs code for PARACETAMOL USP43 (BHN BAKU OBAT) COA 2352721,2352744,2311574",29242930 +"What is the hs code for CARDBOARD DRUM, PRICE FOR CUSTOM ONLY",48192000 +"What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334904,B334917,B334919,B334920",29419000 +"What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334913,B334914,B334917,B334918",29419000 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O66912..(BHN BAKU PEWARNA TABLET) COA GA744635,39061090 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007..(BHN BAKU PEWARNA TABLET) COA GA744610,39061090 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650035..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET)CAS 121786-16-1,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B28796..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620038..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620023..(BHN BAKU PEWARNA TABLET)CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55384..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464438866,39123900 +What is the hs code for ETHOCEL STANDARD 10 PREMIUM.. (BHN BAKU PEWARNA TABLET) COA 2534248988,39123900 +What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464207196,39123900 +What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464438852,39123900 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB23040706,29362100 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB22080266,29362800 +"What is the hs code for SODIUM STARCH GLYCOLATE USP (BAHAN BAKU OBAT) COA KCBA0029 S/D KCBA0031,JCBA0013",29420000 +What is the hs code for CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA MCDA0020,39123100 +"What is the hs code for SODIUM STARCH GLYCOLATE BP (BAHAN BAKU OBAT) COA LCAA0045,MCAA0047",29420000 +"What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA 23100153,23100366",29391900 +What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA 2302420101,29419000 +What is the hs code for VITAMIN PREMIX FOR MARGARINE MY15-0027 (BHN BAKU SUPPLEMEN) COA MY62312067,21069059 +What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) CAS 233683-84-6,38249999 +What is the hs code for B-CAROTENE 1PCT CWS/M (BHN BAKU MAKANAN) COA UT23020005,32041800 +What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 2312043T,39100020 +What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 2312043T,39100020 +What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 2312043T,39100020 +What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 2312043T,39100020 +What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 2312043T,39100020 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) COA,13021990 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA,13021990 +What is the hs code for GREENSIL (BHN BAKU KOSMETIK) CAS 91771-32-3,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6,38249999 +What is the hs code for ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (SB) (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for OLIVE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for OLIVE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA,13021990 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA,13021990 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA,13021990 +What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6,38249999 +What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for TAMANOL BIO IL (BHN BAKU KOSMETIK) CAS 68956-68-3,38249999 +What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104314023,17021100 +What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103863623,17021100 +What is the hs code for MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103152523,17021100 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101854623,17021100 +What is the hs code for GRANULAC (R) 70 (BHN BAKU OBAT) COA L101843823,17021100 +What is the hs code for SODIUM ACID PYROPHOSPHATE FOOD GRADE (BHN BAKU MAKANAN) COA 9231121,28353990 +"What is the hs code for SODIUM ACETATE ANHYDROUS POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3122829",29152910 +What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100MESH (BHN BAKU SUPLEMEN) COA 3AX2311024,29181400 +What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBNM230433,29221990 +What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5,38249999 +What is the hs code for METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/13120727,29332900 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for CLAIR BLANCHE-III (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 231857,13021990 +What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 231090,13021990 +What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 231643,13021990 +What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 231278,13021990 +What is the hs code for HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-011373,13021990 +What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP2231205,39139090 +What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP2231205,39139090 +"What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012333,031823",13021990 +What is the hs code for HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-060693,13021990 +What is the hs code for HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-012773,13021990 +What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA NAH112,28321000 +What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N7L103,28321000 +"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-050493,072123",13021950 +What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-072123,13021950 +What is the hs code for HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-012773,13021990 +What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-110903,13021990 +What is the hs code for HYUNDAI BIOLAND PF CHERRY BLOSSOM (BHN BAKU KOSMETIK) COA PSSBD-021923,13021950 +What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-072123,13021950 +What is the hs code for LEUCOSELECT PHYTOSOME (BHN BAKU KOSMETIK) CAS 84929-27-1,38249999 +What is the hs code for AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 162889,15159011 +What is the hs code for TSPL-30-ID (1KG) (BHN BAKU KOSMETIK) CAS 13475-82-6,38249999 +"What is the hs code for MEG-3 2718EE (BHN BAKU SUPPLEMEN) COA TS00021968,TS00022622",29362500 +What is the hs code for MEG-3 2718EE (BHN BAKU SUPPLEMEN) COA TS00021968,29362500 +"What is the hs code for DRIED ALUMINUM HYDROXIDE, SORBITOL BLEND BARCROFT TM 0501 (BHN BAKU OBAT) COA 102360004",28183000 +"What is the hs code for MAGNESIUM HYDROXIDE USP BARCROFT TM 5300 (BHN BAKU OBAT) COA 102369011,102369012",28161000 +What is the hs code for ROSALITY TM (BHN BAKU KOSMETIK) CAS 5343-92-0,38249999 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) CAS 8002-43-5,38249999 +What is the hs code for ECOGEL TM (BHN BAKU KOSMETIK) CAS 85711-58-6,38249999 +What is the hs code for DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834012184P,38249999 +What is the hs code for WASTAR TM LAVENDER (BHN BAKU KOSMETIK) CAS 90063-37-9,38249999 +What is the hs code for PRO-LIPO TM NEO (BHN BAKU KOSMETIK) CAS 504-63-2,38249999 +What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) CAS 8002-43-5,38249999 +What is the hs code for ROSALITY TM (BHN BAKU KOSMETIK) CAS 5343-92-0,38249999 +What is the hs code for WASTAR TM PINK BERRY (BHN BAKU KOSMETIK) CAS 9050-36-6,38249999 +What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) COA 312310,39100020 +What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4,38249999 +What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9,38249999 +What is the hs code for KF-6048 (16KG) (BHN BAKU KOSMETIK) CAS 144243-53-8,38249999 +"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG231013,MCVG231020",29362700 +What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829012074P,29224900 +What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for LANACHRYS 2B PF (PRESERVATIVE) (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) CAS 37350-42-8,38249999 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) CAS 37350-42-8,38249999 +What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for MELANOSTATINE TM 5 BG (50PPM) (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for TYROSTAT TM 11(BHN BAKU KOSMETIK) COA 784022021P,13021990 +What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-002-A,13021990 +What is the hs code for OPALUX (R) OPAQUE COLOR COATING CONCENTRATE... (BHN BAKU PEWARNA TABLET) COA DT754310,32151990 +What is the hs code for OPAGLOS (R) TABLET CORE SEALANT PRODUCT... (BHN BAKU PEWARNA TABLET) COA TABLET CORE SEALANT PR,32151990 +What is the hs code for NUTRAFINISH (R) TIO2 FREE FILM COATING... (BHN BAKU PEWARNA TABLET) CAS 471-34-1,38249999 +"What is the hs code for MINERAL PREMIX MILK POWDER FOR ADULTS V2 (BHN BAKU MAKANAN) COA XW92311281,XW92311282",21069059 +What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW92311249 S/D XW92311251,21069059 +"What is the hs code for PX 103070 - C3 (BHN BAKU MAKANAN) COA XW92311295,XW92311294",21069059 +What is the hs code for B-CAROTENE 1PCT CWS/M (BHN BAKU MAKANAN) COA UT23020005,32041800 +What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL02301002,29362400 +"What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT23060012,UT23060013",29362900 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02303664,29362400 +What is the hs code for FOLIC ACID (BHN BAKU KOSMETIK) COA UT22120266,29362400 +What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP12306007,29362900 +"What is the hs code for PARSOL (R) SHIELD (BHN BAKU KOSMETIK) COA 0823010638,0823010639",29420000 +What is the hs code for TILAMAR ® PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA 23D0926831,29420000 +What is the hs code for PARSOL ZX (BHN BAKU KOSMETIK) COA 200206012,29420000 +"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323021190,0323021191",29420000 +What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020060,29420000 +What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0423040118,29420000 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT23100066,29362800 +What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323021191,29420000 +"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323021191,0323021192",29420000 +"What is the hs code for DEXAMETHASONE BP2010/USP42 (BHN BAKU OBAT) COA NED231109,NED231112",29372200 +What is the hs code for PREDNISONE USP2023 (BHN BAKU OBAT) COA NPD231102,29372100 +What is the hs code for BETAMETHASONE BP2020/USP2022 (BHN BAKU OBAT) COA XBE230402,29372200 +What is the hs code for CYPROTERONE ACETATE MICRONIZED (BHN BAKU OBAT) COA ND2190M1,29372900 +What is the hs code for ETORIXOCIB (BHN BAKU OBAT) COA ETC-P/23004,29333990 +"What is the hs code for DRIED ALUMINUM HYDROXIDE, SORBITOL BLEND BARCROFT TM 0501 (BHN BAKU OBAT) COA 102360004",28183000 +What is the hs code for JAGUAR C162 SGI (BHN BAKU KOSMETIK) CAS 71329-50-5,38249999 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2528862,38210090 +What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3018648,38210090 +What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2314938,38210090 +What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2314938,38210090 +What is the hs code for BACTO CASAMINO ACIDS TECHNICALS 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2137791,38210090 +What is the hs code for AMITOSE R (BHN BAKU KOSMETIK) COA LKG,13021990 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7,38249999 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0,38249999 +What is the hs code for PROMOIS SILK-1000 (BHN BAKU KOSMETIK) CAS 96690-41-4,38249999 +What is the hs code for PROMOIS EU-118(IS) (BHN BAKU KOSMETIK) CAS 111174-63-1,38249999 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7,38249999 +What is the hs code for B-CAROTENE 1PCT CWS/M (BHN BAKU MAKANAN) COA UT23020005,32041800 +"What is the hs code for 1,3-BUTYLENE GLYCOL (NATUROBG) (BHN BAKU KOSMETIK) COA BGC/L73/23",29053200 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0055700,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0064900,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0065000,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0077600,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0077700,13021990 +What is the hs code for SODIUM VALPROATE (BAHAN BAKU OBAT) COA 458724,29159090 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM.. (BHN BAKU PEWARNA TABLET) COA GA745781,39061090 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51469.. (BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-22-.. (BHN BAKU PEWARNA TABLET)CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for ACRYL-EZE (R) II AQUEOUS ACRYLIC ENTERIC... (BHN BAKU PEWARNA TABLET) COA GA745867,39061090 +What is the hs code for OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING SYSTEM..(BHN BAKU PEWARNA TABLET)CAS 121786-16-1,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 02F52182.. (BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-.. (BHN BAKU PEWARNA TABLET)CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING SYSTEM..(BHN BAKU PEWARNA TABLET)CAS 121786-16-1,38249999 +"What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M537726,M537727,M537746,M537747",29411019 +What is the hs code for PURIMOX POWDER (BHN BAKU OBAT) COA M486903,29411019 +What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9,38249999 +What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9,38249999 +What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9,38249999 +What is the hs code for EUXYL K 100 CAN 10 KG (BHN BAKU KOSMETIK) CAS 55965-84-9,38249999 +What is the hs code for EUXYL K 720 CAN 10 KG (BHN BAKU KOSMETIK) CAS 65-85-0,38249999 +What is the hs code for EUXYL K 940 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6,38249999 +What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9,38249999 +What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9,38249999 +What is the hs code for SENSIDIN DO CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9,38249999 +What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6,38249999 +What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN551107,35051010 +What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN551144,35051010 +What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN551135,35051010 +What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN551134,35051010 +What is the hs code for CATECHINS (TEA EXTRACT) SUNPHENON 90LB (BHN BAKU KOSMETIK) COA 208271,21012020 +What is the hs code for CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) COA 307041,21012020 +What is the hs code for EXTRAPONE (R) SEA EXTRACTS N (BHN BAKU KOSMETIK) COA 10300041,13021950 +What is the hs code for EXTRAPONE (R) GINSENG (BHN BAKU KOSMETIK) COA 10300053,13021950 +What is the hs code for PHYTOCONCENTROLE (R) CAMOMILE (BHN BAKU KOSMETIK) COA 10300054,13021950 +What is the hs code for OPADRY (R) TF TIO2 FREE MOISTURE BARRIER FILM..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +"What is the hs code for PARACETAMOL USP43 (BHN BAKU OBAT) COA 2352884,2352930,2352940",29242930 +"What is the hs code for METRONIDAZOLE USP (BHN BAKU OBAT) COA 0182312135,0182312139,0812312146 S/D 0812312148,01823121",29332900 +What is the hs code for BOSWELLIA SERRATA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 23T0081800,13021950 +What is the hs code for GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 23T0078700,13021950 +What is the hs code for STERNFINE 100 N (BHN BAKU MAKANAN) COA N513Z21197,29232011 +What is the hs code for ATORVASTATIN CALCIUM (BHN BAKU OBAT) COA M114346,29339990 +What is the hs code for LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LG051123,39123900 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2335015,38210090 +What is the hs code for BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3300589,38210090 +"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3088838,...",38210090 +What is the hs code for BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3137940,38210090 +What is the hs code for HU NAIVE/MEM T CELL PANEL 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3319344,38210090 +"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3194539,..",38210090 +What is the hs code for VIAL SAL O ANTIS GRP B FTR 1/4/5/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3159721,38210090 +What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2305239,38210090 +"What is the hs code for BOTTLE NUTRIENT AGAR 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2293166,3096333,..",38210090 +"What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2172755,2271424,",38210090 +What is the hs code for BOTTLE DIFCO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3242810,38210090 +"What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3096321,3212779",38210090 +What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2208259,38210090 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3150804,38210090 +"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3191345,3234562",38210090 +What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2208223,38210090 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2236789,38210090 +What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3114643,38210090 +What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3158193,38210090 +What is the hs code for BOTTLE MACCONKEY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1172869,38210090 +What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3293058,38210090 +What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 3221348,38210090 +What is the hs code for BOTTLE TODD HEWITT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2256043,38210090 +"What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2307836,2309035",38210090 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2047633,38210090 +What is the hs code for BOTTLE MYP AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2276880,38210090 +What is the hs code for BOTTLE OXFORD MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2095234,38210090 +What is the hs code for BOTTLE NUTRIENT BROTH 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2053778,38210090 +What is the hs code for BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1264672,38210090 +What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3277679,38210090 +What is the hs code for PAIL LB BROTH MILLER LURIA B 2 KG (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2299316,38210090 +What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3158193,38210090 +What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01F230M,38210090 +What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3137222,38210090 +What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 3168376,38210090 +What is the hs code for BOTTLE GELATINE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2343200,38210090 +What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3150804,38210090 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3228048,38210090 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3221374,38210090 +What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3206413,38210090 +What is the hs code for PAIL DIFCO AGAR 10KG(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3262090,38210090 +What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3168382,38210090 +What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3277679,38210090 +What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3150802,38210090 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3293443,38210090 +What is the hs code for BOTTLE MYCOPLASMA BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3114496,38210090 +What is the hs code for BOTTLE SALICIN 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 3114297,38210090 +"What is the hs code for BOTTLE RAPPAPORT VASSILIDAS MSRV 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 3107304",38210090 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20231225,17029019 +What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000215653,29362900 +"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000215653,0000216011,0000216232",29362900 +What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT22070226,29362100 +What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000216232,29362900 +What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02211813,29362400 +What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000216232,29362900 +What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT23100066,29362800 +What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000216232,29362900 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02207101,29362900 +What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT22070226,29362100 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02207101,29362900 +What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) CAS 1119-97-7,38249999 +What is the hs code for HPA82 PURE SENSITIVE (BHN BAKU KOSMETIK) COA 3524944,33029000 +"What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 232422,240154",13021990 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 00060124 S/D 00130124,29359000 +"What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 00150124, 00160124",29359000 +What is the hs code for ESOMEPRAZOLE SODIUM STERILE (BHN BAKU OBAT) COA SI/EPZ/00201223,29333990 +What is the hs code for MOMETASONE FUROATE MICRONIZED (BHN BAKU OBAT) COA NC2023,29372200 +What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA MLAH0491223,29341000 +"What is the hs code for TRAMADOL HCL EP/JP (BHN BAKU OBAT) COA T7396,V7457",29225090 +What is the hs code for BISOPROLOL FUMARATE USP (BHN BAKU OBAT) COA LT-OBFA/005/23-24,29221990 +What is the hs code for ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2311221,32030010 +What is the hs code for OPACODE (R) MONOGRAMMING INK S-1-180000 WHITE (BHN BAKU PEWARNA TABLET) COA WP876966,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C YELLOW #6/SUNSET... (BHN BAKU PEWARNA TABLET) COA WP868324:BC3385,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5406 FD&C RED #40/ALLURA R... (BHN BAKU PEWARNA TABLET) COA WP866896:BC2990,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5396 ERYTHROSINE ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP860981:1,32151990 +What is the hs code for STARTAB (R) DIRECTLY COMPRESSIBLE STARCH 4001 (BHN BAKU PEWARNA TABLET) COA WP873593,35051010 +What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) COA 312313,39100020 +What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4,38249999 +What is the hs code for KF-7312K (16KG) (BHN BAKU KOSMETIK) CAS 562705-01-5,38249999 +What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6,38249999 +What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) COA 312311,39100020 +What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4,38249999 +What is the hs code for KSG-210 (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9,38249999 +What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6,38249999 +What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9,38249999 +What is the hs code for CETIRIZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA 23026CZ6RII,29335990 +What is the hs code for RAJOL WP80/LOREAL LIGHT LIQUID PARAFFIN-BP/LIGHT... (BHN BAKU KOSMETIK) COA 1000240001,27101990 +What is the hs code for CITRIC ACID ANHYDROUS 30-100MESH BP/USP/FCC/E330 (BHN BAKU SUPLEMEN) COA 6AX2312043,29181400 +What is the hs code for CALCIUM CARBONATE VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 122302553,28365010 +What is the hs code for SORBITOL SORBITAN SOLUTION NF SORBITOL SPECIAL(R) MDF 85 (BHN BAKU OBAT) COA 122302891,29054400 +What is the hs code for ETHOCEL STANDARD 20 PREMIUM.. (BHN BAKU PEWARNA TABLET) COA 2534283157,39123900 +What is the hs code for ETHOCEL STANDARD 20 PREMIUM.. (BHN BAKU PEWARNA TABLET) COA 2534283153,39123900 +"What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT23070049,UT23070050",29362100 +What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT23070229,29362100 +What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT23050007,29362500 +What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02308791,29362700 +What is the hs code for BETATAB 20% S (BHN BAKU SUPPLEMEN) COA UT23050002,32041800 +What is the hs code for FLORAGLO LUTEIN 5% CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT23090028,32030010 +"What is the hs code for VITAMIN A WATER-MISCIBLE, TYPE 100 (BHN BAKU SUPPLEMEN) COA UT23070067",29362100 +What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT23090067,29362100 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20240103,17029019 +What is the hs code for FLUNARIZINE DIHYDROCHLORIDE BP/EP ( BAHAN BAKU OBAT ) COA FLU/11231020,29335990 +What is the hs code for LORATADINE USP (BHN BAKU OBAT) COA BLRD/2308038,29333990 +What is the hs code for LIPOID S 20 (BHN BAKU SUPPLEMEN) COA 572000-2220141,29232011 +What is the hs code for ECCO MILK PROTEIN CRISPS 90 (BHN BAKU MAKANAN) COA 534231,35040000 +What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) CAS 1119-97-7,38249999 +"What is the hs code for THEOPHYLLINE ANHYDROUS (BHN BAKU OBAT) COA 23241, 23244 S/D 23246",29395900 +"What is the hs code for CAFFEINE (BHN BAKU OBAT) COA 23091737, 23091748, 23091753, 23091757, 23091758, 23091771",29393000 +"What is the hs code for ACETAMINOPHEN (PARACETAMOL) (BHN BAKU OBAT) COA 202303022A,202312114A,202312115A",29242930 +What is the hs code for MOXIFLOXACIN HCL USP (BHN BAKU OBAT) COA MOX/23120002,29334990 +What is the hs code for NYSTATIN POWDER ROW GRADE (BHN BAKU OBAT) COA C114777,29419000 +What is the hs code for LIFE'SDHA(TM) S35-O300 (BHN BAKU SUPPLEMEN) COA VY00519605,29362500 +What is the hs code for REGENIGHT TM (BHN BAKU KOSMETIK) COA 230309,38231990 +What is the hs code for SCB MACADAMIA OIL (BHN BAKU KOSMETIK) COA 230409,15159011 +What is the hs code for SKINECTURA TM (BHN BAKU KOSMETIK) COA 231203,13021990 +What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 231106,13021990 +What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) CAS 233683-84-6,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING (BHN BAKU PEWARNA TABLET)CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011..(BHN BAKU PEWARNA TABLET)CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650035..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) KB LOW VISCOSITY FILM COATING SYSTEM..(BHN BAKU PEWARNA TABLET)CAS 151-21-3,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 21K58794..(BHN BAKU PEWARNA TABLET)CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G60929..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 02F52182..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86674..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for MACKAM C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 14487-1,34024990 +What is the hs code for MACKAM C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 14487-1,34024990 +"What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00847148,VE00847149",29420000 +What is the hs code for PARSOL ZX (BHN BAKU KOSMETIK) COA 220512022,29420000 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0523060021,29420000 +"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323021405,0323021406",29420000 +"What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS4871023,HS4881023",29420000 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23050162,29362800 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230510,29362500 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230510.,29362500 +What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI23040013,29362900 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT23070179,29362900 +What is the hs code for PREMIX VMP JELLY (BHN BAKU MAKANAN) COA XW92312018,21069059 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12306007,29362900 +What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000214336,29362900 +What is the hs code for ALUMINUM HYDROXIDE GEL USP BARCROFT TM VISCO-9 (BHN BAKU SUPPLEMEN) COA 102302046,28183000 +"What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG231125,MCVG231201,MCVG231208",29362700 +What is the hs code for DOCUSATE SODIUM (BAHAN BAKU OBAT) COA SD2123163,29171900 +"What is the hs code for METAMIZOLE SODIUM REGULAR GRADE (BHN BAKU OBAT) COA 23081402,23101696,23101697,23111737",29331900 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB23070730 S/D WB23070732,29362100 +What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20230902,29362800 +What is the hs code for VC SODIUM ASCORBATE REGULAR (BHN BAKU MAKANAN) COA HPN2305093 S/D HPN2305095,29362700 +What is the hs code for DEXTROSE ANHYDROUS (BHN BAKU PAKAN HEWAN) COA XW202401001,17023010 +What is the hs code for SUGLETS (R) SUGAR SPHERES PF006 500/600 (30/35 MESH)... (BHN BAKU PEWARNA TABLET) COA ST519819,32151990 +What is the hs code for NUTRALIPIDS TYPE HY (BHN BAKU KOSMETIK) COA 3506300139,15179090 +What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2311922379,29362600 +What is the hs code for FLOWER ACIDS (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for SUNFIBER AG (BHN BAKU MAKANAN) COA 311241,13021950 +What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2023111002,21012020 +What is the hs code for NAI-WHITE A (BHN BAKU KOSMETIK) COA 2310F02103,32061110 +What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ30617016,29420000 +What is the hs code for VITAMIN B12 CRYST FOOD GRADE (BHN BAKU KOSMETIK) COA 012304002,29362600 +"What is the hs code for PARACETAMOL USP43 (BHN BAKU OBAT) COA 235982,2352997,2353000",29242930 +What is the hs code for 4-HYDROXYACETOPHENONE (BHN BAKU KOSMETIK) COA 202312029,29145000 +What is the hs code for SPECWHITE VCE (BHN BAKU KOSMETIK) COA 20230704,29362700 +What is the hs code for MOPD (BHN BAKU KOSMETIK) COA 231115001,29242990 +What is the hs code for MANNITOL USP/EP MANNOGEM(R) EZ SPRAY DRIED (BHN BAKU OBAT) COA 122303426,29054300 +What is the hs code for PHARMABURST (R) C1 (BHN BAKU OBAT) COA 122302947,21069099 +"What is the hs code for FRUCTILIANCE (BHN BAKU KOSMETIK) COA PO00041802,PO00043575",13021990 +What is the hs code for L-CARNITINE (EP GRADE)(BHN BAKU KOSMETIK) COA 10100120230248,29239000 +What is the hs code for METHOCEL E15 PREMIUM LV HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2444226864,39123900 +What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464207168,39123900 +What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA D180M1P002,39123900 +What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464207161,39123900 +What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464207176,39123900 +What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA D180M23002,39123900 +What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464207167,39123900 +What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464207162,39123900 +What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2444374841,39123900 +What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464207178,39123900 +What is the hs code for METHOCEL E4M PREMIUM LV HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464299832,39123900 +What is the hs code for KF-54HV (18KG) (BHN BAKU KOSMETIK) COA 401091,39100020 +What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) COA 312314,39100020 +What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9,38249999 +What is the hs code for KSG-210 (16KG) (BHN BAKU KOSMETIK) COA 311674,38249999 +What is the hs code for KSP-101 (15KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6,38249999 +What is the hs code for KSP-300 (1KG) (BHN BAKU KOSMETIK) CAS 9002-92-0,38249999 +What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) COA 312340,39100020 +What is the hs code for SODIUM STARCH GLYCOLATE USP (BAHAN BAKU OBAT) COA LCBA0043 S/D LCBA0046,29420000 +What is the hs code for CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ADDA0003,39123100 +"What is the hs code for SODIUM STARCH GLYCOLATE BP (BAHAN BAKU OBAT) COA MCAA0056,MCAA0057",29420000 +What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA 2302420103,29419000 +What is the hs code for CARBAZOCHROME SODIUM SULFONATE ORAL G (BHN BAKU OBAT)COA AC30617/30719,29339990 +What is the hs code for BETAMETHASONE VALERATE USP 43 (BHN BAKU OBAT) COA APL/BV/01009/A-24,29372200 +What is the hs code for DESONIDE MICRONIZED (BHN BAKU OBAT) COA ND1569M,29372900 +What is the hs code for MATCHA (BHN BAKU KOSMETIK) CAS 84650-60-2,38249999 +What is the hs code for PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3512810,33029000 +What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 2401003T,39100020 +What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 196037,28399000 +What is the hs code for LABRASOL BF (BHN BAKU SUPPLEMEN) COA 198718,28399000 +What is the hs code for LEMON SECRETS (LEMON 40° BRIX) CSB (BHN BAKU KOSMETIK) COA 01/23GL4,28399000 +"What is the hs code for LEMON SECRETS (LEMON 40° BRIX) ECH (BHN BAKU KOSMETIK) COA 01/23GL4, SAMPLE NO COMMERCIAL VALUE",28399000 +What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT23080012,29362500 +What is the hs code for B-CAROTENE 30% FS (BHN BAKU MAKANAN) COA UE02307069,32041800 +"What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23040136,UT23070233,UT23080261",29362800 +"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT23100075,UT23100076",29362800 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT23070187,29362400 +"What is the hs code for B-CAROTENE 30% FS (BHN BAKU MAKANAN) COA UE02307069,UE02307070",32041800 +What is the hs code for PIGMENT BLEND (R) PB-21158 GREEN.. (BHN BAKU PEWARNA TABLET) COA GA747541,32151990 +What is the hs code for PIGMENT BLEND (R) PB-21158 GREEN.. (BHN BAKU PEWARNA TABLET) COA GA747541,32151990 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F19250...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50555,29061100 +What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA 8MT2312144,30032000 +What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA MTPFP23013,29372900 +What is the hs code for SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202401-016,35040000 +What is the hs code for SELOHVITA C (BHN BAKU SUPPLEMEN) COA 3138622,28429010 +"What is the hs code for ZINC SULFATE 1-HYDRATE, POWDER,USP43 (BHN BAKU OBAT) COA 3117412",28332920 +"What is the hs code for ZINC SULFATE 1-HYDRATE, POWDER,USP43 (BHN BAKU OBAT) COA 3138160",28332920 +"What is the hs code for FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU OBAT) COA 3137011",28332920 +"What is the hs code for SODIUM FEREDETATE, POWDER, BP2023 (BHN BAKU OBAT) COA 3130632",29224900 +"What is the hs code for POTASSIUM L-ASPARTATE 0,5 HYDRATE (BHN BAKU OBAT) COA 3138689",29224900 +"What is the hs code for FERROUS GLUCONATE, POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3139454",29181600 +"What is the hs code for FERROUS GLUCONATE, POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3139073",29181600 +"What is the hs code for FERROUS FUMARATE, FINE POWDER (BHN BAKU MAKANAN) COA 3133483",29171900 +What is the hs code for SELOHVITA C (BHN BAKU SUPPLEMEN) COA 3139833,28429010 +What is the hs code for TRICALCIUM CITRATE 4-HYDRATE POWDER (BHN BAKU OBAT) COA 3123568,29181590 +"What is the hs code for COPPER SULFATE, POWDER, PH.EUR.11.ED. (BHN BAKU SUPLEMEN) COA 3138442",28332500 +"What is the hs code for COPPER SULFATE, POWDER, PH.EUR.11.ED. (BHN BAKU SUPLEMEN) COA 3138445",28332500 +"What is the hs code for MAGNESIUM SULFATE DRIED, POWDER... (BHN BAKU OBAT) COA 3130180",28332100 +What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 202342,29332900 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229.. (BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55041...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA747651,39061090 +"What is the hs code for B-CAROTENE 30% FS (BHN BAKU MAKANAN) COA UE02309072,UE02309073",32041800 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for CLAIR BLANCHE-III (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for DOKUDAMI LIQUID B (BHN BAKU KOSMETIK) COA 231637,13021990 +What is the hs code for HAPPICLOV (BHN BAKU KOSMETIK) COA 231266,13021990 +What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 232477,29329900 +What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 232091,13021990 +What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 231090,13021990 +What is the hs code for YUZU CERAMIDE B (BHN BAKU KOSMETIK) COA 231178,13021990 +What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 240154,13021990 +What is the hs code for CLAIR BLANCHE-III (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 240029,13021990 +What is the hs code for VEGANPROTEOGLYCAN (BHN BAKU KOSMETIK) COA 231763,13021990 +"What is the hs code for 1,3-BUTYLENE GLYCOL, COSMETIC QUALITY(BHN BAKU KOSMETIK) COA P0623927BC",29053200 +What is the hs code for EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300034,13021950 +"What is the hs code for CAFFEINE BP/EP/USP/CEP(BHN BAKU OBAT) COA 23081515,23081516,23081544,23081674,23081676,23081683",29393000 +What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512335,47069200 +"What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512342,G02512345",47069200 +What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512335,47069200 +"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA ROA243234,ROA320237,ROA321234,...",28363000 +What is the hs code for ABYSSINE TM PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829012074P,29224900 +What is the hs code for GREYVERSE TM (BHN BAKU KOSMETIK) COA 833012061P,29224900 +What is the hs code for HELIOGEL TM (BHN BAKU KOSMETIK) CAS 25549-84-2,38249999 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) CAS 37350-42-8,38249999 +What is the hs code for PROGELINE TM (BHN BAKU KOSMETIK) COA 820052242P,29224900 +"What is the hs code for DRIED ALUMINUM HYDROXIDE, SORBITOL BLEND..(BHN BAKU OBAT) COA 102360003",28183000 +"What is the hs code for COENZYM Q10 (FOR COSMETIC USE, FERMENTATIVE) (BHN BAKU KOSMETIK) COA 51-2208176",29146200 +"What is the hs code for MIRASIL DM350 A2 (BHN BAKU KOSMETIK) COA 2352WKWB15,2352WKWC15",39100090 +What is the hs code for AMITOSE R (BHN BAKU KOSMETIK) COA LLH,13021990 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7,38249999 +What is the hs code for PROMOIS SILK-1000 (BHN BAKU KOSMETIK) CAS 96690-41-4,38249999 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0,38249999 +"What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 23100619,23100626,23100670",29395900 +What is the hs code for STARTAB (R) DIRECTLY COMPRESSIBLE STARCH 4001.. (BHN BAKU PEWARNA TABLET) COA WP874103,35051010 +What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C YELLOW #6/SUNSET...(BHN BAKU PEWARNA TABLET) COA WP862651:BC0388,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5177 FD&C YELLOW #5/TARTRAZ...(BHN BAKU PEWARNA TABLET) COA WP865817:BC2551,32151990 +What is the hs code for MANNITOL USP/EP MANNOGEM® EZ SPRAY DRIED (BHN BAKU OBAT) COA 122303427,29054300 +"What is the hs code for HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-100563,112383",13021990 +What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-020883,13021990 +What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1240123,39139090 +What is the hs code for HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-060693,13021990 +What is the hs code for HYUNDAI BIOLAND NEWAPLE (BHN BAKU KOSMETIK) COA NWPB-022093,13021990 +What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-022214,39139090 +What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N94107,28321000 +What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA NB6112,28321000 +What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5,38249999 +What is the hs code for HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-011373,13021990 +What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-020493,13021950 +What is the hs code for HYUNDAI BIOLAND YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) CAS 233683-84-6,38249999 +What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (B) (BHN BAKU KOSMETIK) COA AMIBD-082693,29224900 +What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-072123,13021950 +What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-072123,13021950 +What is the hs code for ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2311221,32030010 +What is the hs code for IMERCARE 230P SCRUB OR (BHN BAKU KOSMETIK) COA 25-10-23,38029090 +What is the hs code for SILVER CITRATE SOLUTION 2500PPM (BHN BAKU KOSMETIK) COA CPS23-0844,28432900 +What is the hs code for LOTUS FROM VIETNAM ORGANIC OILY EXTRACT (BHN BAKU KOSMETIK) CAS 73398-61-5,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6,38249999 +What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230803,13021990 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for INCA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK) CAS 68956-68-3,38249999 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIE230802,13021990 +What is the hs code for BETAHISTINE MESYLATE EP (BHN BAKU OBAT) COA EDBHM23007,29333990 +What is the hs code for PRO-LIPO TM NEO (BHN BAKU KOSMETIK) CAS 504-63-2,38249999 +What is the hs code for DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834012184P,29224900 +What is the hs code for CANADIAN WILLOWHERB TM 5% CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for LANABLUE TM PARABEN FREE (BHN BAKU KOSMETIK) CAS 50-70-4,38249999 +What is the hs code for WASTAR TM LAVENDER (BHN BAKU KOSMETIK) CAS 90063-37-9,38249999 +What is the hs code for CELLOSIZE TM TEXTURE F4M HYDROXYPROPYL... (BHN BAKU KOSMETIK) COA F410LB8D31,39123900 +What is the hs code for MIRANOL ULTRA C-32 MB 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP401055MB,34024990 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP24014338,XP24014339",29211900 +What is the hs code for SERASENSE SF 5 (BAHAN BAKU SUPLEMEN) COA SA40122077,39100090 +What is the hs code for GUAIFENESIN USP (B. BAKU OBAT) COA GGE-2308079 S/D GGE- 2308081,29094900 +What is the hs code for MIAMI SCG(S) (BHN BAKU KOSMETIK) COA 240112B5,34023990 +What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT23090207,29362400 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ31012229,29362200 +What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT23090207,29362400 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101855023,17021100 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101855023,17021100 +What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWDER... (B.BAKU KOSMETIK) CAS 65497-29-2,38249999 +"What is the hs code for SODIUM CARBONATE IPH (BHN BAKU SUPPLEMEN) COA DOC3392321,DOC3112321",28363000 +What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP12306007,29362900 +What is the hs code for PARSOL (R) SHIELD (BHN BAKU KOSMETIK) COA 0823010640,29420000 +What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0423040118,29420000 +What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0046906,29362500 +What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000216273,29362900 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ30213041,29362200 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02310380,29362800 +"What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW92312069,XW92312070",21069059 +What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040127,29420000 +"What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0523060065,0523060066,0523060079",29420000 +"What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12306007,OP12306032",29362900 +"What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02306076,TL02306077",29362400 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT23050013,29362800 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT23060177,29362900 +"What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT23040228,UT23040229",29362100 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02309071,32041800 +"What is the hs code for VITAMIN A WATER-MISCIBLE, TYPE 100 (BHN BAKU SUPPLEMEN) COA UT23110068",29362100 +What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02309071,32041800 +"What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02308947,TL02308958",29362700 +What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA ND2850M,29372200 +"What is the hs code for OPACODE S-1-8114 BLACK (BHN BAKU PEWARNA TABLET) COA TKL71056, SAMPLE NO COMMERCIAL VALUE",32151990 +What is the hs code for SYN(R)-AKE (BHN BAKU KOSMETIK) COA UE02303003,29420000 +"What is the hs code for COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPPLEMEN) COA TL02311372",29362700 +"What is the hs code for VITAMIN A WATER-MISCIBLE, TYPE 100 (BHN BAKU SUPPLEMEN) COA UT23110068",29362100 +What is the hs code for BILBERRY(V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPPLEMEN) COA 23S0292500,13021990 +What is the hs code for BILBERRY(V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPPLEMEN) COA 23S0292500,13021990 +What is the hs code for VACCINIUM MYRTILLUS DRY EX. (BHN BAKU SUPLEMEN) COA 23S0078800,13021990 +What is the hs code for SERENOA REPENS PURIFIED EXT (BHN BAKU SUPLEMEN) COA 23S0098600,13021950 +What is the hs code for CENTELLA ASIATICA/PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 22S0097300,13021950 +What is the hs code for P. GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPPLEMEN) COA 23S0178700,13021990 +What is the hs code for CURCUMINOIDS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 23S0164408,13021950 +What is the hs code for VACC.MYRT./PINUS PIN. DRY EX (BHN BAKU SUPLEMEN) COA 23S0129300,13021990 +What is the hs code for SILYMARIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 23B0109100,13021950 +What is the hs code for SILYBIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 23B0106200,13021950 +What is the hs code for SILYBIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 23B0106000,13021950 +What is the hs code for STARTAB (R) DIRECTLY COMPRESSIBLE STARCH 4001.. (BHN BAKU PEWARNA TABLET) COA WP874103,35051010 +What is the hs code for LAKE PIGMENT HT (R) 5396 ERYTHROSINE ALUMINUM LAKE...(BHN BAKU PEWARNA TABLET) COA WP860981:1,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5177 FD&C YELLOW #5/TARTRAZ...(BHN BAKU PEWARNA TABLET) COA WP865823:BC3941,32151990 +What is the hs code for LAKE PIGMENT (R) 6010 D&C YELLOW #10 ALUMINUM ...(BHN BAKU PEWARNA TABLET) COA WP870802:BC5629,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5627 FD&C BLUE #2/INDIGO CA...(BHN BAKU PEWARNA TABLET) COA WP869522:BC4229,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5396 ERYTHROSINE ALUMINUM LAKE...(BHN BAKU PEWARNA TABLET) COA WP860981:1,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C YELLOW #6/SUNSET..(BHN BAKU PEWARNA TABLET) COA WP868324:BC3385,32151990 +What is the hs code for TEFOSE 63 BF (BHN BAKU SUPPLEMEN) COA 198235,28399000 +What is the hs code for LABRAFIL M 1944 CS BF (BHN BAKU SUPPLEMEN) COA 198640,28399000 +What is the hs code for TRANSCUTOL P BF (BHN BAKU SUPPLEMEN) COA 198205,28399000 +What is the hs code for COMPRITOL 888 ATO (BHN BAKU SUPPLEMEN) COA 198506,28399000 +What is the hs code for GELUCIRE 44/14 BF (BHN BAKU SUPPLEMEN) COA 196690,28399000 +What is the hs code for GELOIL SC BF (BHN BAKU SUPPLEMEN) COA 197910,28399000 +What is the hs code for LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 01/23GL4,28399000 +"What is the hs code for LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 01/23GL4, SAMPLE NO COMMERCIAL VALUE",28399000 +What is the hs code for JAGUAR HP 105 SGI 25KG CARDBOARD CARTON (BHN BAKU KOSMETIK) CAS 39421-75-5,38249999 +What is the hs code for PARSOL ZX (BHN BAKU KOSMETIK) COA 230210082,29420000 +"What is the hs code for PHARMACEUTICAL CASTOR OIL E.P (BHN BAKU KOSMETIK) COA 0000049092,0000049094",15152919 +What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) CAS 122-99-6,38249999 +What is the hs code for MECOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/1223066,29362600 +What is the hs code for LIPOID S 20 (BHN BAKU SUPPLEMEN) COA 572000-2220141,29232011 +What is the hs code for GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 23T0078700,13021950 +What is the hs code for COOLACT 10 (BHN BAKU KOSMETIK) COA T009032,29094900 +What is the hs code for VIAL ISOVITALEX ENRICHMENT 10ML 5 EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3284473,38210090 +What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3319761,38210090 +What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3319761,38210090 +What is the hs code for VIAL E COIL H ANTISERUM H7 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3068676,38210090 +What is the hs code for VIAL SAL O ANTISERUM POLY A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2300548,38210090 +"What is the hs code for VIAL SHIGELLA ANTIS POLY A1 LYOPHILIZED(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2335899",38210090 +What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2335855,38210090 +What is the hs code for VIAL E COLI O ANTISERUM O157 SEROL TEST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3166212,38210090 +What is the hs code for STAIN BUFFER FBS 500ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3289239,38210090 +What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3354146,38210090 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3257251,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3248119,38210090 +"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3227268,3338234",38210090 +"What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3200363,3200377,.",38210090 +What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3206413,38210090 +What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3272460,38210090 +What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3079261,38210090 +"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 3303852",38210090 +What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3107294,38210090 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3200342,38210090 +What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 3275384,38210090 +What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B03F081M,38210090 +What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3236876,38210090 +What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3236903,38210090 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3174570,38210090 +What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2313348,38210090 +"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3234562,3277645",38210090 +"What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 3303852",38210090 +What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 2221886,38210090 +"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2229544",38210090 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2143794,38210090 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2152796,38210090 +"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA TUK PENGEMBANGAN MIKRO ORGANISME), BATCH 3114494",38210090 +What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2256092,38210090 +What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 2034966,38210090 +What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3228048,38210090 +"What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3096242,321",38210090 +What is the hs code for BOTTLE TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3137222,38210090 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2158081,38210090 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3200342,38210090 +What is the hs code for BOTTLE HEMOGLOBIN FREEZE DRIED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3173785,38210090 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH. 2104098,38210090 +What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2271480,38210090 +What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3272841,38210090 +"What is the hs code for BOTTLE WL DIFFERENTIAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2123844",38210090 +What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3272460,38210090 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1285556,38210090 +What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3277644,38210090 +What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3234601,38210090 +What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3272460,38210090 +What is the hs code for BOTTLE M ENDO BROTH MF 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3297811,38210090 +What is the hs code for PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) CAS 1332-09-8,38249999 +What is the hs code for PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA P24010008,29349920 +What is the hs code for PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3512810,33029000 +What is the hs code for HPA82 PURE SENSITIVE (BHN BAKU KOSMETIK) COA 3549437,33029000 +What is the hs code for EUXYL K 100 CAN 10 KG (BHN BAKU KOSMETIK) CAS 55965-84-9,38249999 +What is the hs code for EUXYL K 712 CAN 10 KG (BHN BAKU KOSMETIK) CAS 532-32-1,38249999 +What is the hs code for EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6,38249999 +What is the hs code for EUXYL K 903 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6,38249999 +What is the hs code for EUXYL K 940 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6,38249999 +What is the hs code for EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) CAS 122-99-6,38249999 +What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9,38249999 +What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9,38249999 +What is the hs code for EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6,38249999 +What is the hs code for SENSIDIN PURE CAN 10 KG (BHN BAKU KOSMETIK) CAS 70775-75-6,38249999 +What is the hs code for EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6,38249999 +What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6,38249999 +What is the hs code for EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) CAS 122-99-6,38249999 +What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9,38249999 +"What is the hs code for SODIUM STARCH GLYCOLATE USP (BAHAN BAKU OBAT) COA LCBA0048,LCBA00489,MCBA0053,MCBA0055,MCBA0056",29420000 +"What is the hs code for 1,3-BUTYLENE GLYCOL (NATUROBG) (BHN BAKU KOSMETIK) COA BGC/L08/24",29053200 +What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B191023,39123900 +What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B191023,39123900 +What is the hs code for LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LG0521123,39123900 +What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB191023,39123900 +What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB191023,39123900 +What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) CAS 7631-86-9,38249999 +What is the hs code for MANNITOL POWDER USP/EP-MANNO (BHN BAKU SUPPLEMEN) COA 292312308,29054300 +What is the hs code for NABUMETON USP (BHN BAKU OBAT) COA H-2011123,29145000 +What is the hs code for CLOPIDOGREL BISULFATE USP 45 FORM II (BHN BAKU OBAT) COA CLOPI/13120252,29349990 +"What is the hs code for PANTOPRAZOLE SODIUM (STERILE) (BHN BAKU OBAT) COA SI/PPZ/00280124,00300124",29333990 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359 ..(BHN BAKU PEWARNA TABLET)COA GA746921,39061090 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O63173...(BHN BAKU PEWARNA TABLET)COA GA747479,39061090 +What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET)COA GA747402,39061090 +What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET)COA GA747539,39061090 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 151-21-3,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET)CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620041..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6,38249999 +What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO240201,13021990 +What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230802,13021990 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) CAS 8001-25-0,38249999 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +"What is the hs code for LIGHT MAGNESIUM CARBONATE POWDER, BP 2023 (BHN BAKU MAKANAN) COA 3139411-01",28369990 +What is the hs code for PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) CAS 5743-47-5,38249999 +What is the hs code for SODIUM HYDROXIDE BEADS (CAUSTIC SODA MICROPRILLS) COA 202309140005,28151100 +What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-3211223,29334910 +"What is the hs code for FERRIC PYROPHOSPHATE,24PCT - 26PCT FE POWDER,FCC13 (BHN BAKU MAKANAN) COA 3139864",28353990 +"What is the hs code for FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU MAKANAN) COA 3137150",28332920 +What is the hs code for DIPOTASSIUM PHOSPHATE POWDER... (BHN BAKU MAKANAN) COA 3132294,28352400 +What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 2204524696,29372200 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 15B120040...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F15789...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-002-A,13021990 +What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 230210082,29420000 +What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340499 S/D B340501,29419000 +What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA MLAH0060124,29341000 +What is the hs code for DEXAMETHASONE ACETATE ANHYDROUS MICRONISED PH.EUR.USP (BHN BAKU OBAT) COA 2204524696,29372200 +"What is the hs code for ASCORBIC ACID, (BHN BAKU SUPPLEMEN) COA TL02312521",29362700 +What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02306011,29362900 +What is the hs code for VIT. A PALM. 1.0 M + VIT. D3 100'000 (BHN BAKU MAKANAN) COA UT23110185,29362100 +What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02306007,29362900 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT23050015,29362900 +What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF (BHN BAKU SUPPLEMEN) COA UE02307031,32030010 +What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT24010069,29362100 +What is the hs code for SYN(R)-AKE (BHN BAKU KOSMETIK) COA UE02303004,29420000 +What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ30617015,29420000 +What is the hs code for VITAMIN B12 CRYST FOOD GRADE (BHN BAKU KOSMETIK) COA 012304002,29362600 +What is the hs code for LIFE'SGLA (TM) '10' N-6 OIL (BHN BAKU KOSMETIK) COA 3008002CN,29362500 +What is the hs code for MONOPOTASSIUM PHOSPHATE CP (BHN BAKU KOSMETIK) COA 23122001,28352400 +What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW MC YRPN19-1...(ALAT KESEHATAN)COA HL19100L0129,30061010 +What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC YRPN19-84..(ALAT KESEHATAN)COA 6D19100L0129,30061010 +What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC YRPN19-84-..(ALAT KESEHATAN)COA HR1938L0129,30061010 +What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC YRPN19-1...(ALAT KESEHATAN)COA HR1960L0129,30061010 +What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW DC YRDN-FE-...(ALAT KESEHATAN)COA DA21110N0129,30061010 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12306032,29362900 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT23050162,29362800 +What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000215556,29362900 +What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000215556,29362900 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12306032,29362900 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230602,29362500 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230602,29362500 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT23060009,29362900 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT23040011,29362600 +What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12306032,29362900 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT23060009,29362900 +What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12306032,29362900 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT23060177,29362900 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02303003,29362900 +What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20230503,29362800 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02308755,29362400 +"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ30510662,UQ30510663",29362300 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02308755,29362400 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ30510663,29362300 +"What is the hs code for FOLIC ACID (BHN BAKU KOSMETIK) COA UT22120266,UT22120267",29362400 +What is the hs code for D-PANTHENOL 75 L (BHN BAKU KOSMETIK) COA TL02210334,29362400 +What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040118,29420000 +What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0924020001,29420000 +What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS4881023,29420000 +What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0723010092,29420000 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0523060079,29420000 +What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT23071282,29362100 +What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT23070229,29362100 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT23050015,29362900 +"What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ31112266,UQ31112267",29362200 +What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT23080012,29362500 +What is the hs code for BETATAB 20PCT S (BHN BAKU SUPPLEMEN) COA UT23050002,32041800 +What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT23090029,32030010 +What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT23110068,29362100 +What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT23090207,29362400 +What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT23070050,29362100 +What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL02312500,29362700 +What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL02306396,29362700 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT23090029,29362600 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20240209,17029019 +"What is the hs code for THEOPHYLLINE ANHYDROUS (BHN BAKU OBAT) COA 23246,23262 S/D 23268",29395900 +"What is the hs code for METAMIZOLE SODIUM REGULAR GRADE (BHN BAKU OBAT) COA 23101699,23101700",29331900 +What is the hs code for HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2521023,29397900 +What is the hs code for TRISODIUMCITRATE DIHYDRATE FINE GRANULAR (BHN BAKU SUPPLEMEN) COA UJ406,29181400 +What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK) COA 2402EF1811,29224900 +What is the hs code for VITAMIN A PALMITATE 1.7M IU/G (BHN BAKU KOSMETIK) COA 0423110010,29362100 +What is the hs code for DL ALPHA TOCOPHEROL (BHN BAKU KOSMETIK) COA 01231104ES,29362800 +What is the hs code for SILYBIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 23B0225800,13021950 +What is the hs code for PASSION FLOWER D.H.E 4PCT (BAHAN BAKU SUPLEMEN) COA 23B0096400,13021990 +What is the hs code for HAWTHORN DRY HYDR. EXTR. (BHN BAKU SUPLEMEN) COA 21B0148600,13021990 +What is the hs code for BUTCHERBROOM DRY HYDR EX 9-11PCT (BHN BAKU SUPLEMEN) COA 23B0036900,13021990 +What is the hs code for ECHINACEA ANG.DRY PURIF. EX. (BHN BAKU SUPPLEMEN) COA 21S0155200,13021990 +What is the hs code for VACCINIUM MYRTILLUS DRY EX. (BHN BAKU SUPLEMEN) COA 23S0078800,13021990 +What is the hs code for GREEN TEA DRY DEC.EX ./PHOSPHOL (BHN BAKU SUPLEMEN) COA 23S0183400,13021950 +What is the hs code for P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 23S0224200,13021990 +What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 23S0196500,13021990 +What is the hs code for SENSIVA PA 20 CAN 10 KG (BHN BAKU KOSMETIK) CAS 60-12-8,38249999 +What is the hs code for EUXYL K 720 CAN 10 KG (BHN BAKU KOSMETIK) CAS 65-85-0,38249999 +What is the hs code for EUXYL K 903 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6,38249999 +What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9,38249999 +What is the hs code for EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6,38249999 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101855023,17021100 +"What is the hs code for DURALAC (R) H (BHN BAKU OBAT) COA LC 014-23-805, LC 039-23-805",17021100 +What is the hs code for MEG-3 '30' N-3 INF OIL (BHN BAKU SUPPLEMEN) COA TS00023438,29362500 +What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT24010051,29362100 +What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 2304441456,29372200 +"What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 2304441456, SAMPLE NO COMMERCIAL",29372200 +What is the hs code for CITRIC ACID ANHYDROUS 30-100MESH BP/USP/FCC/E330 (BHN BAKU SUPLEMEN) COA 2AX2402016,29181400 +What is the hs code for OPTISHARP NAT. ZEA. 14PCT SAFF. (BHN BAKU SUPPLEMEN) COA 2309119543,32041800 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB22080267,29362800 +What is the hs code for OPAGLOS (R) TABLET CORE SEALANT PRODUCT OPAGLOS... (BHN BAKU PEWARNA TABLET) COA DT755956,32151990 +What is the hs code for OPASPRAY (R) OPAQUE COLOR CONCENTRATE FOR FILM...(BHN BAKU PEWARNA TABLET) COA DT756652,32151990 +What is the hs code for MAGNESIUM BISGLYCINATE POWDER... (BHN BAKU SUPPLEMEN) COA 3136971,29224900 +What is the hs code for METHOCEL K4M PREMIUM HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464446250,39123900 +What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 2401009T,39100020 +What is the hs code for DIPOTASSIUM PHOSPHATE ANHYDROUS CP (BHN BAKU KOSMETIK) COA 23112801,28352400 +What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPPLEMEN) COA WB23060369,29362100 +What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB22080267,29362800 +"What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP24014350,XP24014351",29211900 +What is the hs code for MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL240207,29094900 +"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 12-05-23, 20-04-23, 21-04-23, 26-04-23, 05-07-23",38029090 +What is the hs code for IMERCARE 230P SCRUB OR (BHN BAKU KOSMETIK) COA 24-10-23 S/D 27-10-23,38029090 +What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 29.06.2022,25070000 +What is the hs code for EFFER-SODA (R) 12 (BHN BAKU OBAT) COA 122302934,28363000 +"What is the hs code for EFFER-SODA (R) 12 (BHN BAKU OBAT) COA 122302934,122302935",28363000 +"What is the hs code for EFFER-SODA (R) 12 (BHN BAKU OBAT) COA 122302935,122302936,122303469",28363000 +"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92401109,XW92401110",21069059 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT23060177,29362900 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT23070039,32041800 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230601,29362500 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT23050179,29362800 +What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF23041006,29420000 +What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211039,29362700 +"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000216741,0000216742",29362900 +What is the hs code for PARSOL(R) HS (BHN BAKU KOSMETIK) COA HS6441223,29420000 +"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02211813,TL02302802",29362400 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23050179,29362800 +"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0924020001,0924020002",29420000 +What is the hs code for PARSOL(R) SHIELD (BHN BAKU KOSMETIK) COA 0823010728,29420000 +What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0423040118,29420000 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23060229,29362800 +"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323021433,0323021434",29420000 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0523060065,29420000 +"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323021434,0323021435,0323021464",29420000 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23060229,29362800 +"What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES2308902,ES2310918",29420000 +What is the hs code for PARSOL(R) HS (BHN BAKU KOSMETIK) COA HS6441223,29420000 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02306077,29362400 +What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02302802,29362400 +What is the hs code for PARSOL(R) SHIELD (BHN BAKU KOSMETIK) COA 0823010728,29420000 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0523060065,29420000 +"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323021464 ,0323021465",29420000 +What is the hs code for CITRIC ACID ANHYDROUS 30-100MESH BP/USP/FCC/E330 (BHN BAKU SUPLEMEN) COA 6AX2402020,29181400 +What is the hs code for CEFOTAXIME SODIUM STERILE USP (BHN BAKU OBAT) COA D600100,29419000 +"What is the hs code for CAFFEINE BP/EP/USP/CEP(BHN BAKU OBAT) COA 23051041,23051060,23051061,23051064 S/D 23051066,....",29393000 +What is the hs code for AMPICILLIN SODIUM (STERILE) BP (BHN BAKU OBAT) COA SI/AMP/000502224,29411020 +What is the hs code for METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT LYOPHIZED (BHN BAKU OBAT) COA ND0221,29372900 +What is the hs code for MEG-3 DHA INF 10 FOOD OIL (BHN BAKU MAKANAN) COA TS00023068,29362500 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20240219,17029019 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP04524,28363000 +What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA 23D0916832,29420000 +What is the hs code for MEG-3 DHA INF 10 FOOD OIL (BHN BAKU MAKANAN) COA TS00023220,29362500 +What is the hs code for ASCORBIC ACID 90PCT GRANULATION (BHN BAKU SUPPLEMEN) COA WB22119053,29362700 +What is the hs code for HYUNDAI BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for IPRATROPIUM BROMIDE (BHN BAKU OBAT) COA 2350001461,29397900 +What is the hs code for TSPL-30-ID (1KG) (BHN BAKU KOSMETIK) CAS 13475-82-6,38249999 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 240154,13021990 +What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 232422,13021990 +What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 232371,13021990 +What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 231090,13021990 +What is the hs code for BIOCELLACT CHAMOMILLA BD (BHN BAKU KOSMETIK) COA 231949,13021990 +What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 231643,13021990 +What is the hs code for CLAIR BLANCHE-III (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 231278,13021990 +What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 231761,13021990 +"What is the hs code for COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPPLEMEN) COA TL02311372",29362700 +What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI23040013,29362900 +What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02312507,29362700 +What is the hs code for CHITOSAN (BHN BAKU SUPPLEMEN) COA HK-C24022602,39139090 +What is the hs code for PANTOPRAZOLE SODIUM (STERILE) (BHN BAKU OBAT) COA SI/PPZ/00540224,29333990 +What is the hs code for KETOROLAC TROMETHAMINE USP (BHN BAKU OBAT) COA KM0150323,29339990 +"What is the hs code for SUNBELLIN (BHN BAKU KOSMETIK) COA F210-2311003,2311007, 2311008",29339990 +"What is the hs code for SPECWHITE VCE (BHN BAKU KOSMETIK) COA 20230704, 20240108, 20240109",29362700 +"What is the hs code for ADENOSINE(L) (BHN BAKU KOSMETIK) COA C01202309003L, C01202311004L",29349990 +What is the hs code for GF-B331 (BHN BAKU KOSMETIK) COA 20240118001,35051090 +What is the hs code for SPECWHITE 05 (BHN BAKU KOSMETIK) COA 20231007,29222900 +"What is the hs code for DEXAMETHASONE BP2010/USP42 (BHN BAKU OBAT) COA NED231209,NED240104",29372200 +What is the hs code for PREDNISONE USP2023 (BHN BAKU OBAT) COA NPD231015,29372100 +What is the hs code for BETAMETHASONE BP2022/USP2023 (BHN BAKU OBAT) COA XBE230801,29372200 +What is the hs code for METHYLPREDNISOLONE USP2023 (BHN BAKU OBAT) COA NMP240203,29372900 +What is the hs code for PREDNISOLONE BP2022/USP2023 (BHN BAKU OBAT) COA XPL231103,29372100 +What is the hs code for FERROUS FUMARATE (BHN BAKU OBAT) COA 2024/20,29171900 +What is the hs code for SODIUM ACID PYROPHOSPHATE FOOD GRADE (BHN BAKU MAKANAN) COA 9240220,28353990 +What is the hs code for ECOGEL TM (BHN BAKU KOSMETIK) CAS 85711-58-6,38249999 +What is the hs code for ECOSLIM TM (BHN BAKU KOSMETIK) CAS 58-08-2,38249999 +What is the hs code for LANABLUE TM PARABEN FREE (BHN BAKU KOSMETIK) CAS 50-70-4,38249999 +What is the hs code for LYSOFIX TM LIQUID (BHN BAKU KOSMETIK) CAS 1448790-48-4,38249999 +What is the hs code for DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834012184P,29224900 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) CAS 37350-42-8,38249999 +What is the hs code for DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834012184P,29224900 +What is the hs code for ECOGEL TM (BHN BAKU KOSMETIK) CAS 85711-58-6,38249999 +What is the hs code for CANADIAN WILLOWHERB TM 5% CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for DRY VITAMIN E 50% CWS/S (BHN BAKU SUPPLEMEN) COA UT23050014,29362800 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30701084,29362500 +What is the hs code for DRY VITAMIN E 50% CWS/S (BHN BAKU SUPPLEMEN) COA UT23050014,29362800 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12306032,29362900 +What is the hs code for VITAMIN B12 0.1% WS (BHN BAKU SUPPLEMEN) COA UT23040011,29362600 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230601,29362500 +What is the hs code for FOLIC ACID (BHN BAKU KOSMETIK) COA UT23090206,29362400 +"What is the hs code for PARSOL® SHIELD (BHN BAKU KOSMETIK) COA 0823010728, 0823010729",29420000 +What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000217252,29362900 +What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000217252,29362900 +What is the hs code for TILAMAR® PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA 23D1012832,29420000 +What is the hs code for STAY-C® 50 (BHN BAKU KOSMETIK) COA UE02211046,29362700 +What is the hs code for TILAMAR® PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA 23D1012832,29420000 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ30612176,29362200 +What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE02306011,29362900 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT23060161,29362400 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230601,QZ11230602",29362500 +What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE02306011,29362900 +What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL02307093,29362400 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ30510671,29362300 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02308756,29362400 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ30612176,29362200 +What is the hs code for SUNTHEANINE (L-THEANINE) (BHN BAKU MAKANAN) COA 309107,13021950 +What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2314938,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2034962,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0335766,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1046607,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1046610,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1075037,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3039818,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3039818,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3039818,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3114540,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3114540,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3114540,38210090 +What is the hs code for AQUACOAT ECD-30 ETHYLCELLULOSE AQUEOUS... (BHN BAKU PEWARNA TABLET) COA 2174490301,39123900 +What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464438852,39123900 +What is the hs code for METHOCEL K4M PREMIUM HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464304789,39123900 +What is the hs code for METHOCEL E15 PREMIUM LV HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2444213820,39123900 +What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2444374841,39123900 +What is the hs code for METHOCEL E50 PREMIUM LV HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2444321639,39123900 +What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464317909,39123900 +What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2444374841,39123900 +What is the hs code for METHOCEL E5 PREMIUM LV HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2444388891,39123900 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G65197...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55410...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977..(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51469...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-30-18037...(BHN BAKU PEWARNA TABLET)CAS 64044-51-5,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for MAGNESIUM HYDROXIDE PASTE USP BARCROFT... (BHN BAKU OBAT) COA 102329034,28161000 +What is the hs code for CYPROHEPTADINE HYDROCHLORIDE BP/PH. EUR. (BHN BAKU OBAT) COA CYP/01241003,29333990 +What is the hs code for NAI-WHITE A (BHN BAKU KOSMETIK) COA 2401B29102,32061110 +What is the hs code for KSG-15 (16KG) (BHN BAKU KOSMETIK) COA 401653,39100020 +What is the hs code for KF-54HV (18KG) (BHN BAKU KOSMETIK) COA 403095,39100020 +What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) COA 402337,39100020 +What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4,38249999 +What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9,38249999 +What is the hs code for KF-7312K (16KG) (BHN BAKU KOSMETIK) CAS 562705-01-5,38249999 +What is the hs code for KSP-300 (1KG) (BHN BAKU KOSMETIK) CAS 9002-92-0,38249999 +What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9,38249999 +What is the hs code for KSP-300 (1KG) (BHN BAKU KOSMETIK) CAS 9002-92-0,38249999 +What is the hs code for MOMETASONE FUROATE USP MICRONISED (BHN BAKU OBAT) COA APL/MF/06011/B-24,29372200 +What is the hs code for TRICALCIUM CITRATE 4-HYDRATE POWDER (BHN BAKU OBAT) COA 3134800,29181590 +"What is the hs code for MAGNESIUM ASPARTATE DIHYDRATE,... (BHN BAKU SUPPLEMEN) COA 3118345-04",29224900 +What is the hs code for KETOPROFEN (BHN BAKU OBAT) COA 204187,29183000 +What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) CAS 7631-86-9,38249999 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT23061274,UT23061275",29362100 +What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02306011,29362900 +What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT23070187,29362400 +What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL02312521,29362700 +"What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT24010006,UT24010009",29362800 +What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA 8MT2401109,30032000 +What is the hs code for SODIUM STARCH GLYCOLATE USP (BAHAN BAKU OBAT) COA BDBA0008 S/D BDBA0010,29420000 +"What is the hs code for CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA BDDA0011, BDDA0013",39123100 +"What is the hs code for SODIUM STARCH GLYCOLATE BP (BAHAN BAKU OBAT) COA ADAA0016,BDAA0017",29420000 +What is the hs code for SORBITOL SPECIAL (R) MDF 85 (BHN BAKU SUPPLEMEN) COA 122303217,29054400 +What is the hs code for NUTRALIPIDS TYPE HY (BHN BAKU KOSMETIK) COA 436300140,15179090 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 240154,13021990 +What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 232422,13021990 +What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 232371,13021990 +What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 231090,13021990 +What is the hs code for BIOCELLACT CHAMOMILLA BD (BHN BAKU KOSMETIK) COA 231949,13021990 +What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 231643,13021990 +What is the hs code for CLAIR BLANCHE-III (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 231278,13021990 +What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 231761,13021990 +What is the hs code for CITICOLINE SODIUM (BHN BAKU OBAT) COA 240201,29349990 +What is the hs code for GLUCOSAMINE SULFATE 2KCL (BHN BAKU OBAT) COA JSTK240218,29329900 +What is the hs code for CEFOTAXIME SODIUM (BHN BAKU OBAT) COA 3042401018,29419000 +What is the hs code for N-ACETYL-L-CYSTEINE (BHN BAKU OBAT) COA C103-202311632,29309090 +What is the hs code for SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202402-029,35040000 +What is the hs code for EXTRAPONE (R) SEA EXTRACTS N (BHN BAKU KOSMETIK) COA 10300041,13021950 +What is the hs code for ACTIPONE (R) WHITE TEA GW (BHN BAKU KOSMETIK) COA 10300055,13021950 +What is the hs code for EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300035,13021950 +What is the hs code for NEO EXTRAPONE (R) LEMON (BHN BAKU KOSMETIK) COA 10300025,13021950 +What is the hs code for PIGMENT BLEND (R) PB-21158 GREEN (BHN BAKU PEWARNA TABLET) COA GA750375,32151900 +What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA,13021950 +What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 240102,13021950 +What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 240102,13021950 +"What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 3194984",38210090 +What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIAUTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2335855,38210090 +What is the hs code for DISC TAXO V FACTOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3212707,38210090 +What is the hs code for DISC TAXO X FACTOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3212733,38210090 +What is the hs code for DISC TAXO VX FACTOR 50 DISCS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3251294,38210090 +"What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3335232,33",38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3086871,38210090 +What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3208666,38210090 +"What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 3054163",38210090 +What is the hs code for AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 165320,15159011 +What is the hs code for CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) CAS 989-51-5,38249999 +What is the hs code for CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) CAS 989-51-5,38249999 +What is the hs code for CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) CAS 989-51-5,38249999 +What is the hs code for ALUMINUM HYDROXIDE GEL USP.. (BHN BAKU OBAT) COA 102402001,28183000 +What is the hs code for MAGNESIUM HYDROXIDE GEL... (BHN BAKU OBAT) COA 102323013,28161000 +"What is the hs code for MAGNESIUM HYDROXIDE GEL... (BHN BAKU OBAT) COA 102323013, SAMPLE NO COMMERCIAL VALUE",28161000 +What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2229527,38210090 +What is the hs code for BOTTLE MUELLER HILTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3150802,38210090 +What is the hs code for BOTTLE MR-VP BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3045918,38210090 +What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3277641,38210090 +What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3277644,38210090 +What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3261353,38210090 +What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2201317,38210090 +What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3114643,38210090 +"What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA TUK PENGEMBANGAN MIKRO ORGANISME), BATCH 3114494",38210090 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2305063,38210090 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2047633,38210090 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3355723,38210090 +"What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2229544",38210090 +What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2277784,38210090 +What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2269093,38210090 +What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 3293059,38210090 +What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B03G008M,38210090 +What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3317803,38210090 +What is the hs code for BOTTLE HEART INFUSION BROTH 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3168382,38210090 +What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2201317,38210090 +What is the hs code for BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2298727,38210090 +What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2200729,38210090 +What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2158081,38210090 +"What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3297901,3333720",38210090 +What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3303852,38210090 +What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3355723,38210090 +What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 4005483,38210090 +What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3300518,38210090 +What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3277641,38210090 +What is the hs code for BOTTLE MUELLER HILTON II AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3304780,38210090 +"What is the hs code for BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 3114504",38210090 +What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2165877,38210090 +What is the hs code for BOTTLE UNIVERSAL PREENRICHMENT BROTH 500(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH. 2095248,38210090 +What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3248047,38210090 +What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3272841,38210090 +What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2217600,38210090 +What is the hs code for BOTTLE MIO MEDIUM 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3114643,38210090 +What is the hs code for BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1264672,38210090 +What is the hs code for BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2269098,38210090 +What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI23040013,29362900 +What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI23040013,29362900 +"What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20230503,XH20230802",29362800 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230602,29362500 +"What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12308016,OP12308017",29362900 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02308757,29362400 +What is the hs code for VITAMIN B12 0.1% WS (BHN BAKU SUPPLEMEN) COA UT23040011,29362600 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT23100181,29362900 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02303003,29362900 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA QZ11230604,29362500 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30701084,29362500 +What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040129,29420000 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02306011,29362900 +What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF23041007,29420000 +"What is the hs code for 1,3-BUTYLENE GLYCOL, COSMETIC QUALITY(BHN BAKU KOSMETIK) COA P0623D01BC",29053200 +What is the hs code for ISDN 25PCT-LACTOSE 450 75PCT DILUTED (BHN BAKU OBAT) COA 2401756,29329900 +What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA C900200,29419000 +What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA C900300,29419000 +What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C... (BHN BAKU PEWARNA TABLET) COA WP868322:BC3383,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5177 FD&C... (BHN BAKU PEWARNA TABLET) COA WP865813:BC2275,32151990 +What is the hs code for LAKE PIGMENT (R) 6010 D&C... (BHN BAKU PEWARNA TABLET) COAWP870803:BC5804,32151990 +What is the hs code for LAKE PIGMENT (R) 6010 D&C... (BHN BAKU PEWARNA TABLET) COAWP870803:BC5804,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5627 FD&C.. (BHN BAKU PEWARNA TABLET) COA WP869522:BC4229,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5177 FD&C... (BHN BAKU PEWARNA TABLET) COA WP865824:BC3945,32151990 +What is the hs code for SCHISANDRA EXTRACT (BHN BAKU OBAT) COA SC03-24030301,13021950 +What is the hs code for RUEGENER DREIKRONEN HEILKREIDE 25K (BHN BAKU KOSMETIK) COA 9082325400,25090000 +What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA LC48-23-804,17021100 +What is the hs code for DURALAC H (BHN BAKU OBAT) COA LC04423-805,17021100 +"What is the hs code for COPPER SULFATE, POWDER, PH.EUR.11.ED. (BHN BAKU SUPLEMEN) COA 3138445",28332500 +What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-231221,29061300 +What is the hs code for CROSPOVIDONE XL (BHN BAKU SUPPLEMEN) COA PP231213XL,39059990 +What is the hs code for POVIDONE K-30 (BHN BAKU SUPPLEMEN) COA PK30-240124F32,39059990 +"What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02312530,TL02312532",29362700 +What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT23080012,29362500 +"What is the hs code for VITAMIN A WATER-MISCIBLE, TYPE 100 (BHN BAKU SUPPLEMEN) COA UT23110068",29362100 +What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT24010069,29362100 +What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2303041 S/D UEB2304044,29362300 +What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT23060009,29362100 +What is the hs code for B-CAROTENE 30% FS (BHN BAKU MAKANAN) COA UE02402005,32041800 +What is the hs code for ALUMINUM HYDROXIDE GEL USP BARCROFT TM LV13 (BHN BAKU OBAT) COA 102413001,28183000 +"What is the hs code for ALUMINUM HYDROXIDE GEL USP BARCROFT TM LV13 (BHN BAKU OBAT) COA 102413001, SAMPLE NO COMMERCIAL",28183000 +"What is the hs code for EFFER-SODA (R) 12 (BHN BAKU SUPPLEMEN) COA 122303469,122403677",28363000 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977.(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING..(BHN BAKU PEWARNA TABLET)CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-22-17515...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING..(BHN BAKU PEWARNA TABLET)CAS 121786-16-1-,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-30-18037..(BHN BAKU PEWARNA TABLET)CAS 64044-51-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011..(BHN BAKU PEWARNA TABLET)CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET)CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 02F54189..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F19250..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for PROMOIS EK-118(IN) (BHN BAKU KOSMETIK) CAS 59219-71-5,38249999 +What is the hs code for PROMOIS WK-F (BHN BAKU KOSMETIK) CAS 69430-36-0,38249999 +What is the hs code for AMITOSE R (BHN BAKU KOSMETIK) COA BBI,13021950 +What is the hs code for VISTANOL GDHR (BHN BAKU KOSMETIK) COA BBI,39139090 +What is the hs code for DL-TARTARIC ACID (BHN BAKU MAKANAN) COA RS01714,29181200 +What is the hs code for DL-MALIC ACID (BHN BAKU MAKANAN) COA FS18338FG,29181900 +What is the hs code for JAGUAR C162 SGI (BHN BAKU KOSMETIK) CAS 71329-50-5,38249999 +What is the hs code for B-CAROTENE 10% EM YELLOW (BHN BAKU MAKANAN) COA UT24020002,32041800 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT23050015,29362900 +"What is the hs code for NEO EXTRAPONE (R) LEMON (BHN BAKU KOSMETIK) COA 10300024,10300025",13021950 +What is the hs code for EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300034,13021950 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101850124,17021100 +What is the hs code for MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103154523,17021100 +What is the hs code for GRANULAC (R) 70 (BHN BAKU OBAT) COA L101840324,17021100 +What is the hs code for PREMIX TRACE ELEMENTS 751 (BHN BAKU SUPPLEMEN) COA MY62401165,21069059 +What is the hs code for PREMIX TRACE ELEMENTS IF R 125 (BHN BAKU SUPPLEMEN) COA MY62401157,21069059 +What is the hs code for PREMIX VITAMINS FFI 567 (BHN BAKU SUPPLEMEN) COA MY62401156,21069059 +What is the hs code for PREMIX VITAMINS GUM 414 (BHN BAKU SUPPLEMEN) COA MY62401202,21069059 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT23050014,29362800 +What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12308017,29362900 +What is the hs code for VITAMIN PREMIX 103093 - A (BHN BAKU MAKANAN) COA XW92402010,21069059 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3114540,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3158127,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3228039,38210090 +What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2314938,38210090 +What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2528835,38210090 +What is the hs code for BACTO CASAMINO ACIDS TECHNICALS 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2137791,38210090 +What is the hs code for BACTO CASAMINO ACIDS TECHNICALS 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2137791,38210090 +What is the hs code for BACTO CASAMINO ACIDS TECHNICALS 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2137791,38210090 +What is the hs code for PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2775753,38210090 +What is the hs code for PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2775753,38210090 +What is the hs code for ERDOSTEINE IH (BAHAN BAKU OBAT) COA EDSF230072,29349990 +What is the hs code for PEARL ESSENCES 35178MJ (BHN BAKU KOSMETIK) COA D3430787,32061910 +What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2023111002,13021950 +What is the hs code for METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/14020078,29332900 +"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA ROA364234,ROA364236",28363000 +What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP12308017,29362900 +"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000217252,0000217253",29362900 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30701084,29362500 +What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0046906,29362500 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23060229,29362800 +What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS6441223,29420000 +"What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0423040118,0424040001",29420000 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02306011,29362900 +"What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001711881,0001717748",29420000 +What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02302802,29362800 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23060182,29362800 +What is the hs code for VITAMIN PREMIX MILK POWDER FOR ADULTS (BHN BAKU MAKANAN) COA XW92402118,21069059 +What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02306011,29362900 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02307101,29362400 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23060182,29362800 +What is the hs code for DL-A-TOCOPHERYL (BHN BAKU KOSMETIK) COA UT23100073,29362800 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02309788,29362400 +What is the hs code for VITAMIN B12 0.1% WS (BHN BAKU SUPPLEMEN) COA UT23040011,29362600 +"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000217253,0000217254",29362900 +What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPPLEMEN) COA TL02306379,29362700 +What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211046,29362700 +What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02307106,29362400 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT23100181,29362900 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02303003,29362900 +What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02306011,29362900 +"What is the hs code for COLAGENO HIDROLISADO TENDOFORTE(R) B (BHN BAKU MAKANAN), COA H4508111",35040000 +"What is the hs code for COLLAGEN HYDROLYSATE VERISOL (R) B (SA) (BHN BAKU MAKANAN), COA H4508569",35040000 +"What is the hs code for COLLAGEN HYDROLYSATE FORTIGEL(R) B (SA) (BHN BAKU MAKANAN), COA H4508235",35040000 +What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 233237,29224900 +What is the hs code for GREYVERSE TM (BHN BAKU KOSMETIK) COA 833012061P,29224900 +What is the hs code for PRO-LIPO TM NEO (BHN BAKU KOSMETIK) CAS,38249999 +What is the hs code for PROGELINE TM (BHN BAKU KOSMETIK) COA 820052319R,29224900 +What is the hs code for DL ALPHA TOCOPHEROL (BHN BAKU KOSMETIK) COA 01231104ES,29362800 +"What is the hs code for PHARMACEUTICAL CASTOR OIL E.P (BHN BAKU KOSMETIK) COA 0000049094,0000049093",15152919 +What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0092956,38249999 +"What is the hs code for RAJOL WP80/LOREAL LIGHT LIQUID PARAFFIN-BP/...(BHN BAKU KOSMETIK) COA 1000240002,1000240003",27101990 +What is the hs code for NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 23LNC0719SQ434,27101990 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101850324,17021100 +"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA ROA363232,ROA362236,ROA004246",28363000 +What is the hs code for HYUNDAI BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for PREMIX TRACE ELEMENTS 751 (BHN BAKU SUPPLEMEN) COA MY62401165,21069059 +"What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 04610324,0462034,04630324,0460324,...",29359000 +What is the hs code for FIBER DRUMS (EMPTY DRUMS) NO COMMERCIAL VALUE,48192000 +What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2311952455,29362600 +"What is the hs code for METAMIZOLE SODIUM MONOHYDRATE (BHN BAKU OBAT) COA 2403338,2403340,2403342,2403344,2403345",29331900 +"What is the hs code for SODIUM FEREDETATE, POWDER, BP2024 (BHN BAKU OBAT) COA 3141248",29224900 +What is the hs code for LISINOPRIL DIHYDRATE USP (BAHAN BAKU OBAT ) COA C5170-23-358,29339990 +What is the hs code for CENTELLA ASIATICA EXTRACT 95 PCT (BHN BAKU KOSMETIK) COA GKP 23174 EOU,13021990 +What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA 0000084160,29309090 +What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000084161,29309090 +What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000084162,29309090 +"What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA 0000084163, SAMPLE NO COMMERCIAL VALUE",29309090 +"What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000084164, SAMPLE NO COMMERCIAL VALUE",29309090 +"What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000084165, SAMPLE NO COMMERCIAL VALUE",29309090 +What is the hs code for CITRIC ACID MONOHYDRATE GRANULAR (BHN BAKU SUPLEMEN) COA UJ307,29181400 +What is the hs code for CITRIC ACID MONOHYDRATE GRANULAR (BHN BAKU SUPLEMEN) COA UJ307,29181400 +What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA LC48-23-801,17021100 +"What is the hs code for THEOPHYLLINE ANHYDROUS (BHN BAKU OBAT) COA 24039,24045 S/D 24048,24051 S/D 24061",29395900 +"What is the hs code for METAMIZOLE SODIUM REGULAR GRADE (BHN BAKU OBAT) COA 2403334,2403335,2403338",29331900 +What is the hs code for NABUMETON USP (BHN BAKU OBAT) COA H-0020124,29145000 +What is the hs code for FERROUS GLUCONATE FINE GRAN.. (BHN BAKU OBAT) COA 3127778,29181600 +What is the hs code for BROMHEXINE HYDROCHLORIDE EP (BHN BAKU OBAT) COA ORX/BRH/2402022,29215900 +What is the hs code for TRIMETHOPRIM MICRONISED BP (BHN BAKU OBAT) COA TMPM24020015,29335990 +What is the hs code for BEE PANDA HONEY (BHN BAKU KOSMETIK) CAS 8028-66-8,38249999 +What is the hs code for SPECWHITE VCE (BHN BAKU KOSMETIK) COA 20240205,29362700 +What is the hs code for MOPD (BHN BAKU KOSMETIK) COA 231213001,29242990 +"What is the hs code for DEXAMETHASONE BP2010/USP42 (BHN BAKU OBAT) COA NED240301,NED240302,NED240303",29372200 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-7027... (BHN BAKU PEWARNA TABLET)CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING SYSTEM..(BHN BAKU PEWARNA TABLET)CAS 121786-16-1,38249999 +What is the hs code for OPADRY (R) KB LOW VISCOSITY FILM COATING..(BHN BAKU PEWARNA TABLET)CAS 151-21-3,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-19025-A..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G640054...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 02F52182...(BHN BAKU PEWARNA TABLET)CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B82443..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3,38249999 +What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA749583,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G62402...(BHN BAKU PEWARNA TABLET)CAS .9004-65-3,38249999 +What is the hs code for OPADRY (R) FX TM SPECIAL EFFECTS FILM COATING...(BHN BAKU PEWARNA TABLET)CAS 9004-32-4,38249999 +What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9,38249999 +What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9,38249999 +What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9,38249999 +What is the hs code for EUXYL K 100 CAN 10 KG (BHN BAKU KOSMETIK) CAS 55965-84-9,38249999 +What is the hs code for EUXYL K 720 CAN 10 KG (BHN BAKU KOSMETIK) CAS 65-85-0,38249999 +What is the hs code for EUXYL K 940 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6,38249999 +What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9,38249999 +What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9,38249999 +What is the hs code for SENSIDIN DO CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9,38249999 +What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6,38249999 +What is the hs code for REFINED COCONUT OIL - L (BHN BAKU KOSMETIK) COA 0002779650,15131990 +What is the hs code for HEXYLENE GLYCOL (BHN BAKU KOSMETIK) COA 2004260321400386,29053900 +"What is the hs code for SODIUM SELENITE IN CARRIER,... (BHN BAKU SUPPLEMEN) COA 3140779",28429010 +"What is the hs code for COPPER SULFATE, POWDER, PH.EUR.11.ED. (BHN BAKU SUPLEMEN) COA",28332500 +"What is the hs code for SODIUM FEREDETATE, POWDER, BP2023 (BHN BAKU OBAT) COA 3141248",29224900 +"What is the hs code for MAGNESIUM SULFATE DIHYDRATE, POWDER... (BHN BAKU OBAT) COA 3139778",28332100 +"What is the hs code for POTASSIUM L-ASPARTATE 0,5 HYDRATE (BHN BAKU OBAT) COA 3138689",29224900 +"What is the hs code for POTASSIUM SULFATE FINE POWDER,... (BHN BAKU SUPPLEMEN) COA 3134552",31043000 +"What is the hs code for FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU OBAT) COA 3111674",28332920 +What is the hs code for SENSIDIN DO CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9,38249999 +What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6,38249999 +What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6,38249999 +What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6,38249999 +What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6,38249999 +What is the hs code for EUXYL K 100 CAN 10 KG (BHN BAKU KOSMETIK) CAS 55965-84-9,38249999 +What is the hs code for EUXYL K 720 CAN 10 KG (BHN BAKU KOSMETIK) CAS 65-85-0,38249999 +What is the hs code for EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6,38249999 +What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6,38249999 +What is the hs code for EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6,38249999 +What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9,38249999 +What is the hs code for SENSIVA SC 50 IBC 900 KG (BHN BAKU KOSMETIK) CAS 70445-33-9,38249999 +What is the hs code for SENSIVA SC 50 IBC 900 KG (BHN BAKU KOSMETIK) CAS 70445-33-9,38249999 +What is the hs code for SENSIVA SC 50 IBC 900 KG (BHN BAKU KOSMETIK) CAS 70445-33-9,38249999 +What is the hs code for SENSIVA SC 50 IBC 900 KG (BHN BAKU KOSMETIK) CAS 70445-33-9,38249999 +What is the hs code for KF-7312K (16KG) (BHN BAKU KOSMETIK) CAS 562705-01-5,39100020 +What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) COA 403340,39100020 +What is the hs code for KF-54HV (18KG) (BHN BAKU KOSMETIK) COA 404099,39100020 +What is the hs code for KSG-210 (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9,38249999 +What is the hs code for KSP-300 (1KG) (BHN BAKU KOSMETIK) CAS 9002-92-0,38249999 +What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9,39100020 +What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4,39100020 +What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) COA 404351,39100020 +What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4,39100020 +What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4,39100020 +What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) COA 403348,39100020 +What is the hs code for KSG-15 (16KG) (BHN BAKU KOSMETIK) COA 401653,39100020 +"What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340535, B340537, B340538",29419000 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA SH677386,39061090 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA SH677371,39061090 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA SH677886,39061090 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA SH677390,39061090 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA SH677389,39061090 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA SH677391,39061090 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA SH677393,39061090 +What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA SH677392,39061090 +What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for CITRIC ACID ANHYDROUS 30-100MESH BP/USP/FCC/E330 (BHN BAKU SUPLEMEN) COA 6AX2403034,29181400 +What is the hs code for CORTISONE ACETATE MICRONISED PH.EUR JP (BHN BAKU SUPPLEMEN) COA 2401070082,29372900 +What is the hs code for FERROUS FUMARATE (BHN BAKU OBAT) COA 2024/52,29171900 +"What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-072123,011524",13021950 +What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-011524,13021950 +What is the hs code for HYUNDAI BIOLAND BIO-BLACK PEARL POWDER (BHN BAKU KOSMETIK) CAS 73049-73-7,38249999 +What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for HYUNDAI BIOLAND BIO-FRGE PLUS (BHN BAKU KOSMETIK) CAS 56-81-5,38249999 +What is the hs code for HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-020493,13021950 +What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA NAH112,28321000 +What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP2240321,39139090 +What is the hs code for HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-112383,29389000 +What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-072123,13021950 +What is the hs code for HYUNDAI BIOLAND COLINUS (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP2240321,39139090 +What is the hs code for FERRIC HYDROXIDE POLYMALTOSE COMPLEX.. (BHN BAKU OBAT) COA 3132372,29400000 +What is the hs code for GELUCIRE 44/14 (BHN BAKU SUPPLEMEN) COA 196690,28399000 +What is the hs code for TRANSCUTOL P (BHN BAKU SUPPLEMEN) COA 199835,28399000 +What is the hs code for PRECIFAC 95-3 (BHN BAKU SUPPLEMEN) COA 198752,28399000 +What is the hs code for EMULCIRE 61 WL 2659 (BHN BAKU SUPPLEMEN) COA 198932,28399000 +What is the hs code for PRECIROL ATO 5 (BHN BAKU SUPPLEMEN) COA 198903,28399000 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30512170,29362200 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-28849...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) CAS 233683-84-6,38249999 +What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20240101,29362800 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB23070735 S/D WB23070737,29362100 +What is the hs code for EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300067,13021950 +What is the hs code for EXTRAPONE (R) GINSENG (BHN BAKU KOSMETIK) COA 10300057,13021940 +What is the hs code for EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300035,13021950 +What is the hs code for VITAMIN E (BHN BAKU KOSMETIK) COA 201202312201,29362800 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP08124,28363000 +"What is the hs code for AVOCADO OIL, REFINED NFEU (BHN BAKU KOSMETIK) COA 1000023686",15159011 +"What is the hs code for GRAPESEED OIL, REFINED (BHN BAKU KOSMETIK) COA 8010812001",15152919 +What is the hs code for CARBOWAX SENTRY PEG 1450 (BHN BAKU KOSMETIK) COA D684NCSPB2,39072990 +What is the hs code for CARBOWAX SENTRY PEG 1450 (BHN BAKU KOSMETIK) COA D684NCSPB2,39072990 +What is the hs code for ABYSSINE TM PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834012285P,29224900 +What is the hs code for ECOGEL TM (BHN BAKU KOSMETIK) CAS 85711-58-6,38249999 +What is the hs code for DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834012285P,29224900 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) CAS 37350-42-8,38249999 +What is the hs code for INST'TIGHT TM (BHN BAKU KOSMETIK) CAS 56-81-5,38249999 +What is the hs code for AMISOL TM 4135 (BHN BAKU KOSMETIK) CAS 8002-43-5,38249999 +What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA LC050-23-801,17021100 +What is the hs code for AMITOSE R (BHN BAKU KOSMETIK) CAS 787607-61-8,38249999 +What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7,38249999 +What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) CAS 638164-47-3,38249999 +What is the hs code for IMERCARE 230P SCRUB OR (BHN BAKU KOSMETIK) COA 24-10-23,38029090 +What is the hs code for IMERCARE 230P SCRUB OR (BHN BAKU KOSMETIK) COA 28-04-23,38029090 +What is the hs code for VITAMIN PREMIX 103093 - A (BHN BAKU MAKANAN) COA XW92403255,21069059 +What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPPLEMEN) COA DRY VITAMIN E ACETATE 950 NS,29362800 +What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPPLEMEN) COA WB23060369,29362100 +What is the hs code for OPTISHARP NAT. ZEA. 14PCT SAFF (BHN BAKU SUPPLEMEN) COA 2402107029,32041800 +What is the hs code for 985-L-MENTHOL CRYSTALS INDIAN NATURAL (BHN BAKU KOSMETIK) COA H3-064-L-23-24,29061100 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CAS 107-88-0,38249999 +What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for ZORYALYS (BHN BAKU KOSMETIK) CAS 73398-61-5,38249999 +What is the hs code for PEPPERMINT ORGANIC FROM FRANCE DISTILLATE (SB) (BHN BAKU KOSMETIK) CAS 84082-70-2,38249999 +What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for GREENSIL (BHN BAKU KOSMETIK) CAS 91771-32-3,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6,38249999 +What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02312532,29362700 +What is the hs code for B-CAROTENE 30% FS (BHN BAKU SUPPLEMEN) COA UE02402008,32041800 +What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT23080012,29362500 +"What is the hs code for VITAMIN A WATER-MISCIBLE, TYPE 100 (BHN BAKU SUPPLEMEN) COA UT23110068",29362100 +What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT24010069,29362100 +What is the hs code for B-CAROTENE 30% FS (BHN BAKU SUPPLEMEN) COA UE02402007,32041800 +"What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT24011292,UT24011295,UT24021296",29362100 +What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT24020052,29362100 +What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT24020052,29362100 +What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT24020053,29362100 +What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT24030231,29362100 +What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP35823,28363000 +What is the hs code for SILVER CITRATE SOLUTION 2500PPM (BHN BAKU KOSMETIK) COA CPS23-0844,28432900 +What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 240635,13021950 +What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 240154,13021950 +What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 240029,13021950 +What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 240312,13021950 +What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for BIOCELLACT CHAMOMILLA BD (BHN BAKU KOSMETIK) COA 231949,13021950 +What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 232371,13021950 +What is the hs code for DOKUDAMI LIQUID B (BHN BAKU KOSMETIK) COA 232229,13021950 +What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 240827,29329900 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 240635,13021950 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 240029,13021950 +"What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 231090, 240427",13021950 +What is the hs code for MANNITOL USP/EP MANNOGEM (R) EZ SPRAY DRIED (BHN BAKU OBAT) COA 122303512,29054300 +What is the hs code for CALCIUM CARBONATE VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 122302553,28365010 +What is the hs code for PHARMABURST (R) 500 (BHN BAKU OBAT) COA 122403631,21069099 +What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3257251,38210090 +"What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3338234,4016942",38210090 +What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3272500,38210090 +"What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3228110,...",38210090 +What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3086871,38210090 +What is the hs code for BOTTLE MODIFIED LETHEEN BROTH...(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 4058467,38210090 +What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 40209,38029090 +What is the hs code for IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S577/23,38029090 +What is the hs code for OPASPRAY (R) OPAQUE COLOR... (BHN BAKU PEWARNA TABLET) COA DT758575,32151990 +What is the hs code for OPAGLOS (R) TABLET CORE... (BHN BAKU PEWARNA TABLET) COA DT757071,32151990 +What is the hs code for OPALUX (R) OPAQUE COLOR ... (BHN BAKU PEWARNA TABLET) COA DT758576,32151990 +What is the hs code for NUTRAFINISH (R) TIO2 FREE FILM COATING 168U220008...(BHN BAKU PEWARNA TABLET) CAS 9004-64-2,38249999 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3292368,38210090 +What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3355141,38210090 +What is the hs code for BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2297791,38210090 +"What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3272841,3354352",38210090 +What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2201317,38210090 +What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3114643,38210090 +What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3333720,38210090 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3345733,38210090 +What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3293058,38210090 +What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3333597,38210090 +What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3355141,38210090 +What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3067726,38210090 +What is the hs code for BOTTLE YEAST NITROGEN BASE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3249791,38210090 +What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3292368,38210090 +What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2201317,38210090 +What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3300630,38210090 +What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3236811,38210090 +What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3307226,38210090 +What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3114494,38210090 +What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3270388,38210090 +What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3168361,38210090 +"What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2034966,207",38210090 +What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3248053,38210090 +What is the hs code for BOTTLE RAPPAPORT VASSILLIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3272837,38210090 +What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3333727,38210090 +What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2047633,38210090 +"What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3010894,3030220",38210090 +What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3040458,38210090 +What is the hs code for BOTTLE TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3137222,38210090 +What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3304802,38210090 +What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1285556,38210090 +What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2152796,38210090 +What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3293058,38210090 +What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH 4005483,38210090 +What is the hs code for BOTTLE MACCONKEY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1172869,38210090 +What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3150802,38210090 +What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 3221348,38210090 +What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2165877,38210090 +What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3168361,38210090 +What is the hs code for AMBROXOL HCL EP (BHN BAKU OBAT) COA VBNC240119,29221990 +What is the hs code for PREDNICARBATE (BHN BAKU OBAT) COA PNC 002/0823,29372900 +What is the hs code for PANTOPRAZOLE SODIUM (STERILE) (BHN BAKU OBAT) COA SI/PPZ/00710324,29333990 +What is the hs code for LIPOID S 67 F (BHN BAKU SUPPLEMEN) COA 576200-2240041,29232011 +"What is the hs code for SODIUM ACETATE ANHYDROUS POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3141073",29152910 +What is the hs code for ALLOPURINOL USP (BHN BAKU OBAT) COA ALP0011123,29335990 +What is the hs code for N-ACETYL-L-CYSTEINE (BHN BAKU OBAT) COA C103-202404807,29309090 +What is the hs code for AQUACOAT ECD-30 ETHYLCELLULOSE AQUEOUS... (BHN BAKU PEWARNA TABLET) COA 2174520322,39123900 +"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA ROA364236,ROA023242",28363000 +What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 240304,13021950 +"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 240202,240304",13021950 +What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 230516,29061900 +What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 230516,29061900 +What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 240206,13021950 +What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 240206,13021950 +What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 240202,13021950 +What is the hs code for COLLAGEN CASING PCS CALIBER 22 MM... (BHN BAKU MAKANAN) COA J0222418T01,39171090 +What is the hs code for COLLAGEN CASING PCS CALIBER 23 MM... (BHN BAKU MAKANAN) COA J23219T01,39171090 +What is the hs code for COLLAGEN CASING PDF CALIBER 19 MM... (BHN BAKU MAKANAN) COA J0192418T07,39171090 +What is the hs code for COLLAGEN CASING PDF CALIBER 20MM... (BHN BAKU MAKANAN) COA J0202418T07,39171090 +What is the hs code for COLLAGEN CASING PDF CALIBER 22 MM... (BHN BAKU MAKANAN) COA J0222419T12,39171090 +What is the hs code for COLLAGEN CASING PDF CALIBER 23 MM ... (BHN BAKU MAKANAN) COA J0232419T12,39171090 +What is the hs code for COLLAGEN CASING PDF CALIBER 24 MM... (BHN BAKU MAKANAN) COA J0242419T12,39171090 +What is the hs code for COLLAGEN CASING PDF CALIBER 25 MM... (BHN BAKU MAKANAN) COA J0252419T07,39171090 +What is the hs code for COLLAGEN CASING PDF CALIBER 26 MM... (BHN BAKU MAKANAN) COA J0263118T07,39171090 +What is the hs code for COLLAGEN CASING PDF CALIBER 27 MM... (BHN BAKU MAKANAN) COA J027418T07,39171090 +What is the hs code for COLLAGEN CASING PDF CALIBER 21 MM... (BHN BAKU MAKANAN) COA J0212418T07,39171090 +What is the hs code for LIDOCAINE BASE (BHN BAKU OBAT) COA 205500,29242990 +What is the hs code for LIDOCAINE HCL (BHN BAKU OBAT) COA 205673,29242990 +What is the hs code for SODIUM VALPROATE (BAHAN BAKU OBAT) COA 459831,29159090 +What is the hs code for PRECIROL ATO 5 (BHN BAKU SUPPLEMEN) COA 199538,28399000 +What is the hs code for GELUCIRE 48/16 PELLETS (BHN BAKU SUPPLEMEN) COA 199069,28399000 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE PH (BHN BAKU SUPPLEMEN) COA UQ30808107, SAMPLE NO COMMERCIAL VALUE",29362500 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE PH (BHN BAKU SUPPLEMEN) COA UQ31008120, SAMPLE NO COMMERCIAL VALUE",29362500 +"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT23060024, SAMPLE NO COMMERCIAL VALUE",29362100 +"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT23080036, SAMPLE NO COMMERCIAL VALUE",29362100 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPPLEMEN) COA TL02312506, SAMPLE NO COMMERCIAL VALUE",29362700 +"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT23090029, SAMPLE NO COMMERCIAL VALUE",32030010 +"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT23090030, SAMPLE NO COMMERCIAL VALUE",32030010 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20240331,17029019 +"What is the hs code for DEXAMETHASONE BP2010/USP42 (BHN BAKU OBAT) COA NED240303,NED240409,NED240411",29372200 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0077700,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0078000,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0078100,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0010200,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 24B0010300,13021990 +What is the hs code for SILYMARIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 24B0009100,13021950 +"What is the hs code for MIAMI SCG(S) (BHN BAKU KOSMETIK) COA 240310C5,240322C5",34023990 +What is the hs code for 4-HYDROXYACETOPHENONE (BHN BAKU KOSMETIK) COA 202403014,29145000 +What is the hs code for SERASENSE SF 2 (BAHAN BAKU SUPLEMEN) COA SA40401058,39100090 +What is the hs code for HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1240325,39139090 +What is the hs code for HYUNDAI BIOLAND LICORICE EXTRACT (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-020493,13021950 +What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA O3M204,28321000 +"What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N94107,NAH112",28321000 +What is the hs code for SODIUM CARBONATE IPH (BHN BAKU SUPPLEMEN) COA DOC0672421,28363000 +"What is the hs code for FERRIC PYROPHOSPHATE,24PCT - 26PCT FE POWDER,FCC13 (BHN BAKU MAKANAN) COA 3141813",28353990 +"What is the hs code for FERROUS FUMARATE, FINE POWDER (BHN BAKU MAKANAN) COA 3133483",29171900 +"What is the hs code for FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU MAKANAN) COA 3139890",28332920 +"What is the hs code for FERROUS GLUCONATE, POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3140463",29181600 +"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB24010741,WB24010755,WB24010756",29362100 +What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3109006,38210090 +What is the hs code for PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059,38210090 +What is the hs code for PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3228039,38210090 +What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3338149,38210090 +What is the hs code for BACTO CASAMINO ACIDS TECHNICALS 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2137791,38210090 +What is the hs code for PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059,38210090 +What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 2242551,38210090 +What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3338149,38210090 +What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN551682,35051010 +What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN551681,35051010 +What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN551680,35051010 +What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN551663,35051010 +"What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000217254,0000217255",29362900 +"What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92402367,XW92402368",21069059 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT23110041,29362100 +What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT23090208,29362400 +"What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT23090207,UT23090208",29362400 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT23100028,32041800 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12308017,29362900 +What is the hs code for VITAMIN PREMIX FOR JELLY DRINK V4 (BHN BAKU MAKANAN) COA XW92402208,21069059 +What is the hs code for ANTIOXIDANT PREMIX FOR GUMMY (BHN BAKU MAKANAN) COA XW92403026,21069059 +What is the hs code for PREMIX VITAMIN MINERAL CP (BHN BAKU MAKANAN) COA XW92402207,21069059 +What is the hs code for VITAMIN PREMIX FOR MARGARINE SG15-0027 (BHN BAKU MAKANAN) COA XW92403038,21069059 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT23080260,29362800 +What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT23100027,29362900 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ31012219,29362200 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230602,29362500 +"What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22050237,WB22050239",29362900 +What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02306011,29362900 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ30701084,29362500 +What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12309011,29362900 +What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT23070039,32041800 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30512170,29362200 +What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT23110041,29362100 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02309788,29362400 +"What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ30610689,UQ30610695",29362300 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30512170,29362200 +What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12309011,29362900 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT23070179,29362900 +What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30701089,29362500 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02309788,29362400 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT23060182,29362800 +What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02307101,29362400 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT23050014,29362800 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ30610688,29362300 +What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT23060177,29362900 +What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT23090206,29362400 +What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT22070226,29362100 +What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT22070226,29362100 +What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT22070226,29362100 +What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT23040011,29362600 +What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB23050069,29362300 +What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22050095,29362200 +What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT23090207,29362400 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30612171,29362200 +What is the hs code for MIRASIL DM350 A2 (BHN BAKU KOSMETIK) COA 2412WKWB15,39100090 +What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464488634,39123900 +What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2444431986,39123900 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F48105...(BHN BAKU PEWARNA TABLET)CAS,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET)CAS,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A..(BHN BAKU PEWARNA TABLET)CAS,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019..(BHN BAKU PEWARNA TABLET)CAS,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58923...(BHN BAKU PEWARNA TABLET)CAS,38249999 +"What is the hs code for CHOLINE L-BITARTRATE (BAHAN BAKU OBAT) COA 3028961,3029009",29231000 +What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP (BHN BAKU OBAT) COA 2304344867,29372900 +"What is the hs code for TRAMADOL HCL EP/JP (BHN BAKU OBAT) COA V7532,W7586",29225090 +What is the hs code for ATORVASTATIN CALCIUM (BHN BAKU OBAT) COA M114383,29339990 +What is the hs code for ATORVASTATIN CALCIUM (BHN BAKU OBAT) COA M114312,29339990 +What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP24034300 S/D XP24034303,29211900 +What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02307101,29362400 +What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0046906,29362500 +What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT23070229,29362100 +What is the hs code for D-PANTHENOL 75 L (BHN BAKU KOSMETIK) COA TL02307314,29362400 +What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0824010056,29420000 +"What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323021724,0323021725",29420000 +What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0723010075,29420000 +What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02302802,29362400 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0523060047,29420000 +What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211039,29362700 +What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT23070229,29362100 +What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0224040015,29420000 +What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040129,29420000 +"What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0924020002,0924020003,0924020014",29420000 +What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA 23D0916832,29420000 +What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0824010056,29420000 +What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA 23D0916832,29420000 +"What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040129,0224040015",29420000 +What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0824010056,29420000 +What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0524060009,29420000 +What is the hs code for ASCORBIC ACID FINE POWDER (BHN BAKU KOSMETIK) COA TL02306349,29362700 +"What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COATL02302802,TL02302803",29362400 +What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0224040015,29420000 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23070253,29362800 +What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211039,29362700 +What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211039,29362700 +What is the hs code for ETORIXOCIB (BHN BAKU OBAT) COA ETC-P/24002,29333990 +What is the hs code for KF-54HV (18KG) (BHN BAKU KOSMETIK) COA 404102,39100020 +What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6,38249999 +What is the hs code for KF-54HV (18KG) (BHN BAKU KOSMETIK) COA 404102,39100020 +What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6,38249999 +What is the hs code for KF-54 (18KG) (BHN BAKU KOSMETIK) CAS 68083-14-7,38249999 +"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA021246,ROA023242,ROA027247,ROA3652",28363000 +What is the hs code for MECOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/0324020,29362600 +What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT23010005,29362900 +What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ30617006,29420000 +What is the hs code for VITAMIN B12 CRYST FOOD GRADE (BHN BAKU KOSMETIK) COA 012304026,29362600 +What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 0000131198,25070000 +"What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300, SAMPLE NO COMMERCIAL VALUE",29362900 +"What is the hs code for 1,3-BUTYLENE GLYCOL (NATUROBG) (BHN BAKU KOSMETIK) COA BGC/L21/24",29053200 +What is the hs code for VITAMIN E (BHN BAKU KOSMETIK) COA 201202312202,29362800 +What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA 2304420111,29419000 +What is the hs code for ALLOPURINOL USP (BHN BAKU OBAT) COA 24007AY3ARII,29335990 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101850624,17021100 +What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA MLAH0090124,29341000 +What is the hs code for FRUCTILIANCE (BHN BAKU KOSMETIK) COA PO00043575,13021950 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-7027... (BHN BAKU PEWARNA TABLET)CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM... (BHN BAKU PEWARNA TABLET)CAS 57-50-1,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A... (BHN BAKU PEWARNA TABLET)CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229... (BHN BAKU PEWARNA TABLET)CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G62343...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING... (BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03Z59026...(BHN BAKU PEWARNA TABLET)CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 00F28484...(BHN BAKU PEWARNA TABLET)CAS 14807-96-6,38249999 +What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-001-B,13021990 +What is the hs code for OMEPRAZOLE PELLETS 8.5PCT ( BHN BAKU OBAT) COA OP-13430124,30039000 +What is the hs code for CALCIUM CARBONATE DC TYPE CS90 PHARMA (BHN BAKU OBAT) COA 202400022,28365010 +What is the hs code for CALCIUM CARBONATE DC TYPE CS90 PHARMA (BHN BAKU OBAT) COA 202200760,28365010 +What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052401,47063000 +What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052401,47063000 +What is the hs code for KELCOGEL CG-HA [E] (BAHAN BAKU KOSMETIK) CAS 71010-52-1,38249999 +What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2024031201,21012090 +What is the hs code for MATCHA (BHN BAKU MAKANAN) COA 2024020504,21012090 +What is the hs code for SETACIN 103/SPEZIAL OR NP - RSPO - MB (BHN BAKU KOSMETIK) COA 155,34023990 +What is the hs code for FERROUS FUMARATE (BHN BAKU OBAT) COA 2024/58,29171900 +What is the hs code for FERROUS FUMARATE (BHN BAKU OBAT) COA 2024/52,29171900 +What is the hs code for KETOROLAC TROMETHAMINE USP (BHN BAKU OBAT) COA KM0261123,29339990 +What is the hs code for MAGNOLIA BARK EXTRACT (BHN BAKU KOSMETIK) CAS 35354-74-6,38249999 +What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB180124,39123900 +What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB180124,39123900 +What is the hs code for LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LG010324,39123900 +What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B120224,39123900 +What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B120224,39123900 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101850524,17021100 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101850524,17021100 +What is the hs code for OPASPRAY (R) OPAQUE COLOR... (BHN BAKU PEWARNA TABLET) COA DT759649,32151990 +What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA ND2275M,29372200 +What is the hs code for SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202404-025,35040000 +What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN551287,35051010 +What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN551288,35051010 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM ...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM ...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM ...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for TABCOAT TC (R) FILM COATING PRODUCT TC-GFII... (BHN BAKU PEWARNA TABLET) COA GA751571,32151990 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM ...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM ...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM ...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM ...(BHN BAKU PEWARNA TABLET) CAS 1309-37-1,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM ...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM ...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 151-21-3,38249999 +What is the hs code for SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 2409050252,29322090 +What is the hs code for PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) CAS 1332-09-8,38249999 +"What is the hs code for MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL240404,MCCPOL240411",29094900 +"What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P1B28QA000,P1F06QA000,P1F07QA000",29420000 +"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP09924,MTP10024",28363000 +What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP35823,28363000 +What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP10624,28363000 +What is the hs code for AMLODIPINE BESILATE BP/EP (BHN BAKU OBAT) COA AMB/019/04/24 S/D AMB/022/04/24,29333990 +What is the hs code for CURCUMINOIDS PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23S0223602,13021950 +What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 23S0230600,13021950 +What is the hs code for AMITOSE R (BHN BAKU KOSMETIK) CAS 787607-61-8,38249999 +What is the hs code for PROMOIS KR-30 (BHN BAKU KOSMETIK) CAS 69430-36-0,38249999 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0,38249999 +What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK) COA 2404EF2310,29224900 +"What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340550, B340538",29419000 +What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 231761,13021950 +What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for ALPINIAWHITE (BHN BAKU KOSMETIK) COA 232597,13021950 +What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 240213,13021950 +What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 240559,13021950 +What is the hs code for OUGON LIQUID B(N) (BHN BAKU KOSMETIK) COA 240606,13021950 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6,38249999 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300,29362900 +What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02311823,29362400 +What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT23080260,29362800 +What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02307106,29362400 +What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT23090017,29362900 +What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ31110828,29362300 +What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ31012217,29362200 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300,29362900 +What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT23050020,29362800 +What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT23090208,29362400 +"What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW92403201,XW92403202",21069059 +What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ31113164,29362200 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101851024,17021100 +What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA LC050-23-801,17021100 +"What is the hs code for NG 5 PCT-1,2 PROPYLENGLYCOLE 95PCT (BAHAN BAKU OBAT) COA 2403999",30039000 +What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334941 S/D B334943,29419000 +What is the hs code for ASCORBIC ACID 90PCT GRANULATION (BHN BAKU SUPPLEMEN) COA WB24039069,29362700 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-4215...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA 2464401497,39123900 +What is the hs code for 8627-650 LIPEX (R) BASSOL C (TM) VEGETABLE OIL (BHN BAKU KOSMETIK) COA 0002750724,15162049 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) CAS 8001-25-0,38249999 +What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6,38249999 +What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) CAS 8001-25-0,38249999 +What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) CAS 8001-25-0,38249999 +What is the hs code for RICE MILK AQUEOUS EXTRACT (SB) (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for ALUMINUM HYDROXIDE GEL USP BARCROFT TM VISCO-9 (BHN BAKU OBAT) COA 102402004,28183000 +What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) CAS 1119-97-7,38249999 +What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for HYUNDAI BIOLAND NEWAPLE (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for HYUNDAI BIOLAND PF CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSSBD-010844,13021950 +What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-062323,38249999 +What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA O3M204,28321000 +What is the hs code for HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1240502,39139090 +What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2510124,29397900 +What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9,38249999 +What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT24020053,29362100 +What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT24030231,29362100 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300,29362900 +What is the hs code for ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2311221,32030010 +What is the hs code for EUXYL K 100 CAN 10 KG (BHN BAKU KOSMETIK) CAS 55965-84-9,38249999 +What is the hs code for ABYSSINE TM PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for JAGUAR HP 105 SGI 25KG CARDBOARD CARTON (BHN BAKU KOSMETIK) CAS 39421-75-5,38249999 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3292368,38210090 +What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT24020053,29362100 +What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT24030231,29362100 +What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA 0000084160,29309090 +What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000084161,29309090 +What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000084162,29309090 +"What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA 0000084163, SAMPLE NO COMMERCIAL VALUE",29309090 +"What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000084164, SAMPLE NO COMMERCIAL VALUE",29309090 +"What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000084165, SAMPLE NO COMMERCIAL VALUE",29309090 +What is the hs code for OPASPRAY (R) OPAQUE COLOR... (BHN BAKU PEWARNA TABLET) COA DT759649,32151990 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101851024,17021100 +What is the hs code for ABYSSINE TM PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for JAGUAR HP 105 SGI 25KG CARDBOARD CARTON (BHN BAKU KOSMETIK) CAS 39421-75-5,38249999 +What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-231221,29061300 +What is the hs code for EDIBLE BOVINE GELATINE 180/20 (BHN BAKU OBAT ) COA 5002301267,35030049 +"What is the hs code for PARACETAMOL USP (BHN BAKU OBAT) COA 2350408,2350422,2310226,2310233",29242930 +What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3109006,38210090 +What is the hs code for PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059,38210090 +What is the hs code for PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059,38210090 +What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3228039,38210090 +What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3338149,38210090 +What is the hs code for BACTO CASAMINO ACIDS TECHNICALS 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2137791,38210090 +What is the hs code for PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059,38210090 +What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 2242551,38210090 +What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3338149,38210090 +What is the hs code for EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300067,13021950 +What is the hs code for EXTRAPONE (R) GINSENG (BHN BAKU KOSMETIK) COA 10300057,13021940 +What is the hs code for EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300035,13021950 +What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334941 S/D B334943,29419000 +What is the hs code for CARBOWAX SENTRY PEG 1450 (BHN BAKU KOSMETIK) COA D684NCSPB2,39072990 +What is the hs code for CARBOWAX SENTRY PEG 1450 (BHN BAKU KOSMETIK) COA D684NCSPB2,39072990 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3292368,38210090 +What is the hs code for PRECIROL ATO 5 (BHN BAKU SUPPLEMEN) COA 199538,28399000 +What is the hs code for GELUCIRE 48/16 PELLETS (BHN BAKU SUPPLEMEN) COA 199069,28399000 +What is the hs code for OPACODE (R) MONOGRAMMING INK S-1-180000 WHITE (BHN BAKU PEWARNA TABLET) COA WP876966,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C YELLOW #6/SUNSET... (BHN BAKU PEWARNA TABLET) COA WP868324:BC3385,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5406 FD&C RED #40/ALLURA R... (BHN BAKU PEWARNA TABLET) COA WP866896:BC2990,32151990 +What is the hs code for LAKE PIGMENT HT (R) 5396 ERYTHROSINE ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP860981:1,32151990 +What is the hs code for STARTAB (R) DIRECTLY COMPRESSIBLE STARCH 4001 (BHN BAKU PEWARNA TABLET) COA WP873593,35051010 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20240331,17029019 +What is the hs code for ASCORBIC ACID 90PCT GRANULATION (BHN BAKU SUPPLEMEN) COA WB24039069,29362700 +What is the hs code for MEG-3 '30' N-3 INF OIL (BHN BAKU SUPPLEMEN) COA TS00023438,29362500 +What is the hs code for MIRASIL DM350 A2 (BHN BAKU KOSMETIK) COA 2412WKWB15,39100090 +What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) CAS 122-99-6,38249999 +What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334941 S/D B334943,29419000 +What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334941 S/D B334943,29419000 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE PH (BHN BAKU SUPPLEMEN) COA UQ30808107, SAMPLE NO COMMERCIAL VALUE",29362500 +"What is the hs code for PYRIDOXINE HYDROCHLORIDE PH (BHN BAKU SUPPLEMEN) COA UQ31008120, SAMPLE NO COMMERCIAL VALUE",29362500 +"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT23060024, SAMPLE NO COMMERCIAL VALUE",29362100 +"What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT23080036, SAMPLE NO COMMERCIAL VALUE",29362100 +"What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPPLEMEN) COA TL02312506, SAMPLE NO COMMERCIAL VALUE",29362700 +"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT23090029, SAMPLE NO COMMERCIAL VALUE",32030010 +"What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT23090030, SAMPLE NO COMMERCIAL VALUE",32030010 +"What is the hs code for MAGNESIUM ASPARTATE DIHYDRATE,... (BHN BAKU SUPPLEMEN) COA 3118345-04",29224900 +"What is the hs code for SODIUM SELENITE IN CARRIER,... (BHN BAKU SUPPLEMEN) COA 3127495",28429010 +What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9,38249999 +What is the hs code for REFINED COCONUT OIL - L (BHN BAKU KOSMETIK) COA 0002779650,15131990 +What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA G12101UP,29053200 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0077700,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0078000,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0078100,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0010200,13021990 +What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 24B0010300,13021990 +What is the hs code for KETOROLAC TROMETHAMINE USP (BHN BAKU OBAT) COA KM0150323,29339990 +What is the hs code for BETAMETHASONE VALERATE USP 43 (BHN BAKU OBAT) COA APL/BV/01029/A-23,29372200 +What is the hs code for BETAMETHASONE VALERATE USP 43 (BHN BAKU OBAT) COA APL/BV/01029/A-23,29372200 +"What is the hs code for MAGNESIUM HYDROXIDE USP BARCROFT TM 5300 (BHN BAKU OBAT) COA 102369011,102369012",28161000 +What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWDER... (B.BAKU KOSMETIK) CAS 65497-29-2,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-4215...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3292368,38210090 +What is the hs code for SERASENSE SF 2 (BAHAN BAKU SUPLEMEN) COA SA40401058,39100090 +What is the hs code for MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50555,29061100 +What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT24020053,29362100 +What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT24030231,29362100 +What is the hs code for OPASPRAY (R) OPAQUE COLOR... (BHN BAKU PEWARNA TABLET) COA DT759649,32151990 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300,29362900 +"What is the hs code for FERRIC PYROPHOSPHATE,24PCT - 26PCT FE POWDER,FCC13 (BHN BAKU MAKANAN) COA 3141813",28353990 +"What is the hs code for FERROUS FUMARATE, FINE POWDER (BHN BAKU MAKANAN) COA 3133483",29171900 +"What is the hs code for FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU MAKANAN) COA 3139890",28332920 +"What is the hs code for FERROUS GLUCONATE, POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3140463",29181600 +What is the hs code for SILVER CITRATE SOLUTION 2500PPM (BHN BAKU KOSMETIK) COA CPS23-0844,28432900 +"What is the hs code for FERRIC PYROPHOSPHATE,24PCT - 26PCT FE POWDER,FCC13 (BHN BAKU MAKANAN) COA 3141813",28353990 +"What is the hs code for FERROUS FUMARATE, FINE POWDER (BHN BAKU MAKANAN) COA 3133483",29171900 +"What is the hs code for FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU MAKANAN) COA 3139890",28332920 +"What is the hs code for FERROUS GLUCONATE, POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3140463",29181600 +What is the hs code for PANTOPRAZOLE SODIUM (STERILE) (BHN BAKU OBAT) COA SI/PPZ/00710324,29333990 +What is the hs code for ATORVASTATIN CALCIUM (BHN BAKU OBAT) COA M114383,29339990 +What is the hs code for ATORVASTATIN CALCIUM (BHN BAKU OBAT) COA M114312,29339990 +What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT24020053,29362100 +What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT24030231,29362100 +What is the hs code for OPASPRAY (R) OPAQUE COLOR... (BHN BAKU PEWARNA TABLET) COA DT759649,32151990 +What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20240331,17029019 +What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334941 S/D B334943,29419000 +What is the hs code for ALUMINUM HYDROXIDE GEL USP.. (BHN BAKU OBAT) COA 102402001,28183000 +What is the hs code for MAGNESIUM HYDROXIDE GEL... (BHN BAKU OBAT) COA 102323013,28161000 +"What is the hs code for MAGNESIUM HYDROXIDE GEL... (BHN BAKU OBAT) COA 102323013, SAMPLE NO COMMERCIAL VALUE",28161000 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-7027... (BHN BAKU PEWARNA TABLET)CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM... (BHN BAKU PEWARNA TABLET)CAS 57-50-1,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A... (BHN BAKU PEWARNA TABLET)CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229... (BHN BAKU PEWARNA TABLET)CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G62343...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING... (BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03Z59026...(BHN BAKU PEWARNA TABLET)CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 00F28484...(BHN BAKU PEWARNA TABLET)CAS 14807-96-6,38249999 +"What is the hs code for FERRIC PYROPHOSPHATE,24PCT - 26PCT FE POWDER,FCC13 (BHN BAKU MAKANAN) COA 3141813",28353990 +"What is the hs code for FERROUS FUMARATE, FINE POWDER (BHN BAKU MAKANAN) COA 3133483",29171900 +"What is the hs code for FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU MAKANAN) COA 3139890",28332920 +"What is the hs code for FERROUS GLUCONATE, POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3140463",29181600 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300,29362900 +"What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP09924,MTP10024",28363000 +What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104314023,17021100 +What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103863623,17021100 +What is the hs code for MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103152523,17021100 +What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101854623,17021100 +What is the hs code for GRANULAC (R) 70 (BHN BAKU OBAT) COA L101843823,17021100 +What is the hs code for ALUMINUM HYDROXIDE GEL USP.. (BHN BAKU OBAT) COA 102402001,28183000 +What is the hs code for MAGNESIUM HYDROXIDE GEL... (BHN BAKU OBAT) COA 102323013,28161000 +"What is the hs code for MAGNESIUM HYDROXIDE GEL... (BHN BAKU OBAT) COA 102323013, SAMPLE NO COMMERCIAL VALUE",28161000 +What is the hs code for DL ALPHA TOCOPHEROL (BHN BAKU KOSMETIK) COA 01231104ES,29362800 +What is the hs code for ALUMINUM HYDROXIDE GEL USP.. (BHN BAKU OBAT) COA 102402001,28183000 +What is the hs code for MAGNESIUM HYDROXIDE GEL... (BHN BAKU OBAT) COA 102323013,28161000 +"What is the hs code for MAGNESIUM HYDROXIDE GEL... (BHN BAKU OBAT) COA 102323013, SAMPLE NO COMMERCIAL VALUE",28161000 +What is the hs code for FLUOROMETHOLONE MICRONISED USP BP JP (BHN BAKU OBAT) COA 2201584198,29372200 +What is the hs code for PREGABALIN (BHN BAKU OBAT) COA PU1110423,29224900 +"What is the hs code for FERRIC PYROPHOSPHATE,24PCT - 26PCT FE POWDER,FCC13 (BHN BAKU MAKANAN) COA 3141813",28353990 +"What is the hs code for FERROUS FUMARATE, FINE POWDER (BHN BAKU MAKANAN) COA 3133483",29171900 +"What is the hs code for FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU MAKANAN) COA 3139890",28332920 +"What is the hs code for FERROUS GLUCONATE, POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3140463",29181600 +"What is the hs code for FERRIC PYROPHOSPHATE,24PCT - 26PCT FE POWDER,FCC13 (BHN BAKU MAKANAN) COA 3141813",28353990 +"What is the hs code for FERROUS FUMARATE, FINE POWDER (BHN BAKU MAKANAN) COA 3133483",29171900 +"What is the hs code for FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU MAKANAN) COA 3139890",28332920 +"What is the hs code for FERROUS GLUCONATE, POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3140463",29181600 +What is the hs code for MECOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/0324020,29362600 +What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512335,47069200 +"What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512342,G02512345",47069200 +What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512335,47069200 +What is the hs code for PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3512810,33029000 +What is the hs code for HPA82 PURE SENSITIVE (BHN BAKU KOSMETIK) COA 3549437,33029000 +What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334941 S/D B334943,29419000 +What is the hs code for PROPYPHENAZONE (CEP) (BHN BAKU OBAT UNTUK PEWARNA TABLET) COA 2210246,29331100 +What is the hs code for GRANISETRON HCL EP (BHN BAKU OBAT) COA GRH/121008,29397900 +What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 202342,29332900 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-4215...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA G12101UP,29053200 +"What is the hs code for SODIUM ACETATE ANHYDROUS POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3141073",29152910 +What is the hs code for ECHINACEA ANG.DRY PURIF. EX. (BHN BAKU SUPPLEMEN) COA 21S0155200,13021990 +What is the hs code for VACCINIUM MYRTILLUS DRY EX. (BHN BAKU SUPLEMEN) COA 23S0078800,13021990 +What is the hs code for GREEN TEA DRY DEC.EX ./PHOSPHOL (BHN BAKU SUPLEMEN) COA 23S0183400,13021950 +What is the hs code for P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 23S0224200,13021990 +What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 23S0196500,13021990 +What is the hs code for EMULCIRE 61 WL 2659 (BHN BAKU SUPPLEMEN) COA 196936,28399000 +What is the hs code for TRANSCUTOL P (BHN BAKU SUPPLEMEN) COA 195556,28399000 +What is the hs code for LEMON SECRETS (LEMON 40° BRIX) (BHN BAKU KOSMETIK) COA 02/22GL4,28399000 +"What is the hs code for LEMON SECRETS (LEMON 40° BRIX) (BHN BAKU KOSMETIK) COA 02/22GL4, SAMPLE NO COMMERCIAL VALUE",28399000 +What is the hs code for APIFIL CAR (BHN BAKU SUPPLEMEN) COA 188262,28399000 +What is the hs code for LABRAFAC LIPOPHILE WL 1349 (BHN BAKU SUPPLEMEN) COA 195981,28399000 +What is the hs code for GELEOL MONO AND DIGLYCERIDES NF (BHN BAKU SUPPLEMEN) COA 23E0304,28399000 +What is the hs code for LABRASOL BF (BHN BAKU SUPPLEMEN) COA 195283,28399000 +What is the hs code for PRECIROL ATO 5 (BHN BAKU SUPPLEMEN) COA 196484,28399000 +What is the hs code for COMPRITOL 888 PELLETS (BHN BAKU SUPPLEMEN) COA 22E4306,28399000 +What is the hs code for COMPRITOL 888 ATO (BHN BAKU SUPPLEMEN) COA 197169,28399000 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-4215...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334941 S/D B334943,29419000 +What is the hs code for FERROUS FUMARATE (BHN BAKU OBAT) COA 2024/58,29171900 +What is the hs code for FERROUS FUMARATE (BHN BAKU OBAT) COA 2024/52,29171900 +What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 240304,13021950 +"What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 240202,240304",13021950 +What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 230516,29061900 +What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 230516,29061900 +What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 240206,13021950 +What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 240206,13021950 +What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 240202,13021950 +What is the hs code for SORBITOL SPECIAL (R) MDF 85 (BHN BAKU SUPPLEMEN) COA 122303217,29054400 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CAS 107-88-0,38249999 +What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for ZORYALYS (BHN BAKU KOSMETIK) CAS 73398-61-5,38249999 +What is the hs code for PEPPERMINT ORGANIC FROM FRANCE DISTILLATE (SB) (BHN BAKU KOSMETIK) CAS 84082-70-2,38249999 +What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for GREENSIL (BHN BAKU KOSMETIK) CAS 91771-32-3,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6,38249999 +"What is the hs code for RAJOL WP80/LOREAL LIGHT LIQUID PARAFFIN-BP/...(BHN BAKU KOSMETIK) COA 1000240002,1000240003",27101990 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300,29362900 +What is the hs code for M 1555 N 900/980 76 (BHN BAKU KOSMETIK) COA 267905,56039300 +What is the hs code for M 1555 N 900/980 76 (BHN BAKU KOSMETIK) COA 267905,56039300 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300,29362900 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-4215...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-4215...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for NONIVAMIDE (SYNTHETIC CAPSAICIN) (BHN BAKU KOSMETIK) COA 20231020,29241990 +What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 231761,13021950 +What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for ALPINIAWHITE (BHN BAKU KOSMETIK) COA 232597,13021950 +What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 240213,13021950 +What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 240559,13021950 +What is the hs code for OUGON LIQUID B(N) (BHN BAKU KOSMETIK) COA 240606,13021950 +What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for ECHINACEA ANG.DRY PURIF. EX. (BHN BAKU SUPPLEMEN) COA 21S0155200,13021990 +What is the hs code for VACCINIUM MYRTILLUS DRY EX. (BHN BAKU SUPLEMEN) COA 23S0078800,13021990 +What is the hs code for GREEN TEA DRY DEC.EX ./PHOSPHOL (BHN BAKU SUPLEMEN) COA 23S0183400,13021950 +What is the hs code for P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 23S0224200,13021990 +What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 23S0196500,13021990 +What is the hs code for ERDOSTEINE IH (BAHAN BAKU OBAT) COA EDSF230072,29349990 +What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 23100080,29221990 +What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 23100109,29221990 +What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 23100110,29221990 +What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2024031201,21012090 +What is the hs code for MATCHA (BHN BAKU MAKANAN) COA 2024020504,21012090 +What is the hs code for ABYSSINE TM PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for KF-54HV (18KG) (BHN BAKU KOSMETIK) COA 404102,39100020 +What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6,38249999 +What is the hs code for KF-54HV (18KG) (BHN BAKU KOSMETIK) COA 404102,39100020 +What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6,38249999 +What is the hs code for KF-54 (18KG) (BHN BAKU KOSMETIK) CAS 68083-14-7,38249999 +What is the hs code for MEG-3 '30' N-3 INF OIL (BHN BAKU SUPPLEMEN) COA TS00023438,29362500 +What is the hs code for ABYSSINE TM PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829012074P,29224900 +What is the hs code for GREYVERSE TM (BHN BAKU KOSMETIK) COA 833012061P,29224900 +What is the hs code for HELIOGEL TM (BHN BAKU KOSMETIK) CAS 25549-84-2,38249999 +What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) CAS 37350-42-8,38249999 +What is the hs code for PROGELINE TM (BHN BAKU KOSMETIK) COA 820052242P,29224900 +"What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 12-05-23, 20-04-23, 21-04-23, 26-04-23, 05-07-23",38029090 +What is the hs code for CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) CAS 989-51-5,38249999 +What is the hs code for CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) CAS 989-51-5,38249999 +What is the hs code for CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) CAS 989-51-5,38249999 +"What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 23100619,23100626,23100670",29395900 +What is the hs code for MEG-3 '30' N-3 INF OIL (BHN BAKU SUPPLEMEN) COA TS00023438,29362500 +What is the hs code for ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2311221,32030010 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300,29362900 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300,29362900 +"What is the hs code for MIAMI SCG(S) (BHN BAKU KOSMETIK) COA 240310C5,240322C5",34023990 +"What is the hs code for SUNBELLIN (BHN BAKU KOSMETIK) COA F210-2311003,2311007, 2311008",29339990 +"What is the hs code for SPECWHITE VCE (BHN BAKU KOSMETIK) COA 20230704, 20240108, 20240109",29362700 +"What is the hs code for ADENOSINE(L) (BHN BAKU KOSMETIK) COA C01202309003L, C01202311004L",29349990 +What is the hs code for GF-B331 (BHN BAKU KOSMETIK) COA 20240118001,35051090 +What is the hs code for SPECWHITE 05 (BHN BAKU KOSMETIK) COA 20231007,29222900 +What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) CAS 7631-86-9,38249999 +What is the hs code for 4-HYDROXYACETOPHENONE (BHN BAKU KOSMETIK) COA 202403014,29145000 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-4215...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +What is the hs code for IONOL CP (BHN BAKU KOSMETIK) COA 01106523,29071900 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300,29362900 +"What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 23100619,23100626,23100670",29395900 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300,29362900 +What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT24020053,29362100 +What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT24030231,29362100 +What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA 0000084160,29309090 +What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000084161,29309090 +What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000084162,29309090 +"What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA 0000084163, SAMPLE NO COMMERCIAL VALUE",29309090 +"What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000084164, SAMPLE NO COMMERCIAL VALUE",29309090 +"What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000084165, SAMPLE NO COMMERCIAL VALUE",29309090 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-4215...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3,38249999 +What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7,38249999 +"What is the hs code for DEXAMETHASONE BP2010/USP42 (BHN BAKU OBAT) COA NED240303,NED240409,NED240411",29372200 +"What is the hs code for SODIUM ACETATE ANHYDROUS POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3141073",29152910 +What is the hs code for AMITOSE R (BHN BAKU KOSMETIK) CAS 787607-61-8,38249999 +What is the hs code for PROMOIS KR-30 (BHN BAKU KOSMETIK) CAS 69430-36-0,38249999 +What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0,38249999 +What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CAS 107-88-0,38249999 +What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for ZORYALYS (BHN BAKU KOSMETIK) CAS 73398-61-5,38249999 +What is the hs code for PEPPERMINT ORGANIC FROM FRANCE DISTILLATE (SB) (BHN BAKU KOSMETIK) CAS 84082-70-2,38249999 +What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0,38249999 +What is the hs code for COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) CAS 7732-18-5,38249999 +What is the hs code for GREENSIL (BHN BAKU KOSMETIK) CAS 91771-32-3,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6,38249999 +What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6,38249999 +What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300,29362900 +What is the hs code for EMULCIRE 61 WL 2659 (BHN BAKU SUPPLEMEN) COA 196936,28399000 +What is the hs code for TRANSCUTOL P (BHN BAKU SUPPLEMEN) COA 195556,28399000 +What is the hs code for LEMON SECRETS (LEMON 40° BRIX) (BHN BAKU KOSMETIK) COA 02/22GL4,28399000 +"What is the hs code for LEMON SECRETS (LEMON 40° BRIX) (BHN BAKU KOSMETIK) COA 02/22GL4, SAMPLE NO COMMERCIAL VALUE",28399000 +What is the hs code for APIFIL CAR (BHN BAKU SUPPLEMEN) COA 188262,28399000 +What is the hs code for LABRAFAC LIPOPHILE WL 1349 (BHN BAKU SUPPLEMEN) COA 195981,28399000 +What is the hs code for GELEOL MONO AND DIGLYCERIDES NF (BHN BAKU SUPPLEMEN) COA 23E0304,28399000 +What is the hs code for LABRASOL BF (BHN BAKU SUPPLEMEN) COA 195283,28399000 +What is the hs code for PRECIROL ATO 5 (BHN BAKU SUPPLEMEN) COA 196484,28399000 +What is the hs code for COMPRITOL 888 PELLETS (BHN BAKU SUPPLEMEN) COA 22E4306,28399000 +What is the hs code for COMPRITOL 888 ATO (BHN BAKU SUPPLEMEN) COA 197169,28399000 +What is the hs code for PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) CAS 5743-47-5,38249999 +What is the hs code for HYDROCORTISONE ACETATE EP/USP (BHN BAKU OBAT) COA NEHAC220410 BAIK DAN BARU,29372900.0 +What is the hs code for ASTABIO AR10 (ASTAXANTHIN OIL 10PCT) (BHN BAKU OBAT) COA 2205101 BAIK DAN BARU,21069059.0 +What is the hs code for IMWITOR ¿ 372 P (V) FLAKES,38249999.0 +What is the hs code for RAJOL WP80/BDF LIGHT LIQUID PARAFFIN-BP/LIGHT MINERAL OIL-USP,27129090.0 +What is the hs code for IMWITOR ¿ 372 P (V) FLAKES,38249999.0 +What is the hs code for RAJOL WP80/BDF LIGHT LIQUID PARAFFIN-BP/LIGHT MINERAL OIL... (BHN BAKU KOSMETIK) COA 1000230001 BAIK DAN BARU,27129090.0 +"What is the hs code for HYDROCORTISONE ACETATE EP/USP (BHN BAKU OBAT) COA NEHAC220711,NEHAC220607 BAIK DAN BARU",29372900.0 +What is the hs code for RAJOL WP80/BDF LIGHT LIQUID PARAFFIN-BP/LIGHT MINERAL OIL-USP,27129090.0 +What is the hs code for HYDROCORTISONE ACETATE EP/USP (BHN BAKU OBAT) COA NEHAC220902 BAIK DAN BARU,29372900.0 +What is the hs code for RAJOL WP80/BDF LIGHT LIQUID PARAFFIN-BP/LIGHT MINERAL OIL-USP,27129090.0 +What is the hs code for ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2205101 (POST BORDER) BAIK DAN BARU,21069059.0 +What is the hs code for RAJOL WP80/BDF LIGHT LIQUID PARAFFIN-BP/LIGHT MINERAL OIL-USP,27129090.0 +What is the hs code for RAJOL WP80/BDF LIGHT LIQUID PARAFFIN-BP/LIGHT MINERAL OIL-USP,27129090.0 +What is the hs code for HYDROCORTISONE ACETATE EP7/USP42 (BHN BAKU OBAT) COA NEHAC230606 BAIK DAN BARU,29372900.0 +What is the hs code for ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2302281 BAIK DAN BARU,21069059.0 +What is the hs code for HYDROCORTISONE ACETATE EP7/USP42 (BHN BAKU OBAT) COA NEHAC230613 BAIK DAN BARU,29372900.0 +What is the hs code for RAJOL WP80/BDF LIGHT LIQUID PARAFFIN-BP/LIGHT MINERAL OIL-USP,27129090.0 +What is the hs code for ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2302281 BAIK DAN BARU,21069059.0 +What is the hs code for RAJOL WP80/LOREAL LIGHT LIQUID PARAFFIN-BP/LIGHT... (BHN BAKU KOSMETIK) COA 1000230002 BAIK DAN BARU,27129090.0 +What is the hs code for ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2311221 BAIK DAN BARU,21069059.0 +What is the hs code for ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2311221,21069059.0 +What is the hs code for RAJOL WP80/BDF LIGHT LIQUID PARAFFIN-BP/LIGHT MINERAL OIL-USP/NF,27129090.0 +What is the hs code for RAJOL WP80/LOREAL LIGHT LIQUID PARAFFIN-BP/LIGHT... (BHN BAKU KOSMETIK) COA 1000240001,27129090.0 +What is the hs code for ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2311221,21069059.0 +What is the hs code for CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) CAS 989-51-5,21012020.0 +What is the hs code for CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) CAS 989-51-5,21012020.0 +What is the hs code for CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) CAS 989-51-5,21012020.0 +What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2023111002,21012020.0 +"What is the hs code for RAJOL WP80/LOREAL LIGHT LIQUID PARAFFIN-BP/...(BHN BAKU KOSMETIK) COA 1000240002,1000240003",27129090.0 +What is the hs code for ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2311221,21069059.0 +What is the hs code for ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2404161,21069059.0 +What is the hs code for RAJOL WP80/LOREAL LIGHT LIQUID PARAFFIN-BP/...(BHN BAKU KOSMETIK) COA 1000240004,27129090.0 +What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA : O3M204,28321000.0 +What is the hs code for RAJOL WP80/LOREAL LIGHT LIQUID PARAFFIN-BP/...(BHN BAKU KOSMETIK) COA 1000240005,27129090.0 +"What is the hs code for ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2404161, 2406051",21069059.0 +"What is the hs code for RAJOL WP80/BDF +LIGHT LIQUID PARAFFIN-BP/ +LIGHT MINERAL OIL-USP/NF",27129090.0 diff --git a/training_gemini.jsonl b/training_gemini.jsonl new file mode 100644 index 0000000..52d262f --- /dev/null +++ b/training_gemini.jsonl @@ -0,0 +1 @@ +[{"text_input": "What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592250", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592245", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592249", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592259", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592243", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592244", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592253", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592252", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592161", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592357", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592248", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592251", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592433", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592433", "output": "38249999"}, {"text_input": "What is the hs code for BIOTOX (BHN BAKU OBAT UTK PAKAN TERNAK) COA 020217-109", "output": "23099090"}, {"text_input": "What is the hs code for LIQUIPHOS STRONG (BHN BAKU UTK PAKAN TERNAK) COA 200117-073", "output": "23099090"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM DAB /EP 7.0 (BHN BAKU OBAT) COA 1701127,29,30,31", "output": "29331100"}, {"text_input": "What is the hs code for EPA DHA 44 37 (BHN BAKU OBAT) COA EE4437-170111", "output": "2906130000"}, {"text_input": "What is the hs code for CEFIXIME (BHN BAKU OBAT) COA AP004-1701-1105", "output": "29419000"}, {"text_input": "What is the hs code for CEFIXIME MICRONIZED (BHN BAKU OBAT) COA AP004-1701-2032", "output": "29419000"}, {"text_input": "What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT)COA. 1603847188", "output": "29372200"}, {"text_input": "What is the hs code for MAPROTILINE HCL (BHN BAKU OBAT) COA 5000/13/16", "output": "29214900"}, {"text_input": "What is the hs code for SALBUTAMOL SULPHATE BP (BHN BAKU OBAT) COA SLL/SS/0217007", "output": "29225090"}, {"text_input": "What is the hs code for ASTABIO ARV-S (BHN BAKU OBAT) COA.1701241K", "output": "32030010"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ61202630", "output": "29362200"}, {"text_input": "What is the hs code for PARSOL MCX ,200KG PLACTIC DRUM (BHN BAKU KOSMETIK) COA 0517010004", "output": "29189900"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609078,9079", "output": "32041900"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT16080047", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT16030028", "output": "32041900"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01609079", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT16100155", "output": "29362100"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT16090080", "output": "29362800"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01610585", "output": "29362700"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01606108", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT16030101", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU.G (TOCO) BHN BAKU MAKANAN, COA UT16090697", "output": "29362100"}, {"text_input": "What is the hs code for B2 UNIVERSAL FINE POWDER,5KG BAG ALU (B. BAKU MAKANAN) COA UQ60610117", "output": "29362300"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT16100279", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT16080047", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT16090032", "output": "29362900"}, {"text_input": "What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE01605027", "output": "29362100"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01610550", "output": "29362700"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT16030028", "output": "32041900"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609078", "output": "32041900"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01610774", "output": "29362400"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01606108", "output": "29362900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT16100279", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS BHN BAKU SUPLEMEN, COA UT16060009", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1608010", "output": "29362900"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT GRANULATION 25KG BAL(B. BAKU SUPLEMEN) COA WB01016959", "output": "29362700"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ60610100", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (B BAKU SUPLEMEN) COA UT16100155", "output": "29362100"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT16030101", "output": "29362400"}, {"text_input": "What is the hs code for D PANTHENOL (BHN BAKU SUPLEMEN) COA TL01609089", "output": "29362400"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ61202630", "output": "29362200"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (B BAKU MAKANAN) COA UT16090697", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01607067", "output": "32041900"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT16090336", "output": "29362400"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609078,79", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT16100155", "output": "29362100"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ60903296", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ60903296", "output": "29362200"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OPI1608010", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00216051", "output": "29362900"}, {"text_input": "What is the hs code for STAY C (BHN BAKU KOSMETIK) COA UE01610072,74", "output": "29362700"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01609089,90", "output": "29362400"}, {"text_input": "What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91612142", "output": "21069059"}, {"text_input": "What is the hs code for DWI-BI (BHN BAKU MAKANAN) COA XW91612196", "output": "21069059"}, {"text_input": "What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW91612128", "output": "21069059"}, {"text_input": "What is the hs code for PX 103070 C3 (BHN BAKU MAKANAN) COA XW91612129", "output": "21069059"}, {"text_input": "What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91701095,96", "output": "21069059"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (B BAKU SUPLEMEN) COA WB00216021", "output": "29362200"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (B. BAKU SUPLEMEN) COA WB00216051", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT16090116", "output": "29362800"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01606108", "output": "29362900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT16090256,100279", "output": "29362800"}, {"text_input": "What is the hs code for D PANTHENOL (BHN BAKU MAKANAN) COA TL01609089", "output": "29362400"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ60713203", "output": "29362500"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ60610100", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT16080049", "output": "29362900"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL01610550", "output": "29362700"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UE16090080", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN), COA UT16080034", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT16070012,21", "output": "29362600"}, {"text_input": "What is the hs code for KF-96A-6CS (BHN BAKU KOSMETIK) COA 702877", "output": "39139090"}, {"text_input": "What is the hs code for KSG 16 (16KG) BHN BAKU KOSMETIK, COA 612397", "output": "39139090"}, {"text_input": "What is the hs code for VC SODIUM ASCORBATE REGULAR,25KG BAL (B. BAKU SUPLEMEN)COA HPN1702003,2013", "output": "29362700"}, {"text_input": "What is the hs code for VC ASCORBIC ACID REGULAR,25KG BAL (BAHAN BAKU SUPLEMEN) COA HPD1701047,2003", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT16100155", "output": "29362100"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE PURIMOX POWDER (BHN BAKU OBAT) COA M4832 42,43,46,37,41", "output": "29411019"}, {"text_input": "What is the hs code for COATED ASCORBIC ACID TYPE EC (BHN BAKU SUPLEMEN) COA TL01611655", "output": "29362700"}, {"text_input": "What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00116619", "output": "29362800"}, {"text_input": "What is the hs code for GENI VIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010014", "output": "29329990"}, {"text_input": "What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT16110036", "output": "29362500"}, {"text_input": "What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA 20170119", "output": "17023010"}, {"text_input": "What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIVD160903-BGBIO", "output": "39139090"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO161104", "output": "39139090"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170101", "output": "39139090"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170101", "output": "39139090"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO-160802", "output": "39139090"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-170101", "output": "39139090"}, {"text_input": "What is the hs code for ARGAN VIRGIN COLD PRESSED DEODORISED ORGANIC OIL (B BAKU KOSMETIK)COA ARHV170101-SICBIO", "output": "39139090"}, {"text_input": "What is the hs code for INCA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK)COA II170201-AI-D-BIO", "output": "39139090"}, {"text_input": "What is the hs code for KIGELINE (BHN BAKU KOSMETIK) COA KA160904-B", "output": "39139090"}, {"text_input": "What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA VIVD160903-BGBIO", "output": "39139090"}, {"text_input": "What is the hs code for DEXAMETHASONE (BHN BAKU OBAT) COA X5-161217", "output": "29372200"}, {"text_input": "What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN COA 32144/M1", "output": "38249999"}, {"text_input": "What is the hs code for SILYMARIN (BHN BAKU SUPLEMEN) COA 32142/M5", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA/PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 31730/H1", "output": "38249999"}, {"text_input": "What is the hs code for P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 32190/M1", "output": "13021990"}, {"text_input": "What is the hs code for MIRTOGENOL (R) BHN BAKU SUPLEMEN, COA 80320/M", "output": "38249999"}, {"text_input": "What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-161002", "output": "29397900"}, {"text_input": "What is the hs code for BETAMETHASONE VALERATE (BHN BAKU OBAT) COA S-X21-161001", "output": "29372200"}, {"text_input": "What is the hs code for DICLOFENAC POTASSIUM (BHN BAKU OBAT) COA 303160625-5", "output": "29224900"}, {"text_input": "What is the hs code for PIROXICAM (BHN BAKU OBAT) COA PRX2016010M", "output": "29349990"}, {"text_input": "What is the hs code for 850/1000 SUGLETS 850/1000 (18/20 MESH) BHN BAKU OBAT UTK PEWARNA TABLET) COA.ST507527", "output": "32151900"}, {"text_input": "What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK)COA ARP-1052296", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-042696", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT (B.BAKU KOSMETIK) COA HMVBD-061626,011817", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK)COA MCP-N-071116", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK) COA NMSP-D-011516", "output": "39139090"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA EHN", "output": "39139090"}, {"text_input": "What is the hs code for VISTANOL GDHR (BHN BAKU KOSMETIK) COA EJF", "output": "39139090"}, {"text_input": "What is the hs code for PROMOIS SILK 1000 (BHN BAKU KOSMETIK) COA DBD", "output": "39139090"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6333802", "output": "38210010"}, {"text_input": "What is the hs code for CAPSULAC 60 (BHN BAKU OBAT) COA. L100404916A545", "output": "17021100"}, {"text_input": "What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. L101854516A542, L101855016A542", "output": "17021100"}, {"text_input": "What is the hs code for SPHEROLAC 100 (BHN BAKU OBAT) COA L103875016A545", "output": "17021100"}, {"text_input": "What is the hs code for TABLETTOSE 80 (BHN BAKU OBAT) COA L104315216A552", "output": "17021100"}, {"text_input": "What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA L101854516A542", "output": "17021100"}, {"text_input": "What is the hs code for AMPICILLIN TRIHYDRATE PURICILLIN COMPACTED (BHN BAKU OBAT),COA.M842042 S/D 44", "output": "29411020"}, {"text_input": "What is the hs code for AMPICILLIN TRIHYDRATE PURICILLIN COMPACTED (BHN BAKU OBAT) COA M842040,45,46", "output": "29411020"}, {"text_input": "What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334429", "output": "29419000"}, {"text_input": "What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT) COA B334435,36,41,42", "output": "29419000"}, {"text_input": "What is the hs code for EUXYL PE 9010 CN 10KG KA (BHN BAKU KOSMETIK) COA 1320553, 1320841", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 CN 10 KG KA (BHN BAKU KOSMETIK) COA 1321469", "output": "38249999"}, {"text_input": "What is the hs code for SENSIDIN DO CN 10KG CA (BHN BAKU KOSMETIK) COA 1322047", "output": "38249999"}, {"text_input": "What is the hs code for LIFE'S ARA (TM)'12' N-6 ARA POWDER (BHN BAKU MAKANAN) COA WB00117257", "output": "29362500"}, {"text_input": "What is the hs code for TECA M (BHN BAKU KOSMETIK)COA SX001XF", "output": "39139090"}, {"text_input": "What is the hs code for 87-28-5 SALICYLIC ACID ETHYLENE GLYCOL ESTER/GLYCOL SALICYLATE (B.BAKU KOSMETIK)COA.DE170224", "output": "39139090"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT16090080", "output": "29362800"}, {"text_input": "What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW91701272", "output": "21069059"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01610099,100", "output": "29362400"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01610452", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (B. BAKU SUPLEMEN) COA UT16100155", "output": "29362100"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT16090080", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (B. BAKU MAKANAN) COA UT16050032", "output": "29362100"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL01610585,589", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO)(BHN BAKU MAKANAN) COA UT16090697", "output": "29362100"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11608011", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (B BAKU MAKANAN) COA UT16080033", "output": "29362600"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT16080033", "output": "29362100"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01611783", "output": "29362400"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01610589", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT GRANULATION,25KG BAL (B. BAKU SUPLEMEN) COA WB01016959", "output": "29362700"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT16030101", "output": "29362400"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00316016", "output": "29362300"}, {"text_input": "What is the hs code for STAY-C 50 (BHN BAKU KOSMETIK) COA UE01611080", "output": "29362700"}, {"text_input": "What is the hs code for PARSOL HS (BHN BAKU KOSMETIK) COA 0709150075", "output": "29189900"}, {"text_input": "What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P6UI4UA000", "output": "29189900"}, {"text_input": "What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00428949", "output": "29189900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU KOSMETIK) COA UT16090698", "output": "29362100"}, {"text_input": "What is the hs code for NYSTATIN MICRONIZED (BHN BAKU OBAT) COA.C130469", "output": "29419000"}, {"text_input": "What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-0140117", "output": "29334910"}, {"text_input": "What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA.LC 001-7-801", "output": "17021100"}, {"text_input": "What is the hs code for DEANOL BITARTRATE CRYST (BHN BAKU OBAT) COA 16/11180", "output": "29221910"}, {"text_input": "What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ60907011", "output": "29189900"}, {"text_input": "What is the hs code for BELSIL(R) DM 6000 (BAHAN BAKU KOSMETIK) COA OH43774", "output": "39139090"}, {"text_input": "What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA 2614068", "output": "33029000"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG161104", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ61206139, 6014, 6016, 6018", "output": "29362700"}, {"text_input": "What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1702015 S/D 34", "output": "29224900"}, {"text_input": "What is the hs code for NEOMYCIN SULPHATE(B. BAKU OBAT UTK PAKAN TERNAK)COA 201701039", "output": "29419000"}, {"text_input": "What is the hs code for COLISTIN SULFATE (BHN BAKU OBAT UTK PAKAN TERNAK)COA KA-CS-20170102-1", "output": "29419000"}, {"text_input": "What is the hs code for NICLOSAMIDE ETHANOLAMINE SALT (BHN BAKU OBAT UTK PAKAN TERNAK) COA 20161201 S/D 206", "output": "29242990"}, {"text_input": "What is the hs code for LEVOFLOXACIN HEMIHYDRATE (BHN BAKU OBAT) COA C008-1609101", "output": "29419000"}, {"text_input": "What is the hs code for HU CD3 HORIZON V450 UCHT1 120TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)", "output": "38210010"}, {"text_input": "What is the hs code for HU CD45 HORIZON V500 HI30 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)", "output": "38210010"}, {"text_input": "What is the hs code for ANTI MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)", "output": "38210010"}, {"text_input": "What is the hs code for CD79A PE HM47 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)", "output": "38210010"}, {"text_input": "What is the hs code for CD34 PERCP CY5.5 8G12 50 TESTS... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)", "output": "38210010"}, {"text_input": "What is the hs code for CD19 PE-CY7 SJ25C1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 5357809", "output": "38210010"}, {"text_input": "What is the hs code for CD7 APC (M-T701) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)", "output": "38210010"}, {"text_input": "What is the hs code for CD3 APC H7 SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)", "output": "38210010"}, {"text_input": "What is the hs code for CS AND T RUO BEADS 50 TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)", "output": "38210010"}, {"text_input": "What is the hs code for BD ACCURI C6 PLUS SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)", "output": "38210010"}, {"text_input": "What is the hs code for DELL OPTIPLEX WORKSTATION BUNDLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)", "output": "38210010"}, {"text_input": "What is the hs code for KIT C6 FLOW CYTOMETRY FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)", "output": "38210010"}, {"text_input": "What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP778251", "output": "39059990"}, {"text_input": "What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP777104", "output": "39059990"}, {"text_input": "What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP777112", "output": "39059990"}, {"text_input": "What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1701083 S/D 90, 2010 S/D 14", "output": "29224900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180G7P023", "output": "39123900"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702160382", "output": "29372900"}, {"text_input": "What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND170201", "output": "29372200"}, {"text_input": "What is the hs code for PREDNISOLONE BP93/USP39 (BHN BAKU OBAT) COA.NPL170206", "output": "29372100"}, {"text_input": "What is the hs code for CYANOCOBALAMINE VITAMIN B12 CRYSTALLINE (B.BAKU OBAT) COA.1604544296", "output": "29362600"}, {"text_input": "What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.17100131", "output": "29391900"}, {"text_input": "What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA 17100131", "output": "29391900"}, {"text_input": "What is the hs code for INSTANT BLACK TEA POWDER (BHN BAKU MAKANAN) COA 2017020501", "output": "39139090"}, {"text_input": "What is the hs code for OMEPRAZOLE PELLETS 8,5 PCT (BHN BAKU OBAT) COA OP0217C016 S/D 19", "output": "30034100"}, {"text_input": "What is the hs code for VC ASCORBIC ACID REGULAR,25KG BAL (BAHAN BAKU SUPLEMEN) COA HPD1702003,4,17", "output": "29362700"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP05117", "output": "28363000"}, {"text_input": "What is the hs code for VC ASCORBIC ACID REGULAR,25KG BAL (BAHAN BAKU SUPLEMEN) COA HPB1702066", "output": "29362700"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592765", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592780", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592779", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592778", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592769", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592760", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592781", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592770", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592768", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592771", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592802", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592773", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592762", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592763", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592772", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592761", "output": "38249999"}, {"text_input": "What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 1702EF5711", "output": "29224900"}, {"text_input": "What is the hs code for LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUMPLEMEN) COA 16229", "output": "38249999"}, {"text_input": "What is the hs code for LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 16229", "output": "38249999"}, {"text_input": "What is the hs code for PIX'L CANNULAS (BHN BAKU OBAT) COA 016.633", "output": "90189090"}, {"text_input": "What is the hs code for PIX'L CANNULAS (BHN BAKU OBAT) COA 016.649", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE SKINBOOSTERS VITAL LIDOCAINE (BHN BAKU OBAT) COA 14838-2", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE SKINBOOSTERS VITAL LIGHT LIDOCAINE (BHN BAKU OBAT) COA 14765-1", "output": "90189090"}, {"text_input": "What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK), COA.162935", "output": "38249999"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 162525", "output": "13021990"}, {"text_input": "What is the hs code for K2 GLYCYRRHIZINATE ( BHN BAKU KOSMETIK), COA 161287", "output": "29329990"}, {"text_input": "What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 161943", "output": "13021990"}, {"text_input": "What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 160173", "output": "13021990"}, {"text_input": "What is the hs code for CLAIR JU (BHN BAKU KOSMETIK) COA 162591", "output": "13021990"}, {"text_input": "What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 162797", "output": "13021990"}, {"text_input": "What is the hs code for NEBIVOLOL HYDROCHLORIDE (BHN BAKU OBAT) COA NH0040217", "output": "29329990"}, {"text_input": "What is the hs code for GENAGEN KB (BHN BAKU KOSMETIK) COA INB3212065", "output": "34021990"}, {"text_input": "What is the hs code for LECITHIN (BHN BAKU OBAT) COA G0215702, G0215703", "output": "29232010"}, {"text_input": "What is the hs code for CILOSTAZOL USP (BHN BAKU OBAT) COA 6004CB2ARI", "output": "29337900"}, {"text_input": "What is the hs code for VC ASCORBIC ACID REGULAR,25KG BAL (BAHAN BAKU SUPLEMEN) COA HPB1702126,2143,2027", "output": "29362700"}, {"text_input": "What is the hs code for TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA620157", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY FX YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA819882", "output": "38249999"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 INF OIL, 4,5KG PJUG (BHN BAKU MAKANAN) COA.TS00007062", "output": "29362500"}, {"text_input": "What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT17020011", "output": "29362500"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00616160", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB01116170", "output": "29362100"}, {"text_input": "What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT17020011", "output": "29362500"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00616159", "output": "29362800"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM DAB /EP 7.0 (BHN BAKU OBAT) COA 1701130,1701155, 1702303,2304", "output": "29331100"}, {"text_input": "What is the hs code for VITASMOOTH (R) 041 ( BHN BAKU OBAT) COA 121607123, 121607271", "output": "28365010"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 121607216", "output": "28363000"}, {"text_input": "What is the hs code for HYDROCORTISONE ACETATE USP (BHN BAKU OBAT) COA 16004", "output": "29372100"}, {"text_input": "What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91701290,91", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN PREMIX 103093-A (BHN BAKU MAKANAN) COA XW91701199", "output": "21069059"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70102008,9", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70102009", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70102009", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70102009", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70102009", "output": "29362200"}, {"text_input": "What is the hs code for SPI PX 507 (BHN BAKU MAKANAN) COA XW91701271", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91702010", "output": "21069059"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL01611784", "output": "29362400"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ60903303", "output": "29362200"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01611784", "output": "29362400"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ60903303", "output": "29362200"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00316016", "output": "29362300"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01610458", "output": "29362700"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ60813243", "output": "29362500"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20161227", "output": "17029019"}, {"text_input": "What is the hs code for MELOXICAM BP/EP (BHN BAKU OBAT) COA HMXCPK009", "output": "29341000"}, {"text_input": "What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 17021706", "output": "39139090"}, {"text_input": "What is the hs code for GELLUCIRE 44/14 (BHN BAKU KOSMETIK) COA 162020", "output": "28399000"}, {"text_input": "What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK)COA NMP-L-1550506, 040827", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-010736", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-091417", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK)COA MUP-031296", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE POWDER(B. BAKU KOSMETIK) COA CHP1170209", "output": "39139090"}, {"text_input": "What is the hs code for OPADRY WHITE (BAHAN BAKU UNTUK PEWARNA TABLET) COA.SH592724", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE II WHITE (BAHAN BAKU PEWARNA TABLET) COA.SH593050", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY PURPLE (BAHAN BAKU PEWARNA TABLET) COA.SH593051", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL -EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592978", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592966", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592975", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592985", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592988", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592979", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592980", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592987", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE(BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592609", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592965", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592976", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592977", "output": "38249999"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517020018,19", "output": "29189900"}, {"text_input": "What is the hs code for SELVOL 540 PVOH 25 KG BAG (BHN BAKU KOSMETIK) COA PO41683061", "output": "39139090"}, {"text_input": "What is the hs code for HYDROXOCOBALAMINE CHLORIDE HP (BHN BAKU OBAT) COA IR00002", "output": "29362600"}, {"text_input": "What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA 20170222", "output": "11081200"}, {"text_input": "What is the hs code for MARCOL 52 (BHN BAKU OBAT UTK PAKAN TERNAK) COA 7104HH8502", "output": "27101989"}, {"text_input": "What is the hs code for TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA 16552", "output": "29225090"}, {"text_input": "What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00116619", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB0011161709", "output": "29362100"}, {"text_input": "What is the hs code for GENI VIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010014", "output": "29329990"}, {"text_input": "What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT17020011", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT17010031", "output": "29362100"}, {"text_input": "What is the hs code for NONIVAMIDE (BHN BAKU KOSMETIK) COA.20170215", "output": "29242990"}, {"text_input": "What is the hs code for SILDENAFIL CITRATE USP (BHN BAKU OBAT) COA SLC 429 03 17", "output": "29335990"}, {"text_input": "What is the hs code for GLICLAZIDE (BHN BAKU OBAT) COA 160440", "output": "29351000"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU MAKANAN) COA.TS00007208", "output": "29362500"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT16060053", "output": "32041900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT16100279", "output": "29362800"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11611005", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT15060006", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT16090051", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI16070004", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01510014", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT16060009", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT16070020", "output": "29362600"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01609081", "output": "32041900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01606108", "output": "29362900"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01611114", "output": "29362400"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT16100279", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT16090051", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT16090037", "output": "29362900"}, {"text_input": "What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE01605028", "output": "29362100"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT16090331", "output": "29362400"}, {"text_input": "What is the hs code for PX TRS1 WITHOUT K1 (BHN BAKU MAKANAN) COA XW91702240", "output": "21069059"}, {"text_input": "What is the hs code for PX TRS2 WITHOUT K1 (BHN BAKU MAKANAN) COA XW91702241", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT16100703,707", "output": "29362100"}, {"text_input": "What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW91702304", "output": "21069059"}, {"text_input": "What is the hs code for PX 103070 - C3 (BHN BAKU MAKANAN) COA XW91702250", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT16070020", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI16070004", "output": "29362900"}, {"text_input": "What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91702099", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91702242", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU SUPLEMEN) COA UT16090698,699", "output": "29362100"}, {"text_input": "What is the hs code for ASCORBIC ACID FINE POWDER (BHN BAKU SUPLEMEN) COA TL01606527", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI16070004", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA WB09140224", "output": "29362500"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609081", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU KOSMETIK,COA UT16100155", "output": "29362100"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OPI1611006, 007", "output": "29362900"}, {"text_input": "What is the hs code for BOTTLE RICE EXTRACT AGAR 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7032710", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6336799", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6293897", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6313683", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6250573,6271554", "output": "38210010"}, {"text_input": "What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6277974,...", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6130548", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA.6278558", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6207871,6295747", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TC LACTALBUMIN HYDROLYSATE 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 6026771", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6300873", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6298992", "output": "38210010"}, {"text_input": "What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8LE116", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6298992", "output": "38210010"}, {"text_input": "What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8LE116", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POLYSORBATE 80 100G 1 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6363753", "output": "38210010"}, {"text_input": "What is the hs code for TUBE CRYSTAL E/ ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6182893,6354747", "output": "38210010"}, {"text_input": "What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH H5JA15", "output": "38210010"}, {"text_input": "What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6286718", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6130534", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6146706", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6040519", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6147880", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009581", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7005840", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6295747", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CASAMINO ACIDS 500G. (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6266538", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PROTEOSE PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6256734", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6258957", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BORDET GENGOU AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6250597", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6125618", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CZAPEK DOX BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6271600", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D-MANNOSE 25G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6314651", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6292604", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6315878", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEMOGLOBIN FREEZE DRIED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6315896", "output": "38210010"}, {"text_input": "What is the hs code for PAIL LAURYL TRYPTOSE BROTH 2KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6221523", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE L-ARABINOSE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 5348621", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE L-ARABINOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 5348620", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6315865", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6229558", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MARINE BROTH 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7005834", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MR-VP MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6153766", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE NITRATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6067735", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PURPLE BROTH BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6074970", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH.6229545", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTONE GLUCOSE EXT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6221521", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE PHOSPHATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 6334525", "output": "38210010"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 6305521", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6298992", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6257879", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6336799", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6278835", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6188647", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6132974", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6132955", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6194922", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6293927", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6201909,6291752", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6250612", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6291710", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6117955", "output": "38210010"}, {"text_input": "What is the hs code for BOTLE POTATO DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6271571", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE R2 AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6054655,6257924", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 6313683", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6271554", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6215665", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6300873", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009829", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7041754", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6354800", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6307974", "output": "38210010"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6258712", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6320529,6328593", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6336600", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6306727,6354664", "output": "38210010"}, {"text_input": "What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7030892", "output": "38210010"}, {"text_input": "What is the hs code for CD34 APC BG12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA.7018612", "output": "38210010"}, {"text_input": "What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6350718", "output": "38210010"}, {"text_input": "What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 6215857", "output": "38210010"}, {"text_input": "What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6326648", "output": "38210010"}, {"text_input": "What is the hs code for CD10 FITC H110A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6354550", "output": "38210010"}, {"text_input": "What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6183716,..", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6328593", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG L P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6354664", "output": "38210010"}, {"text_input": "What is the hs code for VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6333739", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6138627", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009833", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009704", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE FOLIC ACID ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6090962", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7025950", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6278712", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6271585", "output": "38210010"}, {"text_input": "What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6333738", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6239957", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL O ANTISERUM GRP A LYOPHILLIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6246962", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL O ANTISERUM GRP C1 FTR ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6204871", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL VI ANTISERUM LYOPHILLIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6092802", "output": "38210010"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 5049770", "output": "38210010"}, {"text_input": "What is the hs code for ANTI-HLA DR FITC L243... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7005516", "output": "38210010"}, {"text_input": "What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6354550", "output": "38210010"}, {"text_input": "What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6350718", "output": "38210010"}, {"text_input": "What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7030892", "output": "38210010"}, {"text_input": "What is the hs code for CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6306886", "output": "38210010"}, {"text_input": "What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7018612", "output": "38210010"}, {"text_input": "What is the hs code for CD45 PER CP-CY5.5 201 50 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7025817", "output": "38210010"}, {"text_input": "What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6215837", "output": "38210010"}, {"text_input": "What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6326648", "output": "38210010"}, {"text_input": "What is the hs code for MS LG KPA COMP BEAD SE 6ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6158689", "output": "38210010"}, {"text_input": "What is the hs code for VIAL COAG PLASMA EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6258712", "output": "38210010"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6258712", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6363745", "output": "38210010"}, {"text_input": "What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7005527", "output": "38210010"}, {"text_input": "What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6228624", "output": "38210010"}, {"text_input": "What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7053972", "output": "38210010"}, {"text_input": "What is the hs code for IFN GAMMA APC RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7058535", "output": "38210010"}, {"text_input": "What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6243861", "output": "38210010"}, {"text_input": "What is the hs code for CYTOFIX/CYTOPERM W/GOLGIPLUG... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7012738", "output": "38210010"}, {"text_input": "What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 6243861", "output": "38210010"}, {"text_input": "What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7005527", "output": "38210010"}, {"text_input": "What is the hs code for CD20 APC L27 100 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6228624", "output": "38210010"}, {"text_input": "What is the hs code for HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6259506", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6211814", "output": "38210010"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG170126", "output": "29362700"}, {"text_input": "What is the hs code for GOTALENE 120 GREEN 23 (BHN BAKU KOSMETIK) COA 3081327", "output": "39139090"}, {"text_input": "What is the hs code for DROPPER DMACA INDOLA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6307800", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6294631", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6246831", "output": "38210010"}, {"text_input": "What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7032755", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER VOGES-PROSKAUER A (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6320902", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER VOGES-PROSKAUER B (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6341681", "output": "38210010"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20170227", "output": "17029019"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM TYPE T 25KG (BHN BAKU OBAT) COA N143", "output": "29331100"}, {"text_input": "What is the hs code for DOBUTAMINE HCL (BHN BAKU OBAT) COA.16100696", "output": "29222900"}, {"text_input": "What is the hs code for ACYCLOVIR MICRONIZED (BHN BAKU OBAT) COA 17100164", "output": "29335990"}, {"text_input": "What is the hs code for ACYCLOVIR MICRONIZED (BHN BAKU OBAT) COA 17100164", "output": "29335990"}, {"text_input": "What is the hs code for OPALUX MAROON (BAHAN BAKU PEWARNA TABLET)COA DT659352", "output": "32151900"}, {"text_input": "What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT659381", "output": "32151900"}, {"text_input": "What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT657666", "output": "32151900"}, {"text_input": "What is the hs code for TABLETTOSE 80 (BHN BAKU OBAT) COA L104310117A552", "output": "17021100"}, {"text_input": "What is the hs code for LABRAFIL M 1944 CS (BHN BAKU OBAT) COA.162433", "output": "28399000"}, {"text_input": "What is the hs code for TEFOSE 63 (BHN BAKU OBAT) COA.163016", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE AM PELLETS (BAHAN BAKU OBAT) COA.16E5008", "output": "28399000"}, {"text_input": "What is the hs code for CAMELLIA OIL (BHN BAKU KOSMETIK), COA M290146", "output": "39139090"}, {"text_input": "What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91702176", "output": "29189900"}, {"text_input": "What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01607811,TL01610815", "output": "29362400"}, {"text_input": "What is the hs code for NIACINAMIDE PC 20KG BAL (BHN BAKU KOSMETIK) COA OP81609008", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708160089,90,91", "output": "29189900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT16110338", "output": "29362800"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01611113,4", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001432940", "output": "29189900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OPI1611006", "output": "29362900"}, {"text_input": "What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0014953", "output": "29362500"}, {"text_input": "What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01610074, UE01612089", "output": "29362700"}, {"text_input": "What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P6V15UA000", "output": "29189900"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA MCS1602067", "output": "29189900"}, {"text_input": "What is the hs code for PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517020019", "output": "29189900"}, {"text_input": "What is the hs code for PARSOL EHS ,25KG PC (BHN BAKU KOSMETIK) COA MCS1607004", "output": "29189900"}, {"text_input": "What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES1605045", "output": "29189900"}, {"text_input": "What is the hs code for NIACINAMIDE PC ,20KG BAL (BHN BAKU KOSMETIK) COA OP81609008", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001432940", "output": "29189900"}, {"text_input": "What is the hs code for LINEN OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA LIU170201-H", "output": "39139090"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170101", "output": "39139090"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO-160802", "output": "39139090"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK)COA EG543-170101", "output": "39139090"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-170101", "output": "39139090"}, {"text_input": "What is the hs code for LANOLINE ANHYDROUS (BHN BAKU KOSMETIK) COA 4135", "output": "39139090"}, {"text_input": "What is the hs code for CORTISONE ACETATE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1600926226", "output": "29372900"}, {"text_input": "What is the hs code for LIPOID S 67 F (BHN BAKU OBAT) COA.572000-2160029/007-012", "output": "29232010"}, {"text_input": "What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA 2614068", "output": "33029000"}, {"text_input": "What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA 2614068", "output": "33029000"}, {"text_input": "What is the hs code for CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 20170302", "output": "38249999"}, {"text_input": "What is the hs code for REFINED TRACED SHEA OLEIN (BHN BAKU KOSMETIK) COA 0000015611", "output": "39139090"}, {"text_input": "What is the hs code for LUZENAC PHARMA M (BHN BAKU KOSMETIK) COA S401/16", "output": "25262010"}, {"text_input": "What is the hs code for ASTABIO ARV-S (BHN BAKU OBAT) COA.1703151K", "output": "32030010"}, {"text_input": "What is the hs code for DL. PANTHENOL 50L (BHN BAKU KOSMETIK) COA.TL01611650", "output": "29362400"}, {"text_input": "What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA.TL01610813", "output": "29362400"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01611929,01701331...", "output": "29362700"}, {"text_input": "What is the hs code for THIOGLYCOLIC ACID 99PCT COSMETIC GRADE (BHN BAKU KOSMETIK) COA.0000057944", "output": "29309090"}, {"text_input": "What is the hs code for AMMONIUM THIOGLYCOLATE 71PCT(60PCT TGA) BHN BAKU KOSMETIK, COA.0000057951", "output": "29309090"}, {"text_input": "What is the hs code for THIOGLYCOLIC ACID 80PCT COSMETIC GRADE, BHN BAKU KOSMETIK, COA 0000057954", "output": "29309090"}, {"text_input": "What is the hs code for MONOETHANOLAMINE THIOGLYCOLATE 83PCT (50PCT TGA) BHN BAKU KOSMETIK, COA 0000057943", "output": "29221100"}, {"text_input": "What is the hs code for DPG FG (BHN BAKU KOSMETIK) COA A02311D", "output": "29094900"}, {"text_input": "What is the hs code for PG USP (BHN BAKU KOSMETIK) COA A02311U", "output": "29053200"}, {"text_input": "What is the hs code for HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA MIE160401", "output": "39139090"}, {"text_input": "What is the hs code for POMEGRANATE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA PUG161106-BGBIO", "output": "39139090"}, {"text_input": "What is the hs code for PEPPERMINT ORGANIC DISTILLATE 1:5 SB (BHN BAKU KOSMETIK)COA MEPD160803-BIO", "output": "39139090"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593394", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593386", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593387", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE YELLOWE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593385", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593442", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593503", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593390", "output": "38249999"}, {"text_input": "What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593384", "output": "32151900"}, {"text_input": "What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593384", "output": "32151900"}, {"text_input": "What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593384", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593391", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593413", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593392", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593417", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593383", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593412", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593393", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593416", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593395", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593538", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593425", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593536", "output": "38249999"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517020019,31", "output": "29189900"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT16110011", "output": "32041900"}, {"text_input": "What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT17020013", "output": "29362500"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20170101", "output": "29362800"}, {"text_input": "What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK) COA.16L034SV01", "output": "39139090"}, {"text_input": "What is the hs code for KAOLIN SUPREME LOREAL DECONTAM PD S25 1000 4WHTP (BHN BAKU KOSMETIK) COA. 050217", "output": "25070000"}, {"text_input": "What is the hs code for GOTALENE 120 BLUE 23 (BHN BAKU KOSMETIK) COA 3289011", "output": "39139090"}, {"text_input": "What is the hs code for PROMOIS S-CAQ (BHN BAKU KOSMETIK) COA DBM", "output": "39139090"}, {"text_input": "What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA EJA", "output": "39139090"}, {"text_input": "What is the hs code for VISTANOL GDHR (BHN BAKU KOSMETIK) COA EJF", "output": "39139090"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA DCG", "output": "39139090"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA DCA", "output": "39139090"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20170309", "output": "17029019"}, {"text_input": "What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1611105 ,1612023, 1703032 S/D 41", "output": "29224900"}, {"text_input": "What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-0380217", "output": "29334910"}, {"text_input": "What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 17022101", "output": "29309090"}, {"text_input": "What is the hs code for GLUCOSAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA WA201612004", "output": "29329990"}, {"text_input": "What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND170302", "output": "29372200"}, {"text_input": "What is the hs code for PREDNISONE BP93/USP39 (BHN BAKU OBAT) COA.NPD 170310", "output": "29372100"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE EP5/USP38 (BHN BAKU OBAT) COA.ND170103", "output": "29372900"}, {"text_input": "What is the hs code for OPADRY II RED (BAHAN BAKU OBAT UTK PEWARNA TABLET) COA.SH593390", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BAHAN BAKU OBAT UTK PEWARNA TABLET) COA.SH593583", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BAHAN BAKU OBAT UTK PEWARNA TABLET) COA.SH593582", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593575", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593606", "output": "38249999"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1602146243", "output": "29372900"}, {"text_input": "What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 1603847188", "output": "29372200"}, {"text_input": "What is the hs code for AMPICILLIN TRIHYDRATE PURICILLIN COMPACTED (BHN BAKU OBAT),COA.M842056 S/D 60", "output": "29411020"}, {"text_input": "What is the hs code for LUZENAC PHARMA M (BHN BAKU KOSMETIK) COA S820/16", "output": "25262010"}, {"text_input": "What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 70307", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK)COA SFP-N-011427", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-031296", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK) COA CPG-302327", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK)COA", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-152766", "output": "39139090"}, {"text_input": "What is the hs code for SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 2016I1001,2016G1532", "output": "39139090"}, {"text_input": "What is the hs code for ASFERM PLUS (BHN BAKU KOSMETIK) COA POTN-022037", "output": "39139090"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT16060053", "output": "32041900"}, {"text_input": "What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ60709021", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01605103", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT16090039", "output": "29362900"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01611114", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT16120061", "output": "29362100"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01611705", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT GRANULATION 25KG BAL (BHN BAKU SUPLEMEN) COA WB01016960", "output": "29362700"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1611007", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ60710127", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT16100155", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609082", "output": "32041900"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT16060053", "output": "32041900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1611007", "output": "29362900"}, {"text_input": "What is the hs code for PX 204005 (BHN BAKU MAKANAN) COA XW91702343", "output": "21069059"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT16080034,43", "output": "29362100"}, {"text_input": "What is the hs code for CANTHAXANTHIN 10PCT CWS/S (BHN BAKU MAKANAN) COA UT16120003", "output": "32041900"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANANN) COA UQ60710127", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (B. BAKU MAKANAN) COA UT16110707,08", "output": "29362100"}, {"text_input": "What is the hs code for SPI PX 507 (BHN BAKU MAKANAN) COA XW91703080", "output": "21069059"}, {"text_input": "What is the hs code for D-A TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20160302", "output": "29362800"}, {"text_input": "What is the hs code for D-A TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20160302", "output": "29362800"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609081,82", "output": "32041900"}, {"text_input": "What is the hs code for EPA DHA 44 37 (BHN BAKU OBAT) COA EE4437-170323", "output": "29061300"}, {"text_input": "What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA.70216", "output": "39139090"}, {"text_input": "What is the hs code for TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA.61101", "output": "39139090"}, {"text_input": "What is the hs code for CLOZAPINE (BHN BAKU OBAT) COA 721112", "output": "29335990"}, {"text_input": "What is the hs code for CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA.1GC01CLB ZP48D 25MT", "output": "39139090"}, {"text_input": "What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA MCS1604004", "output": "29189900"}, {"text_input": "What is the hs code for DISPENSED ISDN NACL 10/90 (BHN BAKU KOSMETIK) COA.193876", "output": "29061300"}, {"text_input": "What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA.LC 003-7-801", "output": "17021100"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M595227,228", "output": "29411019"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT )COA.ASG/03/030317, ASG/03/040317...", "output": "29420000"}, {"text_input": "What is the hs code for KF-96A-6CS (BHN BAKU KOSMETIK) COA 703882", "output": "39139090"}, {"text_input": "What is the hs code for KSP 100 (10KG) BHN BAKU KOSMETIK, COA 703494", "output": "39139090"}, {"text_input": "What is the hs code for NIACINAMIDE POWDER (BHN BAKU MAKANAN) COA 0000157322", "output": "29362900"}, {"text_input": "What is the hs code for KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0331216", "output": "29339990"}, {"text_input": "What is the hs code for AMBROXOL HYDROCHLORIDE POWDER (BHN BAKU OBAT) COA AHM/17025", "output": "29221990"}, {"text_input": "What is the hs code for AMBROXOL HYDROCHLORIDE POWDER (BHN BAKU OBAT) COA AHM/17026,SAMPLE FREE OF CHARGE", "output": "29221990"}, {"text_input": "What is the hs code for BROMHEXINE EP/BP (BHN BAKU OBAT) COA BHH/17001", "output": "29221990"}, {"text_input": "What is the hs code for GUAIFENESIN USP (BHN BAKU OBAT) COA GGE-1702043 S/D 60", "output": "29091900"}, {"text_input": "What is the hs code for FIBRE DRUM (DRUM KOSONG) INVOICE NO COMMERCIAL VALUE", "output": "48192000"}, {"text_input": "What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1703047,49 S/D 57, 59", "output": "29224900"}, {"text_input": "What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BH01806", "output": "29349990"}, {"text_input": "What is the hs code for ROVIMIX D3-500 (BHN BAKU OBAT UTK PAKAN TERNAK) COA UE01608045", "output": "29362900"}, {"text_input": "What is the hs code for ROVIMIX E 50 SD (BHN BAKU OBAT UTK PAKAN TERNAK) COA UE01603002,3005", "output": "29362800"}, {"text_input": "What is the hs code for ROVIMIX AD3 1000/200,20KG BAL (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT16111404 S/D 406", "output": "29362100"}, {"text_input": "What is the hs code for ROVIMIX C-EC (BHN BAKU OBAT UTK PAKAN TERNAK) COA TL01611695", "output": "29362700"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT16100099", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT16090038", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01606108", "output": "29362900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA 16100279,UT16110312", "output": "29362800"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL01611114", "output": "29362400"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11611007,OP11611016", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT16120157", "output": "29362100"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT16100099", "output": "29362100"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL01611711,TL01611714", "output": "29362700"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT16120050", "output": "29362100"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT16090336", "output": "29362400"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ61206144", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ61206142, 44", "output": "29362700"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70102037", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70203053", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70102039,83", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70203053", "output": "29362200"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609082", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN PREMIX TYPE MM81 (105PCT) BHN BAKU MAKANAN, COA XW91703211", "output": "21069059"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT16060053,54", "output": "32041900"}, {"text_input": "What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ60809026", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI16070010", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01605103", "output": "29362900"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT,GRANULATION 25KG BAL (BHN BAKU SUPLEMEN) COA WB01016965,66", "output": "29362700"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT16100279", "output": "29362800"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01611114", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT16120007", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT16090331", "output": "29362400"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11611007", "output": "29362900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ60813251", "output": "29362500"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ60610107", "output": "29362300"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01612970", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)BHN BAKU SUPLEMEN, COA UT16100156", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT16120052", "output": "29362900"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK,COA 02/16-GL4", "output": "28399000"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK,COA 02/16-GL4 ,SAMPLE NO COMMERCIAL VALUE", "output": "28399000"}, {"text_input": "What is the hs code for CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 016.633", "output": "90189090"}, {"text_input": "What is the hs code for CANNULA 25G PIX'L 0,5X40 (BHN BAKU OBAT) COA 016.649", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE SB VITAL LIDO 1 ML (BHN BAKU OBAT) COA 14838-2", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE SB VITAL LIGHT LIDO 1ML (BHN BAKU OBAT) COA 14765-1", "output": "90189090"}, {"text_input": "What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT17010079,80", "output": "29362100"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20170101", "output": "29362800"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01701354,2757", "output": "29362700"}, {"text_input": "What is the hs code for DL-PANTHENOL 50L (BHN BAKU KOSMETIK) COA TL01703614", "output": "29362400"}, {"text_input": "What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01701802", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT SD, 15KG BOXALU (BHN BAKU SUPLEMEN) COA WB02170044", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT17010080", "output": "29362100"}, {"text_input": "What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ61007012", "output": "29189900"}, {"text_input": "What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 162797", "output": "13021990"}, {"text_input": "What is the hs code for CLAIR JU (BHN BAKU KOSMETIK) COA 163044", "output": "13021990"}, {"text_input": "What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 163261", "output": "38249999"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 163170", "output": "13021990"}, {"text_input": "What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 170083", "output": "29329990"}, {"text_input": "What is the hs code for L-GLUTAMIC ACID ( BHN BAKU OBAT), COA 1000031052/170310", "output": "29224290"}, {"text_input": "What is the hs code for SODIUM ACORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01611929", "output": "29362700"}, {"text_input": "What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT17020002", "output": "29362100"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20170321", "output": "17029019"}, {"text_input": "What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA. DOC0721721", "output": "28363000"}, {"text_input": "What is the hs code for ALDAVINE 5X (BHN BAKU KOSMETIK) COA 5450616", "output": "39139090"}, {"text_input": "What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829015062H", "output": "39139090"}, {"text_input": "What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830015092H", "output": "39139090"}, {"text_input": "What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769014752G", "output": "39139090"}, {"text_input": "What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769014829G", "output": "39139090"}, {"text_input": "What is the hs code for EXO-H (BHN BAKU KOSMETIK), COA 715024757G", "output": "39139090"}, {"text_input": "What is the hs code for LANABLUE (BHN BAKU KOSMETIK), COA 5470017", "output": "39139090"}, {"text_input": "What is the hs code for LECIGEL (BHN BAKU KOSMETIK) COA 1631305", "output": "39139090"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5451416", "output": "39139090"}, {"text_input": "What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828014899G", "output": "39139090"}, {"text_input": "What is the hs code for PRO-LIPO NEO (BHN BAKU KOSMETIK), COA 1625002", "output": "39139090"}, {"text_input": "What is the hs code for RIBOXYL (BHN BAKU KOSMETIK) COA P186501", "output": "39139090"}, {"text_input": "What is the hs code for SWT-7 L (BHN BAKU KOSMETIK) COA 1628401", "output": "39139090"}, {"text_input": "What is the hs code for TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784024937G", "output": "39139090"}, {"text_input": "What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0014849", "output": "39139090"}, {"text_input": "What is the hs code for AC091KF FUCOGEL 1.5P 25 KG (BHN BAKU KOSMETIK) COA 0014687", "output": "39139090"}, {"text_input": "What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA 20170302", "output": "17023010"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM ..(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180GAP003", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180GAU003", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E15 PREMIUM LV (BHN BAKU OBAT UTK PEWARNA TABLET)COA D011GA9L01", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E15 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011GA9L01", "output": "39123900"}, {"text_input": "What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NX0560M", "output": "29372200"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17020051", "output": "29362100"}, {"text_input": "What is the hs code for CEFOTAXIME SODIUM STERILE (BHN BAKU OBAT) COA 101161130", "output": "29419000"}, {"text_input": "What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA 102160902", "output": "29419000"}, {"text_input": "What is the hs code for CEFTRIAXONE HYDROCHLORIDE (BHN BAKU OBAT) COA 102170332", "output": "29419000"}, {"text_input": "What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-161001", "output": "29397900"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP07217", "output": "28363000"}, {"text_input": "What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 1703EF6413", "output": "29224900"}, {"text_input": "What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-020186", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND CUCUMBER EXTRACT (BHN BAKU KOSMETIK) COA CUPD-010937", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-042696", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK)COA MUB-021186", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-061626", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-040316", "output": "39139090"}, {"text_input": "What is the hs code for ESOMEPRAZOLE SODIUM STERILE (34PERCENT TO 38PERCENT W/W)COA AESS16003", "output": "29333990"}, {"text_input": "What is the hs code for CLEANBIO CG (BHN BAKU KOSMETIK) COA.1117-86-8", "output": "39139090"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA JP511301", "output": "38249999"}, {"text_input": "What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU OBAT) COA 162392", "output": "28399000"}, {"text_input": "What is the hs code for TEFOSE 63 (BHN BAKU OBAT) COA.163386", "output": "28399000"}, {"text_input": "What is the hs code for TRANSCUTOL P (BAHAN BAKU OBAT) COA.162895", "output": "28399000"}, {"text_input": "What is the hs code for DEXAMETHASONE (BHN BAKU OBAT) COA X5-170204", "output": "29372200"}, {"text_input": "What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 184565", "output": "29332900"}, {"text_input": "What is the hs code for VITAMIN B12 1PCT SD (BHN BAKU SUPLEMEN) COA UT17010004", "output": "29362600"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT17010010", "output": "32041900"}, {"text_input": "What is the hs code for GENI VIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010014", "output": "29329990"}, {"text_input": "What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED(BHN BAKU OBAT UTK PAKAN TERNAK) COA MTP01317", "output": "28363000"}, {"text_input": "What is the hs code for OPADRY II PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593665", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593703", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH592955", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593676", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593675", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593666", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593691", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593674", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593704", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593705", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593706", "output": "38249999"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17010017", "output": "29362100"}, {"text_input": "What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT17020014", "output": "29362500"}, {"text_input": "What is the hs code for MEG-3 (TM) '10'N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT17020014", "output": "29362500"}, {"text_input": "What is the hs code for LUZENAC PHARMA M (BHN BAKU KOSMETIK) COA S820/16", "output": "25262010"}, {"text_input": "What is the hs code for PHYTELENE COMPLEX EGX 773 BHN BAKU KOSMETIK)COA PX773-170301-GS", "output": "39139090"}, {"text_input": "What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-170301-GS", "output": "39139090"}, {"text_input": "What is the hs code for LOTUS OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA NEN170202", "output": "39139090"}, {"text_input": "What is the hs code for ROSE OILY EXTRACT (BHN BAKU KOSMETIK)COA ROS170201-H", "output": "39139090"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO161104", "output": "39139090"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO170301", "output": "39139090"}, {"text_input": "What is the hs code for VITAMIN A PALM 1.0 M + VIT.D3 100.000 (BHN BAKU MAKANAN) COA UT17010038", "output": "29362100"}, {"text_input": "What is the hs code for MEG-3(TM) '10' N-3 FOOD POWDER S/SD (BHN BAKU MAKANAN) COA UT16070007", "output": "29362500"}, {"text_input": "What is the hs code for BICAR PHAMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA.RBA0661700", "output": "28363000"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0517030045,46", "output": "29189900"}, {"text_input": "What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P6X08UA00", "output": "29189900"}, {"text_input": "What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01612089", "output": "29362700"}, {"text_input": "What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01612089", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT16110708", "output": "29362100"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0517030045", "output": "29189900"}, {"text_input": "What is the hs code for DL A TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT16110338", "output": "29362800"}, {"text_input": "What is the hs code for D PANTHENOL (BHN BAKU KOSMETIK) COA TL01611121, 25,28", "output": "29362400"}, {"text_input": "What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01610815", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL 5000 ( BHN BAKU KOSMETIK), COA 0708160091,93", "output": "29189900"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA.ROA074174", "output": "28363000"}, {"text_input": "What is the hs code for CLONIDINE HCL (BHN BAKU OBAT) COA 180839", "output": "29332900"}, {"text_input": "What is the hs code for KETOPROFEN (BHN BAKU OBAT) COA 184386", "output": "29183000"}, {"text_input": "What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334449 S/D 51", "output": "29419000"}, {"text_input": "What is the hs code for TRISODIUM CITRATE DIHYDRATE FINE GRANULAR (B. BAKU MAKANAN, COA UJ703, UJ711", "output": "29181400"}, {"text_input": "What is the hs code for DOBUTAMINE HCL (BHN BAKU OBAT) COA.17100196", "output": "29222900"}, {"text_input": "What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK)COA SFP-N-022037", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-160127", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-031296", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK)COA OSLP-042027", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-040827", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND SODIUM HYDROGEN (BHN BAKU KOSMETIK) COA 092016", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (B. BAKU KOSMETIK) COA CHP1170404", "output": "39139090"}, {"text_input": "What is the hs code for LICORICE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA GLG161102-BGBIO", "output": "39139090"}, {"text_input": "What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIVD160903-BGBIO", "output": "39139090"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO161104", "output": "39139090"}, {"text_input": "What is the hs code for POMEGRANATE OILY EXTRACT (BHN BAKU KOSMETIK)COA PUG170101-H", "output": "39139090"}, {"text_input": "What is the hs code for KIGELINE (BHN BAKU KOSMETIK)COA KA170201-B", "output": "39139090"}, {"text_input": "What is the hs code for POMEGRANATE ORGANIC OILY EXTRACT (BHN BAKU KOSMETIK)COA PUG170101-H", "output": "39139090"}, {"text_input": "What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK)COA CFM170301 PGH", "output": "39139090"}, {"text_input": "What is the hs code for ULVA LACTUCA ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA ULL170401-GS-BGBIO", "output": "39139090"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO170301", "output": "39139090"}, {"text_input": "What is the hs code for VISTANOL GDHR (BHN BAKU KOSMETIK) COA EJF", "output": "39139090"}, {"text_input": "What is the hs code for PROMOIS SILK 1000 (BHN BAKU KOSMETIK) COA DCE", "output": "39139090"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA DCA", "output": "39139090"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20170101", "output": "29362800"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT17010010", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17020051", "output": "29362100"}, {"text_input": "What is the hs code for LIDOCAINE BASE (BHN BAKU OBAT) COA 183564", "output": "29242990"}, {"text_input": "What is the hs code for LIDOCAINE HCL (BHN BAKU OBAT) COA 183842", "output": "29242990"}, {"text_input": "What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 1703045", "output": "29349990"}, {"text_input": "What is the hs code for GLUCOSAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA WA201701005", "output": "29329990"}, {"text_input": "What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1703117 S/D 128, 4001,4002", "output": "29224900"}, {"text_input": "What is the hs code for METHYL SULFONYL METHANE USP (BHN BAKU OBAT) COA 17032001", "output": "29309090"}, {"text_input": "What is the hs code for LEVOFLOXACIN HEMIHYDRATE (BHN BAKU OBAT) COA C008-1612610", "output": "29419000"}, {"text_input": "What is the hs code for MEFENAMIC ACID COMPACTED (BHN BAKU OBAT) COA MFAC-1612702-A", "output": "29224900"}, {"text_input": "What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20170212", "output": "29309090"}, {"text_input": "What is the hs code for OXYTETRACYCLINE HYDROCHLORIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 16121107 S/D9", "output": "29413000"}, {"text_input": "What is the hs code for FIBRE DRUM (DRUM KOSONG) SAMPLE NO COMMERCIAL VALUE", "output": "48192000"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517030046", "output": "29189900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ60513136", "output": "29362500"}, {"text_input": "What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01612096", "output": "29362700"}, {"text_input": "What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES1611065", "output": "29189900"}, {"text_input": "What is the hs code for PARSOL HS (BHN BAKU KOSMETIK) 0709150100", "output": "29189900"}, {"text_input": "What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001432940", "output": "29189900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01606108", "output": "29362900"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT16090083", "output": "29362800"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL01701611", "output": "29362400"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ60813251", "output": "29362500"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ60813251", "output": "29362500"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70202084", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70202084", "output": "29362200"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT16120060", "output": "29362100"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ61110248", "output": "29362300"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT16120060", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91703287", "output": "21069059"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA XH20160302", "output": "29362800"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01609082", "output": "32041900"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01701611", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT16120007", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT16120007", "output": "29362900"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01701603", "output": "29362400"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70202084", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70303063", "output": "29362200"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01701603,1611", "output": "29362400"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01701611", "output": "29362400"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00216024", "output": "29362200"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00316016", "output": "29362300"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00216024", "output": "29362200"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00216052", "output": "29362900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ60813251", "output": "29362500"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAJANAN) COA UQ70303063", "output": "29362200"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT16120024", "output": "29362600"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT16090336", "output": "29362400"}, {"text_input": "What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA 20170405", "output": "11081200"}, {"text_input": "What is the hs code for VIAL SHIGELA ANTIS POLY A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 5275835", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SHIGELLA ANTIS POLY A1 LYOPHILIZED(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6120544", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6328593,7003501,..", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6197586", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6211814", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6354664,7045891", "output": "38210010"}, {"text_input": "What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053972", "output": "38210010"}, {"text_input": "What is the hs code for MS LG KPA COMP BEAD SET 6ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA.6158677", "output": "38210010"}, {"text_input": "What is the hs code for CD14 APC MPHLP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7030892", "output": "38210010"}, {"text_input": "What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 6183704", "output": "38210010"}, {"text_input": "What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6215857", "output": "38210010"}, {"text_input": "What is the hs code for CD10 FITC H110A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7068890", "output": "38210010"}, {"text_input": "What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6228624", "output": "38210010"}, {"text_input": "What is the hs code for ANTI HLA DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7005516", "output": "38210010"}, {"text_input": "What is the hs code for CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6306886", "output": "38210010"}, {"text_input": "What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6243861", "output": "38210010"}, {"text_input": "What is the hs code for HU CD36 FITC CB38 (NL07) 100TST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6259506", "output": "38210010"}, {"text_input": "What is the hs code for CD34 PE 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7038867", "output": "38210010"}, {"text_input": "What is the hs code for LYSING BUFFER 10X CONCENTRATE 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6326641", "output": "38210010"}, {"text_input": "What is the hs code for 7-AAD STAINING SOLUTION 2ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6274739", "output": "38210010"}, {"text_input": "What is the hs code for CD45 FITC/CD34 PE 2D1/8G12 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6320578", "output": "38210010"}, {"text_input": "What is the hs code for PERM/WASH BUFFER 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6188876", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6307974", "output": "38210010"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6358789", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7003501", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7045891", "output": "38210010"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 5205615", "output": "38210010"}, {"text_input": "What is the hs code for VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6333739", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6138627", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7032642", "output": "38210010"}, {"text_input": "What is the hs code for BOOTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7038998", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE FOLIC ACID ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060658", "output": "38210010"}, {"text_input": "What is the hs code for HYCHECK FOT TOTAL COUNT 10/PK (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 16120201", "output": "38210010"}, {"text_input": "What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7006694", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009560", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7067595", "output": "38210010"}, {"text_input": "What is the hs code for VIAL TINSDALE ENRICHMENT 6X15ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7039771", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7027501", "output": "38210010"}, {"text_input": "What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7058904", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SELENITE CYSTINE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6137923", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6294631", "output": "38210010"}, {"text_input": "What is the hs code for NIACINAMIDE PC, 20 KG BAL (B. BAKU KOSMETIK) COA.OP81609009,81701024", "output": "29362900"}, {"text_input": "What is the hs code for O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 010317/004293", "output": "39139090"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594028", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594094", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594105", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594105", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594105", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594093", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593992", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594107", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593884", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594095", "output": "38249999"}, {"text_input": "What is the hs code for LIFE'S DHA S35-O100, 5KG ALUF (B.BAKU MAKANAN) COA VY00202404", "output": "29362500"}, {"text_input": "What is the hs code for CONCOMBRE HESPERIDE P 107 345 (BHN BAKU KOSMETIK) COA 0000006799", "output": "33029000"}, {"text_input": "What is the hs code for THE MATCHA 1 P001062 (BHN BAKU KOSMETIK) COA 0000003113", "output": "33029000"}, {"text_input": "What is the hs code for PLAISANCE P116808 (BHN BAKU KOSMETIK) COA.0000007332", "output": "33029000"}, {"text_input": "What is the hs code for PREDNISONE (BHN BAKU OBAT) COA K03B20170114,115,207", "output": "29372100"}, {"text_input": "What is the hs code for GINSENG EXTRACT G115 (COA: G0236801)", "output": "13021990"}, {"text_input": "What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA LOT NO. 17021003", "output": "38029090"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.SH594262", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BAHAN BAKU OBAT UTK PEWARNA TABLET) COA.SH594260", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA.SH594261", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594280", "output": "38249999"}, {"text_input": "What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA 2627088", "output": "33029000"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG170331", "output": "29362700"}, {"text_input": "What is the hs code for FDANDC YELLOW 6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP773657", "output": "32151900"}, {"text_input": "What is the hs code for FDANDC BLUE 1/BRILLIANT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP775687", "output": "32151900"}, {"text_input": "What is the hs code for FDANDC YELLOW 6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP773654", "output": "32151900"}, {"text_input": "What is the hs code for FDANDC YELLOW 5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP762352", "output": "32151900"}, {"text_input": "What is the hs code for FDANDC BLUE 2/INDIGO CARMINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP776268", "output": "32151900"}, {"text_input": "What is the hs code for FDANDC BLUE 2/INDIGO CARMINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP776268", "output": "32151900"}, {"text_input": "What is the hs code for DANDC YELLOW 10 AL 15PCT - 20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP774844", "output": "32151900"}, {"text_input": "What is the hs code for FDANDC YELLOW 6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP773657", "output": "32151900"}, {"text_input": "What is the hs code for FDANDC YELLOW 5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP762352", "output": "32151900"}, {"text_input": "What is the hs code for VC ASCORBIC ACID 325 MESH (BAHAN BAKU SUPLEMEN) COA HPD1703038,3074,3080,3081", "output": "29362700"}, {"text_input": "What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BH02707", "output": "29349990"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS BP98 (8-80MESH) BHN BAKU MAKANAN, COA M703731,", "output": "29181400"}, {"text_input": "What is the hs code for VC CALCIUM ASCORBATE DC,25KG BAL (BAHAN BAKU SUPLEMEN) COA T201612011", "output": "29362700"}, {"text_input": "What is the hs code for VC ASCORBIC ACID DC 97%,25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG1702009,2010", "output": "29362700"}, {"text_input": "What is the hs code for VC SODIUM ASCORBATE DC ,25KG BAL (BAHAN BAKU SUPLEMEN) COA HPS1701038", "output": "29362700"}, {"text_input": "What is the hs code for COATED ASCORBIC ACID TYPE SC (BHN BAKU SUPLEMEN) COA TL01702623", "output": "29362700"}, {"text_input": "What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00116619", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB00217177", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT SD,15KG BOX ALU (BHN BAKU SUPLEMEN) COA WB02170044", "output": "29362800"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT16080022", "output": "32030010"}, {"text_input": "What is the hs code for MEG-3 (TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT17020004", "output": "29362500"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COAUT17010010", "output": "32041900"}, {"text_input": "What is the hs code for OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP780951", "output": "32151900"}, {"text_input": "What is the hs code for OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP780951", "output": "32151900"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20170403", "output": "17029019"}, {"text_input": "What is the hs code for OPASPRAY BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT660655", "output": "32151900"}, {"text_input": "What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT660656", "output": "32151900"}, {"text_input": "What is the hs code for OPASPRAY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT660657", "output": "32151900"}, {"text_input": "What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT659402", "output": "32151900"}, {"text_input": "What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT660712", "output": "32151900"}, {"text_input": "What is the hs code for OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP780951", "output": "32151900"}, {"text_input": "What is the hs code for OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP780951", "output": "32151900"}, {"text_input": "What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU SUPLEMEN) COA.8MT170347", "output": "30032000"}, {"text_input": "What is the hs code for AMLODIPINE BESILATE BP/EP (BHN BAKU OBAT), COA. AMB/026/03/17", "output": "29398000"}, {"text_input": "What is the hs code for AMPICILLIN TRIHYDRATE PURICILLIN COMPACTED (BHN BAKU OBAT) COA. M842075, 76, 79, 80, 81", "output": "29411020"}, {"text_input": "What is the hs code for NYSTATIN (BHN BAKU OBAT) COA.C114016", "output": "29419000"}, {"text_input": "What is the hs code for NYSTATIN MICRONIZED (BHN BAKU OBAT) COA CC130521,23", "output": "29419000"}, {"text_input": "What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1730003,1750072, 1750076", "output": "29242930"}, {"text_input": "What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334406 S/D 8", "output": "29419000"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU MAKANAN) COA.TS00007500", "output": "29362500"}, {"text_input": "What is the hs code for OPALUX BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT660989", "output": "32151900"}, {"text_input": "What is the hs code for OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT660990", "output": "32151900"}, {"text_input": "What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT660656", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA622330", "output": "38249999"}, {"text_input": "What is the hs code for TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA622293", "output": "32151900"}, {"text_input": "What is the hs code for LIPOID S 67 F (BHN BAKU OBAT) COA.576200-2160029/006, 576200-2160029/013", "output": "29232010"}, {"text_input": "What is the hs code for LIPOID S 67 F (BHN BAKU OBAT) COA.572000-2160029/007-012", "output": "29232010"}, {"text_input": "What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU OBAT) COA.201600433,201600418", "output": "28183000"}, {"text_input": "What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 201700036,374", "output": "28183000"}, {"text_input": "What is the hs code for KSP - 100 (BHN BAKU KOSMETIK) COA 703498", "output": "39139090"}, {"text_input": "What is the hs code for ACNE BUSTERSI (BHN BAKU KOSMETIK), COA.162600", "output": "38249999"}, {"text_input": "What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 163261", "output": "38249999"}, {"text_input": "What is the hs code for FLAVOSTERONE SB ( BHN BAKU KOSMETIK), COA 163170", "output": "13021990"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 163170", "output": "13021990"}, {"text_input": "What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 170083", "output": "29329990"}, {"text_input": "What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 162275", "output": "13021990"}, {"text_input": "What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5457516", "output": "39139090"}, {"text_input": "What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830015092H", "output": "39139090"}, {"text_input": "What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769014752G", "output": "39139090"}, {"text_input": "What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769014829G", "output": "39139090"}, {"text_input": "What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769014829G", "output": "39139090"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK), COA 7850103", "output": "39139090"}, {"text_input": "What is the hs code for CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK), COA 785014498G", "output": "39139090"}, {"text_input": "What is the hs code for LECIGEL (BHN BAKU KOSMETIK) COA 1631312", "output": "39139090"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5451416", "output": "39139090"}, {"text_input": "What is the hs code for MELANOSTATINE 5BG (50PPM) (BHN BAKU KOSMETIK) COA 817044648G", "output": "39139090"}, {"text_input": "What is the hs code for MELANOSTATINE 5PS (50PPM) (BHN BAKU KOSMETIK), COA 817015023H", "output": "39139090"}, {"text_input": "What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828014899G", "output": "39139090"}, {"text_input": "What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025025H", "output": "39139090"}, {"text_input": "What is the hs code for RIBOXYL (BHN BAKU KOSMETIK) COA P0516501", "output": "39139090"}, {"text_input": "What is the hs code for NONIVAMIDE 99PCT (BHN BAKU KOSMETIK) COA.20170410", "output": "29242990"}, {"text_input": "What is the hs code for TECA M (BHN BAKU KOSMETIK)COA 1730310040076", "output": "39139090"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594161", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594107", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594163", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH591456", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594147", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594143", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594144", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594164", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594146", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594150", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594157", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594145", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594149", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594158", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594148", "output": "38249999"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7068731", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7068731", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7005704", "output": "38210010"}, {"text_input": "What is the hs code for MATCHED SIP/FLOW CELL DRY (SAMPLE NO COMMERCIAL VALUE)", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6336799", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7068731", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6342932", "output": "38210010"}, {"text_input": "What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA.6277974,6286718", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6130548", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 6130534", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6336929", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE YEAST EXTRACT 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6207871,6295747", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6257879", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6229763", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6336799", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6146706,6315880", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6315667", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6132955", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6293897", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6040519", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7068731", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6194922", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6293927", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6250612", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6147880", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6291710", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MIO MEDIUM 500G. (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6117955", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6271636", "output": "38210010"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6305521", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6294544", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6258853", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6221518", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6215665", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6300873,7005840", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7081569", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6075719", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7005704", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7081569", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7003923", "output": "38210010"}, {"text_input": "What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8LE116", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PROTEOSE PEPTONE NO 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7044945", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6257503", "output": "38210010"}, {"text_input": "What is the hs code for GASPAK EZ LARGE INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7251515010", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE GN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6307744", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MICRO INOCULUM BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6342747", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PALCAM MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6168855", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 6327604", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 6243907", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE STOCK CULTURE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6110932", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7052648", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID0 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7003923", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6357513", "output": "38210010"}, {"text_input": "What is the hs code for TUBE CRYSTAL E/ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6354747", "output": "38210010"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6362692", "output": "38210010"}, {"text_input": "What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7027523", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009836", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6278668", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7041754", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7080701", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PROTEOSE PEPTONE NO 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7069660", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009829", "output": "38210010"}, {"text_input": "What is the hs code for PAIL BACTO AGAR 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7076592", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BIGGY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6300828", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 63200616", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRAIN HEART INFUSION BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6090728", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6320903,904", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EE BROTH MOSSEL AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6315878", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009564", "output": "38210010"}, {"text_input": "What is the hs code for PAIL LAURYL TRYPTOSE BROTH 2KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7017945", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE L-ARABINOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 5348620", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7011542", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MOTILITY TEST MEDIUM BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 5348620", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6319885", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PHENOL RED BROTH BASE BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6061569", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6074970", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6243907", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE STOCK CULTURE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6110932", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009551", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRIPTYCASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6333797", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6201879", "output": "38210010"}, {"text_input": "What is the hs code for REFERENCE PANEL AUTORDR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6007835", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7081569", "output": "38210010"}, {"text_input": "What is the hs code for SYSTEM GASPAK 150 LARGE ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO OEGANISME) BATCH 6250601", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6315869", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TINSDALE BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 5005918", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7081781", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7081781", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7009568", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7081781", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7081781", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6147899", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6147899", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 6291752", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7017943", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6284972", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CASEIN DIGEST 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7030894", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6188781", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6342932", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 50-0G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7009849", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6295747", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BEEF EXTRACT POWDER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6298524", "output": "38210010"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT16120050,51", "output": "29362100"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT16090336", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ60809026", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN K1 ( BHN BAKU SUPLEMEN) COA SI16070010", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT17010053", "output": "29362900"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01611726", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT GRANULATION ,25KG BAL (BHN BAKU SUPLEMEN) COA WB01016967", "output": "29362700"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT16090083", "output": "29362800"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL01612127", "output": "29362400"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT16110312", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT16090039", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01606108", "output": "29362900"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL01611726", "output": "29362700"}, {"text_input": "What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE01605029", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT16060054", "output": "32041900"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01609082", "output": "32041900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT16110312", "output": "29362800"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01612127", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT16120007", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT16060009", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ60809026", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)(BHN BAKU SUPLEMEN) COA UT16120157", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI16070010", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE(BHN BAKU SUPLEMEN) COA UE01605103", "output": "29362900"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01611726", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT GRANULATION ,25KGBAL (BHN BAKU SUPLEMEN) COA WB01016967", "output": "29362700"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01606108", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ61110248", "output": "29362300"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01701310", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT17010053", "output": "29362900"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01609082,83", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO)(BHN BAKU MAKANAN) COA UT16110711", "output": "29362100"}, {"text_input": "What is the hs code for B2 UNIVERSAL FINE POWDER, 5K BAG ALU (BHN BAKU MAKANAN) COA UQ60610117", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17010053", "output": "29362900"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70303064", "output": "29362200"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO)(BHN BAKU MAKANAN) COA UT16110711,712", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT16120060", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT16120157", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT16110710,711", "output": "29362100"}, {"text_input": "What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW917032", "output": "21069059"}, {"text_input": "What is the hs code for PX 103070-C3 (BHN BAKU MAKANAN) COA XW91703254", "output": "21069059"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL01611726", "output": "29362700"}, {"text_input": "What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ60809026", "output": "29362300"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01611726", "output": "29362700"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01606108", "output": "29362900"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20160302, 60104", "output": "29362800"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70303064", "output": "29362200"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD(BHN BAKU MAKANAN) COA UT16120007", "output": "29362900"}, {"text_input": "What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01611086", "output": "29362700"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA MCS1603817,818", "output": "29189900"}, {"text_input": "What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91703399", "output": "29189900"}, {"text_input": "What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91703400", "output": "29189900"}, {"text_input": "What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01611086", "output": "29362700"}, {"text_input": "What is the hs code for SK BIOLAND LICORICE EXTRACT (BHN BAKU KOSMETIK)COA GGB-032986,011017", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND ALWHITE 7 (BHN BAKU KOSMETIK) COA CLHW-020186", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-030126", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK)COA U170417", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-042696", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-011637", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF(B. BAKU KOSMETIK) COA HMVBD-061626", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK)COA OSLP-042027", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-040827", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 040717", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND OLIGO HA (BHN BAKU KOSMETIK) COA OHA-040316", "output": "39139090"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA.05630217,06670317...", "output": "29351000"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE BP MICRONISED (BHN BAKU OBAT) COA 08430317,09400417...", "output": "29351000"}, {"text_input": "What is the hs code for ALLOPURINOL (BHN BAKU OBAT) COA 17008AY3ARII", "output": "29335990"}, {"text_input": "What is the hs code for DOXYCYCLINE MONOHYDRATE (BHN BAKU OBAT) COA 3042-201704003", "output": "29413000"}, {"text_input": "What is the hs code for CITICOLINE SODIUM (BHN BAKU OBAT) COA 3A26170312", "output": "29349990"}, {"text_input": "What is the hs code for RANITIDINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA RH006 04 17, RH 007 04 17", "output": "29321900"}, {"text_input": "What is the hs code for RBD SUNFLOWER OIL (BHN BAKU KOSMETIK) COA KKLJ-07/17", "output": "39139090"}, {"text_input": "What is the hs code for ALLOPURINOL BP (BHN BAKU OBAT) COA ALP0051216", "output": "29335990"}, {"text_input": "What is the hs code for CHOLINE L-BITARTRATE (BAHAN BAKU OBAT) COA.3012169", "output": "29231000"}, {"text_input": "What is the hs code for PERFECTAMYL AC (BHN BAKU KOSMETIK)COA G5252805", "output": "39139090"}, {"text_input": "What is the hs code for 87-28-5 SALICYLIC ACID ETHYLENE GLYCOL ESTER/GLYCOL SALICYLATE (B.BAKU KOSMETIK)COA.DE170423", "output": "39139090"}, {"text_input": "What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA.70325", "output": "39139090"}, {"text_input": "What is the hs code for TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA.70216", "output": "39139090"}, {"text_input": "What is the hs code for MAPROTILINE HCL (BHN BAKU OBAT) COA 5000/02/17", "output": "29214900"}, {"text_input": "What is the hs code for CEFOTAXIME SODIUM STERILE (BHN BAKU OBAT) COA P202300", "output": "29419000"}, {"text_input": "What is the hs code for CEFOTAXIME SODIUM STERILE (BHN BAKU OBAT) COA P202800", "output": "29419000"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS BP98 (8-80MESH) BHN BAKU MAKANAN, COA M703731,", "output": "29181400"}, {"text_input": "What is the hs code for CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 20170302", "output": "38249999"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA.ROA091174", "output": "28363000"}, {"text_input": "What is the hs code for OXYTOCIN POWDER (SYNTHETIC) (BAHAN BAKU OBAT) COA.OP-140317", "output": "29371900"}, {"text_input": "What is the hs code for COMPLEX DRY EXTRACT (BHN BAKU KOSMETIK)COA CHS170401", "output": "39139090"}, {"text_input": "What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIVD160903-BGBIO", "output": "39139090"}, {"text_input": "What is the hs code for LINEN OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA LIU170201-H", "output": "39139090"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO161104", "output": "39139090"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170302", "output": "39139090"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO170301", "output": "39139090"}, {"text_input": "What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91704126", "output": "21069059"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70302159", "output": "29362200"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT16120024", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT16120025", "output": "29362600"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70303074", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70302159", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70302159,2161,2164", "output": "29362200"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT16120024", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT16120024,25", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN), COA UT16120025", "output": "29362600"}, {"text_input": "What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P6X08UA000", "output": "29189900"}, {"text_input": "What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91704142", "output": "29189900"}, {"text_input": "What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES1611065", "output": "29189900"}, {"text_input": "What is the hs code for PARSOL HS (BHN BAKU KOSMETIK) COA 0709150100,101", "output": "29189900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01606108", "output": "29362900"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70303074", "output": "29362200"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11703021", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT16120025", "output": "29362600"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11703021", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT17010054", "output": "29362900"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT16090083", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT16090039", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT16110158", "output": "29362800"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11703021", "output": "29362900"}, {"text_input": "What is the hs code for KANAMYCIN SULFATE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 16201", "output": "29419000"}, {"text_input": "What is the hs code for OXYTETRACYCLINE DIHYDRATE... (BHN BAKU OBAT UTK PAKAN TERNAK) COA ZT170330", "output": "29413000"}, {"text_input": "What is the hs code for GLUCOSAMINE HCL (BHN BAKU OBAT) COA XH2017040901", "output": "29329990"}, {"text_input": "What is the hs code for METHYL SULFONYL METHANE USP (BHN BAKU OBAT) COA 20170406", "output": "29309090"}, {"text_input": "What is the hs code for INOSITOL (BHN BAKU OBAT) COA 201703071", "output": "29061300"}, {"text_input": "What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 1704028", "output": "29349990"}, {"text_input": "What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1612024, 4045,4047 S/D 57", "output": "29224900"}, {"text_input": "What is the hs code for OXYTETRACYCLINE HYDROCHLORIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 16121115", "output": "29413000"}, {"text_input": "What is the hs code for PYRANTEL PAMOATE (BHN BAKU OBAT) COA PRP1612022", "output": "29349990"}, {"text_input": "What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1704084,86 S/D 97", "output": "29224900"}, {"text_input": "What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA.MLAH007041718", "output": "29341000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121607482, 7486", "output": "28363000"}, {"text_input": "What is the hs code for HYOSCINE BUTYLBROMIDE EP/BP (BHN BAKU OBAT) COA.2510417", "output": "29397900"}, {"text_input": "What is the hs code for CYANOCOBALAMINE VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1704770694", "output": "29362600"}, {"text_input": "What is the hs code for FRENCH MARITIME PINE BARK EXTRACT PYCNOGENOL (R) (BHN BAKU OBAT) COA T/5770", "output": "39139090"}, {"text_input": "What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA 20170408", "output": "17023010"}, {"text_input": "What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA.163021", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE AM PELLETS (BHN BAKU OBAT) COA.16E5008", "output": "28399000"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU OBAT) COA.01/16-GAAK", "output": "28399000"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU OBAT) COA.01/16-GAAK, SAMPLE NO COMM VALUE", "output": "28399000"}, {"text_input": "What is the hs code for CLOZAPINE (BHN BAKU OBAT) COA 710106", "output": "29335990"}, {"text_input": "What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17020002", "output": "29189900"}, {"text_input": "What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17030008", "output": "29189900"}, {"text_input": "What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17030008", "output": "29189900"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP09817", "output": "28363000"}, {"text_input": "What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 17011806", "output": "38029090"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OPI1703021", "output": "29362900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT17010003", "output": "29362800"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01612128,29", "output": "29362400"}, {"text_input": "What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01610815", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0004132940", "output": "29189900"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708160096,97", "output": "29189900"}, {"text_input": "What is the hs code for BEAUPLEX VH (BHN BAKU KOSMETIK) COA UF16335018", "output": "29189900"}, {"text_input": "What is the hs code for PARSOL MCX 25KG PC (BHN BAKU KOSMETIK) COA MCS1605018", "output": "29189900"}, {"text_input": "What is the hs code for NIACINAMIDE PC 20KG BAL (BHN BAKU KOSMETIK) COA OP81702001", "output": "29362900"}, {"text_input": "What is the hs code for BOTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6130534", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6333858,7009856", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6333802", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6278737", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7005840", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7033659", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7033659", "output": "38210010"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.SH594583", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BAHAN BAKU OBAT UTK PEWARNA TABLET) COA.SH594689", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.SH594423", "output": "39061090"}, {"text_input": "What is the hs code for ALLOPURINOL (BHN BAKU OBAT) COA 17011AY3ARII", "output": "29335990"}, {"text_input": "What is the hs code for PERMETHRIN PHARMA GRADE BHN BAKU OBAT COA 174046001", "output": "29163990"}, {"text_input": "What is the hs code for AMOXICILLIN SODIUM STERILE (BHN BAKU OBAT) COA 25M50060", "output": "29411019"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00616156", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00616156", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00616156", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00616156", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00616156", "output": "29362800"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70203030", "output": "29362200"}, {"text_input": "What is the hs code for SILYBIN/PHOSPHOLIPIDS (BAHAN BAKU SUPPLEMEN) COA 10130/M1", "output": "38249999"}, {"text_input": "What is the hs code for SILYBIN/PHOSPHOLIPIDS (BAHAN BAKU SUPPLEMEN) COA 10236/M1", "output": "38249999"}, {"text_input": "What is the hs code for P.GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 32113/M1", "output": "13021990"}, {"text_input": "What is the hs code for CLOTRIMAZOLE MICRONIZED (BHN BAKU OBAT ) COA 201703170316", "output": "29332900"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 INF OIL, 4,5KG PJUG (BHN BAKU SUPLEMEN) COA.TS00007817", "output": "29362500"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20170417", "output": "17029019"}, {"text_input": "What is the hs code for MEG-3 (TM)'10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA.UT17020005", "output": "29362500"}, {"text_input": "What is the hs code for CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 20170314", "output": "38249999"}, {"text_input": "What is the hs code for KOLLICOAT IR WHITE 2 25KG (BHN BAKU OBAT UTK PEWARNA TABLET) COA 25165316K0", "output": "32151900"}, {"text_input": "What is the hs code for KOLLICOAT IR WHITE 2 25KG (BHN BAKU OBAT UTK PEWARNA TABLET) COA 25165316K0", "output": "32151900"}, {"text_input": "What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA. WP781126", "output": "39059990"}, {"text_input": "What is the hs code for PVAP PHTHALAVIN NF CLEAR (BAHAN BAKU OBAT UTK PEWARNA TABLET) COA. WP781127", "output": "39059990"}, {"text_input": "What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA. WP781130", "output": "39059990"}, {"text_input": "What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP781128", "output": "39059990"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE BP MICRONISED (BHN BAKU OBAT) COA.11170417,11190417...", "output": "29351000"}, {"text_input": "What is the hs code for KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0230716", "output": "29339990"}, {"text_input": "What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NX0562M", "output": "29372200"}, {"text_input": "What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334453 S/D 55", "output": "29419000"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ61206150", "output": "29362700"}, {"text_input": "What is the hs code for TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA 16552", "output": "29225090"}, {"text_input": "What is the hs code for DOPAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA.17100091", "output": "29222900"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS BP98 (8-80MESH) BHN BAKU MAKANAN, COA M704084", "output": "29181400"}, {"text_input": "What is the hs code for LINCOMYCIN HCL (BHN BAKU OBAT) COA 1704069", "output": "29419000"}, {"text_input": "What is the hs code for LEVOFLOXACIN HEMIHYDRATE (BHN BAKU OBAT) COA C008-1702309", "output": "29419000"}, {"text_input": "What is the hs code for INSTANT BLACK TEA POWDER (BHN BAKU MAKANAN) COA 2017020501", "output": "21012020"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594614", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH5946", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594625", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593039", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593538", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594626", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594623", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594605", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594604", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594613", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594624", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594629", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593812", "output": "38249999"}, {"text_input": "What is the hs code for GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUMPLEMEN) COA 17027", "output": "39139090"}, {"text_input": "What is the hs code for LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 16229", "output": "38249999"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU OBAT), COA UJ715", "output": "29181400"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU OBAT) COA UJ715", "output": "29181400"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU OBAT), COA UJ717", "output": "29181400"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU OBAT) COA UJ717", "output": "29181400"}, {"text_input": "What is the hs code for SK BIOLAND ALWHITE 7 (BHN BAKU KOSMETIK) COA CLHW-020186", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-030126", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK)COA U170511", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012547", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-040416", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-011637", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND OLIGO HA (BHN BAKU KOSMETIK)COA OHA-040316", "output": "39139090"}, {"text_input": "What is the hs code for MINIPORYL (BHN BAKU KOSMETIK) COA 832015256H", "output": "39139090"}, {"text_input": "What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5471517", "output": "39139090"}, {"text_input": "What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5471517", "output": "39139090"}, {"text_input": "What is the hs code for ALDAVINE 5X (BHN BAKU KOSMETIK) COA 5478717", "output": "39139090"}, {"text_input": "What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830015092H", "output": "39139090"}, {"text_input": "What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK), COA 769015093H", "output": "39139090"}, {"text_input": "What is the hs code for CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK), COA 785014499H", "output": "39139090"}, {"text_input": "What is the hs code for MELANOSTATINE 5BG (50PPM) (BHN BAKU KOSMETIK) COA 817044833G", "output": "39139090"}, {"text_input": "What is the hs code for MELANOSTATINE 5PS (50PPM) (BHN BAKU KOSMETIK) COA 817014258G", "output": "39139090"}, {"text_input": "What is the hs code for SWT 7L (BHN BAKU KOSMETIK) COA 1628401", "output": "39139090"}, {"text_input": "What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK), COA 784025025H", "output": "39139090"}, {"text_input": "What is the hs code for DEFENSCALP (BHN BAKU KOSMETIK) COA 785075173H", "output": "39139090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6336799", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6278668", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7047892", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7041754", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009955", "output": "38210010"}, {"text_input": "What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6286718", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6278558", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA.6295747,7033659", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6336799", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 6315880,7009836", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009849", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6293897", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009966", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7068731", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6314700", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7009829", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6250612", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7041754", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6271562,7080702", "output": "38210010"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009813", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7053795", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6271571,700983", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7009581", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009955", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6139903", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6320612", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G. (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7005704,7018909", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6160813", "output": "38210010"}, {"text_input": "What is the hs code for PANEL VIEWER EUROPE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 111616", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE KOSER CITRATE MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 5055842", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7065938", "output": "38210010"}, {"text_input": "What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8LE116", "output": "38210010"}, {"text_input": "What is the hs code for TUBE CRYSTAL E/ ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053551", "output": "38210010"}, {"text_input": "What is the hs code for SOLUTION BACTERIOSTAT CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3477C419", "output": "38210010"}, {"text_input": "What is the hs code for SOLUTION CLEANING CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1166C514", "output": "38210010"}, {"text_input": "What is the hs code for KIT MAINTENANCE C6 FLOW CYT 1-YR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7083628", "output": "38210010"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7027991,70549", "output": "38210010"}, {"text_input": "What is the hs code for CULTURESWAB STERILE SINGLE SWAB(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH CACI15", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6130548", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7093593", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7103621", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6278668", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7068859", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6342932,7009568", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7109793", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7081569, 7087782", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7005857", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PHYTONE PEPTONE 454G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6287929", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PROTEOSE PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7005507", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7088694", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6278737", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6320612", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ADONITOL 10G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6314645", "output": "38210010"}, {"text_input": "What is the hs code for PAILACTO AGAR 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6322551", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BIGGY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6300828", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BILE SALT NO 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6069958", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BORDET GENGOU AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6250597", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6201884", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7038965", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DUICITOL 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009901", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6315878", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ENDO AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6026738", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EOSIN METHYLENE BLUE AG HHT 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 63200616", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LAURYL SULFATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6307826", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6278861", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE L-ARABINOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 5348620", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7081822", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6320614", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLEOF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7067719", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 4056159", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6315869", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6074970", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6258791", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6229545", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6243907", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE STANDARD METHODS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7017680", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009551", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRIPTYCASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6278889", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6333797", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009836", "output": "38210010"}, {"text_input": "What is the hs code for PAIL LAURYL TRYPTOSE BROTH0 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7017945", "output": "38210010"}, {"text_input": "What is the hs code for TUBE CRYSTAL E/ ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO OEGANISME) BATCH 7053551", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7009568", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE KOSER CITRATE MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 5055842", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PPLO BOTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7110677", "output": "38210010"}, {"text_input": "What is the hs code for HUILE DE COPRAH RAFF GV 24/26 (BHN BAKU KOSMETIK)COA BA006245", "output": "15131910"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK)COA MS/2460/B15/LOREAL/270916", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA MS/70120/B15YOI/LOREAL/021016", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA MS/70120/B15/LOREAL/270916", "output": "39123900"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT SD, 15KG BOX ALU (BHN BAKU SUPLEMEN) COA WB02170045", "output": "29362800"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU OBAT), COA UJ7167", "output": "29181400"}, {"text_input": "What is the hs code for TRISODIUM CITRATE DIHYDRATE FINE GRANULAR (BHN BAKU MAKANAN), COA UJ7147", "output": "29181400"}, {"text_input": "What is the hs code for LIPOID PPL-600 (BHN BAKU OBAT) COA.577200-2170186/005-006 (2)", "output": "29232010"}, {"text_input": "What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA 20170412", "output": "17023010"}, {"text_input": "What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1705001 S/D 8", "output": "29224900"}, {"text_input": "What is the hs code for GRISEOFULVIN (BHN BAKU OBAT) COA BP/EP-161223", "output": "29419000"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6307974", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7003501,7010897", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6347631", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6197586", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7045891", "output": "38210010"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6043596", "output": "38210010"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 5205615", "output": "38210010"}, {"text_input": "What is the hs code for CYTOFIX/CYTOPERM SOLN KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7033753", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009833", "output": "38210010"}, {"text_input": "What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 7005527", "output": "38210010"}, {"text_input": "What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7030892,706888", "output": "38210010"}, {"text_input": "What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7018612", "output": "38210010"}, {"text_input": "What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6350858", "output": "38210010"}, {"text_input": "What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6215857", "output": "38210010"}, {"text_input": "What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7068890", "output": "38210010"}, {"text_input": "What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6354550", "output": "38210010"}, {"text_input": "What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6228624", "output": "38210010"}, {"text_input": "What is the hs code for CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7025817", "output": "38210010"}, {"text_input": "What is the hs code for ANTI HLA DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7055792", "output": "38210010"}, {"text_input": "What is the hs code for CD33 PE P67.6 100 TESTS RUO/ GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7073574", "output": "38210010"}, {"text_input": "What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6243862,7061652", "output": "38210010"}, {"text_input": "What is the hs code for ANNEXIN V FITC APOP DTEC KIT I 100 TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7026585", "output": "38210010"}, {"text_input": "What is the hs code for BD CST BEADS KIT 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 63097", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7004830", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7045891", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6258903", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6197586", "output": "38210010"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6043596", "output": "38210010"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 5205615", "output": "38210010"}, {"text_input": "What is the hs code for VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6333739", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6138627,7060854", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7032642", "output": "38210010"}, {"text_input": "What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6251799", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ANAEROBE ID(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7065850", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE M-GREEN YEAST AND MOLD... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6278712", "output": "38210010"}, {"text_input": "What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC 9 GROUP D (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7045553", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL O ANTISERUM FACTOR 9 GROUP D (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6008891", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL O ANTISERUM GRP A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6246962", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6092802", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL O ANTISERUM FACTOR 2 GROUP A (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6253972", "output": "38210010"}, {"text_input": "What is the hs code for VIAL VBRIO CHOLERAE ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 5049770", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6211814", "output": "38210010"}, {"text_input": "What is the hs code for SOLUTION DECONTAMINATION CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 3477C409", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7027501", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER DMACA INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7053856", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SELENITE CYSTINE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6137923", "output": "38210010"}, {"text_input": "What is the hs code for CYANOCOBALAMINE VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1704790698", "output": "29362600"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE EP6/USP38 (BHN BAKU OBAT) COA.NMP170506", "output": "29372900"}, {"text_input": "What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND170401", "output": "29372200"}, {"text_input": "What is the hs code for PREDNISONE BP93/USP39 (BHN BAKU OBAT) COA.NPD170310", "output": "29372100"}, {"text_input": "What is the hs code for METHOCEL E15 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011GCML01", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E15 PREMIUM LV (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011H21L01", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM (BHN BAKU OBAT UTK PEWARNA TABLET)COA D0180GCG012", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D0180GAV005", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180GCG012", "output": "39123900"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA DDH", "output": "39139090"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA DCA, DDB", "output": "39139090"}, {"text_input": "What is the hs code for PROMOIS WK-GB (BHN BAKU KOSMETIK) COA DBN", "output": "39139090"}, {"text_input": "What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA EKB", "output": "39139090"}, {"text_input": "What is the hs code for VISTANOL GDHR (BHN BAKU KOSMETIK) COA EJF", "output": "39139090"}, {"text_input": "What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00447271, 50970", "output": "29189900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT17010007", "output": "29362800"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01612129,30", "output": "29362400"}, {"text_input": "What is the hs code for BEAUPLEX VH (BHN BAKU KOSMETIK) COA UF16335018", "output": "29189900"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT16090083", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT16090083", "output": "29362100"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517030046,40078", "output": "29189900"}, {"text_input": "What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P6X08UA000", "output": "29189900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01606109", "output": "29362900"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL01701613", "output": "29362400"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70203029,70203030", "output": "29362200"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609083", "output": "32041900"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN), COA UT16120057", "output": "29362100"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUP0LEMEN), COA UQ61113292,3294", "output": "29362500"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01701613", "output": "29362400"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00216053", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00216053", "output": "29362900"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01701613", "output": "29362300"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70402171", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70402171", "output": "29362200"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (BHN BAKU SUPLEMEN) COA UT16110713,16,17", "output": "29362100"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00316017", "output": "29362300"}, {"text_input": "What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91704126,4127", "output": "21069059"}, {"text_input": "What is the hs code for DWI BI (BHN BAKU MAKANAN) COA XW91704128", "output": "21069059"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70402171", "output": "29362200"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT16110312", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN,COA UT16120157", "output": "29362100"}, {"text_input": "What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE01605030", "output": "29362100"}, {"text_input": "What is the hs code for ECHINACEA PURP D.AQ.E>0,8PCT (BAHAN BAKU SUPPLEMEN) COA 10266/M2", "output": "13021990"}, {"text_input": "What is the hs code for ECHINACEA PURP D.AQ.E.>0,8PCT (BAHAN BAKU SUPPLEMEN) COA 10226/M2", "output": "13021990"}, {"text_input": "What is the hs code for VALERIAN D.H.E.>0,8PCT VAL.AC (BHN BAKU SUPLEMEN) COA 10288/M1", "output": "13021990"}, {"text_input": "What is the hs code for ECHINACEA PURP.D.AQ.E.>0,8PCT (BHN BAKU SUPLEMEN) COA 10226/M2", "output": "13021990"}, {"text_input": "What is the hs code for SILYMARIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 10000/M1", "output": "38249999"}, {"text_input": "What is the hs code for GINKGO BILOBA DRY EXTRACT HF (BHN BAKU SUMPLEMEN) COA 17050", "output": "13021990"}, {"text_input": "What is the hs code for OLIVE POLYPHENOLIC DRY EXTRACT (BHN BAKU SUPLEMEN) COA 16414", "output": "13021990"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1602146243", "output": "29372900"}, {"text_input": "What is the hs code for EMPILAN CIS (BAHAN BAKU KOSMETIK) COA.BLW0012389", "output": "34021390"}, {"text_input": "What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104311117A552", "output": "17021100"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M595269 S/D 71", "output": "29411019"}, {"text_input": "What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1750239,243,245", "output": "29242930"}, {"text_input": "What is the hs code for CENTELLA ASIATICA PHOSPHOLIP BHN BAKU SUPLEMEN COA 31730 M1", "output": "38249999"}, {"text_input": "What is the hs code for GREEN TEA DRY DEC.EX PHOSPHOL BHN BAKU SUPLEMEN COA 32157M1", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA TRITERPENES BHN BAKU SUPLEMEN COA 32227 M1", "output": "38249999"}, {"text_input": "What is the hs code for BILBERRY V. MYRTILLUS ET. EX 36PCT BHN BAKU SUPLEMEN COA 32361M1", "output": "13021990"}, {"text_input": "What is the hs code for P.GINSENG DRY EXTRACT 10PCT COL BHN BAKU SUPLEMEN COA 32113M1", "output": "13021990"}, {"text_input": "What is the hs code for VACCINIUM MYRTILLUS DRY EX BHN BAKU SUPLEMEN COA 32254M1", "output": "13021990"}, {"text_input": "What is the hs code for ECHINACEA ANG DRY PURIF.EX BHN BAKU SUPLEMEN, COA 32024M1", "output": "13021990"}, {"text_input": "What is the hs code for P.GINSENG DRY EXTRACTIDB BHN BAKU SUPLEMEN, COA 32190M1", "output": "13021990"}, {"text_input": "What is the hs code for MIRTOGENOL R BHN BAKU SUPLEMEN, COA 80320M", "output": "38249999"}, {"text_input": "What is the hs code for TABLETTOSE R 80 BHN BAKU OBAT COA L104311217A552", "output": "17021100"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT17010010", "output": "32041900"}, {"text_input": "What is the hs code for COATED ASCORBIC ACID TYPE EC (BHN BAKU SUPLEMEN) COA TL01702765", "output": "29362700"}, {"text_input": "What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00116619", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB0217177", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT SD (BHN BAKU SUPLEMEN) COA WB02170045", "output": "29362800"}, {"text_input": "What is the hs code for MEG-3 (TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT17020015", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17020051", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT17010032", "output": "29362100"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595056", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595057", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595055", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595042", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595043", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595044", "output": "38249999"}, {"text_input": "What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595065", "output": "32151900"}, {"text_input": "What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595065", "output": "32151900"}, {"text_input": "What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595065", "output": "32151900"}, {"text_input": "What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595065", "output": "32151900"}, {"text_input": "What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595065", "output": "32151900"}, {"text_input": "What is the hs code for ACRYL EZE PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595177", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595175", "output": "38249999"}, {"text_input": "What is the hs code for REFINED TRACED SHEA OLEIN BHN BAKU KOSMETIK COA 0000016816", "output": "39139090"}, {"text_input": "What is the hs code for VIRGIN SWEET ALMOND OIL CONFORM ... BHN BAKU KOSMETIK COA 0000017313", "output": "39139090"}, {"text_input": "What is the hs code for OPADRY ORANGE (BAHAN BAKU UNTUK PEWARNA TABLET) COA. GA623947", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA623944", "output": "38249999"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20170101", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT17020004", "output": "29362100"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01704136,47", "output": "29362700"}, {"text_input": "What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00116619", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT SD, 15KGBOX ALU (BHN BAKU SUPLEMEN) COA WB02170045", "output": "29362800"}, {"text_input": "What is the hs code for GENIVIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010015", "output": "29329990"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17020051", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT17010032", "output": "29362100"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO161104", "output": "39139090"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170302", "output": "39139090"}, {"text_input": "What is the hs code for POMEGRANATE OILY EXTRACT (BHN BAKU KOSMETIK)COA PUG170101-H", "output": "39139090"}, {"text_input": "What is the hs code for OLIVE ORGANIC VIRGIN OIL EXTRACT XNE102 (BHN BAKU KOSMETIK)COA OLVH170101-ENBIO", "output": "39139090"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO170301", "output": "39139090"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA.ROA1311700", "output": "28363000"}, {"text_input": "What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594938", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594890", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594810", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594623", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594948", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594948", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594939", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594943", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594944", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594942", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594940", "output": "38249999"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK)COA MS/2460/B15/LOREAL/100517", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA MS/70120/B15/LOREAL/060517", "output": "39123900"}, {"text_input": "What is the hs code for VC ASCORBIC ACID REGULAR,25KG BAL (BAHAN BAKU MAKANAN) COA HPD1704093,4105", "output": "29362700"}, {"text_input": "What is the hs code for SK BIOLAND SOPHORA ROOT POWDER BHN BAKU KOSMETIK COA SFP-N-022037", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND BIO OSLP BHN BAKU KOSMETIK COA OSLP 071447", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND ARBUTIN BHN BAKU KOSMETIK COA ARP 1052296", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND ALWHITE 7 BHN BAKU KOSMETIK COA CLHW 020186", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF BHN BAKU KOSMETIK COA HMVBD 021447", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND BIO SODIUM HYALURONATE POWDER MMW BHN BAKU KOSMETIK COA CHP1170513", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND OLIGO HA BHN BAKU KOSMETIK COA OHA 040316", "output": "39139090"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17010054", "output": "29362900"}, {"text_input": "What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UT1607048", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609083,88", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17010054", "output": "29362900"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT16060057", "output": "32041900"}, {"text_input": "What is the hs code for DWI BI (BHN BAKU MAKANAN) COA XW91704309", "output": "21069059"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT16110312", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI16070010", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01605103", "output": "29362900"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01611828", "output": "29362700"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01606109", "output": "29362900"}, {"text_input": "What is the hs code for VP ENG01 (BHN BAKU MAKANAN) COA XW91704261", "output": "21069059"}, {"text_input": "What is the hs code for MILKUAT ZN FE (25PCT CARRIER) (BHN BAKU MAKANAN) COA XW91704310", "output": "21069059"}, {"text_input": "What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91704258", "output": "21069059"}, {"text_input": "What is the hs code for DWI-BI (BHN BAKU MAKANAN) COA XW91704309", "output": "21069059"}, {"text_input": "What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91704258,59", "output": "21069059"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01612130", "output": "29362400"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) BCOA UQ70402173", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70402173", "output": "29362200"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70206027", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70106020,206027", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70106020", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70106020", "output": "29362700"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1701002", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI16070010", "output": "29362900"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT16060057", "output": "32041900"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT17010020", "output": "29362400"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70303084", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70303084", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70303084", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70303082,84", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70303082", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70303082", "output": "29362200"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20160302", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA TL01600099", "output": "29362800"}, {"text_input": "What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE01607048", "output": "29362100"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70303084", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70303084", "output": "29362200"}, {"text_input": "What is the hs code for QUINOLINE YELLOW 70 E 104 (BHN BAKU KOSMETIK)COA 16RM0040", "output": "32041710"}, {"text_input": "What is the hs code for ESOMEPRAZOLE SODIUM STERILE (34PERCENT TO 38PERCENT W/W)COA AESS16003", "output": "29333990"}, {"text_input": "What is the hs code for PANTOPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W)BHN BAKU OBAT, COA APSS16004", "output": "29333990"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU OBAT), COA UJ718", "output": "29181400"}, {"text_input": "What is the hs code for MANNITOL POWDER USP/EP (BHN BAKU OBAT) COA.301704302", "output": "29054300"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP17043685, TP17043686", "output": "29211900"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT16090332", "output": "29362400"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00316017", "output": "29362300"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00216024", "output": "29362200"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00316017", "output": "29362300"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB09140224", "output": "29362500"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00316017", "output": "29362300"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA MCS1603A67 S/D 75,80,81", "output": "29189900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU KOSMETIK) COA UT16120157", "output": "29362100"}, {"text_input": "What is the hs code for PARSOL MCX 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517040078", "output": "29189900"}, {"text_input": "What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91705067", "output": "29189900"}, {"text_input": "What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0014952", "output": "29362500"}, {"text_input": "What is the hs code for HEXETIDINE (BAHAN BAKU OBAT) COA.FG17200742", "output": "29335990"}, {"text_input": "What is the hs code for DOXYCYCLINE MONOHYDRATE (BHN BAKU OBAT) COA DX170504001", "output": "29413000"}, {"text_input": "What is the hs code for CEFPIROME SULFATE SODIUM CARBONATE (B BAKU OBAT) COA 1704401M", "output": "29419000"}, {"text_input": "What is the hs code for FIBRE DRUM (DRUM KOSONG)", "output": "48192000"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT )COA.ASG/05/020517,030517...", "output": "29420000"}, {"text_input": "What is the hs code for AC019KC PHYTOVITYL C 5KG BHN BAKU KOSMETIK COA 0013570", "output": "39139090"}, {"text_input": "What is the hs code for AC019KC PHYTOVITYL C 5KG BHN BAKU KOSMETIK COA 13570", "output": "39139090"}, {"text_input": "What is the hs code for THE MATCHA CONCOMBRE (BHN BAKU KOSMETIK) COA 2648836", "output": "33029000"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT16110011", "output": "32041900"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20170101", "output": "29362800"}, {"text_input": "What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1705001 S/D 8", "output": "29224900"}, {"text_input": "What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ70107004", "output": "29189900"}, {"text_input": "What is the hs code for CETIRIZINE DIHYDROCHLORIDE PH EUR (BHN BAKU OBAT) COA SLL/CTRI/0417001", "output": "29395900"}, {"text_input": "What is the hs code for GINKGO BILOBA DRY EXTRACT HF (BHN BAKU SUMPLEMEN) COA 17152", "output": "13021990"}, {"text_input": "What is the hs code for LORATADINE MICRONIZED (BHN BAKU OBAT) COA LRH6109", "output": "29333990"}, {"text_input": "What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN0160117", "output": "29221990"}, {"text_input": "What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU KOSMETIK) COA VBN206116", "output": "29221990"}, {"text_input": "What is the hs code for CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 016.633, 016.664", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE SB VITAL LIDO 1 ML (BHN BAKU OBAT) COA 14838-2", "output": "90189090"}, {"text_input": "What is the hs code for RES SB VITAL LIGHT LIDO 1 ML (BHN BAKU OBAT) COA 14765-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE LIDOCAINE 1 ML D16 (BHN BAKU OBAT) COA 15141-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML (BHN BAKU OBAT) COA 15055-1", "output": "90189090"}, {"text_input": "What is the hs code for CUREBERRY (BHN BAKU KOSMETIK), COA.163186", "output": "13021990"}, {"text_input": "What is the hs code for ALPINIAWHITE (BHN BAKU KOSMETIK) COA 170102", "output": "13021990"}, {"text_input": "What is the hs code for ALPINIAWHITE( BHN BAKU KOSMETIK), COA 170441", "output": "13021990"}, {"text_input": "What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 170473", "output": "38249999"}, {"text_input": "What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 170083", "output": "29329990"}, {"text_input": "What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 170304", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595108", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595107", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594997", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595104", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595105", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595105", "output": "39061090"}, {"text_input": "What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595065", "output": "32151900"}, {"text_input": "What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595065", "output": "32151900"}, {"text_input": "What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595065", "output": "32151900"}, {"text_input": "What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH593384", "output": "32151900"}, {"text_input": "What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595065", "output": "32151900"}, {"text_input": "What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595103", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595099", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595096", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595096", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595106", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595145", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595094", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594890", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594782", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595098", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595097", "output": "38249999"}, {"text_input": "What is the hs code for BIOTOX (R) (BHN BAKU OBAT UTK PAKAN TERNAK) COA 270417-342", "output": "23099090"}, {"text_input": "What is the hs code for ECOTRACE (R) FE 20PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC100516", "output": "29224900"}, {"text_input": "What is the hs code for LIQUIPHOS (R) STRONG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 030417-289", "output": "23099090"}, {"text_input": "What is the hs code for LIQUIPHOS (R) STRONG (BHN BAKU UTK PAKAN TERNAK) COA 020517-356", "output": "23099090"}, {"text_input": "What is the hs code for PERMETHRIN PHARMA GRADE BHN BAKU OBAT COA 174046003", "output": "29163990"}, {"text_input": "What is the hs code for CYANOCOBALAMINE VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1704680165", "output": "29362600"}, {"text_input": "What is the hs code for LABRAFIL M 1944 CS (BHN BAKU OBAT) COA.161499", "output": "28399000"}, {"text_input": "What is the hs code for PRECIROL ATO 5 (BHN BAKU OBAT) COA.163914", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE AM PELLETS (BAHAN BAKU OBAT) COA.16E3503", "output": "28399000"}, {"text_input": "What is the hs code for TEFOSE 63 (BAHAN BAKU OBAT) COA.163177", "output": "28399000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121707734", "output": "28363000"}, {"text_input": "What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK) COA.LDC 98 17", "output": "39139090"}, {"text_input": "What is the hs code for CINNARIZINE (BHN BAKU OBAT) COA 011 05 2017 CIN", "output": "29335990"}, {"text_input": "What is the hs code for AMBROXOL HYDROCHLORIDE POWDER (BHN BAKU OBAT) COA AHM/17035", "output": "29420000"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP13417", "output": "28363000"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP13417", "output": "28363000"}, {"text_input": "What is the hs code for OPADRY II TAN (BHN BAKU OBAT UTK PEWARNA TABLET) COA.DT660907", "output": "38249999"}, {"text_input": "What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT661988", "output": "32151900"}, {"text_input": "What is the hs code for OPALUX ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT661989", "output": "32151900"}, {"text_input": "What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT661990", "output": "32151900"}, {"text_input": "What is the hs code for SELVOL 540 PVOH 25 KG BAG (BHN BAKU KOSMETIK) COA PO41683061", "output": "39139090"}, {"text_input": "What is the hs code for PIROXICAM (BHN BAKU OBAT) COA PRX2016009M", "output": "29349990"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609088,89", "output": "32041900"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70402224", "output": "29362200"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT17010021", "output": "29362400"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT17020016", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA TL017020016", "output": "29362800"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL01611911,1920", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL01611856,859,911", "output": "29362700"}, {"text_input": "What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW91705112", "output": "21069059"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ61206148, 149,6029...", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70206048,306066", "output": "29362700"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01702526", "output": "29362700"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01702526", "output": "29362700"}, {"text_input": "What is the hs code for B2 RIBOFLAVIN UNIVERAL 5KG BAG ALU (BHN BAKU MAKANAN) COA UQ61010219", "output": "29362300"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70402213,2224", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70402213", "output": "29362200"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL01701616", "output": "29362400"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01701617", "output": "29362400"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) BCOA TL01701617", "output": "29362400"}, {"text_input": "What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4452966142", "output": "39139090"}, {"text_input": "What is the hs code for CILOSTAZOL USP (BHN BAKU OBAT) COA 6004CB2ARI", "output": "29337900"}, {"text_input": "What is the hs code for THIOGLYCOLIC ACID 99PCT COSMETIC GRADE (BHN BAKU KOSMETIK) COA.0000058766", "output": "29309090"}, {"text_input": "What is the hs code for AMMONIUM THIOGLYCOLATE 71PCT(60PCT TGA) BHN BAKU KOSMETIK, COA.0000058767", "output": "29309090"}, {"text_input": "What is the hs code for THIOGLYCOLIC ACID 80PCT COSMETIC GRADE, BHN BAKU KOSMETIK, COA 0000058768", "output": "29309090"}, {"text_input": "What is the hs code for MONOETHANOLAMINE THIOGLYCOLATE 83PCT (50PCT TGA) BHN BAKU KOSMETIK, COA 0000058769", "output": "29221100"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01704147,286...", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17010017", "output": "29362100"}, {"text_input": "What is the hs code for VC ASCORBIC ACID DC 97PCT, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG1704007", "output": "29362700"}, {"text_input": "What is the hs code for VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPB1704247, HPD1705002", "output": "29362700"}, {"text_input": "What is the hs code for VC SODIUM ASCORBATE DC ,25KG BAL (BAHAN BAKU SUPLEMEN) COA HPN1705155,68,73,81", "output": "29362700"}, {"text_input": "What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 1705EF8912", "output": "29224900"}, {"text_input": "What is the hs code for SALBUTAMOL SULPHATE BP (BHN BAKU OBAT) COA SLL/55/0317015", "output": "29225090"}, {"text_input": "What is the hs code for ALLOPURINOL BP/EP (BHN BAKU OBAT) COA SLL/ALP/0816003", "output": "29335990"}, {"text_input": "What is the hs code for CYANOCOBALAMINE VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1704951503", "output": "29362600"}, {"text_input": "What is the hs code for CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 017.420", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE SKINB VITLIDO 1 MLD16 (BHN BAKU OBAT) COA 14898-2", "output": "90189090"}, {"text_input": "What is the hs code for REST SKINB VITALLGHLIDO 1 MLD16 (BHN BAKU OBAT) COA 14994-2", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE LIDOCAINE 1 ML D16 (BHN BAKU OBAT) COA 15141-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML (BHN BAKU OBAT) COA 15055-1", "output": "90189090"}, {"text_input": "What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK), COA.170304", "output": "38249999"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 170370", "output": "13021990"}, {"text_input": "What is the hs code for SAKURA EXTRACT B BHN BAKU KOSMETIK), COA 170433", "output": "13021990"}, {"text_input": "What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 170467", "output": "13021990"}, {"text_input": "What is the hs code for OUBAKU LIQUID BI (BHN BAKU KOSMETIK) COA 170365", "output": "13021990"}, {"text_input": "What is the hs code for KETOPROFEN (BHN BAKU OBAT) COA.184421", "output": "29183000"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00616161", "output": "29362800"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT16120031", "output": "32030010"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 20PCT SAF (BHN BAKU SUPLEMEN) COA UE01704031", "output": "32030010"}, {"text_input": "What is the hs code for THE MATCHA 1 P001062 (BHN BAKU KOSMETIK) COA 0000006987", "output": "33029000"}, {"text_input": "What is the hs code for PLAISANCE P116808 (BHN BAKU KOSMETIK) COA.0000008081", "output": "33029000"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA.02/16-GL4", "output": "28399000"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40 BRIX) (B. BAKU KOSMETIK) COA02/16-GL4.SAMPLE NO COMMERCIAL VALUE", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE NA PELLETS (BAHAN BAKU SUPLEMEN) COA.16E3907", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE NA PELLETS (BAHAN BAKU SUPLEMEN) COA.16E4305", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE NA PELLETS (BAHAN BAKU SUPLEMEN) COA.17E0707", "output": "28399000"}, {"text_input": "What is the hs code for GELUCIRE 44/14 (BAHAN BAKU SUPLEMEN) COA.163021", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE AM PELLETS (BHN BAKU SUPLEMEN) COA. 16E3503", "output": "28399000"}, {"text_input": "What is the hs code for CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA.1GC01CLB ZP48D 25MT", "output": "39139090"}, {"text_input": "What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BH04006", "output": "29349990"}, {"text_input": "What is the hs code for MEROPENEM WITH SODIUM CARBONATE (BHN BAKU OBAT) COA P900200", "output": "30039000"}, {"text_input": "What is the hs code for CEFOTAXIME SODIUM STERILE USP (BHN BAKU OBAT) COA Q200900", "output": "29419000"}, {"text_input": "What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA Q600200", "output": "29419000"}, {"text_input": "What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 1603847188", "output": "29372200"}, {"text_input": "What is the hs code for DICLOFENAC SODIUM (BHN BAKU OBAT) COA 170155", "output": "29224900"}, {"text_input": "What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA EKB", "output": "39139090"}, {"text_input": "What is the hs code for PROMOIS WS (BHN BAKU KOSMETIK) COA DCN", "output": "39139090"}, {"text_input": "What is the hs code for PROMOIS S-CAQ (BHN BAKU KOSMETIK) COA DBM", "output": "39139090"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA.ROA130177", "output": "28363000"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6278668", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7080723", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6336799", "output": "38210010"}, {"text_input": "What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6286718", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6130548", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6284972,7093593", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7030910", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6295747,7033659", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 6336799", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009836", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009856", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7065608,7081793", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7018890", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6319905", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6155865", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009966", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7068731", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6314700,7045539", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009829", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7017943", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6278668", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6250612", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6278737", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7047892", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6291710", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MALT AGAR 500G. (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7041754", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7080701,702", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6333840", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7009834", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6257924", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7080723", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009581", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6319903", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7005840,7053894", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6320612", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053952", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7005857", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7102884,9903", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7102903", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060762", "output": "38210010"}, {"text_input": "What is the hs code for SOLUTION BACTERIOSTAT CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3477C419", "output": "38210010"}, {"text_input": "What is the hs code for SOLUTION CLEANING CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0046C521", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7088559", "output": "38210010"}, {"text_input": "What is the hs code for CULTURESWAB STERILE SINGLE SWAB 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH CACI15", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 6287929", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7109998", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009829", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060731", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6320612", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7081822", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE BROTH0 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060807", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PROTEOSE PEPTONE NO.3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7107877", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BILE SALTS NO 3 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6209796", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7017983", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7005857", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6201884", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7084577", "output": "38210010"}, {"text_input": "What is the hs code for PAIL LAURYL TRYPTOSE BROTH 2KG(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7017945", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7068859", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6229558", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE NITRATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6342774", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PHENOL RED MANNITOL BR BBL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 6327837", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7110693", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7088775", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6315869", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIADIS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7081822", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6327604", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6319507", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE STANDARD METHODS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7017680", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTONE GLUCOSE EXT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060509", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE YPD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7053905", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER LACTOPHENOL COTTON BLUE STAIN (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6279744", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7082926", "output": "38210010"}, {"text_input": "What is the hs code for SWUBE SINGLE SWAB STERILE COTTON TIP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 35616008", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6336799", "output": "38210010"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7041588", "output": "38210010"}, {"text_input": "What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7005527", "output": "38210010"}, {"text_input": "What is the hs code for CD14 APC MPHLP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7068880", "output": "38210010"}, {"text_input": "What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7018612", "output": "38210010"}, {"text_input": "What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6350858", "output": "38210010"}, {"text_input": "What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6215857", "output": "38210010"}, {"text_input": "What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7068890", "output": "38210010"}, {"text_input": "What is the hs code for CD10 FITC HI10A 60 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6354550", "output": "38210010"}, {"text_input": "What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 6228624", "output": "38210010"}, {"text_input": "What is the hs code for CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7123691", "output": "38210010"}, {"text_input": "What is the hs code for PERM/WASH BUFFER 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6356786B", "output": "38210010"}, {"text_input": "What is the hs code for HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6259506", "output": "38210010"}, {"text_input": "What is the hs code for 7-AAD STINING SOLUTION 2ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6274739A", "output": "38210010"}, {"text_input": "What is the hs code for CD4 APC SK3 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6291874", "output": "38210010"}, {"text_input": "What is the hs code for FASTIMMUNE IFN-GAMMA/IL... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6343739", "output": "38210010"}, {"text_input": "What is the hs code for CYTOFIX FLXATION BUFFER 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6292698", "output": "38210010"}, {"text_input": "What is the hs code for STAIN BUFFER FBS 500ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6326635", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LETHEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6258903", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6197586", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7045891", "output": "38210010"}, {"text_input": "What is the hs code for VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6333739", "output": "38210010"}, {"text_input": "What is the hs code for VIAL E COLL H ANTISERUM H7 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6281546", "output": "38210010"}, {"text_input": "What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT 10X10MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6251799", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7102829", "output": "38210010"}, {"text_input": "What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7067660", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6092802", "output": "38210010"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3MI(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6309655", "output": "38210010"}, {"text_input": "What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA.70325", "output": "39139090"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 70405", "output": "39139090"}, {"text_input": "What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7095722", "output": "38210010"}, {"text_input": "What is the hs code for PROTEIN TRANSPORT INHIBITOR SOLN 0.7ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6189672", "output": "38210010"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M110243", "output": "29339990"}, {"text_input": "What is the hs code for ALLOPURINOL (BHN BAKU OBAT) COA 17011AY3ARII, 17012AY3ARII", "output": "29335990"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121607486,121707734,48", "output": "28363000"}, {"text_input": "What is the hs code for PEG 400 (BAHAN BAKU KOSMETIK) COA.AKW0003785", "output": "39139090"}, {"text_input": "What is the hs code for CLOZAPINE (BHN BAKU OBAT) COA 730106", "output": "29335990"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO161104, CO160202", "output": "39139090"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO161104, CO160202", "output": "39139090"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO161104, CO160202", "output": "39139090"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170302", "output": "39139090"}, {"text_input": "What is the hs code for WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK)COA EG138-160301", "output": "39139090"}, {"text_input": "What is the hs code for LINEN OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA LIU170302-H", "output": "39139090"}, {"text_input": "What is the hs code for INCA ANCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK)COA II170405-AI-D-BIO", "output": "39139090"}, {"text_input": "What is the hs code for AMISOL TRIO (BHN BAKU KOSMETIK) COA 1629114", "output": "39139090"}, {"text_input": "What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769015093H", "output": "39139090"}, {"text_input": "What is the hs code for LECIGEL (BHN BAKU KOSMETIK) COA 1631314", "output": "39139090"}, {"text_input": "What is the hs code for LECIGEL (BHN BAKU KOSMETIK) COA 1631315", "output": "39139090"}, {"text_input": "What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5457516", "output": "39139090"}, {"text_input": "What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829015062H", "output": "39139090"}, {"text_input": "What is the hs code for CAPIXYL (BHN BAKU KOSMETIK), COA 830015198H", "output": "39139090"}, {"text_input": "What is the hs code for CAPIXYL (BHN BAKU KOSMETIK), COA 830015254H", "output": "39139090"}, {"text_input": "What is the hs code for LANABLUE (BHN BAKU KOSMETIK) COA 5470017", "output": "39139090"}, {"text_input": "What is the hs code for LECIGEL (BHN BAKU KOSMETIK) COA 1700605", "output": "39139090"}, {"text_input": "What is the hs code for LECIGEL (BHN BAKU KOSMETIK) COA 1710601", "output": "39139090"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5452816", "output": "39139090"}, {"text_input": "What is the hs code for PRO-LIPO NEO (BHN BAKU KOSMETIK) COA 1707301", "output": "39139090"}, {"text_input": "What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025025H", "output": "39139090"}, {"text_input": "What is the hs code for AMISOL TRIO (BHN BAKU KOSMETIK) COA 1629114", "output": "39139090"}, {"text_input": "What is the hs code for CW 5C 5PCT CLEAR BHN BAKU KOSMETIK, COA 785015305H", "output": "39139090"}, {"text_input": "What is the hs code for LECIGEL (BHN BAKU KOSMETIK) COA 1710601", "output": "39139090"}, {"text_input": "What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015046H", "output": "39139090"}, {"text_input": "What is the hs code for PROGELINE (BHN BAKU KOSMETIK) COA 820053903F", "output": "39139090"}, {"text_input": "What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025025H", "output": "39139090"}, {"text_input": "What is the hs code for ASTABIO ARV-S (BHN BAKU OBAT) COA.1703061K", "output": "32030010"}, {"text_input": "What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA.8MT170367", "output": "30032000"}, {"text_input": "What is the hs code for MAPROTILINE HCL (BHN BAKU OBAT) COA 5000/04/17", "output": "29214900"}, {"text_input": "What is the hs code for SPI PX 507 (BHN BAKU MAKANAN) COA XW91705184", "output": "21069059"}, {"text_input": "What is the hs code for O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 012017/004350", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND BIO SODIUM HYALURONATE POWDER (MMW) (B BAKU KOSMETIK)COA CHP1170530", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-271347", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 040717 061416", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK)COA GSC K 012547", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-021247", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND OLIGO HA (BHN BAKU KOSMETIK) COA OHA 042457", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND ALWHITE 7 (BHN BAKU KOSMETIK)COA CLHW 020186", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD 021447", "output": "39139090"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702322512", "output": "29372900"}, {"text_input": "What is the hs code for TELMISARTAN (BHN BAKU OBAT) COA TM0140617", "output": "29339990"}, {"text_input": "What is the hs code for GABAPENTIN (BHN BAKU OBAT) COA GBW1705134", "output": "29224900"}, {"text_input": "What is the hs code for RANITIDINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA RH 118 05 17, RH 119 05 17", "output": "29321900"}, {"text_input": "What is the hs code for EVERMAP 160K (BHN BAKU KOSMETIK) COA.C17031701E160K", "output": "38249999"}, {"text_input": "What is the hs code for VITAMIN PREMIX TYPE MM81 (105PCT) (B. BAKU MAKANAN) COA XW91705186", "output": "21069059"}, {"text_input": "What is the hs code for INSTANT BLACK TEA POWDER TH B430 (BHN BAKU MAKANAN) COA 2017020501", "output": "21012020"}, {"text_input": "What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA LOT NO. 17053104", "output": "38029090"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT EMULS (BHN BAKU MAKANAN) COA UE01611018", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN A PALM 1.0M + VIT D3 100000 (BHN BAKU MAKANAN) COA UE01611018", "output": "29362100"}, {"text_input": "What is the hs code for MXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20170101", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN B12 1PCT SD (BHN BAKU SUPLEMEN) COA UT17010007", "output": "29362600"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT17010010", "output": "32041900"}, {"text_input": "What is the hs code for COATED ASCORBIC ACID TYPE EC (BHN BAKU MAKANAN) COA TL01703894", "output": "29362700"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00616161", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17020051", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT17010033", "output": "29362100"}, {"text_input": "What is the hs code for NATURAL MIXED TOCOPHEROLS (BHN BAKU KOSMETIK) COA.170507M002", "output": "29362800"}, {"text_input": "What is the hs code for VISTANOL GDHR (BHN BAKU KOSMETIK) COA EJF", "output": "39139090"}, {"text_input": "What is the hs code for SILASOMA MFA (S) (BHN BAKU KOSMETIK) COA EGB", "output": "39139090"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA DDI", "output": "39139090"}, {"text_input": "What is the hs code for PROMOIS WG-SIG (BHN BAKU KOSMETIK) COA DBF", "output": "39139090"}, {"text_input": "What is the hs code for SILASOMA REA (S)BHN BAKU KOSMETIK) COA DBD", "output": "39139090"}, {"text_input": "What is the hs code for METHOCEL E15 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011G8SL01", "output": "39123900"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 20 PREMIUM (BHN BAKU OBAT UTK PEWARNA TABLET) COA D184G1J021", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E15M PREMIUM LV (BHN BAKU OBAT UTK PEWARNA TABLET)COA D011GCKL02", "output": "39123900"}, {"text_input": "What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK), COA.170569", "output": "29329990"}, {"text_input": "What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 170585", "output": "38249999"}, {"text_input": "What is the hs code for FLAVOSTERONE SB( BHN BAKU KOSMETIK), COA 170569", "output": "13021990"}, {"text_input": "What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 170569", "output": "29329990"}, {"text_input": "What is the hs code for PEACH LEAF LIQUID B (BHN BAKU KOSMETIK) COA 170305", "output": "13021990"}, {"text_input": "What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 170467", "output": "13021990"}, {"text_input": "What is the hs code for ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.SH596112", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB RED (BAHAN BAKU OBAT UTK PEWARNA TABLET) COA.SH595732", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.SH595728", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595828", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595829", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595791", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595797", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595778", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595176", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL EZE PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595825", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595826", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595774", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595795", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595827", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595234", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595799", "output": "38249999"}, {"text_input": "What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA MCS1602079,97", "output": "29189900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ60813235", "output": "29362500"}, {"text_input": "What is the hs code for PARSOL MCX 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517050094", "output": "29189900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT17010003,7,16,21", "output": "29362800"}, {"text_input": "What is the hs code for NIACINAMIDE PC, 29KG BAL (BHN BAKU KOSMETIK) COA OP81702006", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517040078", "output": "29189900"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA MCS1605116", "output": "29189900"}, {"text_input": "What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001440327", "output": "29189900"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA MCS1603C82,D44,D68,E28", "output": "29189900"}, {"text_input": "What is the hs code for PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517050094", "output": "29189900"}, {"text_input": "What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES1611066", "output": "29189900"}, {"text_input": "What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA MCS1607004", "output": "29189900"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT16100097", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)BHN BAKU KOSMETIK, COA UT17020158", "output": "29362100"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01606109", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA MCS1603E29,30,31,32", "output": "29189900"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA MCS1603D88,89,91,92", "output": "29189900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT17010003", "output": "29362800"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01701001,1007,1008", "output": "29362400"}, {"text_input": "What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01610815", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708160098,99,123", "output": "29189900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11704017,27", "output": "29362900"}, {"text_input": "What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7033659", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7103621", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6293897", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D-MANNOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7135976", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MALTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7128637", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7055755", "output": "38210010"}, {"text_input": "What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 170110416", "output": "38210010"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7041588", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7010897,7065702", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7045535,...", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6197586", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6337887", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7045891", "output": "38210010"}, {"text_input": "What is the hs code for NOREPINEPHRINE BITARTRATE (BHN BAKU OBAT) COA 370104", "output": "29379010"}, {"text_input": "What is the hs code for CHOLINE L-BITARTRATE (BAHAN BAKU OBAT) COA.3012605", "output": "29231000"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101852217A545", "output": "17021100"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP17063035,36", "output": "29211900"}, {"text_input": "What is the hs code for BICAR PHARMA 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA.RBA1651700", "output": "28363000"}, {"text_input": "What is the hs code for VIUSID AQUA ORAL SOLUTION (PAKAN IKAN BERBENTUK CAIR) COA N-6", "output": "23099090"}, {"text_input": "What is the hs code for KSP - 100 (BHN BAKU KOSMETIK) COA 706516", "output": "39139090"}, {"text_input": "What is the hs code for MACADAMIA EXFOL TM 100 (BHN BAKU KOSMETIK) COA.51117", "output": "39139090"}, {"text_input": "What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA.70318", "output": "39139090"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE BP MICRONISED (BHN BAKU OBAT) COA.15380617,15390617...", "output": "29351000"}, {"text_input": "What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.17100272", "output": "29391900"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE EP6/USP38 (BHN BAKU OBAT) COA.NMP170607, 609", "output": "29372900"}, {"text_input": "What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND170405", "output": "29372200"}, {"text_input": "What is the hs code for ALLOPURINOL BP (BHN BAKU OBAT) COA ALP0010417", "output": "29335990"}, {"text_input": "What is the hs code for LABRAFIL M 1944 CS (BHN BAKU OBAT) COA.162835", "output": "28399000"}, {"text_input": "What is the hs code for TRANSCUTOL P (BHN BAKU OBAT) COA.164103", "output": "28399000"}, {"text_input": "What is the hs code for TEFOSE 63 (BAHAN BAKU OBAT) COA.163177", "output": "28399000"}, {"text_input": "What is the hs code for CETYL PALMITATE PELLETS CAR (BAHAN BAKU OBAT) COA.161792", "output": "28399000"}, {"text_input": "What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 162392", "output": "28399000"}, {"text_input": "What is the hs code for DEFERASIROX (BHN BAKU OBAT) COA DR0010217", "output": "29339990"}, {"text_input": "What is the hs code for CEFIXIME TRIHYDRATE (BHN BAKU OBAT) COA Q200100", "output": "29419000"}, {"text_input": "What is the hs code for CEFIXIME MICRONIZED (BHN BAKU OBAT) COA Q500200", "output": "29419000"}, {"text_input": "What is the hs code for CEFTRIAXONE SODIUM STERILE BP (BHN BAKU OBAT) COA P702200", "output": "29419000"}, {"text_input": "What is the hs code for MEROPENEM WITH SODIUM CARBONATE (BHN BAKU OBAT) COA P900200", "output": "30039000"}, {"text_input": "What is the hs code for AMLODIPINE BESILATE BP/EP (BHN BAKU OBAT), COA. AMB/052/06/17", "output": "29339990"}, {"text_input": "What is the hs code for POVIDONE K30 (BHN BAKU OBAT) COA PK30-170522F13, 170528F32", "output": "39059990"}, {"text_input": "What is the hs code for POVIDONE K25 (BHN BAKU OBAT) COA PK25-170224F32", "output": "39059990"}, {"text_input": "What is the hs code for CROSPOVIDONE XL (BHN BAKU OBAT) COA PP170512XL,513XL SAMPLE NO COMMERCIAL VALUE", "output": "39059990"}, {"text_input": "What is the hs code for CROSPOVIDONE XL-10 (BHN BAKU OBAT, COA.PP170519XL-10,0516XL-10,SAMPLE NO COMMERCIAL VALUE", "output": "39059990"}, {"text_input": "What is the hs code for POVIDONE K25 (BHN BKU OBAT) COA PK25-170228F21,224F32 SAMPLE NO COMMERCIAL VALUE", "output": "39059990"}, {"text_input": "What is the hs code for POVIDONE K30 (BHN BAKU OBAT) COA PK30-170514F11,516F21,32,SAMPLE NO COMMERCIAL VALUE", "output": "39059990"}, {"text_input": "What is the hs code for POVIDONE K90 (BHN BAKU OBAT) COA PK90-170427FF1, SAMPLE NO COMMERCIAL VALUE", "output": "39059990"}, {"text_input": "What is the hs code for DOPAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA.17100379", "output": "29222900"}, {"text_input": "What is the hs code for KETOROLAC TROMETAMOL /TROMETHAMINE (BHN BAKU OBAT) COA.17100413", "output": "29339990"}, {"text_input": "What is the hs code for NOREPINEPHRINE BITARTRATE (BHN BAKU OBAT) COA 390104", "output": "29379010"}, {"text_input": "What is the hs code for OXFENDAZOLE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 60417025", "output": "29242990"}, {"text_input": "What is the hs code for OXYTETRACYCLINE DIHYDRATE... (BHN BAKU OBAT UTK PAKAN TERNAK) COA ZT170621", "output": "29413000"}, {"text_input": "What is the hs code for CAPTOPRIL (BHN BAKU OBAT) COA 5103-17-103, 119", "output": "29339990"}, {"text_input": "What is the hs code for INOSITOL (BHN BAKU OBAT) COA 201704145", "output": "29061300"}, {"text_input": "What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 1706025", "output": "29349990"}, {"text_input": "What is the hs code for GLUCOSAMINE HCL (BHN BAKU OBAT) COA XH2017052701", "output": "29329990"}, {"text_input": "What is the hs code for LEVOFLOXACIN HEMIDRATE (FREE ALKALINE) B. BAKU OBAT COA C008-1704602", "output": "29349990"}, {"text_input": "What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20170612", "output": "29309090"}, {"text_input": "What is the hs code for METHYL SULFONYL METHANE USP (B.BAKU OBAT) COA 17060601", "output": "29309090"}, {"text_input": "What is the hs code for LINCOMYCIN HCL EP (BHN BAKU OBAT) COA 1706020", "output": "29419000"}, {"text_input": "What is the hs code for MEFENAMIC ACID COMPACTED (BHN BAKU OBAT) COA MFAC-1705235-A", "output": "29224900"}, {"text_input": "What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1706009,6201,6217", "output": "29224900"}, {"text_input": "What is the hs code for FIBRE DRUM ( DRUM KOSONG) PRICE AND AMOUNT ARE FOR CUSTOM ONLY", "output": "48192000"}, {"text_input": "What is the hs code for CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 20170622", "output": "38249999"}, {"text_input": "What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT662844", "output": "32151900"}, {"text_input": "What is the hs code for OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT662847", "output": "32151900"}, {"text_input": "What is the hs code for OPASPRAY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT662696", "output": "32151900"}, {"text_input": "What is the hs code for OPASPRAY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT662850", "output": "32151900"}, {"text_input": "What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT663264", "output": "32151900"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK)COA MS/2460/B15/LOREAL/100517,290617", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA MS/70120/B15/LOREAL/280617", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA MS/70120/YOIB155/LOREAL/130417", "output": "39123900"}, {"text_input": "What is the hs code for SENSIVA SC 50 CN 10KG KA (BHN BAKU KOSMETIK) COA.1331519", "output": "38249999"}, {"text_input": "What is the hs code for FDANDC BLUE #2/INDIGO CARMINE... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP776267AX5538", "output": "32151900"}, {"text_input": "What is the hs code for FDANDC RED #40/ALLURA RED AC AL(BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP776679 AX6248", "output": "32151900"}, {"text_input": "What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP758988", "output": "32151900"}, {"text_input": "What is the hs code for FDANDC YELLOW #6/SUNSET YELLOW... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP779705 AX7664", "output": "32151900"}, {"text_input": "What is the hs code for FDANDC YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP778726AX6793", "output": "32151900"}, {"text_input": "What is the hs code for DANDC YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP774846AX4855", "output": "32151900"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417008", "output": "29362500"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417008", "output": "29362500"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417008", "output": "29362500"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417008", "output": "29362500"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417008", "output": "29362500"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417008", "output": "29362500"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT17010005", "output": "29362900"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20160302", "output": "29362800"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11704027", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO)BHN BAKU SUPLEMEN, COA UT17030726", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609090", "output": "32041900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT16110352", "output": "29362800"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417008", "output": "29362500"}, {"text_input": "What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE01607055", "output": "29362100"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70502239", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70502238,39", "output": "29362200"}, {"text_input": "What is the hs code for CANTHAXANTHIN 10PCT CWS/S (BHN BAKU MAKANAN) COA UT16120004", "output": "32041900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11704027", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11704027", "output": "29362900"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609089", "output": "32041900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01606109", "output": "29362900"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT16060057", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)BHN BAKU MAKANAN, COA UT17020158", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17030726", "output": "29362100"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ61210273", "output": "29362300"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT16110352", "output": "29362800"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL01701009", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT17020158", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT16060057", "output": "32041900"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01609089", "output": "32041900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01606109", "output": "29362900"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL01701009", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT16120060", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT17010006", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417030", "output": "29362200"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417030", "output": "29362200"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417005,7008", "output": "29362500"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417030", "output": "29362200"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT GRANULATION,25KG BAL (B. BAKU SUPLEMEN) COA WB00117972,73", "output": "29362700"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT16110066", "output": "32041900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT16110352", "output": "29362800"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11704027", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT17030060", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SII6070010", "output": "29362900"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01704178", "output": "29362700"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01606109", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17010007,11", "output": "29362400"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ61210278,70110001", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN PREMIX 103093-A (BHN BAKU MAKANAN) COA XW91705250,51", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17010055", "output": "29362900"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70403105,3135", "output": "29362200"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT16120025", "output": "29362600"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT16120172", "output": "29362800"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1701006", "output": "29362300"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70502237,38,39", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70503129,35", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70403105,UQ70503129", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70403104,3105", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70403104", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70403104,3129,3134,3135", "output": "29362200"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17020001", "output": "29362100"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT16090336", "output": "29362400"}, {"text_input": "What is the hs code for SPI PX 507 (BHN BAKU MAKANAN) COA XW91705185", "output": "21069059"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 INF OIL, 4,5KG PJUG (BHN BAKU SUPLEMEN) COA.TS00008021", "output": "29362500"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP14817", "output": "28363000"}, {"text_input": "What is the hs code for SK BIOLAND ASTRIN AG BHN BAKU KOSMETIK COA BAG-030126", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND ARBUTIN BHN BAKU KOSMETIK COA ARP 481537", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND ARBUTIN BHN BAKU KOSMETIK COA ARP 1052296", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND PORTULACA EXTRACT BHN BAKU KOSMETIK COA NMP L 333057", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND NANOMOIST D BHN BAKU KOSMETIK COA NMSP D 021157", "output": "39139090"}, {"text_input": "What is the hs code for DPG FG (BHN BAKU KOSMETIK) COA A02691D", "output": "29094900"}, {"text_input": "What is the hs code for PG USP (BHN BAKU KOSMETIK) COA A0269IU", "output": "29053200"}, {"text_input": "What is the hs code for OATWELL (R) 22,18KG BAG (BHN BAKU MAKANAN) COA SOF164303,04", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN A PALM 1.0M + VIT D3 100000 (BHN BAKU MAKANAN) COA UT17030039", "output": "29362100"}, {"text_input": "What is the hs code for OPADRY AMB GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596303", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596294", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596293", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595902", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596306", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596307", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596291", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596305", "output": "38249999"}, {"text_input": "What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596340", "output": "32151900"}, {"text_input": "What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596340", "output": "32151900"}, {"text_input": "What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596340", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596302", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596316", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596315", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596311", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595148", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596309", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596301", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596162", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596308", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596317", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596290", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596304", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596310", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596298", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596299", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596292", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596300", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596296", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596297", "output": "38249999"}, {"text_input": "What is the hs code for PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PI0030616 (MC)", "output": "29349920"}, {"text_input": "What is the hs code for CORTISONE ACETATE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1600926226", "output": "29372900"}, {"text_input": "What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA Q100300", "output": "29419000"}, {"text_input": "What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA Q600200", "output": "29419000"}, {"text_input": "What is the hs code for CEFTAXIDIME BUFFERED (BHN BAKU OBAT) COA Q101100", "output": "29419000"}, {"text_input": "What is the hs code for CEFOTAXIME SODIUM STERILE USP (BHN BAKU OBAT) COA Q201200", "output": "29419000"}, {"text_input": "What is the hs code for CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 017.453", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE SKINB VITLIDO 1 MLD16 (BHN BAKU OBAT) COA 14898-2,15058-2", "output": "90189090"}, {"text_input": "What is the hs code for REST SKINB VITALLGHLIDO 1 MLD16 (BHN BAKU OBAT) COA 14994-2", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE LIDOCAINE 1 ML D16 (BHN BAKU OBAT) COA 15141-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML (BHN BAKU OBAT) COA 15085-2", "output": "90189090"}, {"text_input": "What is the hs code for O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 030117/004441", "output": "39139090"}, {"text_input": "What is the hs code for SELVOL 540 PVOH 25 KG BAG (BHN BAKU KOSMETIK) COA PO41683061", "output": "39139090"}, {"text_input": "What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-1040617", "output": "29334910"}, {"text_input": "What is the hs code for CAMELLIA OIL (BHN BAKU KOSMETIK), COA M290553", "output": "39139090"}, {"text_input": "What is the hs code for MARCOL 52 (BHN BAKU OBAT UTK PAKAN TERNAK) COA 17121HH702", "output": "27101989"}, {"text_input": "What is the hs code for MARCOL 52 (BHN BAKU PAKAN TERNAK) COA 17419HH701", "output": "27101989"}, {"text_input": "What is the hs code for CAPSULAC (R) 60 (BHN BAKU OBAT) COA. L100400517A545", "output": "17021100"}, {"text_input": "What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103872017A545", "output": "17021100"}, {"text_input": "What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104311417A552", "output": "17021100"}, {"text_input": "What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN0160117", "output": "29221990"}, {"text_input": "What is the hs code for CYANOCOBALAMINE VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1704840986", "output": "29362600"}, {"text_input": "What is the hs code for PYRAZINAMIDE USP (BHN BAKU OBAT) COA PZ 044 F 17,PZ 045 F 17...", "output": "29339990"}, {"text_input": "What is the hs code for PURIDROX TM COMPACTED, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B339892 S/D 4", "output": "29419000"}, {"text_input": "What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT17060023", "output": "29362500"}, {"text_input": "What is the hs code for ROVIMIX AD3 1000/200,20KG BAL (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT17020089,90", "output": "29362100"}, {"text_input": "What is the hs code for ROVIMIX E 50 ADSORBATE (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT17040101", "output": "29362800"}, {"text_input": "What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 190417", "output": "25070000"}, {"text_input": "What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED(BHN BAKU OBAT UTK PAKAN TERNAK) COA MTP02617", "output": "28363000"}, {"text_input": "What is the hs code for LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUMPLEMEN) COA 16229", "output": "38249999"}, {"text_input": "What is the hs code for TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA625326", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA625404", "output": "38249999"}, {"text_input": "What is the hs code for MONOCALCIUM PHOSPHATE (B.BAKU OBAT UTK PAKAN TERNAK)COA EVSHUE000313GBF,SAMPLE NO COMM VALUE", "output": "28352510"}, {"text_input": "What is the hs code for MONO-CALCIUM PHOSPHATE (B.BAKU OBAT UTK PAKAN TERNAK)COA BCL HUE000453GBF SAMPLE NO COMM VALUE", "output": "28352510"}, {"text_input": "What is the hs code for DICALCIUM PHOSPHATE (B.BAKU OBAT UTK PAKAN TERNAK) COA L-2/17", "output": "28352510"}, {"text_input": "What is the hs code for PERFECTAMYL AC (BHN BAKU KOSMETIK)COA H1242804", "output": "39139090"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-170) BHN BAKU KOSMETIK, COA MS/70120/B15/LOREAL/280617", "output": "39123900"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA MS/2460/B15/LOREAL/100517", "output": "39123900"}, {"text_input": "What is the hs code for ALDAVINE 5X (BHN BAKU KOSMETIK) COA 5478717", "output": "39139090"}, {"text_input": "What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829015301H", "output": "39139090"}, {"text_input": "What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830015179H", "output": "39139090"}, {"text_input": "What is the hs code for CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 7850104", "output": "39139090"}, {"text_input": "What is the hs code for LECIGEL (BHN BAKU KOSMETIK), COA 1710601", "output": "39139090"}, {"text_input": "What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK), COA 828014899G", "output": "39139090"}, {"text_input": "What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015046H", "output": "39139090"}, {"text_input": "What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015208H", "output": "39139090"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70306068,69", "output": "29362700"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ61213328", "output": "29362500"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ61213329", "output": "29362500"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ61213329", "output": "29362500"}, {"text_input": "What is the hs code for SPI PX 507 (BHN BAKU MAKANAN) COA XW91706127", "output": "21069059"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL01702621", "output": "29362400"}, {"text_input": "What is the hs code for PX 103070C (BHN BAKU SUPLEMEN) COA XW91706128", "output": "21069059"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL01704169", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91705406", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17030060,61", "output": "29362900"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70306070", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70306071", "output": "29362700"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01809090", "output": "32041900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01606109", "output": "29362900"}, {"text_input": "What is the hs code for DL A TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT16110352", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT16120007", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11705003", "output": "29362900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ61213328,29", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01605006", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT16120172", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17010001,5", "output": "29362900"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01704169", "output": "29362700"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UT61213329", "output": "29362500"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01703810", "output": "29362700"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01702621", "output": "29362400"}, {"text_input": "What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91706071", "output": "29362700"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ61210257", "output": "29362300"}, {"text_input": "What is the hs code for NIACINAMIDE PC,20KG BAL (BHN BAKU KOSMETIK) COA OP81705014", "output": "29362900"}, {"text_input": "What is the hs code for ARGAN OIL, 10KG PAIL PE(BHN BAKU KOSMETIK) COA AVD0014953", "output": "29362500"}, {"text_input": "What is the hs code for PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517050089", "output": "29189900"}, {"text_input": "What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P7O06UA000", "output": "29189900"}, {"text_input": "What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00453869,57400", "output": "29189900"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01701010", "output": "29362400"}, {"text_input": "What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01701801", "output": "29362400"}, {"text_input": "What is the hs code for BEAUPLEX VH (BHN BAKU KOSMETIK) COA UF17027002", "output": "29189900"}, {"text_input": "What is the hs code for BEAUPLEX VH (BHN BAKU KOSMETIK) COA UF17082001", "output": "29189900"}, {"text_input": "What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA MCS1605116", "output": "29189900"}, {"text_input": "What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P7O06UA000", "output": "29189900"}, {"text_input": "What is the hs code for PARSOL EHS ,25KG PC (BHN BAKU KOSMETIK) COA MCS1607004", "output": "29189900"}, {"text_input": "What is the hs code for BARCROFT TM 0325 DRIED AL HYD GEL USP(BHN BAKU OBAT) COA.101758002", "output": "28183000"}, {"text_input": "What is the hs code for OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP783834", "output": "32151900"}, {"text_input": "What is the hs code for OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP783834", "output": "32151900"}, {"text_input": "What is the hs code for STAY C 50, 20KG BOXNA (BHN BAKU KOSMETIK) COA UT17040035", "output": "29362700"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE PURIMOX COMPACTED (BHN BAKU OBAT) COA M529136,152,162,229", "output": "29411019"}, {"text_input": "What is the hs code for CILOSTAZOL USP (BHN BAKU OBAT) COA 6004CB2ARI", "output": "29337900"}, {"text_input": "What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.17100439", "output": "29391900"}, {"text_input": "What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA P-53", "output": "29397900"}, {"text_input": "What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA P-53", "output": "29397900"}, {"text_input": "What is the hs code for B.I.O.KEY SELENIUM VM (BHN BAKU OBAT UTK PAKAN TERNAK) COA 251016-809", "output": "23099090"}, {"text_input": "What is the hs code for BIOTOX (BHN BAKU OBAT UTK PAKAN TERNAK) COA 280617-530", "output": "23099090"}, {"text_input": "What is the hs code for E.C.O TRACE FE 20PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC12021702", "output": "29224900"}, {"text_input": "What is the hs code for E.C.O TRACE MN 20PCT (BHN BAKU UTK PAKAN TERNAK) COA BC14011702", "output": "29224900"}, {"text_input": "What is the hs code for E.C.O.TRACE ZN 25PCT(BHN BAKU OBAT UTK PAKAN TERNAK) COA BC21041602", "output": "29224900"}, {"text_input": "What is the hs code for LIQUIPHOS STRONG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 020517-356", "output": "23099090"}, {"text_input": "What is the hs code for LIQUIPHOS STRONG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 020517-356", "output": "23099090"}, {"text_input": "What is the hs code for MIRANOL ULTRA C32 200KG PLASCTIC DRUM (BHN BAKU KOSMETIK) COA BP706275R", "output": "34029099"}, {"text_input": "What is the hs code for METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/17060256", "output": "29332900"}, {"text_input": "What is the hs code for NYSTATIN (BHN BAKU OBAT) COA.C114033,35", "output": "29419000"}, {"text_input": "What is the hs code for EPA DHA 44 37 (BHN BAKU OBAT) COA EE4437-170710", "output": "29061300"}, {"text_input": "What is the hs code for PHENYTOIN SODIUM (BHN BAKU OBAT) COA.17100245", "output": "29332100"}, {"text_input": "What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 17100474", "output": "29221990"}, {"text_input": "What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 17100474", "output": "29221990"}, {"text_input": "What is the hs code for PANTOPRAZOLE SODIUM (STERILE) BHN BAKU OBAT, COA SI/PPZ/00200617", "output": "29333990"}, {"text_input": "What is the hs code for PANTOPRAZOLE SODIUM (STERILE) BHN BAKU OBAT, COA SI/PPZ/00200617", "output": "29333990"}, {"text_input": "What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND170405", "output": "29372200"}, {"text_input": "What is the hs code for AMPICILLIN TRIHYDRATE PURICILLIN COMPACTED (BHN BAKU OBAT) COA. M842102 S/D 4 , 6,7,8", "output": "29411020"}, {"text_input": "What is the hs code for GRAPE SEED ORGANIC OIL C00031 (BHN BAKU KOSMETIK)COA RPH170201-ENBIO-RQ", "output": "39139090"}, {"text_input": "What is the hs code for WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK)COA EG138-170601", "output": "39139090"}, {"text_input": "What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK)COA CFM170301-PGH", "output": "39139090"}, {"text_input": "What is the hs code for LICORICE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA GLG161102-BGBIO", "output": "39139090"}, {"text_input": "What is the hs code for LICORICE ORGANIC OILY EXTRACT (BHN BAKU KOSMETIK)COA GLGT161102-HBIO", "output": "39139090"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170302", "output": "39139090"}, {"text_input": "What is the hs code for GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK)COA EG209-160402", "output": "39139090"}, {"text_input": "What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIVD160903-BGBIO", "output": "39139090"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO170601", "output": "39139090"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO170601", "output": "39139090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG LP 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7142814", "output": "38210010"}, {"text_input": "What is the hs code for HU REGULATORY T CELL ...(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7158981", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6307974", "output": "38210010"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7041588", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7090816", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7082920", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6197586", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG LP80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7142814", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP AI VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6337887", "output": "38210010"}, {"text_input": "What is the hs code for CYCLETEST PLUS DNA REAGENT KIT RUO/GMP (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 7110822", "output": "38210010"}, {"text_input": "What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7055959", "output": "38210010"}, {"text_input": "What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6228624,7116960", "output": "38210010"}, {"text_input": "What is the hs code for PERM/WASH BUFFER 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6356786", "output": "38210010"}, {"text_input": "What is the hs code for HU CD36 FITC CB (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7125585", "output": "38210010"}, {"text_input": "What is the hs code for ANNEXIN V FITC APOP DTEC... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7026585", "output": "38210010"}, {"text_input": "What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7158901", "output": "38210010"}, {"text_input": "What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7068880", "output": "38210010"}, {"text_input": "What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7104797", "output": "38210010"}, {"text_input": "What is the hs code for CD117 PE 10402 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7094972", "output": "38210010"}, {"text_input": "What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6215857", "output": "38210010"}, {"text_input": "What is the hs code for CD14 PERCP MPHIP9 50 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7171991", "output": "38210010"}, {"text_input": "What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6354550,715984", "output": "38210010"}, {"text_input": "What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7123691", "output": "38210010"}, {"text_input": "What is the hs code for ANTI HLA DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7159533", "output": "38210010"}, {"text_input": "What is the hs code for CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7115545", "output": "38210010"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7041588", "output": "38210010"}, {"text_input": "What is the hs code for VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7088538", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7109549", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEMOGLOBIN SOL 2PCT 100ML 10EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7045874", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ANNAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7087889", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7102829", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL O ANTISERUM GRP A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6246962", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009560", "output": "38210010"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6309655", "output": "38210010"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA.RBA1811700", "output": "28363000"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM TYPE T 25KG (BHN BAKU OBAT) COA B0003", "output": "29331100"}, {"text_input": "What is the hs code for AC019KC PHYTOVITYL C 5KG BHN BAKU KOSMETIK COA 0013570", "output": "39139090"}, {"text_input": "What is the hs code for VITASMOOTH (R) 041 ( BHN BAKU OBAT) COA 121707720", "output": "28365010"}, {"text_input": "What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT663924", "output": "32151900"}, {"text_input": "What is the hs code for OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT663925", "output": "32151900"}, {"text_input": "What is the hs code for OPASPRAY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT663926", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY II TAN (BHN BAKU OBAT UTK PEWARNA TABLET) COA.DT663920", "output": "38249999"}, {"text_input": "What is the hs code for ASTABIO ARV-S (BHN BAKU OBAT) COA.1703061K", "output": "32030010"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17050011", "output": "32030010"}, {"text_input": "What is the hs code for GENIVIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010015", "output": "29329990"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT17010010", "output": "32041900"}, {"text_input": "What is the hs code for COATED ASCORBIC ACID TYPE EC (BHN BAKU SUPLEMEN) COA TL01703912", "output": "29362700"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB00217177", "output": "29362100"}, {"text_input": "What is the hs code for MEG-3 (TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT17060023", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17020051", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT17010033", "output": "29362100"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA. DOC1791772", "output": "28363000"}, {"text_input": "What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT17060023", "output": "29362500"}, {"text_input": "What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ70107003", "output": "29189900"}, {"text_input": "What is the hs code for SK BIOLAND ALWHITE-7 (B BAKU KOSMETIK)COA CLHW-011177", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-590147", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND BIO SODIUM HYALURONATE POWDER (MMW) (B. BAKU KOSMETIK) COA CHP1170621", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK)COA MUP-011017", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 060117", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (B. BAKU KOSMETIK) COA SFP-N-040857", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK)COA U170622", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD 021447", "output": "39139090"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702362711", "output": "29372900"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO170601", "output": "39139090"}, {"text_input": "What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-170301-GS", "output": "39139090"}, {"text_input": "What is the hs code for ROSE OILY EXTRACT (BHN BAKU KOSMETIK)COA ROS170604-H", "output": "39139090"}, {"text_input": "What is the hs code for LOTUS OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA NEN170605-H", "output": "39139090"}, {"text_input": "What is the hs code for OMEPRAZOLE PELLETS 8,5 PCT (BHN BAKU OBAT) COA OP0217C044,050", "output": "30034100"}, {"text_input": "What is the hs code for PROMETHAZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA HPHCPL029", "output": "29343000"}, {"text_input": "What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 55166P", "output": "39139090"}, {"text_input": "What is the hs code for SWT 7L (BHN BAKU KOSMETIK) COA 1632001", "output": "39139090"}, {"text_input": "What is the hs code for SWT 7L (BHN BAKU KOSMETIK) COA 1629501", "output": "39139090"}, {"text_input": "What is the hs code for SWT 7L (BHN BAKU KOSMETIK) COA 1632001", "output": "39139090"}, {"text_input": "What is the hs code for PRO LIPO NEO (BHN BAKU KOSMETIK) COA 1713601", "output": "39139090"}, {"text_input": "What is the hs code for HELIOGEL (BHN BAKU KOSMETIK), COA 1706301", "output": "39139090"}, {"text_input": "What is the hs code for SWT 7L (BHN BAKU KOSMETIK), COA 1629501", "output": "39139090"}, {"text_input": "What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 17071101", "output": "29309090"}, {"text_input": "What is the hs code for CEFEPIME HYDROCHLORIDE/L-ARGININE STERILE (B BAKU OBAT) COA YS17136", "output": "29419000"}, {"text_input": "What is the hs code for MEROPENEM TRIHYDRATE WITH SODIUM CARBONATE STERILE(B.BAKU OBAT) COA S0820170506", "output": "30032000"}, {"text_input": "What is the hs code for PERMETHRIN PHARMA GRADE BHN BAKU OBAT COA PE0022-S77", "output": "29163990"}, {"text_input": "What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA.121707505", "output": "29054300"}, {"text_input": "What is the hs code for SORBITOL SPECIAL TM MDF 85, SORBITOL( BHN BAKU OBAT) COA M7013", "output": "29054400"}, {"text_input": "What is the hs code for NYSTATIN MICRONIZED (BHN BAKU OBAT) COA.C130567", "output": "29419000"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM DAB /EP 7.0 (BHN BAKU OBAT) COA 1705676,5688,5690,5694", "output": "29331100"}, {"text_input": "What is the hs code for MARCOL 52 (BHN BAKU OBAT UTK PAKAN TERNAK) COA 17125HH701", "output": "27101989"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM DAB /EP 7.0 (BHN BAKU OBAT) COA 1705655,73,74,76", "output": "29331100"}, {"text_input": "What is the hs code for MANNITOL POWDER USP/EP (BHN BAKU OBAT) COA.301706304", "output": "29054300"}, {"text_input": "What is the hs code for EUXYL K 100 CN 10KG KA (BHN BAKU KOSMETIK) COA 1315385, 1317274", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 CN 10KG KA (BHN BAKU KOSMETIK) COA 1329272,1331434,1331435", "output": "38249999"}, {"text_input": "What is the hs code for SENSIDIN DO CN 10KG CA (BHN BAKU KOSMETIK) COA 1331493", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 120 CN 10KG KA (BHN BAKU KOSMETIK) COA 1326779,1327068", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 900 CN 10KG KA (BHN BAKU KOSMETIK) COA 1316900", "output": "38249999"}, {"text_input": "What is the hs code for GROTANOL 3025 CN 10KG KA (BHN BAKU KOSMETIK) COA 1330940", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 CN 10KG KA (BHN BAKU KOSMETIK) COA 1331519", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 120 100 ML FL (BHN BAKU KOSMETIK) COA 1324731, SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 220 100 ML FL (BHN BAKU KOSMETIK) COA 1321271, SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 340 100 ML FL (BHN BAKU KOSMETIK) COA 1315684 , SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 350 100 ML FL (BHN BAKU KOSMETIK) COA 1330239, SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 500 SAMPLES 100ML FL (BHN BAKU KOSMETIK) COA 1328484 SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 510 100ML FL (BHN BAKU KOSMETIK) COA 1310515,SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 700 SAMPLES 100 ML FL (BHN BAKU KOSMETIK) COA 1328475 SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 702 SAMPLES 100 ML FL (BHN BAKU KOSMETIK) COA 1317499,SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 703 100 ML FL (BHN BAKU KOSMETIK) COA 1324733 SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 SAMPLES 100 ML FL (BHN BAKU KOSMETIK) COA 1328644, SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA PA 20 SAMPLES 100 ML FL (BHN BAKU KOSMETIK) COA 1330238, SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA PA 30 (SAMPLE) 100 ML FL (BHN BAKU KOSMETIK) COA 1324734, SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for PARMETOL A 28 SAMPLE 250 ML FL (BHN BAKU KOSMETIK) COA 1324734 SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for PARMETOL DF 35 N SAMPLE 250 ML FL (BHN BAKU KOSMETIK) COA 1311473,SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for PARMETOL K 20 SAMPLE 250 ML FL (BHN BAKU KOSMETIK) COA 1299377,1304762", "output": "38249999"}, {"text_input": "What is the hs code for PARMETOL MBX SAMPLE 250 ML FL (BHN BAKU KOSMETIK) COA 1314577, SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for GROTAN BA 21 SAMPLE 250 ML FL (BHN BAKU KOSMETIK) COA 1314740,SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for DL PANTHENOL 50L (BHN BAKU KOSMETIK) COA TL01701604", "output": "29362400"}, {"text_input": "What is the hs code for STAY C 50, 5KG BALUS (BHN BAKU KOSMETIK) COA UT17030024", "output": "29362700"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70502258", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70502258, 59", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70503148", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70503148,50", "output": "29362200"}, {"text_input": "What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ70309012", "output": "29362300"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17010011", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU MAKANAN) COA UT16120007", "output": "29362900"}, {"text_input": "What is the hs code for PX 103070 C3 (BHN BAKU MAKANAN) COA XW91706238", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN PREMIX TYPE MM81 (105PCT) (BHN BAKU MAKANAN) COA XW91706241", "output": "21069059"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70402215,2258", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70402215", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70402215", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70503147, 3148", "output": "29362200"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417030", "output": "29362200"}, {"text_input": "What is the hs code for DL A TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT17020016", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT17030728", "output": "29362100"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417030", "output": "29362200"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1703030", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ70309012", "output": "29362300"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70503148", "output": "29362200"}, {"text_input": "What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 70307028", "output": "38210010"}, {"text_input": "What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7115789", "output": "38210010"}, {"text_input": "What is the hs code for SOLUTION DECONTAMINATION CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2497C319", "output": "38210010"}, {"text_input": "What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT 10X10MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7137564", "output": "38210010"}, {"text_input": "What is the hs code for ANTI MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7137605", "output": "38210010"}, {"text_input": "What is the hs code for CD79A PE HM47 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7097800,7165753", "output": "38210010"}, {"text_input": "What is the hs code for CD19 PE CY7 SJ25C1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7146771", "output": "38210010"}, {"text_input": "What is the hs code for CD34 PERCP CY5.5 8G12 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7153914", "output": "38210010"}, {"text_input": "What is the hs code for CD7 APC (M-T701) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7165727", "output": "38210010"}, {"text_input": "What is the hs code for HU CD3 HORIZON V450 UCHT1 120TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7130596", "output": "38210010"}, {"text_input": "What is the hs code for HU CD45 HORIZON V500 HI30 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7131686", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 7074616", "output": "38210010"}, {"text_input": "What is the hs code for SUPEROX C TM AF (BHN BAKU KOSMETIK) COA.70611", "output": "39139090"}, {"text_input": "What is the hs code for TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA.70517", "output": "39139090"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7117970", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7173845", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7173845", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7152953", "output": "38210010"}, {"text_input": "What is the hs code for PANEL VIEWER EUROPE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 111616", "output": "38210010"}, {"text_input": "What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6286718,...", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6130548", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7093593", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7033659", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 6300912,6333983", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053881", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6336799", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009836", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009856,7109998", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060848", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7081793,710288", "output": "38210010"}, {"text_input": "What is the hs code for PAIL BUFFERED PEPTONE WATER 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7075740", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7103621", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6293897,7095842", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009966", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009829", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7017943,70958", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6250612", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6278737", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7053868", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6291710", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6333840", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6257924", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7089764,...", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6342932,7009568", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7088842", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053894", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7081569", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6320612", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7005857", "output": "38210010"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7116509", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053868", "output": "38210010"}, {"text_input": "What is the hs code for SOLUTION BACTERIOSTAT CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3207C313", "output": "38210010"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7116509", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7088559", "output": "38210010"}, {"text_input": "What is the hs code for TUBE CRYSTAL E/ ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7053551", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE GRAM CRYSTAL VIOLET 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7115698", "output": "38210010"}, {"text_input": "What is the hs code for CULTURESWAB LIQUID STUART SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 170715999", "output": "38210010"}, {"text_input": "What is the hs code for SACHET GASPAK E2 CAMPY CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7089775", "output": "38210010"}, {"text_input": "What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7116552", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6333983", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7109945", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7116560", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7142578", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6250612", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053868", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R1 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 63206117", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7114758", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7075737", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060807", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060762", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7082650", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 8 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 5201890", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 5 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6278815", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BASE HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7135933", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7017983", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009709", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7066737", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER LACTOPHENOL COTTON BLUE STAIN (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 7031949", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7143744", "output": "38210010"}, {"text_input": "What is the hs code for GASPAK EZ LARGE INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7261717010", "output": "38210010"}, {"text_input": "What is the hs code for PAIL LAURYL TRYPTOSE BROTH 2KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7143979620", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7082926", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7135968", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7067719", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 4056159", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PHENOL RED LACTOSE BR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6235657", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PHENOL RED SUCROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009818", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7088775", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6327604", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6243907", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7114681", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121602", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BEEF EXTRACT POWDER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6298524", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7060948", "output": "38210010"}, {"text_input": "What is the hs code for OLIVE POLYPHENOLIC DRY EXTRACT (BHN BAKU SUPLEMEN) COA 17210", "output": "13021990"}, {"text_input": "What is the hs code for MARCOL 52 (BHN BAKU OBAT UTK PAKAN TERNAK) COA 17326HH701", "output": "27101989"}, {"text_input": "What is the hs code for MARCOL 52 (BHN BAKU OBAT UTK PAKAN TERNAK) COA 17125HH701", "output": "27101989"}, {"text_input": "What is the hs code for PIPERAZINE CITRATE BP/USP (BHN BAKU OBAT) COA PC-140/17, PC-142/17...", "output": "29335990"}, {"text_input": "What is the hs code for PROMOIS EFLS (BHN BAKU KOSMETIK) COA DDK", "output": "39139090"}, {"text_input": "What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA ELC", "output": "39139090"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA DEJ", "output": "39139090"}, {"text_input": "What is the hs code for PROMOIS WK-GB (BHN BAKU KOSMETIK) COA DCA", "output": "39139090"}, {"text_input": "What is the hs code for STAY C 50, 20KG BOXNA (BHN BAKU KOSMETIK) COA UT17040027", "output": "29362700"}, {"text_input": "What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334470,72,73", "output": "29419000"}, {"text_input": "What is the hs code for CLAIRJU (BHN BAKU KOSMETIK) COA 170509", "output": "13021990"}, {"text_input": "What is the hs code for CLAIR BLANCHE II( BHN BAKU KOSMETIK), COA 170585", "output": "38249999"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 170935", "output": "13021990"}, {"text_input": "What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 170467", "output": "13021990"}, {"text_input": "What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 171058", "output": "13021990"}, {"text_input": "What is the hs code for VC ASCORBIC ACID DC 97PCT, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG1704012,7001,7002", "output": "29362700"}, {"text_input": "What is the hs code for VC CALCIUM ASCORBIC DC, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPT1706025", "output": "29362700"}, {"text_input": "What is the hs code for VC ASCORBIC ACID SPECIAL ,25KG BAL (B.BAKU SUPLEMEN) COA HPB1704104 -SAMPLE NO COMM VALUE", "output": "29362700"}, {"text_input": "What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1707020,23 24,27 S/D 33 209,210", "output": "29224900"}, {"text_input": "What is the hs code for KETOPROFEN (BHN BAKU OBAT) COA.178918", "output": "29183000"}, {"text_input": "What is the hs code for MOXIFLOXACIN HYDROCHLORIDE(BHN BAKU OBAT) COA MP0060517", "output": "29334990"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702362711", "output": "29372900"}, {"text_input": "What is the hs code for OATWELL (R) 22,18KG BAG (BHN BAKU MAKANAN) COA SOF172004", "output": "21069059"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA. ROA186173", "output": "28363000"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA. ROA193173", "output": "28363000"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE BP MICRONISED (BHN BAKU OBAT) COA.17890717,17900717...", "output": "29351000"}, {"text_input": "What is the hs code for SILYBIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10236/M1", "output": "38249999"}, {"text_input": "What is the hs code for SILYMARIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10447/M1", "output": "38249999"}, {"text_input": "What is the hs code for VALERIAN D.H.E > 0.8PCT VAL.AC (BAHAN BAKU SUPPLEMEN) COA 10121/M1", "output": "13021990"}, {"text_input": "What is the hs code for VALERIAN D.H.E >0.8PCT VAL.AC (BAHAN BAKU SUPPLEMEN) COA 10318/M1", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10219/M1", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10399/M1", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10400/M1", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10429/M1", "output": "13021990"}, {"text_input": "What is the hs code for SERENOA REPENS PURIFIED EXT (BHN BAKU SUPLEMEN) COA 32455/B/1", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA/PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 31730/H1", "output": "38249999"}, {"text_input": "What is the hs code for CURCUMA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 32460/M1", "output": "38249999"}, {"text_input": "What is the hs code for SERENOA REPENS PURIFIED EXT (BHN BAKU SUPLEMEN) COA 32455/B/1", "output": "38249999"}, {"text_input": "What is the hs code for P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 32190/M1", "output": "13021990"}, {"text_input": "What is the hs code for ECHINACEA ANG DRY PURIF EX (BHN BAKU SUPLEMEN) COA 32226/M1", "output": "13021990"}, {"text_input": "What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5457516", "output": "39139090"}, {"text_input": "What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829015126H", "output": "39139090"}, {"text_input": "What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830015300H", "output": "39139090"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 7850104", "output": "39139090"}, {"text_input": "What is the hs code for LANABLUE (BHN BAKU KOSMETIK) COA 5470017", "output": "39139090"}, {"text_input": "What is the hs code for LANABLUE (BHN BAKU KOSMETIK) COA 5497917", "output": "39139090"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5462616", "output": "39139090"}, {"text_input": "What is the hs code for MELANOSTATINE 5 BG (50PPM) BHN BAKU KOSMETIK,COA 817044833G", "output": "39139090"}, {"text_input": "What is the hs code for MELANOSTATINE 5 PS (50PPM) BHN BAKU KOSMETIK, COA 817014258G", "output": "39139090"}, {"text_input": "What is the hs code for RIBOXYL (BHN BAKU KOSMETIK) COA P0516501", "output": "39139090"}, {"text_input": "What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025335H", "output": "39139090"}, {"text_input": "What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015208H", "output": "39139090"}, {"text_input": "What is the hs code for SWT 7L (BHN BAKU KOSMETIK) COA 1632001", "output": "39139090"}, {"text_input": "What is the hs code for SWT 7L (BHN BAKU KOSMETIK) COA 1629501", "output": "39139090"}, {"text_input": "What is the hs code for SWT 7L (BHN BAKU KOSMETIK) COA 1632001", "output": "39139090"}, {"text_input": "What is the hs code for PRO LIPO NEO (BHN BAKU KOSMETIK) COA 1713601", "output": "39139090"}, {"text_input": "What is the hs code for HELIOGEL (BHN BAKU KOSMETIK), COA 1706301", "output": "39139090"}, {"text_input": "What is the hs code for SWT 7L (BHN BAKU KOSMETIK), COA 1629501", "output": "39139090"}, {"text_input": "What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596853", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596851", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596568", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596862", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596863", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596859", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596867", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596857", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596856", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596852", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596861", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596851", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596864", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596858", "output": "38249999"}, {"text_input": "What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596855", "output": "32151900"}, {"text_input": "What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596855", "output": "32151900"}, {"text_input": "What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596855", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596854", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA OBAT) COA SH595414", "output": "38249999"}, {"text_input": "What is the hs code for TECA M (BHN BAKU KOSMETIK)COA 1730310040076", "output": "39139090"}, {"text_input": "What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NX0562M", "output": "29372200"}, {"text_input": "What is the hs code for TRIAMCINOLONE ACETONIDE MICRONIZED (BHN BAKU OBAT) COA NX1540M", "output": "29372200"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM DAB /EP 7.0 (BHN BAKU OBAT) COA 1704601,5694,5695,5721", "output": "29331100"}, {"text_input": "What is the hs code for MAPROTILINE HCL (BHN BAKU OBAT) COA 5000/05/17", "output": "29214900"}, {"text_input": "What is the hs code for IPRATROPIO BROMIDE (B. BAKU OBAT) COA 9800/03/16,SAMPLE NO COMMERCIAL VALUE", "output": "29397900"}, {"text_input": "What is the hs code for EUXYL K 900 CN 10 KG KA (BHN BAKU KOSMETIK) COA.1316900", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 CN 10KG KA (BHN BAKU KOSMETIK) COA 13331435,1331782", "output": "38249999"}, {"text_input": "What is the hs code for SORBOSIL BFG50 (BHN BAKU OBAT) COA RE17406", "output": "28112210"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK)COA MS/70120/B15/LOREAL/090717", "output": "39123900"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA MS/2460/B15/LOREAL/070717", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA MS/70120/YOIB155/LOREAL/130417", "output": "39123900"}, {"text_input": "What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 171118,170585", "output": "38249999"}, {"text_input": "What is the hs code for CLAIR BLANCHE II( BHN BAKU KOSMETIK), COA 171118", "output": "38249999"}, {"text_input": "What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA. WP785036", "output": "39059990"}, {"text_input": "What is the hs code for PVAP PHTHALAVIN NF CLEAR (BAHAN BAKU OBAT UTK PEWARNA TABLET) COA. WP785040", "output": "39059990"}, {"text_input": "What is the hs code for FD AND C BLUE 2/INDIGO VARMINE...(BHN BAKU OBAT UTK PEWARNA TABLET) COA. WP781750", "output": "32151900"}, {"text_input": "What is the hs code for KF-6017 (BHN BAKU KOSMETIK) , COA 707020", "output": "39139090"}, {"text_input": "What is the hs code for KSG-210 (BHN BAKU KOSMETIK) COA 707213", "output": "39139090"}, {"text_input": "What is the hs code for KSP-100 (BHN BAKU KOSMETIK) COA 707520", "output": "39139090"}, {"text_input": "What is the hs code for KSG-710 (BHN BAKU KOSMETIK) COA 706034", "output": "39139090"}, {"text_input": "What is the hs code for DWI BI (BHN BAKU MAKANAN) COA XW91707041,42", "output": "21069059"}, {"text_input": "What is the hs code for DWI BI (BHN BAKU MAKANAN) COA XW91706318,19", "output": "21069059"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ70110003,7", "output": "29362300"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT16120061", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT17010007", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO)BHN BAKU MAKANAN,COA UT17030729,730", "output": "29362100"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11706001", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17050062", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT16120061", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT17030728,729", "output": "29362100"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0217060071", "output": "29189900"}, {"text_input": "What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91707261", "output": "29189900"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01702023", "output": "29362400"}, {"text_input": "What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01701801,3,5", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708160125,26,27", "output": "29189900"}, {"text_input": "What is the hs code for PARSOL MCX ,25KG PC (BHN BAKU KOSMETIK) COA MCS1605116", "output": "29189900"}, {"text_input": "What is the hs code for BEAUPLEX VH (BHN BAKU KOSMETIK) COA UF17082001", "output": "29189900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11706001", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P8O07UA000", "output": "29189900"}, {"text_input": "What is the hs code for PARSOL 1789,20 KG BOX (BHN BAKU KOSMETIK) COA 0317050730", "output": "29189900"}, {"text_input": "What is the hs code for EPA DHA 44 37 (BHN BAKU OBAT) COA EE4437-170730", "output": "29061300"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170302", "output": "39139090"}, {"text_input": "What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK)COA EG209-160402", "output": "39139090"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS170401", "output": "39139090"}, {"text_input": "What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK)COA CFM170301-PGH", "output": "39139090"}, {"text_input": "What is the hs code for CARICILINE SB (BHN BAKU KOSMETIK) COA CAR170301-SB", "output": "39139090"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB250717", "output": "39123900"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B290717", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA MS/70120/YOIB15S/LOREAL/080517", "output": "39123900"}, {"text_input": "What is the hs code for KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0150517", "output": "29339990"}, {"text_input": "What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA.MLAH032071718", "output": "29341000"}, {"text_input": "What is the hs code for NYSTATIN (BHN BAKU OBAT) COA.C114052", "output": "29419000"}, {"text_input": "What is the hs code for ADRENALINE TARTRATE/EPINEPHRINE BITARTRATE (BHN BAKU OBAT) COA 060108", "output": "29379020"}, {"text_input": "What is the hs code for IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S471/17", "output": "38029090"}, {"text_input": "What is the hs code for BD FACS MELODY BRV 9 COLOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6616340009", "output": "38210010"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA.01/17GAAK", "output": "28399000"}, {"text_input": "What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 162392", "output": "28399000"}, {"text_input": "What is the hs code for LABRAFIL M 1944 CS (BAHAN BAKU OBAT) COA 163292", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE AM PELLETS (BAHAN BAKU OBAT) COA 16E3503", "output": "28399000"}, {"text_input": "What is the hs code for TRANSCUTOL P (BHN BAKU OBAT) COA 164103", "output": "28399000"}, {"text_input": "What is the hs code for TEFOSE 63 (BHN BAKU OBAT) COA 163177", "output": "28399000"}, {"text_input": "What is the hs code for DICLOFENAC SODIUM (BHN BAKU OBAT) COA 170244", "output": "29224900"}, {"text_input": "What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334471, 85", "output": "29419000"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP17073031 S/D 34", "output": "29211900"}, {"text_input": "What is the hs code for VC ASCORBIC ACID 325MESH ,20KGBOALPO (BAHAN BAKU SUPLEMEN) COA HPD1706033,38,45,52,58...", "output": "29362700"}, {"text_input": "What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1710577,1750943,1750933", "output": "29242930"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM DAB /EP 7.0 (BHN BAKU OBAT) COA 1704593,1705725,1705759", "output": "29331100"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121707945", "output": "28363000"}, {"text_input": "What is the hs code for KANAMYCIN ACID SULFATE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 170603", "output": "29419000"}, {"text_input": "What is the hs code for PHARMABURST (R) C1 (BHN BAKU OBAT) COA.121707780", "output": "21069099"}, {"text_input": "What is the hs code for PIRACETAM INJECTABLE GRADE BHN BAKU OBAT COA. PIR02417", "output": "29337900"}, {"text_input": "What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT664474", "output": "32151900"}, {"text_input": "What is the hs code for OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT664475", "output": "32151900"}, {"text_input": "What is the hs code for OPACODE BALCK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT664501", "output": "32151900"}, {"text_input": "What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT664476", "output": "32151900"}, {"text_input": "What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 1707EF8011", "output": "29224900"}, {"text_input": "What is the hs code for CARBOMER (BHN BAKU KOSMETIK) COA JCR170803189", "output": "39069099"}, {"text_input": "What is the hs code for LIFE'S DHA S35-O100, 5KG ALUF (B.BAKU UPLEMEN) COA VY00219709", "output": "29362500"}, {"text_input": "What is the hs code for LIFE'S DHA (TM) S35-O300,5KG ALUF (BHN BAKU SUPLEMEN) COA VY00224309", "output": "29362500"}, {"text_input": "What is the hs code for B CAROTENE 10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT17030001", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17070018", "output": "29362100"}, {"text_input": "What is the hs code for MEG-3 (TM)'10' N-3 FOOD POWDER S/SD (BHN BAKU MAKANAN) COA UT17060002", "output": "29362500"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB250717", "output": "39123900"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B290717", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA MS/70120/YOIB15S/LOREAL/080517", "output": "39123900"}, {"text_input": "What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA.70502", "output": "39139090"}, {"text_input": "What is the hs code for TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA.70618", "output": "39139090"}, {"text_input": "What is the hs code for TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA 70618", "output": "39139090"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597408", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595234", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597405", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU UTK PEWARNA TABLET) COA SH597409", "output": "38249999"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU OBAT), COA UJ728", "output": "29181400"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU OBAT) COA UJ728", "output": "29181400"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596568", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597164", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597179", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594654", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597166", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597178", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597165", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH594927", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597176", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595336", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597177", "output": "39061090"}, {"text_input": "What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597163", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597173", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597174", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597168", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597175", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597172", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597169", "output": "38249999"}, {"text_input": "What is the hs code for HU TH17/TREG PHENOTYPING KIT 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7191531", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7095852", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE GRAM DECOLORIZER 260ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7044940", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7125607", "output": "38210010"}, {"text_input": "What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7128730", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CASAMINO ACIDS 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7177959", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE OXGAIL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7074561", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7193724", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7193724", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6228993", "output": "38210010"}, {"text_input": "What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 170706516", "output": "38210010"}, {"text_input": "What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 17070651", "output": "38210010"}, {"text_input": "What is the hs code for CULTURESWAB LIQUID STUART SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 170715499", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7083743", "output": "38210010"}, {"text_input": "What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 170706516", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6287929", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7192642", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7177823", "output": "38210010"}, {"text_input": "What is the hs code for PERMEABILIZING SOLUTION 2 10X 500 TESTS(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6357992", "output": "38210010"}, {"text_input": "What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 170706516", "output": "38210010"}, {"text_input": "What is the hs code for NOZZLE ASSY 100 MN SQ CUVETTE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7093593", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7065886", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7069545", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PHYTONE PEPTONE 454G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6287929,7121602", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121569", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009836", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6278835", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7109998", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060848", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 71028840", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7018890", "output": "38210010"}, {"text_input": "What is the hs code for PAIL BUFFERED PEPTONE WATER 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7117969", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7152788.", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7095842", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7045539", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009829", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053868", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7047892", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7068859", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6257924,7151674", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6320611", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7102792,...", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MICROORGANISME) BATCH 7009568,7060731", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7075737", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRORGANISME) BATCH 7088842", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7193724", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6320612", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7053952", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7081822,7109946", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7060807", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7068731", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6250612", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7047892", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7109972", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7114771", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6320611", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7135844", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6294620", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7140695,7142532", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7114800", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121602", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE AGAR NOBLE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7109502", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7192642", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6201884", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7066737", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DULCITOL 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7163609", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EE BROTH MOSSAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7143744", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060948", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MARINA AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7135968", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PHENOL RED BROTH BASE... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6131892", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PHOSPHATE BUFFER PH 7.2...(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121877", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7153977", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6319507", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTONE GLUCOSE EXT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060509", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE YEAST NITROGEN BASE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6320617", "output": "38210010"}, {"text_input": "What is the hs code for CD4 APC SK3 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7030773", "output": "38210010"}, {"text_input": "What is the hs code for FASTIMMUNE IFN GAMMA/IL 4 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 6343739", "output": "38210010"}, {"text_input": "What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7159848", "output": "38210010"}, {"text_input": "What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7123691", "output": "38210010"}, {"text_input": "What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7061652", "output": "38210010"}, {"text_input": "What is the hs code for MS LG KPA COMP BEAD SET 6ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6239960", "output": "38210010"}, {"text_input": "What is the hs code for STAIN BUFFER FBS 500ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7031808", "output": "38210010"}, {"text_input": "What is the hs code for LYSING BUFFER 10X CONCENTRATE 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7061888", "output": "38210010"}, {"text_input": "What is the hs code for PROPIDIUM IODINE STAINING SOLUTION 2ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6308708", "output": "38210010"}, {"text_input": "What is the hs code for ANNEXIN V FITC APOP DTEC KIT I 100TST(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 7040932", "output": "38210010"}, {"text_input": "What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7100675", "output": "38210010"}, {"text_input": "What is the hs code for CD3 PERCP SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7177904", "output": "38210010"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7146880", "output": "38210010"}, {"text_input": "What is the hs code for CD3 APC H7 SK7 100 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7201546", "output": "38210010"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7041588", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7124644.", "output": "38210010"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7146880", "output": "38210010"}, {"text_input": "What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7129883", "output": "38210010"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7041588", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060674", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6197586", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7142814", "output": "38210010"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7041588", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060674,..", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7142814", "output": "38210010"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 5205615", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7109549", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE FOLIC ACID ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060658", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LACTOBACILI AGAR AOAC 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6327907", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7060799", "output": "38210010"}, {"text_input": "What is the hs code for TUBE PENASE CONCENTRATE 10X20MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7143749", "output": "38210010"}, {"text_input": "What is the hs code for BD FC BEADS PE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7115724", "output": "38210010"}, {"text_input": "What is the hs code for BD FC BEADS PE-CY7 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7115737", "output": "38210010"}, {"text_input": "What is the hs code for BD FC BEADS APC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7115725", "output": "38210010"}, {"text_input": "What is the hs code for BD FC BEADS APC-H7 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7115732", "output": "38210010"}, {"text_input": "What is the hs code for BD FC BEADS BV421 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7138589", "output": "38210010"}, {"text_input": "What is the hs code for BD FC BEADS BV510 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7138591", "output": "38210010"}, {"text_input": "What is the hs code for BD FC BEADS BB515 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7138592", "output": "38210010"}, {"text_input": "What is the hs code for NONIVAMIDE (SYNTHETIC CAPSAICIN)BHN BAKU KOSMETIK, COA.20170410", "output": "29242990"}, {"text_input": "What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA 20170805", "output": "17023010"}, {"text_input": "What is the hs code for PARSOL HMS, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA MCS1604107", "output": "29189900"}, {"text_input": "What is the hs code for PREDNISOLONE BP2010/USP38 (BHN BAKU OBAT) COA.NPL170708", "output": "29372100"}, {"text_input": "What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND170404", "output": "29372200"}, {"text_input": "What is the hs code for RIBOFLAVIN 5 PHOSPHATE UNIVERSAL (BHN BAKU SUPLEMEN) COA UEB1703030", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN 5 PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1703032", "output": "29362300"}, {"text_input": "What is the hs code for D A TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20160302", "output": "29362800"}, {"text_input": "What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW91707202", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT17030731", "output": "29362100"}, {"text_input": "What is the hs code for CANTHAXANTHIN 10PCT CWS/S (BHN BAKU MAKANAN) COA UT17040003", "output": "32041900"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT17020001, 20002", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT17020002", "output": "29362800"}, {"text_input": "What is the hs code for DL A TOCOPHEROL (BHN BAKU MAKANAN) COA UT17020019", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT17020159", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT16120061", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT16110067", "output": "32041900"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01702023", "output": "29362400"}, {"text_input": "What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ70309012", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN) COA UT17020159", "output": "29362100"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11706001", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ70110009", "output": "29362300"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01606109", "output": "29362900"}, {"text_input": "What is the hs code for B CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT16110067", "output": "32041900"}, {"text_input": "What is the hs code for DL A TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT17010012", "output": "29362800"}, {"text_input": "What is the hs code for D PANTHENOL (BHN BAKU MAKANAN) COA TL01702023", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM(BHN BAKU MAKANAN) COA UT17010007", "output": "29362900"}, {"text_input": "What is the hs code for DL A TOCOPHEROL (BHN BAKU MAKANAN) COA UT17020019", "output": "29362800"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ70110009", "output": "29362300"}, {"text_input": "What is the hs code for B CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01610103", "output": "32041900"}, {"text_input": "What is the hs code for DRY VITAMIN K1 50CT SD (BHN BAKU SUPLEMEN) COA UT16120007", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ70309012", "output": "29362300"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01606109", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17010011", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17010005", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17010005", "output": "29362900"}, {"text_input": "What is the hs code for ASCORBIC ACID FINE POWDER (BHN BAKU SUPLEMEN) COA TL01611698", "output": "29362700"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT17010007", "output": "29362900"}, {"text_input": "What is the hs code for CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB0116017", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT16120034", "output": "29362600"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170803", "output": "39139090"}, {"text_input": "What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK)COA CFM170702-PGH", "output": "39139090"}, {"text_input": "What is the hs code for LINEN OILY XTRACT GT10 (BHN BAKU KOSMETIK)COA LIU170603-H", "output": "39139090"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170803", "output": "39139090"}, {"text_input": "What is the hs code for GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK) COA EG209-160402", "output": "39139090"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT SD, 15KG BOXALU (BHN BAKU SUPLEMEN) COA WB02170048", "output": "29362800"}, {"text_input": "What is the hs code for SODIUM BICARBONATE IPH (BHN BAKU SUPLEMEN) COA. DOC1981721", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA. RBA2141700", "output": "28363000"}, {"text_input": "What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-600347", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-010747", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK)COA MUP-011017", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-222837", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 060117", "output": "39139090"}, {"text_input": "What is the hs code for THE MATCHA 1 P001062 (BHN BAKU KOSMETIK) COA 0000006986", "output": "33029000"}, {"text_input": "What is the hs code for SORBOSIL BFG50 (BHN BAKU OBAT) COA RE17407", "output": "28112210"}, {"text_input": "What is the hs code for EUXYL PE 9010 CN 10 KG KA (BHN BAKU KOSMETIK) COA.1331610", "output": "38249999"}, {"text_input": "What is the hs code for CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 017.534, 017.453", "output": "90189090"}, {"text_input": "What is the hs code for CANNULA 25G PIX'L 0,5X40 (BHN BAKU OBAT) COA 017.507", "output": "90189090"}, {"text_input": "What is the hs code for REST SKINB VITLIDO 1 MLD16 (BHN BAKU OBAT) COA 15058-2", "output": "90189090"}, {"text_input": "What is the hs code for REST SKINB VITALLGHLIDO 1 ML D16 (BHN BAKU OBAT) COA 15126-2, 15430-2", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML (BHN BAKU OBAT) COA 15264-2,15328-1", "output": "90189090"}, {"text_input": "What is the hs code for CEFOTAXIME SODIUM STERILE (BHN BAKU OBAT) COA Q900400", "output": "29419000"}, {"text_input": "What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA Q701900", "output": "29419000"}, {"text_input": "What is the hs code for CEFTAZIDIME BUFFERED (BHN BAKU OBAT) COA Q102500", "output": "29419000"}, {"text_input": "What is the hs code for MEROPENEM WITH SODIUM CARBONATE (BHN BAKU OBAT) COA Q900100", "output": "30039000"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597206", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597433", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597448", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597449", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH596568", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597446", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597438", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597450", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597437", "output": "38249999"}, {"text_input": "What is the hs code for PARSOL HMS, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA MCS1604107", "output": "29189900"}, {"text_input": "What is the hs code for DL PANTHENOL 50L (BHN BAKU KOSMETIK) COA TL01705622", "output": "29362400"}, {"text_input": "What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01703804", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT17020008", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT17070018", "output": "29362100"}, {"text_input": "What is the hs code for KOLLICOAT IR WHITE 2 25KG (BHN BAKU OBAT UTK PEWARNA TABLET) COA 82770816K0", "output": "32151900"}, {"text_input": "What is the hs code for CATECHINS (TEA EXTRACT) BHN BAKU KOSMETIK, COA 706292", "output": "39139090"}, {"text_input": "What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BH07306", "output": "29349990"}, {"text_input": "What is the hs code for PURIDROX TM COMPACTED, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B339903,07,10", "output": "29419000"}, {"text_input": "What is the hs code for ESOMEPRAZOLE SODIUM STERILE (34PERCENT TO 38PERCENT W/W)COA AESS17001", "output": "29333990"}, {"text_input": "What is the hs code for PANTOPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W)BHN BAKU OBAT, COA APSS17002", "output": "29333990"}, {"text_input": "What is the hs code for CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 201707T-CC", "output": "38249999"}, {"text_input": "What is the hs code for L-GLUTAMIC ACID ( BHN BAKU OBAT), COA 1000033453/170706", "output": "29224210"}, {"text_input": "What is the hs code for VITAMIN PREMIX 103047-D (BHN BAKU MAKANAN) COA XW91707335", "output": "21069059"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT17010026", "output": "29362400"}, {"text_input": "What is the hs code for MEG-3 DHA H POWDER, 0,1KG POS (B.BAKU UPLEMEN) COA XI00004109 SAMPLE NO COMM VALUE", "output": "29362500"}, {"text_input": "What is the hs code for MEG-3 30PCT K POWDER, 0,1KG POS (B.BAKU SUPLEMEN) COA XI00003797 SAMPLE NO COMM VALUE", "output": "29362500"}, {"text_input": "What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 17050203", "output": "38029090"}, {"text_input": "What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA", "output": "39139090"}, {"text_input": "What is the hs code for TRISODIUM CITRATE DIHYDRATE FINE GRANULAR (BHN BAKU MAKANAN), COA UJ730", "output": "29181400"}, {"text_input": "What is the hs code for TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA 16636", "output": "29225090"}, {"text_input": "What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01706008", "output": "29362700"}, {"text_input": "What is the hs code for STAY C 50, 5KG BAL US (BHN BAKU KOSMETIK) COA UT17050062", "output": "29362700"}, {"text_input": "What is the hs code for FLUOROMETHOLONE MICRONISED USP BP JP (BHN BAKU OBAT) COA 1701261241", "output": "29372200"}, {"text_input": "What is the hs code for TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA.70618", "output": "39139090"}, {"text_input": "What is the hs code for TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA 70618", "output": "39139090"}, {"text_input": "What is the hs code for STAY C 50,20KG BOXNA (BHN BAKU KOSMETIK) COA UT17040039", "output": "29362700"}, {"text_input": "What is the hs code for STAY C 50, 5KG BALUS (BHN BAKU KOSMETIK) COA UT17040045,49,50", "output": "29362700"}, {"text_input": "What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01706017", "output": "29362700"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0217070082", "output": "29189900"}, {"text_input": "What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0317050735,738 ,739,748...", "output": "29189900"}, {"text_input": "What is the hs code for MILKUAT ZN FET (25PCT CARRIER) BHN BAKU MAKANAN, COA XW91707208", "output": "21069059"}, {"text_input": "What is the hs code for D PANTHENOL (BHN BAKU SUPLEMEN) COA TL01703026", "output": "29362400"}, {"text_input": "What is the hs code for B CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01610103", "output": "32041900"}, {"text_input": "What is the hs code for D BIOTIN (BHN BAKU SUPLEMEN) COA UE01704001", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ70110024,26", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI16070010", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI16070010", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI16070010", "output": "29362900"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70502281, 2284", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70502281", "output": "29362200"}, {"text_input": "What is the hs code for VP ENG01 (BHN BAKU MAKANAN) COA XW91707209", "output": "21069059"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70306071", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT16120034", "output": "29362600"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70502281", "output": "29362200"}, {"text_input": "What is the hs code for PX TRS2 WITHOUT K1 (BHN BAKU MAKANAN) COA XW91707336", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU(TOCO) B. BAKU MAKANAN, COA UT17030160", "output": "29362100"}, {"text_input": "What is the hs code for PREMIX KNPX CH 00 16 (BHN BAKU MAKANAN) COA XW91707253", "output": "21069059"}, {"text_input": "What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91707349", "output": "21069059"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70502281", "output": "29362200"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70306071,72,75", "output": "29362700"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70502277,81", "output": "29362200"}, {"text_input": "What is the hs code for CALCIUM D PANTOTHENATE (BHN BAKU MAKANAN) COA UT1702632", "output": "29362400"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70503143", "output": "29362200"}, {"text_input": "What is the hs code for CALCIUM D PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01702624,2632", "output": "29362400"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01705464", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70406084,6090", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17050063", "output": "29362900"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70306075,84", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL01704205", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT17050063", "output": "29362900"}, {"text_input": "What is the hs code for CALCIUM D PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01702624", "output": "29362400"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE(BHN BAKU SUPLEMEN) COA UQ70113033", "output": "29362500"}, {"text_input": "What is the hs code for CALCIUM D PANTOTHENATE (BHN BAKU MAKANAN) COA TL01702624,2632", "output": "29362400"}, {"text_input": "What is the hs code for RIBOFLAVIN 5 PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1703032,4051", "output": "29362300"}, {"text_input": "What is the hs code for ALDAVINE 5X (BHN BAKU KOSMETIK) COA 5493217", "output": "39139090"}, {"text_input": "What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830015347H", "output": "39139090"}, {"text_input": "What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769015443H", "output": "39139090"}, {"text_input": "What is the hs code for EXO H (BHN BAKU KOSMETIK) COA 715025400H", "output": "39139090"}, {"text_input": "What is the hs code for LECIGEL (BHN BAKU KOSMETIK), COA 1710602", "output": "39139090"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK), COA 5462616", "output": "39139090"}, {"text_input": "What is the hs code for MELITANE GL (200PPM) (BHN BAKU KOSMETIK) COA 818065302H", "output": "39139090"}, {"text_input": "What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784025335H", "output": "39139090"}, {"text_input": "What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025335H", "output": "39139090"}, {"text_input": "What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK), COA 828015208H", "output": "39139090"}, {"text_input": "What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 110717", "output": "25070000"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01704302,4311", "output": "29362700"}, {"text_input": "What is the hs code for POMEGRANATE OF ACORES HYDROGLYCERINED (BHN BAKU KOSMETIK)COA PUGA170602-GL", "output": "39139090"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO170601", "output": "39139090"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170803", "output": "39139090"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO170601", "output": "39139090"}, {"text_input": "What is the hs code for GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 17277", "output": "39139090"}, {"text_input": "What is the hs code for PROMOIS WK-GB (BHN BAKU KOSMETIK) COA DFB", "output": "39139090"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA DHN", "output": "39139090"}, {"text_input": "What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA DDD", "output": "39139090"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA DDB", "output": "39139090"}, {"text_input": "What is the hs code for SHIN ETSU SILICONE X 21 5616 (B. BAKU KOSMETIK) COA 705013 SAMPLE NO COMMERCIAL VALUE", "output": "39139090"}, {"text_input": "What is the hs code for KF-54 (BHN BAKU KOSMETIK) , COA 705592/ 706596 SAMPLE NO COMMERCIAL VALUE", "output": "39139090"}, {"text_input": "What is the hs code for KF-6028 (BHN BAKU KOSMETIK) COA 706167 SAMPLE NO COMMERCIAL VALUE", "output": "39139090"}, {"text_input": "What is the hs code for KF-6048 (BHN BAKU KOSMETIK) COA 706017 SAMPLE NO COMMERCIAL VALUE", "output": "39139090"}, {"text_input": "What is the hs code for KF-6050 (BHN BAKU KOSMETIK) COA 707019 SAMPLE NO COMMERCIAL VALUE", "output": "39139090"}, {"text_input": "What is the hs code for KF-56A (BHN BAKU KOSMETIK) COA 705219 SAMPLE NO COMMERCIAL VALUE", "output": "39139090"}, {"text_input": "What is the hs code for KSG-210 (BHN BAKU KOSMETIK) COA 708234,SAMPLE NO COMMERCIAL VALUE", "output": "39139090"}, {"text_input": "What is the hs code for TMF-1.5 (BHN BAKU KOSMETIK) COA 704028,SAMPLE NO COMMERCIAL VALUE", "output": "39139090"}, {"text_input": "What is the hs code for KSP-441 (BHN BAKU KOSMETIK) COA 704018 SAMPLE NO COMMERCIAL VALUE", "output": "39139090"}, {"text_input": "What is the hs code for X-21-5250 (BHN BAKU KOSMETIK) COA 706030 SAMPLE NO COMMERCIAL VALUE", "output": "39139090"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA TP17073513, 3514", "output": "29211900"}, {"text_input": "What is the hs code for SANOCARE PUR JAR 800G, 6 JARS/CASE(BHN BAKU OBAT UTK PAKAN TERNAK, COA 2117334651", "output": "23099090"}, {"text_input": "What is the hs code for SEP-ART SEPARATOR SET V2 - SAMPLE NO COMMERCIAL VALUE", "output": "84212119"}, {"text_input": "What is the hs code for KF-6038 (BHN BAKU KOSMETIK) , COA 707181 SAMPLE NO COMMERCIAL VALUE", "output": "39139090"}, {"text_input": "What is the hs code for KP-549 (BHN BAKU KOSMETIK) COA 702280 SAMPLE NO COMMERCIAL VALUE", "output": "39139090"}, {"text_input": "What is the hs code for KF-6011 (BHN BAKU KOSMETIK) COA 708326 SAMPLE NO COMMERCIAL VALUE", "output": "39139090"}, {"text_input": "What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 70628, 70706", "output": "39139090"}, {"text_input": "What is the hs code for FERROUS FUMARATE USP/EP (BHN BAKU OBAT) COA.2017/203", "output": "29171900"}, {"text_input": "What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1707111 S/D 7118,8002,8003", "output": "29224900"}, {"text_input": "What is the hs code for SAKURA EXTRACT B( BHN BAKU KOSMETIK), COA 171058", "output": "13021990"}, {"text_input": "What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 170569", "output": "29329990"}, {"text_input": "What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 171118", "output": "38249999"}, {"text_input": "What is the hs code for CLAIRJU (BHN BAKU KOSMETIK) COA 171204", "output": "13021990"}, {"text_input": "What is the hs code for EMPILAN CIS (BAHAN BAKU KOSMETIK) COA.BLW0012903", "output": "34021390"}, {"text_input": "What is the hs code for REFINED SUNFLOWER OIL (BHN BAKU KOSMETIK) COA KKLJ 11/17", "output": "39139090"}, {"text_input": "What is the hs code for POMEGRANATE OF ACORES HYDROGLYCERINED (BHN BAKU KOSMETIK)COA PUGA170602-GL", "output": "39139090"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO170601", "output": "39139090"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170803", "output": "39139090"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO170601", "output": "39139090"}, {"text_input": "What is the hs code for INSTANT BLACK TEA POWDER TH B430 (BHN BAKU MAKANAN) COA 2017080701", "output": "21012020"}, {"text_input": "What is the hs code for VC ASCORBIC ACID REGULAR, 25KG BAL (BHN BAKU SUPLEMEN) COA HPB1708105, SAMPLE NO COMM VALUE", "output": "29362700"}, {"text_input": "What is the hs code for VC ASCORBIC ACID REGULAR, 25KG BAL (BHN BAKU SUPLEMEN) COA HPB1708119,SAMPLE NO COMM VALUE", "output": "29362700"}, {"text_input": "What is the hs code for VC ASCORBIC ACID REGULAR, 25KG BAL (BHN BAKU SUPLEMEN) COA HPD1708069 SAMPLE NO COMM VALUE", "output": "29362700"}, {"text_input": "What is the hs code for VC SODIUM ASCORBATE REGULAR, 25KG BAL(BHN BAKU SUPLEMEN) COA HPN1708030, SAMPLE NO COMM VALUE", "output": "29362700"}, {"text_input": "What is the hs code for VC SODIUM ASCORBATE REGULAR, 25KG BAL (BHN BAKU SUPLEMEN) COA HPN1708075, SAMPLE NO COMM VALUE", "output": "29362700"}, {"text_input": "What is the hs code for VC SODIUM ASCORBATE REGULAR, 25KG BAL (BHN BAKU SUPLEMEN) COA HPN1708076, SAMPLE NO COMM VALUE", "output": "29362700"}, {"text_input": "What is the hs code for ONDASENTRON HCL USP (BHN BAKU OBAT) COA 17OS001", "output": "29332900"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101853017A542", "output": "17021100"}, {"text_input": "What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103872417A545", "output": "17021100"}, {"text_input": "What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104313117A552", "output": "17021100"}, {"text_input": "What is the hs code for LIPOID S67F (BHN BAKU OBAT) COA.576200-2160029/025-030 (6)", "output": "29232010"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT SD,15KG BOXALU (BHN BAKU SUPLEMEN) COA WB02170048", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00117637", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT SD,15KGBOXALU (BHN BAKU SUPLEMEN) COA WB02170048", "output": "29362800"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT,CWS/S TG (BHN BAKU SUPLEMEN) COA UT17050011", "output": "32030010"}, {"text_input": "What is the hs code for GENIVIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010014,15", "output": "29329990"}, {"text_input": "What is the hs code for COATED ASCORBIC ACID TYPE EC (BHN BAKU SUPLEMEN) COA TL01705484", "output": "29362700"}, {"text_input": "What is the hs code for DRY VITAMIN E 75HP (BHN BAKU SUPLEMEN) COA WB00517168", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E ACETATE 950NS (BHN BAKU SUPLEMEN) COA WB00117637", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT SD, 15KGBOXALU (BHN BAKU SUPLEMEN) COA WB02170048", "output": "29362800"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17050011", "output": "32030010"}, {"text_input": "What is the hs code for GENIVIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010015", "output": "29329990"}, {"text_input": "What is the hs code for COATED ASCORBIC ACID TYPE EC (BHN BAKU SUPLEMEN) COA TL00705484", "output": "29362700"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT ,15KGBOXALU (BHN BAKU SUPLEMEN) COA WB02170048", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN A AND D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT17070034", "output": "29362100"}, {"text_input": "What is the hs code for RESTYLANE VOLYME 1 ML (BHN BAKU OBAT) COA 15202-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE REFYNE 1 ML (BHN BAKU OBAT) COA 15100-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE DEFYNE 1 ML (BHN BAKU OBAT) COA 15022-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE KYSSE 1 ML (BHN BAKU OBAT) COA 15001-1", "output": "90189090"}, {"text_input": "What is the hs code for CANNULA 23G PIXL 0,6X50 (BHN BAKU OBAT) COA 017.534", "output": "90189090"}, {"text_input": "What is the hs code for CANNULA 25G PIXL 0,5X40 (BHN BAKU OBAT) COA 017.507", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE SKINB VITLIDO 1MLD16 (BHN BAKU OBAT) COA 15058-2", "output": "90189090"}, {"text_input": "What is the hs code for REST SKINB VITALLGHLIDO 1MLD16 (BHN BAKU OBAT) COA 15430-2", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE LYFT LIDOCAINE 1 ML (BHN BAKU OBAT) COA 15264-2", "output": "90189090"}, {"text_input": "What is the hs code for BIO SODIUM HYALURONATE POWDER (MMW)BHN BAKU KOSMETIK, COA CHP1170818", "output": "39139090"}, {"text_input": "What is the hs code for GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-020497", "output": "39139090"}, {"text_input": "What is the hs code for ARBUTIN (BHN BAKU KOSMETIK) COA ARP-1071887", "output": "39139090"}, {"text_input": "What is the hs code for SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 071817", "output": "39139090"}, {"text_input": "What is the hs code for OLIGO HA (BHN BAKU KOSMETIK) COA OHA-042457", "output": "39139090"}, {"text_input": "What is the hs code for LICORICE EXTRACT (BHN BAKU KOSMETIK) COA GGB-011017", "output": "39139090"}, {"text_input": "What is the hs code for WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-031477", "output": "39139090"}, {"text_input": "What is the hs code for SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-040857", "output": "39139090"}, {"text_input": "What is the hs code for MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011017", "output": "39139090"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE USP (BHN BAKU OBAT) COA M110351", "output": "29339990"}, {"text_input": "What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NX1738M", "output": "29372200"}, {"text_input": "What is the hs code for SURELEASE ETHYLCELLULOSE ( BHN BAKU OBAT UTK PEWARNA TABLET) COA. IN535414", "output": "32151900"}, {"text_input": "What is the hs code for SUPEROX TM AF (BHN BAKU KOSMETIK) COA.70611, 70807", "output": "39139090"}, {"text_input": "What is the hs code for TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA 70618", "output": "39139090"}, {"text_input": "What is the hs code for FD AND C RED #40/ALLURA RED AC AL... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP776692", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP762354", "output": "32151900"}, {"text_input": "What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP769009.1", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP779704...", "output": "32151900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180GCR003", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E4M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180H5P032", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180F3L001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180GCR003", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011H14L01", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011GB7L02", "output": "39123900"}, {"text_input": "What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN0160117", "output": "29221990"}, {"text_input": "What is the hs code for CINNARIZINE (BHN BAKU OBAT) COA 011052017CIN", "output": "29335990"}, {"text_input": "What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA. 8MT170642", "output": "30032000"}, {"text_input": "What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 170474", "output": "38249999"}, {"text_input": "What is the hs code for CLAIR BLANCHE II( BHN BAKU KOSMETIK), COA 171381", "output": "38249999"}, {"text_input": "What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01707019", "output": "29362700"}, {"text_input": "What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00481106", "output": "29189900"}, {"text_input": "What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01707019", "output": "29362700"}, {"text_input": "What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01707019", "output": "29362700"}, {"text_input": "What is the hs code for D PANTHENOL (BHN BAKU KOSMETIK) COA TL01704036,41", "output": "29362400"}, {"text_input": "What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01703805", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708160127,128,129", "output": "29189900"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0517070149", "output": "29189900"}, {"text_input": "What is the hs code for BEAUPLEX VH (BHN BAKU KOSMETIK) COA UF17082001", "output": "29189900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11706005", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT17030160", "output": "29362100"}, {"text_input": "What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P7O07UA000", "output": "29189900"}, {"text_input": "What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P7O07UA000", "output": "29189900"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA TP17073511,3512", "output": "29211900"}, {"text_input": "What is the hs code for AMLODIPINE BESILATE BP/EP (BHN BAKU OBAT), COA. AMB/086/08/17", "output": "29333990"}, {"text_input": "What is the hs code for KETOROLAC TROMETAMOL /TROMETHAMINE (BHN BAKU OBAT) COA.17100413", "output": "29339990"}, {"text_input": "What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA.201700286", "output": "28183000"}, {"text_input": "What is the hs code for MAGNESIUM HYDROXIDE FLOGEL USP (BHN BAKU OBAT) COA 201700156", "output": "28161000"}, {"text_input": "What is the hs code for DRY VITAMIN E 75PCT HP (BHN BAKU SUPLEMEN) COA WB0517168", "output": "29362800"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP24617", "output": "28363000"}, {"text_input": "What is the hs code for CORTISONE ACETATE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1600926226", "output": "29372900"}, {"text_input": "What is the hs code for GLICLAZIDE (BHN BAKU OBAT) COA 1740000389", "output": "29351000"}, {"text_input": "What is the hs code for LEVOFLOXACIN HEMIHYDRATE USP (BHN BAKU OBAT) COA LF17080041", "output": "29349990"}, {"text_input": "What is the hs code for MATCHA POWDER 101-O (BHN BAKU KOSMETIK) , COA 707063 SAMPLE NO COMMERCIAL VALUE", "output": "39139090"}, {"text_input": "What is the hs code for VC ASCORBIC ACID DC, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG1705001", "output": "29362700"}, {"text_input": "What is the hs code for VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPB1707053,8145,8069", "output": "29362700"}, {"text_input": "What is the hs code for VC SODIUM ASCORBATE REGULAR ,25KG BAL (B.BAKU SUPLEMEN) COA HPN1708148,8152", "output": "29362700"}, {"text_input": "What is the hs code for 1000/1400 SUGLETS 1000/1400 ( BHN BAKU OBAT UTK PEWARNA TABLET) COA. ST507221", "output": "32151900"}, {"text_input": "What is the hs code for REDIVIVO (R) LYCOPENE 10PCT FS, 5KG ALU (BHN BAKU SUPLEMEN) COA UE01702004", "output": "29189900"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 20PCT SAF,1KG BOT PE (BHN BAKU SUPLEMEN) COA UE01704014", "output": "32030010"}, {"text_input": "What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT17080035", "output": "29362500"}, {"text_input": "What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00117637", "output": "29362800"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17050011", "output": "32030010"}, {"text_input": "What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17070052", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A AND D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT17070034", "output": "29362100"}, {"text_input": "What is the hs code for LANSOPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA LP0217C011", "output": "29333990"}, {"text_input": "What is the hs code for METHYL SULFONYL METHANE USP (BHN BAKU OBAT) COA 20170725", "output": "29309090"}, {"text_input": "What is the hs code for KANAMYCIN SULFATE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 170603", "output": "29419000"}, {"text_input": "What is the hs code for NICLOSAMIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 20170810", "output": "29242990"}, {"text_input": "What is the hs code for LINCOMYCIN HCL EP (BHN BAKU OBAT) COA 1705005", "output": "29419000"}, {"text_input": "What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20170816", "output": "29309090"}, {"text_input": "What is the hs code for CAPTOPRIL (BHN BAKU OBAT) COA 5103-17-119", "output": "29339990"}, {"text_input": "What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1708046, 47,48,52,53,56, 57", "output": "29224900"}, {"text_input": "What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 17082601", "output": "29309090"}, {"text_input": "What is the hs code for METHYL SULFONYL METHANE USP (B.BAKU OBAT) COA 17082601", "output": "29309090"}, {"text_input": "What is the hs code for BIOTOX (BHN BAKU OBAT UTK PAKAN TERNAK) COA 280817-701", "output": "23099090"}, {"text_input": "What is the hs code for LIQUIPHOS STRONG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 300817-810", "output": "23099090"}, {"text_input": "What is the hs code for LIQUIPHOS STRONG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 300817-810", "output": "23099090"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS170802", "output": "39139090"}, {"text_input": "What is the hs code for PEPPERMINT ORGANIC DISTILLATE 1:5 SB (BHN BAKU KOSMETIK)COA MEPD170701-BIO", "output": "39139090"}, {"text_input": "What is the hs code for GRAPEFRUIT PHYTELENE EG 498 (BHN BAKU KOSMETIK)COA EG498-160702", "output": "39139090"}, {"text_input": "What is the hs code for LICOURICE ORGANIC OILY EXTRACT (BHN BAKU KOSMETIK)COA GLGT161102-HBIO", "output": "39139090"}, {"text_input": "What is the hs code for WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK)COA EG138-170601", "output": "39139090"}, {"text_input": "What is the hs code for ROMAN CHAMOMILLE PHYTELENE EG 088 (BHN BAKU KOSMETIK)COA EG088-170101", "output": "39139090"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO170601", "output": "39139090"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO170601", "output": "39139090"}, {"text_input": "What is the hs code for OATWELL 22,18KG BAG (BHN BAKU MAKANAN) COA SOF172005, 2203", "output": "21069059"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598096", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598095", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598062", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598074", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598087", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598086", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE(BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598089", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598094", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598093", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598052", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598099", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598088", "output": "38249999"}, {"text_input": "What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598106", "output": "32151900"}, {"text_input": "What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598106", "output": "32151900"}, {"text_input": "What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598106", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598097", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598090", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598101", "output": "39061090"}, {"text_input": "What is the hs code for LIPOID PPL-600 (BHN BAKU OBAT) COA.577200-2170186/008-009 (2)", "output": "29232010"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598416", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598418", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598417", "output": "38249999"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB090817", "output": "39123900"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B300717", "output": "39123900"}, {"text_input": "What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7170636", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER VOGES-PROSKAUER A (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7136718", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7209759", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7209759", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MARK EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7219546", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7209750", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE KOSER CITRATE MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 5055842", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE OXFORD MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7198842", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TREHALOSE 10G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7228569", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TREHALOSE 10G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7228569", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7143641", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171538", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053868", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121569", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7135806", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7069571,597", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121602,7171820", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7143641", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121569", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7109998,7110592", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060848,71099", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7102884,7109903", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7018890", "output": "38210010"}, {"text_input": "What is the hs code for PAIL BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7193678", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7193678", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7103621", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7095842", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009966", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7068731", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7045539", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7142578", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7143982", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7114681", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7142628", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7102868", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053868", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7047892", "output": "38210010"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121584", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6333840", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7114771", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7151674", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6320611", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 6294620", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7114758", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7193724", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7130695", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILR GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6320612", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7109946", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7111887,...", "output": "38210010"}, {"text_input": "What is the hs code for CULTURESWAB PLUS AMIES W/O ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 170706516", "output": "38210010"}, {"text_input": "What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7136957", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7159717", "output": "38210010"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7151905", "output": "38210010"}, {"text_input": "What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7151925", "output": "38210010"}, {"text_input": "What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7131814", "output": "38210010"}, {"text_input": "What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 7146936", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121848", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009966", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060702", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7142625", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060815", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DESTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7005857", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060762", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7047892", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7074531", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CZAPEK DOX BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7024575", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009518", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060948", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7152953", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7135968", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MICRO INOCULUM BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6342747", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7030541", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE OXGALL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7074561", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7177823", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7088775", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILLIADIS MSRV 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6314689", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 7212562", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6319507", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SIM MEDIUM BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7009822", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7009838", "output": "38210010"}, {"text_input": "What is the hs code for SOLUTION BACTERIOSTAT CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2057C324", "output": "38210010"}, {"text_input": "What is the hs code for O RING 0,028IN DIAX 0,009IN DIA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)", "output": "38210010"}, {"text_input": "What is the hs code for PHOSFLOW PERM BUFFER III 125ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7111910", "output": "38210010"}, {"text_input": "What is the hs code for NOZZLE ASSEMBLY 100UM S-TYPE (MEDIA UTK PENGEMBANGAN MIKROORGANISME)", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MALT EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7158801", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MALT EXTRACT (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7158801", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BEEF EXTRACT POWDER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6298524", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PROTEOSE PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7102762", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 4056159", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7009551", "output": "38210010"}, {"text_input": "What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7219674", "output": "38210010"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7041671", "output": "38210010"}, {"text_input": "What is the hs code for BD FC BEADS PERCP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7150701", "output": "38210010"}, {"text_input": "What is the hs code for CUSTOM CS AND T RUO BEADS (50T) (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7206861", "output": "38210010"}, {"text_input": "What is the hs code for FACS ACCUDROP BEADS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6284736", "output": "38210010"}, {"text_input": "What is the hs code for FC BEADS DILUTION BUFFER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7116699", "output": "38210010"}, {"text_input": "What is the hs code for BD FC BEADS FITC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7156984", "output": "38210010"}, {"text_input": "What is the hs code for BD FC BEADS APC-R700 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7194809", "output": "38210010"}, {"text_input": "What is the hs code for BD FC BEADS APC CY7 (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7194807", "output": "38210010"}, {"text_input": "What is the hs code for BD FC BEADS V450 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7150941", "output": "38210010"}, {"text_input": "What is the hs code for BD FC BEADS V500-C (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7115984", "output": "38210010"}, {"text_input": "What is the hs code for BD FC BEADS PERCP CY5.5 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7150699", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7201782", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6307974", "output": "38210010"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3 MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7041671", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7111776", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP ...(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6337887", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG ...(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7142814", "output": "38210010"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7146880", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7111776,7117554", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6197586", "output": "38210010"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7146880", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7109549", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D/E NEUTRALIZING AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7153501", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7129876", "output": "38210010"}, {"text_input": "What is the hs code for VIAL E COLI H ANTISERUM H7 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6323840", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEMOGLOBIN SOL 2PCT... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7045874", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7117574,7200569", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LACTOBACILLI MRS BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7129880", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7102829", "output": "38210010"}, {"text_input": "What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP A (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6239952", "output": "38210010"}, {"text_input": "What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP C (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6054509", "output": "38210010"}, {"text_input": "What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP W135 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6267761", "output": "38210010"}, {"text_input": "What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP Y 1MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7117785", "output": "38210010"}, {"text_input": "What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP B (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6210869", "output": "38210010"}, {"text_input": "What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP D (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6274754", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060799", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL O ANTISERUM POLY A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6134963", "output": "38210010"}, {"text_input": "What is the hs code for CD19 PE CY7 SJ25C1 100 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7223772", "output": "38210010"}, {"text_input": "What is the hs code for STAIN BUFFER FBS 500ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7031808", "output": "38210010"}, {"text_input": "What is the hs code for HU CD3 HORIZON V450 UCHT1 120TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7130596", "output": "38210010"}, {"text_input": "What is the hs code for HU CD45 HORIZON V500 HI30 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7188870", "output": "38210010"}, {"text_input": "What is the hs code for CD3 APC-H7 SK7 100 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7212822", "output": "38210010"}, {"text_input": "What is the hs code for CD43 APC 8G12 100 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7186970", "output": "38210010"}, {"text_input": "What is the hs code for CD45 FITC/CD34 PE 2D1/8G12 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7157909", "output": "38210010"}, {"text_input": "What is the hs code for CD45 PER CP 2D1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7058522", "output": "38210010"}, {"text_input": "What is the hs code for CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7201538", "output": "38210010"}, {"text_input": "What is the hs code for CD13 PE L138 100 TESTS RUO/GMP( MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7174889", "output": "38210010"}, {"text_input": "What is the hs code for MS LG G1 KPA LTCI PE MOPC 21 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7125847", "output": "38210010"}, {"text_input": "What is the hs code for MS LG G1 KPA LTCI FITC MOPC 21 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6301865", "output": "38210010"}, {"text_input": "What is the hs code for LYSING BUFFER 10X CONCENTRATE 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7180899", "output": "38210010"}, {"text_input": "What is the hs code for HUMAN FOXP3 STAINING KIT PE 100 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)", "output": "38210010"}, {"text_input": "What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 72196742", "output": "38210010"}, {"text_input": "What is the hs code for BD CST BEADS KIT 50 TESTS(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 68954", "output": "38210010"}, {"text_input": "What is the hs code for HU CD11C APC B-IY6 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7124669", "output": "38210010"}, {"text_input": "What is the hs code for HU CD209 APC DCN46 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7075780", "output": "38210010"}, {"text_input": "What is the hs code for HU CD163 PE GHI/61 100TST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7160585", "output": "38210010"}, {"text_input": "What is the hs code for HU CD64 HITC 10.1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6280735", "output": "38210010"}, {"text_input": "What is the hs code for HU CD274 PE MIH1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7069869", "output": "38210010"}, {"text_input": "What is the hs code for HU CD86 FITC 2331 (FUN-1) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7132528", "output": "38210010"}, {"text_input": "What is the hs code for HU CD206 FITC 19.2 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7069986", "output": "38210010"}, {"text_input": "What is the hs code for CD11C PE CE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7179827", "output": "38210010"}, {"text_input": "What is the hs code for HU CD40 FITC 5C3 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 7132522", "output": "38210010"}, {"text_input": "What is the hs code for HU HLA DR FITC L243 (G46-6) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6263631", "output": "38210010"}, {"text_input": "What is the hs code for MS LGG1KPA LTCI FITC MOPC-21 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6301865", "output": "38210010"}, {"text_input": "What is the hs code for ROVIMIX AD3 1000/200,20KG BAL (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT17020176, 189", "output": "29362100"}, {"text_input": "What is the hs code for ROVIMIX E 50 SD, 20KG BAG (BHN BAKU OBAT UTK PAKAN TERNAK) COA WB04170123,130", "output": "29362800"}, {"text_input": "What is the hs code for ROVIMIX E-50 ADSORBATE (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT17060171", "output": "29362800"}, {"text_input": "What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ70207006", "output": "29189900"}, {"text_input": "What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0018859", "output": "39139090"}, {"text_input": "What is the hs code for AC091KF FUCOGEL 1.5P 25 KG (BHN BAKU KOSMETIK) COA 0019047", "output": "39139090"}, {"text_input": "What is the hs code for ASTABIO ARV-S (BHN BAKU OBAT) COA.1706131K", "output": "32030010"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM DAB /EP 7.0 (BHN BAKU OBAT) COA 1705718,24,58,89", "output": "29331100"}, {"text_input": "What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND170704", "output": "29372200"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK,COA 01/17GL4", "output": "28399000"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK,COA 02/16-GL4 ,SAMPLE NO COMMERCIAL VALUE", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 16E5006", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 17E2402", "output": "28399000"}, {"text_input": "What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 1709EF3311", "output": "29224900"}, {"text_input": "What is the hs code for ZINDIDONE 5KG (BHN BAKU KOSMETIK) COA 0017961", "output": "29337900"}, {"text_input": "What is the hs code for THIOGLYCOLIC ACID 99PCT COSMETIC GRADE (BHN BAKU KOSMETIK) COA.0000060086", "output": "29309090"}, {"text_input": "What is the hs code for AMMONIUM THIOGLYCOLATE 71PCT(60PCT TGA) BHN BAKU KOSMETIK, COA.0000060063", "output": "29309090"}, {"text_input": "What is the hs code for MONOETHANOLAMINE THIOGLYCOLATE 83PCT (50PCT TGA) BHN BAKU KOSMETIK, COA 0000060062", "output": "29221100"}, {"text_input": "What is the hs code for AMMONIUM THIOGLYCOLATE 71PCT (60PCT TGA) B.BAKU KOSMETIK, COA 0000060080,SAMPLE NO COMM VALUE", "output": "29309090"}, {"text_input": "What is the hs code for DIAMMONIUM DITHIODIGLYCOLATE 48PCT... (BHN BAKU KOSMETIK),COA 0000060081,SAMPLE NO COMM VALUE", "output": "29309090"}, {"text_input": "What is the hs code for MONOETHANOLAMINE THIOGLYCOLATE 83PCT... (BHN BAKU KOSMETIK),COA 0000060082 SAMPLE NO COMM VALUE", "output": "29309090"}, {"text_input": "What is the hs code for POTASSIUM THIOGLYCOLATE 43PCT (30PCT TGA)B.BAKU KOSMETIK, COA 0000060083,SAMPLE NO COMM VALUE", "output": "29309090"}, {"text_input": "What is the hs code for THIOGLYCOLIC ACID 99PCT PURE(BHN BAKU KOSMETIK) COA 0000060084,SAMPLE NO COMM VALUE", "output": "29309090"}, {"text_input": "What is the hs code for THIOGLYCOLIC ACID 80PCT, COSMETIC GRADE(BHN BAKU KOSMETIK) COA 000006085,SAMPLE NO COMM VALUE", "output": "29309090"}, {"text_input": "What is the hs code for HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 2688201", "output": "33029000"}, {"text_input": "What is the hs code for B CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT16110070", "output": "32041900"}, {"text_input": "What is the hs code for B CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01611105", "output": "32041900"}, {"text_input": "What is the hs code for DL A TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17010012", "output": "29362800"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01704041", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT16120007", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17010011", "output": "29362400"}, {"text_input": "What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ70309009", "output": "29362300"}, {"text_input": "What is the hs code for CALCIUM D PANTOTHENATE (BHN BAKU MAKANAN) COA TL01703648", "output": "29362400"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11706005", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ70210055", "output": "29362300"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01704041", "output": "29362400"}, {"text_input": "What is the hs code for RIBOFLAVIN 5 PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1705063", "output": "29362300"}, {"text_input": "What is the hs code for CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB01116017", "output": "29362700"}, {"text_input": "What is the hs code for D-A TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20160302", "output": "29362800"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ70210055", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ70210056", "output": "29362300"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417031", "output": "29362200"}, {"text_input": "What is the hs code for ROCOAT THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA WB00417031", "output": "29362200"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01704108", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01704108", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01704108", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91708220", "output": "21069059"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70602301", "output": "29362200"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN)) COA UT17020002", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN PREMIX TYPE MM81 (105PCT) BHN BAKU MAKANAN, COA XW91708169", "output": "21069059"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT17050014", "output": "29362900"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70602301", "output": "29362200"}, {"text_input": "What is the hs code for RIBOFLAVIN 5 PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1705063", "output": "29362300"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17040013", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN 5 PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1705063", "output": "29362300"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL01703648", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17040733", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17050062", "output": "29362900"}, {"text_input": "What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91708078", "output": "21069059"}, {"text_input": "What is the hs code for CALCIUM D PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01703648", "output": "29362400"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70506115", "output": "29362700"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70213050,3051", "output": "29362500"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01705492", "output": "29362700"}, {"text_input": "What is the hs code for CALCIUM D PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01703648", "output": "29362400"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01705492", "output": "29362700"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70503138", "output": "29362200"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01705492", "output": "29362700"}, {"text_input": "What is the hs code for B CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT16110070", "output": "32041900"}, {"text_input": "What is the hs code for DL A TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT17010012", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT17050014", "output": "29362900"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70406094,95", "output": "29362700"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70213050", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT17030160", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI16070010", "output": "29362900"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01705492", "output": "29362700"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1706005", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT16090336", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT17050022,12", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17050022", "output": "29362600"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01705492", "output": "29362700"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN535463", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN535480", "output": "35051010"}, {"text_input": "What is the hs code for SELVOL 540 PVOH 25 KG BAG (BHN BAKU KOSMETIK) COA PO41683061", "output": "39139090"}, {"text_input": "What is the hs code for DPG FG (BHN BAKU KOSMETIK) COA A0292ID", "output": "29094900"}, {"text_input": "What is the hs code for PG USP (BHN BAKU KOSMETIK) COA A02921U", "output": "29053200"}, {"text_input": "What is the hs code for INSTANT BLACK TEA POWDER TH B430 (BHN BAKU MAKANAN) COA 2017090402", "output": "21012020"}, {"text_input": "What is the hs code for ARGAN OIL, 10KG PAIL PE(BHN BAKU KOSMETIK) COA AVD0015511", "output": "29362500"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0317050734,736,737,748,779,780", "output": "29189900"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517070147", "output": "29189900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)BHN BAKU KOSMETIK, COA UT17030160", "output": "29362100"}, {"text_input": "What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01703805", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708160129", "output": "29189900"}, {"text_input": "What is the hs code for BEAUPLEX VH (BHN BAKU KOSMETIK) COA UF17082001", "output": "29189900"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517040082,84,86.70147", "output": "29189900"}, {"text_input": "What is the hs code for PARSOL 340,25KG PC(BHN BAKU KOSMETIK) COA 0217070082", "output": "29189900"}, {"text_input": "What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0217060064", "output": "29189900"}, {"text_input": "What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00494228", "output": "29189900"}, {"text_input": "What is the hs code for STAY C 50 (BHN BAKU KOSMETIK), COA UE01706008,6011", "output": "29362700"}, {"text_input": "What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01706011,14", "output": "29362700"}, {"text_input": "What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91708174", "output": "29189900"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA OP81705019", "output": "29362900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ7041308447", "output": "29362500"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT )COA.ASG/07/310717,08/260817...", "output": "29420000"}, {"text_input": "What is the hs code for SODIUM VALPROATE (BAHAN BAKU OBAT) COA.450183", "output": "29159090"}, {"text_input": "What is the hs code for CHOLINE L-BITARTRATE (BAHAN BAKU OBAT) COA.3012866", "output": "29231000"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM DAB /EP 7.0 (BHN BAKU OBAT) COA 17071023,25,1148,1215", "output": "29331100"}, {"text_input": "What is the hs code for CETIRIZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA 17028CZ6RII", "output": "29335990"}, {"text_input": "What is the hs code for AMPICILLIN TRIHYDRATE PURICILLIN COMPACTED (BHN BAKU OBAT) COA. M842138 S/D 42", "output": "29411020"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE PURIMOX COMPACTED (BHN BAKU OBAT) COA M529259,286,289", "output": "29411019"}, {"text_input": "What is the hs code for AMOXICILIN TRIHYDRATE PURIMOX POWDER (BHN BAKU OBAT) COA M483449", "output": "29411019"}, {"text_input": "What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK), COA.170864", "output": "13021990"}, {"text_input": "What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 171058", "output": "13021990"}, {"text_input": "What is the hs code for CLAIRJU (BHN BAKU KOSMETIK) COA 170508", "output": "13021990"}, {"text_input": "What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 170864", "output": "13021990"}, {"text_input": "What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 170864", "output": "13021990"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 171335", "output": "13021990"}, {"text_input": "What is the hs code for MATIPURE OIL FREE (BHN BAKU KOSMETIK) COA 1714402", "output": "39139090"}, {"text_input": "What is the hs code for SILIGEL (BHN BAKU KOSMETIK) COA 1719401", "output": "39139090"}, {"text_input": "What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5457516", "output": "39139090"}, {"text_input": "What is the hs code for B WHITE (BHN BAKU KOSMETIK) COA 829015126H", "output": "39139090"}, {"text_input": "What is the hs code for B WHITE (BHN BAKU KOSMETIK) COA 829015243H", "output": "39139090"}, {"text_input": "What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830015347H", "output": "39139090"}, {"text_input": "What is the hs code for LANABLUE (BHN BAKU KOSMETIK), COA 5497917", "output": "39139090"}, {"text_input": "What is the hs code for MELANOSTATINE 5BG (50PPM) (BHN BAKU KOSMETIK), COA 817044833G", "output": "39139090"}, {"text_input": "What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025335H", "output": "39139090"}, {"text_input": "What is the hs code for HELIOGEL (BHN BAKU KOSMETIK) COA 1706301", "output": "39139090"}, {"text_input": "What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5471517", "output": "39139090"}, {"text_input": "What is the hs code for B WHITE (BHN BAKU KOSMETIK) COA 829015243H", "output": "39139090"}, {"text_input": "What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769015349H", "output": "39139090"}, {"text_input": "What is the hs code for CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785015248H", "output": "39139090"}, {"text_input": "What is the hs code for CW 5C 5PCT CLEAR BHN BAKU KOSMETIK, COA 785015305H", "output": "39139090"}, {"text_input": "What is the hs code for HELIOGEL (BHN BAKU KOSMETIK) COA 1706301", "output": "39139090"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5497617", "output": "39139090"}, {"text_input": "What is the hs code for PRO-LIPO NEO (BHN BAKU KOSMETIK) COA 1713601", "output": "39139090"}, {"text_input": "What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025335H", "output": "39139090"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597966", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598223", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598214", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598222", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598221", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598211", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598210", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598218", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598217", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598225", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598213", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598219", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598224", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598226", "output": "38249999"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00517168", "output": "29362800"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU SUPLEMEN) COA XH20170701", "output": "29362800"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 20PCT SAF, IKG BOT PE (BHN BAKU SUPLEMEN) COA UE01704014", "output": "32030010"}, {"text_input": "What is the hs code for GENIVIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010016", "output": "29329990"}, {"text_input": "What is the hs code for SK BIOLAND ASTRIN AG (BHN BAKU KOSMETIK)COA BAG-030126", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND GRAPE SED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-020497", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUP-021367", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK)COA HMVBD-031477,040597", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-1110597", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND LICORICE EXTRACT (BHN BAKU KOSMETIK) COA GGB-022887", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011017", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK)COA OSLP-142287, OSLP-152487", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-040857,051277", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 071817", "output": "39139090"}, {"text_input": "What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 110717", "output": "25070000"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA DIB", "output": "39139090"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA DHC", "output": "39139090"}, {"text_input": "What is the hs code for PROMOIS HYDROMILK (BHN BAKU KOSMETIK) COA DED", "output": "39139090"}, {"text_input": "What is the hs code for VISTANOL GDHR (BHN BAKU KOSMETIK) COA EJF", "output": "39139090"}, {"text_input": "What is the hs code for OXYTETRACYCLINE DIHYDRATE (BHN BAKU OBAT) COA ZT170758,0926", "output": "29413000"}, {"text_input": "What is the hs code for PHENYTOIN SODIUM (BHN BAKU OBAT) COA.17100504", "output": "29332100"}, {"text_input": "What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.17100555,556", "output": "29391900"}, {"text_input": "What is the hs code for VACCINIUM MYRTILLUS DRY EX (BHN BAKU SUPLEMEN) COA 32485/M1", "output": "13021990"}, {"text_input": "What is the hs code for CURCUMA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 32489/M7", "output": "38249999"}, {"text_input": "What is the hs code for WHITE WILLOW BARK 50/20PCT BHN BAKU KOSMETIK, COA 20161014-610", "output": "39139090"}, {"text_input": "What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1708066,69,70,73,74,76,78 S/D 80,83", "output": "29224900"}, {"text_input": "What is the hs code for IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S358/17", "output": "38029090"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB090817", "output": "39123900"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B300717", "output": "39123900"}, {"text_input": "What is the hs code for PANTOPROZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT,COA APSS17004", "output": "29333990"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 INF OIL, 4,5KG PJUG (BHN BAKU SUPLEMEN) COA.TS00008657", "output": "29362500"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 01/17GAAK", "output": "28399000"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU OBAT) COA.01/17GAAK,SAMPLE NO COMM VALUE", "output": "28399000"}, {"text_input": "What is the hs code for TEFOSE 63 (BAHAN BAKU OBAT) COA.163794", "output": "28399000"}, {"text_input": "What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M.31PCT (BHN BAKU OBAT) COA 101729021", "output": "28161000"}, {"text_input": "What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7082920,7214775", "output": "38210010"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70313056", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN) COA UT17070161", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17030160", "output": "29362100"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70503156,58", "output": "29362200"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01611106", "output": "32041900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17010020", "output": "29362800"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01704042", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT17030160", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01612020", "output": "29362900"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT16110070", "output": "32041900"}, {"text_input": "What is the hs code for CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB00517033", "output": "29362700"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01704108", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17030085", "output": "29362400"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1706007", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ70210059", "output": "29362300"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT17020002", "output": "29362800"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70602307", "output": "29362200"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G TOCO) (BHN BAKU MAKANAN) COA UT17070161", "output": "29362100"}, {"text_input": "What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91708341", "output": "21069059"}, {"text_input": "What is the hs code for DWI BI (BHN BAKU MAKANAN) COA XW91708343", "output": "21069059"}, {"text_input": "What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91709064", "output": "21069059"}, {"text_input": "What is the hs code for PREMIX KNPX CH 00 16 (BHN BAKU MAKANAN) COA XW91709080", "output": "21069059"}, {"text_input": "What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW91709090", "output": "21069059"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17010011,30085", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT17040739", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT17030019", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN), COA UT17020002", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17020017", "output": "29362100"}, {"text_input": "What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ70309009", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01612020", "output": "29362900"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01611106", "output": "32041900"}, {"text_input": "What is the hs code for CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB00517033", "output": "29362700"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01704108", "output": "29362900"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20160302", "output": "29362800"}, {"text_input": "What is the hs code for GRAPE SEED ORGANIC OIL C00031 (BHN BAKU KOSMETIK)COA RPH170903-ENBIO", "output": "39139090"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA170901", "output": "39139090"}, {"text_input": "What is the hs code for LINEN OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA LIUH170804-H", "output": "39139090"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO170601", "output": "39139090"}, {"text_input": "What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-170301-GS", "output": "39139090"}, {"text_input": "What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA.70607", "output": "39139090"}, {"text_input": "What is the hs code for SUPEROX C TM AF (BHN BAKU KOSMETIK) COA.70807", "output": "39139090"}, {"text_input": "What is the hs code for WILDPLUM HARVERST TM AF (BHN BAKU KOSMETIK) COA 70803", "output": "39139090"}, {"text_input": "What is the hs code for TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA 70913", "output": "39139090"}, {"text_input": "What is the hs code for TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA 70618", "output": "39139090"}, {"text_input": "What is the hs code for BARCROFT TM 0325 DRIED AL HYD GEL USP(BHN BAKU OBAT) COA.101758042", "output": "28183000"}, {"text_input": "What is the hs code for COLCHICINE USP (BHN BAKU SUPLEMEN) COA 55032/1,SAMPLE NO COMMERCIAL VALUE", "output": "29397900"}, {"text_input": "What is the hs code for THE MATCHA 1 P001062 (BHN BAKU KOSMETIK) COA 0000006988", "output": "33029000"}, {"text_input": "What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA.0000005734", "output": "33029000"}, {"text_input": "What is the hs code for GINSENG DRY EXTRACT 2PCT COLOR (BAHAN BAKU SUPPLEMEN) COA 10430/M1", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10504/M1", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10399/M1", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10400/M1", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10429/M1", "output": "13021990"}, {"text_input": "What is the hs code for LIPOID S 20 (BHN BAKU OBAT) COA.572000-2170117/037-039 (3), 572000-2170117/051", "output": "29232010"}, {"text_input": "What is the hs code for PEG 400 (BAHAN BAKU KOSMETIK) COA.AKW0004371", "output": "39139090"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01708425,31,36", "output": "29362700"}, {"text_input": "What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT17080010,11", "output": "29362100"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20170701", "output": "29362800"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598218", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598405", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598404", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598414", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598543", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598409", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598407", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL EZE PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598408", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598412", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598403", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598400", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598414", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598413", "output": "38249999"}, {"text_input": "What is the hs code for PURIDROX TM COMPACTED, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B339914,17,18,19", "output": "29419000"}, {"text_input": "What is the hs code for METHOCEL E5 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011G6KL03", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011GBFL01", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011GADL01", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E50 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011GB0L03", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180G33001", "output": "39123900"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 20 PREMIUM... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D184H75021", "output": "39123900"}, {"text_input": "What is the hs code for VITAMIN MINERAL PREMIX FOR MICRONUTRIENT POWDER (BHN BAKU MAKANAN) COA MY61709168", "output": "21069059"}, {"text_input": "What is the hs code for CARVEDILOL USP (BHN BAKU OBAT) COA 17CVM1002,003,005", "output": "29398000"}, {"text_input": "What is the hs code for LANOLINE ANHYDROUS (BHN BAKU KOSMETIK) COA 4501", "output": "39139090"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20170701", "output": "29362800"}, {"text_input": "What is the hs code for VIT A PALM 1.0 M AND VIT D3 100000 (BHN BAKU MAKANAN) COA UT17090043", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00617194", "output": "29362100"}, {"text_input": "What is the hs code for JAGUAR C 162 CARDBOARD BOX 25 KG (BHN BAKU KOSMETIK) COA MJAC17255A", "output": "39139090"}, {"text_input": "What is the hs code for OPTISHARP NAT,ZEA 5PCT CWS/S... (B. BAKU SUPLEMEN) COA EW16115002 SAMPLE NO COMM VALUE", "output": "32041900"}, {"text_input": "What is the hs code for OPTISHARP NAT.ZEA 5PCT CWS/S... (B. BAKU SUPLEMEN) COA EW16115003 SAMPLE NO COMM VALUE", "output": "32041900"}, {"text_input": "What is the hs code for ASCORBIC ACID 0,050 KG SAMPLE (B. BAKU SUPLEMEN) COA TL01701285 SAMPLE NO COMM VALUE", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID, 0,050 KG SAMPLE (B. BAKU SUPLEMEN) COA TL01706844 SAMPLE NO COMM VALUE", "output": "29362700"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00915140 SAMPLE NO COMM VALUE", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (B. BAKU SUPLEMEN) COA UT16110050 SAMPLE NO COMM VALUE", "output": "29362100"}, {"text_input": "What is the hs code for CALCIUM D PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01702635 SAMPLE NO COMM VALUE", "output": "29362400"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01607020 SAMPLE NO COMM VALUE", "output": "29362900"}, {"text_input": "What is the hs code for VC ASCORBIC ACID REGULAR (BHN BAKU SUPLEMEN) COA D201612002 SAMPLE NO COMM VALUE", "output": "29362700"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT17010010 SAMPLE NO COMM VALUE", "output": "32041900"}, {"text_input": "What is the hs code for VC ASCORBIC ACID REGULAR ...(BHN BAKU SUPLEMEN) COA D201612002 SAMPLE NO COMM VALUE", "output": "29362700"}, {"text_input": "What is the hs code for VC ASCORBIC ACID REGULAR... (BHN BAKU SUPLEMEN) COA B201612033 SAMPLE NO COMM VALUE", "output": "29362700"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00816163 SAMPLE NO COMM VALUE", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00816163 SAMPLE NO COMM VALUE", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB01016164, SAMPLE NO COMM VALUE", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (BHN BAKU SUPLEMEN) COA UT17040739 SAMPLE NO COMM VALUE", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT17010054", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN B12 1PCT SD (BHN BAKU SUPLEMEN) COA UT17010001 SAMPLE NO COMM VALUE", "output": "29362600"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00816163 SAMPLE NO COMM VALUE", "output": "29362100"}, {"text_input": "What is the hs code for DL A TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT17020016 SAMPLE NO COMM VALUE", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI16070010 SAMPLE NO COMM VALUE", "output": "29362900"}, {"text_input": "What is the hs code for OPTISHARP NAT.ZEA 5PCT CWS/S... (BHN BAKU SUPLEMEN) COA EW16115001 SAMPLE NO COMM VALUE", "output": "32041900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT16020014 SAMPLE NO COMMERCIAL VALUE", "output": "29362900"}, {"text_input": "What is the hs code for CALCIUM D PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01702635 SAMPLE NO COMM VALUE", "output": "29362400"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (B. BAKU SUPLEMEN) COA WB00715010 SAMPLE NO COMM VALUE", "output": "29362300"}, {"text_input": "What is the hs code for RESTYLANE VOLYME 1 ML (BHN BAKU OBAT) COA 15063-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE DEFYNE 1 ML (BHN BAKU OBAT) COA 15022-1", "output": "90189090"}, {"text_input": "What is the hs code for CANNULA 23G PIXL 0,6X50 (BHN BAKU OBAT) COA 10005023/190717", "output": "90189090"}, {"text_input": "What is the hs code for CANNULA 25G PIXL 0,5X40 (BHN BAKU OBAT) COA 10005022/140617", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE SKINB VITLIDO 1MLD16 (BHN BAKU OBAT) COA 15430-2", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE LYFT LIDOCAINE 1 ML (BHN BAKU OBAT) COA 15317-2", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE LYFT LIDOCAINE 1 ML (BHN BAKU OBAT) COA 15317-2", "output": "90189090"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA. RBA2491700", "output": "28363000"}, {"text_input": "What is the hs code for PRO LIPO NEO (BHN BAKU KOSMETIK) COA 1721501, 1715801", "output": "39139090"}, {"text_input": "What is the hs code for B WHITE (BHN BAKU KOSMETIK) COA 829015350H", "output": "39139090"}, {"text_input": "What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769015349H", "output": "39139090"}, {"text_input": "What is the hs code for CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785015444H", "output": "39139090"}, {"text_input": "What is the hs code for CS 5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785015526H", "output": "39139090"}, {"text_input": "What is the hs code for CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785015305H", "output": "39139090"}, {"text_input": "What is the hs code for LANABLUE (BHN BAKU KOSMETIK), COA 5497917", "output": "39139090"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK), COA 1710602", "output": "39139090"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5457416", "output": "39139090"}, {"text_input": "What is the hs code for MELANOSTATINE 5 PS (50PPM) (BHN BAKU KOSMETIK) COA 817015255H", "output": "39139090"}, {"text_input": "What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015372H", "output": "39139090"}, {"text_input": "What is the hs code for SWT 7TH H (BHN BAKU KOSMETIK) COA 1714501", "output": "39139090"}, {"text_input": "What is the hs code for SWT 7 TM L (BHN BAKU KOSMETIK) COA 1632001", "output": "39139090"}, {"text_input": "What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025335H", "output": "39139090"}, {"text_input": "What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025335H", "output": "39139090"}, {"text_input": "What is the hs code for OPALUX GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT666487", "output": "32151900"}, {"text_input": "What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT666488", "output": "32151900"}, {"text_input": "What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT666478", "output": "32151900"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA ROA240174", "output": "28363000"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA ROA243173", "output": "28363000"}, {"text_input": "What is the hs code for OATWELL 22,18KG BAG (BHN BAKU MAKANAN) COA SOF172005, 2204", "output": "21069059"}, {"text_input": "What is the hs code for CELLATOSE(R) 80 (BHN BAKU OBAT) COA L1004630017A535", "output": "17021100"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE USP (BHN BAKU OBAT) COA M110365", "output": "29339990"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE USP (BHN BAKU OBAT) COA M110365", "output": "29339990"}, {"text_input": "What is the hs code for PHARMABURST (R) C1 (BHN BAKU OBAT) COA.121707830", "output": "21069099"}, {"text_input": "What is the hs code for TEAVIGO (1KG), BHN BAKU MAKANAN, COA 708161", "output": "39139090"}, {"text_input": "What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK), COA.171728", "output": "38249999"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 171383", "output": "13021990"}, {"text_input": "What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 170864", "output": "13021990"}, {"text_input": "What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 171728", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY QX YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598863", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598900", "output": "38249999"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 14 PREMIUM... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.D184G71021", "output": "39123900"}, {"text_input": "What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP779705...", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C RED #40/ALLURA RED AC AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP784985...", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP779706...", "output": "32151900"}, {"text_input": "What is the hs code for JAGUAR HP 105, 25KG CARDBOARD CARTON (BHN BAKU KOSMETIK) COA H1707157D", "output": "39139090"}, {"text_input": "What is the hs code for AC019KC PHYTOVITYL C 5KG BHN BAKU KOSMETIK COA 0016267", "output": "39139090"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517050117", "output": "29189900"}, {"text_input": "What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00494230,4231,4961,5421", "output": "29189900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11706007,6009", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT17030160", "output": "29362100"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01704043,5045", "output": "29362400"}, {"text_input": "What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01703806", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708160129,130", "output": "29189900"}, {"text_input": "What is the hs code for BEAUPLEX VH (BHN BAKU KOSMETIK) COA UF17082001", "output": "29189900"}, {"text_input": "What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P7P24UA000", "output": "29189900"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01706055 S/D 57", "output": "29362400"}, {"text_input": "What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01703806", "output": "29362400"}, {"text_input": "What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01706014", "output": "29362700"}, {"text_input": "What is the hs code for PARSOL HS (BHN BAKU KOSMETIK) COA 0709150116, 0709160001", "output": "29189900"}, {"text_input": "What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91709283,84", "output": "29189900"}, {"text_input": "What is the hs code for PROCATEROL HCL HEMIHYDRATE MICRONIZED (B.BAKU OBAT) COA 860020315M1", "output": "29337900"}, {"text_input": "What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-001-U", "output": "39139090"}, {"text_input": "What is the hs code for TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA629366", "output": "32151900"}, {"text_input": "What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND170705", "output": "29372200"}, {"text_input": "What is the hs code for O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 030117/004441", "output": "39139090"}, {"text_input": "What is the hs code for FLOWLAC (R) 100 (BHN BAKU OBAT) COA. L101503617A537, L101512617A537", "output": "17021100"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101853717A545", "output": "17021100"}, {"text_input": "What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA.17100596", "output": "29221990"}, {"text_input": "What is the hs code for BIO SODIUM HYALURONATE POWDER (MMW)BHN BAKU KOSMETIK, COA CHP1170926", "output": "39139090"}, {"text_input": "What is the hs code for SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 071817,2017G1492", "output": "39139090"}, {"text_input": "What is the hs code for SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-051277", "output": "39139090"}, {"text_input": "What is the hs code for ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-011177", "output": "39139090"}, {"text_input": "What is the hs code for ARBUTIN (BHN BAKU KOSMETIK) COA ARP-1110597", "output": "39139090"}, {"text_input": "What is the hs code for ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-010337", "output": "39139090"}, {"text_input": "What is the hs code for CUCUMBER EXTRACT (BHN BAKU KOSMETIK) COA CUPD-033067", "output": "39139090"}, {"text_input": "What is the hs code for OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-122697", "output": "39139090"}, {"text_input": "What is the hs code for WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-052297", "output": "39139090"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598649", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598648", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598652", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598637", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598653", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598655", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598656", "output": "38249999"}, {"text_input": "What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK) COA.LDC 238 17", "output": "39139090"}, {"text_input": "What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7187993", "output": "38210010"}, {"text_input": "What is the hs code for DL. PANTHENOL 50L (BHN BAKU KOSMETIK) COA TL01702609", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0317050781 S/D 785", "output": "29189900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ60913275", "output": "29362500"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK), COA 051705017,30", "output": "29189900"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA OP81706018,19", "output": "29362900"}, {"text_input": "What is the hs code for ARGAN OIL,19KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0015511", "output": "29362500"}, {"text_input": "What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0317050785,786", "output": "29189900"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK), COA 0517060131", "output": "29189900"}, {"text_input": "What is the hs code for D BIOTIN (BHN BAKU KOSMETIK) COA UE01704108", "output": "29362900"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA. ROA274173", "output": "28363000"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170904", "output": "39139090"}, {"text_input": "What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-171002-GS", "output": "39139090"}, {"text_input": "What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIVD160903-BGBIO", "output": "39139090"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO170601", "output": "39139090"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170904", "output": "39139090"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO170601", "output": "39139090"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK)COA EG543-170905", "output": "39139090"}, {"text_input": "What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH170903-ENBIO", "output": "39139090"}, {"text_input": "What is the hs code for HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIE170702", "output": "39139090"}, {"text_input": "What is the hs code for LICORICE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA GLG171001-BGBIO", "output": "39139090"}, {"text_input": "What is the hs code for LIQUORICE ORGANIC OILY EXTRACT (BHN BAKU KOSMETIK) COA GLGT171001-HBIO", "output": "39139090"}, {"text_input": "What is the hs code for WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK) COA EG138-170601", "output": "39139090"}, {"text_input": "What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM170702-PGH", "output": "39139090"}, {"text_input": "What is the hs code for ALLOPURINOL BP (BHN BAKU OBAT) COA ALP0060817", "output": "29335990"}, {"text_input": "What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7209759", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7157502", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6201884", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7116560", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MALT EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7158801", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PROTEOSE PEPTONE NO 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7107877", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BEEF EXTRACT POWDER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6298524", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7109930", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060762", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 7171993", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7205816", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 8 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 5201890", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7135933", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CELLOBIOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7156992", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D-MANNOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7135976", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7207681", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7143744", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ENDO AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6026738", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060948", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7075670", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MARINE BROTH 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7156792", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MICRO INOCULUM BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6342747", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PHENOL RED LACTOSE BR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7082956", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PHENOL RED SUCROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009818", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PHENOL RED BROTH BASE BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6131892", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7177823", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7153977", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT CASSILIADIS MSRV 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6314689", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7193914", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE WL DIFFERENTIAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7009556", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7206693", "output": "38210010"}, {"text_input": "What is the hs code for KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7229653", "output": "38210010"}, {"text_input": "What is the hs code for KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7229653", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7255892", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7209759", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7255892", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7069597", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7209759", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7100982,9925", "output": "38210010"}, {"text_input": "What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7101832", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6228993", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7255892", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171820", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7143641", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121569", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171538", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 6278835", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7110592", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7018890", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121848", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009966", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7068731,7171993", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7116560", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7142578", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7114681", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7142628", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7198804", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7095554", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7041754", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060815", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060602", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7102910", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6333840", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 7114771", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7151674", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6320611", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7135844,71639", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE BROT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7053897", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7128678", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7193724", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7130695", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6320612", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7193733", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7005857", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7109946", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7143815", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009966", "output": "38210010"}, {"text_input": "What is the hs code for NOXXLE ASSEMBLY 70UM S TYPE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)", "output": "38210010"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7179844", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7255892", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7156641,7208917", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7152964,.", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6197586", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6337887", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7142814", "output": "38210010"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7237643", "output": "38210010"}, {"text_input": "What is the hs code for CD7 APC (M-T701) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7240826", "output": "38210010"}, {"text_input": "What is the hs code for BD CST BEADS KIT 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 68954", "output": "38210010"}, {"text_input": "What is the hs code for HY MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7219674", "output": "38210010"}, {"text_input": "What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 7186970", "output": "38210010"}, {"text_input": "What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7174889", "output": "38210010"}, {"text_input": "What is the hs code for HU REGULATORY T CELL CKTL 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7234824", "output": "38210010"}, {"text_input": "What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171565", "output": "38210010"}, {"text_input": "What is the hs code for CD117 PE 1-4D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7094972", "output": "38210010"}, {"text_input": "What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7241637", "output": "38210010"}, {"text_input": "What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7212855", "output": "38210010"}, {"text_input": "What is the hs code for HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7125585", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7214775", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE M GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7102829", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060854", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7200569", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LEPTOSPIRA ENRICHMENT... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7188915", "output": "38210010"}, {"text_input": "What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP A (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6239952", "output": "38210010"}, {"text_input": "What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP C (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6054509", "output": "38210010"}, {"text_input": "What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP W135 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6267761", "output": "38210010"}, {"text_input": "What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP Y 1MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7117785", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE UREA BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7220790", "output": "38210010"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6309655", "output": "38210010"}, {"text_input": "What is the hs code for IFN GAMMA APC RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7236968", "output": "38210010"}, {"text_input": "What is the hs code for CD19 PERCP CY5.5 SJ25C1 50 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7128512", "output": "38210010"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702444279", "output": "29372900"}, {"text_input": "What is the hs code for HYOSCINE BUTYL BROMIDE EP/BP (BHN BAKU OBAT) COA.2530517", "output": "29397900"}, {"text_input": "What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) BAHAN BAKU OBAT) COA.4453012184", "output": "39139090"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00617194", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17070052", "output": "29362100"}, {"text_input": "What is the hs code for THEOPHYLLIN BP/EP (BHN BAKU OBAT) COA 17304 S/D 17313", "output": "29395900"}, {"text_input": "What is the hs code for FERROUS FUMARATE USP/EP (BHN BAKU OBAT) COA.2017/261", "output": "29171900"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA.01/17GAAK", "output": "28399000"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 01/17GAAK,SAMPLE NO COMM VALUE", "output": "28399000"}, {"text_input": "What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BAHAN BAKU OBAT) COA 163815", "output": "28399000"}, {"text_input": "What is the hs code for TRANSCUTOL P (BAHAN BAKU OBAT) COA 165110", "output": "28399000"}, {"text_input": "What is the hs code for LABRAFIL M 1944 CS (BHN BAKU OBAT) COA 164849", "output": "28399000"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE PURIMOX POWDER (BHN BAKU OBAT) COA M483509", "output": "29411019"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE PURIMOX COMPACTED (BHN BAKU OBAT) COA M529404,405", "output": "29411019"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE PURIMOX POWDER GRADE C (BHN BAKU OBAT) COA M631507, 510", "output": "29411019"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE BP (BHN BAKU OBAT) COA.26241017,26251017...", "output": "29351000"}, {"text_input": "What is the hs code for RANITIDINE HCL (BHN BAKU OBAT) COA RH/10 2017 1315, RH 10 2017 1316", "output": "29321900"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE BP MICRONISED (BHN BAKU OBAT) COA.26371017,26381017...", "output": "29351000"}, {"text_input": "What is the hs code for EUXYL K 900 CN 10 KG KA (BHN BAKU KOSMETIK) COA.1336571", "output": "38249999"}, {"text_input": "What is the hs code for SENSIDIN DO CN 10KG CA (BHN BAKU KOSMETIK) COA.1336925,8671", "output": "38249999"}, {"text_input": "What is the hs code for WITCH HAZEL (14PCT STANDARD ALCOHOL) BHN BAKU KOSMETIK, COA A10212", "output": "39139090"}, {"text_input": "What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17090010", "output": "29189900"}, {"text_input": "What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17090010", "output": "29189900"}, {"text_input": "What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17090010", "output": "29189900"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 INF OIL, 4,5KG PJUG (BHN BAKU SUPLEMEN) COA.TS00008874", "output": "29362500"}, {"text_input": "What is the hs code for NIACINAMIDE PC,20KG BAL (BHN BAKU KOSMETIK) COA OP81706019,21", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0317050786 S/D 91", "output": "29189900"}, {"text_input": "What is the hs code for MEROPENEM TRIHYDRATE WITH SODIUM CARBONATE STERILE (BHN BAKU OBAT) COA S0820170806", "output": "30032000"}, {"text_input": "What is the hs code for NEOMYCIN SULPHATE (BHN BAKU OBAT) COA 201708050", "output": "29419000"}, {"text_input": "What is the hs code for LEVOFLOXACIN HEMIHYDRATE (FREE ALKALINE) BHN BAKU OBAT, COA C008-1701102", "output": "29349990"}, {"text_input": "What is the hs code for D-GLUCOSAMINE SULPHATE POTASSIUM (BHN BAKU OBAT) COA XH2017092501", "output": "29329990"}, {"text_input": "What is the hs code for FENOFIBRATE MICRONIZED (BHN BAKU OBAT) COA W-F03-20170506-06", "output": "29189900"}, {"text_input": "What is the hs code for PRAVASTATIN SODIUM (BHN BAKU OBAT) COA PV201607173", "output": "29189900"}, {"text_input": "What is the hs code for SENTRY POLYOX WSR 303 LEO NF ( BHN BAKU OBAT UTK PEWARNA TABLET) COA. D682H4QRR4", "output": "39123900"}, {"text_input": "What is the hs code for ALDAVINE 5X (BHN BAKU KOSMETIK) COA 5493217", "output": "39139090"}, {"text_input": "What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830015440H", "output": "39139090"}, {"text_input": "What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK), COA 769015443H", "output": "39139090"}, {"text_input": "What is the hs code for HELIOGEL TM (BHN BAKU KOSMETIK), COA 1624901", "output": "39139090"}, {"text_input": "What is the hs code for HELIOGEL (BHN BAKU KOSMETIK) COA 1628101", "output": "39139090"}, {"text_input": "What is the hs code for LECIGEL (BHN BAKU KOSMETIK) COA 1710603", "output": "39139090"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5509217", "output": "39139090"}, {"text_input": "What is the hs code for PRO-LIPO TM NEO (BHN BAKU KOSMETIK) COA 1726901", "output": "39139090"}, {"text_input": "What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025335H", "output": "39139090"}, {"text_input": "What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5471517", "output": "39139090"}, {"text_input": "What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA.70704", "output": "39139090"}, {"text_input": "What is the hs code for SUPEROX C TM AF (BHN BAKU KOSMETIK) COA.70910", "output": "39139090"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 70910", "output": "39139090"}, {"text_input": "What is the hs code for TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA 70618", "output": "39139090"}, {"text_input": "What is the hs code for B CAROTENE 10PCT EMULS (BHN BAKU MAKANAN) COA UE01710009", "output": "32041900"}, {"text_input": "What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334487,88,90", "output": "29419000"}, {"text_input": "What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA Q701900", "output": "29419000"}, {"text_input": "What is the hs code for MEROPENEM WITH SODIUM CARBONATE (BHN BAKU OBAT) COA Q900100", "output": "30039000"}, {"text_input": "What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA Q100700", "output": "29419000"}, {"text_input": "What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT17080037", "output": "29362500"}, {"text_input": "What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT17080035,37", "output": "29362500"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT SD ,15KG BOXALU (BHN BAKU SUPLEMEN) COA WB01870237", "output": "29362800"}, {"text_input": "What is the hs code for ROVIMIX A 1000,20KG BAL (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT17060596,597, 600", "output": "29362100"}, {"text_input": "What is the hs code for POLYQUTA 400KC (BHN BAKU KOSMETIK) COA. 70922135", "output": "39129090"}, {"text_input": "What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA.MLAH053091718", "output": "29341000"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT17030019", "output": "29362800"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70313060,62,64", "output": "29362500"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHNATE (BHN BAKU MAKANAN) COA TL01705671", "output": "29362400"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01611107", "output": "32041900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70413083", "output": "29362500"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70413083", "output": "29362500"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01704374", "output": "29362700"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01707061", "output": "29362400"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01704374", "output": "29362700"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01611107", "output": "32041900"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70603197,98", "output": "29362200"}, {"text_input": "What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91709254", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT17050024", "output": "29362600"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT17010034", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT17050024", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17050024", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17050024", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17050024", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17050024", "output": "29362600"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17030011", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17050024", "output": "29362600"}, {"text_input": "What is the hs code for RIBOFLAVIN 5PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1704053", "output": "29362300"}, {"text_input": "What is the hs code for CALCIUM D PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01705671", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT16120007", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ70309009", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01612020", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17040013", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17050062", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN PREMIX 103093-A (BHN BAKU MAKANAN) COA XW91709154", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN PREMIX, TYPE MM81 (105PCT) BHN BAKU MAKANAN, COA XW91709155", "output": "21069059"}, {"text_input": "What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91709329", "output": "21069059"}, {"text_input": "What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91709336", "output": "21069059"}, {"text_input": "What is the hs code for DWI-BI (BHN BAKU MAKANAN) COA XW91709330", "output": "21069059"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT17050014", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN, COA U17050741", "output": "29362100"}, {"text_input": "What is the hs code for DL A TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17010020", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT17070161", "output": "29362100"}, {"text_input": "What is the hs code for CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB00517033", "output": "29362700"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01706057", "output": "29362400"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17030085", "output": "29362400"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11706016", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN 5 PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1704053", "output": "29362300"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17040013", "output": "29362900"}, {"text_input": "What is the hs code for CALCIUM D PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01705671", "output": "29362400"}, {"text_input": "What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW91710014", "output": "21069059"}, {"text_input": "What is the hs code for PX 103070 C3 (BHN BAKU MAKANAN) COA XW91710015", "output": "21069059"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL01705671", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)BHN BAKU MAKANAN, COA UT17070162", "output": "29362100"}, {"text_input": "What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER (B.BAKU MAKANAN) COA WB00717300, SAMPLE NO COMM VALUE", "output": "29362500"}, {"text_input": "What is the hs code for EVERMAP 160K (BHN BAKU KOSMETIK) COA.C17050101E160K", "output": "38249999"}, {"text_input": "What is the hs code for CEFIXIME TRYHYDRATE (BHN BAKU OBAT) COA Q900100", "output": "29419000"}, {"text_input": "What is the hs code for CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA.1GC01CLB ZP48D 25MT", "output": "39139090"}, {"text_input": "What is the hs code for GRAPE SEED ORGANIC OIL C00031 (BHN BAKU KOSMETIK)COA RPH171004-ENBIO-RQ", "output": "39139090"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO170601", "output": "39139090"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK)COA EG543-170905", "output": "39139090"}, {"text_input": "What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIV171001-BGBIO", "output": "39139090"}, {"text_input": "What is the hs code for PEPPERMINT ORGANIC DISTILLATE 1:5 SB (BHN BAKU KOSMETIK) COA MEPD170701-BIO", "output": "39139090"}, {"text_input": "What is the hs code for LICORICE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA GLG171001-BGBIO", "output": "39139090"}, {"text_input": "What is the hs code for LIQUORICE ORGANIC OILY EXTRACT (BHN BAKU KOSMETIK) COA GLGT171001-HBIO", "output": "39139090"}, {"text_input": "What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA VIV171001-BGBIO", "output": "39139090"}, {"text_input": "What is the hs code for DICLOFENAC SODIUM (BHN BAKU OBAT) COA 170244", "output": "29224900"}, {"text_input": "What is the hs code for MAPROTILINE HCL (BHN BAKU OBAT) COA 1750000147", "output": "29214900"}, {"text_input": "What is the hs code for ERYTHROMYCIN ETHYL SUCCINATE BP (BHN BAKU OBAT) COA EES 061 117", "output": "29415000"}, {"text_input": "What is the hs code for PEG 400 (BAHAN BAKU KOSMETIK) COA.AKW0004548", "output": "39139090"}, {"text_input": "What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 17090806", "output": "38029090"}, {"text_input": "What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 71003, 71004", "output": "39139090"}, {"text_input": "What is the hs code for PIRACETAM INJECTABLE GRADE, BHN BAKU OBAT COA. PIR03317", "output": "29337900"}, {"text_input": "What is the hs code for CAFFEIN (BHN BAKU OBAT) COA 17091487,492, 493,495,500,501", "output": "29393000"}, {"text_input": "What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334489,93,97", "output": "29419000"}, {"text_input": "What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1752045, 1752065, 1752079", "output": "29242930"}, {"text_input": "What is the hs code for DESOXIMETASONE MICRONISED USP (BHN BAKU OBAT) COA 1601665549", "output": "29372200"}, {"text_input": "What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA. 17E2501", "output": "28399000"}, {"text_input": "What is the hs code for DAMIANA EXTRACT (BHN BAKU OBAT) COA BNPD170903", "output": "39139090"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP27917", "output": "28363000"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP27917", "output": "28363000"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP27917", "output": "28363000"}, {"text_input": "What is the hs code for ALLOPURINOL BP (BHN BAKU OBAT) COA ALP0060817", "output": "29335990"}, {"text_input": "What is the hs code for OXYTETRACYCLINE DIHYDRATE (BHN BAKU OBATUTK PAKAN TERNAK) COA ZT170903, ZT170927", "output": "29413000"}, {"text_input": "What is the hs code for OXYTETRACYCLINE HYDROCHLORIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 17101109 S/D 111", "output": "29413000"}, {"text_input": "What is the hs code for COLLISTIN SULFATE (BHN BAKU OBAT UTK PAKAN TERNAK) COA KB-CS-1707011", "output": "29419000"}, {"text_input": "What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20171011", "output": "29309090"}, {"text_input": "What is the hs code for LOSARTAN POTASSIUM (BHN BAKU OBAT) COA C5455-17-096", "output": "29332900"}, {"text_input": "What is the hs code for CAPTOPRIL (BHN BAKU OBAT) COA 5103-16-361", "output": "29339990"}, {"text_input": "What is the hs code for GLUCOSAMINE HCL (BHN BAKU OBAT) COA XH2017100501", "output": "29329990"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011H2LL02", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011H21L02", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM (BHN BAKU OBAT UTK PEWARNA TABLET)COA D180H6G001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180H6C003", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E5 PREMIUM LV (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011G9NL02", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM CR (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180G33001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180G81031", "output": "39123900"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG170616", "output": "29362700"}, {"text_input": "What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0217060072", "output": "29189900"}, {"text_input": "What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0217060064", "output": "29189900"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517090185,186", "output": "29189900"}, {"text_input": "What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P7024UA000, P7S22UA000", "output": "29189900"}, {"text_input": "What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01706014", "output": "29362700"}, {"text_input": "What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00496046,47", "output": "29189900"}, {"text_input": "What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA MCS1605151", "output": "29189900"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708160130,131", "output": "29189900"}, {"text_input": "What is the hs code for PARSOL MCX , 25KG PC (BHN BAKU KOSMETIK) COA MCS1605151", "output": "29189900"}, {"text_input": "What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01706014,15", "output": "29362700"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11706016, 7005", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT17070162", "output": "29362100"}, {"text_input": "What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01703807,810", "output": "29362400"}, {"text_input": "What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1752065, 1752079, 1711302", "output": "29242930"}, {"text_input": "What is the hs code for MEFENAMIC ACID COMPACTED (BHN BAKU OBAT) COA MFAC-1707393-A", "output": "29224900"}, {"text_input": "What is the hs code for SIMVASTATIN (BHN BAKU OBAT) COA DK40-1710012", "output": "29322090"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702564864", "output": "29372900"}, {"text_input": "What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 57422P", "output": "39139090"}, {"text_input": "What is the hs code for MEROPENEM TRIHYDRATE WITH SODIUM CARBONATE STERILE (B. BAKU OBAT) COA S0820170806", "output": "30032000"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598035", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599255", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599254", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599278", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599244", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599248", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599261", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599253", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599276", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599257", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599256", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY 200 BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599246", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH597939", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599277", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599260", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599245", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599265", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599335", "output": "39061090"}, {"text_input": "What is the hs code for THE MATCHA 1 P001062 (BHN BAKU KOSMETIK) COA 0000006989", "output": "33029000"}, {"text_input": "What is the hs code for PARSOL HMS, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA MCS1604115", "output": "29189900"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20171013", "output": "17029019"}, {"text_input": "What is the hs code for SK BIOLAND BIO SODIUM HYALURONATE POWDER (MMW) (B. BAKU KOSMETIK)COA CHP1170926", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-022307", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-181207", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK)COA NMP-L-333057", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-062297", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND ALWHITE 7 (BHN BAKU KOSMETIK) COA CLHW-011177", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND APRICOT EXTRACT (BHN BAKU KOSMETIK) COA PAS-013007", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK)COA PSFAC-010347", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-020497,033107", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-052297", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-062587", "output": "39139090"}, {"text_input": "What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599820", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB RED(BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599820", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599822", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599823", "output": "39061090"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00617194", "output": "29362100"}, {"text_input": "What is the hs code for ASCORBIC ACID ULTRA F.POWDER, 20KG BOX (BHN BAKU SUPLEMEN) COA TL01710783", "output": "29362700"}, {"text_input": "What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA. 8MT170656", "output": "30032000"}, {"text_input": "What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0019501,SAMPLE NO COMM VALUE", "output": "29337900"}, {"text_input": "What is the hs code for CUIRIDONE 5KG (BHN BAKU KOSMETIK) COA 001924,SAMPLE NO COMM VALUE", "output": "39139090"}, {"text_input": "What is the hs code for MICROCELAC 100 (BHN BAKU OBAT) COA L103151617A535, SAMPLE NO COMM VALUE", "output": "17021100"}, {"text_input": "What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP779713", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP781192X6248", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C RED #40/ALLURA RED AC AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP784989", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP779713", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP787026", "output": "32151900"}, {"text_input": "What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP779311", "output": "32151900"}, {"text_input": "What is the hs code for AMLODIPINE BESILATE BP (BHN BAKU OBAT) COA AB H 1710004", "output": "29339990"}, {"text_input": "What is the hs code for METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/17100536", "output": "29332900"}, {"text_input": "What is the hs code for CATECHINS (TEA EXTRACT) TEAVIGO (1KG), BHN BAKU MAKANAN, COA 709152", "output": "21012020"}, {"text_input": "What is the hs code for NEEM LEAF LIQUID B (BHN BAKU KOSMETIK), COA.170630", "output": "13021990"}, {"text_input": "What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 171058", "output": "13021990"}, {"text_input": "What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 171728", "output": "38249999"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 171383", "output": "13021990"}, {"text_input": "What is the hs code for SWERTIANIN P (BHN BAKU KOSMETIK) COA 170729, 171891", "output": "13021990"}, {"text_input": "What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 170864", "output": "13021990"}, {"text_input": "What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 170569", "output": "29329990"}, {"text_input": "What is the hs code for CLAIRJU (BHN BAKU KOSMETI) COA 171204", "output": "13021990"}, {"text_input": "What is the hs code for KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0130417", "output": "29339990"}, {"text_input": "What is the hs code for KF-96A-6CS (16KG) BHN BAKU KOSMETIK, COA 710929, 711930", "output": "39139090"}, {"text_input": "What is the hs code for KF-6038 (16KG) BHN BAKU KOSMETIK, COA 710185", "output": "39139090"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK COA B261017", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB231017", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG301017", "output": "39123900"}, {"text_input": "What is the hs code for DL A TOCOPHEROL (BHN BAKU KOSMETIK) COA UT17020023", "output": "29362800"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11707005", "output": "29362900"}, {"text_input": "What is the hs code for BEAUPLEX VH (BHN BAKU KOSMETIK) COA UF17082001", "output": "29189900"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708160131,70045, 70046", "output": "29189900"}, {"text_input": "What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA MCS1605151", "output": "29189900"}, {"text_input": "What is the hs code for PARSOL HS (BHN BAKU KOSMETIK) COA 0709160001", "output": "29189900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01704011", "output": "29362900"}, {"text_input": "What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01706015", "output": "29362700"}, {"text_input": "What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT667466", "output": "32151900"}, {"text_input": "What is the hs code for OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT667467", "output": "32151900"}, {"text_input": "What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT665884", "output": "32151900"}, {"text_input": "What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND170706", "output": "29372200"}, {"text_input": "What is the hs code for AC019KC PHYTOVITYL C 5KG BHN BAKU KOSMETIK COA 0018132", "output": "39139090"}, {"text_input": "What is the hs code for CLOZAPINE (BHN BAKU OBAT) COA 720106", "output": "29335990"}, {"text_input": "What is the hs code for CLOZAPINE (BHN BAKU OBAT) COA 720106", "output": "29335990"}, {"text_input": "What is the hs code for EMPILAN CIS (BAHAN BAKU KOSMETIK) COA.BLW0012900", "output": "34021390"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT SD, 15KGBOXALU (BHN BAKU SUPLEMEN) COA WB02170048, 0237", "output": "29362800"}, {"text_input": "What is the hs code for VISTANOL GDHR (BHN BAKU KOSMETIK) COA DIG, DJH, DKI", "output": "39139090"}, {"text_input": "What is the hs code for VISTANOL NPGC (BHN BAKU KOSMETIK) COA DJI", "output": "39139090"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA DHC, DKD", "output": "39139090"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA DKD", "output": "39139090"}, {"text_input": "What is the hs code for PROMOIS W-32U (BHN BAKU KOSMETIK) COA DGC", "output": "39139090"}, {"text_input": "What is the hs code for CILOSTAZOL USP (BHN BAKU OBAT) COA 6004CB2ARI", "output": "29337900"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01704311,4344,9537", "output": "29362700"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20170701", "output": "29362800"}, {"text_input": "What is the hs code for CARICILINE SB (BHN BAKU KOSMETIK)COA CAR170301-SB", "output": "39139090"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS170802", "output": "39139090"}, {"text_input": "What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH17902-ENBIO-RQ", "output": "39139090"}, {"text_input": "What is the hs code for ROMAN CHAMOMILLE PHYTELENE EG 088 (BHN BAKU KOSMETIK)COA EG088-170101", "output": "39139090"}, {"text_input": "What is the hs code for OLIVE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA OLE161101", "output": "39139090"}, {"text_input": "What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-171002-GS", "output": "39139090"}, {"text_input": "What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-171104-GS", "output": "39139090"}, {"text_input": "What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5497417", "output": "39139090"}, {"text_input": "What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5497417", "output": "39139090"}, {"text_input": "What is the hs code for ALDAVINE 5X (BHN BAKU KOSMETIK) COA 5493617", "output": "39139090"}, {"text_input": "What is the hs code for B WHITE (BHN BAKU KOSMETIK) COA 829015555H", "output": "39139090"}, {"text_input": "What is the hs code for B WHITE (BHN BAKU KOSMETIK) COA 829015555H", "output": "39139090"}, {"text_input": "What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830015655H", "output": "39139090"}, {"text_input": "What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK), COA 769015525H", "output": "39139090"}, {"text_input": "What is the hs code for LANABLUE (BHN BAKU KOSMETIK), COA 5497917", "output": "39139090"}, {"text_input": "What is the hs code for LANABLUE (BHN BAKU KOSMETIK) COA 5512317", "output": "39139090"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5509217", "output": "39139090"}, {"text_input": "What is the hs code for MELANOSTATINE 5 BG (50PPM) (BHN BAKU KOSMETIK) COA 817045132H", "output": "39139090"}, {"text_input": "What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025654H", "output": "39139090"}, {"text_input": "What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025654H", "output": "39139090"}, {"text_input": "What is the hs code for EXO H(BHN BAKU KOSMETIK) COA 715025629H", "output": "39139090"}, {"text_input": "What is the hs code for B WHITE (BHN BAKU KOSMETIK) COA 829015243H", "output": "39139090"}, {"text_input": "What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830015554H", "output": "39139090"}, {"text_input": "What is the hs code for CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785015526H", "output": "39139090"}, {"text_input": "What is the hs code for EMULMETIK TM 100 (BHN BAKU KOSMETIK) COA 1627802", "output": "39139090"}, {"text_input": "What is the hs code for HELIOGEL TM (BHN BAKU KOSMETIK) COA 1719501", "output": "39139090"}, {"text_input": "What is the hs code for MELANOSTATINE 5BG (50PPM) (BHN BAKU KOSMETIK) COA 817044833G", "output": "39139090"}, {"text_input": "What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) COA 1634916", "output": "39139090"}, {"text_input": "What is the hs code for PRO LIPO TM NEO (BHN BAKU KOSMETIK) COA 1726902", "output": "39139090"}, {"text_input": "What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025654H", "output": "39139090"}, {"text_input": "What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015372H", "output": "39139090"}, {"text_input": "What is the hs code for CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 10005022", "output": "90189090"}, {"text_input": "What is the hs code for CANNULA 25G PIX'L 0,5 X40 (BHN BAKU OBAT) COA 10005022", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE SKINB VITLIDO 1MLD16 (BHN BAKU OBAT) COA 15320-2", "output": "90189090"}, {"text_input": "What is the hs code for REST SKINB VITALLGHLIDO 1MLD16 (BHN BAKU OBAT) COA 15430-2", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE LYFT LIDOCAINE 1 ML (BHN BAKU OBAT) COA 15468-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE REFYNE 1ML (BHN BAKU OBAT) COA 15100-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLENE KYSSE 1ML (BHN BAKU OBAT) COA 15268-1", "output": "90189090"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU SUPLEMEN) COA.TS00008992", "output": "29362500"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU MAKANAN) COA TA00008992", "output": "29362500"}, {"text_input": "What is the hs code for METHYLOREDNISOLONE (BHN BAKU OBAT) COA 04.1064-171002", "output": "29372900"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONIZED (BHN BAKU OBAT) COA F-04 1064-171001", "output": "29372900"}, {"text_input": "What is the hs code for CAPSULAC (R) 60 (BHN BAKU OBAT) COA. L100413917A545", "output": "17021100"}, {"text_input": "What is the hs code for MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103153017A535", "output": "17021100"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101853917A533", "output": "17021100"}, {"text_input": "What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BH08407", "output": "29349990"}, {"text_input": "What is the hs code for GABAPENTIN (BHN BAKU OBAT) COA GBW1710282", "output": "29224900"}, {"text_input": "What is the hs code for TRANSCUTOL P (BHN BAKU OBAT) COA.165110", "output": "28399000"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 01/17GAAK", "output": "28399000"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU OBAT) COA 01/17GAAK,SAMPLE NO COMM VALUE", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE AM PELLETS (BAHAN BAKU OBAT) COA 17E3907", "output": "28399000"}, {"text_input": "What is the hs code for VISTANOL GDHR (BHN BAKU KOSMETIK) COA DIG, DJH, DKI", "output": "39139090"}, {"text_input": "What is the hs code for VISTANOL NPGC (BHN BAKU KOSMETIK) COA DJI", "output": "39139090"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA DHC, DKD", "output": "39139090"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA DKD", "output": "39139090"}, {"text_input": "What is the hs code for PROMOIS W-32U (BHN BAKU KOSMETIK) COA DGC", "output": "39139090"}, {"text_input": "What is the hs code for PANTOPROZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT,COA APSS17004", "output": "29333990"}, {"text_input": "What is the hs code for CULTURESWAB LIQUID STUART SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 171475299", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7171538", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009699", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7193780,7242803", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6228993", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7255892", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121602,7171820", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7143641", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121569,7227521", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171538", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053919", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7110592", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7109945", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7018890", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121848", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7103621,3675", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7009966,7102560", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7171993", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7116560", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7142578", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7177772", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7114681", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7251531", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7047892", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7095554", "output": "38210010"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7116556", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7109972,7193548", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242928", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171972", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SACCHAROSE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7157502", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7114758,7152671", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121863", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7005857", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7109946", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060807", "output": "38210010"}, {"text_input": "What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 170707116", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC /NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7213860,...", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7159723", "output": "38210010"}, {"text_input": "What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7185935", "output": "38210010"}, {"text_input": "What is the hs code for SACHET GASPAK EX CAMPY CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7277634", "output": "38210010"}, {"text_input": "What is the hs code for POUCH GASPAK EZ CO2 SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7215899", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 6278558", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171538", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053919", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7109945", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7103675", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7095842", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G. (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7102560", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171993", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7208901", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7271779", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7151674", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7193661", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D-MANITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 6201884", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060807", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7220797", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7142625", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE AGAR NOBLE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7256726", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7198993", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121860", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CORN MEAL AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121881", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7207682,7684", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLEEE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7143744", "output": "38210010"}, {"text_input": "What is the hs code for GASPAK EZ STANDARD INCUBATIO CONTAINER (M.UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7261716010", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7235830", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE GN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7235667", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7198543", "output": "38210010"}, {"text_input": "What is the hs code for PAIL LAURYL TRYPTOSE BROTH 2KG (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7143979", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7135968", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLEMICRO INOCULUM BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6342747", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7009699", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7177823", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7153977", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PURPLE BROTH BASE BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7163988", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 7164997", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7193914", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TINSDALE BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6026724", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTONE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7143892", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7109953", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE WL DIFFERENTIAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7220799", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7206693", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE FOLIC ACID ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7277529", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7221976", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7221983,7228753", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060854", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7215691", "output": "38210010"}, {"text_input": "What is the hs code for VIAL TINSDALE ENRICHMENT 6X15ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7110837", "output": "38210010"}, {"text_input": "What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7276698", "output": "38210010"}, {"text_input": "What is the hs code for ANNEXIN V FITC APOP DTEC KIT I 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7303806", "output": "38210010"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7152580", "output": "38210010"}, {"text_input": "What is the hs code for CD56 PE NCAM16.2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7235819", "output": "38210010"}, {"text_input": "What is the hs code for FASTIMMUNE TNF-ALP APC 6401.1111 100 TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6357648", "output": "38210010"}, {"text_input": "What is the hs code for ANTI BCL 2 FITC 100 50 TST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7212889", "output": "38210010"}, {"text_input": "What is the hs code for MS LGG1 ISOTYPE CONTROL APC X40 ASR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7262746", "output": "38210010"}, {"text_input": "What is the hs code for CD23 PE EBVCS 5 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7226533", "output": "38210010"}, {"text_input": "What is the hs code for CD25 PE 2A3 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7293821", "output": "38210010"}, {"text_input": "What is the hs code for HUMAN IL 2 APC 5344.111 100 TESTS(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7144744560", "output": "38210010"}, {"text_input": "What is the hs code for CD4 PERCP CY5.5 SK3 RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7159644", "output": "38210010"}, {"text_input": "What is the hs code for FASTIMMUNE COSTIM CD28/CD49D 0.3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7157921", "output": "38210010"}, {"text_input": "What is the hs code for CD3 FITC SK7 50 TESTS IVD(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7221981", "output": "38210010"}, {"text_input": "What is the hs code for HU IL4 APC MP4-25D2 100UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7005833", "output": "38210010"}, {"text_input": "What is the hs code for HU IL-10 APC JES3-19F1 100UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7124679", "output": "38210010"}, {"text_input": "What is the hs code for CYTOFIX/CYTOPERM W/GOLG/PLUG KLT 250TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7012738", "output": "38210010"}, {"text_input": "What is the hs code for HU CD19 PE HIB19 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7217557", "output": "38210010"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X31MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7152580", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7240715,7271504", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7187918", "output": "38210010"}, {"text_input": "What is the hs code for VIAL ISOVITALEX ENRICHMENT 10ML 5 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7237592", "output": "38210010"}, {"text_input": "What is the hs code for HU HLA-A2 FITC BB7.2 100UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7110642", "output": "38210010"}, {"text_input": "What is the hs code for CD8 PER-CY5.5 SK1 50 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7226531,7304693", "output": "38210010"}, {"text_input": "What is the hs code for HU CD25 PE M-A251 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7012613", "output": "38210010"}, {"text_input": "What is the hs code for HU CD69 PE FN50 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171993", "output": "38210010"}, {"text_input": "What is the hs code for HU CD8 FITC HIT8A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7032886", "output": "38210010"}, {"text_input": "What is the hs code for HU LGG FITC G18-145 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6263638", "output": "38210010"}, {"text_input": "What is the hs code for HU IL-17A PE N49-653 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7097563", "output": "38210010"}, {"text_input": "What is the hs code for HU CD127 PE-CY7 HIL 7R M21 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7137618", "output": "38210010"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7141671", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7240707,715", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6197586", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7187918", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7198968", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7102829", "output": "38210010"}, {"text_input": "What is the hs code for CD11C PE CE (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH 7254547", "output": "38210010"}, {"text_input": "What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7186970", "output": "38210010"}, {"text_input": "What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7226996", "output": "38210010"}, {"text_input": "What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7226520", "output": "38210010"}, {"text_input": "What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7305643", "output": "38210010"}, {"text_input": "What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7251512", "output": "38210010"}, {"text_input": "What is the hs code for IFN GAMMA APC RUO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7236968", "output": "38210010"}, {"text_input": "What is the hs code for CD3 PERCP SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7177904", "output": "38210010"}, {"text_input": "What is the hs code for CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7255772", "output": "38210010"}, {"text_input": "What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7174889", "output": "38210010"}, {"text_input": "What is the hs code for HU CD206 FITC 19.2 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7258565", "output": "38210010"}, {"text_input": "What is the hs code for HU CD209 APC DCN46 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 7201902", "output": "38210010"}, {"text_input": "What is the hs code for HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7125585", "output": "38210010"}, {"text_input": "What is the hs code for HU CD64 FITC 10.1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6280735", "output": "38210010"}, {"text_input": "What is the hs code for HU CD40 FITC 5C3 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7132522", "output": "38210010"}, {"text_input": "What is the hs code for HU CD86 FITC 2331 (FUN-1) 100TST (MEDIA PENGEMBANGAN MIKRO ORGANISME) BATCH 7132528", "output": "38210010"}, {"text_input": "What is the hs code for MS LGG1KPA LTCL FITC MOPC-21 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6301865", "output": "38210010"}, {"text_input": "What is the hs code for HU HLA-DR FITC L243 (G46-6) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6263631", "output": "38210010"}, {"text_input": "What is the hs code for LYSING BUFFER 10X CONCENTRATE 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7220684", "output": "38210010"}, {"text_input": "What is the hs code for HU CD163 PE GHI/61 100TST (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7160585", "output": "38210010"}, {"text_input": "What is the hs code for HU CD274 PE MIH1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7096869", "output": "38210010"}, {"text_input": "What is the hs code for HU CD11C APC B-LY6 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7124669", "output": "38210010"}, {"text_input": "What is the hs code for HU REGULATORY TCELL CKTL 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7234824", "output": "38210010"}, {"text_input": "What is the hs code for ANTI LAMBDA FITC 1-155-2 50TST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7236555", "output": "38210010"}, {"text_input": "What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7200567", "output": "38210010"}, {"text_input": "What is the hs code for ANTI HLA DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7159533", "output": "38210010"}, {"text_input": "What is the hs code for CYTOFIX FIXATION BUFFER 100ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7031802", "output": "38210010"}, {"text_input": "What is the hs code for STAIN BUFFER FBS 500ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7180893", "output": "38210010"}, {"text_input": "What is the hs code for HU CD4 FITC RPA-T4 100TST(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6340599", "output": "38210010"}, {"text_input": "What is the hs code for HU IL-10 PE JES3-19F1 100TST (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6238570", "output": "38210010"}, {"text_input": "What is the hs code for CYANOCOBALAMINE VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1705232691", "output": "29362600"}, {"text_input": "What is the hs code for NYMPHELINE PROV 5KG (BHN BAKU KOSMETIK) COA 0020265", "output": "39139090"}, {"text_input": "What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1710062,63,78,79,11004 S/D 19", "output": "29224900"}, {"text_input": "What is the hs code for B.I.O KEY SELENIUM VM (BHN BAKU OBAT UTK PAKAN TERNAK) COA 150917-755", "output": "23099090"}, {"text_input": "What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7186680", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER DMACA INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7143639", "output": "38210010"}, {"text_input": "What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7235677", "output": "38210010"}, {"text_input": "What is the hs code for EUXYL PE 9010 (SAMPLES) 100 ML FL (BHN BAKU KOSMETIK) COA 1332918 ,SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 712 100ML FL (BHN BAKU KOSMETIK) COA 1335589, SAMPLE NO COMM VALUE", "output": "38249999"}, {"text_input": "What is the hs code for S AND M PHENOXYETHANOL RCH 100 ML FL (BHN BAKU KOSMETIK) COA 1333316", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 CN 10KG KA (BHN BAKU KOSMETIK) COA 1331782,1334383,1335942", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 100 CN 10KG KA (BHN BAKU KOSMETIK) COA 1335179", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 CN 10KG KA (BHN BAKU KOSMETIK) COA 1331636,1333518, 1335594", "output": "38249999"}, {"text_input": "What is the hs code for SENSIDIN DO CN 10KG CA (BHN BAKU KOSMETIK) COA 1336925, 1338671", "output": "38249999"}, {"text_input": "What is the hs code for GROTANOL 3025 CN 10 KG KA (BHN BAKU KOSMETIK) COA 1333897", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 900 CN 10 KG KA (BHN BAKU KOSMETIK) COA 1336571", "output": "38249999"}, {"text_input": "What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA 20171024", "output": "17023010"}, {"text_input": "What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA 20171019", "output": "11081200"}, {"text_input": "What is the hs code for TECA 80160W (BHN BAKU KOSMETIK)COA 170929040256", "output": "39139090"}, {"text_input": "What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 185622", "output": "29332900"}, {"text_input": "What is the hs code for DOPAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA.17100531,532", "output": "29222900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180GCR001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180H4I001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180G6P003", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180G1B001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180FCT001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D0180G7Q031", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180FCL002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180G7V031", "output": "39123900"}, {"text_input": "What is the hs code for GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUMPLEMEN) COA 17277", "output": "39139090"}, {"text_input": "What is the hs code for LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 16490", "output": "38249999"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE PURIMOX COMPACTED (BHN BAKU OBAT) COA M529461, 465", "output": "29411019"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE PURIMOX POWDER (BHN BAKU OBAT) COA M483534", "output": "29411019"}, {"text_input": "What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334492,94,95", "output": "29419000"}, {"text_input": "What is the hs code for LIVER DESSICATED POWDER (BHN BAKU OBAT) COA 5815 1123", "output": "39139090"}, {"text_input": "What is the hs code for PUROLAN PD-LO (BHN BAKU KOSMETIK) COA 01140917", "output": "39139090"}, {"text_input": "What is the hs code for FLUOROMETHOLONE MICRONISED USP BP JP (BHN BAKU OBAT) COA 1701261241", "output": "29372200"}, {"text_input": "What is the hs code for VASELINE BLANCHE CODEX 236 FUT 175KG (BHN BAKU KOSMETIK) COA 17J26V02", "output": "39139090"}, {"text_input": "What is the hs code for INSTANT TEA POWDER (TEA EXTRACT) BHN BAKU MAKANAN, COA 711191, 92", "output": "39139090"}, {"text_input": "What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA.LC 037-7-201", "output": "17021100"}, {"text_input": "What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA.LC 038-7-801, LC 040-7-801", "output": "17021100"}, {"text_input": "What is the hs code for CYPROTERONE ACETATE MICRONIZED (BHN BAKU OBAT) COA NX2124M", "output": "29372900"}, {"text_input": "What is the hs code for TRIAMCINOLONE ACETONIDE MICRONIZED (BHN BAKU OBAT) COA NX2347M", "output": "29372200"}, {"text_input": "What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NW2230M", "output": "29372200"}, {"text_input": "What is the hs code for METHISOPRINOL (BHN BAKU OBAT) COA.MTP7100404", "output": "29349990"}, {"text_input": "What is the hs code for OPADRY II GRAY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600189", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600190", "output": "38249999"}, {"text_input": "What is the hs code for PARSOL 1789, 25KG BOX (BHN BAKU KOSMETIK) COA 031705098,99", "output": "29189900"}, {"text_input": "What is the hs code for NIACINAMIDE PC,20KG BAL (BHN BAKU KOSMETIK) COA OP81706022,7014", "output": "29362900"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01707068,61", "output": "29362400"}, {"text_input": "What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91711063,64", "output": "29189900"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517090186,200", "output": "29189900"}, {"text_input": "What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01706010,15", "output": "29362700"}, {"text_input": "What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01706015", "output": "29362700"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70313065", "output": "29362500"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A(BHN BAKU SUPLEMEN) COA UT17020017", "output": "29362100"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70702397", "output": "29362200"}, {"text_input": "What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91710093", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17050746,47", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT17050015", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17020017", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17050745", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN PREMIX,TYPE MM81 (105PCT) (BHN BAKU MAKANAN) COA UT17050745", "output": "21069059"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70702397", "output": "29362200"}, {"text_input": "What is the hs code for CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB00517033,35", "output": "29362700"}, {"text_input": "What is the hs code for FERROUS FUMARATE USP/EP (BHN BAKU OBAT) COA.2017/279", "output": "29171900"}, {"text_input": "What is the hs code for SILYBIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10495/M1", "output": "38249999"}, {"text_input": "What is the hs code for SILYMARIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10447/M1", "output": "38249999"}, {"text_input": "What is the hs code for IVY DRY HYDR EXTR 10PCT HPLC (BAHAN BAKU SUPLEMEN) COA 09745/M1", "output": "13021990"}, {"text_input": "What is the hs code for BUTCHERBROOM DRY HYDR EX 9-11PCT (BAHAN BAKU SUPLEMEN) COA 10438/M1", "output": "13021990"}, {"text_input": "What is the hs code for CENTELLA ASIATICA TRITERP (BHN BAKU SUPLEMEN) COA 32465/M1", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA/PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 31730/H1", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 32465/M1", "output": "38249999"}, {"text_input": "What is the hs code for ECHINACEA ANG DRY PURIF EX (BHN BAKU SUPLEMEN) COA 32226/M1", "output": "13021990"}, {"text_input": "What is the hs code for P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 32190/M1", "output": "13021990"}, {"text_input": "What is the hs code for VACCINIUM MYRTILLUS DRY EX (BHN BAKU SUPLEMEN) COA 32501/M1", "output": "13021990"}, {"text_input": "What is the hs code for CEFEPIME FOR INJECTION (BHN BAKU OBAT) COA SI/CFP/00601117", "output": "30032000"}, {"text_input": "What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334502,503,505", "output": "29419000"}, {"text_input": "What is the hs code for BIOTOX (R) (BHN BAKU OBAT UTK PAKAN TERNAK) COA 131017-830", "output": "23099090"}, {"text_input": "What is the hs code for E.C.O TRACE(R) ZN 25PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC11021702", "output": "29224900"}, {"text_input": "What is the hs code for E.C.O TRACE(R) MN 20PCT (BHN BAKU UTK PAKAN TERNAK) COA BC22011702", "output": "29224900"}, {"text_input": "What is the hs code for E.C.O.TRACE(R) FE 20PCT(BHN BAKU OBAT UTK PAKAN TERNAK) COA BC17051602", "output": "29224900"}, {"text_input": "What is the hs code for B.I.O.KEY SELENIUM VM (BHN BAKU OBAT UTK PAKAN TERNAK) COA 241017-875", "output": "23099090"}, {"text_input": "What is the hs code for LIQUIPHOS (R) STRONG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 270917-782", "output": "23099090"}, {"text_input": "What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK), COA.172031", "output": "29329990"}, {"text_input": "What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 171728", "output": "38249999"}, {"text_input": "What is the hs code for CLAIRJU (BHN BAKU KOSMETIK) COA 171895", "output": "13021990"}, {"text_input": "What is the hs code for MANDARIN CLEAR (BHN BAKU KOSMETIK) COA 172038", "output": "13021990"}, {"text_input": "What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 171548", "output": "13021990"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20170301", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT17020023", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT17020023", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT17020014", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT17050027", "output": "29362600"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01701017, UE01611108", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT17050027", "output": "29362600"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20170301", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS(BHN BAKU SUPLEMEN) COA UT17050027", "output": "29362600"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT17050015", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17050027", "output": "29362600"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE1704011", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT17050015", "output": "29362900"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL01705495", "output": "29362700"}, {"text_input": "What is the hs code for RIBOFLAVIN 5 PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1704054", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17060064", "output": "29362900"}, {"text_input": "What is the hs code for CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB00517035", "output": "29362700"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11707006", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT17050063", "output": "29362900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17030089", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17070024", "output": "29362900"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01707066", "output": "29362400"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1704053,54", "output": "29362300"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHNATE (BHN BAKU SUPLEMEN) COA TL01706703", "output": "29362400"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70803256", "output": "29362200"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS ( BHN BAKU SUPLEMEN), COA UT17050030", "output": "32041900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17030089", "output": "29362800"}, {"text_input": "What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ70309009", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT17070162", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT17050063", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01612020", "output": "29362900"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01611108", "output": "32041900"}, {"text_input": "What is the hs code for CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB00517035", "output": "29362700"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01704011", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT16120008", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11707006", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN), COA UQ70310071", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ70310071", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17060064", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT17060064", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17050063,64", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT17030020,21", "output": "29362800"}, {"text_input": "What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT17090049,50", "output": "29362500"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599902", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599885", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599901", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599884", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599900", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599913", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599880", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599820", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599881", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599893", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599883", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599892", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599907", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599879", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599882", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599908", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599914", "output": "38249999"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB00617195", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT SD,15KGBOXALU (BHN BAKU SUPLEMEN) COA WB08170237", "output": "29362800"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT,CWS/S TG (BHN BAKU SUPLEMEN) COA UT17090018", "output": "32030010"}, {"text_input": "What is the hs code for GENIVIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010017", "output": "29329990"}, {"text_input": "What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17070052", "output": "29362100"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT17060025", "output": "32041900"}, {"text_input": "What is the hs code for COATED ASCORBIC ACID TYPE EC (BHN BAKU SUPLEMEN) COA TL01707080", "output": "29362700"}, {"text_input": "What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00517653", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00617195", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT SD, 15KGBOXALU (BHN BAKU SUPLEMEN) COA WB08170237", "output": "29362800"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17090018", "output": "32030010"}, {"text_input": "What is the hs code for VITAMIN A AND D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT17080035", "output": "29362100"}, {"text_input": "What is the hs code for CYANOCOBALAMINE VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1705061866", "output": "29362600"}, {"text_input": "What is the hs code for LIDOCAINE HCL (BHN BAKU OBAT) COA 186065", "output": "29242990"}, {"text_input": "What is the hs code for OPADRY ORANGE (BAHAN BAKU UNTUK PEWARNA TABLET) COA. GA631023", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA631024", "output": "38249999"}, {"text_input": "What is the hs code for MATCHA GREEN TEA EXTRACT ( BHN BAKU KOSMETIK), COA CSP 17013 EOU", "output": "39139090"}, {"text_input": "What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599806", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600477", "output": "38249999"}, {"text_input": "What is the hs code for PREDNISONE (BHN BAKU OBAT) COA.K03B20171101, 102,103", "output": "29372100"}, {"text_input": "What is the hs code for BETAMETHASONE VALERATE USP (BHN BAKU OBAT) COA.S-X21-170901", "output": "29372200"}, {"text_input": "What is the hs code for LIPOID S 20 (BHN BAKU OBAT) COA.572000-2170118/001-028 (28)", "output": "29232010"}, {"text_input": "What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20171108", "output": "29309090"}, {"text_input": "What is the hs code for LEVOFLOXACIN HEMIHYDRATE (FREE ALKALINE) B. BAKU OBAT, COA C008-1705602", "output": "29349990"}, {"text_input": "What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA 20171024", "output": "17023010"}, {"text_input": "What is the hs code for LIPOID S 67 F (BHN BAKU OBAT) COA.576200-2160029/020-024 (5)", "output": "29232010"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA171002", "output": "39139090"}, {"text_input": "What is the hs code for MAGOUSTAN HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA GAM171101-B", "output": "39139090"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO170601", "output": "39139090"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170904", "output": "39139090"}, {"text_input": "What is the hs code for LOTUS OILY EXTRACT (BHN BAKU KOSMETIK)COA NEN171107-H", "output": "39139090"}, {"text_input": "What is the hs code for ROSE OILY EXTRACT (BHN BAKU KOSMETIK) COA ROS171006-H", "output": "39139090"}, {"text_input": "What is the hs code for LINEN OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA LIU170905-H", "output": "39139090"}, {"text_input": "What is the hs code for HORSECHESTNUT PHYTELENE EG042 (BHN BAKU KOSMETIK) COA EG042-151103", "output": "39139090"}, {"text_input": "What is the hs code for PREMIX VITAMIN OIL TYPE GBP (BHN BAKU MAKANAN) COA XW91711334", "output": "21069059"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN535963", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN535962", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN535970", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN535966", "output": "35051010"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01611108", "output": "32041900"}, {"text_input": "What is the hs code for GARCINIA CAMBOGIA 60PCT(B. BAKU OBAT) COA FGC1711008 SAMPLE NO COMM VALUE", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK)COA U171201", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-033107", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND LICORICE EXTRACT (BHN BAKU KOSMETIK) COA GGB-022887", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK)COA OHA-132607", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-052297", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 2017G1492", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSFAC-010347", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE 1PCT SOLUTION (BHN BAKU KOSMETIK)COA HASC-391517", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP2170926", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011017", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-051277, SFP-N-071007", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND GREEN TEA SEED OIL (BHN BAKU KOSMETIK) COA CSSO-042817", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-022017", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-032007", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-062587", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND ROYAL JELLY EXTRACT (BHN BAKU KOSMETIK) COA RJE-010867", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK) COA CPG-642867", "output": "39139090"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO170601", "output": "39139090"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO171102", "output": "39139090"}, {"text_input": "What is the hs code for CHAMOMILLA COESMELENE (BHN BAKU KOSMETIK)COA MAC-CO171102", "output": "39139090"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-170905", "output": "39139090"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG 543(BHN BAKU KOSMETIK) COA EG543-171106", "output": "39139090"}, {"text_input": "What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-171105-GS", "output": "39139090"}, {"text_input": "What is the hs code for WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK) COA EG138-160301", "output": "39139090"}, {"text_input": "What is the hs code for LOTUS OILY EXTRACT (BHN BAKU KOSMETIK) COANEN171107-H", "output": "39139090"}, {"text_input": "What is the hs code for ROSE OILY EXTRACT (BHN BAKU KOSMETIK) COA ROS171006-H", "output": "39139090"}, {"text_input": "What is the hs code for CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA.1GC01CLB ZP48D 25MT", "output": "39139090"}, {"text_input": "What is the hs code for PLAISANCE P116808 (BHN BAKU KOSMETIK) COA 0000008112", "output": "33029000"}, {"text_input": "What is the hs code for THE MATCHA 1 P001062 (BHN BAKU KOSMETIK) COA.0000010552", "output": "33029000"}, {"text_input": "What is the hs code for SODIUM VALPROATE (BAHAN BAKU OBAT) COA.450871 (550)", "output": "29159090"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M595575,84", "output": "29411019"}, {"text_input": "What is the hs code for PROMOIS W-32 (BHN BAKU KOSMETIK) COA DFC", "output": "39139090"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA DKD", "output": "39139090"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA DLE", "output": "39139090"}, {"text_input": "What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK) COA.LDC 239 17", "output": "39139090"}, {"text_input": "What is the hs code for SPI PX 507 (BHN BAKU MAKANAN) COA XW91711020", "output": "21069059"}, {"text_input": "What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91711043", "output": "21069059"}, {"text_input": "What is the hs code for PX 103070-C3 (BHN BAKU MAKANAN) COA XW91711127", "output": "21069059"}, {"text_input": "What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91711043, 42, 44", "output": "21069059"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 25KG BAL (BHN BAKU MAKANAN) COA WB00817997", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN) COA UT17070757,758,761", "output": "29362100"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT17030089", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17050016", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT17050012,16", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT17050029,12", "output": "29362600"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT17060036", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT17060036", "output": "29362800"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 25KG BAL(BHN BAKU SUPLEMEN) COA WB00817997", "output": "29362700"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70702404,10", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70803257", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70702404", "output": "29362200"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT17060036", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT17060036", "output": "29362800"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE ( BHN BAKU MAKANAN) COA UQ70803257,61", "output": "29362200"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ70610106", "output": "29362300"}, {"text_input": "What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91711253", "output": "21069059"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT17060036", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU MAKANAN) COA UT16120008", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1704054", "output": "29362300"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17030089", "output": "29362800"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70702410", "output": "29362200"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01704011", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11707006", "output": "29362900"}, {"text_input": "What is the hs code for EPERISONE HYDROCHLORIDE SYN-TECH (BAHAN BAKU OBAT) COA.E10-17036", "output": "29333990"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK,COA 01/17GL4", "output": "28399000"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK,COA 01/17-GL4 ,SAMPLE NO COMMERCIAL VALUE", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 17EO606", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 17E2501", "output": "28399000"}, {"text_input": "What is the hs code for CORTISONE ACETATE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1700931387", "output": "29372900"}, {"text_input": "What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN0160117", "output": "29221990"}, {"text_input": "What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN1400917", "output": "29221990"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01709537", "output": "29362700"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01710871,884", "output": "29362700"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7254257", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7222082", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7254257", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7254255", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6320612,7121", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DERMATOPHYTE TEST MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7284789", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE UNIVERSAL PREENRICHMENT BROTH...(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7102708", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA BROTH BASE FREY 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7153943", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE COLUMBIA CNA AGAR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7157948", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7234535", "output": "38210010"}, {"text_input": "What is the hs code for PERMEABILIZING SOLUTION 2 10X 500 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6357992", "output": "38210010"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242704", "output": "38210010"}, {"text_input": "What is the hs code for TUBE CRYSTAL E ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7257856", "output": "38210010"}, {"text_input": "What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7191543", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7234535", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171538", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7250997", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7250997", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7103675", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7095842", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7171993", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7142625", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7205816", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7198993", "output": "38210010"}, {"text_input": "What is the hs code for PAIL BACTO AGAR 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7277945", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BORDET GENGOU AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7114770", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CELLOBIOSE 25G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7156992", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CHROMAGAR ORIENTATION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242742", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7143744", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7198543", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MALT EXTRACT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7094426", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MARINE BROTH 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7156792", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MOTILITY TEST MEDIUM BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7271845", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MR-VP BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7235673", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7153524", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7102574", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PHOSPHATE BUFFER PH 7.2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121877", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7153977", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIADIS MSRV 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7306707", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD AGAR MODIFIED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7214816,727177", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7206693", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/ NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7289696", "output": "38210010"}, {"text_input": "What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 170707116", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7254257", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7156929", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE L-ARABINOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121810", "output": "38210010"}, {"text_input": "What is the hs code for LANSOPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA LP0217C028", "output": "29333990"}, {"text_input": "What is the hs code for RAMIPRIL USP (BHN BAKU OBAT) COA RL/17008", "output": "29339990"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE USP (BHN BAKU OBAT) COA M110395", "output": "29339990"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01707059", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT17080082", "output": "29362100"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01710962", "output": "29362700"}, {"text_input": "What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 1717614", "output": "39139090"}, {"text_input": "What is the hs code for B WHITE (BHN BAKU KOSMETIK) COA 829015350H", "output": "39139090"}, {"text_input": "What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830015574H", "output": "39139090"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK), COA 1727604", "output": "39139090"}, {"text_input": "What is the hs code for MELANOSTATINE 5 BG (50PPM) (BHN BAKU KOSMETIK), COA 817045132H", "output": "39139090"}, {"text_input": "What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025654H", "output": "39139090"}, {"text_input": "What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5471517", "output": "39139090"}, {"text_input": "What is the hs code for B WHITE (BHN BAKU KOSMETIK) COA 829015350H", "output": "39139090"}, {"text_input": "What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769015443H", "output": "39139090"}, {"text_input": "What is the hs code for CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785015713H", "output": "39139090"}, {"text_input": "What is the hs code for ECOGEL TM (BHN BAKU KOSMETIK) COA 1727302", "output": "39139090"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1727604", "output": "39139090"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5515717", "output": "39139090"}, {"text_input": "What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015528H", "output": "39139090"}, {"text_input": "What is the hs code for EXO H (BHN BAKU KOSMETIK) COA 715025820H", "output": "39139090"}, {"text_input": "What is the hs code for HUMAN FOXP3 STAINING KIT PE 100 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)", "output": "38210010"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7152580", "output": "38210010"}, {"text_input": "What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7235889", "output": "38210010"}, {"text_input": "What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7226996", "output": "38210010"}, {"text_input": "What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7251512", "output": "38210010"}, {"text_input": "What is the hs code for CD3 PERCP SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7299641", "output": "38210010"}, {"text_input": "What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7242832", "output": "38210010"}, {"text_input": "What is the hs code for STAIN BUFFER FBS 500ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7180893", "output": "38210010"}, {"text_input": "What is the hs code for HU CD4 FITC RPA-T4 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6340599", "output": "38210010"}, {"text_input": "What is the hs code for HU CD25 PE M-A251 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7012613", "output": "38210010"}, {"text_input": "What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7219674", "output": "38210010"}, {"text_input": "What is the hs code for CD4 APC SK3 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7030773", "output": "38210010"}, {"text_input": "What is the hs code for MS LG KPA COMP BEAD SET 6ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7109904", "output": "38210010"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7152580", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7271522,7289680", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7263772,...", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6197586", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I AND VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7187918", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7102829", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6307974", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7271856", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7214775,7256541", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7102829", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7263732", "output": "38210010"}, {"text_input": "What is the hs code for TUBE PENASE CONCENTRATE 10X20MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7284808", "output": "38210010"}, {"text_input": "What is the hs code for CD22 FITC S-HCL-1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7243688", "output": "38210010"}, {"text_input": "What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7276698", "output": "38210010"}, {"text_input": "What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7251512", "output": "38210010"}, {"text_input": "What is the hs code for CD3 PERCP SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7299641", "output": "38210010"}, {"text_input": "What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7200567", "output": "38210010"}, {"text_input": "What is the hs code for LYSING BUFFER 10X CONCENTRATE 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7297866", "output": "38210010"}, {"text_input": "What is the hs code for FASTIMMUNE CD69/CD3 PERCP/PE 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7023965", "output": "38210010"}, {"text_input": "What is the hs code for FASTIMMUNE IFN GAMMA/IL 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7278807", "output": "38210010"}, {"text_input": "What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7220771", "output": "38210010"}, {"text_input": "What is the hs code for VIAL NOVOBIOCIN SUPPLEMENT 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7201793", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7263786", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7263786", "output": "38210010"}, {"text_input": "What is the hs code for D-XYLOSE CRYSTALLINE (B. BAKU KOSMETIK) COA B161024130 SAMPLE NO COMM VALUE", "output": "39139090"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600166", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600172", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599332", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600168", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600176", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600164", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600163", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600170", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600167", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600160", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599047", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600175", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599806", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600177", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600169", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY 200 PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600162", "output": "38249999"}, {"text_input": "What is the hs code for KF-96A-6CS (BHN BAKU KOSMETIK) , COA 711933", "output": "39139090"}, {"text_input": "What is the hs code for KF-6017 (BHN BAKU KOSMETIK) COA 711041", "output": "39139090"}, {"text_input": "What is the hs code for KSG-710 (BHN BAKU KOSMETIK) COA 710058", "output": "39139090"}, {"text_input": "What is the hs code for KSG-210 (BHN BAKU KOSMETIK) COA 710058", "output": "39139090"}, {"text_input": "What is the hs code for GARLIC EXTRACT 1PCT ALLICIN (BHN BAKU OBAT) COA BNPGE170910", "output": "39139090"}, {"text_input": "What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA 20171127", "output": "17023010"}, {"text_input": "What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA 20171205", "output": "11081200"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20171203", "output": "17029019"}, {"text_input": "What is the hs code for ZINC PICOLINATE BAHAN BAKU OBAT, COA 17055", "output": "29333910"}, {"text_input": "What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0217060072", "output": "29189900"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0317050799,800,801", "output": "29189900"}, {"text_input": "What is the hs code for ARGAN OIL,10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0015511", "output": "29362500"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ70413105", "output": "29362500"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01708070", "output": "29362400"}, {"text_input": "What is the hs code for NIACINAMIDE PC,25KG BOX (BHN BAKU KOSMETIK) COA 0000169583 ,584,993,994", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL MCX, 2OOKG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517100200,228", "output": "29189900"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01708070", "output": "29362400"}, {"text_input": "What is the hs code for TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA.71112", "output": "39139090"}, {"text_input": "What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA.70708", "output": "39139090"}, {"text_input": "What is the hs code for SUPEROX C TM AF (BHN BAKU KOSMETIK) COA 71025", "output": "39139090"}, {"text_input": "What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 70708", "output": "39139090"}, {"text_input": "What is the hs code for SUPEROX C TM AF (BHN BAKU KOSMETIK) COA 71025", "output": "39139090"}, {"text_input": "What is the hs code for TAZMAN PEPPER TM AF ( BHN BAKU KOSMETIK) COA 71112", "output": "39139090"}, {"text_input": "What is the hs code for REFINED TRACED SHEA OLEIN BHN BAKU KOSMETIK COA 0000019916", "output": "39139090"}, {"text_input": "What is the hs code for FLOWLAC (R) 90 (BHN BAKU OBAT) COA L1015328", "output": "17021100"}, {"text_input": "What is the hs code for ISOSORBIDE DINITRATE MIXTURE 25PCT (BHN BAKU OBAT) COA 1715496", "output": "29329990"}, {"text_input": "What is the hs code for PYRAZINAMIDE USP (BHN BAKU OBAT) COA PZ 107 J 17,PZ 108 J 17...", "output": "29339990"}, {"text_input": "What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.17100622", "output": "29391900"}, {"text_input": "What is the hs code for B2 UNIVERSAL FINE POWDER, 5KG BAG ALU (BHN BAKU MAKANAN) COA UQ61010232", "output": "29362300"}, {"text_input": "What is the hs code for BARCROFT TM 0325 DRIED AL HYD GEL USP(BHN BAKU OBAT) COA.101758003", "output": "28183000"}, {"text_input": "What is the hs code for CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 10005022", "output": "90189090"}, {"text_input": "What is the hs code for CANNULA 25G PIX'L 0,5 X40 (BHN BAKU OBAT) COA 10005023", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE SKINB VITLIDO 1MLD16 (BHN BAKU OBAT) COA 15320-2", "output": "90189090"}, {"text_input": "What is the hs code for REST SKINB VITALLGHLIDO 1MLD16 (BHN BAKU OBAT) COA 15526-2, 15615-2", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE LYFT LIDOCAINE 1 ML (BHN BAKU OBAT) COA 15618-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE SUBQ 2ML (BHN BAKU OBAT) COA 10130130/310117", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE LIDOCAINE 1ML D16 (BHN BAKU OBAT) COA 15316-2", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE VOLYME 1ML (BHN BAKU OBAT) COA 15202-1, 15370-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE REFYNE 1ML (BHN BAKU OBAT) COA 15022-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE DEFYNE 1ML (BHN BAKU OBAT) COA 15022-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE KYSSE 1ML (BHN BAKU OBAT) COA 15268-1", "output": "90189090"}, {"text_input": "What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA Q700600", "output": "29419000"}, {"text_input": "What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA P-61", "output": "29397900"}, {"text_input": "What is the hs code for METHOCEL K100 (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180G3O3A,SAMPLE NO COMM VALUE", "output": "39123900"}, {"text_input": "What is the hs code for PUROLAN PD-LO (BHN BAKU KOSMETIK) COA 01120917, 01130917", "output": "39139090"}, {"text_input": "What is the hs code for DES LORATADINE PH.EUR (BHN BAKU OBAT) COA DLRD/1709003", "output": "29333990"}, {"text_input": "What is the hs code for WHITE WILLOW BARK 50/20PCT BHN BAKU KOSMETIK, COA 20161014-610", "output": "39139090"}, {"text_input": "What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0019501", "output": "29337900"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK COA B081117", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB181117", "output": "39123900"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702605740", "output": "29372900"}, {"text_input": "What is the hs code for NOREPINEPHRINE BITARTRATE (BHN BAKU OBAT) COA 400104", "output": "29379010"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7292695", "output": "38210010"}, {"text_input": "What is the hs code for NIACINAMIDE PC,25KG BOX (BHN BAKU KOSMETIK) COA 0000169995,996,997,593,594", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE PC,25KG BOX (BHN BAKU KOSMETIK) COA 0000169594,595", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0517110228,229", "output": "29189900"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA TP17123099, TP17123100", "output": "29211900"}, {"text_input": "What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-2191217, S-2201217", "output": "29334910"}, {"text_input": "What is the hs code for AMOXICILLIN SODIUM STERILE (BHN BAKU OBAT) COA 25M50200", "output": "29411019"}, {"text_input": "What is the hs code for AMOXICILLIN SODIUM STERILE (BHN BAKU OBAT) COA 25M50200", "output": "29411019"}, {"text_input": "What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA.LC 038-7-801, LC 040-7-801", "output": "17021100"}, {"text_input": "What is the hs code for L-GLUTAMIC ACID ( BHN BAKU OBAT), COA 1000035737/170725", "output": "29224290"}, {"text_input": "What is the hs code for HYDROCORTISONE ACETATE EP7/USP38 (BHN BAKU OBAT) COA.NEHAC170716", "output": "29372100"}, {"text_input": "What is the hs code for PREDNISOLONE BP2010/USP38 (BHN BAKU OBAT) COA.NPL171113", "output": "29372100"}, {"text_input": "What is the hs code for CLONIDINE HCL (BHN BAKU OBAT) COA 180839", "output": "29332900"}, {"text_input": "What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA.MLAH076121718", "output": "29341000"}, {"text_input": "What is the hs code for LIDOCAINE BASE (BHN BAKU OBAT) COA 186034", "output": "29242990"}, {"text_input": "What is the hs code for KETOPROFEN SALE DI LISINA (BHN BAKU OBAT) 183578", "output": "29183000"}, {"text_input": "What is the hs code for DEXAMETHASONE (BHN BAKU OBAT) COA X5-171113, 1114", "output": "29372200"}, {"text_input": "What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0021413", "output": "39139090"}, {"text_input": "What is the hs code for AC091KF FUCOGEL 1.5P 25 KG (BHN BAKU KOSMETIK) COA 0021607", "output": "39139090"}, {"text_input": "What is the hs code for DOXYCYCLINE MONOHYDRATE(BHN BAKU OBAT) COA DX171204001", "output": "29413000"}, {"text_input": "What is the hs code for PERMETHRIN PHARMA GRADE BHN BAKU OBAT COA PE0022-S77", "output": "29163990"}, {"text_input": "What is the hs code for PERMETHRIN PHARMA GRADE BHN BAKU OBAT COA 174046008", "output": "29163990"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 INF OIL, 4,5KG PJUG (BHN BAKU SUPLEMEN) COA.TS00009237", "output": "29362500"}, {"text_input": "What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT668932", "output": "32151900"}, {"text_input": "What is the hs code for OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT668933", "output": "32151900"}, {"text_input": "What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT667327", "output": "32151900"}, {"text_input": "What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT668893", "output": "32151900"}, {"text_input": "What is the hs code for OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA 667974", "output": "32151900"}, {"text_input": "What is the hs code for PIROXICAM (BHN BAKU OBAT) COA PRX2017009M", "output": "29349990"}, {"text_input": "What is the hs code for L-CARNITINE FUMARATE (BHN BAKU OBAT) COA 10100320171106", "output": "29239000"}, {"text_input": "What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B339924,26,27,34", "output": "29419000"}, {"text_input": "What is the hs code for OMEPRAZOLE PELLETS 8,5 PCT (BHN BAKU OBAT) COA OP0217C082", "output": "30034100"}, {"text_input": "What is the hs code for MELOXICAM BP/EP (BHN BAKU OBAT) COA HMXCPL009", "output": "29341000"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG170908", "output": "29362700"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180G7Q031", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180GA8031", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180G81031", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E15 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011H3LL01", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180H81003", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D0180GCK001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180GCL001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E5 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D011H37L01", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM CR (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180G33001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180GCR001", "output": "39123900"}, {"text_input": "What is the hs code for NONIVAMIDE (SYNTHETIC CAPSAICIN)BHN BAKU KOSMETIK, COA.20171016", "output": "29242990"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01709537", "output": "29362700"}, {"text_input": "What is the hs code for MEG 3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT17090050", "output": "29362500"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20170701", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT17080013,14", "output": "29362100"}, {"text_input": "What is the hs code for DL-PANTHENOL 50L (BHN BAKU KOSMETIK) COA TL01709646", "output": "29362400"}, {"text_input": "What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01707812", "output": "29362400"}, {"text_input": "What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110017", "output": "29189900"}, {"text_input": "What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110017", "output": "29189900"}, {"text_input": "What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110017", "output": "29189900"}, {"text_input": "What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110017", "output": "29189900"}, {"text_input": "What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110017", "output": "29189900"}, {"text_input": "What is the hs code for CLOPIDOGREL BISULPHATE USP 39 FORM II (BHN BAKU OBAT) COA CLOPI/17060108", "output": "29349990"}, {"text_input": "What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453012184", "output": "39139090"}, {"text_input": "What is the hs code for LANSOPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA LP0217C030", "output": "29333990"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121708247", "output": "28363000"}, {"text_input": "What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1711020 S/D 31, 89 S/D 94, 97 S/D 99", "output": "29224900"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE BP (BHN BAKU OBAT) COA.32581217,32591217...", "output": "29351000"}, {"text_input": "What is the hs code for RANITIDINE HCL (BHN BAKU OBAT) COA RH/10 2017 1638, 1639, 1640, 1641", "output": "29321900"}, {"text_input": "What is the hs code for NICLOSAMIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 20171124", "output": "29242990"}, {"text_input": "What is the hs code for NEOMYCIN SULPHATE USP (BHN BAKU OBAT) COA 201711020", "output": "29419000"}, {"text_input": "What is the hs code for METHYL SULFONYL METHANE USP (BHN BAKU OBAT) COA 20171120", "output": "29309090"}, {"text_input": "What is the hs code for LINCOMYCIN HCL EP (BHN BAKU OBAT) COA 1711023", "output": "29419000"}, {"text_input": "What is the hs code for MICONAZOLE NITRATE (BHN BAKU OBAT) COA 20171002", "output": "29332900"}, {"text_input": "What is the hs code for INOSITOL (BHN BAKU OBAT) COA 201710137", "output": "29061300"}, {"text_input": "What is the hs code for IRBESARTAN (BHN BAKU OBAT) COA C5409-17-044", "output": "29332900"}, {"text_input": "What is the hs code for TYLOSIN TARTRATE (BHN BAKU OBAT) COA J201710342", "output": "29419000"}, {"text_input": "What is the hs code for OXYTETRACYCLINE DIHYDRATE INJECTABLE GRADE BP/EP(B BAKU OBAT UTK PAKAN TERNAK)COA ZT171109,1150", "output": "29413000"}, {"text_input": "What is the hs code for OXYTETRACYCLINE HYDROCHLORIDE (BHN BAKU OBAT UTK PAKAN TERNAK)COA 17121464, 65, 66", "output": "29413000"}, {"text_input": "What is the hs code for NICLOSAMIDE (BHN BAKU OBAT UTK PAKAN TERNAK COA 29171124", "output": "29242990"}, {"text_input": "What is the hs code for COLISTIN (BHN BAKU OBAT UTK PAKAN TERNAK) COA KB-CS-1707016,17,18,20", "output": "29419000"}, {"text_input": "What is the hs code for METHYL SULFONYL METHANE USP (BHN BAKU OBAT) COA 20171108", "output": "29309090"}, {"text_input": "What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20171108", "output": "29309090"}, {"text_input": "What is the hs code for FIBRE DRUM (DRUM KOSONG) PRICE AND AMOUNT ARE FOR CUSTOM ONLY", "output": "48192000"}, {"text_input": "What is the hs code for ADRENALINE TARTRATE EPINEPHRINE BITARTRATE (B.BAKU OBAT) COA 060108 ,SAMPLE NO COMM VALUE", "output": "29379020"}, {"text_input": "What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW91711443", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN PREMIX 103047-D (BHN BAKU MAKANAN) COA XW91711442", "output": "21069059"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT17050034", "output": "32041900"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT17050039,41,60048", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91711445", "output": "21069059"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17080048", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17080053", "output": "29362100"}, {"text_input": "What is the hs code for PX TRS2 WITHOUT K1 (BHN BAKU MAKANAN) COA XW91712012,13", "output": "21069059"}, {"text_input": "What is the hs code for DWI BI (BHN BAKU MAKANAN) COA XW91711474", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17090164", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17090164", "output": "29362100"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17070223", "output": "29362400"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17070223", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI17100009", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI1700009", "output": "29362900"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17050034", "output": "32041900"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17050034", "output": "32041900"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20170303,305", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT17070066", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17070066", "output": "29362900"}, {"text_input": "What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01706015", "output": "29362700"}, {"text_input": "What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00501894,95", "output": "29189900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT17060749", "output": "29362100"}, {"text_input": "What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) P7S22UA000", "output": "29189900"}, {"text_input": "What is the hs code for PARSOL HS (BHN BAKU KOSMETIK) COA 0709160036", "output": "29189900"}, {"text_input": "What is the hs code for BEAUPLEX VH (BHN BAKU KOSMETIK) COA UF17082002", "output": "29189900"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) TL01708070", "output": "29362400"}, {"text_input": "What is the hs code for ETHYL PANTHENOL ( BHN BAKU KOSMETIK) COA TL01703810", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL MCX ,25KG PC (BHN BAKU KOSMETIK) COA MCS16051", "output": "29189900"}, {"text_input": "What is the hs code for PARSOL HS (BHN BAKU KOSMETIK) COA 0709160036", "output": "29189900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OPI1708009", "output": "29362900"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT17060048", "output": "29362800"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OPI1708009", "output": "29362900"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01708070", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001461085", "output": "29189900"}, {"text_input": "What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01706015", "output": "29362700"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01704011", "output": "29362900"}, {"text_input": "What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0015511", "output": "29362500"}, {"text_input": "What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA MCS1607004", "output": "29189900"}, {"text_input": "What is the hs code for STAY C 50KG BALUS (BHN BAKU KOSMETIK) COA UT17060074", "output": "29362700"}, {"text_input": "What is the hs code for LANOLINE ANHYDROUS (BHN BAKU KOSMETIK) COA 4504", "output": "39139090"}, {"text_input": "What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600959", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600985", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600990", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH595902", "output": "39061090"}, {"text_input": "What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600965", "output": "32151900"}, {"text_input": "What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600965", "output": "32151900"}, {"text_input": "What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600965", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY 200 PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600963", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY QX ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600961", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600988", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600977", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600511", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600960", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600962", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600982", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600964", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600979", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600987", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600973", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600972", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY 200 BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600958", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600983", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600975", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600984", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600989", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600978", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600971", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600975", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600976", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600970", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600974", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600981", "output": "38249999"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT17060048", "output": "29362800"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11708009", "output": "29362900"}, {"text_input": "What is the hs code for BEAUPLEX VH (BHN BAKU KOSMETIK) COA UF17082002", "output": "29189900"}, {"text_input": "What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001461085", "output": "29189900"}, {"text_input": "What is the hs code for NIACINAMIDE PC,25KG BOX (BHN BAKU KOSMETIK) COA OP81707025,26", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT17090164", "output": "29362100"}, {"text_input": "What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01703810", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0317101367,435,537...", "output": "29189900"}, {"text_input": "What is the hs code for PARSOL 340 ,25KG PC (BHN BAKU KOSMETIK) COA MCS1602029", "output": "29189900"}, {"text_input": "What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91712053", "output": "29189900"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708170046,47,48", "output": "29189900"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708170048,49", "output": "29189900"}, {"text_input": "What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01703810", "output": "29362400"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT17030080", "output": "29362800"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0317101542", "output": "29189900"}, {"text_input": "What is the hs code for REFINED TRACED SHEA OLEIN (BHN BAKU KOSMETIK) COA 0000020039", "output": "39139090"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5525317", "output": "39139090"}, {"text_input": "What is the hs code for RIBOXYL TM (BHN BAKU KOSMETIK) COA Q0316501", "output": "39139090"}, {"text_input": "What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015528H", "output": "39139090"}, {"text_input": "What is the hs code for ALDAVINE 5X (BHN BAKU KOSMETIK) COA 5504917", "output": "39139090"}, {"text_input": "What is the hs code for HELIOGEL TM (BHN BAKU KOSMETIK) COA 1728401", "output": "39139090"}, {"text_input": "What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5471517", "output": "39139090"}, {"text_input": "What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK), COA 1717614", "output": "39139090"}, {"text_input": "What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK), COA 1634914", "output": "39139090"}, {"text_input": "What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830015716H", "output": "39139090"}, {"text_input": "What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830015775H", "output": "39139090"}, {"text_input": "What is the hs code for CS 5C 5PCTCLEAR (BHN BAKU KOSMETIK) COA 785015527H", "output": "39139090"}, {"text_input": "What is the hs code for EXO H (BHN BAKU KOSMETIK) COA 715025820H", "output": "39139090"}, {"text_input": "What is the hs code for HELIOGEL TM (BHN BAKU KOSMETIK) COA 1728401", "output": "39139090"}, {"text_input": "What is the hs code for LANABLUE (BHN BAKU KOSMETIK) COA 5497917", "output": "39139090"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1727604", "output": "39139090"}, {"text_input": "What is the hs code for LECIGEL (BHN BAKU KOSMETIK) COA 1727802", "output": "39139090"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5525317", "output": "39139090"}, {"text_input": "What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015372H", "output": "39139090"}, {"text_input": "What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015909H", "output": "39139090"}, {"text_input": "What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015528H", "output": "39139090"}, {"text_input": "What is the hs code for PROGELINE (BHN BAKU KOSMETIK) COA 820055303H", "output": "39139090"}, {"text_input": "What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025654H", "output": "39139090"}, {"text_input": "What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025824H", "output": "39139090"}, {"text_input": "What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025654H", "output": "39139090"}, {"text_input": "What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830015716H", "output": "39139090"}, {"text_input": "What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769015443H", "output": "39139090"}, {"text_input": "What is the hs code for B.I.O KEY SELENIUM VM (BHN BAKU OBAT UTK PAKAN TERNAK) COA 150917-755", "output": "23099090"}, {"text_input": "What is the hs code for SODIUM ASCORBATE 99PCT TG (BHN BAKU SUPLEMEN) COA WB01117423", "output": "29362700"}, {"text_input": "What is the hs code for SODIUM ASCORBATE 99PCT TG (BHN BAKU SUPLEMEN) COA WB01117424", "output": "29362700"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT17060025", "output": "32041900"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17100025", "output": "32030010"}, {"text_input": "What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17110017", "output": "29189900"}, {"text_input": "What is the hs code for VITAMIN B12 1PCT SD (BHN BAKU SUPLEMEN) COA UT17090016", "output": "29362600"}, {"text_input": "What is the hs code for SODIUM ASCORBATE 99PCT TG (BHN BAKU SUPLEMEN) COA WB01117424", "output": "29362700"}, {"text_input": "What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA WB01117424", "output": "29189900"}, {"text_input": "What is the hs code for GARCINIA CAMBOGIA 60PCT(B. BAKU OBAT) COA FGC1711008", "output": "39139090"}, {"text_input": "What is the hs code for TRIAMCINOLONE ACETONIDE MICRONIZED (BHN BAKU OBAT) COA NX2475M", "output": "29372200"}, {"text_input": "What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NX2230M", "output": "29372200"}, {"text_input": "What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 172071", "output": "13021990"}, {"text_input": "What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 172434", "output": "38249999"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 172020", "output": "13021990"}, {"text_input": "What is the hs code for SAKURA EXTRACT (BHN BAKU KOSMETIK) COA 171058", "output": "13021990"}, {"text_input": "What is the hs code for OUBAKU LIQUID B (BHN BAKU KOSMETIK) COA 172296", "output": "13021990"}, {"text_input": "What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETI) COA 171720", "output": "38249999"}, {"text_input": "What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA.17100775", "output": "29395900"}, {"text_input": "What is the hs code for SK BIOLAND PF SC GLUCAN (BHN BAKU KOSMETIK)COA CPG-10-12627", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-011177", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK) COA U171226", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK)COA MCP-N-042507", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND CUCUMBER EXTRACT (BHN BAKU KOSMETIK) COA CUPD-042517", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-020497", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (B.BAKU KOSMETIK) COA HMVBD-052297, 062017", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK)COA ARP-1542627", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-211227", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 071817", "output": "39139090"}, {"text_input": "What is the hs code for 87-28-5 SALICYLIC ACID ETHYLENE GLYCOL ESTER/GLYCOL SALICYLATE (B.BAKU KOSMETIK)COA.DE171213", "output": "39139090"}, {"text_input": "What is the hs code for SEBUSTOP UP 5KG (BHN BAKU KOSMETIK) COA 0022006", "output": "39139090"}, {"text_input": "What is the hs code for NYMPHELINE PROV 5KG (BHN BAKU KOSMETIK) COA 0020265", "output": "39139090"}, {"text_input": "What is the hs code for NYMPHELINE PROV 5KG (BHN BAKU KOSMETIK) COA 0022184", "output": "39139090"}, {"text_input": "What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH171204-ENBIO", "output": "39139090"}, {"text_input": "What is the hs code for LINEN OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA LIU170905-H", "output": "39139090"}, {"text_input": "What is the hs code for CHAMOMILLA COESMELENE (BHN BAKU KOSMETIK)COA MAC-CO171102", "output": "39139090"}, {"text_input": "What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-171105-GS", "output": "39139090"}, {"text_input": "What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-171001", "output": "39139090"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-171106", "output": "39139090"}, {"text_input": "What is the hs code for PEPERMINT ORGANIC DISTILLATE 1;5 SB (BHN BAKU KOSMETIK) COA MEPD170701-BIO", "output": "39139090"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER BHYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA171002", "output": "39139090"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT(BHN BAKU KOSMETIK) COA HEA171002", "output": "39139090"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA171002", "output": "39139090"}, {"text_input": "What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 1712EF4811", "output": "29224900"}, {"text_input": "What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 58686P", "output": "39139090"}, {"text_input": "What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP779485,AY2516", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP787026, AY1537", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP789485,AY2516", "output": "32151900"}, {"text_input": "What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP787036,AY1870", "output": "32151900"}, {"text_input": "What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP787036,AY1870", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C RED #40/ALLURA RED AC AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP785006,AY0482", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP787026, AY1537", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C #40/ALLURA RED AC AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP785006,AY0482", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C BLUE #1/BRILLIANT BLUE...( BHN BAKU OBAT UTK PEWARNA TABLET) COA WP776167,AX5379", "output": "32151900"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM DAB /EP 7.0 (BHN BAKU OBAT) COA 17111591,592,595, 628", "output": "29331100"}, {"text_input": "What is the hs code for TRISODIUM CITRATE DIHYDRATE FINE GRANULAR (BHN BAKU MAKANAN), COA UJ746", "output": "29181400"}, {"text_input": "What is the hs code for CHOLINE L-BITARTRATE (BAHAN BAKU MAKANAN) COA.3013648", "output": "29231000"}, {"text_input": "What is the hs code for ROVIMIX A 1000,20KGBAL (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT17080779,780", "output": "29362100"}, {"text_input": "What is the hs code for RONOZYME ME(R) HIPHOS GT, 20KG BAGDK (BHN BAKU OBAT UTK PAKAN TERNAK) COA HK921261", "output": "29369000"}, {"text_input": "What is the hs code for ROVIMIX D3-500 (BHN BAKU OBAT UTK PAKAN TERNAK) COA UE01701019", "output": "29362900"}, {"text_input": "What is the hs code for VITASMOOTH (R) 041 ( BHN BAKU OBAT) COA 121708193", "output": "28365010"}, {"text_input": "What is the hs code for RESTYLANE VOLYME 1 ML (BHN BAKU OBAT) COA 15370-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE REFYNE 1 ML (BHN BAKU OBAT) COA 15100-1,15521-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE DEFYNE 1 ML (BHN BAKU OBAT) COA 15022-1, 15613-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE KYSSE 1 ML (BHN BAKU OBAT) COA 15268-1", "output": "90189090"}, {"text_input": "What is the hs code for CANNULA 23G PIXL 0,6X50 (BHN BAKU OBAT) COA 017.588, 017.572", "output": "90189090"}, {"text_input": "What is the hs code for CANNULA 25G PIXL 0,5X40 (BHN BAKU OBAT) COA 017.553", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE SUBQ 2 ML D16 (BHN BAKU OBAT) COA 15014-2A", "output": "90189090"}, {"text_input": "What is the hs code for REST SKINB VITALLGHLIDO 1MLD16 (BHN BAKU OBAT) COA 15615-2", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE LIDOCAINE 1 ML D16 (BHN BAKU OBAT) COA 15316-2", "output": "90189090"}, {"text_input": "What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 18014060", "output": "39139090"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702605740", "output": "29372900"}, {"text_input": "What is the hs code for ASTABIO ARV-S (BHN BAKU OBAT) COA.1711211K", "output": "32030010"}, {"text_input": "What is the hs code for ASTABIO AW1 (BHN BAKU OBAT) COA 1710031", "output": "32030010"}, {"text_input": "What is the hs code for ASTABIO AW1 (BHN BAKU OBAT) COA 1710031", "output": "32030010"}, {"text_input": "What is the hs code for CARBAZOCHROME SODIUM SULFONATE (ORAL GRADE) BHN BAKU OBAT,COA", "output": "29339990"}, {"text_input": "What is the hs code for KTP-09R (BHN BAKU KOSMETIK) , COA 706001, SAMPLE NO COMMERCIAL VALUE", "output": "39139090"}, {"text_input": "What is the hs code for KTP-09Y (BHN BAKU KOSMETIK) COA 711003, SAMPLE NO COMMERCIAL VALUE", "output": "39139090"}, {"text_input": "What is the hs code for KTP-09B (BHN BAKU KOSMETIK) COA 706001, SAMPLE NO COMMERCIAL VALUE", "output": "39139090"}, {"text_input": "What is the hs code for KTP-09W (BHN BAKU KOSMETIK) COA 706003, SAMPLE NO COMMERCIAL VALUE", "output": "39139090"}, {"text_input": "What is the hs code for LIQUORICE LC (BHN BAKU KOSMETIK) COA.109796/P72025-P72028", "output": "13021920"}, {"text_input": "What is the hs code for LIQUORICE LC (BHN BAKU KOSMETIK) COA 109796/P72998-P73000", "output": "13021920"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA DKD", "output": "39139090"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA DKD", "output": "39139090"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA DLE", "output": "39139090"}, {"text_input": "What is the hs code for PROMOIS EF-118 (IS) (BHN BAKU KOSMETIK) COA DIG", "output": "39139090"}, {"text_input": "What is the hs code for PROMOIS WK-GB(BHN BAKU KOSMETIK) COA DLD", "output": "39139090"}, {"text_input": "What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA DJG", "output": "39139090"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7177772", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7208538", "output": "38210010"}, {"text_input": "What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7240894", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7255892", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7234535", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7171820", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7227521", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7171538", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053919", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7271780", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7250997", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7018890", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7018890", "output": "38210010"}, {"text_input": "What is the hs code for PAIL BUFFERED PEPTONE WATER 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7152551", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7103675", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7102560", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7116560", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6132955", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7114681", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7198804", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7198804", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7142625", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7193991", "output": "38210010"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7226556", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7193548", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7151674", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7151674", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171972", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7157502", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6201884", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7109946", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTONE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 70600807", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7208538,7226906", "output": "38210010"}, {"text_input": "What is the hs code for PAIL TRYPTOSE PJOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7240892,894", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7255892", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7234535", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7053881", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7227521", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171538", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7053919", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7250997", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7250997", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7109930", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121848", "output": "38210010"}, {"text_input": "What is the hs code for PAIL BUFFERED PEPTONE WATER 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7152551", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7215989", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7103675", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7095842", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7102560", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171993", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7178809", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7114681", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7142628", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7102868,7198804", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 50 MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7251521", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7047892", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7142625", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7193991", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242928", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7151674", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171972", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7157502", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 7193661", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7193724", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121863", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6201884", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7109946", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060807", "output": "38210010"}, {"text_input": "What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH170706816", "output": "38210010"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7277595", "output": "38210010"}, {"text_input": "What is the hs code for CULTURESWAB LIQUID STUART SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 171672599", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE STANDARD METHODS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7262589", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7227521", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7242852", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7250997", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7018890", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7291775", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7235794", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7278642", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7325792", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7047892", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7142625", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7193991", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7306543", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE R2 AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7297672", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7271748", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7193661", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7209759", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7325764", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7271779", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE AGAR NOBLE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 7256726", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7214708", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CELLOBIOSE 25G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7156992", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7256591", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7198543", "output": "38210010"}, {"text_input": "What is the hs code for PAIL LAURYL TRYPTOSE BROTH 2KG (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7234887", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6278861", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MR-VP MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7262698", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PHOSPHATE BUFFER PH 7.2 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7121877", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6319507", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7102731", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7262212,13", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7254256", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7326688", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7156929", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7251523", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7278561", "output": "38210010"}, {"text_input": "What is the hs code for TUBE CRYSTAL INOCULUM BROTH (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 7257857", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK MM 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 7254256,7277108", "output": "38210010"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7324657", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) 7324913", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7324913", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BEEF EXTRACT POWDER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7135945", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CASAMINO ACIDS TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7073600", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7297554", "output": "38210010"}, {"text_input": "What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKROORGANISME) COA 7303629", "output": "38210010"}, {"text_input": "What is the hs code for CITRIC ACID MONOHYDRATE BP2009/E330 8-40 MESH(BHN BAKU SUPLEMEN) COA 1MT1712533", "output": "29181400"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT17060025", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17070052", "output": "29362100"}, {"text_input": "What is the hs code for VIT A PALM 1.0 M AND VIT D3 100'000 (BHN BAKU SUPLEMEN) COA UT17110045", "output": "29362100"}, {"text_input": "What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT17090051", "output": "29362500"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00617195", "output": "29362100"}, {"text_input": "What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF, 1KG BOT PE (BHN BAKU SUPLEMEN) COA UE01710068", "output": "32030010"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT17060025", "output": "32041900"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00617195", "output": "29362100"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17100025", "output": "32030010"}, {"text_input": "What is the hs code for REDIVIVO (R)LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110017", "output": "29189900"}, {"text_input": "What is the hs code for VITAMIN A WATER MISCIBLE TYOE 100 (BHN BAKU SUPLEMEN) COA UT17070052", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A AND D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT17080035", "output": "29362100"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONIZED (BHN BAKU OBAT) COA.F-04.1064-180101", "output": "29372900"}, {"text_input": "What is the hs code for TRAMADOL HCL (BHN BAKU OBAT) COA. TH/3/15010/00E", "output": "29225090"}, {"text_input": "What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND170802, ND 170804", "output": "29372200"}, {"text_input": "What is the hs code for PURICILLIN COMPACTED (BHN BAKU OBAT) COA. M842210,12 S/D 17", "output": "29411020"}, {"text_input": "What is the hs code for PURIDROX TM POWDER MONOHYDRAT (BHN BAKU OBAT),COA.B334499,334501, 504", "output": "29419000"}, {"text_input": "What is the hs code for PURIDROX TM POWDER MONOHYDRAT (BHN BAKU OBAT) COA B334500", "output": "29419000"}, {"text_input": "What is the hs code for RANITIDINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA RH 021 01 18, RH 022 01 18...", "output": "29321900"}, {"text_input": "What is the hs code for MEROPENEM WITH SODIUM CARBONATE (BHN BAKU OBAT) COA Q900100", "output": "30039000"}, {"text_input": "What is the hs code for NIACINAMIDE PC ,25KG BOX (BHN BAKU KOSMETIK) COA 0000170005 S/D 7, 9", "output": "29362900"}, {"text_input": "What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00504773,511322", "output": "29189900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT17090195", "output": "29362800"}, {"text_input": "What is the hs code for BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7235808", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7227994", "output": "38210010"}, {"text_input": "What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7277945", "output": "38210010"}, {"text_input": "What is the hs code for HU TH17/TREG PHENOTYPING KIT 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7326783", "output": "38210010"}, {"text_input": "What is the hs code for FASTIMMUNE IL-6 FITC AS12 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7307604", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7153980", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7282812", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7277766", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7198968", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7102829", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7153980", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7277766", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7291650", "output": "38210010"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7146880", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7282812", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7248503", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL H ANTISERUM A 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6274878", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL H ANTISERUM C 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7293599", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL H ANTISERUM D 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 6225901", "output": "38210010"}, {"text_input": "What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7251512", "output": "38210010"}, {"text_input": "What is the hs code for HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7125585", "output": "38210010"}, {"text_input": "What is the hs code for HU HLA DR FITC L243 (G46-6) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6263631", "output": "38210010"}, {"text_input": "What is the hs code for PERM/WASH BUFFER 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7136715", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7291650 7198804", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7198968", "output": "38210010"}, {"text_input": "What is the hs code for CALCIUM ASSAY KIT 10 PLATES (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)", "output": "38210010"}, {"text_input": "What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7235889", "output": "38210010"}, {"text_input": "What is the hs code for CD34 APC BG12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7186970", "output": "38210010"}, {"text_input": "What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7226996", "output": "38210010"}, {"text_input": "What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7250529", "output": "38210010"}, {"text_input": "What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7305643", "output": "38210010"}, {"text_input": "What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7220771", "output": "38210010"}, {"text_input": "What is the hs code for CD45 PER CP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7333763", "output": "38210010"}, {"text_input": "What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7345542", "output": "38210010"}, {"text_input": "What is the hs code for ANTI HLA DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7299623", "output": "38210010"}, {"text_input": "What is the hs code for CD45 PERCP 2D1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7194660", "output": "38210010"}, {"text_input": "What is the hs code for BD CST BEADS KIT 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 72926", "output": "38210010"}, {"text_input": "What is the hs code for CD10 PE HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7304664", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7289995", "output": "38210010"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7146880", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7341769", "output": "38210010"}, {"text_input": "What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT 10X10MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7228748", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7326679", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I &VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7187918", "output": "38210010"}, {"text_input": "What is the hs code for HU FOXP3 BUFFER SET 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7222681", "output": "38210010"}, {"text_input": "What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU OBAT UTK PAKAN TERNAK) COA.201700281", "output": "28183000"}, {"text_input": "What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU MAKANAN) COA UT17110001", "output": "32041900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180H5N001", "output": "39123900"}, {"text_input": "What is the hs code for CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 201801T-CCH", "output": "38249999"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA. ROA003187", "output": "28363000"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU MAKANAN) COA.TS00009339", "output": "29362500"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 FOOD OIL ,4,5 KG PJUG (BHN BAKU MAKANAN) COA TS00009339", "output": "29362500"}, {"text_input": "What is the hs code for EPA DHA 44 37 (BHN BAKU OBAT) COA EE4437-180102", "output": "29061300"}, {"text_input": "What is the hs code for AMLODIPINE BESILATE BP/EP (BHN BAKU OBAT), COA. AMB/139/12/17, AMB/140/12/17...", "output": "29333990"}, {"text_input": "What is the hs code for PURIDROX TM POWDER MONOHYDRAT (BHN BAKU OBAT),COA.B334515,17,19", "output": "29419000"}, {"text_input": "What is the hs code for LABRAFIL M 1944 CS (BHN BAKU SUPLEMEN) COA.166910", "output": "28399000"}, {"text_input": "What is the hs code for TEFOSE (BHN BAKU SUPLEMEN) COA 166939", "output": "28399000"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU KOSMETIK) COA 01/17GAAK", "output": "28399000"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU KOSMETIK) COA 01/17GAAK,SAMPLE NO COMM VALUE", "output": "28399000"}, {"text_input": "What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 164862", "output": "28399000"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONIZED (BHN BAKU OBAT) COA.F-04.1064-180101", "output": "29372900"}, {"text_input": "What is the hs code for OLIO VINACCIOLI RAFFINATO (BHN BAKU OBAT) COA.B1700291", "output": "15152919"}, {"text_input": "What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P7W01PA000", "output": "29189900"}, {"text_input": "What is the hs code for REFINED SUNFLOWER OIL (BHN BAKU KOSMETIK) COA KKLJ 15/17", "output": "39139090"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180106", "output": "17029019"}, {"text_input": "What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE POWDER (B.BAKU KOSMETIK)COA CHP1180112", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-162827", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-893107", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK)COA SFP-N-080917", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-033107, 042217", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 071817", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK) COA U180125", "output": "39139090"}, {"text_input": "What is the hs code for MAGNOLIA BARK EXTRACT (BHN BAKU KOSMETIK) COA MBE05-171002", "output": "39139090"}, {"text_input": "What is the hs code for COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-1706123", "output": "39139090"}, {"text_input": "What is the hs code for ULTALUX FF25 KG BAG (BHN BAKU KOSMETIK) COA D041742562", "output": "39139090"}, {"text_input": "What is the hs code for NIACINAMIDE PC ,25KG BOX (BHN BAKU KOSMETIK) COA 0000170021", "output": "29362900"}, {"text_input": "What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91712339", "output": "29189900"}, {"text_input": "What is the hs code for STAY C 50 (BHN BAKU KOSMETIK) COA UE01707028", "output": "29362700"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0703160002,5,6", "output": "29189900"}, {"text_input": "What is the hs code for THE MATCHA 1 P001062 (BHN BAKU KOSMETIK) COA 0000010553", "output": "33029000"}, {"text_input": "What is the hs code for PLAISANCE P116808 (BHN BAKU KOSMETIK) COA.0000012945", "output": "33029000"}, {"text_input": "What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA 0000006375", "output": "33029000"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17080764", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01705041,7058", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17090164", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01707058", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT17080762", "output": "29362100"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA UT01710765", "output": "29362400"}, {"text_input": "What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91711231", "output": "21069059"}, {"text_input": "What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW91712166", "output": "21069059"}, {"text_input": "What is the hs code for PX 103070 -C3 (BHN BAKU MAKANAN) COA XW91712167", "output": "21069059"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT GRANULATION ,25KG BAL (BHN BAKU MAKANAN) COA WB00917901", "output": "29362700"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT17110004", "output": "29362900"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01707063", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01707063", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01707063", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01707063", "output": "29362400"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1706072", "output": "29362300"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT17060049", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT17060049", "output": "29362800"}, {"text_input": "What is the hs code for CANTHAXANTHIN 10PCT CWS/S (BHN BAKU MAKANAN) COA UT17040003", "output": "32041900"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17080035", "output": "29362100"}, {"text_input": "What is the hs code for DWI BI (BHN BAKU MAKANAN) COA XW91712070 ,XW91712071", "output": "21069059"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17080053", "output": "29362100"}, {"text_input": "What is the hs code for METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/18010016", "output": "29332900"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT SD,15KG BOXALU (BHN BAKU SUPLEMEN) COA WB08170237", "output": "29362800"}, {"text_input": "What is the hs code for KETOROLAC TROMETAMOL /TROMETHAMINE (BHN BAKU OBAT) COA.17100583", "output": "29339990"}, {"text_input": "What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.17100760", "output": "29391900"}, {"text_input": "What is the hs code for NYSTATIN (BHN BAKU OBAT) COA.C130654", "output": "29419000"}, {"text_input": "What is the hs code for GRANULAC (R) 70 (BHN BAKU OBAT) COA L101883217A545", "output": "17021100"}, {"text_input": "What is the hs code for METHISOPRINOL (BHN BAKU OBAT) COA.MTP7110445", "output": "29349990"}, {"text_input": "What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 17E3805", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 17E4005", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 17E4402", "output": "28399000"}, {"text_input": "What is the hs code for JAGUAR C 162 CARDBOARD BOX 25 KG (BHN BAKU KOSMETIK) COA MJAC17324A", "output": "39139090"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA180101", "output": "39139090"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA180101", "output": "39139090"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO170904", "output": "39139090"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-180101", "output": "39139090"}, {"text_input": "What is the hs code for OLIVE ORGANIC VIRGIN OIL... (BHN BAKU KOSMETIK)COA OLVH180101-ENBIO", "output": "39139090"}, {"text_input": "What is the hs code for KOLLICOAT IR WHITE 2 25KG(BHN BAKU OBAT UTK PEWARNA TABLET) COA 25165316K0", "output": "32151900"}, {"text_input": "What is the hs code for KOLLICOAT IR WHITE 2 25KG (BHN BAKU OBAT UTK PEWARNA TABLET) COA 25165316K0", "output": "32151900"}, {"text_input": "What is the hs code for KOLLICOAT IR WHITE 2 25KG (BHN BAKU OBAT UTK PEWARNA TABLET) COA 25165316K0", "output": "32151900"}, {"text_input": "What is the hs code for CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA. 1GC01CLB ZP48D 25MT", "output": "39139090"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601181", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH598035", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600964", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601177", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601145", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600977", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH6001185", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601183", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601187", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601277", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601174", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601182", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE(BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601195", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601184", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH600988", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH6001175", "output": "38249999"}, {"text_input": "What is the hs code for HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 2722767", "output": "33021090"}, {"text_input": "What is the hs code for HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 2731857", "output": "33021090"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP00518", "output": "28363000"}, {"text_input": "What is the hs code for KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0401217", "output": "29339990"}, {"text_input": "What is the hs code for LIPOID S 67 F (BHN BAKU OBAT) COA.576200-2170030/001-016 (16),576200-2170030/17", "output": "29232010"}, {"text_input": "What is the hs code for DL PANTHENOL 50L (BHN BAKU KOSMETIK) COA TL01703615,6630", "output": "29362400"}, {"text_input": "What is the hs code for EUXYL K 100 CN 10KG KA (BHN BAKU KOSMETIK) COA 1336274,1339381,1340596", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 900 CN 10KG KA (BHN BAKU KOSMETIK) COA 1500210,1501073", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 CN 10KG KA (BHN BAKU KOSMETIK) COA 1338431,1341214,1341215", "output": "38249999"}, {"text_input": "What is the hs code for GROTANOL 3025 CN 10KG KA (BHN BAKU KOSMETIK) COA 1340232", "output": "38249999"}, {"text_input": "What is the hs code for SENSIDIN DO CN 10KG CA (BHN BAKU KOSMETIK) COA 1340439,1500730", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 CN 10KG KA (BHN BAKU KOSMETIK) COA 1340534,1341087,1341528", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 903 (SAMPLE) 100ML FL (BHN BAKU KOSMETIK) COA 1332917, SAMPLE FREE OF CHARGE", "output": "38249999"}, {"text_input": "What is the hs code for SENSIDIN DO 100 ML FL (BHN BAKU KOSMETIK) COA 1325548,1332922,1335611.SAMPLE FREE OF CHARGE", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 940 (SAMPLE) 100ML FL (BHN BAKU KOSMETIK) COA 1333310, SAMPLE FREE OF CHARGE", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 SAMPLE(S) 100ML FL (BHN BAKU KOSMETIK) COA 1323757,1335586,1337764", "output": "38249999"}, {"text_input": "What is the hs code for SWT 7TM H (BHN BAKU KOSMETIK) COA 1729201", "output": "39139090"}, {"text_input": "What is the hs code for ALDAVINE 5X (BHN BAKU KOSMETIK) COA 5504917", "output": "39139090"}, {"text_input": "What is the hs code for B WHITE (BHN BAKU KOSMETIK) COA 829015555H", "output": "39139090"}, {"text_input": "What is the hs code for BODY 3 COMPLEX (BHN BAKU KOSMETIK) COA B3C010317", "output": "38249999"}, {"text_input": "What is the hs code for CAPIXYL (BHN BAKU KOSMETIK), COA 830015906H", "output": "39139090"}, {"text_input": "What is the hs code for CAPIXYL (BHN BAKU KOSMETIK), COA 8300015775H", "output": "39139090"}, {"text_input": "What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769015443H", "output": "39139090"}, {"text_input": "What is the hs code for HELIOGEL TM (BHN BAKU KOSMETIK) COA 1719801", "output": "39139090"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1727802", "output": "39139090"}, {"text_input": "What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015909H", "output": "39139090"}, {"text_input": "What is the hs code for PROGELINE (BHN BAKU KOSMETIK) COA 820055712H", "output": "39139090"}, {"text_input": "What is the hs code for SWT 7TM L (BHN BAKU KOSMETIK) COA 1725601", "output": "39139090"}, {"text_input": "What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784025824H", "output": "39139090"}, {"text_input": "What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA.18100057", "output": "29221990"}, {"text_input": "What is the hs code for GRANULAC 70 (BHN BAKU OBAT) COA LC 001-7-870", "output": "17021100"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB020118", "output": "39123900"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B261217", "output": "39123900"}, {"text_input": "What is the hs code for NICOTINAMIDE US/EP (BHN BAKU KOSMETIK) COA 17-18/NMD(P)/U/229 S/D 233", "output": "29362900"}, {"text_input": "What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 172434", "output": "38249999"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 172528", "output": "13021990"}, {"text_input": "What is the hs code for SAKURA EXTRACT (BHN BAKU KOSMETIK) COA 171058", "output": "13021990"}, {"text_input": "What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 172071", "output": "13021990"}, {"text_input": "What is the hs code for O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 080817/004810", "output": "39139090"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7319547...", "output": "38210010"}, {"text_input": "What is the hs code for DL PANTHENOL 50L (BHN BAKU KOSMETIK) COA TL01706630", "output": "29362400"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ70413105", "output": "29362500"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0317111626,629,631 S/D 634", "output": "29189900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU KOSMETIK) UT17060751", "output": "29362100"}, {"text_input": "What is the hs code for PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0317111626", "output": "29189900"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01708070,71", "output": "29362400"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) UT17060049", "output": "29362800"}, {"text_input": "What is the hs code for BEAUPLEX VH ( BHN BAKU KOSMETIK) COA UF17082002", "output": "29189900"}, {"text_input": "What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0015511", "output": "29362500"}, {"text_input": "What is the hs code for DICLOFENAC POTASSIUM BP (BHN BAKU OBAT) COA DFK/7100058", "output": "29224900"}, {"text_input": "What is the hs code for MEROPENEM TRIHYDRATE WITH SODIUM CARBONATE STERILE (BHN BAKU OBAT) COA S0820171104", "output": "30032000"}, {"text_input": "What is the hs code for DEXAMETHASONE (BHN BAKU OBAT) COA X5-171212", "output": "29372200"}, {"text_input": "What is the hs code for OPACODE WHITE ( BHN BAKU OBAT UTK PEWARNA TABLET) COA. WP793254", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602195", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED(BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602212", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602207", "output": "38249999"}, {"text_input": "What is the hs code for ROVIMIX A 1000, 20KGBAL (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT17080789,796", "output": "29362100"}, {"text_input": "What is the hs code for ROVIMIX E 50 ADSORBATE, 25KG BAG (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT17110269", "output": "29362800"}, {"text_input": "What is the hs code for EPA DHA 44 37 (BHN BAKU OBAT) COA EE4437-180102", "output": "29061300"}, {"text_input": "What is the hs code for AMBROXOL HYDROCHLORIDE POWDER (BHN BAKU OBAT) COA AHM/18003,18004", "output": "29221990"}, {"text_input": "What is the hs code for FLOWLAC (R) 90 (BHN BAKU OBAT) COA L101534717A535", "output": "17021100"}, {"text_input": "What is the hs code for SODIUM VALPROATE (BAHAN BAKU OBAT) COA.450871 (550)", "output": "29159090"}, {"text_input": "What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 181217", "output": "25070000"}, {"text_input": "What is the hs code for LUBRIPHARM (R) SSF NF/JP SODIUM STEARYL FUMARATE (BHN BAKU OBAT) COA 121707950", "output": "28161000"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702605740", "output": "29372900"}, {"text_input": "What is the hs code for CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA. 1GC01CLB ZP48D 25MT", "output": "39139090"}, {"text_input": "What is the hs code for PEG 400 (POLYETHYLENE GLYCOL) BAHAN BAKU KOSMETIK) COA.AKW0003785", "output": "39139090"}, {"text_input": "What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 183779", "output": "29332900"}, {"text_input": "What is the hs code for PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) COA 96244", "output": "38249999"}, {"text_input": "What is the hs code for HYDROXOCOBALAMIN CHLORIDE HP (BHN BAKU OBAT) COA.541783", "output": "29362600"}, {"text_input": "What is the hs code for HEXETIDINE (BAHAN BAKU OBAT) COA.FG18200013", "output": "29335990"}, {"text_input": "What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA. NY0008M", "output": "29372200"}, {"text_input": "What is the hs code for LIDOCAINE BASE (BHN BAKU OBAT) COA. 186134", "output": "29242990"}, {"text_input": "What is the hs code for LIDOCAINE HCL (BHN BAKU OBAT) COA.186175", "output": "29242990"}, {"text_input": "What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA. 20180108", "output": "11081200"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180105", "output": "17029019"}, {"text_input": "What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA. 20180106", "output": "17023010"}, {"text_input": "What is the hs code for MANNITOL POWDER USP/EP - MANNO (BHN BAKU OBAT) COA.301711305", "output": "29054300"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602114", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602500", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602388", "output": "38249999"}, {"text_input": "What is the hs code for CHOLINE L-BITARTRATE (BAHAN BAKU OBAT) COA.3014156", "output": "29231000"}, {"text_input": "What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA. WP787390", "output": "39059990"}, {"text_input": "What is the hs code for PVAP PHTHALAVIN NF CLEAR (BAHAN BAKU OBAT UTK PEWARNA TABLET) COA. WP787399", "output": "39059990"}, {"text_input": "What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA. WP787395", "output": "39059990"}, {"text_input": "What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP787394", "output": "39059990"}, {"text_input": "What is the hs code for SODIUM BICARBONATE IPH (BHN BAKU SUPLEMEN) COA. DOC0101821", "output": "28363000"}, {"text_input": "What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT17080014,15,16", "output": "29362100"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01709545", "output": "29362700"}, {"text_input": "What is the hs code for MEG 3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT17090052", "output": "29362500"}, {"text_input": "What is the hs code for LEVOFLOXACIN HEMIHYDRATE USP (BHN BAKU OBAT) COA LF17080046", "output": "29349990"}, {"text_input": "What is the hs code for KF-96A-6CS (BHN BAKU KOSMETIK) , COA 801941", "output": "39139090"}, {"text_input": "What is the hs code for KF-6028 (BHN BAKU KOSMETIK) COA 712179", "output": "39139090"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518010008", "output": "29189900"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708170176,177", "output": "29189900"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01708071", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA MCS1602029,53", "output": "29189900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11708017,22", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01704011", "output": "29362900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT17090195,196", "output": "29362800"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01708071", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT17090164", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT17090164", "output": "29362100"}, {"text_input": "What is the hs code for CALCITRIOL (BHN BAKU OBAT) COA F074-856R003-1, SAMPLE NO COMMERCIAL VALUE", "output": "29061900"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN536027", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN536073", "output": "35051010"}, {"text_input": "What is the hs code for STARCAP 1500 CO PROCESSED (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN535916", "output": "35051010"}, {"text_input": "What is the hs code for CEFTAZIDIME BUFFERED (BHN BAKU OBAT) COA Q104000", "output": "29419000"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M529699", "output": "29411019"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX POWDER (BHN BAKU OBAT) COA M483604,605,607,609", "output": "29411019"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX POWDER GRADE C (BHN BAKU OBAT) COA M631689,631691", "output": "29411019"}, {"text_input": "What is the hs code for OPACODE WHITE ( BHN BAKU OBAT UTK PEWARNA TABLET) COA. WP793723", "output": "32151900"}, {"text_input": "What is the hs code for FDANDC YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP789485", "output": "32151900"}, {"text_input": "What is the hs code for FDANDC YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP789484", "output": "32151900"}, {"text_input": "What is the hs code for DANDC YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP787034", "output": "32151900"}, {"text_input": "What is the hs code for DANDC YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP787038", "output": "32151900"}, {"text_input": "What is the hs code for FDANDC BLUE #2/INDIGO CARMINE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP781752", "output": "32151900"}, {"text_input": "What is the hs code for FDANDC BLUE #2/INDIGO CARMINE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP781742", "output": "32151900"}, {"text_input": "What is the hs code for LIPOID PPL 600 (BHN BAKU OBAT) COA.577200-2170209/011-012 (2)", "output": "29232010"}, {"text_input": "What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-0180118", "output": "29334910"}, {"text_input": "What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 2017L1396", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUO-012218", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK)COA KFB-L-030827", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-091617", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-022097", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-062017", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND GREEN TEA SEED OIL (BHN BAKU KOSMETIK) COA CSSO-010728", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND LICORICE EXTRACT (BHN BAKU KOSMETIK) COA GGB-022887", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-040818", "output": "39139090"}, {"text_input": "What is the hs code for LISINOPRIL DIHYDRATE (BHN BAKU OBAT) COA C5170-17-057", "output": "29339990"}, {"text_input": "What is the hs code for SODIUM LACTATE SOLUTION (BHN BAKU OBAT) COA CE180101D", "output": "29181900"}, {"text_input": "What is the hs code for METHYL SULFONYL METHANA (BHN BAKU OBAT) COA 18012501", "output": "29309090"}, {"text_input": "What is the hs code for EUXYL PE 9010 CN 10 KG KA (BHN BAKU KOSMETIK) COA.1501227,1503258", "output": "38249999"}, {"text_input": "What is the hs code for L-GLUTAMIC ACID ( BHN BAKU OBAT), COA 180130", "output": "29224900"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 71025", "output": "39139090"}, {"text_input": "What is the hs code for TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA 80102", "output": "39139090"}, {"text_input": "What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA. 20180120", "output": "17023010"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE /. 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT17100019", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT, 15KG BOXALU (BHN BAKU SUPLEMEN) COA WB08170238", "output": "29362800"}, {"text_input": "What is the hs code for DL-PANTHENOL 50L ,1000KG IBC (BHN BAKU KOSMETIK) COA TL01712658", "output": "29362400"}, {"text_input": "What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ70407015", "output": "29189900"}, {"text_input": "What is the hs code for OLIVE POLYPHENOLIC DRY EXTRACT (BHN BAKU SUPLEMEN) COA 17447", "output": "13021990"}, {"text_input": "What is the hs code for LABRAFIL M 1944 CS (BHN BAKU SUPLEMEN) COA.167167", "output": "28399000"}, {"text_input": "What is the hs code for TEFOSE 63 (BHN BAKU SUPLEMEN) COA 167738", "output": "28399000"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU KOSMETIK) COA 01/17GAAK", "output": "28399000"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU KOSMETIK) COA 01/17GAAK,SAMPLE NO COMM VALUE", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE AM PELLETS (BHN BAKU SUPLEMEN) COA 17E4403", "output": "28399000"}, {"text_input": "What is the hs code for MOXIFLOXACIN HYDROCHLORIDE EP (BHN BAKU OBAT) COA ADMXH-B007092017", "output": "29334910"}, {"text_input": "What is the hs code for MOXIFLOXACIN HYDROCHLORIDE EP (BHN BAKU OBAT) COA ADMXH-B007092017", "output": "29334910"}, {"text_input": "What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91712220", "output": "21069059"}, {"text_input": "What is the hs code for DWI BI (BHN BAKU MAKANAN) COA XW91801221,1222", "output": "21069059"}, {"text_input": "What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91712250", "output": "21069059"}, {"text_input": "What is the hs code for D PANTHENOL (BHN BAKU MAKANAN) COA TL01707063", "output": "29362400"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70803288,99", "output": "29362200"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11708022", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17070223,224", "output": "29362400"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70803289,99", "output": "29362200"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL01711802", "output": "29362400"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ70810150,151", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT17090164", "output": "29362100"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN), COA UT17010034", "output": "29362400"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL01711802", "output": "29362400"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70802464", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70803283,89", "output": "29362200"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ70810148,151", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ70810151", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G TOCO (BHN BAKU SUPLEMEN) COA UT17090164", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17080039", "output": "29362100"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL01708070", "output": "29362400"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01704011", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT17050019", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN MINERAL PREMIX 170299 (BHN BAKU MAKANAN), COA XW91801201 S/D 204", "output": "21069059"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN), COA UT17070027", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN ( BHN BAKU MAKANAN) COA UE01704011", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT17070219", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT17070027", "output": "29362900"}, {"text_input": "What is the hs code for SILVERION 2400 (BHN BAKU KOSMETIK) COA.17-06535", "output": "38249999"}, {"text_input": "What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT670908", "output": "32151900"}, {"text_input": "What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT670909", "output": "32151900"}, {"text_input": "What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT666547", "output": "32151900"}, {"text_input": "What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT670777", "output": "32151900"}, {"text_input": "What is the hs code for OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT669988", "output": "32151900"}, {"text_input": "What is the hs code for PUROLAN E 171 (BHN BAKU KOSMETIK) COA 5619815", "output": "38249999"}, {"text_input": "What is the hs code for INSTANT TEA POWDER (TEA EXTRACT) BHN BAKU MAKANAN, COA 802011, 802021", "output": "9022010"}, {"text_input": "What is the hs code for KAHLWAX 2956 (BHN BAKU KOSMETIK) COA F1802008-001, 09-001, 38-001", "output": "15211000"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA.03140118,03160118...", "output": "29351000"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE BP MICRONISED (BHN BAKU OBAT) COA 03200118,03210118...", "output": "29351000"}, {"text_input": "What is the hs code for FIBRE DRUM (EMPTY DRUMS) FREE OF COST NO COMMERCIAL VALUE", "output": "48192000"}, {"text_input": "What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334525,526,532", "output": "29419000"}, {"text_input": "What is the hs code for AMBROXOL HYDROCHLORIDE POWDER (BHN BAKU OBAT) COA AHM/18003,18005", "output": "29221990"}, {"text_input": "What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7227994", "output": "38210010"}, {"text_input": "What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7277961", "output": "38210010"}, {"text_input": "What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 71205, 80124", "output": "38249999"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP02118", "output": "28363000"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP02118", "output": "28363000"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7332596.", "output": "38210010"}, {"text_input": "What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8031555", "output": "38210010"}, {"text_input": "What is the hs code for QUANTIBRITE CD64 PE/CD45 PERCP MD22/2D1 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7341724", "output": "38210010"}, {"text_input": "What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7352771", "output": "38210010"}, {"text_input": "What is the hs code for CD3 FITC SK7 50 TESTS IVD (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8011762", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 73477530", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPLLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7332596", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7340561", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7340561", "output": "38210010"}, {"text_input": "What is the hs code for CYCLETEST PLUS DNA REAGENT KIT RUO/GMP (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7296955", "output": "38210010"}, {"text_input": "What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8016851", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7354931", "output": "38210010"}, {"text_input": "What is the hs code for VIAL TINSDALE ENRICHMENT 6X15ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7354892", "output": "38210010"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7268937", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7354931", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7319536", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7291650", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7325717", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7314928", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG L P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7289995", "output": "38210010"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7146880", "output": "38210010"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7237643", "output": "38210010"}, {"text_input": "What is the hs code for CD11C PE CE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7179827", "output": "38210010"}, {"text_input": "What is the hs code for CYCLETEST PLUS DNA REAGENT KIT RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7347625", "output": "38210010"}, {"text_input": "What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7235889", "output": "38210010"}, {"text_input": "What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7186970,7333561", "output": "38210010"}, {"text_input": "What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7226996", "output": "38210010"}, {"text_input": "What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8016851", "output": "38210010"}, {"text_input": "What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7250529", "output": "38210010"}, {"text_input": "What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7305643", "output": "38210010"}, {"text_input": "What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7220771", "output": "38210010"}, {"text_input": "What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7333763", "output": "38210010"}, {"text_input": "What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7345542", "output": "38210010"}, {"text_input": "What is the hs code for CD45 PERCP 2D1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7317768", "output": "38210010"}, {"text_input": "What is the hs code for CD33 PE 67.6 100 TESTS TUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8005840", "output": "38210010"}, {"text_input": "What is the hs code for HU CD206 FITC 19.2 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7258565", "output": "38210010"}, {"text_input": "What is the hs code for HU CD209 APC DCN46 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7201902", "output": "38210010"}, {"text_input": "What is the hs code for HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7125585", "output": "38210010"}, {"text_input": "What is the hs code for HU CD64 FITC 10.1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7250584", "output": "38210010"}, {"text_input": "What is the hs code for HU CD86 FITC 2331 (FUN-1) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7132528", "output": "38210010"}, {"text_input": "What is the hs code for MS LGG1KPA LTCI FITC MOPC-21 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6301865", "output": "38210010"}, {"text_input": "What is the hs code for HU HLA DR FITC L243 (G46-6) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6263631", "output": "38210010"}, {"text_input": "What is the hs code for HU CD163 PE GHI/61 100 TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7160585", "output": "38210010"}, {"text_input": "What is the hs code for HU CD274 PE MIH1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7096869", "output": "38210010"}, {"text_input": "What is the hs code for HU CD11C APC B-LY6 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7124669", "output": "38210010"}, {"text_input": "What is the hs code for BD CST BEADS KIT 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 72926", "output": "38210010"}, {"text_input": "What is the hs code for ANTI-MPO FITC 588 50 TESTS RUO/GMP (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7293950", "output": "38210010"}, {"text_input": "What is the hs code for CD3 APC SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7332754", "output": "38210010"}, {"text_input": "What is the hs code for HU CD40 FITC 5C3 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7132522", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060854", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7326679", "output": "38210010"}, {"text_input": "What is the hs code for VIAL NOVOBIOCIN SUPPLEMENT 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7347756", "output": "38210010"}, {"text_input": "What is the hs code for HU HLA-A2 FITC BB7.1 100UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7110642", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP AI VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7187918", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8012723", "output": "38210010"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7319856", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC XT PACK 90MM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8003895", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7251523", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7227521", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7251523", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7208538", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7234535,7270946", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171820", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7156929", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7227521", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171538", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7250997", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7018890", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7251541", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7103675", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7095842", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7102560", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7116560", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7114681,7208901", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7142628", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7198804", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7325792", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7297545", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7142625", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7193991", "output": "38210010"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7289581", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7193548,7306543", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7151674", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7262700", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7193661", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121863", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242958,7325764", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7005857,7157987", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060807", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7171538", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7250997", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7081890", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7109930", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7116560", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7178809", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7198804", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7297545", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7206720,...", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7152571,7297693", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7193724", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7209759", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242803", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121863", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242958", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7332778", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POLYSORBATE 80 100G 1 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7263958", "output": "38210010"}, {"text_input": "What is the hs code for TUBE CRYSTAL INOCULUM BROTH (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7335882", "output": "38210010"}, {"text_input": "What is the hs code for TUBE CRYSTAL E/ID INOCULUM FLUID(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7335881", "output": "38210010"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7319856", "output": "38210010"}, {"text_input": "What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7296590,7326806", "output": "38210010"}, {"text_input": "What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7303629", "output": "38210010"}, {"text_input": "What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7304548", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7306827", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242852", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7220797", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7317688", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 7325773", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7261795", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7220787", "output": "38210010"}, {"text_input": "What is the hs code for GASPAK EZ STANDARD INCUBATION CONTAINER(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7261716010", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7198543", "output": "38210010"}, {"text_input": "What is the hs code for PAIL LAURYL TRYPTOSE BROTH 2KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7234887", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7177823", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7220793", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7325649", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7250994", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7102731", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7109953", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7206693", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE YEAST CARBON BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7256543", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7297698", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121569", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7171993", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA IC XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7317878", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA IC XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7317878", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7317895", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA IC XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7339575", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA IC XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7339579", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7317895", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7317895", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA IC XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7317878", "output": "38210010"}, {"text_input": "What is the hs code for NICOTINAMIDE US/EP (BHN BAKU KOSMETIK) COA 17-18/NMD(P)/U/235 S/D 240", "output": "29362900"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M595695,96", "output": "29411019"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA180102", "output": "39139090"}, {"text_input": "What is the hs code for DULSE PHYTELENE EG 745 (BG) (BHN BAKU KOSMETIK)COA EG745-180101-GS-B", "output": "38249999"}, {"text_input": "What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH180202-ENBIO", "output": "39139090"}, {"text_input": "What is the hs code for AC019KC PHYTOVITYL C 5KG BHN BAKU KOSMETIK COA 0019724", "output": "39139090"}, {"text_input": "What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-001-V", "output": "39139090"}, {"text_input": "What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN1400917", "output": "29221990"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA ROA040183", "output": "28363000"}, {"text_input": "What is the hs code for THIOGLYCOLIC ACID 99PCT COSMETIC GRADE (BHN BAKU KOSMETIK) COA.0000061945", "output": "29309090"}, {"text_input": "What is the hs code for AMMONIUM THIOGLYCOLATE 71PCT(60PCT TGA) BHN BAKU KOSMETIK, COA.0000061946", "output": "29309090"}, {"text_input": "What is the hs code for MONOETHANOLAMINE THIOGLYCOLATE 83PCT (50PCT TGA) BHN BAKU KOSMETIK, COA 0000061947", "output": "29221100"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP02118", "output": "28363000"}, {"text_input": "What is the hs code for MIRANOL ULTRA C32 200KG PLASCTIC DRUM (BHN BAKU KOSMETIK) COA BP801011R", "output": "34029099"}, {"text_input": "What is the hs code for PG USP (BHN BAKU KOSMETIK) COA B01231UP", "output": "29053200"}, {"text_input": "What is the hs code for DPG FG (BHN BAKU KOSMETIK) COA B01231DP", "output": "29094900"}, {"text_input": "What is the hs code for PG USP (FREE SAMPLE) BHN BAKU KOSMETIK, COA B01231UP,SAMPLE NO COMM VALUE", "output": "29053200"}, {"text_input": "What is the hs code for CARBAZOCHROME SODIUM SULFONATE (ORAL GRADE) BHN BAKU OBAT,COA AC71201/80112", "output": "29339990"}, {"text_input": "What is the hs code for HUILE DE COPRAH RAFF GV 24/26 (BHN BAKU KOSMETIK)COA BA007207", "output": "15131910"}, {"text_input": "What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.18100077", "output": "29391900"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA DKD, KAE", "output": "39139090"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA DKD", "output": "39139090"}, {"text_input": "What is the hs code for PROMOIS WS (BHN BAKU KOSMETIK) COA KAC", "output": "39139090"}, {"text_input": "What is the hs code for SILASOMA MFA (S) (BHN BAKU KOSMETIK) COA DGC", "output": "39139090"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601910", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601916", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601915", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601908", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601921", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601920", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601914", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601929", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601913", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601906", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601905", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY QX ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601904", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601723", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601630", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601630", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601911", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601912", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601919", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601907", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599845", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601922", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601903", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602114", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602417", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602211", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601908", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602209", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602217", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602208", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602213", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602214", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602210", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602216", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GRAY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602200", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602201", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602117", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602113", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH599892", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601921", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602107", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602111", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602112", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602101", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602186", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602116", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602103", "output": "38249999"}, {"text_input": "What is the hs code for DOCUSATE SODIUM (BAHAN BAKU OBAT) COA.SD7071636, SAMPLE NO COMMERCIAL VALUE", "output": "29171900"}, {"text_input": "What is the hs code for METAMIZOL SODIUM TYPE T 25 (BHN BAKU OBAT) COA.171286", "output": "29331100"}, {"text_input": "What is the hs code for PF.ANTI SHINE WASH (BHN BAKU KOSMETIK)COA 10300065", "output": "38249999"}, {"text_input": "What is the hs code for ANTISHINE WASH 1 (BHN BAKU KOSMETIK) COA 10300107", "output": "38249999"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG171103", "output": "29362700"}, {"text_input": "What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 1801EF4113", "output": "29224900"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180203", "output": "17029011"}, {"text_input": "What is the hs code for CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 017.629", "output": "90189090"}, {"text_input": "What is the hs code for CANNULA 25G PIX'L 0,5 X40 (BHN BAKU OBAT) COA 017.533,017.615", "output": "90189090"}, {"text_input": "What is the hs code for REST SKINB VITALLGHLIDO 1MLD16 (BHN BAKU OBAT) COA 15615-2", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE LYFT LIDOCAINE 1 ML (BHN BAKU OBAT) COA 15618-1, 15664-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE REFYNE 1ML (BHN BAKU OBAT) COA 15521-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE DEFYNE 1ML (BHN BAKU OBAT) COA 15613-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE KYSSE 1ML (BHN BAKU OBAT) COA 15268-1, 15761-1", "output": "90189090"}, {"text_input": "What is the hs code for LIFE'S DHA S35-O100, 5KG ALUF (B.BAKU SUPLEMEN) COA VY00249307", "output": "29362500"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602724", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602729", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602728", "output": "38249999"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 051801003137...", "output": "29189900"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518010031", "output": "29189900"}, {"text_input": "What is the hs code for STAY C (R) 50, 20KG BOX NA (BHN BAKU KOSMETIK) COA UT17090152,145", "output": "29362700"}, {"text_input": "What is the hs code for STAY C (R) 50, 5KG BAG ALU EX US (BHN BAKU KOSMETIK) COA UT17060074,91", "output": "29362700"}, {"text_input": "What is the hs code for D.BIOTIN (BHN BAKU KOSMETIK) COA UE01704011", "output": "29362900"}, {"text_input": "What is the hs code for BEAUPLEX (BHN BAKU KOSMETIK) COA UF17082002", "output": "29189900"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO170601", "output": "39139090"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO171102", "output": "39139090"}, {"text_input": "What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-171106-GS", "output": "39139090"}, {"text_input": "What is the hs code for GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK)COA EG209-171001", "output": "39139090"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG 543(BHN BAKU KOSMETIK) COA EG543-180101", "output": "39139090"}, {"text_input": "What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA VIV171001-BGBIO", "output": "39139090"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS170802", "output": "39139090"}, {"text_input": "What is the hs code for HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIE170702", "output": "38249999"}, {"text_input": "What is the hs code for PEPPERMINT ORGANIC DISTILLATE 1:5 SB (BHN BAKU KOSMETIK) COA MEPD170701-BIO", "output": "39139090"}, {"text_input": "What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM170702-PGH", "output": "39139090"}, {"text_input": "What is the hs code for POMEGRANATE OILY EXTRACT (BHN BAKU KOSMETIK) COA PUG170803-H", "output": "39139090"}, {"text_input": "What is the hs code for WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK) COA EG138-171102", "output": "39139090"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB01217203", "output": "29362100"}, {"text_input": "What is the hs code for CW 5C 50CT CLEAR (BHN BAKU KOSMETIK) COA 785015905J", "output": "39139090"}, {"text_input": "What is the hs code for ISOCELL TM SLIM (BHN BAKU KOSMETIK) COA 1731305", "output": "39139090"}, {"text_input": "What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK), COA 1724516", "output": "39139090"}, {"text_input": "What is the hs code for SWT 7TM H (BHN BAKU KOSMETIK), COA 1732601", "output": "39139090"}, {"text_input": "What is the hs code for CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785015905J", "output": "39139090"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5526617", "output": "39139090"}, {"text_input": "What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015909H", "output": "39139090"}, {"text_input": "What is the hs code for TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA634466", "output": "32151900"}, {"text_input": "What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0021968", "output": "29337900"}, {"text_input": "What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE01706008", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01707058,59", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17070066", "output": "29362900"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL01711802", "output": "29362400"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01708248", "output": "29362700"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01704011", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17070224,225", "output": "29362400"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11708023", "output": "29362900"}, {"text_input": "What is the hs code for DL A TOCOPHEROL (BHN BAKU MAKANAN) COA UT17060049", "output": "29362800"}, {"text_input": "What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ70309009", "output": "29362300"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17070225", "output": "29362400"}, {"text_input": "What is the hs code for RIBOFLAVIN RABLET GRADE (BHN BAKU SUPLEMEN) COA UQ70309009", "output": "29362300"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17070224", "output": "29362400"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17070224", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17080053,54", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT17080048,49", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17050034", "output": "32041900"}, {"text_input": "What is the hs code for B2 UNIVERSAL FINE POWDER, 5KG BAG ALU (BHN BAKU MAKANAN) COA UQ70410087,88", "output": "29362300"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UT1704011", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD(BHN BAKU SUPLEMEN) COA UT17110004", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11708023", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01704011", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ70910158", "output": "29362300"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT17070027", "output": "29362900"}, {"text_input": "What is the hs code for DL A TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT17060049", "output": "29362800"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01707059", "output": "32041900"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01710072", "output": "32041900"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UT1707059", "output": "32041900"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL01708248", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL01708248", "output": "29362700"}, {"text_input": "What is the hs code for DL A TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17100212", "output": "29362800"}, {"text_input": "What is the hs code for DL A TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT17100212", "output": "29362800"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL01708248", "output": "29362700"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11708023", "output": "29362900"}, {"text_input": "What is the hs code for RONOXAN A (BHN BAKU SUPLEMEN) COA UE01706008", "output": "29362100"}, {"text_input": "What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE01706008", "output": "29362100"}, {"text_input": "What is the hs code for DEXAMETASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 1703935854", "output": "29372200"}, {"text_input": "What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-0310218, S-0330218", "output": "29334910"}, {"text_input": "What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND171001, ND171002", "output": "29372200"}, {"text_input": "What is the hs code for SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 1707384793", "output": "29322090"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB01217203", "output": "29362100"}, {"text_input": "What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA.MLAH0080118", "output": "29341000"}, {"text_input": "What is the hs code for GINKGO EXTRACT (BHN BAKU OBAT) COA 1269505", "output": "13021950"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602833", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602834", "output": "38249999"}, {"text_input": "What is the hs code for KF-6017 (BHN BAKU KOSMETIK) , COA 801053", "output": "39139090"}, {"text_input": "What is the hs code for KSG-210 (16KG) BHN BAKU KOSMETIK, COA 802430", "output": "39139090"}, {"text_input": "What is the hs code for OPASPRAY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT670910", "output": "32151900"}, {"text_input": "What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF,1KG BOT PE (BHN BAKU SUPLEMEN) COA UE01710068", "output": "32030010"}, {"text_input": "What is the hs code for GENIVIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010017", "output": "29329990"}, {"text_input": "What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110017", "output": "29329990"}, {"text_input": "What is the hs code for GENIVIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010017", "output": "29329990"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010013", "output": "32041900"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB01017173", "output": "29362800"}, {"text_input": "What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110017", "output": "29329990"}, {"text_input": "What is the hs code for VITAMIN A AND D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18020037", "output": "29362100"}, {"text_input": "What is the hs code for COATED ASCORBIC ACID,TYPE EC (BHN BAKU SUPLEMEN) COA TL01801736, 1742", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT18010785", "output": "29362100"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010013", "output": "32041900"}, {"text_input": "What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110017", "output": "29329990"}, {"text_input": "What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF, 1KG BOT PE (BHN BAKU SUPLEMEN) COA UE01710068", "output": "32030010"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010013", "output": "32041900"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702605740", "output": "29372900"}, {"text_input": "What is the hs code for IBUPROFEN 40 GRADE (BHN BAKU OBAT) COA 4050-3220", "output": "29163990"}, {"text_input": "What is the hs code for CINNARIZINE (BHN BAKU OBAT) COA 032122017CIN", "output": "29335990"}, {"text_input": "What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 19-01-18", "output": "25070000"}, {"text_input": "What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA. 20180125", "output": "17023010"}, {"text_input": "What is the hs code for ASTRIN-AG (BHN BAKU KOSMETIK)COA BAG-030126, SAMPLE NO COMM VALUE", "output": "38249999"}, {"text_input": "What is the hs code for BIO SODIUM HYALURONATE 1PCT...(B BAKU KOSMETIK) COA HASC-081946,SAMPLE NO COMM VALUE", "output": "39139090"}, {"text_input": "What is the hs code for CUCUMBER EXTRACT(BHN BAKU KOSMETIK) COA CUPD-022966, SAMPLE NO COMM VALUE", "output": "38249999"}, {"text_input": "What is the hs code for FRUCTAN (BHN BAKU KOSMETIK)COA LSN-011717, SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GTB-022097, SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-022097, SAMPLE NO COMM VALUE", "output": "38249999"}, {"text_input": "What is the hs code for HASU LIQUID (BHN BAKU KOSMETIK) COA NFH-021307, SAMPLE NO COMM VALUE", "output": "38249999"}, {"text_input": "What is the hs code for LEMON EUCALYPTUS OIL (BHN BAKU KOSMETIK)COA SY-010924,SAMPLE NO COMM VALUE", "output": "38249999"}, {"text_input": "What is the hs code for LIRORICE EXTRACT (BHN BAKU KOSMETIK) COA S-012017, SAMPLE NO COMM VALUE", "output": "38249999"}, {"text_input": "What is the hs code for MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-21367,SAMPLE NO COMM VALUE", "output": "38249999"}, {"text_input": "What is the hs code for OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-021066,SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-11711056,SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for SC GLUCAN PF (BHN BAKU KOSMETIK) COA CPG-162426, SAMPLE NO COMM VALUE", "output": "38249999"}, {"text_input": "What is the hs code for SNAIL SECRETION FILTRATE(BHN BAKU KOSMETIK) COA SAFW-082816, SAMPLE NO COMM VALUE", "output": "38249999"}, {"text_input": "What is the hs code for SOYPOL SP PF (BHN BAKU KOSMETIK) COA CPS-022126, SAMPLE NO COMM VALUE", "output": "39139090"}, {"text_input": "What is the hs code for MARIGOLD EXTRACT (BHN BAKU KOSMETIK) COA MGA-010347,SAMPLE NO COMM VALUE", "output": "39139090"}, {"text_input": "What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK) COA.LDC 45 18", "output": "38249999"}, {"text_input": "What is the hs code for LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUMPLEMEN) COA 16490", "output": "38249999"}, {"text_input": "What is the hs code for BOSWELIA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 18021", "output": "38249999"}, {"text_input": "What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453119019", "output": "39139090"}, {"text_input": "What is the hs code for KETAMINE HCL (BHN BAKU OBAT), COA 0255017P", "output": "29223900"}, {"text_input": "What is the hs code for NEOSTIGMINE METHYLSULPHATE (BHN BAKU OBAT), COA NMS0217002", "output": "29242990"}, {"text_input": "What is the hs code for CILOSTAZOL USP (BHN BAKU OBAT) COA 6008CB2RIAX", "output": "29337900"}, {"text_input": "What is the hs code for FUROSEMIDE NON STERILE (BHN BAKU OBAT) COA 17172HRII", "output": "29359000"}, {"text_input": "What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA.165210", "output": "28399000"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA.01/17GAAK", "output": "28399000"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU KOSMETIK) COA.01/17GAAK,SAMPLE NO COMMERCIAL VALUE", "output": "28399000"}, {"text_input": "What is the hs code for GELUCIRE 44/14 (BAHAN BAKU OBAT) COA.167226", "output": "28399000"}, {"text_input": "What is the hs code for LABRAFIL M 1944 CS ( BAHAN BAKU OBAT) COA.167589", "output": "28399000"}, {"text_input": "What is the hs code for TEFOSE 63 (BAHAN BAKU OBAT) COA.167900", "output": "28399000"}, {"text_input": "What is the hs code for TEFOSE 63 (BAHAN BAKU OBAT) COA.168039", "output": "28399000"}, {"text_input": "What is the hs code for CETYL PALMITATE PELLETS CAR (BHN BAKU OBAT) COA 166673", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE BM PELLETS (BHN BAKU OBAT) COA 18E0405", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE AM PELLETS (BHN BAKU OBAT) COA 18E0403", "output": "28399000"}, {"text_input": "What is the hs code for TRANSCUTOL P (BHN BAKU OBAT) COA 166850", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE A PELLETS (BHN BAKU OBAT) COA 18E0504", "output": "28399000"}, {"text_input": "What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA.201700284", "output": "28183000"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 20 PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D184F43021", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180HBO002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180HBO002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180HBP002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180H58001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D0180H4B002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180H5K002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180H5N001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E50 PREMIUM LV ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011H24L01", "output": "39123900"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180125", "output": "17029019"}, {"text_input": "What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA. 20180202", "output": "17023010"}, {"text_input": "What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA. 20180205", "output": "11081200"}, {"text_input": "What is the hs code for VIRGIN SWEET ALMOND OIL CONFORM TO THE EUR ( BHN BAKU KOSMETIK) COA 0000020843", "output": "39139090"}, {"text_input": "What is the hs code for VIRGIN OLIVE OIL CONFORM TO THE EUR PH (BHN BAKU KOSMETIK) COA 0000020394", "output": "38249999"}, {"text_input": "What is the hs code for NIACINAMIDE PC ,25KG BOX (BHN BAKU KOSMETIK) COA 0000170011,21,687", "output": "29362900"}, {"text_input": "What is the hs code for GLICLAZIDE (BHN BAKU OBAT) COA 1740001442", "output": "29359000"}, {"text_input": "What is the hs code for NYSTATIN (BHN BAKU OBAT) COA.C114132", "output": "29419000"}, {"text_input": "What is the hs code for NOREPINEPHRINE BITARTRATE (BHN BAKU OBAT) COA 420104", "output": "29379010"}, {"text_input": "What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 201700284", "output": "28183000"}, {"text_input": "What is the hs code for IONOL CP (BHN BAKU KOSMETIK) COA 01134317", "output": "29420000"}, {"text_input": "What is the hs code for VALERIAN D.H.E >0.8PCT (BAHAN BAKU SUPLEMEN) COA 10465/M1", "output": "13021990"}, {"text_input": "What is the hs code for HAWTHORN DRY EXTRACT >1.8PCT (BAHAN BAKU SUPLEMEN) COA 10431/M1", "output": "13021990"}, {"text_input": "What is the hs code for PASSION FLOWER D.H.E > 4PC0T (BAHAN BAKU SUPPLEMEN) COA 09798/M1", "output": "13021990"}, {"text_input": "What is the hs code for BUTCHERBROOM DRY HYDR.EX 9-11PCT (BAHAN BAKU SUPPLEMEN) COA 10438/M1", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10219/M1", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10508/M1", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10509/M1", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10510/M1", "output": "13021990"}, {"text_input": "What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 10499/M1", "output": "38249999"}, {"text_input": "What is the hs code for SILYMARIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 10462/M1", "output": "38249999"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708160080, SAMPLE NO COMMERCIAL VALUE", "output": "29189900"}, {"text_input": "What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT17120017", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT17120016,17", "output": "29362100"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01709545,9562,801643", "output": "29362700"}, {"text_input": "What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) COA 7766001", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK)COA OSLP-022418", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-00918, HMVBD-062017", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-033107, 042217", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK) COA U180222", "output": "39139090"}, {"text_input": "What is the hs code for LINEN OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA LIU180101-H", "output": "39139090"}, {"text_input": "What is the hs code for LAVENDER ESSENSIAL OIL (FRANCE/MAILLETTE) (BHN BAKU KOSMETIK)COA LAM180201-IL", "output": "38249999"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA180203", "output": "39139090"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA180102", "output": "39139090"}, {"text_input": "What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 171058", "output": "13021990"}, {"text_input": "What is the hs code for NEEM LEAF LIQUID B (BHN BAKU KOSMETIK) COA 172789", "output": "13021990"}, {"text_input": "What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 172513", "output": "38249999"}, {"text_input": "What is the hs code for CLAIRJU (BHN BAKU KOSMETIK) COA 172567", "output": "13021990"}, {"text_input": "What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 172071", "output": "13021990"}, {"text_input": "What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETI) COA 172645", "output": "38249999"}, {"text_input": "What is the hs code for ALPINAWHITE (BHN BAKU KOSMETIK) COA 172512", "output": "13021990"}, {"text_input": "What is the hs code for VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU MAKANAN) COA HPB1711138", "output": "29362700"}, {"text_input": "What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1802032 S/D 34, 36 S/D42", "output": "29224900"}, {"text_input": "What is the hs code for CLONIDINE HCL (BHN BAKU OBAT) COA 180839", "output": "29332900"}, {"text_input": "What is the hs code for PANTOPRAZOLE SODIUM (STERILE) BHN BAKU OBAT, COA SI/PPZ/00090118", "output": "29333990"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121808520", "output": "28363000"}, {"text_input": "What is the hs code for PF.ANTI SHINE WASH (BHN BAKU KOSMETIK)COA 10300110", "output": "38249999"}, {"text_input": "What is the hs code for CLOMIPHENE CITRATE USP/EP (BHN BAKU OBAT ) COA 201706240002", "output": "29221990"}, {"text_input": "What is the hs code for CLOPIDOGREL BISULFATE USP(BHN BAKU OBAT) COA Q300600", "output": "29349990"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101854517A533", "output": "17021100"}, {"text_input": "What is the hs code for CELLACTOSE (R) 80 (BHN BAKU OBAT) COA L100464617A535", "output": "17021100"}, {"text_input": "What is the hs code for GRANULAC (R) 70 (BHN BAKU OBAT) COA L101845017A545", "output": "17021100"}, {"text_input": "What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104315117A552", "output": "17021100"}, {"text_input": "What is the hs code for FLOWLAC (R) 90 (BHN BAKU OBAT) COA L101534717A535", "output": "17021100"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602840", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602839", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602836", "output": "38249999"}, {"text_input": "What is the hs code for P GINSENG DRY EXTRACT/ IDB (BHN BAKU SUPLEMEN) COA 32190/M1", "output": "13021990"}, {"text_input": "What is the hs code for VACCINIUM MYRTILLUS DRY EX (BHN BAKU SUPLEMEN) COA 32501/M1", "output": "13021990"}, {"text_input": "What is the hs code for ECHINACEA ANG DRY PURIF EX (BHN BAKU SUPLEMEN) COA 32226/M1", "output": "13021990"}, {"text_input": "What is the hs code for SERENOA REPENS PURIFIED EXT (BHN BAKU SUPLEMEN) COA 32455/B/1", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA TRITERP (BHN BAKU SUPLEMEN) COA 32529/M1", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA /PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 31730/H1", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 32529/M1", "output": "38249999"}, {"text_input": "What is the hs code for MIRTOGENOL (R) BHN BAKU SUPLEMEN, COA 80343/M", "output": "38249999"}, {"text_input": "What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5497417", "output": "39139090"}, {"text_input": "What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5497417", "output": "39139090"}, {"text_input": "What is the hs code for AMISOL TRIO (BHN BAKU KOSMETIK) COA 1717614", "output": "39139090"}, {"text_input": "What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829015555H", "output": "39139090"}, {"text_input": "What is the hs code for CAPIXYL (BHN BAKU KOSMETIK), COA 830015925H", "output": "39139090"}, {"text_input": "What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK), COA 769015525H", "output": "39139090"}, {"text_input": "What is the hs code for EXO H (BHN BAKU KOSMETIK) COA 715025820H", "output": "39139090"}, {"text_input": "What is the hs code for LANABLUE (BHN BAKU KOSMETIK) COA 5533018", "output": "39139090"}, {"text_input": "What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015372H", "output": "39139090"}, {"text_input": "What is the hs code for SILIGEL TM (BHN BAKU KOSMETIK) COA 1732901", "output": "39139090"}, {"text_input": "What is the hs code for TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784025908H", "output": "39139090"}, {"text_input": "What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830015769H", "output": "39139090"}, {"text_input": "What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769015578H", "output": "39139090"}, {"text_input": "What is the hs code for HELIOGEL TM (BHN BAKU KOSMETIK) COA 1732101", "output": "39139090"}, {"text_input": "What is the hs code for LANABLUE (BHN BAKU KOSMETIK) COA 5533018", "output": "39139090"}, {"text_input": "What is the hs code for LUBRIPHARM (R) SSF NF/JP SODIUM STEARYL FUMARATE (BHN BAKU OBAT) COA 121707690", "output": "28161000"}, {"text_input": "What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218010005", "output": "29420000"}, {"text_input": "What is the hs code for DL PANTHENOL 50L (BHN BAKU KOSMETIK) COA TL01706630", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518010031,32", "output": "29420000"}, {"text_input": "What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00511322", "output": "29420000"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO)(BHN BAKU KOSMETIK) COA UT17070761", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180033 S/D 36", "output": "29420000"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT17090164", "output": "29362100"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180036,37,38", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001461085", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0518010031", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX ,200KG PLASTIC DRUM(BHN BAKUMKOSMETIK) COA 0518010031", "output": "29420000"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT17110248,254", "output": "29362800"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0317111726,728 S/D 732", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL HS (BHN BAKU KOSMETIK) COA 0709160052", "output": "29420000"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01709083", "output": "29362400"}, {"text_input": "What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU OBAT) COA 201700426, SAMPLE NO COMMERCIAL VALUE", "output": "28183000"}, {"text_input": "What is the hs code for KF-6038 (BHN BAKU KOSMETIK) , COA 802192", "output": "38249999"}, {"text_input": "What is the hs code for KF-96A-6CS (16KG) BHN BAKU KOSMETIK, COA 802944", "output": "38249999"}, {"text_input": "What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-0420218", "output": "29334910"}, {"text_input": "What is the hs code for SURELEASE ETHYLCELLULOSE ( BHN BAKU OBAT UTK PEWARNA TABLET) COA IN536166", "output": "32151900"}, {"text_input": "What is the hs code for ASTABIO ARV-S (BHN BAKU OBAT) COA.1711211K", "output": "32030010"}, {"text_input": "What is the hs code for EPA DHA 44 37 (BHN SUPLEMEN KESEHATAN) COA EE4437-180226", "output": "29061300"}, {"text_input": "What is the hs code for KAHLWAX 2956 (BHN BAKU KOSMETIK) COA F1807055-001", "output": "15211000"}, {"text_input": "What is the hs code for SK BIOLAND BIO SODIUM HYALURONATE POWDER (MMW) (B. BAKU KOSMETIK)COA CHP2171025,1180221, 227", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-132607, OHA-022328", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-022418", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK)COA NMP-L-893107", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-012218", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-092717, 010528", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-021127", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK)COA ARP-1110597", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-022017", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSFAC-021617", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND GRAPE SEED EXTRACT(BHN BAKU KOSMETIK) COA GSC-K-012518", "output": "39139090"}, {"text_input": "What is the hs code for CENTELLA ASIATICA EXTRACT ( BHN BAKU KOSMETIK), COA GKP 17084 EOU", "output": "38249999"}, {"text_input": "What is the hs code for CYANACOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPLEMEN KESEHATAN) COA.1705724344", "output": "29362600"}, {"text_input": "What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 17111307", "output": "38029090"}, {"text_input": "What is the hs code for ALLOPURINOL BP (BHN BAKU OBAT) COA ALP0010218", "output": "29335990"}, {"text_input": "What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BIO1207", "output": "29349990"}, {"text_input": "What is the hs code for RANITIDINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA RH193 02 18, 194 02 18...", "output": "29321900"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT SD (BHN BAKU SUPLEMEN) COA WB08170239", "output": "29362800"}, {"text_input": "What is the hs code for CAROCARE NAT BC 20PCT CWS/S-TG, 10KG BAG (BHN BAKU SUPLEMEN) COA EW19022001", "output": "29362500"}, {"text_input": "What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110003", "output": "32041900"}, {"text_input": "What is the hs code for GENIVIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010017", "output": "29329990"}, {"text_input": "What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX ALU (BHN BAKU SUPLEMEN) COA WB01217437", "output": "29362700"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT SD, 15KG BOXALU (BHN BAKU SUPLEMEN) COA WB08170238,239", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17070052", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17070052,53", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT SD, 15KGBOXALU (BHN BAKU SUPLEMEN) COA WB08170239", "output": "29362800"}, {"text_input": "What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0020663", "output": "29420000"}, {"text_input": "What is the hs code for OLIO VINACCIOLI RAFFINATO (BHN BAKU OBAT) COA.B1800050", "output": "15152919"}, {"text_input": "What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0417070100", "output": "29420000"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180225", "output": "17029019"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ70613155", "output": "29362500"}, {"text_input": "What is the hs code for D PANTHENOL (BHN BAKU KOSMETIK) COA TL01709083", "output": "29362400"}, {"text_input": "What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91802205,206,207", "output": "29420000"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT17090061", "output": "29362800"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OPI1710005", "output": "29362900"}, {"text_input": "What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01703810", "output": "29362400"}, {"text_input": "What is the hs code for ETHYL PANTHENOL 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01703810", "output": "29362400"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA", "output": "39139090"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA", "output": "39139090"}, {"text_input": "What is the hs code for PROMOIS KR-30 (BHN BAKU KOSMETIK) COA", "output": "38249999"}, {"text_input": "What is the hs code for VISTANOL GDHR (BHN BAKU KOSMETIK) COA", "output": "39139090"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 20 PREMIUM (BHN BAKU OBAT UTK PEWARNA TABLET) COA D184HC1021", "output": "39123900"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602857", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602802", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602843", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602842", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602855", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602856", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602858", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602844", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602887", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602857", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602853", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602847", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602860", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602852", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602886", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601630", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602859", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602841", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602833", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602846", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602854", "output": "38249999"}, {"text_input": "What is the hs code for CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 017.629", "output": "90189090"}, {"text_input": "What is the hs code for CANNULA 25G PIX'L 0,5 X40 (BHN BAKU OBAT) COA 017.615", "output": "90189090"}, {"text_input": "What is the hs code for CANNULA 27G PIX'L 0,4X40 (BHN BAKU OBAT) COA 016,661", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE SUBQ 2ML D16 (BHN BAKU OBAT) COA 15351-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE SKINB VITLIDO 1MLD16 (BHN BAKU OBAT) COA 15616-2", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML (BHN BAKU OBAT) COA 15713-2", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE DEFYNE 1ML (BHN BAKU OBAT) COA 15613-1", "output": "90189090"}, {"text_input": "What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA.201800078, 51", "output": "28183000"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP18013291, 292", "output": "29211900"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702625877", "output": "29372900"}, {"text_input": "What is the hs code for TETRACYCLINE HYDROCHLORIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 180202-61", "output": "29413000"}, {"text_input": "What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP 5300 (BHN BAKU OBAT) COA 101769010,1769014", "output": "28161000"}, {"text_input": "What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334541, 45,46, 47", "output": "29419000"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7324913", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7242852", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009829", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7325792", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7324913", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7193661", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7340723", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 7312572", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242852", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7250997", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7018890", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7291775", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7235794", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7198804", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7325793", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7297545", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7142625,730565", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7193991", "output": "38210010"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7324657.", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7306543,7321586", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 715167428", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7283691", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7297693,8011939", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7312538", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7283675", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7325764", "output": "38210010"}, {"text_input": "What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7339618", "output": "38210010"}, {"text_input": "What is the hs code for KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7299963", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8022543", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8022544", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8022544", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK 90MM 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8022543", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8022543", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WAT 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7332733", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7317688", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7349600", "output": "38210010"}, {"text_input": "What is the hs code for PAIL BAIRD PARKER AGAR BASE 2KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7325760", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7317819", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7276846", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D-MANNOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7135976", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7276777", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7220787", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EE BROTH MOSSEL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7143744", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7297698", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7198543", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7142616", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6278861", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY BROTH STERILE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6271694", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7363785", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MICRO INOCULUM BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6342747", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7306938", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7153524", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7220793", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PSEUDOMONAS AGAR F 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7177860", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7153977", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7156779", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7291693", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SALICIN 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8032973", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE STOCK CULTURE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242925", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY BROTH STERILE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 62716947", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7296858", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7129691,802485", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7340723", "output": "38210010"}, {"text_input": "What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7339766", "output": "38210010"}, {"text_input": "What is the hs code for TUBE CRYSTAL E/ ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7335881", "output": "38210010"}, {"text_input": "What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7339624", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY BROTH STERIL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6271694", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8010924", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8045999953", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8031785", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8022543", "output": "38210010"}, {"text_input": "What is the hs code for KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7299963", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8037783", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8022544", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA IC XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7339579", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7338553", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BEEF EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7296821", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PROTEOSE PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8009830", "output": "38210010"}, {"text_input": "What is the hs code for PAIL CASAMINO ACIDS TECHNICAL 10KG (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7114555", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE GRAM IODINE STABILIZED 250ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7340980", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CELLOBIOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8023615", "output": "38210010"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB01217203", "output": "29362100"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20171201", "output": "29362800"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01801643,1667,1756", "output": "29362700"}, {"text_input": "What is the hs code for MEG 3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT17090053", "output": "29362500"}, {"text_input": "What is the hs code for DL-PANTHENOL 50L, 1000 KG IBC (BHN BAKU KOSMETIK) COA TL01801601", "output": "29362400"}, {"text_input": "What is the hs code for ETHYL PANTHENOL, 1000KG IBC (BHN BAKU MAKANAN) COA TL01710816,817", "output": "29362400"}, {"text_input": "What is the hs code for PLASTIBASE 55W (BAHAN BAKU OBAT) COA.106788, SAMPLE NO COMMERCIAL VALUE", "output": "27129090"}, {"text_input": "What is the hs code for DAMIANA EXTRACT (BHN BAKU OBAT) COA BNPD180201", "output": "39139090"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA ROA056184, ROA057187", "output": "28363000"}, {"text_input": "What is the hs code for PEG 400 (POLYETHYLENE GLYCOL) BAHAN BAKU KOSMETIK) COA.AKW0005174,5133,5043", "output": "38249999"}, {"text_input": "What is the hs code for CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA. 1GC01CLB ZP48D 250MT", "output": "38249999"}, {"text_input": "What is the hs code for LIQUORICE LC (BHN BAKU KOSMETIK) COA.110036/P74489-P74492", "output": "13021920"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN536075", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN536519", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN536097", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN536090", "output": "35051010"}, {"text_input": "What is the hs code for ASTABIO ARV-S (BHN BAKU OBAT) COA.1711211K", "output": "32030010"}, {"text_input": "What is the hs code for METHYL SULFONYL METHANE USP (BHN BAKU OBAT) COA 18021401", "output": "29309090"}, {"text_input": "What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20180216", "output": "29309090"}, {"text_input": "What is the hs code for GLUCOSAMINE HCL (BHN BAKU OBAT) COA JST20180128", "output": "29329990"}, {"text_input": "What is the hs code for IRBESARTAN (BHN BAKU OBAT) COA C5465-17-036, C5465-17-044,045", "output": "29332900"}, {"text_input": "What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 1802026", "output": "29349990"}, {"text_input": "What is the hs code for INOSITOL (BHN BAKU OBAT) COA 201712147,48", "output": "29061300"}, {"text_input": "What is the hs code for INOSITOL (BHN BAKU OBAT) COA 201712128", "output": "29061300"}, {"text_input": "What is the hs code for FIBRE DRUM (DRUM KOSONG)", "output": "48192000"}, {"text_input": "What is the hs code for TETRACYCLINE HYDROCHLORIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 180202-61", "output": "29413000"}, {"text_input": "What is the hs code for CYTOFIX/CYTOPERM W/GOLGI STOP KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7346857", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7227994", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE GRAM SAFRANIN 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7347668", "output": "38210010"}, {"text_input": "What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7340813", "output": "38210010"}, {"text_input": "What is the hs code for VIAL B. PERTUSSIS ANTISERUM 1MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8045548", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONL (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8010945", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7291650", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7347753", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7289995", "output": "38210010"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7146880", "output": "38210010"}, {"text_input": "What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8031555", "output": "38210010"}, {"text_input": "What is the hs code for CD3 FITC SK7 50 TESTS IVD (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 8011762", "output": "38210010"}, {"text_input": "What is the hs code for STAIN BUFFER FBS 500ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7342968", "output": "38210010"}, {"text_input": "What is the hs code for LYSING BUFFER 10X CONCENTRATE 100ML (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7346596", "output": "38210010"}, {"text_input": "What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7235889", "output": "38210010"}, {"text_input": "What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8026653", "output": "38210010"}, {"text_input": "What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8016851", "output": "38210010"}, {"text_input": "What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8044954", "output": "38210010"}, {"text_input": "What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8026870", "output": "38210010"}, {"text_input": "What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7220771", "output": "38210010"}, {"text_input": "What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7333763", "output": "38210010"}, {"text_input": "What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7345542", "output": "38210010"}, {"text_input": "What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8044550", "output": "38210010"}, {"text_input": "What is the hs code for CD34 PERCP CY5.5 8G12 50 TESTS G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8043794", "output": "38210010"}, {"text_input": "What is the hs code for CYTOFIX /CYTOPERM SOLN KIT(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7346888", "output": "38210010"}, {"text_input": "What is the hs code for HU CD183 PE-CY7 1C6/CXCR3 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7188713", "output": "38210010"}, {"text_input": "What is the hs code for CD4 APC SK3 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7030773", "output": "38210010"}, {"text_input": "What is the hs code for CD4 PERCP SK3 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6285891", "output": "38210010"}, {"text_input": "What is the hs code for HU IL 4 APC MP4-25D2 100UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7286765", "output": "38210010"}, {"text_input": "What is the hs code for HU CD25 FITC M-A251 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7019546", "output": "38210010"}, {"text_input": "What is the hs code for HU FOXP3 ALEXA 647 259D/C7 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7177697", "output": "38210010"}, {"text_input": "What is the hs code for HU IL-17A PE N49-653 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8004580", "output": "38210010"}, {"text_input": "What is the hs code for CD20 FITC L27 100TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7303974", "output": "38210010"}, {"text_input": "What is the hs code for HU CD64 APC H7 10.1 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7306651", "output": "38210010"}, {"text_input": "What is the hs code for HU CD36 HORIZON V450 CB38 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7251514", "output": "38210010"}, {"text_input": "What is the hs code for HU CD7 APC M-T701 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7144949", "output": "38210010"}, {"text_input": "What is the hs code for HU CD3 BV421 UCHT1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8036773", "output": "38210010"}, {"text_input": "What is the hs code for HU CD10 BV421 HI10A 100TST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7040983", "output": "38210010"}, {"text_input": "What is the hs code for HU CD138 BV421 MI15 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7341707", "output": "38210010"}, {"text_input": "What is the hs code for HU CD19 BV510 SJ25C1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7292805", "output": "38210010"}, {"text_input": "What is the hs code for HU CD14 BV421 MPHIP9 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7145789", "output": "38210010"}, {"text_input": "What is the hs code for CD43 APCH7 (1G10) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7181820", "output": "38210010"}, {"text_input": "What is the hs code for HU CD103 BV421 BER-ACT8 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6266926", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7324962", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8010945", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7291650", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7354964", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7220822", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7060799", "output": "38210010"}, {"text_input": "What is the hs code for TUBE PENASE CONCENTRATE 10X20MI (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7340551", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7220790", "output": "38210010"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6309655", "output": "38210010"}, {"text_input": "What is the hs code for HU CD30 PE BERH8 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7272949", "output": "38210010"}, {"text_input": "What is the hs code for CD4 APC SK3 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7318894", "output": "38210010"}, {"text_input": "What is the hs code for FASTIMMUNE HU IFN-GMA FITC 25723 11 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7116967", "output": "38210010"}, {"text_input": "What is the hs code for FASTIMMUNE HU IL 2 FITC 5344,111 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7307569", "output": "38210010"}, {"text_input": "What is the hs code for CD4 V4 FITC L120 50 YESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7108877", "output": "38210010"}, {"text_input": "What is the hs code for CD10 APC HI10A 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7348976", "output": "38210010"}, {"text_input": "What is the hs code for CD11B APC D12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8040948", "output": "38210010"}, {"text_input": "What is the hs code for CD56 APC NCAM16.2 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7346929", "output": "38210010"}, {"text_input": "What is the hs code for CD10 PE CY7 HI10A 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8024781", "output": "38210010"}, {"text_input": "What is the hs code for ANTI KAPPA FITC/ANTI LAMBDA PE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8023901", "output": "38210010"}, {"text_input": "What is the hs code for CD20 V500-C RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7296977", "output": "38210010"}, {"text_input": "What is the hs code for CD200 APC (MRC OX-104) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8032634", "output": "38210010"}, {"text_input": "What is the hs code for CD23 FITC EBVCS-5 RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8038570", "output": "38210010"}, {"text_input": "What is the hs code for CD38 APC-H7 (HB7) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8046672", "output": "38210010"}, {"text_input": "What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP A (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6239952", "output": "38210010"}, {"text_input": "What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP C (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7335666", "output": "38210010"}, {"text_input": "What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP W135 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6267761", "output": "38210010"}, {"text_input": "What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP Y 1MI(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7117785", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL O MENINGITIDIS POLY A (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7272548", "output": "38210010"}, {"text_input": "What is the hs code for VIAL BIBRIO CHOLERAE ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6309655", "output": "38210010"}, {"text_input": "What is the hs code for HU FOXP3 BUFFER SET 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7222681,7303573", "output": "38210010"}, {"text_input": "What is the hs code for VITASMOOTH (R) 041 (BHN BAKU OBAT) COA.121708222", "output": "28365010"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 BHN BAKU OBAT, COA 121808483", "output": "28363000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121808399, 121808400", "output": "28363000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 BHN BAKU OBAT, COA 121708249,121808399", "output": "28363000"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA.M110433", "output": "29339990"}, {"text_input": "What is the hs code for KP-550 (BHN BAKU KOSMETIK) , COA 801087, SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for X-21-5666 (BHN BAKU KOSMETIK) , COA 707038, SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY ORANGE (BAHAN BAKU UNTUK PEWARNA TABLET) COA. GA636230", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA636231", "output": "38249999"}, {"text_input": "What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 1802EF8411", "output": "29224900"}, {"text_input": "What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA. 20180225", "output": "17023010"}, {"text_input": "What is the hs code for CITRIC ACID MONOHYDRATE BP2009/E330 8-40 MESH(BHN BAKU SUPLEMEN) COA 2AX1802040", "output": "29181400"}, {"text_input": "What is the hs code for NATURAL SOURCE MIXED TOCOPHEROLS (BHN BAKU KOSMETIK) COA 180111M001", "output": "29362800"}, {"text_input": "What is the hs code for CITRIC ACID MONOHYDRATE BP2009/E330 8-40 MESH(BHN BAKU SUPLEMEN) COA 1MT1802535", "output": "29181400"}, {"text_input": "What is the hs code for CITRIC ACID MONOHYDRATE BP2009/E330 8-40 MESH(BHN BAKU SUPLEMEN) COA 2AX1802012", "output": "29181400"}, {"text_input": "What is the hs code for ALPINIAWHITE (BHN BAKU KOSMETIK) COA 173199", "output": "13021950"}, {"text_input": "What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 173046", "output": "29329990"}, {"text_input": "What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 172434", "output": "38249999"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 172964", "output": "13021950"}, {"text_input": "What is the hs code for CINDERELLACARE (BHN BAKU KOSMETIK) COA 172128", "output": "13021950"}, {"text_input": "What is the hs code for IZAYOI (BHN BAKU KOSMETI) COA 172648", "output": "13021950"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP06218", "output": "28363000"}, {"text_input": "What is the hs code for CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB01217057", "output": "29362700"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT17110079", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17070024", "output": "29362900"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70803300", "output": "29362200"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17050034", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT17090165", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17050034", "output": "32041900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01704011", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT17110004", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17070225", "output": "29362400"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01709533", "output": "29362700"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ71110181, 182", "output": "29362300"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17070024", "output": "29362900"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01710073", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17090165", "output": "29362100"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17110233", "output": "29362800"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17050034", "output": "32041900"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17070225", "output": "29362400"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ70910171", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT17090165", "output": "29362100"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ70910172, UQ71110181", "output": "29362300"}, {"text_input": "What is the hs code for ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL0179533", "output": "29362700"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT17110079", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17070024", "output": "29362900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE ( BHN BAKU SUPLEMEN), COA UT17110233", "output": "29362800"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01710073", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT17090165", "output": "29362100"}, {"text_input": "What is the hs code for B CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17050034", "output": "32041900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17110233", "output": "29362800"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01707060,10072", "output": "32041900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17070024", "output": "29362900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17110233", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT17090165", "output": "29362100"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ70706164", "output": "29362700"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL01708070", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN), COA UT17080054", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17090165", "output": "29362100"}, {"text_input": "What is the hs code for CANTHAXANTHIN 10PCT CWS/S (BHN BAKU MAKANAN) COA UT17040004", "output": "32041900"}, {"text_input": "What is the hs code for ASCORBIC ACID 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01709533", "output": "29362700"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01705010", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT17110004", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11710005", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17080255", "output": "29362400"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17050034", "output": "32041900"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17080255", "output": "29362400"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1710005", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417064,65", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO),BHN BAKU SUPLEMEN, COA UT17080762,63,64", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT17080054", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)BHN BAKU SUPLEMEN, COA UT17090165", "output": "29362100"}, {"text_input": "What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334549,43,37", "output": "29419000"}, {"text_input": "What is the hs code for METHISOPRINOL (BHN BAKU OBAT) COA.MTP8020089", "output": "29349990"}, {"text_input": "What is the hs code for CLOPIDOGREL BISULFATE (BHN BAKU OBAT) COA AALH003210,2207,3317...", "output": "29349990"}, {"text_input": "What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA P-63", "output": "29397900"}, {"text_input": "What is the hs code for VC SODIUM ASCORBATE REGULAR, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPN1712158,61", "output": "29362700"}, {"text_input": "What is the hs code for VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPB1712113", "output": "29362700"}, {"text_input": "What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH180202-ENBIO", "output": "39139090"}, {"text_input": "What is the hs code for ARGAN VIRGIN COLD PRESSED DEODORISED... (BHN BAKU KOSMETIK)COA ARHVD171105-SICBIO", "output": "38249999"}, {"text_input": "What is the hs code for LOTUS OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA NEN180202-H", "output": "39139090"}, {"text_input": "What is the hs code for ROSE OILY EXTRACT (BHN BAKU KOSMETIK)COA ROS180101-H", "output": "39139090"}, {"text_input": "What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-180101", "output": "39139090"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI17100009", "output": "29362900"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01709533", "output": "29362700"}, {"text_input": "What is the hs code for CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB01217057", "output": "29362700"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01712820,22", "output": "29362400"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70803300", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70803301", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70803300, 3301", "output": "29362200"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01709533", "output": "29362700"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT17110079", "output": "29362800"}, {"text_input": "What is the hs code for CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB01217057", "output": "29362700"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01710073", "output": "32041900"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01710073", "output": "32041900"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01710073", "output": "32041900"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01710072,73", "output": "32041900"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70803301", "output": "29362200"}, {"text_input": "What is the hs code for PX 103070-C3 (BHN BAKU MAKANAN) COA XW91712168", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91802065", "output": "21069059"}, {"text_input": "What is the hs code for DWI BI (BHN BAKU MAKANAN) COA XW91802004", "output": "21069059"}, {"text_input": "What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91801288", "output": "21069059"}, {"text_input": "What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91801291", "output": "21069059"}, {"text_input": "What is the hs code for DWI BI (BHN BAKU MAKANAN) COA XW91802004", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17120040", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17120040", "output": "29362600"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180H9G011", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180HAF033", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180HAF002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180H5D004", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D0180GCR003", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E15 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D011H8IL03", "output": "39123900"}, {"text_input": "What is the hs code for O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 112917/005062", "output": "38249999"}, {"text_input": "What is the hs code for SUPPOCIRE BM PELLETS (BHN BAKU OBAT) COA 18E0405", "output": "28399000"}, {"text_input": "What is the hs code for GELLUCIRE 44/14 (BHN BAKU OBAT) COA 168325", "output": "28399000"}, {"text_input": "What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA 168325", "output": "28399000"}, {"text_input": "What is the hs code for FASTIMMUNE CD8 INTCELAR IFN N-GMA DTEC KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH7313842", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8051824", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8053758", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8031750,8051824", "output": "38210010"}, {"text_input": "What is the hs code for PUROLAN E 171 (BHN BAKU KOSMETIK) COA 5636115", "output": "38249999"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01801756,2876,2897", "output": "29362700"}, {"text_input": "What is the hs code for PURIDROX TM COMPACTED, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B339954,60,63,64,65", "output": "29419000"}, {"text_input": "What is the hs code for CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 20180317", "output": "38249999"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK COA B090218", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB060218", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG301017", "output": "39123900"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603386", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603391", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603403", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603317", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603413", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601324", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603412", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603387", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB I WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603129", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601630", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603396", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603406", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603405", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603392", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603407", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603397", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603410", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603399", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603411", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603398", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603400", "output": "38249999"}, {"text_input": "What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603468", "output": "32151900"}, {"text_input": "What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603468", "output": "32151900"}, {"text_input": "What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603468", "output": "32151900"}, {"text_input": "What is the hs code for VC CALCIUM ASCORBATE DC, 25KG BAL (BHN BAKU SUPLEMEN) , COA HPT1801019", "output": "29362700"}, {"text_input": "What is the hs code for CALCIUM GLUCONATE EP (BHN BAKU OBAT) COA CGA-EP1802017", "output": "29181600"}, {"text_input": "What is the hs code for AMIKACIN SULFATE (BHN BAKU OBAT) COA 7H0313H20", "output": "29419000"}, {"text_input": "What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-171202", "output": "29397900"}, {"text_input": "What is the hs code for CITICOLINE SODIUM (BHN BAKU OBAT), COA 171101", "output": "29349990"}, {"text_input": "What is the hs code for DOXYCYCLINE HYDROCHLORIDE (BHN BAKU OBAT) COA DX180204004", "output": "29413000"}, {"text_input": "What is the hs code for INSTANT BLACK TEA POWDER TH B430 (BHN BAKU MAKANAN) COA 2018022401", "output": "9022010"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 INF OIL, 4,5KG PJUG (BHN BAKU SUPLEMEN) COA.TS00009740", "output": "29362500"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP18023040,41", "output": "29211900"}, {"text_input": "What is the hs code for CLOTRIMAZOLE MICRONIZED (BHN BAKU OBAT ) COA 201708010020", "output": "29332900"}, {"text_input": "What is the hs code for CEFOTAXIME SODIUM EP (BHN BAKU OBAT) COA Q900500", "output": "29419000"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT (BHN BAKU OBAT) COA. NX2695", "output": "29372900"}, {"text_input": "What is the hs code for LIDOCAINE BASE (BHN BAKU OBAT) COA. 186187", "output": "29242990"}, {"text_input": "What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK)COA ARP-160628, ARP-222028", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-1110597", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK) COA CPG-1012627", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK)COA KFB-L-030827", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 2018B1010", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-011918, 022228", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK) COA U180222", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-021127", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-022017", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-893107", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND CAMELLIA JAPONICA SEED OIL(BHN BAKU KOSMETIK) COA CJSO-022628", "output": "38249999"}, {"text_input": "What is the hs code for VC SODIUM ASCORBATE REGULAR, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPN1802094", "output": "29362700"}, {"text_input": "What is the hs code for HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 2752724", "output": "38249999"}, {"text_input": "What is the hs code for RYBOXYL TM (BHN BAKU KOSMETIK) COA Q0566501", "output": "39139090"}, {"text_input": "What is the hs code for CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785016095J", "output": "39139090"}, {"text_input": "What is the hs code for CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785015905J", "output": "39139090"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1800201", "output": "39139090"}, {"text_input": "What is the hs code for MATIPURE TM OIL FREE (BHN BAKU KOSMETIK), COA 1732002", "output": "38249999"}, {"text_input": "What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK), COA 828016098J", "output": "39139090"}, {"text_input": "What is the hs code for LANACHRYS (DISC) (BHN BAKU KOSMETIK) COA 793024744G", "output": "39139090"}, {"text_input": "What is the hs code for PRO LIPO TM NEO (BHN BAKU KOSMETIK) COA 1803101", "output": "39139090"}, {"text_input": "What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 82901571H", "output": "39139090"}, {"text_input": "What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830015981J", "output": "39139090"}, {"text_input": "What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769015926J", "output": "39139090"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5541818", "output": "38249999"}, {"text_input": "What is the hs code for TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784025908H", "output": "39139090"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0703160006", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0703160006", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL HS (BHN BAKU KOSMETIK) COA 0709160067", "output": "29420000"}, {"text_input": "What is the hs code for STAY C @50 ,20KG BOX NA (BHN BAKU KOSMETIK) COA UT17090154,155", "output": "29362700"}, {"text_input": "What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01703810", "output": "29362400"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP07118", "output": "28363000"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180227", "output": "17029019"}, {"text_input": "What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 171058", "output": "13021990"}, {"text_input": "What is the hs code for BARCROFT TM AL HYD GEL VISCO-9 USP (BHN BAKU OBAT) COA 101702042", "output": "28183000"}, {"text_input": "What is the hs code for AMBROXOL HYDROCHLORIDE POWDER (BHN BAKU OBAT) COA AHM/18003,18035", "output": "29221990"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603762", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603113", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603763", "output": "38249999"}, {"text_input": "What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603856", "output": "32151900"}, {"text_input": "What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603856", "output": "32151900"}, {"text_input": "What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603856", "output": "32151900"}, {"text_input": "What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603869", "output": "39061090"}, {"text_input": "What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA.LC 049-7-801, 050-7-801, 051-7-801", "output": "17021100"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA.08720318, 08710318,...", "output": "29359000"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE BP MICRONISED (BHN BAKU OBAT) COA 08760318, 08770318...", "output": "29359000"}, {"text_input": "What is the hs code for SENSIVA SC 50 CN 10KG KA (BHN BAKU KOSMETIK) COA 1341529,1500432", "output": "38249999"}, {"text_input": "What is the hs code for GROTANOL 3025 CN 10KG KA (BHN BAKU KOSMETIK) COA 1340232,1501870", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 100 CN 10KG KA (BHN BAKU KOSMETIK) COA 1500429,1504890,1505113", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 CN 200KG FA (BHN BAKU KOSMETIK) COA 1500517, 1504229", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 CN 10KG KA (BHN BAKU KOSMETIK) COA 1503895,1504622,1505152", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 300 10KG KA (BHN BAKU KOSMETIK) COA 1335976", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 900 CN 10KG KA (BHN BAKU KOSMETIK) COA 1505836", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 100 SAMPLE(S) 100 ML FL (B.BAKU KOSMETIK) COA 1333305,SAMPLE FREE OF CHARGE", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 120 100ML FL (BHN BAKU KOSMETIK) COA 1333306, SAMPLE FREE OF CHARGE", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 712 100ML FL (BHN BAKU KOSMETIK) COA 1340274,1500578", "output": "38249999"}, {"text_input": "What is the hs code for EUXIL PE 9010 SAMPLE(S) 100 ML FL (BHN BAKU KOSMETIK) COA 1340276 , SAMPLE FREE OF CHARGE", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 SAMPLE(S) 100 ML FL (BHN BAKU KOSMETIK) COA 1337764 SAMPLE(S) FREE OF CHARGE", "output": "38249999"}, {"text_input": "What is the hs code for SENSIDIN DO 100ML FL (BHN BAKU KOSMETIK) COA 1335611 SAMPLE FREE OF CHARGE", "output": "38249999"}, {"text_input": "What is the hs code for ROVIMIX C-EC, 25KG BOX/ALU (BHN BAKU OBAT UTK PAKAN TERNAK) COA TL01708312", "output": "29362700"}, {"text_input": "What is the hs code for CAROPHYLL YELLOW 10PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA UE01709532", "output": "32041900"}, {"text_input": "What is the hs code for PANTOPROZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT,COA APSS17005", "output": "29333990"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M529770,772,773", "output": "29411019"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX POWDER (BHN BAKU OBAT) COA M483637", "output": "29411019"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M595751,M595754", "output": "29411019"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M529771", "output": "29411019"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK,COA 01/17GL4", "output": "28399000"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK,COA 01/17-GL4 ,SAMPLE NO COMMERCIAL VALUE", "output": "28399000"}, {"text_input": "What is the hs code for LEMON SECRET (LEMON 40 BRIX) (BHN BAKU OBAT) COA 01/17GL4", "output": "28399000"}, {"text_input": "What is the hs code for LEMON SECRET (LEMON 40 BRIX) (BHN BAKU OBAT) COA 01/17GL4 SAMPLE NO COMM VALUE", "output": "28399000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121808568", "output": "28363000"}, {"text_input": "What is the hs code for LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 18092", "output": "38249999"}, {"text_input": "What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU SUPLEMEN) COA UT18030084", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18010036", "output": "29362100"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S -TG (BHN BAKU SUPLEMEN) COA UT18010002", "output": "32030010"}, {"text_input": "What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17110003", "output": "32041900"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010013", "output": "32041900"}, {"text_input": "What is the hs code for GENIVIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010017", "output": "29329990"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17110053", "output": "29362100"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010013", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18010036", "output": "29362100"}, {"text_input": "What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0021988", "output": "38249999"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA.08830318,08840318...", "output": "29359000"}, {"text_input": "What is the hs code for RANITIDINE HCL (BHN BAKU OBAT) COA RH/03/2018 0386...", "output": "29321900"}, {"text_input": "What is the hs code for KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0070118", "output": "29339990"}, {"text_input": "What is the hs code for CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 017.629", "output": "90189090"}, {"text_input": "What is the hs code for CANNULA 23G PIX'L 0,6 X50 (BHN BAKU OBAT) COA 018.422", "output": "90189090"}, {"text_input": "What is the hs code for CANNULA 25G PIX'L 0,5X40 (BHN BAKU OBAT) COA 017.657", "output": "90189090"}, {"text_input": "What is the hs code for CANNULA 25G PIX'L 0,5X40 (BHN BAKU OBAT) COA 018.405", "output": "90189090"}, {"text_input": "What is the hs code for CANNULA 27G PIX'L 0,4X40 (BHN BAKU OBAT) COA 016.661", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE SUBQ 2ML D16 (BHN BAKU OBAT) COA 15351-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE SKINB VITLIDO 1MLD16 (BHN BAKU OBAT) COA 15616-2", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE LIDOCAINE 1ML D16 (BHN BAKU OBAT) COA 15801-2", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE LYFT LLIDOCAINE 1ML (BHN BAKU OBAT) COA 15755-2", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE LYFT LIDOCAINE 1 ML (BHN BAKU OBAT) COA 15799-2", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE DEFYNE 1ML (BHN BAKU OBAT) COA 15808-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE KYSSE 1ML (BHN BAKU OBAT) COA15761-1", "output": "90189090"}, {"text_input": "What is the hs code for WITCH HAZEL PHYTLENE EG 138 (BHN BAKU KOSMETIK)COA EG138-171102", "output": "38249999"}, {"text_input": "What is the hs code for WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK)COA EG138- 170601", "output": "38249999"}, {"text_input": "What is the hs code for WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK)COA EG138 - 171102", "output": "38249999"}, {"text_input": "What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH180303-ENBIO", "output": "38249999"}, {"text_input": "What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA.201800106", "output": "28183000"}, {"text_input": "What is the hs code for TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA636683", "output": "32151900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180HCV002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180HCU002", "output": "39123900"}, {"text_input": "What is the hs code for BIOTOX (R) (BHN BAKU OBAT UTK PAKAN TERNAK) COA 050418-256", "output": "23099090"}, {"text_input": "What is the hs code for E.C.O TRACE ZN 25PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC270218", "output": "29224900"}, {"text_input": "What is the hs code for E.C.O TRACE MN 20PCT (BHN BAKU UTK PAKAN TERNAK) COA BC290118", "output": "29224900"}, {"text_input": "What is the hs code for BETAPRO 300 (BHN BAKU OBAT UTK PAKAN TERNAK) COA 220318-219", "output": "23099090"}, {"text_input": "What is the hs code for OPADRY FX YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA637160", "output": "38249999"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP07418", "output": "28363000"}, {"text_input": "What is the hs code for MAGNOLIA BARK EXTRACT (BHN BAKU KOSMETIK) COA MBE05-171202", "output": "38249999"}, {"text_input": "What is the hs code for COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-1709020/35678", "output": "38249999"}, {"text_input": "What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 59090P", "output": "38249999"}, {"text_input": "What is the hs code for PYRAZINAMIDE USP (BHN BAKU OBAT) COA PZ 212 C 18, PZ 213 C 18...", "output": "29339990"}, {"text_input": "What is the hs code for RANITIDINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA RH229 03 18...", "output": "29321900"}, {"text_input": "What is the hs code for FRAMYCETINE SULFATE (BHN BAKU OBAT) COA F1700008/02", "output": "29419000"}, {"text_input": "What is the hs code for KETOPROFEN (BHN BAKU OBAT) COA.187512", "output": "29183000"}, {"text_input": "What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA.201800091", "output": "28183000"}, {"text_input": "What is the hs code for DEXAMETHASONE ACETATE ANHYDROUS MICRONISED PH EUR USP (BHN BAKU OBAT) COA 1502103347", "output": "29372200"}, {"text_input": "What is the hs code for FLUOROMETHOLONE MICRONISED USP BP JP (BHN BAKU OBAT) COA 1701255296", "output": "29372200"}, {"text_input": "What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA P-63", "output": "29397900"}, {"text_input": "What is the hs code for MAPROTILINE HCL (BHN BAKU OBAT) COA 1750001555", "output": "29214900"}, {"text_input": "What is the hs code for P GINSENG DRY EXTRACT10PCT COL (BHN BAKU SUPLEMEN) COA 32446/M1", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTRACT 2PCT COLOR (BAHAN BAKU SUPPLEMEN) COA 10726/M1", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10727/M1", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10399/M1", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10729/M1", "output": "13021990"}, {"text_input": "What is the hs code for LORATADINE EP (MICRONIZED) (BHN BAKU SUPLEMEN) COA LRH8092", "output": "29333990"}, {"text_input": "What is the hs code for ACRYLPOL 980 BAHAN BAKU KOSMETIK) COA 11517068, 69", "output": "38249999"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180316", "output": "17029019"}, {"text_input": "What is the hs code for PLAISANCE P116808 (BHN BAKU KOSMETIK) COA 0000013174", "output": "33029000"}, {"text_input": "What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA.0000013176", "output": "33029000"}, {"text_input": "What is the hs code for THE MATCHA 1 P001062 (BHN BAKU KOSMETIK) COA 0000011542", "output": "33029000"}, {"text_input": "What is the hs code for STAY C (R) 50, 20KG BOX NA (BHN BAKU KOSMETIK) COA UT17090155,160,161", "output": "29362700"}, {"text_input": "What is the hs code for D. PANTHENOL 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01710098,12104", "output": "29362400"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OPI1710010", "output": "29362900"}, {"text_input": "What is the hs code for DL. PANTHENOL 50L (BHN BAKU KOSMETIK) COA TL01706630", "output": "29362400"}, {"text_input": "What is the hs code for ETHYL PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01703810,7811,14", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001467727", "output": "29420000"}, {"text_input": "What is the hs code for STAY C (R) 50 ,20KG BOX ALU (BHN BAKU KOSMETIK) COA UE01707028,29", "output": "29362700"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01705010", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0817030011", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0317111743", "output": "29420000"}, {"text_input": "What is the hs code for STAY C (R) 50, 5KG BAG ALU EX US (BHN BAKU KOSMETIK) COA UT17060074", "output": "29362700"}, {"text_input": "What is the hs code for STAY C (R) 50, 5KG ALU EX US (BHN BAKU KOSMETIK) COA UT17060074", "output": "29362700"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0317111743 S/D 751", "output": "29420000"}, {"text_input": "What is the hs code for MEG-3 3020 EE P OIL (BHN BAKU SUPLEMEN) COA.TS00009887", "output": "29362500"}, {"text_input": "What is the hs code for NONIVAMIDE (SYNTHETIC CAPSAICIN)BHN BAKU KOSMETIK, COA.20180305", "output": "38249999"}, {"text_input": "What is the hs code for TERPINEOL ( BHN BAKU OBAT), COA 232-268-1, SAMPLE NO COMMERCIAL VALUE", "output": "39139090"}, {"text_input": "What is the hs code for AVOCADO OIL REFINED DAC EXTRACT (BHN BAKU KOSMETIK) COA 144955", "output": "38249999"}, {"text_input": "What is the hs code for JOJOBA OIL VIRGIN LOW ODOUR (BHN BAKU KOSMETIK) COA 142876", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604085", "output": "38249999"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010013", "output": "32041900"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB01017174", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN A+ D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18020037", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB01017174", "output": "29362800"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18030017", "output": "32030010"}, {"text_input": "What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17110018", "output": "29420000"}, {"text_input": "What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17110053", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A AND D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18010036,37", "output": "29362100"}, {"text_input": "What is the hs code for GENIVIDA (TM) TG (BHN BAKU SUPLEMEN) COA UT16010017,22", "output": "29329990"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010013", "output": "32041900"}, {"text_input": "What is the hs code for COATED ASCORBIC ACID TYPE EC ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01802855", "output": "29362700"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB01017174", "output": "29362800"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18030017", "output": "32030010"}, {"text_input": "What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17110018", "output": "29420000"}, {"text_input": "What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17110053", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18020037", "output": "29362100"}, {"text_input": "What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX ALU (BHN BAKU SUPLEMEN) COA WB01217437", "output": "29362700"}, {"text_input": "What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P8O13QA000", "output": "29420000"}, {"text_input": "What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ70407016", "output": "29420000"}, {"text_input": "What is the hs code for FDANDC BLUE #1/BRILLIANT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP794695", "output": "32151900"}, {"text_input": "What is the hs code for FDANDC BLUE #1/BRILLIANT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP794694", "output": "32151900"}, {"text_input": "What is the hs code for DANDC YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP787037", "output": "32151900"}, {"text_input": "What is the hs code for FDANDC RED #40/ALLURA RED AC AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP791916", "output": "32151900"}, {"text_input": "What is the hs code for FDANDC YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP789485", "output": "32151900"}, {"text_input": "What is the hs code for DANDC YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP787036", "output": "32151900"}, {"text_input": "What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP769011", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C BLUE #1/BRILLIANT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP776213", "output": "32151900"}, {"text_input": "What is the hs code for AC019KC PHYTOVITYL C 5KG (BHN BAKU KOSMETIK) COA 0021618", "output": "38249999"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0703160010", "output": "29420000"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18010019", "output": "29362800"}, {"text_input": "What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218010005", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0703160010", "output": "29420000"}, {"text_input": "What is the hs code for DL-PANTHENOL 50L (BHN BAKU KOSMETIK) COA TL01706630", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0703160010", "output": "29420000"}, {"text_input": "What is the hs code for DL.A.TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18010019,21", "output": "29362800"}, {"text_input": "What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA MCS1605181", "output": "29420000"}, {"text_input": "What is the hs code for ASTABIO ARV-S (BHN BAKU OBAT) COA.1711211K", "output": "32030010"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702625877", "output": "29372900"}, {"text_input": "What is the hs code for VC ASCORBIC ACID DC 97PCT, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG1712006,1712007,1801002", "output": "29362700"}, {"text_input": "What is the hs code for VISTANOL NPGC (BHN BAKU KOSMETIK) COA KCK", "output": "38249999"}, {"text_input": "What is the hs code for VISTANOL GDHR (BHN BAKU KOSMETIK) COA DKI", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS SILK-1000 (BHN BAKU KOSMETIK) COA KDM", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS S-CAQ (BHN BAKU KOSMETIK) COA KBB", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA KCF", "output": "38249999"}, {"text_input": "What is the hs code for MILD TALCUM MOD1 (BHN BAKU KOSMETIK)COA 10300125", "output": "38249999"}, {"text_input": "What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 17-03-18", "output": "25070000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121808631", "output": "28363000"}, {"text_input": "What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M.31.0PCT (BHN BAKU OBAT) COA 101729037", "output": "28161000"}, {"text_input": "What is the hs code for NIACINAMIDE POWDER (BHN BAKU MAKANAN) COA 0000159087", "output": "29362900"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA ROA086183", "output": "28363000"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA ROA088184", "output": "28363000"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603113", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603549", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603646", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603643", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603649", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603637", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603633", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603650", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603636", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603635", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603630", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603638", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603645", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603648", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603634", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL EZE PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603632", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603644", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY 200 PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603631", "output": "38249999"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17070024", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI17100009", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17080255", "output": "29362400"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11710008", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU MAKANAN) COA WB00417070", "output": "29362900"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01801011", "output": "32041900"}, {"text_input": "What is the hs code for DL ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17120259", "output": "29362800"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ71210205", "output": "29362300"}, {"text_input": "What is the hs code for DL ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17120259", "output": "29362800"}, {"text_input": "What is the hs code for DL A TOCOPHEROL (BHN BAKU MAKANAN) COA UT17110077", "output": "29362800"}, {"text_input": "What is the hs code for ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01709595", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID, 254KG BOX/ALU (BHN BAKU MAKANAN) COA TL01709595", "output": "29362700"}, {"text_input": "What is the hs code for DL A TOCOPHEROL (BHN BAKU MAKANAN) COA UT17110077", "output": "29362800"}, {"text_input": "What is the hs code for DL A TOCOPHEROL (BHN BAKU MAKANAN) COA UT17110077", "output": "29362800"}, {"text_input": "What is the hs code for DL A TOCOPHEROL (BHN BAKU MAKANAN) COA UT17110077", "output": "29362800"}, {"text_input": "What is the hs code for B CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01801010", "output": "32041900"}, {"text_input": "What is the hs code for CALCIUM D PANTOTHENATE (BHN BAKU MAKANAN) COA TL01711797", "output": "29362400"}, {"text_input": "What is the hs code for B CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01801010, 1801011", "output": "32041900"}, {"text_input": "What is the hs code for CALCIUM D PANTOTHENATE (BHN BAKU MAKANAN) COA TL01711797", "output": "29362400"}, {"text_input": "What is the hs code for CALCIUM D PANTOTHENATE (BHN BAKU MAKANAN) COA TL01711797", "output": "29362400"}, {"text_input": "What is the hs code for CALCIUM D PANTOTHENATE, 25KG BOXI (BHN BAKU SUPLEMEN) COA TL01711797", "output": "29362400"}, {"text_input": "What is the hs code for B CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01801010", "output": "32041900"}, {"text_input": "What is the hs code for B CAROTENE 10PCT CW/S (BHN BAKU SUPLEMEN) COA UT17110063", "output": "32041900"}, {"text_input": "What is the hs code for B CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01801011", "output": "32041900"}, {"text_input": "What is the hs code for B CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01801011", "output": "32041900"}, {"text_input": "What is the hs code for B CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17110063", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01701110", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17070024", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL GRADE (BHN BAKU SUPLEMEN) COA UQ70309009", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI17100009", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01701110", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01705010", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11710008,10010", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00417070", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00517027", "output": "29362300"}, {"text_input": "What is the hs code for ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01709595", "output": "29362700"}, {"text_input": "What is the hs code for D A TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20170305", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD(BHN BAKU SUPLEMEN) COA UT17110004", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17080068,69", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17090069", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17090069", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17090069", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17090069", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT17080068", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17080068", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17080068", "output": "29362900"}, {"text_input": "What is the hs code for B CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01710074,83", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17080068", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT17080068", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17080068", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT17110082", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT17110081,82", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT17110082", "output": "29362800"}, {"text_input": "What is the hs code for DL A TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT17090061", "output": "29362800"}, {"text_input": "What is the hs code for DL A TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT17090061", "output": "29362800"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01705010", "output": "29362900"}, {"text_input": "What is the hs code for DL A TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT17120259", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT17110082", "output": "29362800"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602850", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH602851", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603401", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603153", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603402", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603788", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603939", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603944", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603945", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603947", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604118", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603928", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603644", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603942", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603927", "output": "38249999"}, {"text_input": "What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91803133", "output": "21069059"}, {"text_input": "What is the hs code for D PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01708082", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01708082", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01708082", "output": "29362400"}, {"text_input": "What is the hs code for DL A TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT17110077,79", "output": "29362800"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL01708082", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17120062", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT17120065", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT17120062", "output": "29362100"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01708070", "output": "29362400"}, {"text_input": "What is the hs code for ASCORBIC ACID FINE POWDER (BHN BAKU SUPLEMEN) COA TL01611698", "output": "29362700"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11710008", "output": "29362900"}, {"text_input": "What is the hs code for DL ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT17120259", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT17110082", "output": "29362800"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01705010", "output": "29362900"}, {"text_input": "What is the hs code for DL A TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT17120259", "output": "29362800"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70813196", "output": "29362500"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ70813196", "output": "29362500"}, {"text_input": "What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91802195", "output": "21069059"}, {"text_input": "What is the hs code for PREMIX 204005 (BHN BAKU MAKANAN) COA XW91803167", "output": "21069059"}, {"text_input": "What is the hs code for SUPPOCIRE AM PELLETS (BHN BAKU OBAT) COA 18E0104", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 17E5106", "output": "28399000"}, {"text_input": "What is the hs code for ALUMINIUM HYDROXIDE GEL VAC 20 STERILISED (BHN BAKU OBAT UTK PAKAN TERNAK) COA.201700426", "output": "28183000"}, {"text_input": "What is the hs code for LIPOID S 67F (BHN BAKU OBAT) COA.576200-2180021/001-006 (6)", "output": "29232010"}, {"text_input": "What is the hs code for INOSITOL (BHN BAKU OBAT) COA 201801020, 201801021", "output": "29061300"}, {"text_input": "What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 1803039", "output": "29349990"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 100 (BHN BAKU OBAT UTK PEWARNA TABLET) COA D184H6K021", "output": "39123900"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP04018", "output": "28363000"}, {"text_input": "What is the hs code for VIUSID AQUA ORAL SOLUTION (PAKAN IKAN BERBENTUK CAIR) COA R-1 01-21", "output": "23099090"}, {"text_input": "What is the hs code for VIUSID AQUA APLICATIONS CATALOGUE, GOODS WITHOUT COMMERCIAL VALUE", "output": "49111010"}, {"text_input": "What is the hs code for VIUSID AQUA PRODUCTIVITY CATALOQUE, GOODS WITHOUT COMMERCIAL VALUE", "output": "49111010"}, {"text_input": "What is the hs code for VIUSID AQUA INGLES SHRIMP PRODUCTIVITY CATALOQUE, GOODS WITHOUT COMMERCIAL VALUE", "output": "49111010"}, {"text_input": "What is the hs code for MAGNOLIA BARK EXTRACT (BHN BAKU KOSMETIK) COA MBE05-180301/39880", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604395", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604269", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604402", "output": "38249999"}, {"text_input": "What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA.18100227, 230", "output": "29221990"}, {"text_input": "What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 23-03-18", "output": "25070000"}, {"text_input": "What is the hs code for BARCROFT TM AL HYD GEL VISCO 9 , USP (BHN BAKU OBAT) COA.101802002", "output": "28183000"}, {"text_input": "What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA.101823002", "output": "28161000"}, {"text_input": "What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 101823002", "output": "28161000"}, {"text_input": "What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU OBAT) COA. 201700426", "output": "28183000"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702605740", "output": "29372900"}, {"text_input": "What is the hs code for IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S67/18", "output": "38029090"}, {"text_input": "What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 17E5106", "output": "28399000"}, {"text_input": "What is the hs code for LEVOFLOXACIN HEMIHYDRATE (FREE ALKALINE) (BHN BAKU OBAT) COA C008-1706607", "output": "29349990"}, {"text_input": "What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8010924", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7363823", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8043642", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7109945", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8068984", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8043642", "output": "38210010"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7333552", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 7338553", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7178809", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7332733", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7363823", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6228993,7251553", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7363844", "output": "38210010"}, {"text_input": "What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7305888,5891", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060815", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8045524", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE L ARABINOSE 25G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8058779", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8079517", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7278689", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8043642", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8043642", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8037570", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8045524,...", "output": "38210010"}, {"text_input": "What is the hs code for PERMEABILIZING SOLUTION 2 10X 500 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7353841", "output": "38210010"}, {"text_input": "What is the hs code for SOLUTION CLEANING CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1747C509", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7207624", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8037783", "output": "38210010"}, {"text_input": "What is the hs code for ASSY FSC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) SAMPLE CUSTOM DECLARATION PURPOSE ONLY", "output": "38210010"}, {"text_input": "What is the hs code for ASSY SSC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) SAMPLE CUSTOM DECLARATION PURPOSE ONLY", "output": "38210010"}, {"text_input": "What is the hs code for MATCHED SIP/FLOW CELL DRY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) SAMPLE CUSTOM DECLARATION...", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8051624", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8037572", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7317828", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7349609", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7349600", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7198543", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BEEF EXTRACT POWDER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8011683", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7291775", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 5 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7177779", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRAIN HEART INFUSION AGAR 500 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7220797", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8081784", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DERMATOPHYTE TEST MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8024888", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D-MANNOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7135976", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7306629", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DULCITOL 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8066833", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7143744", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7198543", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LITMUS MILK BBL 500GI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8058939", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7177823,7363845", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PSEUDOMONAS AGAR F 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7177860", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7153977", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7156779", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7291693", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE STOCK CULTURE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8012616", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8012632", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER LACTOPHENOL COTTON BLUE STAIN (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7332867", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7193914", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PROTEOSE PEPTONE NO.3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8059926", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE AGAR NOBLE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7256726", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MED 3 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7278568", "output": "38210010"}, {"text_input": "What is the hs code for GASPAK EZ LARGE INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7279340010", "output": "38210010"}, {"text_input": "What is the hs code for KIT MAINTENANCE FLOW CYT 2 MONTH (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8046672", "output": "38210010"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7268937", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8031750", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7319536,...", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8046743", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8012638", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7314928", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7356665", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 7289995", "output": "38210010"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLARAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8005940", "output": "38210010"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3MI (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7237643", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7324962", "output": "38210010"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7268937", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8031750,8043649", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7153980", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8058733", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7153980", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7347753,..", "output": "38210010"}, {"text_input": "What is the hs code for CD10 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7352771,8059702", "output": "38210010"}, {"text_input": "What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7235889", "output": "38210010"}, {"text_input": "What is the hs code for CD3 APC SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8064632", "output": "38210010"}, {"text_input": "What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7333561", "output": "38210010"}, {"text_input": "What is the hs code for CD17 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8026653", "output": "38210010"}, {"text_input": "What is the hs code for ANTI MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8025579.", "output": "38210010"}, {"text_input": "What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8044954", "output": "38210010"}, {"text_input": "What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8026870", "output": "38210010"}, {"text_input": "What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8009536", "output": "38210010"}, {"text_input": "What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8046521", "output": "38210010"}, {"text_input": "What is the hs code for CD3 PERCP SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8051656", "output": "38210010"}, {"text_input": "What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7345542", "output": "38210010"}, {"text_input": "What is the hs code for ANTI HLA DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8015843", "output": "38210010"}, {"text_input": "What is the hs code for CD45 PERCP 2D1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7317768,8022712", "output": "38210010"}, {"text_input": "What is the hs code for FASTIMMUNE COSTIM CD28/CD49D 0.3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7299715", "output": "38210010"}, {"text_input": "What is the hs code for CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8031925", "output": "38210010"}, {"text_input": "What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8044550,8073612", "output": "38210010"}, {"text_input": "What is the hs code for HU CD4 FITC RPA-T4 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6340599", "output": "38210010"}, {"text_input": "What is the hs code for HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7125585", "output": "38210010"}, {"text_input": "What is the hs code for HU HLA DR FITC L243 (G46-6) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8046823", "output": "38210010"}, {"text_input": "What is the hs code for LYSING BUFFER 10X CONCENTRATE 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8024769", "output": "38210010"}, {"text_input": "What is the hs code for ANNEXIN V FITC APOP DTEC KIT I 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7347717", "output": "38210010"}, {"text_input": "What is the hs code for BD CST BEADS KIT 50TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 72926", "output": "38210010"}, {"text_input": "What is the hs code for CD3 APC H7 SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8024881", "output": "38210010"}, {"text_input": "What is the hs code for CD34 PE 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7159622", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7121830", "output": "38210010"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7237643", "output": "38210010"}, {"text_input": "What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT 10X10MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7228748", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8031760", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8031760", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SUPPLEMENT C 6X5ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8030960", "output": "38210010"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6309655", "output": "38210010"}, {"text_input": "What is the hs code for AMBERLITE IRP88 POLACRILIN( BHN BAKU OBAT UTK PEWARNA TABLET) COA. E709I17004", "output": "38249999"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA ROA088183", "output": "28363000"}, {"text_input": "What is the hs code for METHOCEL E4M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180FB8021", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180HB7002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL A15 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180H9U021", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL A15 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180H2J02B", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL A15 PREMIUM LV ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180H9U021", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E15 PREMIUM LV ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011G93L01", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E15 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D011GBQL02", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E5 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D011HA5L01", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E5 PREMIUM LV ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011HA2L02", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E5 PREMIUM LV ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011H6DL01", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E5 PREMIUM LV ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011G9NL02", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180H5N001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180HAR001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180HAN002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180HAK002", "output": "39123900"}, {"text_input": "What is the hs code for LANOLINE ANHYDROUS (BHN BAKU KOSMETIK) COA 4137, 4503", "output": "38249999"}, {"text_input": "What is the hs code for MATCHA GREEN TEA EXTRACT CSP 6 TC ( BHN BAKU KOSMETIK), COA CSP 18002 EOU", "output": "38249999"}, {"text_input": "What is the hs code for BIOTOX (BHN BAKU OBAT UTK PAKAN TERNAK) COA 050418-256", "output": "23099090"}, {"text_input": "What is the hs code for E.C.O TRACE ZN 25PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC270218", "output": "29224900"}, {"text_input": "What is the hs code for E.C.O TRACE MN 20PCT (BHN BAKU UTK PAKAN TERNAK) COA BC290118", "output": "29224900"}, {"text_input": "What is the hs code for BETAPRO 300 (BHN BAKU OBAT UTK PAKAN TERNAK) COA 220318-219", "output": "23099090"}, {"text_input": "What is the hs code for E.C.O TRACE FE 20PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC310118", "output": "29224900"}, {"text_input": "What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 18040309", "output": "38249999"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP18043162, 43163", "output": "29211900"}, {"text_input": "What is the hs code for PANTOPROZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT,COA APSS17005", "output": "29333990"}, {"text_input": "What is the hs code for FERROUS FUMARATE USP/EP (BHN BAKU OBAT) COA.2018/86", "output": "29171900"}, {"text_input": "What is the hs code for ALLOPURINOL (BHN BAKU OBAT) COA 17073AY3ARII, 17081AY3ARII", "output": "29335990"}, {"text_input": "What is the hs code for BIOTOX (BHN BAKU OBAT UTK PAKAN TERNAK) COA 050418-256", "output": "23099090"}, {"text_input": "What is the hs code for E.C.O TRACE ZN 25PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC270218", "output": "29224900"}, {"text_input": "What is the hs code for BETAPRO 300 (BHN BAKU UTK PAKAN TERNAK) COA 220318-219", "output": "23099090"}, {"text_input": "What is the hs code for LIQUIPHOS STRONG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 030418-258", "output": "23099090"}, {"text_input": "What is the hs code for LIQUIPHOS STRONG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 030418-258", "output": "23099090"}, {"text_input": "What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M 31.0PCT (BHN BAKU OBAT) COA.101829001", "output": "28161000"}, {"text_input": "What is the hs code for MANDARIN CLEAR (BHN BAKU KOSMETIK) COA 173098", "output": "13021950"}, {"text_input": "What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 171058", "output": "13021950"}, {"text_input": "What is the hs code for ALPINIAWHITE (BHN BAKU KOSMETI) COA 180328", "output": "13021950"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 INF OIL, 4,5KG PJUG (BHN BAKU SUPLEMEN) COA.TS00009947", "output": "29362500"}, {"text_input": "What is the hs code for KIT C6 FLOW CYTO STARTER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7347501", "output": "38210010"}, {"text_input": "What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7340819", "output": "38210010"}, {"text_input": "What is the hs code for MIRANOL ULTRA C32 200KG PLASCTIC DRUM (BHN BAKU KOSMETIK) COA BP803170R", "output": "34029099"}, {"text_input": "What is the hs code for PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) COA PH01160217", "output": "38249999"}, {"text_input": "What is the hs code for PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PI18030002", "output": "29341000"}, {"text_input": "What is the hs code for PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PI18030002", "output": "29341000"}, {"text_input": "What is the hs code for ULVA LACTUCA ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA ULL180301-GS-BGBIO", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO180301", "output": "38249999"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO180302", "output": "38249999"}, {"text_input": "What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH180304-ENBIO", "output": "38249999"}, {"text_input": "What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT673784", "output": "32151900"}, {"text_input": "What is the hs code for OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT673988", "output": "32151900"}, {"text_input": "What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT673948", "output": "32151900"}, {"text_input": "What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT672502", "output": "32151900"}, {"text_input": "What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK)COA BAG-022017", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK) COA U180413, U180425", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND LICORICE EXTRACT (BHN BAKU KOSMETIK) COA GGB-022887", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK)COA OHA-071648", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SNAIL SECREATION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-020638", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-331238", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-010218", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK)COA KFB-L-030827", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND PC SC-GLUCAN (BHN BAKU KOSMETIK) COA CPG-232738", "output": "38249999"}, {"text_input": "What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) COA 7766002", "output": "38249999"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG180202", "output": "29420000"}, {"text_input": "What is the hs code for BIOTOX (BHN BAKU OBAT UTK PAKAN TERNAK) COA 050418-256", "output": "23099090"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01801004", "output": "29362400"}, {"text_input": "What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA PLVH180304-ENBIOO", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-180202", "output": "38249999"}, {"text_input": "What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-171106-GS", "output": "38249999"}, {"text_input": "What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH180405-ENBIO", "output": "38249999"}, {"text_input": "What is the hs code for DPG FG (BHN BAKU KOSMETIK) COA B02451DG", "output": "29094900"}, {"text_input": "What is the hs code for PG USP (BHN BAKU KOSMETIK) COA B02451UG", "output": "29053200"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518030083", "output": "29420000"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ70613160", "output": "29362500"}, {"text_input": "What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218010005,30047", "output": "29420000"}, {"text_input": "What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00511323,514833", "output": "29420000"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11803004", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0317121889,890", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518030083", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL HMS, 25KG PC (BHN BAKU KOSMETIK) COA MCS1604083", "output": "29420000"}, {"text_input": "What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01801004", "output": "29362400"}, {"text_input": "What is the hs code for GLICLAZIDE (BHN BAKU OBAT) COA 1840000648", "output": "29359000"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS, 15KG BOXALU (BHN BAKU MAKANAN) COA UT18010003", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17100019", "output": "29362100"}, {"text_input": "What is the hs code for PRAVASTATIN SODIUM (BHN BAKU OBAT) COA PV201711018", "output": "29189900"}, {"text_input": "What is the hs code for PURIDROX TM COMPACTED, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B339967,74.75", "output": "29419000"}, {"text_input": "What is the hs code for OLIVE POLYPHENOLIC DRY EXTRACT (BHN BAKU SUMPLEMEN) COA 18080", "output": "13021950"}, {"text_input": "What is the hs code for LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 18092", "output": "38249999"}, {"text_input": "What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5497417", "output": "38249999"}, {"text_input": "What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829015717H", "output": "38249999"}, {"text_input": "What is the hs code for EXO-T (BHN BAKU KOSMETIK) COA 715016075J", "output": "38249999"}, {"text_input": "What is the hs code for LANACITYN PF (BHN BAKU KOSMETIK) COA 794025577H", "output": "38249999"}, {"text_input": "What is the hs code for TYROSTAT-11 (BHN BAKU KOSMETIK), COA 784026174J", "output": "38249999"}, {"text_input": "What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK), COA 5497417", "output": "38249999"}, {"text_input": "What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829015717H", "output": "38249999"}, {"text_input": "What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830016021J", "output": "38249999"}, {"text_input": "What is the hs code for EXO-P (BHN BAKU KOSMETIK) COA 715036001H", "output": "39139090"}, {"text_input": "What is the hs code for MELANOSTATINE-5BG (50PPM) (BHN BAKU KOSMETIK) COA 817046077J", "output": "38249999"}, {"text_input": "What is the hs code for PROGELINE (BHN BAKU KOSMETIK) COA 820055823 H", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604611", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604599", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604486", "output": "38249999"}, {"text_input": "What is the hs code for ROVIMIX (R) C-EC, 25KG BOXALU (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT01708315,16,26", "output": "29362700"}, {"text_input": "What is the hs code for ROVIMIX AD3 1000/200, 20KG BAG (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT17121210", "output": "29362100"}, {"text_input": "What is the hs code for CAROPHYLL RED 10PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA UE01711008", "output": "32041900"}, {"text_input": "What is the hs code for ROVIMIX NIACIN (BHN BAKU OBAT UTK PAKAN TERNAK) COA 25755", "output": "29362900"}, {"text_input": "What is the hs code for RONOZYME (R) HIPHOS GT, 25KG BAGDK (BHN BAKU OBAT UTK PAKAN TERNAK) COA HK921271", "output": "29369000"}, {"text_input": "What is the hs code for RONOZYME MULTIGRAIN (GT) 20KG PBAG (BHN BAKU OBAT UTK PAKAN TERNAK) COA VF900207,209", "output": "29369000"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT(BHN BAKU SUPLEMEN) COA WB00917087", "output": "29362900"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70903302", "output": "29362200"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT18010779", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17120037", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17120037", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17120037", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17120037", "output": "29362600"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80302092", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80302092,2103", "output": "29362200"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70813198", "output": "29362500"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ70903302", "output": "29362200"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70813196", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7MIU/G (TOCO)(BHN BAKU SUPLEMEN) COA UT18010779", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17110772,774,18010779", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17110771,772", "output": "29362100"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ71206183", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ71206183,84", "output": "29362700"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70813210", "output": "29362500"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70813196,98", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17120037", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT17110166", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT17120037", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT17110166,UT18010167", "output": "29362100"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ71103349", "output": "29362200"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17120036", "output": "29362900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70813198", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT18010167", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT18010167", "output": "29362100"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE ((BHN BAKU SUPLEMEN) COA UQ70903302", "output": "29362200"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17110166", "output": "29362100"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UT70803301,3302", "output": "29362200"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT17110166", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)(BHN BAKU MAKANAN) COA UT17110166", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT17110166", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91803395", "output": "21069059"}, {"text_input": "What is the hs code for PX 103070 - C3 (BHN BAKU MAKANAN) COA XW91803423", "output": "21069059"}, {"text_input": "What is the hs code for PX 103070 - C3 (BHN BAKU MAKANAN) COA XW91803423", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN PREMIX 103093-A (BHN BAKU MAKANAN) COA XW91803409", "output": "21069059"}, {"text_input": "What is the hs code for PX 204005 (BHN BAKU MAKANAN) COA XW91803390", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN PREMIX ,TYPE MM81 (105PCT) BHN BAKU MAKANAN, COA XW91803396", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN PREMIX 103093-A (BHN BAKU MAKANAN) COA XW91803410", "output": "21069059"}, {"text_input": "What is the hs code for CANTHAXANTHIN 10PCT CWS/S (BHN BAKU MAKANAN) COA UT17040005", "output": "32041900"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU MAKANAN) COA UT17110004", "output": "29362900"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ71206200,6201,6003", "output": "29362700"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121808584", "output": "28363000"}, {"text_input": "What is the hs code for METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/18040192", "output": "29332900"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE 25KG BOX(BHN BAKU MAKANAN) COA TL01802927,3143,3159", "output": "29362700"}, {"text_input": "What is the hs code for DRY VITAMIN A PALMITATE TYPE 250CWS/F(BHN BAKU MAKANAN) COA UT18020001,20002", "output": "29362100"}, {"text_input": "What is the hs code for JAGUAR C 162 CARDBOARD BOX 25 KG (BHN BAKU KOSMETIK) COA MJAC18067A", "output": "38249999"}, {"text_input": "What is the hs code for PURIDROX TM COMPACTED, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B339990, 91,92", "output": "29419000"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA.M113071", "output": "29339990"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M110465", "output": "29339990"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M110380,M110417", "output": "29339990"}, {"text_input": "What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604524", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604395", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604497", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604555", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604510", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604502", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604498", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604486", "output": "38249999"}, {"text_input": "What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604515", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY II GRAY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604495", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604501", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604496", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604514", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604485", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604775", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604690", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604760", "output": "38249999"}, {"text_input": "What is the hs code for CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 018.472", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE SKINB VITLIDO 1MLD16 (BHN BAKU OBAT) COA 15864-2", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE SKINB VITALLGHLIDO 1MLD16 (BHN BAKU OBAT) COA 15706-2", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML (BHN BAKU OBAT) COA 15912-2", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE REFYNE 1ML (BHN BAKU OBAT) COA 15521-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE DEFYNE 1ML (BHN BAKU OBAT) COA 15856-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE KYSSE 1ML (BHN BAKU OBAT) COA 15884-1", "output": "90189090"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18040076", "output": "29362800"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01708082", "output": "29362400"}, {"text_input": "What is the hs code for KAOLIN SUPREME (BHN BAKU KOSMETIK) COA 060817", "output": "25070000"}, {"text_input": "What is the hs code for ALLOPURINOL (BHN BAKU OBAT) COA E-2018061049 S/D 1053", "output": "29335990"}, {"text_input": "What is the hs code for ONDASENTRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA 17OS001", "output": "29332900"}, {"text_input": "What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M 31.0PCT (BHN BAKU OBAT) COA.101829003", "output": "28161000"}, {"text_input": "What is the hs code for DL-PANTHENOL 50L, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01801602,1603", "output": "29362400"}, {"text_input": "What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT17090053", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT18030084", "output": "29362100"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01802897,2927", "output": "29362700"}, {"text_input": "What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT17120020,UT18020001", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT17110006", "output": "32041900"}, {"text_input": "What is the hs code for CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 20180418", "output": "38249999"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180038,39,40", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA MCS1605181", "output": "29420000"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11803004", "output": "29362900"}, {"text_input": "What is the hs code for BEAUPLEX (TM) VH, 5KG BAG ALU (BHN BAKU KOSMETIK) COA UF18004050", "output": "29420000"}, {"text_input": "What is the hs code for DL. PANTHENOL 50L (BHN BAKU KOSMETIK) COA TL01706630,7638,8644", "output": "29362400"}, {"text_input": "What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL01707814", "output": "29362400"}, {"text_input": "What is the hs code for ESCIN FREE ACID (BHN BAKU SUPLEMEN) COA 32591/M3", "output": "13021950"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121808584,654", "output": "28363000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 121808654", "output": "28363000"}, {"text_input": "What is the hs code for ECHINACEA PURP.D.AQ E.0,8PCT (BAHAN BAKU SUPLEMEN) COA 10226/M2", "output": "13021950"}, {"text_input": "What is the hs code for SILYMARIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10462/M1", "output": "38249999"}, {"text_input": "What is the hs code for DIETHYL CARBAMAZINE CITRATE BP (BHN BAKU OBAT) COA SAM/DCC/0318034", "output": "29395900"}, {"text_input": "What is the hs code for FERROUS FUMARATE USP/EP (BHN BAKU OBAT) COA.2018/106", "output": "29171900"}, {"text_input": "What is the hs code for CURCUMA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 32576/M1", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 32619/M1", "output": "38249999"}, {"text_input": "What is the hs code for ECHINACEA ANG DRY PURIF EX (BHN BAKU SUPLEMEN) COA 32226/M1", "output": "13021950"}, {"text_input": "What is the hs code for ECHINACEA ANG. DRY PURIF. EX (BHN BAKU SUPLEMEN) COA 32527/M1", "output": "13021950"}, {"text_input": "What is the hs code for VACCINIUM MYRTILLUS DRY EX (BHN BAKU SUPLEMEN) COA 32501/M1", "output": "13021950"}, {"text_input": "What is the hs code for PHASEOLUS VULGARIS DRY EXTRACT (BHN BAKU SUPLEMEN) COA 32690/M1", "output": "13021950"}, {"text_input": "What is the hs code for NOSCAPINE BASE BP (BHN BAKU OBAT) COA P200618", "output": "29391900"}, {"text_input": "What is the hs code for GUAIFENESIN USP (BHN BAKU OBAT) COA GGE-1803084 S/D 89, 93 S/D 106", "output": "29094900"}, {"text_input": "What is the hs code for TETRACYCLINE HYDRACHLORIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 180326-61", "output": "29413000"}, {"text_input": "What is the hs code for LOTUS NELUMBIUM NEL.FLOWER (BHN BAKU KOSMETIK) COA AM070124", "output": "13021950"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010013", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18020037", "output": "29362100"}, {"text_input": "What is the hs code for PIPERAZINE CITRATE BP/USP (BHN BAKU OBAT) COA PC-095/18 S/D 099/18", "output": "29395900"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537106", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537077", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537108", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537107", "output": "35051010"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604598", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604586", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603799", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604391", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604617", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH603939", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604590", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604587", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604599", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH601993", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604502", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604611", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604589", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604591", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604597", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604780", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK)COA 010918", "output": "38249999"}, {"text_input": "What is the hs code for FDANDC BLUE #1/INDIGO CARMINE AL... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP795446", "output": "32151900"}, {"text_input": "What is the hs code for FDANDC YELLOW #5/TARTRAZINE AL... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP787028", "output": "32151900"}, {"text_input": "What is the hs code for FDANDC RED #40/ALLURA RED AC AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP791919", "output": "32151900"}, {"text_input": "What is the hs code for FDANDC YELLOW #5/TARTRAZINE AL... (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP796058", "output": "32151900"}, {"text_input": "What is the hs code for GINKGO EXTRACT (BHN BAKU OBAT) COA 1271580", "output": "13021950"}, {"text_input": "What is the hs code for FERROUS FUMARATE USP/EP (BHN BAKU OBAT) COA.2018/107", "output": "29171900"}, {"text_input": "What is the hs code for IONOL CP (BHN BAKU KOSMETIK) COA 01422917", "output": "29420000"}, {"text_input": "What is the hs code for KF-6028 (BHN BAKU KOSMETIK) , COA 804183", "output": "38249999"}, {"text_input": "What is the hs code for KF-6028 (16KG) BHN BAKU KOSMETIK, COA 804183", "output": "38249999"}, {"text_input": "What is the hs code for KF-96A-6CS (16KG) BHN BAKU KOSMETIK, COA 804954", "output": "38249999"}, {"text_input": "What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA 0000013177", "output": "33029000"}, {"text_input": "What is the hs code for THE MATCHA 1 P001062 (BHN BAKU KOSMETIK) COA.0000013169", "output": "33029000"}, {"text_input": "What is the hs code for PLAISANCE P116808 (BHN BAKU KOSMETIK) COA 0000013175", "output": "33029000"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 01/17GAAK", "output": "28399000"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 01/17GAAK ,SAMPLE NO COMMERCIAL VALUE", "output": "28399000"}, {"text_input": "What is the hs code for LABRAFIL M 1944 CS (BAHAN BAKU SUPLEMEN) COA 168850", "output": "28399000"}, {"text_input": "What is the hs code for TEFOSE 63 (BAHAN BAKU SUPLEMEN) COA 169160", "output": "28399000"}, {"text_input": "What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 165210", "output": "28399000"}, {"text_input": "What is the hs code for LABRASOL (BHN BAKU SUPLEMEN) COA 167978", "output": "28399000"}, {"text_input": "What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND171003, ND171105, ND171106", "output": "29372200"}, {"text_input": "What is the hs code for RANITIDINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA RH287 04 18, RH 288 04 18...", "output": "29321900"}, {"text_input": "What is the hs code for RANITIDINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA RH 290 04 18, RH 291 04 18...", "output": "29321900"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP18043349, X18043350", "output": "29211900"}, {"text_input": "What is the hs code for CALCIUM GLUCONATE EP (BHN BAKU OBAT) COA CGA-EP1804045", "output": "29181600"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17120063, 80049,80050", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17120063", "output": "29362100"}, {"text_input": "What is the hs code for DL A TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18030043", "output": "29362800"}, {"text_input": "What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01801004", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT18010167", "output": "29362100"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01801004", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01801005", "output": "29362400"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18030043", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT18010167", "output": "29362100"}, {"text_input": "What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91804410, 11,12", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL EHS ,25KG PC (BHN BAKU KOSMETIK) COA MCS1607099", "output": "29420000"}, {"text_input": "What is the hs code for DESONIDE MICRONIZED (BHN BAKU OBAT) COA NX2299M", "output": "29372900"}, {"text_input": "What is the hs code for DROSPIRENONE MICRONIZED (BHN BAKU OBAT) COA NY0462M", "output": "29372900"}, {"text_input": "What is the hs code for TRIAMCINOLONE ACETONIDE (BHN BAKU OBAT) COA NY0780M", "output": "29372200"}, {"text_input": "What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NY0865M", "output": "29372200"}, {"text_input": "What is the hs code for ULTALUX FF25 KG BAG (BHN BAKU KOSMETIK) COA D0417X1872", "output": "38249999"}, {"text_input": "What is the hs code for PUROLAN E 171 (BHN BAKU KOSMETIK) COA 5635115", "output": "38249999"}, {"text_input": "What is the hs code for CYTOFIX/CYTOPERM W/GOLGI STOP KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7346857", "output": "38210010"}, {"text_input": "What is the hs code for ACRYLPOL 980 BAHAN BAKU KOSMETIK) COA 11518003", "output": "38249999"}, {"text_input": "What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 1804EF1113", "output": "29224900"}, {"text_input": "What is the hs code for OPADRY ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA638391", "output": "38249999"}, {"text_input": "What is the hs code for CATCOL C 135 (L) GRADE (BAHAN BAKU KOSMETIK) COA 395/18", "output": "38249999"}, {"text_input": "What is the hs code for PROPYPHENAZONE (ST) (BHN BAKU OBAT UTK PEWARNA TABLET) COA 1711300", "output": "29331100"}, {"text_input": "What is the hs code for OLIVE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA OLE180202-RQ", "output": "38249999"}, {"text_input": "What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8087522", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7324962", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7289995", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7314928", "output": "38210010"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7338913", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8068917,8068939", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7153980", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LETHERN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 8046743", "output": "38210010"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7338913", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 8011977...", "output": "38210010"}, {"text_input": "What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8109595", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7332587", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAIL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7356665", "output": "38210010"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7338913", "output": "38210010"}, {"text_input": "What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8059702", "output": "38210010"}, {"text_input": "What is the hs code for CD14 APC MPHIP9 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7235889", "output": "38210010"}, {"text_input": "What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8078616", "output": "38210010"}, {"text_input": "What is the hs code for FASTIMMUNE HUMAN IL2 PE 5344 .111 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8060777", "output": "38210010"}, {"text_input": "What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8026653", "output": "38210010"}, {"text_input": "What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8109595", "output": "38210010"}, {"text_input": "What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8044954", "output": "38210010"}, {"text_input": "What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8026870", "output": "38210010"}, {"text_input": "What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8009536", "output": "38210010"}, {"text_input": "What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8046521", "output": "38210010"}, {"text_input": "What is the hs code for CD8 PERCP CY5.5 SK1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7304693,...", "output": "38210010"}, {"text_input": "What is the hs code for IFN GAMMA APC RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8081704", "output": "38210010"}, {"text_input": "What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7345542,8033517", "output": "38210010"}, {"text_input": "What is the hs code for ANTI HLA DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8015843", "output": "38210010"}, {"text_input": "What is the hs code for FASTIMMUNE COSTIM CD28/CD49 0.3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7299715", "output": "38210010"}, {"text_input": "What is the hs code for CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8031925", "output": "38210010"}, {"text_input": "What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8044550,8073612", "output": "38210010"}, {"text_input": "What is the hs code for CD3 FITC SK7 50 TESTS IVD (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8057718", "output": "38210010"}, {"text_input": "What is the hs code for PERM/WASH BUFFER 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7180888-B", "output": "38210010"}, {"text_input": "What is the hs code for HU CD4 FITC RPA-T4 100TST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8037703", "output": "38210010"}, {"text_input": "What is the hs code for HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7125585", "output": "38210010"}, {"text_input": "What is the hs code for LYSING BUFFER 10X CONCENTRATE 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8045509", "output": "38210010"}, {"text_input": "What is the hs code for HU REGULATORY T CELL CKTL 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7286518", "output": "38210010"}, {"text_input": "What is the hs code for BD CST BEADS KIT 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 80759", "output": "38210010"}, {"text_input": "What is the hs code for HU CD28 PE CD28.2 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7297748", "output": "38210010"}, {"text_input": "What is the hs code for KI-67 ALEXA 647 B56 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7348582", "output": "38210010"}, {"text_input": "What is the hs code for CS&T RUO BEADS 50 TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8074640", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH7353854,8032932", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE UREA AGAR BASE BBL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7332918", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8053841,8092819", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ANAEROBE ID AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8068562", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8087522", "output": "38210010"}, {"text_input": "What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP A (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6239952", "output": "38210010"}, {"text_input": "What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP C (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7335666", "output": "38210010"}, {"text_input": "What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP W135 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6267761", "output": "38210010"}, {"text_input": "What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT 10X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7228748", "output": "38210010"}, {"text_input": "What is the hs code for CD4 APC SK3 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7318894", "output": "38210010"}, {"text_input": "What is the hs code for CD10 PE HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8059814", "output": "38210010"}, {"text_input": "What is the hs code for CD10 APC HI10A 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7348976", "output": "38210010"}, {"text_input": "What is the hs code for CD11B APC D12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8040948", "output": "38210010"}, {"text_input": "What is the hs code for ANTI LAMBDA FITC 1-155-2 50TST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8107891", "output": "38210010"}, {"text_input": "What is the hs code for CD20 FITC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8059699", "output": "38210010"}, {"text_input": "What is the hs code for PI/RNASE STINING BUFFER SOLUTION 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8019561", "output": "38210010"}, {"text_input": "What is the hs code for HU IL-17A PE N49-653 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8004580", "output": "38210010"}, {"text_input": "What is the hs code for HU CD64 APC-H7 10.1 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7306651", "output": "38210010"}, {"text_input": "What is the hs code for HU CD19 BV510 SJ25C1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7292805", "output": "38210010"}, {"text_input": "What is the hs code for HU CD14 BV421 MPHIP9 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8004920", "output": "38210010"}, {"text_input": "What is the hs code for CD38 APC-H7 (HB7) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8046672", "output": "38210010"}, {"text_input": "What is the hs code for ANTI KAPPA PE TB28-2 50 TESTS RUO/G,P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8029550", "output": "38210010"}, {"text_input": "What is the hs code for HU CD3 FITC UCHT1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8029550", "output": "38210010"}, {"text_input": "What is the hs code for ANTI-BCL-2 FITC 100 50 TST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8044528", "output": "38210010"}, {"text_input": "What is the hs code for CD23 PE EBVCS-5 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8059872", "output": "38210010"}, {"text_input": "What is the hs code for CYTOFIX/CYTOPERM W/GOLGIPLUG KIT 250TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7076742", "output": "38210010"}, {"text_input": "What is the hs code for HU CD25 PE M-A251 100TST (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8086986", "output": "38210010"}, {"text_input": "What is the hs code for FENOFIBRATE MICRONIZED (BHN BAKU OBAT) COA W-F03-20180301-02", "output": "29189900"}, {"text_input": "What is the hs code for BISOPROLOL FUMARATE USP(BAHAN BAKU OBAT)COA LT-OBFM/005/17-18", "output": "29221990"}, {"text_input": "What is the hs code for AMLODIPINE BESILATE BP/EP (BHN BAKU OBAT), COA. AMB/050/04/18, AMB/051/04/18...", "output": "29333990"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU OBAT), COA UJ817", "output": "29181400"}, {"text_input": "What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA.18100312, 313", "output": "29395900"}, {"text_input": "What is the hs code for MEROPENEM TRIHYDRATE WITH SODIUM CAROBATE STERILE (B.BAKU OBAT) COA.S0820180402", "output": "30032000"}, {"text_input": "What is the hs code for CANDESARTAN CILEXETIL (BHN BAKU OBAT) COA 5668-18-006", "output": "29339990"}, {"text_input": "What is the hs code for OXYTETRACYCLINE DIHYDRATE INJ GRADE BP/EP (BHN BAKU OBAT UTK PAKAN TERNAK ) COA ZT180327", "output": "29413000"}, {"text_input": "What is the hs code for CITICOLINE SODIUM (BHN BAKU OBAT) COA 3A26180315", "output": "29349990"}, {"text_input": "What is the hs code for IRBESARTAN (BHN BAKU OBAT) COA C5465-17-036, C5465-17-044,050,051", "output": "29332900"}, {"text_input": "What is the hs code for GLUCOSAMINE HCL (BHN BAKU OBAT) COA JST20180420", "output": "29329990"}, {"text_input": "What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20180419", "output": "29309090"}, {"text_input": "What is the hs code for FIBRE DRUM (DRUM KOSONG)", "output": "48192000"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7312572", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 7171538,7306827", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242852", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7363777", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7018890", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7235794", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7178809", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7284524", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7321587", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8054962", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7297545", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7349833", "output": "38210010"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7338657", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7321586", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7151674", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8068984", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7283691", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8011939,8032502", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7312538", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7278689", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8066783", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8032527", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7341765", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7349609", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8052641,806854", "output": "38210010"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8003644", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7317830,7325915", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7338553", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7255556", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7363740", "output": "38210010"}, {"text_input": "What is the hs code for PAIL BUFFERED PEPTONE WATER 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8053800", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7332733", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8012723", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7095842", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7262745", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7251553", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8012609", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7363844", "output": "38210010"}, {"text_input": "What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7305891", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7060815", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8065670", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8072638", "output": "38210010"}, {"text_input": "What is the hs code for SOLUTION BACTERIOSTAT CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0957C118", "output": "38210010"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8003644", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8072638", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6278861", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7321587", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7341765", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8072638", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8065670", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7193724", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7349609", "output": "38210010"}, {"text_input": "What is the hs code for PAIL LAURYL TRYPTOSE BROTH 2KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7234887,8012733", "output": "38210010"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8003644", "output": "38210010"}, {"text_input": "What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8030866", "output": "38210010"}, {"text_input": "What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8003673", "output": "38210010"}, {"text_input": "What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8018795", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8037783", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7291775", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8068984", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SIM MEDIUM BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7291684", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ACTINOMYCETES ISOLATION AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7317688", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY II AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7250648", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE AGAT NOBLE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8003633", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 72327270", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7325649", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7220787", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8012740", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8046922", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE NITRATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7198978", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE YEAST NITROGEN BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8011965", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7220793", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BORDET GENGOU AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7114770", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7363845", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7306691", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER LACTOPHENOL COTTON BLUE STAIN (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7332867", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7332884", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7135939", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE STARCH AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7255527", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7220823", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 7250994", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TINSDALE BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6026724", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7335617", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7363785", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PSEUDOMONAS ISOLATION AG 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7235847", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 2KG (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8032581", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8012609", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7363823,8032527", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7291775", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PROTEOSE PEPTONE NO 3 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8059926", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PEPSIN 1 TO 10000 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7242856", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8032542", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8032542", "output": "38210010"}, {"text_input": "What is the hs code for PANTOPRAZOLE SODIUM (BHN BAKU OBAT) COA PS1561017", "output": "29333990"}, {"text_input": "What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.18100077, 18100237", "output": "29391900"}, {"text_input": "What is the hs code for ANTI SHINE WASH (BHN BAKU KOSMETIK) COA 10300067", "output": "38249999"}, {"text_input": "What is the hs code for ANTI SHINE WASH (BHN BAKU KOSMETIK) COA 10300067", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605253", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605221", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605460", "output": "38249999"}, {"text_input": "What is the hs code for SUPREME TM WP AGAIN (BHN BAKU KOSMETIK) COA 1730901", "output": "38249999"}, {"text_input": "What is the hs code for ALDAVINE 5X (BHN BAKU KOSMETIK) COA 5515217", "output": "38249999"}, {"text_input": "What is the hs code for AMISOL TM 4135 (BHN BAKU KOSMETIK) COA 1724701", "output": "38249999"}, {"text_input": "What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829015924J", "output": "38249999"}, {"text_input": "What is the hs code for BODY 3 COMPLEX (BHN BAKU KOSMETIK), COA B3C010317", "output": "38249999"}, {"text_input": "What is the hs code for LANACHRYS 2B PF (PRESERVATIVE) BHN BAKU KOSMETIK, COA 5520717", "output": "38249999"}, {"text_input": "What is the hs code for MELANOSTATINE-5BG (50PPM) (BHN BAKU KOSMETIK) COA 817046077J", "output": "38249999"}, {"text_input": "What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015528H", "output": "38249999"}, {"text_input": "What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) COA 1724516", "output": "39139090"}, {"text_input": "What is the hs code for TYROSTAT 11 (BHN BAKU KOSMETIK) COA 784026174J", "output": "38249999"}, {"text_input": "What is the hs code for ABBYSINE 657 (BHN BAKU KOSMETIK) COA 5541718", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1804005", "output": "38249999"}, {"text_input": "What is the hs code for METHOCEL E15 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011HAGL01", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E5M PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011HAML01", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E15 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011HAAL02", "output": "39123900"}, {"text_input": "What is the hs code for NIACINAMIDE USP (BHN BAKU KOSMETIK) COA 17-18/NMD(P)/U/292 S/D 295, 18-19/NMD(P)/U/005", "output": "29362900"}, {"text_input": "What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1810133, 1810142, 1810171", "output": "29242930"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT LYOPHILIZED (BHN BAKU OBAT)COA NY0659", "output": "29372900"}, {"text_input": "What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M.31.0PCT (BHN BAKU OBAT) COA 101829002", "output": "28161000"}, {"text_input": "What is the hs code for CLOPIDOGREL BISULFATE (BHN BAKU OBAT) COA AALH002720,3475,3863,3871...", "output": "29349990"}, {"text_input": "What is the hs code for HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 2771527", "output": "38249999"}, {"text_input": "What is the hs code for NOREPINEPHRINE BITARTRATE (BHN BAKU OBAT) COA 430104", "output": "29379010"}, {"text_input": "What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1810127, 130, 139", "output": "29242930"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M529878,912,915", "output": "29411019"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX POWDER (BHN BAKU OBAT) COA M483670", "output": "29411019"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M595800", "output": "29411019"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604673", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604674", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604555", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604670", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604675", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604672", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604720", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604705", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604501", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604690", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604706", "output": "38249999"}, {"text_input": "What is the hs code for JAGUAR C 162 CARDBOARD BOX 25 KG (BHN BAKU KOSMETIK) COA MJAC18067A", "output": "38249999"}, {"text_input": "What is the hs code for COATED ASCORBIC ACID TYPE EC,25KG BOX (BHN BAKU SUPLEMEN) COA TL01803242", "output": "29362700"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB01017174", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18020037", "output": "29362100"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010013", "output": "32041900"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010013", "output": "32041900"}, {"text_input": "What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S TG(BHN BAKU SUPLEMEN) COA UT17110018", "output": "29420000"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17110053", "output": "29362100"}, {"text_input": "What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ70407016", "output": "29420000"}, {"text_input": "What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0020663", "output": "29420000"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18030043,49", "output": "29362800"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518040093", "output": "29420000"}, {"text_input": "What is the hs code for VITAMIN PREMIX, TYPE MM81 (105PCT) BHN BAKU MAKANAN, COA XW91804331", "output": "21069059"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80110031", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80110031", "output": "29362300"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT17120259,UT18020026", "output": "29362800"}, {"text_input": "What is the hs code for CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB00418077", "output": "29362700"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70813198", "output": "29362500"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17080284", "output": "29362400"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01801011", "output": "32041900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17120036", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00917087", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00917018", "output": "29362500"}, {"text_input": "What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91804027", "output": "21069059"}, {"text_input": "What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91804192", "output": "21069059"}, {"text_input": "What is the hs code for DWI BI (BHN BAKU MAKANAN) COA XW91804371", "output": "21069059"}, {"text_input": "What is the hs code for DWI BI (BHN BAKU MAKANAN) COA XW91804124", "output": "21069059"}, {"text_input": "What is the hs code for DWI BI (BHN BAKU MAKANAN) COA XW91804124, 4371", "output": "21069059"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ70903302", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ71103353,3358", "output": "29362200"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17090070", "output": "29362900"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80102047", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ80102044", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE ( BHN BAKU MAKANAN), COA UQ80102044,47", "output": "29362200"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT17110079", "output": "29362800"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11801020", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11801020", "output": "29362900"}, {"text_input": "What is the hs code for ASCORBIC ACID ,25KG BOX ALU (BHN BAKU SUPLEMEN) COA TL01709678", "output": "29362700"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00917087", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT17080253", "output": "29362400"}, {"text_input": "What is the hs code for -CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01801011,12", "output": "32041900"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT17110004", "output": "29362900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ70813198", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01701110", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN), COA UE01705017", "output": "29362900"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01801011", "output": "32041900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP1180120", "output": "29362900"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01801011", "output": "32041900"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01801011", "output": "32041900"}, {"text_input": "What is the hs code for PREMIX VITAMIN OIL TYPE GBP (BHN BAKU MAKANAN) COA XW91804208", "output": "21069059"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01710079, UE01801011", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91804109", "output": "21069059"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU MAKANAN) COA TL01711797", "output": "29362400"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL01711797", "output": "29362400"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL01711797", "output": "29362400"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1710134", "output": "29362300"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN), COA UQ80102044", "output": "29362200"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU MAKANAN) COA UT17110004", "output": "29362900"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01710099", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT17110004", "output": "29362900"}, {"text_input": "What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01710099", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL01708082,1710099", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT18020017", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT18010003", "output": "29362900"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20170305", "output": "29362800"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20170305", "output": "29362800"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01711799", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT17120065", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17120065", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT17120037", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT18010781,782", "output": "29362100"}, {"text_input": "What is the hs code for DOCUSATE SODIUM (BHN BAKU OBAT), COA SD7103055", "output": "29171900"}, {"text_input": "What is the hs code for NONIVAMIDE (SYNTHETIC CAPSAICIN)BHN BAKU KOSMETIK, COA.20180427", "output": "38249999"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE MIU/G (BHN BAKU MAKANAN) COA UT17100019", "output": "29362100"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18040076", "output": "29362800"}, {"text_input": "What is the hs code for DL-PANTHENOL 50L, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01802610", "output": "29362400"}, {"text_input": "What is the hs code for ETHYL PANTHENOL, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01803803", "output": "29362400"}, {"text_input": "What is the hs code for NYSTATIN POWDER ROW (BHN BAKU OBAT) COA C114166", "output": "29419000"}, {"text_input": "What is the hs code for NYSTATIN MICRONIZED ROW (BHN BAKU OBAT) COA C130738", "output": "29419000"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101851318A533", "output": "17021100"}, {"text_input": "What is the hs code for FLOWLAC (R) 100 (BHN BAKU OBAT) COA L101500618A537", "output": "17021100"}, {"text_input": "What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104315117A552", "output": "17021100"}, {"text_input": "What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-0660318", "output": "29334910"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101851418A533", "output": "17021100"}, {"text_input": "What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA KCJ", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA KDJ", "output": "38249999"}, {"text_input": "What is the hs code for VISTANOL GDHR (BHN BAKU KOSMETIK) COA DKI", "output": "38249999"}, {"text_input": "What is the hs code for STARCAP 1500 CO-PROCESSED (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN536494", "output": "35051010"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605231", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605232", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605230", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605233", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604943", "output": "38249999"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA.09820318, 09830318,...", "output": "29359000"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE BP MICRONISED (BHN BAKU OBAT) COA 14470518, 11480518", "output": "29359000"}, {"text_input": "What is the hs code for PANTOPROZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT,COA APSS18001", "output": "29333990"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP04018", "output": "28363000"}, {"text_input": "What is the hs code for METRONIDAZOLE BP MICRONISED (BHN BAKU OBAT) COA MTZ/8040655", "output": "29332900"}, {"text_input": "What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN1400917", "output": "29221990"}, {"text_input": "What is the hs code for PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) COA PH02160218", "output": "38249999"}, {"text_input": "What is the hs code for CITRIC ACID MONOHYDRATE BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX1805008", "output": "29181400"}, {"text_input": "What is the hs code for SK BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK)COA SPG-390258", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-022017", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK) COA NMSP-D-032127", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK)COA KFB-L-010858, KFB-L-030827", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND CUCUMBER EXTRACT (BHN BAKU KOSMETIK) COA CUPD-022648", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-010528", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-022228", "output": "38249999"}, {"text_input": "What is the hs code for KIT 488NM JDSU TO OBIS RETRO COMPLETE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)", "output": "38210010"}, {"text_input": "What is the hs code for RIBOFLAVIN 5' PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1710138, 139", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1710142, 143", "output": "29362300"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB100418", "output": "39123900"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B180418", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG260418", "output": "39123900"}, {"text_input": "What is the hs code for CHAMONILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO171102", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-180403", "output": "38249999"}, {"text_input": "What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-180401-GS", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK)COA EG209-180101", "output": "38249999"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB00318212", "output": "29362100"}, {"text_input": "What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 101769017", "output": "28161000"}, {"text_input": "What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA.18100312, 359", "output": "29395900"}, {"text_input": "What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 18100313, 360", "output": "29395900"}, {"text_input": "What is the hs code for REFINED MACADAMIA OIL (BCE1010) BHN BAKU KOSMETIK, COA 899509", "output": "38249999"}, {"text_input": "What is the hs code for ETHYL PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01707814,18", "output": "29362400"}, {"text_input": "What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000173222,172347", "output": "29362900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I4P003", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I4P003", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D080I4K001", "output": "39123900"}, {"text_input": "What is the hs code for CILOSTAZOL USP (BHN BAKU OBAT) COA 17007CB2ARI", "output": "29337900"}, {"text_input": "What is the hs code for REFINED SUNFLOWER OIL (BHN BAKU KOSMETIK) COA KKLJ 06/18", "output": "38249999"}, {"text_input": "What is the hs code for LIQUORICE LC (BHN BAKU KOSMETIK) COA.110349/P76692", "output": "13021920"}, {"text_input": "What is the hs code for FLAVOSTERONE SB ( BHN BAKU KOSMETIK), COA 180150", "output": "13021950"}, {"text_input": "What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 180260", "output": "38249999"}, {"text_input": "What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 170083", "output": "29329990"}, {"text_input": "What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 172648", "output": "13021950"}, {"text_input": "What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIV171001-BGBIO", "output": "38249999"}, {"text_input": "What is the hs code for HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA MIE180301", "output": "38249999"}, {"text_input": "What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH180506-ENBIO", "output": "38249999"}, {"text_input": "What is the hs code for ROSA DAMASCENA ORGANIC DISTILLA 1:20 (SB) (BHN BAKU KOSMETIK)COA ROSD180403-BIO", "output": "38249999"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA180102", "output": "38249999"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA180203", "output": "38249999"}, {"text_input": "What is the hs code for LINEN OILY EXTRACT GT10 (BHN BAKU KOSMETIK) COA LIU180403-H", "output": "38249999"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA RBA0961800, RBA0951800", "output": "28363000"}, {"text_input": "What is the hs code for BILBERRY (V.MYRTILLUS) ET EX 36PCT (BHN BAKU SUPLEMEN) COA 32454/M3", "output": "13021950"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605729", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605660", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605659", "output": "38249999"}, {"text_input": "What is the hs code for PIROXICAM (BHN BAKU OBAT) COA PRX2018003M", "output": "29349990"}, {"text_input": "What is the hs code for REFINED TRACED SHEA OLEIN (BHN BAKU KOSMETIK) COA 0000021463", "output": "38249999"}, {"text_input": "What is the hs code for O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 112917/005062", "output": "38249999"}, {"text_input": "What is the hs code for GELUCIRE 44/14 (BHN BAKU SUPLEMEN) COA 169220", "output": "28399000"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 01/17GAAK", "output": "28399000"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 01/17GAAK, SAMPLE NO COMMERCIAL VALUE", "output": "28399000"}, {"text_input": "What is the hs code for LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 18092", "output": "38249999"}, {"text_input": "What is the hs code for CYANACOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPLEMEN KESEHATAN) COA. 1806151027", "output": "29362600"}, {"text_input": "What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA. DOC01131821", "output": "28363000"}, {"text_input": "What is the hs code for CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 018.436", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE SKINB VITLIDO 1MLD16 (BHN BAKU OBAT) COA 15926-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE SKINB VITALLGHLIDO 1MLD16 (BHN BAKU OBAT) COA 15981-2", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE SKINB VITALLGHLIDO 1MLD16 (BHN BAKU OBAT) COA 16112-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML (BHN BAKU OBAT) COA 15912-2", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE REFYNE 1ML (BHN BAKU OBAT) COA 15842-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE DEFYNE 1ML (BHN BAKU OBAT) COA 15856-1", "output": "90189090"}, {"text_input": "What is the hs code for PURE GREEN B&W PIT (BHN BAKU KOSMETIK)COA 10300031", "output": "38249999"}, {"text_input": "What is the hs code for KF-96A-6CS (BHN BAKU KOSMETIK) , COA 805958", "output": "38249999"}, {"text_input": "What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0023236", "output": "38249999"}, {"text_input": "What is the hs code for CUIVRIDONE 5KG (BHN BAKU KOSMETIK) COA 0021095", "output": "38249999"}, {"text_input": "What is the hs code for LANSOPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA LP0218C016", "output": "29333990"}, {"text_input": "What is the hs code for NORIT SX SUPER E 153 (BHN BAKU KOSMETIK) COA 4332393", "output": "38249999"}, {"text_input": "What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 80222", "output": "38249999"}, {"text_input": "What is the hs code for GLIMEPIRIDE MICRONISED 25KG (BHN BAKU OBAT) COA U790", "output": "29359000"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA.M113071", "output": "29339990"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121808671,672", "output": "28363000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 121808672", "output": "28363000"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702646305", "output": "29372900"}, {"text_input": "What is the hs code for AC019KC PHYTOVITYL C 5KG (BHN BAKU KOSMETIK) COA 0022844", "output": "38249999"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET)COA IN536519", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN536447", "output": "35051010"}, {"text_input": "What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453119183", "output": "39139090"}, {"text_input": "What is the hs code for ESOMEPRAZOLE SODIUM STERILE (BHN BAKU OBAT), COA SI/EPZ/00010318", "output": "29333990"}, {"text_input": "What is the hs code for ARTESUNATE STERILE (BHN BAKU OBAT), COA SI/ARS/00160418", "output": "29329990"}, {"text_input": "What is the hs code for OMEPRAZOLE SODIUM STERILE (BHN BAKU OBAT) COA SI/OPZ/00070418", "output": "30039000"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA RBA1201800", "output": "28363000"}, {"text_input": "What is the hs code for MATCHA GREEN TEA EXTRACT CSP 6 TC ( BHN BAKU KOSMETIK), COA CSP 18005 EOU", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605081", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605085", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605084", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605083", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605075", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605076", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605074", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605079", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605079", "output": "38249999"}, {"text_input": "What is the hs code for LANOLINE ANHYDROUS (BHN BAKU KOSMETIK) COA 4550", "output": "38249999"}, {"text_input": "What is the hs code for SUPPOCIRE AM PELLETS (BHN BAKU OBAT),COA 18E0702", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 18E1105", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 18E1702", "output": "28399000"}, {"text_input": "What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT),COA 169220", "output": "28399000"}, {"text_input": "What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK) COA.LDC 129 18T", "output": "38249999"}, {"text_input": "What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 240418", "output": "25070000"}, {"text_input": "What is the hs code for LIFE'S ARA (TM) 12 N-6 ARA POWDER (BHN BAKU MAKANAN) COA WB00118310,12", "output": "29362500"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA ROA142184", "output": "28363000"}, {"text_input": "What is the hs code for DANDC YELLOW #10 AL 15PCT-20PCT. (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP787038,...", "output": "32151900"}, {"text_input": "What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP7881301", "output": "32151900"}, {"text_input": "What is the hs code for DANDC YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP796877", "output": "32151900"}, {"text_input": "What is the hs code for FDANDC RED #40/ALLURA RED AC AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP785006", "output": "32151900"}, {"text_input": "What is the hs code for OPACODE WHITE ( BHN BAKU OBAT UTK PEWARNA TABLET) COA WP798737", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605247", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604708", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605916", "output": "38249999"}, {"text_input": "What is the hs code for CATCOL C 135 (L) GRADE (BAHAN BAKU KOSMETIK) COA 432/18", "output": "38249999"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA ROA143184", "output": "28363000"}, {"text_input": "What is the hs code for SEP-ART GSL .195 NPG (SEP-ART GSL) BHN BAKU OBAT UTK PAKAN IKAN, COA 7118223352", "output": "5119120"}, {"text_input": "What is the hs code for SEP-ART GSL..210 NPG (SEP-ART GSL) BHN BAKU OBAT UTK PAKAN IKAN, COA 7118223353", "output": "5119120"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01803159,1804443,1804593", "output": "29362700"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU MAKANAN) COA.TS00009862", "output": "29362500"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 FOOD OIL,4,5KG PJUG (BHN BAKU MAKANAN) COA TS00009862", "output": "29362500"}, {"text_input": "What is the hs code for SERASENSE SF CM5 (BAHAN BAKU KOSMETIK) COA PA80605049,6004,6006", "output": "29319049"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20180303", "output": "29362800"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20180303", "output": "29362800"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG180511", "output": "29420000"}, {"text_input": "What is the hs code for THE MATCHA CONCOMBRE (BHN BAKU KOSMETIK) COA 2780005", "output": "33029000"}, {"text_input": "What is the hs code for CITRIC ACID MONOHYDRATE BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 2AX1805053", "output": "29181400"}, {"text_input": "What is the hs code for SUNTHEANINE U001 (BHN BAKU SUPLEMEN KESEHATAN), COA 710271", "output": "29224900"}, {"text_input": "What is the hs code for DPG FG (BHN BAKU KOSMETIK) COA B00651DP", "output": "29094900"}, {"text_input": "What is the hs code for PG USP (BHN BAKU KOSMETIK) COA B00651UP", "output": "29053200"}, {"text_input": "What is the hs code for OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606393", "output": "38249999"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX POWDER (BHN BAKU OBAT) COA M483706,727,746,733,747,748", "output": "29411019"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS180201", "output": "38249999"}, {"text_input": "What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH180507-ENBIO, OLVH180508-ENBIO", "output": "38249999"}, {"text_input": "What is the hs code for WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK)COA EG138-180401", "output": "38249999"}, {"text_input": "What is the hs code for LOTUS OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA NEN180303-H", "output": "38249999"}, {"text_input": "What is the hs code for ROSE OILY EXTRACT (BHN BAKU KOSMETIK) COA ROS1800503-H", "output": "38249999"}, {"text_input": "What is the hs code for AVOCADO ORGANIC OIL XNE019 (BHN BAKU KOSMETIK) COA PEGH180201-OLIBIO", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS180201", "output": "38249999"}, {"text_input": "What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) COA PEGH180201-OLIBIO", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM170702-PGH", "output": "38249999"}, {"text_input": "What is the hs code for NIACINAMIDE USP (BHN BAKU KOSMETIK) COA 18-19/NMD(P)/U/028, 030 S/D 32, 41", "output": "29362900"}, {"text_input": "What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK)COA MUP-012218", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-893107, NMP-L-032628", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-021127", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA MCP-N-010318", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND GREEN TEA SEED OIL (BHN BAKU KOSMETIK) COA CSSO-010728", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-010858", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK)COA NMSP-D-032127", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK) COA CPG-39-0258", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-030948, SFP-N-041458", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE(BHN BAKU KOSMETIK) COA 2018D1321", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND BIO BLACK PEARL POWDER (BHN BAKU KOSMETIK) COA PDEG-021527", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND LICORICE EXTRACT (BHN BAKU KOSMETIK) COA GGB-032607", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-010448", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-053058", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND BIO-SIP (BHN BAKU KOSMETIK) COA STOD-011168", "output": "38249999"}, {"text_input": "What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 18051819", "output": "38249999"}, {"text_input": "What is the hs code for CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 201805T-CCH", "output": "38249999"}, {"text_input": "What is the hs code for FLOWLAC (R) 100 (BHN BAKU OBAT) COA. L101500918A537", "output": "17021100"}, {"text_input": "What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103861018A545", "output": "17021100"}, {"text_input": "What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104311018A552", "output": "17021100"}, {"text_input": "What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA 0000013178", "output": "33029000"}, {"text_input": "What is the hs code for PLAISANCE P116808 (BHN BAKU KOSMETIK) COA.0000016118", "output": "33029000"}, {"text_input": "What is the hs code for THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000013170", "output": "33029000"}, {"text_input": "What is the hs code for CYANACOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPLEMEN KESEHATAN) COA. 1806271436", "output": "29362600"}, {"text_input": "What is the hs code for BILBERRY (V.MYRTILLUS) ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 32454/M3", "output": "13021950"}, {"text_input": "What is the hs code for BILBERRY (V.MYRTILLUS) ET EX.36PCT (BHN BAKU SUPLEMEN) COA 32701/M3", "output": "13021950"}, {"text_input": "What is the hs code for BILBERRY (V. MYRTILLUS) ET. EX.36PCT (BHN BAKU SUPLEMEN) COA 32701/M3", "output": "13021950"}, {"text_input": "What is the hs code for MIRTOGENOL (R) (BHN BAKU SUPLEMEN) COA 80365/M", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605910", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605913", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605914", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605916", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605915", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605911", "output": "38249999"}, {"text_input": "What is the hs code for PYRAZINAMIDE USP (BHN BAKU OBAT) COA PZ 039 E 18, PZ 040 E 18...", "output": "29339990"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01801005", "output": "29362400"}, {"text_input": "What is the hs code for D. PANTHENOL 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01801005,2019", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001474299", "output": "29420000"}, {"text_input": "What is the hs code for DL.A TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18030049", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT18010782", "output": "29362100"}, {"text_input": "What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00515943,516074,523423.523426", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX,25 KG PC (BHN BAKU KOSMETIK) COA MCS1605181", "output": "29420000"}, {"text_input": "What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91805232", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318040605, 607, 608", "output": "29420000"}, {"text_input": "What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES1702026", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318040608,609,610,611", "output": "29420000"}, {"text_input": "What is the hs code for DL-PANTHENOL 50L (BHN BAKU KOSMETIK) COA TL01709650, 712660", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT18020168", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT18020168", "output": "29362100"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318040611,612,613", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MAX, 25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0918030007", "output": "29420000"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT18020168", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT18020168", "output": "29362100"}, {"text_input": "What is the hs code for CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB00418077", "output": "29362700"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1711161", "output": "29362300"}, {"text_input": "What is the hs code for CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB00418077", "output": "29362700"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80310073", "output": "29362300"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ80202059", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80202059", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80202059", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UW80202077,2095,2104", "output": "29362200"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT17110096", "output": "29362800"}, {"text_input": "What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01801008", "output": "29362400"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20170401", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT17110004", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT17120037", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT17120037,39", "output": "29362600"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ71213303", "output": "29362500"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17120065", "output": "29362100"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL01802619", "output": "29362400"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01802619", "output": "29362400"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18020042,30043", "output": "29362800"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX ( BHN BAKU SUPLEMEN), COA TL01802619GB", "output": "29362400"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00817037", "output": "29362200"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18020026", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN PREMIX 103047-D(BHN BAKU MAKANAN) COA XW91805212", "output": "21069059"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT18010010", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN PREMIX (BHN BAKU SUPLEMEN) COA XW91805211", "output": "21069059"}, {"text_input": "What is the hs code for PX 204005 (BHN BAKU MAKANAN) COA XW91805210", "output": "21069059"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ80202059", "output": "29362200"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT17090071", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ70309009", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT18020168", "output": "29362100"}, {"text_input": "What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN), COA UQ70309009", "output": "29362300"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ80206051", "output": "29362700"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL01712104", "output": "29362400"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ80102049,2059", "output": "29362200"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ80206047,50", "output": "29362700"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17080285", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT17120065", "output": "29362100"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT18010010", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN MINERAL PREMIX INSTANT DRINK (BHN BAKU MAKANAN) COA XW91805249", "output": "21069059"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18040002,3", "output": "29362100"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1803005", "output": "29362900"}, {"text_input": "What is the hs code for ASCORBIC ACID,25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01801631,40", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN), COA UT18020168", "output": "29362100"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ71103359", "output": "29362200"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ80310073", "output": "29362300"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ80102049", "output": "29362200"}, {"text_input": "What is the hs code for ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01709690", "output": "29362700"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01801012", "output": "32041900"}, {"text_input": "What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18020026", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17120036", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ70309009", "output": "29362300"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1803005", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01705017", "output": "29362900"}, {"text_input": "What is the hs code for EUXYL K 100 CN 10KG KA (BHN BAKU KOSMETIK) COA 1506726, 1508191", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 CN 200KG FA (BHN BAKU KOSMETIK) COA 1508857", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 900 CN 10KG KA (BHN BAKU KOSMETIK) COA 15010129", "output": "38249999"}, {"text_input": "What is the hs code for GROTANOL 3025 CN 10KG KA (BHN BAKU KOSMETIK) COA 1501870,1509426", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 CN 10KG KA (BHN BAKU KOSMETIK) COA 1507293,1510115", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 120 CN 10KG KA (BHN BAKU KOSMETIK) COA 1505458", "output": "38249999"}, {"text_input": "What is the hs code for SENSIDIN DO CN 10KG CA (BHN BAKU KOSMETIK) COA 1501867,1503339", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 CN 200KG FA (BHN BAKU KOSMETIK) COA 1507542,1510104", "output": "38249999"}, {"text_input": "What is the hs code for ANTI SHINE WASH (BHN BAKU KOSMETIK) COA 10300112", "output": "38249999"}, {"text_input": "What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA KCJ", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA KDG", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS S-CAQ (BHN BAKU KOSMETIK) COA KDC", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA KFM", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS W-32 (BHN BAKU KOSMETIK) COA KAE", "output": "38249999"}, {"text_input": "What is the hs code for VISTANOL GDHR ( BHN BAKU KOSMETIK) COA DKI", "output": "38249999"}, {"text_input": "What is the hs code for LIPOID S 20 (BHN BAKU OBAT) COA.572000-2180119/033-039 (7), 572000-2180119/136-143 (8)", "output": "29232010"}, {"text_input": "What is the hs code for HORSE-CHESNUT DRY EXTR STAND (BAHAN BAKU SUPLEMEN) COA 10653/M1", "output": "38249999"}, {"text_input": "What is the hs code for SERASENSE GB 10 (BAHAN BAKU KOSMETIK) COA SF9902E", "output": "39100020"}, {"text_input": "What is the hs code for BRB 1740, DRUM 180 KG ( BHN BAKU KOSMETIK) COA B049325", "output": "39100020"}, {"text_input": "What is the hs code for FERROUS FUMARATE ( BHN BAKU OBAT), COA 2018/131", "output": "29171900"}, {"text_input": "What is the hs code for LINCOMYCIN HCL EP (BHN BAKU OBAT) COA 1805022", "output": "29419000"}, {"text_input": "What is the hs code for BARCROFT TM AL HYD GEL VISCO-9 USP (BHN BAKU OBAT) COA.101802002", "output": "28183000"}, {"text_input": "What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 101823005", "output": "28161000"}, {"text_input": "What is the hs code for BIOTOX (BHN BAKU OBAT UTK PAKAN TERNAK) COA 050418-256, 040518-334", "output": "23099090"}, {"text_input": "What is the hs code for LIQUIPHOS STRONG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 030418-258", "output": "23099090"}, {"text_input": "What is the hs code for LIQUIPHOS STRONG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 030418-258", "output": "23099090"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP18053166,167", "output": "29211900"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP18053001,53002", "output": "29211900"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP18053318,53319", "output": "29211900"}, {"text_input": "What is the hs code for VALERIAN D.H.E.0.8PCT VAL .AC (BAHAN BAKU SUPLEMEN) COA 10782/M1", "output": "13021950"}, {"text_input": "What is the hs code for SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10740/M1", "output": "38249999"}, {"text_input": "What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA. 20180526", "output": "11081200"}, {"text_input": "What is the hs code for FDANDC RED #40/ALLURA RED AC AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP79087", "output": "32151900"}, {"text_input": "What is the hs code for FDANDC YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP789489", "output": "32151900"}, {"text_input": "What is the hs code for DANDC YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP787039", "output": "32151900"}, {"text_input": "What is the hs code for FDANDC BLUE #1/BRILLIANT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP794694", "output": "32151900"}, {"text_input": "What is the hs code for FDANDC BLUE #1/BRILLIANT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP79465", "output": "32151900"}, {"text_input": "What is the hs code for FDANDC YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP789491", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C B YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP796058", "output": "32151900"}, {"text_input": "What is the hs code for FDANDC BLUE #2/INDIGO CARMINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP796431", "output": "32151900"}, {"text_input": "What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1850622, 1850612", "output": "29242990"}, {"text_input": "What is the hs code for CYCLETEST PLUS DNA REAGENT KIT RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8106849", "output": "38210010"}, {"text_input": "What is the hs code for KIT C6 FLOW CYTO STARTER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TERGITOL 4 XLT4 SUPPLEMENT 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH SLBV8046", "output": "38210010"}, {"text_input": "What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8057556", "output": "38210010"}, {"text_input": "What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8057556", "output": "38210010"}, {"text_input": "What is the hs code for BOTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8066910", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7347501", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE GRAM IODINE STABILIZED 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8085868", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE L-ARABINOSE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8114629", "output": "38210010"}, {"text_input": "What is the hs code for PAIL CASAMINO ACIDS TECHNICAL 10KG(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7241559,8059990", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8103884", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8103888", "output": "38210010"}, {"text_input": "What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7214802,730584", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TCBS AGARA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7178809", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MANITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8031785", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7362716,8038940", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7208901", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8024866", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7255556", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7325835", "output": "38210010"}, {"text_input": "What is the hs code for PAIL BUFFERED PEPTONE WATER 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8053800", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8011876", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7151674,8045613", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8068984", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8012723,8058565", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7312572", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7095842", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7262745", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7297545", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242852", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7251553", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC XT PACK 90MM 100E(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8072638,810388", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC XT PACK RODAC 100EA (M. UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8085912,810388", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7306827", "output": "38210010"}, {"text_input": "What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7305896,734885", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060807", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7278689", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7018890", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060815", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8092912", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8073950", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7103675", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8053866,8066907", "output": "38210010"}, {"text_input": "What is the hs code for PAIL LAURYL TRYPTOSE BROTH 2KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8012733", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079866,80926", "output": "38210010"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8058979", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POLYSORBATE 80 100G 1 EA (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 7356700", "output": "38210010"}, {"text_input": "What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8003647", "output": "38210010"}, {"text_input": "What is the hs code for TUBE CRYSTAL E/ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8081587", "output": "38210010"}, {"text_input": "What is the hs code for TUBE CRYSTAL INOCULUM BROTH (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7363698", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POLYSORBATE 80 100G 1 EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7356700", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7304649", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8037783", "output": "38210010"}, {"text_input": "What is the hs code for KIT MAINTENANCE FLOW CYT 2MONTH (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)", "output": "38210010"}, {"text_input": "What is the hs code for BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8086753", "output": "38210010"}, {"text_input": "What is the hs code for BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8086753", "output": "38210010"}, {"text_input": "What is the hs code for KIT MAINTENANCE C6 FLOW CYT 1-YR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PROTEOSE PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8009830", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079540", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079535", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ENDO AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8031775", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MOTILITY TEST MEDIUM BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 7325815", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7317688", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6278861", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE L-ARABINOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8121960", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIADIS MSRV 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8121572", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8012740", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8046922", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8115632", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7220793", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7153977", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE STOCK CULTURE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8012616", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7363845", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8046735", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7321912", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8103707", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7335617", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7363785", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8081784", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DNASE TEST AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8109825", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE CITRATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7114749", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8114795", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8031768", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7291775", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7349833", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 8068984", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8032527", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8032527", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7075670", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7156779", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE UNIVERSAL PREENRICHMENT BROTH 500 (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8003533", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 4 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6342760", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7212562", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8032527", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE RVS SOY BROTH 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7332690", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA IC XT PACK 90MM 100EA (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8109781", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8092912", "output": "38210010"}, {"text_input": "What is the hs code for VIAL TINSDALE ENRICHMENT 6X15ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8116913", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8101679", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7254884", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7356665", "output": "38210010"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7338913", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8068947,8101875", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7153980", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8075737,...", "output": "38210010"}, {"text_input": "What is the hs code for BEADS SPHEROTECH 6-PEAK 2X4ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)", "output": "38210010"}, {"text_input": "What is the hs code for CD4 PERCP SK3 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7348718", "output": "38210010"}, {"text_input": "What is the hs code for CD34 PE-CY7 8G12 Y7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8116646", "output": "38210010"}, {"text_input": "What is the hs code for CD38 APC HB7 100 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8074869", "output": "38210010"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8005840", "output": "38210010"}, {"text_input": "What is the hs code for CD3 APC-H7 SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8118706", "output": "38210010"}, {"text_input": "What is the hs code for CD34 PERCP CY5.5 8G12 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8115842", "output": "38210010"}, {"text_input": "What is the hs code for ANTI-MPO FITC 5BB 50 TESTS RUO/ (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8078589", "output": "38210010"}, {"text_input": "What is the hs code for CD7 APC (M-T701) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8124755", "output": "38210010"}, {"text_input": "What is the hs code for CD79A PE HM47 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8099949", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7356665", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8032932", "output": "38210010"}, {"text_input": "What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT 10X10MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7228748", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7220790", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SHIGELLA ANTIS POLY A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6351747", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE FOLIC ACID ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7277529", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8068562", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7332595", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL O ANTISERUM FACTOR 12 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7342874", "output": "38210010"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8005940", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL H ANTISERUM POLY A 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8026563", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL O ANTISERUM GRP A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7160930", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 800591", "output": "38210010"}, {"text_input": "What is the hs code for VIAL E COLI O ANTISERUM O157 SEROL TEST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7321876", "output": "38210010"}, {"text_input": "What is the hs code for VIAL NOVOBIOCIN SUPPLEMENT 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8095662", "output": "38210010"}, {"text_input": "What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7256877", "output": "38210010"}, {"text_input": "What is the hs code for CD3 APC SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8064632", "output": "38210010"}, {"text_input": "What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8078616", "output": "38210010"}, {"text_input": "What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8046791", "output": "38210010"}, {"text_input": "What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8134604", "output": "38210010"}, {"text_input": "What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8075807", "output": "38210010"}, {"text_input": "What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8046521", "output": "38210010"}, {"text_input": "What is the hs code for CD10 PE-CY7 HI10A 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8142706", "output": "38210010"}, {"text_input": "What is the hs code for CD19 PE-CY7 SJ25C1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8109758", "output": "38210010"}, {"text_input": "What is the hs code for ANNEXIN V FITC APOP DTEC KIT I 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8029889", "output": "38210010"}, {"text_input": "What is the hs code for HU CD64 APC-H7 10.1 50TST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8039787", "output": "38210010"}, {"text_input": "What is the hs code for HU CD36 HORIZON V450 CB38 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7251514", "output": "38210010"}, {"text_input": "What is the hs code for HU CD7 APC M-T701 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8018957", "output": "38210010"}, {"text_input": "What is the hs code for HU CD3 BV421 UCHT1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8036773", "output": "38210010"}, {"text_input": "What is the hs code for BD CST BEADS KIT 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 80759", "output": "38210010"}, {"text_input": "What is the hs code for CD3 APC-H7 SK7 100TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8118706", "output": "38210010"}, {"text_input": "What is the hs code for CD7 APC (M-T701) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8124755", "output": "38210010"}, {"text_input": "What is the hs code for CD43 APC-H7 (1G10) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8115549", "output": "38210010"}, {"text_input": "What is the hs code for CD38 APC-H7 (HB7) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8135875", "output": "38210010"}, {"text_input": "What is the hs code for CD25 PE 2A3 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8064502", "output": "38210010"}, {"text_input": "What is the hs code for HUMAN FOXP3 STAINING KIT PE 100 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)", "output": "38210010"}, {"text_input": "What is the hs code for MS CD4 PE H129.19 200UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8033706", "output": "38210010"}, {"text_input": "What is the hs code for GOLGI PLUG PROTEIN TRSNP INHB 1ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7146718", "output": "38210010"}, {"text_input": "What is the hs code for HU CD14 APC M5E2 25 TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7195873", "output": "38210010"}, {"text_input": "What is the hs code for BEADS SPHEROTECH S PEAK VALIDATION 4ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)", "output": "38210010"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8124811", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7354884", "output": "38210010"}, {"text_input": "What is the hs code for MS CD8A FITC 53-6.7 25UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7122801", "output": "38210010"}, {"text_input": "What is the hs code for GEMCITABINE HYDROCHLORIDE (BHN BAKU OBAT) COA 180521", "output": "29349990"}, {"text_input": "What is the hs code for OXILIPLATIN (BHN BAKU OBAT) COA L20180408", "output": "28439000"}, {"text_input": "What is the hs code for DOPAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA.18100236", "output": "29222900"}, {"text_input": "What is the hs code for NATTOKINASE (BHN BAKU OBAT)COA H185SAF001", "output": "29146200"}, {"text_input": "What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA.18100393, 395", "output": "29221990"}, {"text_input": "What is the hs code for GINKGO BILOBA DRY EXTRACT HF (BHN BAKU SUPLEMEN) COA 17451", "output": "38249999"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA ROA165187", "output": "28363000"}, {"text_input": "What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-004-V", "output": "38249999"}, {"text_input": "What is the hs code for EPA DHA 44 37 (BHN SUPLEMEN KESEHATAN) COA EE4437-180612", "output": "29061300"}, {"text_input": "What is the hs code for CLAIR BLANCHE (BHN BAKU KOSMETIK) COA 180797", "output": "38249999"}, {"text_input": "What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 180854", "output": "13021950"}, {"text_input": "What is the hs code for TEFOSE 63 (BHN BAKU SUPLEMEN) COA 169232", "output": "28399000"}, {"text_input": "What is the hs code for COMPRITOL 888 ATO (BHN BAKU SUPLEMEN) COA 169630", "output": "28399000"}, {"text_input": "What is the hs code for GELUCIRE 44/14 (BAHAN BAKU SUPLEMEN) COA 169573", "output": "28399000"}, {"text_input": "What is the hs code for PLURESSENCE LEMON 5001 BA (BAHAN BAKU SUPLEMEN) COA 5140428", "output": "28399000"}, {"text_input": "What is the hs code for GELOIL SC (BHN BAKU SUPLEMEN) COA 169611", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE BM PELLETS (BHN BAKU SUPLEMEN) COA 18E0405", "output": "28399000"}, {"text_input": "What is the hs code for NOREPINEPHRINE BITARTRATE (BHN BAKU OBAT) COA 440104", "output": "29379010"}, {"text_input": "What is the hs code for DL. ALPHA TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT17050110", "output": "29362800"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518050123", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL HS (BHN BAKU KOSMETIK) COA 1017090017", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518050123", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL HS, 10KG BAG (BHN BAKU KOSMETIK) COA 1017090018, 19", "output": "29420000"}, {"text_input": "What is the hs code for VITAMIN MINERAL PREMIX 170299 (BHN BAKU MAKANAN) COA XW91805294, 95", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN MINERAL PREMIX 170299 (BHN BAKU MAKANAN) COA XW91805292,93", "output": "21069059"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB00318911", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB00318911", "output": "29362700"}, {"text_input": "What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-0890618", "output": "29334910"}, {"text_input": "What is the hs code for LIFE'S DHA S35-O100, 5KG ALUF (B.BAKU SUPLEMEN) COA VY00249313", "output": "29362500"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 20PCT SAF, 1KG ALUF (BHN BAKU SUPLEMEN) COA UE01803014", "output": "32030010"}, {"text_input": "What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 61026P", "output": "38249999"}, {"text_input": "What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1810187, 212, 214", "output": "29242930"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM (BHN BAKU OBAT) COA 1803381,82,88, 89", "output": "29331100"}, {"text_input": "What is the hs code for ACETYLSALICYLIC ACID (BHN BAKU OBAT) COA 18051548, 51452", "output": "29182200"}, {"text_input": "What is the hs code for NEBIVOLOL HYDROCHLORIDE(BHN BAKU OBAT) COA NH0100518", "output": "29329990"}, {"text_input": "What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA 102180404", "output": "29419000"}, {"text_input": "What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA. 8MT180357", "output": "30032000"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606129", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606200", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606201", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606126", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606128", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606127", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605929", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606137", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606130", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606140", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606141", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH604287", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605755", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY VIOLET (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606157", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606157", "output": "38249999"}, {"text_input": "What is the hs code for PIGMENT BLEND YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606123", "output": "32151900"}, {"text_input": "What is the hs code for PIGMENT BLEND YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606123", "output": "32151900"}, {"text_input": "What is the hs code for PIGMENT BLEND YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606123", "output": "32151900"}, {"text_input": "What is the hs code for ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606125", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606131", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606132", "output": "38249999"}, {"text_input": "What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606124", "output": "32151900"}, {"text_input": "What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606124", "output": "32151900"}, {"text_input": "What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606124", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605914", "output": "38249999"}, {"text_input": "What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1806041 S/D 44, 46, 216,219 S/D 222", "output": "29224900"}, {"text_input": "What is the hs code for CAROPHYLL YELLOW 10PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA UE01709534", "output": "32041900"}, {"text_input": "What is the hs code for CAROPHYLL RED 10PCT, 5KG BAG ALU (BHN BAKU OBAT UTK PAKAN TERNAK) COA UE01802573", "output": "32041900"}, {"text_input": "What is the hs code for ROVIMIX AD3 1000/200, 20KG BAG (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT18040317", "output": "29362100"}, {"text_input": "What is the hs code for ROVIMIX D3-500 (BHN BAKU OBAT UTK PAKAN TERNAK) COA UE01711038", "output": "29362900"}, {"text_input": "What is the hs code for RONOZYME (R) HIPHOS GT, 25KG BAGDK (BHN BAKU OBAT UTK PAKAN TERNAK) COA HK921274", "output": "29369000"}, {"text_input": "What is the hs code for VC CALCIUM ASCORBATE, 25KG BAL (BHN BAKU SUPLEMEN) COA HPT1805006", "output": "29362700"}, {"text_input": "What is the hs code for CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 20180604", "output": "38249999"}, {"text_input": "What is the hs code for PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) COA PH01230118", "output": "38249999"}, {"text_input": "What is the hs code for CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA. 1GC01CLB ZP48D 250MT", "output": "38249999"}, {"text_input": "What is the hs code for NYSTATIN (BHN BAKU OBAT) COA.C130790", "output": "29419000"}, {"text_input": "What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BIO5907", "output": "29349990"}, {"text_input": "What is the hs code for AMBROXOL HYDROCHLORIDE POWDER (BHN BAKU OBAT) COA AHM/18082 S/D 18084", "output": "29221990"}, {"text_input": "What is the hs code for DOCUSATE SODIUM (BHN BAKU OBAT), COA SD6060320, SAMPLE NO COMMERCIAL VALUE", "output": "29171900"}, {"text_input": "What is the hs code for DOCUSATE SODIUM (BHN BAKU OBAT) COA SD7071636, SAMPLE NO COMMERCIAL VALUE", "output": "29171900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I11005", "output": "39123900"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 20 PREMIUM... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D184HC1021", "output": "39123900"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180519", "output": "17029019"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP05518", "output": "28363000"}, {"text_input": "What is the hs code for BICAR FOOD 27/50 SODIUM BICARBONATE (B.BAKU OBAT) COA MTP15918, SAMPLE NO COMM VALUE", "output": "28363000"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO171102", "output": "38249999"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO171102", "output": "38249999"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO171102", "output": "38249999"}, {"text_input": "What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIV171001-BGBIO", "output": "38249999"}, {"text_input": "What is the hs code for POMEGRANATE OF AQORES HYDROGLYCERINED EXTRACT (BHN BAKU KOSMETIK) COA PUGA180501-GL", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO180601", "output": "38249999"}, {"text_input": "What is the hs code for PARSOL HMS ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0418020041", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P8Q09QA000", "output": "29420000"}, {"text_input": "What is the hs code for SALBUTAMOL SULPHATE BP (BHN BAKU OBAT) COA SLL/SS/0618032", "output": "29225090"}, {"text_input": "What is the hs code for SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 1801761339", "output": "29322090"}, {"text_input": "What is the hs code for CORTISONE ACETATE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1700941534", "output": "29372900"}, {"text_input": "What is the hs code for CHLOROLINE (BHN BAKU KOSMETIK) COA 769016299J", "output": "38249999"}, {"text_input": "What is the hs code for PRO LIPO TM NEO (BHN BAKU KOSMETIK) COA 1809602", "output": "38249999"}, {"text_input": "What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016098J", "output": "38249999"}, {"text_input": "What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830016073J", "output": "38249999"}, {"text_input": "What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK), COA 5497417", "output": "38249999"}, {"text_input": "What is the hs code for ABYSSINE 657 BHN BAKU KOSMETIK, COA 5541718", "output": "38249999"}, {"text_input": "What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829015924J", "output": "38249999"}, {"text_input": "What is the hs code for CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785016095J", "output": "38249999"}, {"text_input": "What is the hs code for MELANOSTATINE 5BG (50PPM) (BHN BAKU KOSMETIK) COA 817046077J", "output": "38249999"}, {"text_input": "What is the hs code for MELANOSTATINE 5BG (50PPM) (BHN BAKU KOSMETIK) COA 817046330J", "output": "38249999"}, {"text_input": "What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016246J", "output": "38249999"}, {"text_input": "What is the hs code for PROGELINE (BHN BAKU KOSMETIK) COA 820055712H", "output": "38249999"}, {"text_input": "What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016246J", "output": "38249999"}, {"text_input": "What is the hs code for TSPL-30-ID (BHN BAKU KOSMETIK) , COA 703009, SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for KF-6048 (BHN BAKU KOSMETIK) , COA 803019, SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for KF-96A-20CS (BHN BAKU KOSMETIK) COA 803801, SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP16718", "output": "28363000"}, {"text_input": "What is the hs code for CANNULA 23G PIX'L 0,6X50 (BHN BAKU OBAT) COA 018.436, 018.453", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE SKINB VITLIDO 1MLD16 (BHN BAKU OBAT) COA 15926-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE SKINB VITALLGHLIDO 1MLD16 (BHN BAKU OBAT) COA 16112-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML (BHN BAKU OBAT) COA 15912-2, 15925-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE REFYNE 1ML (BHN BAKU OBAT) COA 15842-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE DEFYNE 1ML (BHN BAKU OBAT) COA 15856-1, 16013-1", "output": "90189090"}, {"text_input": "What is the hs code for SK BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK)COA PSFAC-012568", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK) COA CPG-421968", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-021168", "output": "38249999"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA RBA1731800", "output": "28363000"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605790", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606222", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606154", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606214", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606215", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606216", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606227", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY 200 PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606219", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606217", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606236", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606210", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606213", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606233", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606209", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606234", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606235", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605871", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606228", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605929", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606223", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606226", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606225", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606221", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606210", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606208", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606218", "output": "38249999"}, {"text_input": "What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA Q900400", "output": "29419000"}, {"text_input": "What is the hs code for CEFOPERASONE SODIUM STERILE (BHN BAKU OBAT) COA R900400", "output": "29419000"}, {"text_input": "What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.18100462", "output": "29391900"}, {"text_input": "What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.18100462", "output": "29391900"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE PURIMOX COMPACTED GRADE A(BHN BAKU OBAT) COA M530079,94", "output": "29411019"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE PURIMOX POWDER (BHN BAKU OBAT) COA M483755", "output": "29411019"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT )COA.ASG/06/050618, ...060618", "output": "29420000"}, {"text_input": "What is the hs code for PURIDROX TM COMPACTED, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B340002,4,5,7", "output": "29419000"}, {"text_input": "What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA. 20180612", "output": "11081200"}, {"text_input": "What is the hs code for SODIUM SALICYLATE (BHN BAKU KOSMETIK)COA 201702009", "output": "38249999"}, {"text_input": "What is the hs code for KETOPROFEN SALE DI LISINA (BHN BAKU OBAT) COA 187667", "output": "29183000"}, {"text_input": "What is the hs code for HU CD195 APC 2D7/CCR5 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7286766", "output": "38210010"}, {"text_input": "What is the hs code for HU CD184 PE 12G5 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8086757", "output": "38210010"}, {"text_input": "What is the hs code for HU CD11C BV421 B-LY6 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7125636", "output": "38210010"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180603", "output": "17029019"}, {"text_input": "What is the hs code for OXYTETRACYCLINE DIHYDRATE (BHN BAKU OBAT UTK PAKAN TERNAK) COA ZT1800428,536", "output": "29413000"}, {"text_input": "What is the hs code for IRBESARTAN (BHN BAKU OBAT) COA C5465-17-051 S/D 53", "output": "29332900"}, {"text_input": "What is the hs code for MICONAZOLE NITRATE (BHN BAKU OBAT) COA H20180601", "output": "29332900"}, {"text_input": "What is the hs code for LINCOMYCIN HCL EP (BHN BAKU OBAT) COA 1805023", "output": "29419000"}, {"text_input": "What is the hs code for METHYL SULFONYL METHANE USP (BHN BAKU OBAT) COA 20180602", "output": "29309090"}, {"text_input": "What is the hs code for METHYL SULFONYL METHANE USP (BHN BAKU OBAT) COA 20180608", "output": "29309090"}, {"text_input": "What is the hs code for TETRACYCLINE HYDROCHLORIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 180604-61, 62", "output": "29413000"}, {"text_input": "What is the hs code for CROSPOVIDONE XL-10 (BHN BAKU OBAT) COA PP180507XL-10", "output": "39059990"}, {"text_input": "What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT676237", "output": "32151900"}, {"text_input": "What is the hs code for OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT676238", "output": "32151900"}, {"text_input": "What is the hs code for OPASPRAY BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT676239", "output": "32151900"}, {"text_input": "What is the hs code for OPASPRAY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT676240", "output": "32151900"}, {"text_input": "What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT674313", "output": "32151900"}, {"text_input": "What is the hs code for OPAGLOS YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT676241", "output": "32151900"}, {"text_input": "What is the hs code for OPATINT RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT675418", "output": "32151900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT18010783", "output": "29362100"}, {"text_input": "What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91805438,5439", "output": "29420000"}, {"text_input": "What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000173224,172349,173095", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL 1789, 20 KG BOX (BHN BAKU KOSMETIK) COA 0318040613,614,615", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA MCS1605181", "output": "29420000"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01803026", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL1803026", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01803026", "output": "29362400"}, {"text_input": "What is the hs code for KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0281017", "output": "29339990"}, {"text_input": "What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0023236", "output": "38249999"}, {"text_input": "What is the hs code for LOTUS NELUMBIUM NEL.FLOWER (BHN BAKU KOSMETIK) COA AM070124", "output": "13021950"}, {"text_input": "What is the hs code for RALTEGRAVIR POTASSIUM (BHN BAKU OBAT) COA RLTE/A302/8D/37", "output": "29061300"}, {"text_input": "What is the hs code for CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 201806T-CCH", "output": "38249999"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702646305", "output": "29372900"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1711150,1801005", "output": "29362300"}, {"text_input": "What is the hs code for OLIO VINACCIOLI RAFFINATO (BHN BAKU KOSMETIK) COA.B1800069", "output": "15152919"}, {"text_input": "What is the hs code for MILD TALCUM MOD1 (BHN BAKU KOSMETIK) COA 10300129", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO180602", "output": "38249999"}, {"text_input": "What is the hs code for WHITE WILLOW BARK 50PCT BHN BAKU KOSMETIK, COA 20161014-610", "output": "13021950"}, {"text_input": "What is the hs code for CLOTRIMAZOLE MICRONIZED (BHN BAKU OBAT ) COA 201712140177", "output": "29332900"}, {"text_input": "What is the hs code for MOXIFLOXACIN HYDROCHLORIDE(BHN BAKU OBAT) COA MP0060517", "output": "29334990"}, {"text_input": "What is the hs code for MOXIFLOXACIN HYDROCHLORIDE (BHN BAKU OBAT) COA MP0060618", "output": "29334990"}, {"text_input": "What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 201800193", "output": "28183000"}, {"text_input": "What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110004", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN B12 1PCT SD (BHN BAKU SUPLEMEN) COA UT18050006", "output": "29362600"}, {"text_input": "What is the hs code for COATED ASCORBIC ACID, TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01804552", "output": "29362700"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18030018", "output": "32030010"}, {"text_input": "What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17110018", "output": "29420000"}, {"text_input": "What is the hs code for VITAMIN A AND D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18020037", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A AND D3 WATER MISCIBLE 100 (BHN BAKU SUPLEMEN) COA UT17110053", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00218192", "output": "29362800"}, {"text_input": "What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110004", "output": "32041900"}, {"text_input": "What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF... (BHN BAKU SUPLEMEN) COA UE01803014", "output": "32030010"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180621", "output": "17029019"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607096", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607095", "output": "38249999"}, {"text_input": "What is the hs code for LIQUORICE LC (BHN BAKU KOSMETIK) COA.110657/P78475-P78478", "output": "13021920"}, {"text_input": "What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) , COA 806966", "output": "38249999"}, {"text_input": "What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 18061806", "output": "38249999"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00318213", "output": "29362100"}, {"text_input": "What is the hs code for P.GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 32446/M1", "output": "13021990"}, {"text_input": "What is the hs code for MIRTOGENOL (R) (BHN BAKU SUPLEMEN) COA 80376/M", "output": "38249999"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP18063563, XP18063564", "output": "29211900"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP18063346, XP18063347", "output": "29211900"}, {"text_input": "What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND170703", "output": "29372200"}, {"text_input": "What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA.18100482", "output": "29395900"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518060151", "output": "29420000"}, {"text_input": "What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 270518", "output": "25070000"}, {"text_input": "What is the hs code for MAX11013 (BHN BAKU MAKANAN) COA XW91806255", "output": "21069059"}, {"text_input": "What is the hs code for LIGHT LIQUID PARAFFIN BP (SAVONOL 16) BAHAN BAKU KOSMETIK, COA.LDC 18218T", "output": "27101990"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP17618", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA MTP18218", "output": "28363000"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518060151", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518060151", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518060151", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518060151", "output": "29420000"}, {"text_input": "What is the hs code for IONOL CP (BHN BAKU KOSMETIK) COA 01117118", "output": "29420000"}, {"text_input": "What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA WP780946", "output": "32151900"}, {"text_input": "What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP787039", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C RED #40 ALLURA RED AC AL...(BHN BAKU OBAT UTK PEWARNA TABLET) COA WP794082", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607210", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607160", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607123", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607159", "output": "38249999"}, {"text_input": "What is the hs code for SOLUTION DECONTAMINATION CONCENTRATE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 18D2556778", "output": "38210010"}, {"text_input": "What is the hs code for KIT C6 FLOW CYTO STARTER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)", "output": "38210010"}, {"text_input": "What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8108705", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7341765", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8128688", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PEPSIN 1 TO 10000 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242856", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8023610", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7262700", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8053834", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242852", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8129687", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8015615", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE 500G...(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8031768,8066789", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7291775", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7349833", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7157987", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7262700", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8053804", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8068984", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8058565", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7095842", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8053834", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242852", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8012609", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8129687", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079535", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7278689", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7018890", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7060815", "output": "38210010"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8094796", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CASITONE 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8164638", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8066869", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8023900", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8029645", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8064638", "output": "38210010"}, {"text_input": "What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8074670,811375", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8059906", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8054962", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8032581", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8066869", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8129687", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8079535", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8079887,...", "output": "38210010"}, {"text_input": "What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8087945", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POLYPEPTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8155588", "output": "38210010"}, {"text_input": "What is the hs code for BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8086753", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA LC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8128683", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8079887", "output": "38210010"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8094796", "output": "38210010"}, {"text_input": "What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8101836", "output": "38210010"}, {"text_input": "What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8031738", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8128684", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7157987", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8079881", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7332690", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7297698", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA LC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8128683", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE COOKED MEAT MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6123884", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7103675", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7095842", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8066789", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 7278689", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8053834", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8012999", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE STANDARD METHODS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8057835", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7102731", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE M TGE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8037685", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D-MANNOSE 25G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7135976", "output": "38210010"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7338913", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8128800", "output": "38210010"}, {"text_input": "What is the hs code for VIAL TINSDALE ENRICHMENT 6X15ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8131963", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8092819", "output": "38210010"}, {"text_input": "What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP Y 1ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6162764", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7354884", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7356665", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7153980", "output": "38210010"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8124811", "output": "38210010"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7338913", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8101875,8120718,..", "output": "38210010"}, {"text_input": "What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8121789", "output": "38210010"}, {"text_input": "What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8145547", "output": "38210010"}, {"text_input": "What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8094872", "output": "38210010"}, {"text_input": "What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8109595", "output": "38210010"}, {"text_input": "What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8094883", "output": "38210010"}, {"text_input": "What is the hs code for CD10 FITC HI10A 5 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8134604", "output": "38210010"}, {"text_input": "What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8057807", "output": "38210010"}, {"text_input": "What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8046521", "output": "38210010"}, {"text_input": "What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8033517", "output": "38210010"}, {"text_input": "What is the hs code for ANTI HLA-DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8015843,...", "output": "38210010"}, {"text_input": "What is the hs code for CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8122889", "output": "38210010"}, {"text_input": "What is the hs code for HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8081908", "output": "38210010"}, {"text_input": "What is the hs code for ANTI-MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8078589", "output": "38210010"}, {"text_input": "What is the hs code for CD4 V4 FITC L120 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7108877", "output": "38210010"}, {"text_input": "What is the hs code for CD56 APC NCAM16.2 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8072654", "output": "38210010"}, {"text_input": "What is the hs code for CD10 PE-CY7 HI10A 100TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8142706", "output": "38210010"}, {"text_input": "What is the hs code for HU CD10 BV421 HI10A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8109662", "output": "38210010"}, {"text_input": "What is the hs code for HU CD138 BV421 MI15 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7341707", "output": "38210010"}, {"text_input": "What is the hs code for CD20 V500-C RUO (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8150884", "output": "38210010"}, {"text_input": "What is the hs code for CD200 APC (MRC OX-104) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8092811", "output": "38210010"}, {"text_input": "What is the hs code for FASTIMMUNE CD56/CD69/CD45 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8072998", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8046743, 8134776", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8032932", "output": "38210010"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6309655", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8092819", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 7220822", "output": "38210010"}, {"text_input": "What is the hs code for VIAL PENICILLINASE 10000000 KU/ML 1 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6306981", "output": "38210010"}, {"text_input": "What is the hs code for VIAL ISOVITALEX ENRICHMENT 10ML 5 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7275653,...", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8054920", "output": "38210010"}, {"text_input": "What is the hs code for MTOR (PS2448) PE O21-404 507ST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8116629", "output": "38210010"}, {"text_input": "What is the hs code for AKT (PS473) PE M89-61 250TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7208554..", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TRYPTICASE SOY AGAR 5PCT SB 20 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8137910", "output": "38210010"}, {"text_input": "What is the hs code for LEVAMISOLE (BHN BAKU OBAT UTK PAKAN TERNAK) COA H180309-1,308-1, 308-2, 307-1,301-2", "output": "29349990"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1702646305", "output": "29372900"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101852218", "output": "17021100"}, {"text_input": "What is the hs code for ACRYLPOL 980 BAHAN BAKU KOSMETIK) COA 11518015", "output": "39069099"}, {"text_input": "What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU SUPLEMEN) COA 165210", "output": "28399000"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 01/17GAAK", "output": "28399000"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 01/17GAAK, SAMPLE NO COMMERCIAL VALUE", "output": "28399000"}, {"text_input": "What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 165210", "output": "28399000"}, {"text_input": "What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016246J", "output": "38249999"}, {"text_input": "What is the hs code for TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784026310J", "output": "38249999"}, {"text_input": "What is the hs code for LEVOFLOXACIN HEMIHYDRATE USP (BHN BAKU OBAT) COA LF17080046", "output": "29349990"}, {"text_input": "What is the hs code for PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PI18030004", "output": "29349920"}, {"text_input": "What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 201800256,195", "output": "28183000"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA MS/70120", "output": "39123900"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA MS/2460", "output": "39123900"}, {"text_input": "What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA. 20180612", "output": "11081200"}, {"text_input": "What is the hs code for ECODIAR POWDER (HERACLEOTICUM) (BHN BAKU OBAT UTK PAKAN TERNAK) COA. P0118072018", "output": "33029000"}, {"text_input": "What is the hs code for GINKGO EXTRACT (BHN BAKU OBAT) COA 81661611", "output": "13021950"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00218192", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB01017666", "output": "29362800"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18030018", "output": "32030010"}, {"text_input": "What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17110018", "output": "29420000"}, {"text_input": "What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT17110053", "output": "29362100"}, {"text_input": "What is the hs code for COATED ASCORBIC ACID TYPE EC,25KG BOX (BHN BAKU SUPLEMEN) COA TL01805648", "output": "29362700"}, {"text_input": "What is the hs code for REDIVIVO (R) LYCOPENE 10PCT FS, 5KG ALU (BHN BAKU SUPLEMEN) COA UE01805001", "output": "29420000"}, {"text_input": "What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000173096, 175262", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL 340KG, 25KG PC (BHN BAKU KOSMETIK) COA 0218060107", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218060107", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218060107", "output": "29420000"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT18020788,789", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT17120040,41", "output": "29362600"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ80106025", "output": "29362700"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80402166", "output": "29362200"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ80310073", "output": "29362300"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18050008", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325CWS/A (BHN BAKU MAKANAN) COA UT18040004", "output": "29362100"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11803008", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT17110096,UT18050003", "output": "29362800"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01802031", "output": "29362700"}, {"text_input": "What is the hs code for CALCIUM ASCORBATE (BHN BAKU SUPLEMEN) COA WB00418077", "output": "29362700"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80310073", "output": "29362300"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01801750,1758", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01801758", "output": "29362700"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18040126", "output": "29362400"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01801758", "output": "29362700"}, {"text_input": "What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91805291", "output": "21069059"}, {"text_input": "What is the hs code for PX 204005 (BHN BAKU MAKANAN) COA XW91806254", "output": "21069059"}, {"text_input": "What is the hs code for PX 204005 (BHN BAKU MAKANAN) COA XW91806254", "output": "21069059"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT18010010,15,17", "output": "29362800"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01801750", "output": "29362700"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE ( BHN BAKU MAKANAN), COA UQ71103361", "output": "29362200"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT18010072", "output": "29362900"}, {"text_input": "What is the hs code for B2 UNIVERSAL FINE POWDER 5KG BAG ALU (BHN BAKU MAKANAN) COA UQ80110011", "output": "29362300"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01801014,16", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO)BHN BAKU SUPLEMEN, COA UT18010783", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17110063,64", "output": "32041900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17120036", "output": "29362900"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ71103361", "output": "29362200"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT18010072", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01802002", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01705019", "output": "29362900"}, {"text_input": "What is the hs code for ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU SUPLEMEN), COA TL01801750", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI17100009", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU (TOCO) (BHN BAKU SUPLEMEN) COA UT18020169", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01801016", "output": "32041900"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00817039", "output": "29362200"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT17080253", "output": "29362400"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT17080253", "output": "29362400"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT18010003", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT18010783", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT17120041", "output": "29362600"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ80106025", "output": "29362700"}, {"text_input": "What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01801008", "output": "29362400"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN), COA WB00917090", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00517027", "output": "29362300"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00517027", "output": "29362300"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT17120036", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01802002", "output": "29362900"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL ACETATE(BHN BAKU SUPLEMEN) COA XH20170401", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18050003,15", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18050003", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S0 (BHN BAKU MAKANAN) COA UT18050003", "output": "29362800"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01802620,21,34,35", "output": "29362400"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01802620", "output": "29362400"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU MAKANAN) COA TL01802620", "output": "29362400"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11803008", "output": "29362900"}, {"text_input": "What is the hs code for D-PANTHENOL ,20KG PAIL PE(BHN BAKU SUPLEMEN) COA TL01801008", "output": "29362400"}, {"text_input": "What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BI06306", "output": "29349990"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101851918A533", "output": "17021100"}, {"text_input": "What is the hs code for FLOWLAC (R) 100 (BHN BAKU OBAT) COA L101501718A537", "output": "17021100"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK,COA 01/18GL4", "output": "28399000"}, {"text_input": "What is the hs code for ROSUVASTATIN CALCIUM (BHN BAKU OBAT) COA RVM1230518", "output": "29359000"}, {"text_input": "What is the hs code for ESOMEPRAZOLE MUPS 22.5PCT (BHN BAKU OBAT) COA EO1818C001", "output": "29333990"}, {"text_input": "What is the hs code for AMITOSE R (BHN BAKU KOSMETIK) COA KFG", "output": "38249999"}, {"text_input": "What is the hs code for SILASOMA MFA (S) (BHN BAKU KOSMETIK) COA KEF", "output": "38249999"}, {"text_input": "What is the hs code for VEGETAMIDE 18MEA-NJ (BHN BAKU KOSMETIK) COA KCA", "output": "38249999"}, {"text_input": "What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA KEK", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA KDG", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA KFM", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS EFLS (BHN BAKU KOSMETIK) COA KGN", "output": "38249999"}, {"text_input": "What is the hs code for DPG FG (BHN BAKU KOSMETIK) COA B01791DG", "output": "29094900"}, {"text_input": "What is the hs code for PG USP (BHN BAKU KOSMETIK) COA B01791UP", "output": "29053200"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18050011", "output": "29362100"}, {"text_input": "What is the hs code for ORLISTAT 50PCT WW PELLETS (BHN BAKU OBAT) COA OR/SF/0430718", "output": "29061300"}, {"text_input": "What is the hs code for PHASEOLUS VULGARIS DRY EXTRACT (BHN BAKU SUPLEMEN) COA 32599/M1", "output": "13021950"}, {"text_input": "What is the hs code for NYSTATIN POWDER (BHN BAKU OBAT) COA.C114209", "output": "29419000"}, {"text_input": "What is the hs code for NYSTATIN MICRONIZED (BHN BAKU OBAT) COA C130837", "output": "29419000"}, {"text_input": "What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN1400917", "output": "29221990"}, {"text_input": "What is the hs code for IZAYOI (BHN BAKU KOSMETIK), COA 180786", "output": "13021950"}, {"text_input": "What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 180807", "output": "29329990"}, {"text_input": "What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 180854", "output": "13021950"}, {"text_input": "What is the hs code for SILYBIN/ PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10837/M1", "output": "38249999"}, {"text_input": "What is the hs code for SILYMARIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10462/M1", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND MULBERRY EXTRACT (BHN BAKU KOSMETIK)COA MUB-010448", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-082148", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SNAIL SECREATION FILTRATE (BHN BAKU KOSMETIK)COA SAFW-020638", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-021168", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-041458, SFP-N-051868", "output": "38249999"}, {"text_input": "What is the hs code for CEFTRIAXONE SODIUM STERILE (BHN BAKU OBAT) COA 3051806020", "output": "29419000"}, {"text_input": "What is the hs code for CEFOTAXIME SODIUM STERILE (BHN BAKU OBAT) COA 3041806048", "output": "29419000"}, {"text_input": "What is the hs code for COMPLEX BROWN HAIR (BHN BAKU KOSMETIK)COA JURF180701", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX FAIR HAIR (BHN BAKU KOSMETIK)COA MAC180701", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX HAIR LUSTRE - KARKADE (BHN BAKU KOSMETIK)COA HSK180101", "output": "38249999"}, {"text_input": "What is the hs code for HORSECHESTNUT PHYTELENE EG 042 (BHN BAKU KOSMETIK)COA EG042-180601", "output": "38249999"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA180704", "output": "38249999"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA180704", "output": "38249999"}, {"text_input": "What is the hs code for HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIE170702", "output": "38249999"}, {"text_input": "What is the hs code for ROSA DAMASCENA ORGANIC DISTILLATE 1:20 (BHN BAKU KOSMETIK) COA ROSD180704-BIO", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-180702", "output": "38249999"}, {"text_input": "What is the hs code for INCA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK) COA II180608-AI-D-BIO", "output": "38249999"}, {"text_input": "What is the hs code for SAFFLOWER REFINED OIL (BHN BAKU KOSMETIK) COA CARHR180701-DW", "output": "38249999"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO180703", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-180605", "output": "38249999"}, {"text_input": "What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA EG543-180605", "output": "38249999"}, {"text_input": "What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-180602-GS", "output": "38249999"}, {"text_input": "What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-180602-GS", "output": "38249999"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180040 S/D 45", "output": "29420000"}, {"text_input": "What is the hs code for ETHYL PANTHENOL ,20KG PAIL PE(BHN BAKU KOSMETIK) COA TL01710818", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0718030056", "output": "29420000"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01705019", "output": "29362900"}, {"text_input": "What is the hs code for STAY-C (R) 50,5KG BAG ALU EX US (BHN BAKU KOSMETIK) COA UT17070104", "output": "29362700"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01705019", "output": "29362900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18050096", "output": "29362800"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01705019", "output": "29362900"}, {"text_input": "What is the hs code for STAY-C (R) 50, 20KG BOX NA (BHN BAKU KOSMETIK) COA UT17090162,17120220,18010226", "output": "29362700"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318040620,623,624", "output": "29420000"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01803635", "output": "29362400"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01803635", "output": "29362400"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01803635", "output": "29362400"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU MAKANAN) COA TL01803635", "output": "29362400"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17110064", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI17100009", "output": "29362900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ71213302", "output": "29362500"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607481", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607489", "output": "38249999"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180703", "output": "17029019"}, {"text_input": "What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA.121808875", "output": "29054300"}, {"text_input": "What is the hs code for DOCUSATE SODIUM (BHN BAKU OBAT), COA SD8022810", "output": "29171900"}, {"text_input": "What is the hs code for DOCUSATE SODIUM (BHN BAKU OBAT), COA SD8022810", "output": "29171900"}, {"text_input": "What is the hs code for MEFENAMIC ACID COMPACTED (BHN BAKU OBAT) COA MFAC-1805050-A", "output": "29224900"}, {"text_input": "What is the hs code for CITICOLINE SODIUM (BHN BAKU OBAT) COA 180412", "output": "29349990"}, {"text_input": "What is the hs code for MEROPENEM TRIHYDRATE WITH SODIUM CARBONATE STERILE (BHN BAKU OBAT)COA S0820180414", "output": "30032000"}, {"text_input": "What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P8Q28PA000, 29PA000,30PA000", "output": "29420000"}, {"text_input": "What is the hs code for D-PANTHENOL 75L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01805326", "output": "29362400"}, {"text_input": "What is the hs code for MILD TALCUM MOD1 (BHN BAKU KOSMETIK) COA 10300133", "output": "38249999"}, {"text_input": "What is the hs code for ANTISHINE WASH (BHN BAKU KOSMETIK) COA 10300002", "output": "38249999"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121808870", "output": "28363000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 121808672, 8676, 8862, 8869", "output": "28363000"}, {"text_input": "What is the hs code for DOBUTAMINE HCL (BHN BAKU OBAT), COA 18100465", "output": "29222900"}, {"text_input": "What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA.18100482, 525", "output": "29395900"}, {"text_input": "What is the hs code for LANSOPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA LPC18035", "output": "29333990"}, {"text_input": "What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA R700500", "output": "29419000"}, {"text_input": "What is the hs code for ECODIAR POWDER (HERACLEOTICUM)B. BAKU UTK OBAT UTK PAKAN TERNAK, COA OIL O611", "output": "33029000"}, {"text_input": "What is the hs code for METHOCEL E4M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180FB8021", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011HC2L02", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E4M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180H5P032", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180HCP002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180HBQ001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180HBK003", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100 PREMIUM LVCR ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180H71022", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100 PREMIUM LVCR ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I1J021", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100 PREMIUM LVCR ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180F3M022", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100 PREMIUM LVCR ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180H88021", "output": "39123900"}, {"text_input": "What is the hs code for NEOMYCIN SULPHATE USP (BHN BAKU OBAT) COA 201806030", "output": "29419000"}, {"text_input": "What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-180604", "output": "29397900"}, {"text_input": "What is the hs code for IMWITOR (R) GMIS (BAHAN BAKU KOSMETIK) COA 807023", "output": "38249999"}, {"text_input": "What is the hs code for ETHOCEL STANDARS 14 PREMIUM (BHN BAKU OBAT UTK PEWARNA TABLET) COA D184I39021", "output": "39123900"}, {"text_input": "What is the hs code for PERMETHRIN (PHARMA GRADE) BHN BAKU OBAT COA 184046001", "output": "29163990"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM (BHN BAKU OBAT) COA 1803392", "output": "29331900"}, {"text_input": "What is the hs code for THEOPHYLLINE ANHYDROUS (B. BAKU OBAT) COA 18039 S/D 41, 18115 S/D 118", "output": "29395900"}, {"text_input": "What is the hs code for CLONIDINE HCL (BHN BAKU OBAT) COA 180839", "output": "29332900"}, {"text_input": "What is the hs code for CHOLINE L-BITARTRATE (BAHAN BAKU OBAT) COA.3015183", "output": "29231000"}, {"text_input": "What is the hs code for ERYTHROSINE AL 38PCT- 42PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP798863:1", "output": "32151900"}, {"text_input": "What is the hs code for FDANDC BLUE #2/INDIGO CARMINE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP795448", "output": "32151900"}, {"text_input": "What is the hs code for FDANDC BLUE #2/INDIGO CARMINE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP795444", "output": "32151900"}, {"text_input": "What is the hs code for DANDC YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP788730", "output": "32151900"}, {"text_input": "What is the hs code for COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-1711133", "output": "38249999"}, {"text_input": "What is the hs code for MAGNOLIA BARK EXTRACT (BHN BAKU KOSMETIK) COA MBE05-180601", "output": "38249999"}, {"text_input": "What is the hs code for MAGNOLIA BARK EXTRACT (BHN BAKU KOSMETIK) COA MBE05-180301", "output": "38249999"}, {"text_input": "What is the hs code for 87-28-5 SALICYLIC ACID ETHYLENE GLYCOL ESTER/GLYCOL SALICYLATE (B.BAKU KOSMETIK)COA.DE180722", "output": "38249999"}, {"text_input": "What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5541718", "output": "38249999"}, {"text_input": "What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829015924J", "output": "38249999"}, {"text_input": "What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829015924J", "output": "38249999"}, {"text_input": "What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830016094J", "output": "38249999"}, {"text_input": "What is the hs code for CAPIXYL (BHN BAKU KOSMETIK), COA 830016074J", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785016298J", "output": "38249999"}, {"text_input": "What is the hs code for EXO-T (BHN BAKU KOSMETIK) COA 715016096J", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1803403", "output": "38249999"}, {"text_input": "What is the hs code for MINIPORYL (BHN BAKU KOSMETIK) COA 832016173J", "output": "38249999"}, {"text_input": "What is the hs code for PRO-LIPO TN NEO (BHN BAKU KOSMETIK) COA 1809401", "output": "38249999"}, {"text_input": "What is the hs code for SWT-7TM L (BHN BAKU KOSMETIK) COA 1807903", "output": "38249999"}, {"text_input": "What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015909H", "output": "38249999"}, {"text_input": "What is the hs code for LANABLUE (BHN BAKU KOSMETIK) COA 5533018", "output": "38249999"}, {"text_input": "What is the hs code for LANACHRYS 2B PF (PRESERVATIVE)BHN BAKU KOSMETIK, COA 5523017", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1803403", "output": "38249999"}, {"text_input": "What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015528H", "output": "38249999"}, {"text_input": "What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 270518", "output": "25070000"}, {"text_input": "What is the hs code for CITRIC ACID MONOHYDRATE BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 1AX1806043", "output": "29181400"}, {"text_input": "What is the hs code for CORN STARCH (BHN BAKU OBAT) COA 20180720", "output": "11081200"}, {"text_input": "What is the hs code for PREMIX MY200318-SD (BHN BAKU MAKANAN) COA E180000577, SAMPLE NO COMMERCIAL VALUE", "output": "21069059"}, {"text_input": "What is the hs code for RESTYLANE SUBQ 2 ML D16 (BHN BAKU OBAT) COA 15351-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE SKINB VITLIDO 1MLD16 (BHN BAKU OBAT) COA 16037-2", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE SKINB VITALLGHLIDO 1MLD16 (BHN BAKU OBAT) COA 16112-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE SKINB VITALLGHLIDO 1MLD16 (BHN BAKU OBAT) COA 16191-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE VOLYME 1ML (BHN BAKU OBAT) COA 16046-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE DEFYNE 1ML (BHN BAKU OBAT) COA 16013-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE KYSSE 1ML (BHN BAKU OBAT) COA 15887-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE KYSSE 1 ML (BHN BAKU OBAT) COA 15900-1", "output": "90189090"}, {"text_input": "What is the hs code for CALCIUM CARBONATE (BHN BAKU OBAT) COA 22.12.2017/25/120", "output": "25090000"}, {"text_input": "What is the hs code for OPADRY ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA642118", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA641951", "output": "38249999"}, {"text_input": "What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 18051103", "output": "38029090"}, {"text_input": "What is the hs code for IMERCARE 04K (BHN BAKU KOSMETIK) COA 18051103", "output": "38029090"}, {"text_input": "What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ80407002", "output": "29420000"}, {"text_input": "What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT18010008", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18060038", "output": "29362100"}, {"text_input": "What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT18010008", "output": "29362500"}, {"text_input": "What is the hs code for CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 20180712", "output": "38249999"}, {"text_input": "What is the hs code for IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S281/8", "output": "38029090"}, {"text_input": "What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 18042501, 18041301", "output": "38029090"}, {"text_input": "What is the hs code for THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000013171", "output": "33029000"}, {"text_input": "What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA.0000013179", "output": "33029000"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607175", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607179", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607194", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607169", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606993", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606459", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607174", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607180", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607565", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY 200 GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607179", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607172", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607173", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607732", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607182", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605718", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607181", "output": "39061090"}, {"text_input": "What is the hs code for VALERIAN D.H.E.0.8PCT VAL .AC (BAHAN BAKU SUPLEMEN) COA 10784/M1", "output": "13021950"}, {"text_input": "What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B334570", "output": "29419000"}, {"text_input": "What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1851079, 1810699", "output": "29242930"}, {"text_input": "What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1810639, 1810856,1851099", "output": "29242930"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA.M113093", "output": "29339990"}, {"text_input": "What is the hs code for AMIKACIN SULFATE (BHN BAKU OBAT) COA 8F0011H20, ...12H20,...13H20", "output": "29419000"}, {"text_input": "What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK)COA MUP-0121168", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-051868, 060678", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK)COA 062818", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND CUCUMBER EXTRACT (BHN BAKU KOSMETIK) COA CUPD-022648", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-010858", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-062378", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK)COA CPG-472678", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-020538", "output": "38249999"}, {"text_input": "What is the hs code for THIOGLYCOLIC ACID 99PCT COSMETIC GRADE (BHN BAKU KOSMETIK) COA.0000063992", "output": "29309090"}, {"text_input": "What is the hs code for AMMONIUM THIOGLYCOLATE 71PCT(60PCT TGA) BHN BAKU KOSMETIK, COA.0000063993", "output": "29309090"}, {"text_input": "What is the hs code for MONOETHANOLAMINE THIOGLYCOLATE 83PCT (50PCT TGA) BHN BAKU KOSMETIK, COA 0000063994", "output": "29221100"}, {"text_input": "What is the hs code for AMMONIUM THIOGLYCOLATE 71PCT (60PCT TGA) B.BAKU KOSMETIK,COA 0000064010, SAMPLE NO COMM VALUE", "output": "29309090"}, {"text_input": "What is the hs code for DIAMMONIUM DITHIODIGLYCOLATE 48PCT... (B. BAKU KOSMETIK), COA 0000064012,SAMPLE NO COMM VALUE", "output": "29309090"}, {"text_input": "What is the hs code for MONOETHANOLAMINE THIOGLYCOLATE 83PCT ...(B. BAKU KOSMETIK), COA 0000064013,SAMPLE NO COMM VALUE", "output": "29221100"}, {"text_input": "What is the hs code for POTASSIUM THIOGLYCOLATE 43PCT (30PCT TGA)B. BAKU KOSMETIK, COA 0000064037,SAMPLE NO COMM VALUE", "output": "29309090"}, {"text_input": "What is the hs code for THIOGLYCOLIC ACID 99PCT PURE, B BAKU KOSMETIK, COA 0000064039, SAMPLE NO COMM VALUE", "output": "29309090"}, {"text_input": "What is the hs code for THIOGLYCOLIC ACID 80PCT, COSMETIC GRADE (BHN BAKU KOSMETIK) COA 64040,SAMPLE NO COMM VALUE", "output": "29309090"}, {"text_input": "What is the hs code for KAHLWAX 2956 (BHN BAKU KOSMETIK) COA F1827017-001, F1827018-002", "output": "15211000"}, {"text_input": "What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607800", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607792", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GRAY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607799", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607791", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607810", "output": "38249999"}, {"text_input": "What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000175263,64", "output": "29362900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ70813199", "output": "29362500"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01803026", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218060107", "output": "29420000"}, {"text_input": "What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91807108", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218060107", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518060153", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL EHS ,25KG PC (BHN BAKU KOSMETIK) COA 0718030056", "output": "29420000"}, {"text_input": "What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES1702026", "output": "29420000"}, {"text_input": "What is the hs code for STAY-C (R) 50, 5KG BAG ALU EX US (BHN BAKU KOSMETIK) COA UT17070104", "output": "29362700"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01803026,38,39", "output": "29362400"}, {"text_input": "What is the hs code for FENOFIBRATE MICRONIZED (BHN BAKU OBAT) COA W-F03-20180511-01", "output": "29189900"}, {"text_input": "What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607581", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607576", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607593", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607594", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607575", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607583", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607578", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607577", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607580", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607182", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606459", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607588", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607579", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607585", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607570", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607586", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607751", "output": "38249999"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT )COA RBA1731800", "output": "28363000"}, {"text_input": "What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-1360818", "output": "29334910"}, {"text_input": "What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC 005-8-801, LC 011-8-801", "output": "17021100"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101852418", "output": "17021100"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101852418", "output": "17021100"}, {"text_input": "What is the hs code for CEFOTAXIME SODIUM EP (BHN BAKU OBAT) COA Q900500", "output": "29419000"}, {"text_input": "What is the hs code for NEOMYCIN SULPHATE USP (BHN BAKU OBAT) COA 201808002", "output": "29419000"}, {"text_input": "What is the hs code for OPTIVEGETOL GUARANA P107 HYDRO (BHN BAKU KOSMETIK) COA 168482", "output": "28399000"}, {"text_input": "What is the hs code for GELOT 64 (BHN BAKU SUPLEMEN) COA 170277", "output": "28399000"}, {"text_input": "What is the hs code for TEFOSE 63 (BHN BAKU SUPLEMEN) COA 169919", "output": "28399000"}, {"text_input": "What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 101869003,5", "output": "28161000"}, {"text_input": "What is the hs code for CALCIUM GLUCONATE EP (BHN BAKU OBAT) COA CGA-EP1807080", "output": "29181600"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8068881", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8101679", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7356665", "output": "38210010"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8005940,81596", "output": "38210010"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8068881", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8130543,8143530", "output": "38210010"}, {"text_input": "What is the hs code for TUBE HEYA W/ANV AND MYCOBACTIN J 10EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8131957", "output": "38210010"}, {"text_input": "What is the hs code for VIAL ANTIMICROBIC K 6X10ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8142921", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7153980", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8143530", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7362985,...", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8134776", "output": "38210010"}, {"text_input": "What is the hs code for FASTIMMUNE CD56/CD69/CD45 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8191869", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL SNSEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8123664", "output": "38210010"}, {"text_input": "What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT 10X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8151581", "output": "38210010"}, {"text_input": "What is the hs code for VIAL E COLI ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7321876", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8123664", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7332595", "output": "38210010"}, {"text_input": "What is the hs code for VIAL E COLI H ANTISERUM H7 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6323840", "output": "38210010"}, {"text_input": "What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8121789", "output": "38210010"}, {"text_input": "What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8094872", "output": "38210010"}, {"text_input": "What is the hs code for FASTIMMUNEHU IFN-GMA FITC 25723.11 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8163563", "output": "38210010"}, {"text_input": "What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8109595", "output": "38210010"}, {"text_input": "What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8094883", "output": "38210010"}, {"text_input": "What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8075807", "output": "38210010"}, {"text_input": "What is the hs code for CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8046521", "output": "38210010"}, {"text_input": "What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8156919", "output": "38210010"}, {"text_input": "What is the hs code for ANTI-HLA-DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8192942", "output": "38210010"}, {"text_input": "What is the hs code for CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8122889", "output": "38210010"}, {"text_input": "What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8135805", "output": "38210010"}, {"text_input": "What is the hs code for CD34 PE 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8103659", "output": "38210010"}, {"text_input": "What is the hs code for CYTOFIX/CYTOPERM W/GOLGIPLUG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8144860", "output": "38210010"}, {"text_input": "What is the hs code for HU IL-17A PE N49-653 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8004580", "output": "38210010"}, {"text_input": "What is the hs code for HU CD183 PE-CY7 1C6/CXCR3 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8106559", "output": "38210010"}, {"text_input": "What is the hs code for CYTOLIX/CYTOPERM SOIN KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8080967", "output": "38210010"}, {"text_input": "What is the hs code for CD19 PE-CY7 SJ25C1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8180953", "output": "38210010"}, {"text_input": "What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8152901", "output": "38210010"}, {"text_input": "What is the hs code for CD4 APC SK3 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7318894", "output": "38210010"}, {"text_input": "What is the hs code for CD8 PERCP-CY5.5 SK1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8114784", "output": "38210010"}, {"text_input": "What is the hs code for ANNEXIN V FITC APOP DTEC KIT I 100TST (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8072965", "output": "38210010"}, {"text_input": "What is the hs code for CD45 PERCP 2D1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8075987", "output": "38210010"}, {"text_input": "What is the hs code for PERM/WASH BUFFER 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8088837", "output": "38210010"}, {"text_input": "What is the hs code for LYSING BUFFER 10X CONCENTRATE 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8149712", "output": "38210010"}, {"text_input": "What is the hs code for MS CD3 MOLCPX PE-CY7 17A2 50UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7235504", "output": "38210010"}, {"text_input": "What is the hs code for HU CD196 (CCR6) APC 11A9 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7180922", "output": "38210010"}, {"text_input": "What is the hs code for CD4 PERCP -CY5.5 SK3 RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8116650", "output": "38210010"}, {"text_input": "What is the hs code for HU CD55 PE IA10 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7335810", "output": "38210010"}, {"text_input": "What is the hs code for HU CD59 FITC P282 (H19) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7177716", "output": "38210010"}, {"text_input": "What is the hs code for CD5 FITC L17F12 100 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8010928", "output": "38210010"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG180713", "output": "29362700"}, {"text_input": "What is the hs code for PURIDROX COMPACTED, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT),COA.B340009 S/D 12", "output": "29419000"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I5C002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I5J002", "output": "39123900"}, {"text_input": "What is the hs code for SERASENSE SF CM5 (BAHAN BAKU KOSMETIK) COA PA80801034,2042,2044,2046", "output": "29319049"}, {"text_input": "What is the hs code for VC ASCORBIC ACID SPECIAL , 25KG BAL (BHN BAKU SUPLEMEN) COA HPD1803111", "output": "29362700"}, {"text_input": "What is the hs code for ESOMEPRAZOLE SODIUM STERILE (BHN BAKU OBAT), COA SI/EPZ/00010318", "output": "29333990"}, {"text_input": "What is the hs code for CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA. 1GC01CLB ZP48D 250MT", "output": "38249999"}, {"text_input": "What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 1807EF6113", "output": "29224900"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101852618", "output": "17021100"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01804593, 7004", "output": "29362700"}, {"text_input": "What is the hs code for GRANULAC 70 (BHN BAKU OBAT) COA LC 051-7-870", "output": "17021100"}, {"text_input": "What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8178744", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8178744", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 81787445", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE RHAMNOSE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8193542", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8052992", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8029645", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8015615,8103503", "output": "38210010"}, {"text_input": "What is the hs code for PAIL CASAMINO ACIDS TECHNICAL 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8101901", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8164638", "output": "38210010"}, {"text_input": "What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8074670", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8024866", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8059906", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7102560,7249871", "output": "38210010"}, {"text_input": "What is the hs code for PAIL BUFFERED PEPTONE WATER 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8085791", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7341765", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8054962,8079524", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242852", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8066869", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079535", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079887,...", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8094584,593", "output": "38210010"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8116634,37", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7157987", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7291775", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7349871", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7262745", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8079540", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7324991", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8066794", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8064953", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8066907", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8176945", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7095842", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079881", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8134769", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8053834", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 7349833", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA LC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8158919", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8129691", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE STANDARD METHODS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8057835", "output": "38210010"}, {"text_input": "What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8116718", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8130513", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7304669", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8037783", "output": "38210010"}, {"text_input": "What is the hs code for KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8078889", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8178744", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8129691", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8129691", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE S-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8023610", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8079802", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8079802", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD MALTOSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6167751", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 801167190", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7254544", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 81417944", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 4 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 6342760", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 71539772", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8046735", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 8101873", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MULLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7009699", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POLYPEPTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8155588", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MALT EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8113905", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7341765", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEMOGLOBIN FREEZE DRIED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8053834", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8053838", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8164501", "output": "38210010"}, {"text_input": "What is the hs code for ULTALUX FF25 KG BAG (BHN BAKU KOSMETIK) COA D041831361", "output": "38249999"}, {"text_input": "What is the hs code for 1,3 BUTYLENE GLYCOL, COSMETIC QUALITY(BHN BAKU KOSMETIK) COA. P0618608CC", "output": "29053200"}, {"text_input": "What is the hs code for BICAR FOOD 0/50 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP20518", "output": "28363000"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537827", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537847", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537789", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537834", "output": "35051010"}, {"text_input": "What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608107", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607950", "output": "39061090"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18050010, 50008", "output": "29362100"}, {"text_input": "What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01802012,20", "output": "29362400"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ80306074, 75", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18010001", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18010001,60006", "output": "29362600"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ80306074", "output": "29362700"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL01802012", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18060006", "output": "29362600"}, {"text_input": "What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01802020,3039", "output": "29362400"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00917090", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00917090,91", "output": "29362900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ1213304", "output": "29362500"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80610102, 104", "output": "29362300"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01803151", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID 25KG BOX ALU (BHN BAKU MAKANAN) COA TL01802834", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01802834", "output": "29362700"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT18040145", "output": "29362400"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ71213304", "output": "29362500"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01705019", "output": "29362900"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ80402171", "output": "29362200"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE1705019", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1803009", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1803009", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17080285", "output": "29362400"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17080285", "output": "29362400"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT17080285", "output": "29362400"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ71103362,UQ80203027", "output": "29362200"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT18010072", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO)BHN BAKU MAKANAN, COA UT18010783, 784", "output": "29362100"}, {"text_input": "What is the hs code for B2 UNIVERSAL FINE POWDER, 5KG BAG ALU (BHN BAKU MAKANAN) COA UQ80110011,14", "output": "29362300"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01803636", "output": "29362400"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00817039", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80402171", "output": "29362200"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE 25KG BOX (BHN BAKU SUPLEMEN) COA TL01803151", "output": "29362700"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17110064", "output": "32041900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN), COA UQ71213304", "output": "29362500"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ80203026", "output": "29362200"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU (TOCO) (BHN BAKU SUPLEMEN) COA UT18020169", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT18010072", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI17100009", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01802002", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18060006", "output": "29362600"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT17110004", "output": "29362900"}, {"text_input": "What is the hs code for MILKUAT ZN FE (25PCT CARRIER) (BHN BAKU MAKANAN) COA XW91807106", "output": "21069059"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT18010010", "output": "29362800"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01801016", "output": "32041900"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17110064", "output": "32041900"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN), COA UE01801016", "output": "32041900"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ80610104", "output": "29362300"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ80203027", "output": "29362200"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01802012", "output": "29362400"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80610104", "output": "29362300"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80402171", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80402171", "output": "29362200"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18050007,8", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18040005", "output": "29362100"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ71213304", "output": "29362500"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ80203026,27", "output": "29362200"}, {"text_input": "What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453194746", "output": "39139090"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE /PURIMOX COMPACTED GRADE A(BHN BAKU OBAT) COA M530195,196,221 S/D 223", "output": "29411019"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE /PURIMOX POWDER(BHN BAKU OBAT) COA M483783,785", "output": "29411019"}, {"text_input": "What is the hs code for INOSITOL (BHN BAKU OBAT) COA 201804135", "output": "29061300"}, {"text_input": "What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 1807037", "output": "29349990"}, {"text_input": "What is the hs code for TETRACYCLINE HYDROCHLORIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 180624-62", "output": "29413000"}, {"text_input": "What is the hs code for METHYL SULFONYL METHANE USP (BHN BAKU OBAT) COA 18073001", "output": "29309090"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180713", "output": "17029019"}, {"text_input": "What is the hs code for DAMIANA EXTRACT (BHN BAKU OBAT) COA BNPD180721", "output": "29329990"}, {"text_input": "What is the hs code for ANTI SHINE WASH (BHN BAKU KOSMETIK) COA 10300068", "output": "38249999"}, {"text_input": "What is the hs code for CHRONO CHARDY (BHN BAKU KOSMETIK) COA 172847", "output": "13021950"}, {"text_input": "What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 180991", "output": "38249999"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 181146", "output": "13021950"}, {"text_input": "What is the hs code for MANDARIN INCLEAR (BHN BAKU KOSMETIK) COA 181137", "output": "13021950"}, {"text_input": "What is the hs code for PHYTTO COLLAGE B (N) BHN BAKU KOSMETI, COA 180264", "output": "13021950"}, {"text_input": "What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 80503", "output": "13021950"}, {"text_input": "What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 80608", "output": "13021950"}, {"text_input": "What is the hs code for SUPEROX C TM AF (BHN BAKU KOSMETIK) COA 80610", "output": "13021950"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1803403", "output": "38249999"}, {"text_input": "What is the hs code for SWT-7 TM L (BHN BAKU KOSMETIK) COA 1807901", "output": "38249999"}, {"text_input": "What is the hs code for SWT-7 TM L (BHN BAKU KOSMETIK), COA 1815001", "output": "38249999"}, {"text_input": "What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK), COA 5541718", "output": "38249999"}, {"text_input": "What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 1724514", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785016298J", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1804005", "output": "38249999"}, {"text_input": "What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828015909H", "output": "38249999"}, {"text_input": "What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016427J", "output": "38249999"}, {"text_input": "What is the hs code for PHYTELENE COMPLEX EGX 773(BHN BAKU KOSMETIK)COA PX773-180803-GS", "output": "38249999"}, {"text_input": "What is the hs code for MANGOUSTAN HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA GAM171101-B", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS180201", "output": "38249999"}, {"text_input": "What is the hs code for POMEGRANATE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA PUG180501-BGBIO", "output": "38249999"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA180705", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM170702-PGH", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO180301", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND LICORICE EXTRACT (BHN BAKU KOSMETIK)COA GGB-010478", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUB-010448", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND PF SC GLUCAN (BHN BAKU KOSMETIK)COA CPG-472678, CPG-500688", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 2018D1321", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-150578", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-011388", "output": "38249999"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ70813211", "output": "29362500"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18060170", "output": "29362800"}, {"text_input": "What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000175792,174770", "output": "29362900"}, {"text_input": "What is the hs code for STAY C(R) 50, 20KG BOX NA (BHN BAKU KOSMETIK) COA UT18010226,227", "output": "29362700"}, {"text_input": "What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF18004052", "output": "29420000"}, {"text_input": "What is the hs code for STAY-C (R) 50, 5KG BAG ALU (BHN BAKU KOSMETIK) COA UE01801009,1011", "output": "29362700"}, {"text_input": "What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC 011-8-801, 012-8-801, 004-8-801, 011-8-801", "output": "17021100"}, {"text_input": "What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP800632", "output": "39059990"}, {"text_input": "What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP796425", "output": "39059990"}, {"text_input": "What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP796410", "output": "39059990"}, {"text_input": "What is the hs code for CORN STARCH (BHN BAKU OBAT) COA 20180725", "output": "11081200"}, {"text_input": "What is the hs code for NIACINAMIDE USP (BHN BAKU KOSMETIK) COA 18-19/NMD(P)/U/068 S/D 072", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18070054", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00218194", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18070054", "output": "29362100"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 20PCT SAF,1KG ALUF (BHN BAKU SUPLEMEN) COA UE01806039", "output": "32030010"}, {"text_input": "What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00218443", "output": "29362700"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010014", "output": "32041900"}, {"text_input": "What is the hs code for COATED ASCORBIC ACID TYPE EC ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01806790", "output": "29362700"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010014", "output": "32041900"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18060032", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT18060032", "output": "29362800"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01807089", "output": "29362700"}, {"text_input": "What is the hs code for TRIAMCINOLONE ACETONIDE MICRONIZED (BHN BAKU OBAT) COA NY1271M", "output": "29372200"}, {"text_input": "What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NY0865M", "output": "29372200"}, {"text_input": "What is the hs code for MOXIFLOXACIN HYDROCHLORIDE(BHN BAKU OBAT) COA MP0100718", "output": "29334990"}, {"text_input": "What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M.31.0PCT (BHN BAKU OBAT) COA 101829018", "output": "28161000"}, {"text_input": "What is the hs code for PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) COA PH01230318", "output": "38249999"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00817039", "output": "29362200"}, {"text_input": "What is the hs code for ASCORBIC ACID ,25KG BOX /ALU (BHN BAKU SUPLEMEN) COA TL01802834", "output": "29362700"}, {"text_input": "What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91807109", "output": "21069059"}, {"text_input": "What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91807332", "output": "21069059"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01801016, 18,19", "output": "32041900"}, {"text_input": "What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW91807146", "output": "21069059"}, {"text_input": "What is the hs code for PX 103070 C3 (BHN BAKU MAKANAN) COA XW91807147", "output": "21069059"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01803261", "output": "29362700"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01803261", "output": "29362700"}, {"text_input": "What is the hs code for PX 204005 (BHN BAKU MAKANAN) COA XW91807248", "output": "21069059"}, {"text_input": "What is the hs code for RIBOFLAVIN 5-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1801005,2024,2030", "output": "29362300"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01803636", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT17110004", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1803009", "output": "29362900"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01803261", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18060006", "output": "29362600"}, {"text_input": "What is the hs code for ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01802834", "output": "29362700"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01803636", "output": "29362400"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01705019", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00817039", "output": "29362200"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01803261", "output": "29362700"}, {"text_input": "What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW91808057", "output": "21069059"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT18050023", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT18050023", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100CWS (BHN BAKU SUPLEMEN) COA UT18050023", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT18060196", "output": "29362400"}, {"text_input": "What is the hs code for PX 103070 - C3 (BHN BAKU MAKANAN) COA XW91808032", "output": "21069059"}, {"text_input": "What is the hs code for PX 103070 - C3 (BHN BAKU MAKANAN) COA XW91808032", "output": "21069059"}, {"text_input": "What is the hs code for STARCAP 1500 CO-PROCESSED (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537452", "output": "35051010"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18060039", "output": "29362800"}, {"text_input": "What is the hs code for REFINED TRACED SHEA OLEIN (BHN BAKU KOSMETIK) COA 0000021935", "output": "38249999"}, {"text_input": "What is the hs code for JAGUAR HP 105, 25KG CARDBOARD CARTON (BHN BAKU KOSMETIK) COA H1806198D", "output": "38249999"}, {"text_input": "What is the hs code for CARE PROTECTOR C6 PELICAN (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)", "output": "38210090"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607700", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607955", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607950", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607732", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607963", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607965", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607954", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607957", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607951", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607952", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607958", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607964", "output": "38249999"}, {"text_input": "What is the hs code for JAGUAR C 162 CARDBOARD BOX 25 KG (BHN BAKU KOSMETIK) COA MJAC18150A", "output": "38249999"}, {"text_input": "What is the hs code for LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 18092", "output": "38249999"}, {"text_input": "What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1808048,51 S/D 57,59 S/D 61", "output": "29224900"}, {"text_input": "What is the hs code for VISTANOL GDHR (BHN BAKU KOSMETIK) COA KHJ", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA KDG", "output": "38249999"}, {"text_input": "What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA KEK", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS EU-118 (IS) (BHN BAKU KOSMETIK) COA KGN", "output": "38249999"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01612023, SAMPLE NO COMMERCIAL VALUE", "output": "29362900"}, {"text_input": "What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA. DOC2251821", "output": "28363000"}, {"text_input": "What is the hs code for GINSENG DRY EXTRACT 2PCT COLOR (BAHAN BAKU SUPPLEMEN) COA 10730/M1", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10731/M1", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10732/M1", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10733/M1", "output": "13021990"}, {"text_input": "What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 181401", "output": "13021990"}, {"text_input": "What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND180801", "output": "29372200"}, {"text_input": "What is the hs code for INSTANT BLACK TEA POWDER TH B430 (BHN BAKU MAKANAN) COA 2018022401", "output": "21012020"}, {"text_input": "What is the hs code for BIOTOX (BHN BAKU OBAT UTK PAKAN TERNAK) COA 050818-628", "output": "23099090"}, {"text_input": "What is the hs code for E.C.O TRACE ZN 25PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC310118", "output": "29224900"}, {"text_input": "What is the hs code for E.C.O TRACE MN 20PCT (BHN BAKU UTK PAKAN TERNAK) COA BC290118", "output": "29224900"}, {"text_input": "What is the hs code for E.C.O TRACE FE 20PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC310118", "output": "29224900"}, {"text_input": "What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA R700500", "output": "29419000"}, {"text_input": "What is the hs code for GELUCIRE 48/16 PELLETS (BHN BAKU SUPLEMEN) COA 161003", "output": "28399000"}, {"text_input": "What is the hs code for ARIA III 6B/2R ACDU BASIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 4828202012", "output": "38210010"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180803", "output": "17029019"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608123", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608130", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608131", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608131", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608133", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608136", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607732", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608125", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608124", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606853", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608122", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608126", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608127", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608128", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE PURPLE(BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608129", "output": "39061090"}, {"text_input": "What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608135", "output": "32151900"}, {"text_input": "What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608135", "output": "32151900"}, {"text_input": "What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH606124", "output": "32151900"}, {"text_input": "What is the hs code for FLOWLAC (R) 100 (BHN BAKU OBAT) COA. L101502918", "output": "17021100"}, {"text_input": "What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104312818", "output": "17021100"}, {"text_input": "What is the hs code for ESCIN FREE ACID (BHN BAKU SUPLEMEN) COA 32591/M4", "output": "13021950"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT GRANULATION ,25KG BOX (BHN BAKU SUPLEMEN) COA WB00818950", "output": "29362700"}, {"text_input": "What is the hs code for PURICILLIN COMPACTED (BHN BAKU OBAT) COA. M842378 S/D 80,99,2400", "output": "29411020"}, {"text_input": "What is the hs code for PURICILLIN POWDER (BHN BAKU OBAT) COA M780733", "output": "29411020"}, {"text_input": "What is the hs code for EPA DHA 44 37 (BHN SUPLEMEN KESEHATAN) COA EE4437-180803", "output": "29061300"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM (BHN BAKU OBAT) COA 1805674,753 ,754,904", "output": "29331900"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180805", "output": "17029019"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB210718", "output": "39123900"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B130718", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG160818", "output": "39123900"}, {"text_input": "What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA.LDC 223 18T", "output": "27101990"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121808884,8932", "output": "28363000"}, {"text_input": "What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA R900500", "output": "29419000"}, {"text_input": "What is the hs code for FERROUS FUMARATE ( BHN BAKU OBAT), COA 2018/209", "output": "29171900"}, {"text_input": "What is the hs code for L-GLUTAMIC ACID ( BHN BAKU SUPLEMEN), COA 1000040931/180730", "output": "29224900"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708160078 S/D 80, SAMPLE NO COMMERCIAL VALUE", "output": "29420000"}, {"text_input": "What is the hs code for CONFECTIONERY INK CI-250002 RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA TKL45591", "output": "32151900"}, {"text_input": "What is the hs code for CONFECTIONERY INK CI-205002 BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA TKL45590", "output": "32151900"}, {"text_input": "What is the hs code for PARSOL 1789,20KG BOX (BHN BAKU KOSMETIK) COA 0318040631 S/D 34", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0218060099", "output": "29420000"}, {"text_input": "What is the hs code for NIACINAMIDE PC,25KG BOX (BHN BAKU KOSMETIK) COA 0000175793,74770", "output": "29362900"}, {"text_input": "What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00550066,67", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 1789,20KG BOX (BHN BAKU KOSMETIK) COA 0318040634,40635, 50787", "output": "29420000"}, {"text_input": "What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES1804058", "output": "29420000"}, {"text_input": "What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL1801802", "output": "29362400"}, {"text_input": "What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91808150", "output": "29420000"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT18020169", "output": "29362100"}, {"text_input": "What is the hs code for OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608588", "output": "38249999"}, {"text_input": "What is the hs code for BETAHISTINE MESILATE EP (BHN BAKU OBAT) COA EDBHM0818004", "output": "29333990"}, {"text_input": "What is the hs code for CIPROFLOXACIN HCL (BHN BAKU OBAT) COA HB00N1808029 S/D 36", "output": "29335990"}, {"text_input": "What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1851660,666,1811049,", "output": "29242930"}, {"text_input": "What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453198471", "output": "39139090"}, {"text_input": "What is the hs code for CORN STARCH (BHN BAKU OBAT) COA 20180815", "output": "11081200"}, {"text_input": "What is the hs code for OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT678338", "output": "32151900"}, {"text_input": "What is the hs code for OPALUX PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT678343", "output": "32151900"}, {"text_input": "What is the hs code for OPASPRAY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT678347", "output": "32151900"}, {"text_input": "What is the hs code for 250/355 SUGLETS 250/355 (45/60 MESH) BHN BAKU OBAT UTK PEWARNA TABLET, COA ST510217", "output": "32151900"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA.24700818,24710818,24720818...", "output": "29359000"}, {"text_input": "What is the hs code for FIBRE DRUM (DRUM KOSONG) FREE OF COST NO COMMERCIAL VALUE", "output": "48192000"}, {"text_input": "What is the hs code for NORIT SX SUPER E 153 (BHN BAKU KOSMETIK) COA 4332393", "output": "38021000"}, {"text_input": "What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK)COA SFP-N-072378", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-010248", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND LICORICE EXTRACT (BHN BAKU KOSMETIK) COA GGB-010478", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-082148", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-062378", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK)COA PSFAC-012568, 021088", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-170388", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE(BHN BAKU KOSMETIK) COA 080718", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-112478", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 100 CN 10KG KA (BHN BAKU KOSMETIK) COA 1513045, 1514878", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 900 10KG KA (BHN BAKU KOSMETIK) COA 1514236", "output": "38249999"}, {"text_input": "What is the hs code for GROTANOL 3025 CN 10KG KA (BHN BAKU KOSMETIK) COA 1509426", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 10KG KA (BHN BAKU KOSMETIK) COA 1514016", "output": "38249999"}, {"text_input": "What is the hs code for SENSIDIN DO CN 10KG CA (BHN BAKU KOSMETIK) COA 1507933,1514728", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 CN 10KG KA (BHN BAKU KOSMETIK) COA 1510110,1513317", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 CN 10KG KA (BHN BAKU KOSMETIK) COA 1510110,1513317,1514952", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 CN 200KG FA (BHN BAKU KOSMETIK) COA 1511296,1515235", "output": "38249999"}, {"text_input": "What is the hs code for VIT A PALM 1.0M + VIT D3 100.000 (BHN BAKU KOSMETIK) COA UT18060054", "output": "29362100"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE ,25KG BOX (BHN BAKU MAKANAN) COA TL01804593", "output": "29362700"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01804593", "output": "29362700"}, {"text_input": "What is the hs code for VIT A PALM 1.0M +VIT D3 100.000 (BHN BAKU MAKANAN) COA UT18060054", "output": "29362100"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01804593001", "output": "29362700"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01807004", "output": "29362700"}, {"text_input": "What is the hs code for PACLITAXEL SEMISYNTHETIC (USP,TEST-2) (BHN BAKU OBAT) COA 898NSH005", "output": "29329990"}, {"text_input": "What is the hs code for HANDHELD RAMAN SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)", "output": "38210090"}, {"text_input": "What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH180809-ENBIO", "output": "38249999"}, {"text_input": "What is the hs code for LINEN OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA LIU180504-H", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS180201", "output": "38249999"}, {"text_input": "What is the hs code for JOB'S TEARS HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA COL180801-B-RQ", "output": "38249999"}, {"text_input": "What is the hs code for CYANACOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPLEMEN KESEHATAN) COA. 1806431963, 11836", "output": "29362600"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE /PURIMOX COMPACTED GRADE A(BHN BAKU OBAT) COA M483832", "output": "29411019"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE /PURIMOX COMPACTED GRADE A(BHN BAKU OBAT) COA M530240", "output": "29411019"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE /PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M595986", "output": "29411019"}, {"text_input": "What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND180901", "output": "29372200"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01806756", "output": "29362700"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT18030004", "output": "32041900"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18060013,16", "output": "29362100"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE ,20KG BOX(BHN BAKU MAKANAN) COA QZ11180412", "output": "29362500"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE ,20KG BOX (BHN BAKU MAKANAN) COA QZ11180412", "output": "29362500"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18070213", "output": "29362800"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE ,20KG BOX (BHN BAKU MAKANAN) COA QZ11180412", "output": "29362500"}, {"text_input": "What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18070207", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18060019,21", "output": "29362100"}, {"text_input": "What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA. 20180820", "output": "17023010"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00517027", "output": "29362200"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00517027", "output": "29362300"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00517027", "output": "29362300"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18060024", "output": "29362100"}, {"text_input": "What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91808014", "output": "21069059"}, {"text_input": "What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91808174, XW91808175", "output": "21069059"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18060024", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18060012,13,19", "output": "29362100"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01803646", "output": "29362400"}, {"text_input": "What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ80209005", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ80209005", "output": "29362300"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418095", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00517027", "output": "29362300"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT18050023", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00517027", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT18030171", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01802002", "output": "29362900"}, {"text_input": "What is the hs code for ASCORBIC ACID,25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01803255,3258", "output": "29362700"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418026", "output": "29362500"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1804015", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1804015", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1803012, 4015", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1803012", "output": "29362900"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ80406081,506120", "output": "29362700"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00817040", "output": "29362200"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT18050023", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00817040", "output": "29362200"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ80306079,81", "output": "29362700"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18060024", "output": "29362100"}, {"text_input": "What is the hs code for OPADRY SGR TRANSLUCENT (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA643700", "output": "38249999"}, {"text_input": "What is the hs code for NIACINAMIDE PC,25KG BOX (BHN BAKU KOSMETIK) COA 0000175798,174770,175739", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 041802004,070137", "output": "29420000"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18060170", "output": "29362800"}, {"text_input": "What is the hs code for STAY C (R) 50,5KG BAG ALU EX US (BHN BAKU KOSMETIK) COA UT17070104", "output": "29362700"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB00718222", "output": "29362100"}, {"text_input": "What is the hs code for PURIDROX TM POWDER,CEFADROXIL MONOHYDRATE (BHN BAKU OBAT) COA.B334583,584", "output": "29419000"}, {"text_input": "What is the hs code for RESTYLANE SKINB VITLIDO 1MLD16 , COA 16200-2", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE SKINB VITALLGHLIDO 1MLD16 , COA 16191-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE SKINB LYFT LIDOCAINE 1ML , COA 16177-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE VOLYME 1ML , COA 16046-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE REFYNE 1ML , COA 15842-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE DEFYNE 1ML , COA 16013-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE KYSSE 1 ML , COA 16207-1", "output": "90189090"}, {"text_input": "What is the hs code for PASSION FLOWER D.H.E >4PCT (BAHAN BAKU SUPLEMEN) COA 10713/M1", "output": "13021950"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1802720674", "output": "29372900"}, {"text_input": "What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-180604", "output": "29397900"}, {"text_input": "What is the hs code for PANTOPROZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT,COA APSS180016", "output": "29333990"}, {"text_input": "What is the hs code for BD FACS MELODY BR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6615880031", "output": "38210010"}, {"text_input": "What is the hs code for COMPRESSOR AIR EXT 230V/50HZ 0-120PSL 4L (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)", "output": "38210010"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D18015D003", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I6G002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL A15 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180HBF022", "output": "39123900"}, {"text_input": "What is the hs code for ACYCLOVIR MICRONIZED (BHN BAKU OBAT) COA 18100535", "output": "29335990"}, {"text_input": "What is the hs code for HUILE DE COPRAH RAFF GV 24/26 (BHN BAKU KOSMETIK)COA BA007906", "output": "15131910"}, {"text_input": "What is the hs code for CILOSTAZOL USP (BHN BAKU OBAT) COA 17007CB2ARI", "output": "29337900"}, {"text_input": "What is the hs code for NONIVAMIDE (SYNTHETIC CAPSAICIN)BHN BAKU KOSMETIK, COA.20180726", "output": "29241990"}, {"text_input": "What is the hs code for DPG FG (BHN BAKU KOSMETIK) COA B01921DG", "output": "29094900"}, {"text_input": "What is the hs code for PG USP (BHN BAKU KOSMETIK) COA B01921UP", "output": "29053200"}, {"text_input": "What is the hs code for LANOLINE ANHYDROUS (BHN BAKU KOSMETIK) COA 4506,4551,4819", "output": "38249999"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180817", "output": "17029019"}, {"text_input": "What is the hs code for CEFADROXILE MONOHYDRATE (PURIDROX POWDER) BHN BAKU OBAT,COA.B334574, S/D 77", "output": "29419000"}, {"text_input": "What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT) COA B334570,73,74", "output": "29419000"}, {"text_input": "What is the hs code for PURILEX TM COMPACTED, CEFALEXIN MONOHYDRATE (BHN BAKU OBAT) COA B460291", "output": "29419000"}, {"text_input": "What is the hs code for TRIAMCINOLONE ACETONIDE MICRONIZED (BHN BAKU OBAT) COA NY1413M", "output": "29372200"}, {"text_input": "What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK)COA HMVBD-062378", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA HMVBD-070698", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK)COA KFB-L-010858", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-122488", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) BHN BAKU KOSMETIK) COA CHP1180802", "output": "38249999"}, {"text_input": "What is the hs code for BIOTOX (R) (BHN BAKU OBAT UTK PAKAN TERNAK) COA 300818-652", "output": "23099090"}, {"text_input": "What is the hs code for BETAPRO 300 (BHN BAKU OBAT UTK PAKAN TERNAK) COA 200818-632", "output": "23099090"}, {"text_input": "What is the hs code for E.C.O TRACE ZN 25PCT (BHN BAKU UTK PAKAN TERNAK) COA BC270218", "output": "29224900"}, {"text_input": "What is the hs code for E.C.O.TRACE MN 20PCT(BHN BAKU OBAT UTK PAKAN TERNAK) COA BC290118", "output": "29224900"}, {"text_input": "What is the hs code for E.C.O TRACE FE 20PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC050718", "output": "29224900"}, {"text_input": "What is the hs code for BIOKEY SELENIUM (BHN BAKU OBAT UTK PAKAN TERNAK) COA 210218-148", "output": "23099090"}, {"text_input": "What is the hs code for LIQUIPHOS STRONG (BHN BAKU UTK PAKAN TERNAK) COA 270818-667", "output": "23099090"}, {"text_input": "What is the hs code for LIQUIPHOS STRONG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 270818-667", "output": "23099090"}, {"text_input": "What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-1690918", "output": "29334910"}, {"text_input": "What is the hs code for MAPROTILINE HCL (BHN BAKU OBAT) COA 1850001426", "output": "29214900"}, {"text_input": "What is the hs code for BOSWELLIA SERRATA PHOSPHOLIPID (BHN BAKU SUMPLEMEN) COA 18432", "output": "38249999"}, {"text_input": "What is the hs code for BOSWELLIA SERRATA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 18342", "output": "38249999"}, {"text_input": "What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7297545", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8130513", "output": "38210010"}, {"text_input": "What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8155535", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8178744", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8239573", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE RHAMNOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8211705", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8094593,....", "output": "38210010"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 8150739", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8122582,8157606", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 8059873", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7349834,8101800", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SACCHAROSE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8046747", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7341765", "output": "38210010"}, {"text_input": "What is the hs code for PAIL LAURYL TRYPTOSE BROTH 2KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8155560", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8155557", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8129687", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8129687", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060807", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7018890", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7060815", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7363777", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8234703", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7291775,8073792", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8023610", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7349871", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8171517", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079540", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7324991", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8066794", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8064953", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8066907", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183849", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079802", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8127705", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079881", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8085825", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8134769", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8053834,8134709", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8032534", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA LC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8194978", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8066907", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8127705", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8079881", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8085825", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8134769", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8053834", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE OF BASAL MEDIUM 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8103707", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE AGAR TECHNICAL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8127781", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8129691", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MALT EXTRACT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8101775", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MICRO ASSAY CULTURE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 6327982", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8046735", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8101873", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE M ENDO BROTH MF 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8053859", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ISP MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7242953", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ISP MEDIUM 4 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8115820", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7075670", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8081784", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ISP MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7363779", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE YEAST NITOGEN BASE W/O AA 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183886", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MIDDLEBROOK 7H9 BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8045590", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8103503", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8164642", "output": "38210010"}, {"text_input": "What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8011687,...", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141534", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141534", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE GRAM CRYSTAL VIOLET 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8172940", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7335917", "output": "38210010"}, {"text_input": "What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8031739", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8037783", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8101787", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8234703", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8239573", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7363718", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PHOSPHATE BUFFER PH 7.2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8141591", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AGAR MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7254544", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8080511", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MR-VP MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7262698", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8046757", "output": "38210010"}, {"text_input": "What is the hs code for LOOPS INOCULATING 10/TUBE 10 MICROLITER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8802416", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MULLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8134700", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE NITRATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8129685", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 5 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8197524", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8115632", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MICRO ASSAY CULTURE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8206622", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183877", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8207815", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRAIN HEART INFUSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8037753", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7153977", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8134767", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8004586", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 8 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8240940", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8101873", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7009699", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8193979", "output": "38210010"}, {"text_input": "What is the hs code for SOLUTION BACTERIOSTAT CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 18H0256415", "output": "38210010"}, {"text_input": "What is the hs code for SOLUTION BACTERIOSTAT CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 18H0256415", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8151583", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7341765", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CASITONE 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8164638,8164642", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8194646", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIADIS MSRV 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8121572", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8141794", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POLYPEPTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8155588", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BEEF EXTRACT POWDER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 80011683", "output": "38210010"}, {"text_input": "What is the hs code for LOOPS INOCULATING 10/TUBE 1 MICROLITER (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8802314", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MED 3 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) 7278568", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PEPSIN 1 TO 10000 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7242856", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LB AGAR LENNOX 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8170911", "output": "38210010"}, {"text_input": "What is the hs code for KIT MAINTENANCE FLOW CYT 2 MONTH (MEDIA UTK PENGEMBANGAN MIKROORGANISME)", "output": "38210010"}, {"text_input": "What is the hs code for ESOMEPRAZOLE SODIUM STERILE (BHN BAKU OBAT), COA SI/BEPZ/0010818", "output": "29333990"}, {"text_input": "What is the hs code for PANTOPRAZOLE SODIUM (BHN BAKU OBAT) COA PSFP18031", "output": "29333990"}, {"text_input": "What is the hs code for SENSIVA SC 50CN 10KG KA (BHN BAKU KOSMETIK) COA 1516344", "output": "29420000"}, {"text_input": "What is the hs code for DOCETAXEL TRIHYDRATE (BHN BAKU OBAT) COA 201808002", "output": "29329990"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8135632...", "output": "38210010"}, {"text_input": "What is the hs code for HU CD22 PE HIB22 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8226903", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8101679,...", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7314928", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7153980", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8101883,8110566", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8024571", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8134776", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8092819", "output": "38210010"}, {"text_input": "What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8220620", "output": "38210010"}, {"text_input": "What is the hs code for ANTI-EP CAM APC EBA-1 100TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8213706", "output": "38210010"}, {"text_input": "What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT 10X10M (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8151581", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7220790", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8054920", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE FOLIC ACID ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8114908", "output": "38210010"}, {"text_input": "What is the hs code for VIAL NOVOBIOCIN SUPPLEMENT 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8151586,...", "output": "38210010"}, {"text_input": "What is the hs code for VIAL POLYMYCIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8158997", "output": "38210010"}, {"text_input": "What is the hs code for VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8142921", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 81838300", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LACTOBACILL MRS BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8192943", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LACTOBACILI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8211699", "output": "38210010"}, {"text_input": "What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8121789", "output": "38210010"}, {"text_input": "What is the hs code for CD24 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8094872", "output": "38210010"}, {"text_input": "What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8075807", "output": "38210010"}, {"text_input": "What is the hs code for CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8116667", "output": "38210010"}, {"text_input": "What is the hs code for IFN GAMMA APC RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8121877", "output": "38210010"}, {"text_input": "What is the hs code for CD4 PERCP CY5.5 SK3 RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 816650", "output": "38210010"}, {"text_input": "What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8156919", "output": "38210010"}, {"text_input": "What is the hs code for ANTI HLA DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8192942", "output": "38210010"}, {"text_input": "What is the hs code for FASTIMMUNE COSTIN CD28/CD49D 0.3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 82118169", "output": "38210010"}, {"text_input": "What is the hs code for CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8122889", "output": "38210010"}, {"text_input": "What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8218565", "output": "38210010"}, {"text_input": "What is the hs code for ANTI-KAPPA FITC/ANTI-LAMBDA PE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8162536", "output": "38210010"}, {"text_input": "What is the hs code for CYTOFIX /CYTOPERM SOIN KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 81767383", "output": "38210010"}, {"text_input": "What is the hs code for ANNEXIN V FITC APOP DTEC KIT I 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8074726", "output": "38210010"}, {"text_input": "What is the hs code for CD23FITC EBVCS-5 RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8190541", "output": "38210010"}, {"text_input": "What is the hs code for FASTIMMUNE TNF-AIP 6401.1111 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8073770", "output": "38210010"}, {"text_input": "What is the hs code for HU CD62P PE AK-4 100TST (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 4197881", "output": "38210010"}, {"text_input": "What is the hs code for HU CD154 FITC TRAP1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 80238737", "output": "38210010"}, {"text_input": "What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 81039172", "output": "38210010"}, {"text_input": "What is the hs code for HU CD90 PE 5E10 100UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8086725", "output": "38210010"}, {"text_input": "What is the hs code for HU CD45 FITC HI30 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8120939", "output": "38210010"}, {"text_input": "What is the hs code for LINEAGE COCKTAIL 1 (LIN 1) FITC 50 TESTS(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8178601", "output": "38210010"}, {"text_input": "What is the hs code for HU CD34 FITC 581 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7354566", "output": "38210010"}, {"text_input": "What is the hs code for HU CD105 APC 266 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7222945", "output": "38210010"}, {"text_input": "What is the hs code for HU CD56 FITC B159 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7348691", "output": "38210010"}, {"text_input": "What is the hs code for VALERIAN D.H.E> 0.8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 10786/M1", "output": "13021950"}, {"text_input": "What is the hs code for ALPINAWHITE (BHN BAKU KOSMETIK) COA 181207", "output": "13021950"}, {"text_input": "What is the hs code for TSPL-30-ID (BHN BAKU KOSMETIK) , COA 805010, SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for KF-6038 (BHN BAKU KOSMETIK) , COA 809198, SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for KSP-101 (BHN BAKU KOSMETIK) COA 808268, SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for TSPL-30-D5 (BHN BAKU KOSMETIK) COA 705052, SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for KP-578 (BHN BAKU KOSMETIK) COA 804075, SAMPLE NO COMMERCIAL VALUE", "output": "39139090"}, {"text_input": "What is the hs code for NANORAM 2 TOP COVER ASSEMBLY 2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)", "output": "38210090"}, {"text_input": "What is the hs code for NANORAM 2 CORE MODULE BOARD (MEDIA UTK PENGEMBANGAN MIKROORGANISME)", "output": "38210090"}, {"text_input": "What is the hs code for SPARES FPOR RAMAN SPECTROMETER (MEDIA UTK PENGEMBANGAN MIKROORGANISME)", "output": "38210090"}, {"text_input": "What is the hs code for NANORAM 2 CORE MODULE BOARD (MEDIA UTK PENGEMBANGAN MIKROORGANISME)", "output": "38210090"}, {"text_input": "What is the hs code for NANORAM 2 CORE MODULE BOARD (MEDIA UTK PENGEMBANGAN MIKROORGANISME)", "output": "38210090"}, {"text_input": "What is the hs code for NR2 SPECTROMETER PCB (MEDIA UTK PENGEMBANGAN MIKROORGANISME)", "output": "38210090"}, {"text_input": "What is the hs code for CALCIUM CARBONATE (BHN BAKU KOSMETIK) COA 2201725120", "output": "25090000"}, {"text_input": "What is the hs code for BOTTLE SELENITE CYSTINE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8141548", "output": "38210010"}, {"text_input": "What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8172970", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8135947", "output": "38210010"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011HCLL01", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E50 PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011H3KL02", "output": "39123900"}, {"text_input": "What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-005-V", "output": "38249999"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01705019", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT18020789", "output": "29362100"}, {"text_input": "What is the hs code for BEAUPLEX (TM) VH,5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF18004052", "output": "29420000"}, {"text_input": "What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF18004052", "output": "29420000"}, {"text_input": "What is the hs code for DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01801607,4614", "output": "29362400"}, {"text_input": "What is the hs code for DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01804614", "output": "29362400"}, {"text_input": "What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000175739,176817", "output": "29362900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ71213305", "output": "29362500"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ71213305,3312", "output": "29362500"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ71213312", "output": "29362500"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ71213312", "output": "29362500"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ80610105", "output": "29362300"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU MAKANAN) COA UT17110004", "output": "29362900"}, {"text_input": "What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01803039", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01803039", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT18010072", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO)(BHN BAKU MAKANAN) COA UT18040796", "output": "29362100"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ80203028", "output": "29362200"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01804434,4448", "output": "29362700"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT17110064", "output": "32041900"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01801019", "output": "32041900"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418095,96", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418096", "output": "29362900"}, {"text_input": "What is the hs code for CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00718099", "output": "29362700"}, {"text_input": "What is the hs code for CALCIUM ASCORBATE ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00718099", "output": "29362700"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80502240,2275", "output": "29362200"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80610105", "output": "29362300"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN), COA UQ80602275", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80602275,2276", "output": "29362200"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ71213305", "output": "29362500"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80602276", "output": "29362200"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ71213312", "output": "29362500"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80610105", "output": "29362300"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18040126", "output": "29362400"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN), COA UT180401126", "output": "29362400"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18040126", "output": "29362400"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00817040", "output": "29362200"}, {"text_input": "What is the hs code for DWI BI (BHN BAKU MAKANAN) COA XW91808115", "output": "21069059"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01801019", "output": "32041900"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'- PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UE01802030,40", "output": "29362300"}, {"text_input": "What is the hs code for SENSIVA SC 50 CN 10KG KA (BHN BAKU KOSMETIK) COA.1508811", "output": "29420000"}, {"text_input": "What is the hs code for EPIRUBICIN HYDROCHLORIDE BP/PHARMM EUR (BHN BAKU OBAT) COA FX0494", "output": "29419000"}, {"text_input": "What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA. 20180822", "output": "17023010"}, {"text_input": "What is the hs code for SODIUM SALICYLATE (BHN BAKU KOSMETIK)COA 201806003", "output": "29182100"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318050787 S/D 90", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0218060099", "output": "29420000"}, {"text_input": "What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01803041, 3043", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01803043", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518080199", "output": "29420000"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01803041", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01803043", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA MCS1605181,0518080198", "output": "29420000"}, {"text_input": "What is the hs code for STAY C(R) 50, 20KG BOX NA (BHN BAKU KOSMETIK) COA UT18010229,231", "output": "29362700"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518060154,199", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518080199", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK), COA 0518080199", "output": "29420000"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE,25KG BOX (BHN BAKU MAKANAN) COA TL01808307", "output": "29362700"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010014", "output": "32041900"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00218194", "output": "29362800"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18030018", "output": "32030010"}, {"text_input": "What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17110004", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18070054", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A AND D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18070039", "output": "29362100"}, {"text_input": "What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ80507005", "output": "29420000"}, {"text_input": "What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA 20180827", "output": "11081200"}, {"text_input": "What is the hs code for FRENCH MARITIME PINE BARK EXTRACT PYCNOGENOL (R) (B.BAKU OBAT) COA U/6300,SAMPLE NO COMM VALUE", "output": "13021950"}, {"text_input": "What is the hs code for FRENCH MARITIME PINE BARK EXTRACT PYCNOGENOL (R) B. BAKU OBAT, COA U/6160,SAMPLE NO COMM VALUE", "output": "13021950"}, {"text_input": "What is the hs code for FRENCH MARITIME PINE BARK EXTRACT PYCNOGENOL (R) B. BAKU OBAT, COA U/6280, SAMPLE NO COMM VALUE", "output": "13021950"}, {"text_input": "What is the hs code for ANTI SHINE WASH 45414.1 (BHN BAKU KOSMETIK) COA 10300068", "output": "38249999"}, {"text_input": "What is the hs code for PURE GREEN B&W PIT (BHN BAKU KOSMETIK) COA 10300034", "output": "38249999"}, {"text_input": "What is the hs code for ANTISHINE WASH 1 (BHN BAKU KOSMETIK) COA 10300116", "output": "38249999"}, {"text_input": "What is the hs code for ALDAVINE 5X (BHN BAKU KOSMETIK) COA 5521817", "output": "38247900"}, {"text_input": "What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 1717614", "output": "38247900"}, {"text_input": "What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830016100J", "output": "38247900"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK), COA 1810103", "output": "38247900"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5570218", "output": "38247900"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5579618", "output": "38247900"}, {"text_input": "What is the hs code for TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784026462J", "output": "38247900"}, {"text_input": "What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829016392J", "output": "38247900"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785016298J", "output": "38247900"}, {"text_input": "What is the hs code for KOLLAREN BG (100PPM) (BHN BAKU KOSMETIK) COA 821056301J", "output": "38247900"}, {"text_input": "What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016427J", "output": "38247900"}, {"text_input": "What is the hs code for SUNFLOHAIR TM (BHN BAKU KOSMETIK) COA 1747542", "output": "38247900"}, {"text_input": "What is the hs code for KAHLWAX 2956 (BHN BAKU KOSMETIK) COA F1830021-001", "output": "15211000"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180823", "output": "17029019"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180825", "output": "17029019"}, {"text_input": "What is the hs code for METHOTREXATE (BHN BAKU OBAT)", "output": "29335990"}, {"text_input": "What is the hs code for LOTUS NELUMBIUM NEL.FLOWER HS(BAHAN BAKU KOSMETIK) COA AM070938", "output": "13021950"}, {"text_input": "What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91808285", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91808287", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN B12 0.PCT WS (BHN BAKU MAKANAN) COA UT18060005,6", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN B12 0.PCT WS (BHN BAKU MAKANAN) COA UT18060006", "output": "29362600"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418043", "output": "29362200"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11804015", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11804015", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11804015", "output": "29362900"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE,25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ80506121", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ80506121,22,26", "output": "29362700"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1802022,26,32", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1802032,33", "output": "29362300"}, {"text_input": "What is the hs code for POVIDONE K25 (BHN BAKU OBAT) COA PK25-180824F11", "output": "39059990"}, {"text_input": "What is the hs code for SILYBIN/ PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10839/M1", "output": "13021950"}, {"text_input": "What is the hs code for VALERIAN D.H.E>0.8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 10885/M1", "output": "13021950"}, {"text_input": "What is the hs code for PHENYTOIN SODIUM (BHN BAKU OBAT) COA 18100497", "output": "29332100"}, {"text_input": "What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.18100536,18100605", "output": "29391900"}, {"text_input": "What is the hs code for AMBROXOL HYDROCHLORIDE POWDER (BHN BAKU OBAT) COA AHM/18127 S/D AHM/18129", "output": "29221990"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101852818", "output": "17021100"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO180601", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO170601", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK)COA EG209-180702", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK)COA EG209-180702", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM180901-PGH", "output": "38249999"}, {"text_input": "What is the hs code for POLYQUTA 400KC (BHN BAKU KOSMETIK) COA 180913107,180915116", "output": "39129090"}, {"text_input": "What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 80218", "output": "38247900"}, {"text_input": "What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 80503", "output": "38247900"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 80610", "output": "38247900"}, {"text_input": "What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 32716/M1", "output": "13021950"}, {"text_input": "What is the hs code for TEFOSE 63 (BHN BAKU SUPLEMEN) COA 171252", "output": "28399000"}, {"text_input": "What is the hs code for LABRAFIL M 1944 CS (BHN BAKU SUPLEMEN) COA 171005", "output": "28399000"}, {"text_input": "What is the hs code for LABRAFIL M 1944 CS (BAHAN BAKU SUPLEMEN) COA 171005", "output": "28399000"}, {"text_input": "What is the hs code for COMPRITOL 888 ATO (BAHAN BAKU SUPLEMEN) COA 169798", "output": "28399000"}, {"text_input": "What is the hs code for TEFOSE 63 BF (BHN BAKU SUPLEMEN) COA 171041", "output": "28399000"}, {"text_input": "What is the hs code for PYRAZINAMIDE EP/USP (BHN BAKU OBAT) COA WPOZ 089 I18, 090 I 18...", "output": "29339990"}, {"text_input": "What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA.MLAH089918", "output": "29341000"}, {"text_input": "What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA.18100604", "output": "29221990"}, {"text_input": "What is the hs code for PEG 400 (POLYETHYLENE GLYCOL) BAHAN BAKU KOSMETIK) COA.AKW0006129,6075", "output": "39072010"}, {"text_input": "What is the hs code for PROMOIS WK-GB (BHN BAKU KOSMETIK) COA KGI", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS EU-118(IS) (BHN BAKU KOSMETIK) COA KGN", "output": "38249999"}, {"text_input": "What is the hs code for SILASOMA MFA(S) (BHN BAKU KOSMETIK) COA KEF", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-180906", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-180907", "output": "38249999"}, {"text_input": "What is the hs code for OLIVE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA", "output": "38249999"}, {"text_input": "What is the hs code for WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK)COA EG138-180401", "output": "38249999"}, {"text_input": "What is the hs code for AMLODIPINE BESILATE BP/EP (BHN BAKU OBAT), COA. AMB/122/09/18 S/D AMB/125/09/18, 128 S/D 134", "output": "29333990"}, {"text_input": "What is the hs code for ASTABIO ARV-S (BHN BAKU OBAT) COA.1711211K, 1806061K", "output": "32030010"}, {"text_input": "What is the hs code for ASTABIO AW1 (BHN BAKU OBAT) COA 1809051", "output": "32030010"}, {"text_input": "What is the hs code for CONFECTIONERY INK CI-250005 RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA TSUK 1447548-1.1", "output": "32151900"}, {"text_input": "What is the hs code for KF-6038 (BHN BAKU KOSMETIK) , COA 809200", "output": "38249999"}, {"text_input": "What is the hs code for KF-96A-6CS (BHN BAKU KOSMETIK) COA 809981", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 (BHN BAKU KOSMETIK) COA. 1515313, 1516944", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218080130", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218080130", "output": "29420000"}, {"text_input": "What is the hs code for STAY C (R) 50, 20KG BOX NA (BHN BAKU KOSMETIK) COA UT18010231", "output": "29362700"}, {"text_input": "What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0318050790 S/D 792, 50793,61027", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001476503", "output": "29420000"}, {"text_input": "What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00550067,773, 1276", "output": "29420000"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT18020169", "output": "29362100"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18060170,70197", "output": "29362800"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180045,46 61", "output": "29420000"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01705019", "output": "29362900"}, {"text_input": "What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18080219", "output": "29362800"}, {"text_input": "What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0718030047", "output": "29420000"}, {"text_input": "What is the hs code for STAY-C (R) 50,5KG BAG ALU EX US (BHN BAKU KOSMETIK) COA UT17070104", "output": "29362700"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11803004", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0818040071", "output": "29420000"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ70913226", "output": "29362500"}, {"text_input": "What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW91809269", "output": "21069059"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01803646", "output": "29362400"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ80203028", "output": "29362200"}, {"text_input": "What is the hs code for VITAMIN A PALMIATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT18030171", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT18010072", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01802002", "output": "29362900"}, {"text_input": "What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18020026", "output": "29362800"}, {"text_input": "What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN), COA UT18020026", "output": "29362800"}, {"text_input": "What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18020026", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT18050009", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18060006,8", "output": "29362600"}, {"text_input": "What is the hs code for D-PANTHENOL 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01803039", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0218060107", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218080130", "output": "29420000"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN), COA UT18060030", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT18070024", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT18070024", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT18070024", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18050009", "output": "29362800"}, {"text_input": "What is the hs code for RIBOFLAVIN 5PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1803040", "output": "29362300"}, {"text_input": "What is the hs code for CIPROFLOXACIN HCL (BHN BAKU OBAT) COA HB00N1809021 S/D 27, 1809003H", "output": "29335990"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101852918", "output": "17021100"}, {"text_input": "What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND180902", "output": "29372200"}, {"text_input": "What is the hs code for PANTOPRAZOLE SODIUM (BHN BAKU OBAT) COA PSFP18033", "output": "29333990"}, {"text_input": "What is the hs code for FLORAGLO OPTISHARP 5/1 24 FS (B.BAKU SUPLEMEN) COA UE01803001, SAMPLE NO COMM VALUE", "output": "32030010"}, {"text_input": "What is the hs code for FLORAGLO OPTISHARP 5/1 24PCT FS (B. BAKU SUPLEMEN) COA UE01803002, SAMPLE NO COMM VALUE", "output": "32030010"}, {"text_input": "What is the hs code for FLORAGLO OPTISHARP 5/1 24PCT FS (B. BAKU SUPLEMEN) COA UE01803003, SAMPLE NO COMM VALUE", "output": "32030010"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608679", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608997", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607209", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH605730", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608964", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608965", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608972", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608962", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608997", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608959", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608959", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608980", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608947", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608958", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608960", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608948", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608961", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608992", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608972", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608995", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608865", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608993", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608993", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608358", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608846", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608679", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608863", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608863", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608679", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608754", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608856", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608851", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608852", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608864", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608892", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GRAY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608855", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608847", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608848", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK)COA SFP-N-080398", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK)COA 090718", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-170388", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-011388", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-070698", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK)COA HMVBD-082198", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK) COA HMVBD-082198", "output": "38249999"}, {"text_input": "What is the hs code for CORN STARCH (BHN BAKU OBAT) COA 20180906", "output": "11081200"}, {"text_input": "What is the hs code for PURICILLIN COMPACTED (BHN BAKU OBAT) COA M842377,842419,842422,23,26,16", "output": "29411020"}, {"text_input": "What is the hs code for PURIDROX TM POWDER CEFADROXILE MONOHYDRATE (BHN BAKU OBAT) COA M334582,586,587", "output": "29419000"}, {"text_input": "What is the hs code for SODIUM VALPROATE (BAHAN BAKU OBAT) COA.452035", "output": "29159090"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM INJECTABLE GRADE(BHN BAKU OBAT) COA 17091363", "output": "29331900"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM MONOHYDRATE (BHN BAKU OBAT) COA 1805646,5676,18091384,386", "output": "29331900"}, {"text_input": "What is the hs code for PYRAZINAMIDE EP/USP (BHN BAKU OBAT) COA WPOZ 1081 18, 1091 18...", "output": "29339990"}, {"text_input": "What is the hs code for OXYTETRACYCLINE DIHYDRATE INJ GRADE BP/EP (B BAKU OBAT UTK PAKAN TERNAK) COA ZT180809,721", "output": "29413000"}, {"text_input": "What is the hs code for DOXORUBICIN HYDROCHLORIDE EP (BHN BAKU OBAT) COA 061803055", "output": "29335990"}, {"text_input": "What is the hs code for CARBOPLATIN EP9 (BAHAN BAKU OBAT) COA 275180010", "output": "29335990"}, {"text_input": "What is the hs code for CARBOPLATIN EP9 (BHN BAKU OBAT) COA 275180010", "output": "29335990"}, {"text_input": "What is the hs code for CARBOPLATIN EP9 (BHN BAKU OBAT) COA 275180010", "output": "29335990"}, {"text_input": "What is the hs code for CARBOPLATIN EP9 (BHN BAKU OBAT) COA 275180010", "output": "29335990"}, {"text_input": "What is the hs code for 1,3 BUTYLENE GLYCOL, COSMETIC QUALITY(BHN BAKU KOSMETIK) COA P0618706BC, P0618730AC", "output": "29053200"}, {"text_input": "What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 189134", "output": "29332900"}, {"text_input": "What is the hs code for TEFOSE 63 (BHN BAKU KOSMETIK),COA 170796", "output": "28399000"}, {"text_input": "What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5497417", "output": "38249999"}, {"text_input": "What is the hs code for AMISOL TM 4135 (BHN BAKU KOSMETIK) COA 1731001", "output": "38249999"}, {"text_input": "What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829016600J", "output": "38249999"}, {"text_input": "What is the hs code for BODY 3 COMPLEX (BHN BAKU KOSMETIK) COA B3C010318", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK), COA 1814002", "output": "38249999"}, {"text_input": "What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 1735914", "output": "38249999"}, {"text_input": "What is the hs code for SWT-7 TM L (BHN BAKU KOSMETIK) COA 1821001", "output": "38249999"}, {"text_input": "What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829016600J", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785016298J", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1814003", "output": "38249999"}, {"text_input": "What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016427J", "output": "38249999"}, {"text_input": "What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830016100J", "output": "38249999"}, {"text_input": "What is the hs code for GUAIFENESIN USP (BHN BAKU OBAT) COA GGE-1809328 S/D 9330", "output": "29094900"}, {"text_input": "What is the hs code for PANTOPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT,COA APSS18003", "output": "29333990"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG", "output": "29362700"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN538108", "output": "35051010"}, {"text_input": "What is the hs code for STARCAP 1500 CO-PROCESSED (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537454", "output": "35051010"}, {"text_input": "What is the hs code for O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 040418/005357", "output": "38249999"}, {"text_input": "What is the hs code for CYPROHEPTADINE HCL BP/PH.EUR (BHN BAKU OBAT) COA CYP/08181011", "output": "29333990"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU MAKANAN) COA.TS00011052", "output": "29362500"}, {"text_input": "What is the hs code for KIT C6 FLOW CYTO STARTER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)", "output": "38210010"}, {"text_input": "What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8198931", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8135947", "output": "38210010"}, {"text_input": "What is the hs code for CUSTOM CS&T RUO BEADS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7222727,SAMPLE NO COMM VAL", "output": "38210010"}, {"text_input": "What is the hs code for FACS ACCUDROP BEADS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8226993,SAMPLE NO COMM VALUE", "output": "38210010"}, {"text_input": "What is the hs code for ACCUDROP FLUORESCENT BEAD ...(M. UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7311735,SAMPLE NO COMM", "output": "38210010"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18080219", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT018080009", "output": "29362100"}, {"text_input": "What is the hs code for VIT A PALM 1.0M+VIT D3 100'000 (BHN BAKU MAKANAN) COA UT18070055", "output": "29362100"}, {"text_input": "What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01803043", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01803043", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01803043", "output": "29362400"}, {"text_input": "What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000176817", "output": "29362900"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01803043,4049,6058198", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA UT1806058", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL HS, 10KG BAG (BHN BAKU KOSMETIK) COA 1017090022", "output": "29420000"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8253602", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D-XYLOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8241700", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8250526", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8214910", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8248690", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PEPTONE DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8101800,8241622", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BUFFER PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8155504", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8206906", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8215542", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255613", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8066907,8109821", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8214910", "output": "38210010"}, {"text_input": "What is the hs code for PAIL CASAMINO ACIDS TECHNICAL 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8101901", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA IC-XT 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8214910", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8079881", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8194606", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8115797", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8253602", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141815,8211649", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8234703", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8064953", "output": "38210010"}, {"text_input": "What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8178628", "output": "38210010"}, {"text_input": "What is the hs code for VIAL UNIVERSAL VIRAL TRANSPORT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 181067300", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8208727,8214910", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7121602,7338553", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8241622", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8128688", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206549", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CASAMINO ACIDS 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8197978", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8239573", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PHOSPHATE BUFFER PH 7,2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8141591", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8080511", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7332727", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8046757", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTONE GLUCOSE EXT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8193807", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8134700", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8141811", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183877", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8037753", "output": "38210010"}, {"text_input": "What is the hs code for GASPAK EZ STANDARD INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 727933901", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7009699", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MARINE BROTH 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8162748", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MIDDLEBROOK 7H9 BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8045590", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8032739", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MIDDLEBROOK 7H10 AGAR 500 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8046736", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8199596", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8219820", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8219820", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8123681", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8101787", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8183888", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8101787", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LETHEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8211630", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8158503..", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8110566,20929,76606", "output": "38210010"}, {"text_input": "What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8214977", "output": "38210010"}, {"text_input": "What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8201702", "output": "38210010"}, {"text_input": "What is the hs code for CD10 RTC HI110A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8220620", "output": "38210010"}, {"text_input": "What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8116667", "output": "38210010"}, {"text_input": "What is the hs code for IFN GAMMA APC RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8190547", "output": "38210010"}, {"text_input": "What is the hs code for ANTI-EPCAM APC EBA-1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8213706", "output": "38210010"}, {"text_input": "What is the hs code for CYTOFIX/CYTOPERM SOLN KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8150698", "output": "38210010"}, {"text_input": "What is the hs code for MS LGG1KPA ITCI PE MOPC-21 100TST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8024788", "output": "38210010"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8124811", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8151919", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8190858", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8241974", "output": "38210010"}, {"text_input": "What is the hs code for VIAL H INFLUENZAE ANTISERUM TYPE B (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8088628", "output": "38210010"}, {"text_input": "What is the hs code for HU VIMENTIN PE RV202 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7083575", "output": "38210010"}, {"text_input": "What is the hs code for CD3 FITC SK7 50 TESTS IVD(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8181542", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7332690", "output": "38210010"}, {"text_input": "What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M-31PCT (BHN BAKU OBAT) COA 101829025", "output": "28161000"}, {"text_input": "What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML , COA 16222-1, SAMPLE NO COMMERCIAL VALUE", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE DEFYNE 1ML , COA 16013-1, SAMPLE NO COMMERCIAL VALUE", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE SKINB VITLIDO 1MLD16 , COA 16200-2", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE SKINB VITALLGHLIDO 1MLD16 , COA 16191-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE LIDOCAINE 1ML D16 , COA 16199-2", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML , COA 16222-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE REFYNE 1ML , COA 16326-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE DEFYNE 1ML , COA 16013-1, 16283-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE KYSSE 1 ML , COA 16207-1", "output": "90189090"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180909", "output": "17029019"}, {"text_input": "What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA R700500", "output": "29419000"}, {"text_input": "What is the hs code for CEFTAZIDIME BUFFERED (BHN BAKU OBAT) COA R100100", "output": "29419000"}, {"text_input": "What is the hs code for METRONIDAZOLE BP (BHN BAKU OBAT) COA MTZ/8091566", "output": "29332900"}, {"text_input": "What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0029124", "output": "38249999"}, {"text_input": "What is the hs code for AC091KF FUCOGEL 1.5P 25 KG (BHN BAKU KOSMETIK) COA 0029184", "output": "38249999"}, {"text_input": "What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA 0000013180", "output": "33029000"}, {"text_input": "What is the hs code for THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA.0000013172", "output": "33029000"}, {"text_input": "What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA 0000013180", "output": "33029000"}, {"text_input": "What is the hs code for MIRANOL ULTRA C32 200KG PLASCTIC DRUM (BHN BAKU KOSMETIK) COA BP808500R", "output": "34029099"}, {"text_input": "What is the hs code for DURALAC (R) H (BHN BAKU OBAT) COA LC 015-18-805", "output": "17021100"}, {"text_input": "What is the hs code for P.GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 32113/M1", "output": "13021990"}, {"text_input": "What is the hs code for METRONIDAZOLE BP (BHN BAKU OBAT) COA MTZ/8091537", "output": "29332900"}, {"text_input": "What is the hs code for OPADRY AMB II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609458", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609431", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609457", "output": "38249999"}, {"text_input": "What is the hs code for COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-1709025/35678", "output": "38249999"}, {"text_input": "What is the hs code for AC019KC PHYTOVITYL C 5KG (BHN BAKU KOSMETIK) COA 0028393", "output": "38249999"}, {"text_input": "What is the hs code for BILBERRY (V.MYRTILLUS) ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 32752/M2", "output": "13021950"}, {"text_input": "What is the hs code for CORTISONE ACETATE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1800951018", "output": "29372200"}, {"text_input": "What is the hs code for OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET), COA WP804215", "output": "32151900"}, {"text_input": "What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND171001, ND180904", "output": "29372200"}, {"text_input": "What is the hs code for LANSOPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA LP0218C026", "output": "29333990"}, {"text_input": "What is the hs code for ONDASENTRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA 18OS001", "output": "29332900"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE,25KG BOX (BHN BAKU MAKANAN) COA TL01807089, 8307", "output": "29362700"}, {"text_input": "What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 181243", "output": "13021990"}, {"text_input": "What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 180264", "output": "13021990"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 186131", "output": "13021990"}, {"text_input": "What is the hs code for ALPINIAWHITE (BHN BAKU KOSMETIK) COA 181474", "output": "13021990"}, {"text_input": "What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 180807", "output": "29329990"}, {"text_input": "What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETI) COA 181104", "output": "13021990"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20180701", "output": "29362800"}, {"text_input": "What is the hs code for BICAR FOOD 0/50 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP26418", "output": "28363000"}, {"text_input": "What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT679972", "output": "32151900"}, {"text_input": "What is the hs code for OPALUX TAN (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT679528", "output": "32151900"}, {"text_input": "What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT678523", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609469", "output": "38249999"}, {"text_input": "What is the hs code for PIROXICAM (BHN BAKU OBAT) COA PRX2018011M", "output": "29349990"}, {"text_input": "What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 18092006", "output": "38249999"}, {"text_input": "What is the hs code for TRIAMCINOLONE ACETONIDE MICRONIZED (BHN BAKU OBAT) COA NY1698M", "output": "29372200"}, {"text_input": "What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NY0865M", "output": "29372200"}, {"text_input": "What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT (BHN BAKU KOSMETIK)COA HMVBD-082198", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-010248", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-010248", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSFAC-021088", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 2018G1505", "output": "38249999"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518080200,0518090229", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518090229", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA 0518080198,0518090230", "output": "29420000"}, {"text_input": "What is the hs code for DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01805619,TL01806623", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0318061028 S/D 31", "output": "29420000"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)(BHN BAKU KOSMETIK) COA UT18020170", "output": "29362100"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18070197", "output": "29362800"}, {"text_input": "What is the hs code for PARSOL EHS,25KG PC (BHN BAKU KOSMETIK) COA 0718030047", "output": "29420000"}, {"text_input": "What is the hs code for STAY C (R) ,5KG BAG/ALU (BHN BAKU KOSMETIK) COA UE01802016", "output": "29362700"}, {"text_input": "What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218080130,143", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518090229", "output": "29420000"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1802033, 1803038", "output": "29362300"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT GRANULATION ,25KG BOX(BHN BAKU SUPLEMEN) COA WB00618917", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACIDS 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB00618917", "output": "29362700"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18040126", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT18070024", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11804015", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18040126", "output": "29362400"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX ALU (BHN BAKU SUPLEMEN) COA TL01804362", "output": "29362700"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01807008, 7099", "output": "29362700"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418043", "output": "29362200"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18060030, 60039", "output": "29362800"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE ,25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ80506126,6127", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE,25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ80506127,28,42,43", "output": "29362700"}, {"text_input": "What is the hs code for PX 103070-C3 (BHN BAKU MAKANAN) COA XW91809349", "output": "21069059"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1803039", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1803039", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1803039,44", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1803044", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18060007", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT18010072", "output": "29362900"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ80606143", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01804362,4400", "output": "29362700"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT18040136", "output": "29362400"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18060180", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18060024", "output": "29362100"}, {"text_input": "What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01803040", "output": "29362400"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418096", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418096 S/D 98", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418098,99", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3 PCT (BHN BAKU SUPLEMEN) COA WB00418099", "output": "29362900"}, {"text_input": "What is the hs code for CALCIUM ASCORBATE ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00718099", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE, 5KG BOX ALU(BHN BAKU MAKANAN) COA UQ80606133", "output": "29362700"}, {"text_input": "What is the hs code for CALCIUM ASCORBATE, 25KG BOX ALU (BHN BAKU SUPLEMEN) COA WB00718099", "output": "29362700"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1802033", "output": "29362300"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN), COA UQ8060228", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80602279,87", "output": "29362200"}, {"text_input": "What is the hs code for CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00718099", "output": "29362700"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00517030", "output": "29362300"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00517030", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18060007", "output": "29362600"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00517030", "output": "29362300"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT18060039", "output": "29362800"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01801020", "output": "32041900"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01801020", "output": "32041900"}, {"text_input": "What is the hs code for KF-6048 (BHN BAKU KOSMETIK) , COA 80902, SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for KSP-100 (BHN BAKU KOSMETIK) COA 809627, SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN )COA RBA2611800", "output": "28363000"}, {"text_input": "What is the hs code for GUAIFENESIN USP (BHN BAKU OBAT) COA GCE-1809335 S/D 354", "output": "29094900"}, {"text_input": "What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-2031018", "output": "29334910"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20180923", "output": "17029019"}, {"text_input": "What is the hs code for OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609050", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609429", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609572", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609430", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609469", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609431", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609431", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609187", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609438", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609439", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609441", "output": "38249999"}, {"text_input": "What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609440", "output": "32151900"}, {"text_input": "What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609460", "output": "32151900"}, {"text_input": "What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609460", "output": "32151900"}, {"text_input": "What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609460", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY AMB II PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609433", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609434", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609437", "output": "39061090"}, {"text_input": "What is the hs code for VC ASCORBIC ACID SPECIAL , 25KG BAL (BHN BAKU SUPLEMEN) COA HPD1803135", "output": "29362700"}, {"text_input": "What is the hs code for DIACEREIN EP (BHN BAKU OBAT) COA DCN/40510918", "output": "29189900"}, {"text_input": "What is the hs code for PURICILLIN COMPACTED (BHN BAKU OBAT) COA. M842426,27 29,30,34", "output": "29411020"}, {"text_input": "What is the hs code for LIPOID PPL-600 (BHN BAKU OBAT) COA.572000-2180222/007-008 (2)", "output": "29232010"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT EMULS (BHN BAKU MAKANAN) COA UE01806010", "output": "32041900"}, {"text_input": "What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF, 1KG ALUF (BHN BAKU SUPLEMEN) COA UE01806039", "output": "32030010"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00218194", "output": "29362800"}, {"text_input": "What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF, 1KG ALUF (BHN BAKU SUPLEMEN) COA UE01806039", "output": "32030010"}, {"text_input": "What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17110018", "output": "29420000"}, {"text_input": "What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18070054", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A AND D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18090040", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB01017666", "output": "29362800"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18010014", "output": "32041900"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00218194", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB01017666", "output": "29362800"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18030018", "output": "32030010"}, {"text_input": "What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17110018", "output": "29420000"}, {"text_input": "What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT18040040", "output": "29362500"}, {"text_input": "What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110004", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18070054", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT180090040", "output": "29362100"}, {"text_input": "What is the hs code for REDIVIVO (R) LYCOPENE 10PCT FS ,5KG ALU (BHN BAKU SUPLEMEN) COA UE01805005", "output": "29420000"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00218194", "output": "29362800"}, {"text_input": "What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT17110004", "output": "32041900"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18030018", "output": "32030010"}, {"text_input": "What is the hs code for KF-96A-6CS (BHN BAKU KOSMETIK) , COA 810987", "output": "38249999"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT LYOPHILIZED (BHN BAKU OBAT)COA NY2401", "output": "29372900"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101853418", "output": "17021100"}, {"text_input": "What is the hs code for LUBRIPHARM (R) SSF NF/EP/JP (BHN BAKU OBAT) COA 121808941", "output": "28161000"}, {"text_input": "What is the hs code for STAY C (R) 50, 5KG BOX/ALU (BHN BAKU KOSMETIK) COA UE01802023", "output": "29362700"}, {"text_input": "What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18060145", "output": "29362800"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180061,62,63", "output": "29420000"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OPI1803004", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE PC, 20KG BAL (BHN BAKU KOSMETIK) COA OP81801005", "output": "29362900"}, {"text_input": "What is the hs code for D-PHANTENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL01806063", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01803040,6063", "output": "29362400"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418026", "output": "29362500"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418026,8028", "output": "29362500"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418028", "output": "29362500"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418028", "output": "29362500"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ80810152", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80810152", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80810152", "output": "29362300"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT18070021", "output": "32041900"}, {"text_input": "What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 1809EF6010", "output": "29224900"}, {"text_input": "What is the hs code for METHOCEL E15 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011HCCL01", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011HC2L02", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I65001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I65001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I1M003", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100 PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I6D003", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I41002", "output": "39123900"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT, GRANULATION 25KG BOX (BHN BAKU SUPLEMEN) COA WB00818950,51", "output": "29362700"}, {"text_input": "What is the hs code for OLIO VINACCIOLI RAFFINATO (BHN BAKU KOSMETIK) COA.B1800252", "output": "15152919"}, {"text_input": "What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 80317, 80320", "output": "38029090"}, {"text_input": "What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 62855P", "output": "38249999"}, {"text_input": "What is the hs code for TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA645321", "output": "32151900"}, {"text_input": "What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1808038,40 S/D 42,44 S/D 46, 48 S/D 50", "output": "29224900"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 29671018,29681018,29691018...", "output": "29359000"}, {"text_input": "What is the hs code for RIFAMPICIN POWDER (BHN BAKU OBAT) COA 2272, SAMPLE NO COMMERCIAL VALUE", "output": "29419000"}, {"text_input": "What is the hs code for TSPL-30-ID (BHN BAKU KOSMETIK) , COA 805010, SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 02/17GAAK", "output": "28399000"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 02/17GAAK, SAMPLE NO COMM VALUE", "output": "28399000"}, {"text_input": "What is the hs code for GELOIL SC (BHN BAKU SUPLEMEN) COA 169611", "output": "28399000"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA KJE", "output": "38249999"}, {"text_input": "What is the hs code for VISTANOL GDHR (BHN BAKU KOSMETIK) COA KHJ", "output": "38249999"}, {"text_input": "What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA KGM", "output": "38249999"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN )COA RBA2781800", "output": "28363000"}, {"text_input": "What is the hs code for CALCIUM GLUCONATE EP (BHN BAKU OBAT) COA CGA-EP1807080", "output": "29181600"}, {"text_input": "What is the hs code for CENTELLA ASIATICA TRITERPP./C (BHN BAKU SUPLEMEN) COA 32716/M3", "output": "38249999"}, {"text_input": "What is the hs code for ECHINACEA ANG. DRY PURIF. EX (BHN BAKU SUPLEMEN) COA 32527/M1", "output": "13021950"}, {"text_input": "What is the hs code for BILBERRY (V. MYRTILLUS) ET. EX.36PCT (BHN BAKU SUPLEMEN) COA 32752/M3", "output": "13021950"}, {"text_input": "What is the hs code for SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10918/M1", "output": "38249999"}, {"text_input": "What is the hs code for KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0280618", "output": "29339990"}, {"text_input": "What is the hs code for SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 1807502477,77,1607046576", "output": "29322090"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA.M113123", "output": "29339990"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113123", "output": "29339990"}, {"text_input": "What is the hs code for SILVERION 2400 (BHN BAKU KOSMETIK) COA.17-09093", "output": "38249999"}, {"text_input": "What is the hs code for CLOZAPINE (BHN BAKU OBAT) COA 740106", "output": "29335990"}, {"text_input": "What is the hs code for NOREPINEPHRINE BITARTRATE (BHN BAKU OBAT) COA 450104", "output": "29379010"}, {"text_input": "What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA.18100640", "output": "29395900"}, {"text_input": "What is the hs code for DOPAMINE HYDROCHLORIDE (BHN BAKU OBAT), COA 18100236", "output": "29222900"}, {"text_input": "What is the hs code for NYSTATIN (BHN BAKU OBAT) COA.C114236", "output": "29419000"}, {"text_input": "What is the hs code for NYSTATIN MICRONIZED (BHN BAKU OBAT) COA C130870", "output": "29419000"}, {"text_input": "What is the hs code for IBUPROFEN 40 GRADE (BHN BAKU OBAT) COA 4050-3373", "output": "29163990"}, {"text_input": "What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN1380618", "output": "29221990"}, {"text_input": "What is the hs code for PURIDROX TM POWDER CEFADROXILE MONOHYDRATE (BHN BAKU OBAT) COA M340031,32,33", "output": "29419000"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101853018", "output": "17021100"}, {"text_input": "What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103862518", "output": "17021100"}, {"text_input": "What is the hs code for POLYQUTA 400KC (BHN BAKU KOSMETIK) COA 181024142", "output": "39129090"}, {"text_input": "What is the hs code for AC019KC PHYTOVITYL C 5KG (BHN BAKU KOSMETIK) COA 0028393", "output": "38249999"}, {"text_input": "What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ80507006", "output": "29420000"}, {"text_input": "What is the hs code for STAY-C (R) 50, 20KG BOX /ALU (BHN BAKU KOSMETIK) COA UE01809037,9045", "output": "29362700"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO180703", "output": "38249999"}, {"text_input": "What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-180803-GS", "output": "38249999"}, {"text_input": "What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIV171001-BGBIO", "output": "38249999"}, {"text_input": "What is the hs code for SAFFLOWER REFINED OIL (BHN BAKU KOSMETIK) COA CARHR181003-DW", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS180201", "output": "38249999"}, {"text_input": "What is the hs code for LOTUS OILY EXTRACT GT10 (BHN BAKU KOSMETIK) COA NEN180606-H", "output": "38249999"}, {"text_input": "What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP796060", "output": "32151900"}, {"text_input": "What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP797454", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP796063", "output": "32151900"}, {"text_input": "What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP798864", "output": "32151900"}, {"text_input": "What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP800665", "output": "39059990"}, {"text_input": "What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP804017", "output": "39059990"}, {"text_input": "What is the hs code for LIQUORICE LC (BHN BAKU KOSMETIK) COA.111279/P82508-P82510", "output": "13021920"}, {"text_input": "What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91810118,119", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318061033", "output": "29420000"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18080229", "output": "29362800"}, {"text_input": "What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001476503", "output": "29420000"}, {"text_input": "What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01801802,TL01804807", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT18020170", "output": "29362100"}, {"text_input": "What is the hs code for ETHYL PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01804807", "output": "29362400"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11803004,OP11805017", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000175446, 0000176817", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000176817,0000177122", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI17100009", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI1700009", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI1700009", "output": "29362900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18080227", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18080227", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18080227", "output": "29362800"}, {"text_input": "What is the hs code for DL-A- TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18080227", "output": "29362800"}, {"text_input": "What is the hs code for DL-A- TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18080227", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18080227,229", "output": "29362800"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UT01805032", "output": "32041900"}, {"text_input": "What is the hs code for PX 204005 (BHN BAKU MAKANAN) COA XW91809229", "output": "21069059"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18040126,128", "output": "29362400"}, {"text_input": "What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18060145", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18060145", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18060145", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18080229", "output": "29362800"}, {"text_input": "What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT680653", "output": "32151900"}, {"text_input": "What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT678420", "output": "32151900"}, {"text_input": "What is the hs code for OPATINT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT680654", "output": "32151900"}, {"text_input": "What is the hs code for OPATINT YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT680655", "output": "32151900"}, {"text_input": "What is the hs code for ALPINAWHITE (BHN BAKU KOSMETIK) COA 181914", "output": "13021950"}, {"text_input": "What is the hs code for RIFAMPICIN POWDER (BHN BAKU OBAT) COA 2272, E736, SAMPLE NO COMMERCIAL VALUE", "output": "29419000"}, {"text_input": "What is the hs code for SPIRAMYCIN (BHN BAKU OBAT) COA 180917043M, 40M", "output": "29419000"}, {"text_input": "What is the hs code for PIRACETAM (BHN BAKU OBAT) COA 20181003", "output": "29337900"}, {"text_input": "What is the hs code for KETOROLAC TROMETHAMOL/TROMETHAMINE (BHN BAKU OBAT) COA. 18100672", "output": "29339990"}, {"text_input": "What is the hs code for VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU MAKANAN) COA HPB1802140", "output": "29362700"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK COA B270918", "output": "39123900"}, {"text_input": "What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 201800311,293", "output": "28183000"}, {"text_input": "What is the hs code for SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10918/M1", "output": "38249999"}, {"text_input": "What is the hs code for SILYMARIN/ PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 10935/M1", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609899", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY KB WHITE(BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609888", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609888", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609875", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609874", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609574", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609882", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH608134", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609887", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609982", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609884", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609904", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609876", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609873", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609889", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609905", "output": "38249999"}, {"text_input": "What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0026163", "output": "38249999"}, {"text_input": "What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP797597", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C YELLOW #5/TARTRAZINE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP796063", "output": "32151900"}, {"text_input": "What is the hs code for MATIPURE TM OIL FREE (BHN BAKU KOSMETIK) COA 1822301", "output": "38249999"}, {"text_input": "What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 1735914", "output": "38249999"}, {"text_input": "What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 1724514", "output": "38249999"}, {"text_input": "What is the hs code for B- WHITE (BHN BAKU KOSMETIK) COA 829016600J", "output": "38249999"}, {"text_input": "What is the hs code for CAPIXYL (BHN BAKU KOSMETIK), COA 830016094J", "output": "38249999"}, {"text_input": "What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830016105J", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1814003", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1817802", "output": "38249999"}, {"text_input": "What is the hs code for TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784026462J", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK)COA MUP-021168", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK)COA MCP-N-052768", "output": "38249999"}, {"text_input": "What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA 0518090230", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518090229", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518090229,253", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518090253", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P8U15QA000", "output": "29420000"}, {"text_input": "What is the hs code for TRANSCUTOL HP (BHN BAKU SUPLEMEN) COA 171859", "output": "28399000"}, {"text_input": "What is the hs code for COMPRITOL 888 ATO (BHN BAKU SUPLEMEN) COA 170488", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT),COA 18E2006", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 18E2203", "output": "28399000"}, {"text_input": "What is the hs code for EMULCIRE 61 WL 2659 (BHN BAKU OBAT) COA 170106", "output": "28399000"}, {"text_input": "What is the hs code for IONOL CP (BHN BAKU KOSMETIK) COA 01140518", "output": "29420000"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011HCLL01", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I86001", "output": "39123900"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 10 PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D184I5A021", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180142001", "output": "39123900"}, {"text_input": "What is the hs code for SK BIOLAND PF SC GLUCAN (BHN BAKU KOSMETIK)COA CPG-500688", "output": "38249999"}, {"text_input": "What is the hs code for PERMETHRIN PHARMA GRADE BHN BAKU OBAT COA PE0022-S77", "output": "29163990"}, {"text_input": "What is the hs code for TEXBIND TG BH (BHN BAKU MAKANAN),COA 2018103001", "output": "35051090"}, {"text_input": "What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP79604", "output": "32151900"}, {"text_input": "What is the hs code for ERYTRHROSINE AL 38PCT-42PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP7988631", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP797606", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C BLUE #1/BRILLIANT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP795612", "output": "32151900"}, {"text_input": "What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 180807", "output": "29329990"}, {"text_input": "What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 181522", "output": "13021990"}, {"text_input": "What is the hs code for MANDARIN CLEAR (BHN BAKU KOSMETIK) COA 181472", "output": "13021990"}, {"text_input": "What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 181755", "output": "38249999"}, {"text_input": "What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 201800311", "output": "28183000"}, {"text_input": "What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 18290070", "output": "30039000"}, {"text_input": "What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 18290097", "output": "30039000"}, {"text_input": "What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 18290100", "output": "30039000"}, {"text_input": "What is the hs code for GLICLAZIDE (BHN BAKU OBAT) COA 1840002430", "output": "29359000"}, {"text_input": "What is the hs code for LIPOID S20 (BHN BAKU OBAT) COA.572000-2180121/075-089 (15)", "output": "29232010"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101853718", "output": "17021100"}, {"text_input": "What is the hs code for NIACINAMIDE USP (BHN BAKU KOSMETIK) COA 18-19/NMD(P)/U/122", "output": "29362900"}, {"text_input": "What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA. 8MT180873", "output": "30032000"}, {"text_input": "What is the hs code for PHASEOLUS VULGARIS DRY EXTRACT (BHN BAKU SUPLEMEN) COA 32599/M1", "output": "13021950"}, {"text_input": "What is the hs code for SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10918/M1", "output": "38249999"}, {"text_input": "What is the hs code for VALSARTAN BP/USP (BAHAN BAKU OBAT) COA.2-PXO-0690919", "output": "29332900"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01808079", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL (BHN BAKU KOSMETIK) COA TL01808079", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01808079", "output": "29362400"}, {"text_input": "What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91810353", "output": "29420000"}, {"text_input": "What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91811002,003", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA 0518090260", "output": "29420000"}, {"text_input": "What is the hs code for STAY C (R) 50, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UE01802023", "output": "29362700"}, {"text_input": "What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0718030056", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318101510 S/D 13", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318101513 S/D 15", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0218060099,0218090158", "output": "29420000"}, {"text_input": "What is the hs code for BISOPROLOL FUMARATE USP (BHN BAKU OBAT) COA SLL/BF/0918004", "output": "29221990"}, {"text_input": "What is the hs code for PYRAZINAMIDE EP/USP (BHN BAKU OBAT) COA WPOZ 131 J 18, WHOPZ 1312 J 18...", "output": "29339990"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA KJI", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS S-CAQ (BHN BAKU KOSMETIK) COA KHD", "output": "38249999"}, {"text_input": "What is the hs code for SILASOMA MFA(S) (BHN BAKU KOSMETIK) COA KKG", "output": "38249999"}, {"text_input": "What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 181401", "output": "13021990"}, {"text_input": "What is the hs code for SOLBROL P (BHN BAKU KOSMETIK) COA PR18780518", "output": "29182910"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE /M 1.0 MIU (BHN BAKU MAKANAN) COA UT18040020,21", "output": "29362100"}, {"text_input": "What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00218443", "output": "29362700"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18060028", "output": "32030010"}, {"text_input": "What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110018,19", "output": "29420000"}, {"text_input": "What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT18010012", "output": "29362500"}, {"text_input": "What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P8U15QA000", "output": "29420000"}, {"text_input": "What is the hs code for VALERIAN D.H.E > 0,8PCT VAL.AC (BHN BAKU SUPLEMEN) COA 10945/M1", "output": "13021950"}, {"text_input": "What is the hs code for FENTACARE 2231 EF (BHN BAKU KOSMETIK )COA ZH18J0604,1905,0106,711,712", "output": "34021990"}, {"text_input": "What is the hs code for BICAR FOOD 0/50 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP30118", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (B BAKU OBAT) COA MTP28918,SAMPLE NO COMM VALUE", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU OBAT) COA MTP28918, SAMPLE NO COMM VALUE", "output": "28363000"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT18070024", "output": "29362900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80313068", "output": "29362500"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18040129", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01806063", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL01806063", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL01806063", "output": "29362400"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11805017", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA WB00418028", "output": "29362500"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518033", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT18040172", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT18010072", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18040128,129", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT18050798", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN B12 0.PCT WS (BHN BAKU MAKANAN) COA UT18060014", "output": "29362600"}, {"text_input": "What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE01807002", "output": "29362100"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01807003", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01807003", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418028", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN PREMIX, TYPE MM81 (105PCT) BHN BAKU MAKANAN,COA XW91810159", "output": "21069059"}, {"text_input": "What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE01807002", "output": "29362100"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01807003", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01807003", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418028", "output": "29362500"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518033", "output": "29362300"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18050006,60024", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18050003", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18050003,60039", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN), COA UT18080022", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18080022", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18060015", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18060015", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18060008,60014", "output": "29362600"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01805032", "output": "32041900"}, {"text_input": "What is the hs code for ASCORBIC ACID 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01804459", "output": "29362700"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN), COA UT18040136", "output": "29362400"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ80403076", "output": "29362200"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01805032", "output": "32041900"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01804459", "output": "29362700"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11805017", "output": "29362900"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ80403076", "output": "29362200"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA EB00418028,29", "output": "29362500"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418029", "output": "29362500"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518033", "output": "29362300"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610334", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610371", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH607478", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610328", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610333", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610332", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609501", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH609501", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610536", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610329", "output": "38249999"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8127705", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8241622", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8165971", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LACTONE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079881", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8041622", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8193816", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8171598", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC /NONFERMENTER(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8110699,740", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8130513", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8222649", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8092580", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8222649", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK 90MM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8219820", "output": "38210010"}, {"text_input": "What is the hs code for KIT C6 FLOW CUTOMETRY FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1811556540", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7349871", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8206836", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK 90MM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219820,8239772..", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8073877", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8242965", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8241622", "output": "38210010"}, {"text_input": "What is the hs code for KIT MAINTENANCE C6 FLOW CYT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)", "output": "38210010"}, {"text_input": "What is the hs code for TUBE CRYSTAL E/ ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8235668", "output": "38210010"}, {"text_input": "What is the hs code for SOLUTION DECONTAMINATION CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1811536538", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7338553", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8059873", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SABORAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183667", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8155504", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 82822931", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255613", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8164642", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8073950", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183888", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8115797,8141537", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8064953", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8134769", "output": "38210010"}, {"text_input": "What is the hs code for POUCH GASPAK EZ CO2 SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 7339794", "output": "38210010"}, {"text_input": "What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8212919", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8114740", "output": "38210010"}, {"text_input": "What is the hs code for KIT C6 FLOW CYTOMETRY FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1811556540", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PEPTONE WATER 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7332727", "output": "38210010"}, {"text_input": "What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 82122903,8229637", "output": "38210010"}, {"text_input": "What is the hs code for PAI; TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8261624.828357", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8219737", "output": "38210010"}, {"text_input": "What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8228637", "output": "38210010"}, {"text_input": "What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8058982", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PROTEOSE PEPTONE NO 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 82327928009830", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141966", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183841", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8215542", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MONNITOL SALT AGAR BBL,500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8206562", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8227609", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141903", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8193816", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8233861", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8127705", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8242960", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8242965,8239768", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8011671", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8206558", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8080511", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE L-ARABINOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8211671", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7332727", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8046757", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE UNIVERSAL PREENRICHMENT BROTH500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8171952", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8141811", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CZAPEK DOX BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8215544", "output": "38210010"}, {"text_input": "What is the hs code for PANEL VIEWER EUROPE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 457987", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8134767", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8037719", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7250994", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TINSDALE BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8178912", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8193979", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8206699833", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7363785", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE M FC BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8103692", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PSEUDOMONAS ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7235847", "output": "38210010"}, {"text_input": "What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA.MLAH1001018", "output": "29341000"}, {"text_input": "What is the hs code for MELOXICAM USP (BHN BAKU OBAT) COA MLAH0981018", "output": "29341000"}, {"text_input": "What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8135947", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8134797", "output": "38210010"}, {"text_input": "What is the hs code for MANNITOL POWDER USP/EP - MANNO (BHN BAKU OBAT) COA.301810303", "output": "29054300"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8162741", "output": "38210010"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8159661", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8176609", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7314928", "output": "38210010"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8124811", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEMOGLOBIN SOL 2PCT 100ML 10 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8218557", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7220790", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE FOLIC ACID ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8114908", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8190858", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8151919", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8155510", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8151919", "output": "38210010"}, {"text_input": "What is the hs code for CD N34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8220609", "output": "38210010"}, {"text_input": "What is the hs code for CD7 FITC M-T701 50 TESTS RUO/G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8197824", "output": "38210010"}, {"text_input": "What is the hs code for CD10 FITC HI 10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8220620", "output": "38210010"}, {"text_input": "What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8220589", "output": "38210010"}, {"text_input": "What is the hs code for BD CST BEADS KIT 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 80759", "output": "38210010"}, {"text_input": "What is the hs code for CD3 PERCP SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8220687", "output": "38210010"}, {"text_input": "What is the hs code for CD45 PERCP 2D1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8270855", "output": "38210010"}, {"text_input": "What is the hs code for CD34 PE 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8285754", "output": "38210010"}, {"text_input": "What is the hs code for CD38 APC HB7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8204729", "output": "38210010"}, {"text_input": "What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8204557", "output": "38210010"}, {"text_input": "What is the hs code for IFN GAMMA APC RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8190547", "output": "38210010"}, {"text_input": "What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8232501", "output": "38210010"}, {"text_input": "What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8214977", "output": "38210010"}, {"text_input": "What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8201702", "output": "38210010"}, {"text_input": "What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8256655", "output": "38210010"}, {"text_input": "What is the hs code for ANTI HLA-DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 81987610", "output": "38210010"}, {"text_input": "What is the hs code for CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8254780", "output": "38210010"}, {"text_input": "What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8268724", "output": "38210010"}, {"text_input": "What is the hs code for ANTI-MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8250847", "output": "38210010"}, {"text_input": "What is the hs code for CD79A PE HM47 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8179861", "output": "38210010"}, {"text_input": "What is the hs code for ACCUDROP FLUORESCENT BEADS 25 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8059791", "output": "38210010"}, {"text_input": "What is the hs code for LINEAGE COCKTAIL 1 (LIN 1) FITC 50 TESTS (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8178601", "output": "38210010"}, {"text_input": "What is the hs code for CD45 FITC 2D1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8214831", "output": "38210010"}, {"text_input": "What is the hs code for HU CD4 FITC RPA-T4 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8037703", "output": "38210010"}, {"text_input": "What is the hs code for STAIN BUFFER FBS 500ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8166639", "output": "38210010"}, {"text_input": "What is the hs code for LYSING BUFFER 10X CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8220866", "output": "38210010"}, {"text_input": "What is the hs code for HU CD25 FITC M-A251 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8143577", "output": "38210010"}, {"text_input": "What is the hs code for MS LG KPA COMP BEAD SET 6ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8087701", "output": "38210010"}, {"text_input": "What is the hs code for VIA-PROBE CELL VIABILITY SOLUTION (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8169990", "output": "38210010"}, {"text_input": "What is the hs code for MS LG G1KPA ITCI PE MOPC0-21 100TS(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8024788", "output": "38210010"}, {"text_input": "What is the hs code for HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8081908", "output": "38210010"}, {"text_input": "What is the hs code for HU CD45 HORIZON V500 H130 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8170906", "output": "38210010"}, {"text_input": "What is the hs code for HU CD26 FITC M-A-261 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8088577", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8141691", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELTURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7362985", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8155510", "output": "38210010"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8159608", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8176609,8213631", "output": "38210010"}, {"text_input": "What is the hs code for HU REGULATORY T CELL CKTL 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8281833", "output": "38210010"}, {"text_input": "What is the hs code for CD34 PE 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8285754", "output": "38210010"}, {"text_input": "What is the hs code for MS LG KPA COMP BEAD SET 6ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8197547", "output": "38210010"}, {"text_input": "What is the hs code for HU CD4 PE CY7 SK3 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 71809421671", "output": "38210010"}, {"text_input": "What is the hs code for VIAL TINSDALE ENRICHMENT 6X15ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8269970", "output": "38210010"}, {"text_input": "What is the hs code for CD3 APC SK7 100TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8249595", "output": "38210010"}, {"text_input": "What is the hs code for CD3 APC SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8249595", "output": "38210010"}, {"text_input": "What is the hs code for FACS ACCUDROP BEADS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8226993", "output": "38210010"}, {"text_input": "What is the hs code for RESTYLANE SKINB VITLIDO 1MLD16 , COA 16200-2, 16419-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE SKINB VITALLGHLIDO 1MLD16 , COA 16373-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML , COA 16378-1.16445-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE VOLYME 1ML , COA 16046-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE KYSSE 1 ML , COA 16207-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML (BHN BAKU OBAT) COA 16378-1 SAMPLE NO COMMMERCIAL VALUE", "output": "90189090"}, {"text_input": "What is the hs code for VIRGIN OLIVE OIL CONFORM TO THE EUR ( BHN BAKU KOSMETIK) COA 0000022783", "output": "38249999"}, {"text_input": "What is the hs code for VIRGIN SWEET ALMOND OIL CONFORM TO THE EUR PH (BHN BAKU KOSMETIK) COA 0000023467", "output": "38249999"}, {"text_input": "What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT18090087", "output": "29362100"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18090249", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18090272,273", "output": "29362800"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01804593001", "output": "29362700"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418043", "output": "29362200"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418043,44", "output": "29362200"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB0418044", "output": "29362200"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ80606145,6146", "output": "29362700"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ80910167", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80910167", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ80710124", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ80710124", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80810157", "output": "29362300"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01805032", "output": "32041900"}, {"text_input": "What is the hs code for PARSOL 340,25KG PC (BHN BAKU KOSMETIK) COA 0218100179", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218100179", "output": "29420000"}, {"text_input": "What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF18127017", "output": "29420000"}, {"text_input": "What is the hs code for STAY C (R) 50,20KG BOX ALU (BHN BAKU KOSMETIK) COA UE01809037", "output": "29362700"}, {"text_input": "What is the hs code for BEAUPLEX (TM) VH,5KG BAG ALU (BHN BAKU KOSMETIK) COA UF18127017", "output": "29420000"}, {"text_input": "What is the hs code for DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01806623", "output": "29362400"}, {"text_input": "What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 81008", "output": "38247900"}, {"text_input": "What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 81008", "output": "38247900"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 80809", "output": "38247900"}, {"text_input": "What is the hs code for OILESS CITY TM (BHN BAKU KOSMETIK) COA 71104", "output": "38247900"}, {"text_input": "What is the hs code for MATCHA GREEN TEA EXTRACT CSP 6 TC ( BHN BAKU KOSMETIK), COA CSP 18014 EOU", "output": "38249999"}, {"text_input": "What is the hs code for ISOCELL TM SLIM (DISC) (BHN BAKU KOSMETIK) COA 1823202", "output": "38249999"}, {"text_input": "What is the hs code for ISOCELL TM SLIM (DISC) (BHN BAKU KOSMETIK) COA 1823202", "output": "38249999"}, {"text_input": "What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5541718", "output": "38249999"}, {"text_input": "What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 1735914", "output": "38249999"}, {"text_input": "What is the hs code for B-WHITE (BHN BAKU KOSMETIK), COA 829016600J", "output": "38249999"}, {"text_input": "What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830016105J", "output": "38249999"}, {"text_input": "What is the hs code for EXO-T (BHN BAKU KOSMETIK) COA 715016602J", "output": "38249999"}, {"text_input": "What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016605J", "output": "38249999"}, {"text_input": "What is the hs code for TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784026310J", "output": "38249999"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1802823436", "output": "29372900"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN538434", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN538389", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN538468", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN538522", "output": "35051010"}, {"text_input": "What is the hs code for STARCAP 1500 CO-PROCESSED (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537461", "output": "35051010"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 14 PREMIUM (BHN BAKU OBAT UTK PEWARNA TABLET) COA D184139021", "output": "39123900"}, {"text_input": "What is the hs code for RANITIDINE HYDROCHLORIDE USP(INJECTABLE USE) (BHN BAKU OBAT) COA RH 1128 11 18", "output": "29321900"}, {"text_input": "What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1830671, 1852295,1852302", "output": "29242930"}, {"text_input": "What is the hs code for EUXYL K 100 CN 10KG KA (BHN BAKU KOSMETIK) COA 1514878, 1516802", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 CN 10KG KA (BHN BAKU KOSMETIK) COA 1515976,1517645", "output": "38249999"}, {"text_input": "What is the hs code for GROTANOL 3025 CN 10KG KA (BHN BAKU KOSMETIK) COA 1509426", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 10KG KA (BHN BAKU KOSMETIK) COA 1518695", "output": "38249999"}, {"text_input": "What is the hs code for SENSIDIN DO CN 10KG CA (BHN BAKU KOSMETIK) COA 1518078", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 CN 10KG KA (BHN BAKU KOSMETIK) COA 1516151", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 900 CN 10KG KA (BHN BAKU KOSMETIK) COA 1516505", "output": "38249999"}, {"text_input": "What is the hs code for FERROUS FUMARATE USP/EP (BHN BAKU OBAT) COA.2018/291", "output": "29171900"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA.01/18GAAK", "output": "28399000"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU KOSMETIK) COA.01/17GAAK,SAMPLE NO COMMERCIAL VALUE", "output": "28399000"}, {"text_input": "What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BAHAN BAKU KOSMETIK) COA.168645", "output": "28399000"}, {"text_input": "What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BAHAN BAKU OBAT) COA.168645", "output": "28399000"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU KOSMETIK) COA.01/18GAAK", "output": "28399000"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU OBAT) COA.01/18GAAK, SAMPLE NO COMMERCIAL VALUE", "output": "28399000"}, {"text_input": "What is the hs code for COMPRITOL 888 CG ATO (BHN BAKU OBAT) COA 68552", "output": "28399000"}, {"text_input": "What is the hs code for HEXETIDINE (BHN BAKU OBAT) COA FG18201998", "output": "29335990"}, {"text_input": "What is the hs code for ROSE OILY EXTRACT (BHN BAKU KOSMETIK)COA ROS180805-H", "output": "38249999"}, {"text_input": "What is the hs code for LINEN OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA LIU180705-H", "output": "38249999"}, {"text_input": "What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-181105-GS", "output": "38249999"}, {"text_input": "What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-181105-GS", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS181002", "output": "38249999"}, {"text_input": "What is the hs code for KIGELINE (BHN BAKU KOSMETIK) COA KA180502-B", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM180901-PGH", "output": "38249999"}, {"text_input": "What is the hs code for SILYMARIN (BHN BAKU SUPLEMEN) COA 32703/M5", "output": "38249999"}, {"text_input": "What is the hs code for MIRANOL ULTRA C32 200KG PLASCTIC DRUM (BHN BAKU KOSMETIK) COA BP808500R", "output": "34029099"}, {"text_input": "What is the hs code for BD DNA QC PATICLES 25 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8127923", "output": "38210010"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18080016", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18080016", "output": "29362600"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18070015", "output": "32041900"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00218194", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB01017666", "output": "29362800"}, {"text_input": "What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT17110019", "output": "29420000"}, {"text_input": "What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18100002", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18100055", "output": "29362100"}, {"text_input": "What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00218443", "output": "29362700"}, {"text_input": "What is the hs code for PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 2829534", "output": "33029000"}, {"text_input": "What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND 181104, ND181107, ND181108", "output": "29372200"}, {"text_input": "What is the hs code for PREDNISONE USP41 (BHN BAKU OBAT) COA NPD 180518, NPD 181009", "output": "29372100"}, {"text_input": "What is the hs code for CLOPIDOGREL BISULFATE (BHN BAKU OBAT) COA AALH003866,3258,3190...", "output": "29349990"}, {"text_input": "What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK)COA CHP1181114,1180813", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-01232B", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK)COA BAG-011388", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA MCP-N-060598", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-021638, GSC-K-031458", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK)COA GTB-020538", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-122488", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SNAIL SECREATION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-0206388", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND NANOMOIST D (BHN BAKU KOSMETIK) COA NMSP-D-011018", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-021168", "output": "38249999"}, {"text_input": "What is the hs code for KF-96A-6CS (BHN BAKU KOSMETIK) , COA 811994", "output": "38249999"}, {"text_input": "What is the hs code for KF-6028 (16KG) BHN BAKU KOSMETIK, COA 811197", "output": "38249999"}, {"text_input": "What is the hs code for KF-96A-6CS (16KG) BHN BAKU KOSMETIK, COA 811995", "output": "38249999"}, {"text_input": "What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA R700500", "output": "29419000"}, {"text_input": "What is the hs code for CEFOTAXIME SODIUM STERILE USP (BHN BAKU OBAT) COA R202100", "output": "29419000"}, {"text_input": "What is the hs code for CEFOTAXIME SODIUM EP (BHN BAKU OBAT) COA R201300", "output": "29419000"}, {"text_input": "What is the hs code for PROMETHAZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA HPHCPM050", "output": "29343000"}, {"text_input": "What is the hs code for THIOGLYCOLIC ACID 99PCT COSMETIC GRADE (BHN BAKU KOSMETIK) COA.0000065168", "output": "29309090"}, {"text_input": "What is the hs code for AMMONIUM THIOGLYCOLATE 71PCT(60PCT TGA) BHN BAKU KOSMETIK, COA.0000065169", "output": "29309090"}, {"text_input": "What is the hs code for MONOETHANOLAMINE THIOGLYCOLATE 83PCT (50PCT TGA) BHN BAKU KOSMETIK, COA 0000065170", "output": "29221100"}, {"text_input": "What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA.18100743, 18100744", "output": "29395900"}, {"text_input": "What is the hs code for CYANACOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPLEMEN KESEHATAN) COA. 1805982916", "output": "29362600"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610787", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610783", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610788", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610785", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610699", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610797", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610786", "output": "38249999"}, {"text_input": "What is the hs code for CORTISONE ACETATE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1800951018", "output": "29372200"}, {"text_input": "What is the hs code for GINSENG DRY EXTRACT 2PCT COLOR (BAHAN BAKU SUPPLEMEN) COA 10910/M1", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10911/M1", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10912/M1", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10921/M1", "output": "13021990"}, {"text_input": "What is the hs code for SILYMARIN /PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 10935/M1", "output": "38249999"}, {"text_input": "What is the hs code for PURIDROX TM POWDER CEFADROXILE MONOHYDRATE (BHN BAKU OBAT) COA M334596,599,602", "output": "29419000"}, {"text_input": "What is the hs code for BIOTOX (R) (BHN BAKU OBAT UTK PAKAN TERNAK) COA 081118-854", "output": "23099090"}, {"text_input": "What is the hs code for E.C.O TRACE ZN 25PCT (BHN BAKU UTK PAKAN TERNAK) COA BC250818", "output": "29224900"}, {"text_input": "What is the hs code for E.C.O.TRACE MN 20PCT(BHN BAKU OBAT UTK PAKAN TERNAK) COA BC190918", "output": "29224900"}, {"text_input": "What is the hs code for E.C.O TRACE FE 20PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC140918", "output": "29224900"}, {"text_input": "What is the hs code for LIQUIPHOS STRONG (BHN BAKU UTK PAKAN TERNAK) COA 181018-815", "output": "23099090"}, {"text_input": "What is the hs code for NABUMETONE USP (BAHAN BAKU OBAT) COA.H-1170718", "output": "29145000"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU SUPLEMEN) COA.TS00011207", "output": "29362500"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU MAKANAN) COA.TS00011207", "output": "29362500"}, {"text_input": "What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) COA 7766004", "output": "38249999"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM (BHN BAKU OBAT) COA 18091447 S/D 449, 1455", "output": "29331900"}, {"text_input": "What is the hs code for GINKGO BILOBA DRY EXTRACT HF (BHN BAKU SUPLEMEN) COA 18432", "output": "13021950"}, {"text_input": "What is the hs code for GRAPE SEED DRY EXTRACT (BHN BAKU SUPLEMEN) COA 18400", "output": "13021950"}, {"text_input": "What is the hs code for MAGNOLIA BARK EXTRACT (BHN BAKU KOSMETIK) COA MBE05-180801", "output": "38249999"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA MS/70120", "output": "39123900"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA MS/2460", "output": "39123900"}, {"text_input": "What is the hs code for ASTABIO ARV-S (BHN BAKU OBAT) COA.1806061K", "output": "32030010"}, {"text_input": "What is the hs code for RESTYLANE SUBQ 2 ML D16 , COA 15351-1,15608-2", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE SKINB VITLIDO 1MLD16 , COA 16419-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE SKINB VITALLGHLIDO 1MLD16 , COA 16503-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE LIDOCAINE 1 ML D16 ,COA 1616199-2", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML , COA 16445-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE VOLYME 1ML , COA 16046-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE REFYNE 1ML, COA 16326-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE DEFYNE 1 ML ,COA 16283-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE KYSSE 1 ML , COA 16207-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE LYFT LIDOCAINE 1 ML , COA 16445-1,SAMPLE NO COMMERCIAL VALUE", "output": "90189090"}, {"text_input": "What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 181402", "output": "13021990"}, {"text_input": "What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 181104", "output": "13021990"}, {"text_input": "What is the hs code for ALPHINIAWHITE (BHN BAKU KOSMETIK) COA 181981", "output": "13021990"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA ROA319187", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN )COA ROA3041800", "output": "28363000"}, {"text_input": "What is the hs code for FLUOROMETHOLONE MICRONISED USP BP JP (BHN BAKU OBAT) COA 1801354152", "output": "29372200"}, {"text_input": "What is the hs code for SAVONOL 10 (BAHAN BAKU KOSMETIK), COA.LDC37318T", "output": "27101990"}, {"text_input": "What is the hs code for BD FACSMELODY BRV COLOR PLATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)", "output": "38210010"}, {"text_input": "What is the hs code for MEG-3 DHA H POWDER, 0,1KG POS (BHN BAKU MAKANAN) COA XI00005285, SAMPLE NO COMM VALUE", "output": "29362500"}, {"text_input": "What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 18042501,18051103", "output": "38029090"}, {"text_input": "What is the hs code for IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S281/18,S648/18, S708/18", "output": "38029090"}, {"text_input": "What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1852283,2317,2318", "output": "29242930"}, {"text_input": "What is the hs code for NOREPINEPHRINE BITARTRATE (BHN BAKU OBAT) COA 460104", "output": "29379010"}, {"text_input": "What is the hs code for TEFOSE 63 (BHN BAKU SUPLEMEN) COA 172219", "output": "28399000"}, {"text_input": "What is the hs code for COMPRITOL 888 ATO (BHN BAKU KOSMETIK) COA 45013", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE A PELLETS (BHN BAKU SUPLEMEN) COA 18E2201", "output": "28399000"}, {"text_input": "What is the hs code for LEVOFLOXACIN HEMIHYDRATE (BHN BAKU OBAT) COA C008-1808610", "output": "29349990"}, {"text_input": "What is the hs code for BETAMETHASONE VALERATE USP (BHN BAKU OBAT) COA M-X21-181001", "output": "29372200"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG", "output": "29362700"}, {"text_input": "What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453294475", "output": "39139090"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA.M113134,M113121", "output": "29339990"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113121", "output": "29339990"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518090271", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0218090158", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518090260", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL HMS, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0418090195", "output": "29420000"}, {"text_input": "What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.18100608,18100793", "output": "29391900"}, {"text_input": "What is the hs code for COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-1801114", "output": "38249999"}, {"text_input": "What is the hs code for CYPROHEPTADINE HCL BP/PH.EUR (BHN BAKU OBAT) COA CYP/11181012", "output": "29333990"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18070015", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18100055", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A+D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18090041", "output": "29362100"}, {"text_input": "What is the hs code for JOJOBA OIL VIRGIN LOW ODOUR (BHN BAKU KOSMETIK) COA 146272", "output": "15159011"}, {"text_input": "What is the hs code for JOJOBA OIL VIRGIN LOW ODOUR (BHN BAKU KOSMETIK) COA 146881", "output": "15159011"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01808069", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01808069", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01808069", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01808069", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518090271", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318101522,23, 55 S/D 57", "output": "29420000"}, {"text_input": "What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 18111205", "output": "38249999"}, {"text_input": "What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8248918", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8135947", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8129694", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8289953", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8234703", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8241622", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8242970,...", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255627", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA IC--XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8278796", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POLYPEPTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7289534", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MAIL EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8177885", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MR-VP MEDIUM 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 7262698", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8248690", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE M-PA-C AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206646", "output": "38210010"}, {"text_input": "What is the hs code for BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8274532", "output": "38210010"}, {"text_input": "What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 181652915", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8260559", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183667", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8197998,8227609", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7079881", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8155504", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7341765", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8141537", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8171517", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255534", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8227776", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183841", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7338553", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8162538,8241622", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7349871", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206836", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8162545", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MR-VP MEDIUM 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7262698", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8297983", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 83175255", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8248690,8281627", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7250994", "output": "38210010"}, {"text_input": "What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8242653", "output": "38210010"}, {"text_input": "What is the hs code for KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8274719", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8046747", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8114795", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8129691", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8306679", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183873", "output": "38210010"}, {"text_input": "What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8011687,...", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE AGAR GRANULATED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8194606", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8253602", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255627", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8234703", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8101787", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183873", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8306679", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233944", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183888", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8155504", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TREHALOSE 10G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8248746", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8150647", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206336", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8241614", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183841", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233944", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233583", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8241935", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079881,...", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206558", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8309568", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8271781", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK 90MM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8284533", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8248911", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8165971", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8284529", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PROTEOSE PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8197669", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POLYPEPTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 82835918", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EOSIN METHYLENE BLUE AG HHT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8045543", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MR-VP BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7235673", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8233701", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 819750298", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE L-ARABINOSE 25G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8211671", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DULCITOL 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8178635", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TREHALOSE 10G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8248746", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7332727", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8141811", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8227623", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7153977", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8256662", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8241939", "output": "38210010"}, {"text_input": "What is the hs code for BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8274532", "output": "38210010"}, {"text_input": "What is the hs code for BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8274532", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8165971", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8241622", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8215542", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8127705", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8284529", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8255627", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8057815", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 802380183", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8284532", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MALONATE BROTH 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7297545", "output": "38210010"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE 25KG BOX (BHN BAKU MAKANAN) COA TL01811086,1811106", "output": "29362700"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01811106", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT18080174,75", "output": "29362100"}, {"text_input": "What is the hs code for TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA647244", "output": "32151900"}, {"text_input": "What is the hs code for KETOPROFEN SALE DI LISINA (BHN BAKU OBAT) COA 188610", "output": "29183000"}, {"text_input": "What is the hs code for LIFE'S GLA (TM) '10'N-6 OIL (BHN BAKU SUPLEMEN) COA 7011016CN, SAMPLE NO COMMERCIAL VALUE", "output": "29362500"}, {"text_input": "What is the hs code for GABAPENTIN ( BHN BAKU OBAT) COA CGBU180282", "output": "29224900"}, {"text_input": "What is the hs code for MAPROTILINE HCL (BHN BAKU OBAT) COA 1850003486", "output": "29214900"}, {"text_input": "What is the hs code for PURICILLIN COMPACTED (BHN BAKU OBAT) COA. M842446 S/D 2449, 2364,2443", "output": "29411020"}, {"text_input": "What is the hs code for PARSOL ZX, 0,500KG PAIL (BHN BAKU KOSMETIK) COA 18052527, SAMPLE NO COMMERCIAL VALUE", "output": "29420000"}, {"text_input": "What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8331948", "output": "38210010"}, {"text_input": "What is the hs code for CD34 APC BG12 1001 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8316581", "output": "38210010"}, {"text_input": "What is the hs code for CD79A PE HM47 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8274645", "output": "38210010"}, {"text_input": "What is the hs code for ANTI-MPO FITC 5B8 50 TESTS RUO GMP (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8250847", "output": "38210010"}, {"text_input": "What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8318567", "output": "38210010"}, {"text_input": "What is the hs code for ANTI-HLA-DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8198761", "output": "38210010"}, {"text_input": "What is the hs code for CD33 PE P67 6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8254780", "output": "38210010"}, {"text_input": "What is the hs code for ACCUDROP FLUORESCENT BEADS 25 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 8172971", "output": "38210010"}, {"text_input": "What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8296712", "output": "38210010"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 8159608", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141516", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8162741", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219521", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7314928", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141691", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8239832", "output": "38210010"}, {"text_input": "What is the hs code for HU NEURAL LINEAGE ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8311570", "output": "38210010"}, {"text_input": "What is the hs code for HU MESENCHYMAL SG ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8296712", "output": "38210010"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8159661", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8247729", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7314928", "output": "38210010"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8159608", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8247729", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8155510", "output": "38210010"}, {"text_input": "What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8296712", "output": "38210010"}, {"text_input": "What is the hs code for NESTIN PE 25/NESTIN 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8213902", "output": "38210010"}, {"text_input": "What is the hs code for GFAP ALEXA 647 1B4 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8192940", "output": "38210010"}, {"text_input": "What is the hs code for HU CD8 FITC HIT8A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7331888", "output": "38210010"}, {"text_input": "What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8268724", "output": "38210010"}, {"text_input": "What is the hs code for CD3 FITC SK7 50 TESTS IVD (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8181542", "output": "38210010"}, {"text_input": "What is the hs code for PLATE SDA WLP AND CMP IC-XT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8278808", "output": "38210010"}, {"text_input": "What is the hs code for PLATE SDA WLP AND CMP IC-XT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8278808", "output": "38210010"}, {"text_input": "What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8151581", "output": "38210010"}, {"text_input": "What is the hs code for VIAL E COIL H ANTISERUM H7 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 73356084", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7220790", "output": "38210010"}, {"text_input": "What is the hs code for VIAL E COLI ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7321876", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE FOLIC ACID ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8114908", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255628", "output": "38210010"}, {"text_input": "What is the hs code for CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8268723", "output": "38210010"}, {"text_input": "What is the hs code for CD45 PER CP 2D1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8075987", "output": "38210010"}, {"text_input": "What is the hs code for CD3 APC-H7 SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8180964", "output": "38210010"}, {"text_input": "What is the hs code for 7-AAD STAINING SOLUTION 2ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8008681-A", "output": "38210010"}, {"text_input": "What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA. DOC3161821", "output": "28363000"}, {"text_input": "What is the hs code for MEROPENEM TRIHYDRATE WITH SODIUM CARBONATE STERILE (BHN BAKU OBAT) COA S0820180715", "output": "30032000"}, {"text_input": "What is the hs code for METHOCEL E15 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011I6BL02", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011HCLL01", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180173001", "output": "39123900"}, {"text_input": "What is the hs code for O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 040418/005357", "output": "38249999"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/11/171118", "output": "29420000"}, {"text_input": "What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA.LDC38418T", "output": "27101990"}, {"text_input": "What is the hs code for METHOCEL E5 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011I2JL01", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E15 PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011I77L01", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL A15 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I5V021", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL A15 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I1R021", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL A15 PREMIUM LV ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I61021", "output": "39123900"}, {"text_input": "What is the hs code for SERASENSE GB 10 (BAHAN BAKU KOSMETIK) COA SF9902E", "output": "39100020"}, {"text_input": "What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA. 20181210", "output": "17023010"}, {"text_input": "What is the hs code for NIACINAMIDE USP (BHN BAKU KOSMETIK) COA 18-19/NMD(P)/U/146 S/D 151", "output": "29362900"}, {"text_input": "What is the hs code for CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 20181206", "output": "38249999"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101854718", "output": "17021100"}, {"text_input": "What is the hs code for CAPSULAC (R) 60 BHN BAKU OBAT, COA L100411718A533", "output": "17021100"}, {"text_input": "What is the hs code for SERASENSE SF CM5 (BAHAN BAKU KOSMETIK) COA PA81207025,27,38,44", "output": "29319049"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA ROA347182", "output": "28363000"}, {"text_input": "What is the hs code for PURIDROX TM POWDER CEFADROXILE MONOHYDRATE (BHN BAKU OBAT) COA M334601,603.600", "output": "29419000"}, {"text_input": "What is the hs code for FENOFIBRATE (BHN BAKU OBAT) COA F03-20180603", "output": "29189900"}, {"text_input": "What is the hs code for PIROXICAM (BHN BAKU OBAT) COA PRX2018013M", "output": "29349990"}, {"text_input": "What is the hs code for METRONIDAZOLE BP (BHN BAKU OBAT) COA MBO-18120680", "output": "29332900"}, {"text_input": "What is the hs code for NICLOSAMIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 180923", "output": "29242990"}, {"text_input": "What is the hs code for POVIDONE K-30 EX JHNH (BHN BAKU OBAT) COA PK30-180819F41", "output": "39059990"}, {"text_input": "What is the hs code for INOSITOL (BHN BAKU OBAT) COA 201811005", "output": "29061300"}, {"text_input": "What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 18101204", "output": "29349990"}, {"text_input": "What is the hs code for SUCRALOSE (BHN BAKU OBAT) COA 18101204", "output": "29321400"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610808", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611445", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611428", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611431", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611437", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611042", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611442", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611430", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611434", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY 200 PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611460", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611459", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH6114330", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611437", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611436", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611427", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH6113611", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611423", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611429", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610784", "output": "38249999"}, {"text_input": "What is the hs code for LIDOCAINE BASE (BHN BAKU OBAT) COA. 187936", "output": "29242990"}, {"text_input": "What is the hs code for LIDOCAINE HCL (BHN BAKU OBAT) COA 188842", "output": "29242990"}, {"text_input": "What is the hs code for STAY C (R) 50, 5KG BAG ALU (BHN BAKU KOSMETIK) COA CS18060016,17,18", "output": "29362700"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11805018", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418098", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18060045", "output": "29362800"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418098,99", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418099, 418100", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518033", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ80910167", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91811082,083", "output": "21069059"}, {"text_input": "What is the hs code for DWI BI (BHN BAKU MAKANAN) COA XW91811245", "output": "21069059"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18090044", "output": "29362100"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418044", "output": "29362200"}, {"text_input": "What is the hs code for D-PANTHENOL,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01806063,7064", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01807064", "output": "29362400"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418044", "output": "29362200"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418104", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT18050023", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418100", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT18090044", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18060045", "output": "29362800"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418098", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN), COA UT18060045", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18060045", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18080016,17", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18080017,22", "output": "29362600"}, {"text_input": "What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01807064", "output": "29362400"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610544", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610794", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611290", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610795", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610799", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610776", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610777", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610798", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610343", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL EZE PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610796", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610790", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610778", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610780", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610781", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610789", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610779", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610784", "output": "38249999"}, {"text_input": "What is the hs code for CYCLOSERINE USP ( BHN BAKU OBAT) COA CCLU180007", "output": "29061300"}, {"text_input": "What is the hs code for BICAR FOOD 27/50 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA MTP34818", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA EXCIPIENT 0/13 SODIUM BICAR... (B.BAKU MAKANAN) COA MTP31118, SAMPLE NO COMM VALUE", "output": "28363000"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN )COA MTP33218", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA. RBA3181800", "output": "28363000"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO180601", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-181009", "output": "38249999"}, {"text_input": "What is the hs code for PHYTELENE COMPLEX EGX 232 (BHN BAKU KOSMETIK)COA EG543-181009", "output": "38249999"}, {"text_input": "What is the hs code for PHYTELENE COMPLEX EGX 232 (BHN BAKU KOSMETIK)COA PX232-181102", "output": "38249999"}, {"text_input": "What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 201800377", "output": "28183000"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A,20KG BA (BHN BAKU MAKANAN) COA WB01118394,95", "output": "29362100"}, {"text_input": "What is the hs code for JAGUAR C 162 CARDBOARD BOX 25 KG (BHN BAKU KOSMETIK) COA MJAC18319", "output": "38249999"}, {"text_input": "What is the hs code for NONIVAMIDE (SYNTHETIC CAPSAICIN)BHN BAKU KOSMETIK, COA.20180926", "output": "29241990"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB00718222", "output": "29362100"}, {"text_input": "What is the hs code for LIQUORICE LC (BHN BAKU KOSMETIK) COA.111957/P86599-P86601", "output": "13021920"}, {"text_input": "What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 18062902, 18052301", "output": "38029090"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG181207", "output": "29362700"}, {"text_input": "What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 64881P", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK)COA CHP1181210", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-150578, 211198,221898", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK)COA NMP-L-170388", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-010248", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-031458", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK)COA CLHW-022208", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSFAC-021088", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-022208", "output": "38249999"}, {"text_input": "What is the hs code for D-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01806623,6627", "output": "29362400"}, {"text_input": "What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) XW91811241", "output": "29420000"}, {"text_input": "What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000178369", "output": "29362900"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01808081", "output": "29362400"}, {"text_input": "What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18070207", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18080237", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT018050038", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT18030171,172", "output": "29362100"}, {"text_input": "What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001476503", "output": "29420000"}, {"text_input": "What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000178369", "output": "29362900"}, {"text_input": "What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0021803", "output": "29362500"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ80213064", "output": "29362500"}, {"text_input": "What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00555844, VE00561967", "output": "29420000"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT18050800", "output": "29362100"}, {"text_input": "What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU OBAT UTK PAKAN TERNAK) COA 201800243,235", "output": "28183000"}, {"text_input": "What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND181104, ND181108, ND181109...", "output": "29372200"}, {"text_input": "What is the hs code for PREDNISOLONE BP2010/USP40 (BHN BAKU OBAT) COA NPL181109", "output": "29372100"}, {"text_input": "What is the hs code for NOREPINEPHRINE BITARTRATE (BHN BAKU OBAT) COA 460104", "output": "29379010"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA KJI", "output": "38249999"}, {"text_input": "What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 182281", "output": "13021990"}, {"text_input": "What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 181755", "output": "38249999"}, {"text_input": "What is the hs code for SWERTANIN- P (BHN BAKU KOSMETIK) COA 181625", "output": "13021990"}, {"text_input": "What is the hs code for NATURAL SOURCE MIXED TOCOPHEROLS (BHN BAKU KOSMETIK) COA 181012M001", "output": "29362800"}, {"text_input": "What is the hs code for OMEPRAZOLE PELLETS 8,5 PCT (BHN BAKU OBAT) COA OP0218C051", "output": "30039000"}, {"text_input": "What is the hs code for OMEPRAZOLE PELLETS 8,5 PCT (BHN BAKU OBAT) COA OP0218C052", "output": "30039000"}, {"text_input": "What is the hs code for ACRYLPOL 980 (20KG) BAHAN BAKU KOSMETIK, COA 11518073 S/D 76", "output": "39069099"}, {"text_input": "What is the hs code for ECOSLIM TM (BHN BAKU KOSMETIK) COA 1811601", "output": "38249999"}, {"text_input": "What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829016600J", "output": "38249999"}, {"text_input": "What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830016739J", "output": "38249999"}, {"text_input": "What is the hs code for CAPIXYL (BHN BAKU KOSMETIK), COA 830016847J", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785016391J", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785016677J", "output": "38249999"}, {"text_input": "What is the hs code for HELIOGEL TM (BHN BAKU KOSMETIK) COA 18207013", "output": "38249999"}, {"text_input": "What is the hs code for MINIPORYL (BHN BAKU KOSMETIK) COA 832016464J", "output": "38249999"}, {"text_input": "What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016605J", "output": "38249999"}, {"text_input": "What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016716J", "output": "38249999"}, {"text_input": "What is the hs code for SILIGEL TM (BHN BAKU KOSMETIK) COA 1820409", "output": "38249999"}, {"text_input": "What is the hs code for TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784026310J", "output": "38249999"}, {"text_input": "What is the hs code for TYROSTAT-11 (BHN BAKU KOSMETIK), COA 784026462J", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785016677J", "output": "38249999"}, {"text_input": "What is the hs code for AC019KC PHYTOVITYL C 5KG (BHN BAKU KOSMETIK) COA 0029885", "output": "38249999"}, {"text_input": "What is the hs code for PRAYPHOS DKP FG (BHN BAKU KOSMETIK) COA 1833031", "output": "29420000"}, {"text_input": "What is the hs code for PHOSPHATE MONOPOTASSIQUE (BHN BAKU KOSMETIK) COA 1833031", "output": "29420000"}, {"text_input": "What is the hs code for PURE GREEN B&W PIT (BHN BAKU KOSMETIK) COA 10300044", "output": "38249999"}, {"text_input": "What is the hs code for DEEP IMPACT FACE (BHN BAKU KOSMETIK) COA 10300037", "output": "38249999"}, {"text_input": "What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) , COA 812200", "output": "38249999"}, {"text_input": "What is the hs code for KF-96A-6CS (16KG) BHN BAKU KOSMETIK, COA 812001,812002", "output": "38249999"}, {"text_input": "What is the hs code for COATED ASCORBIC ACID, TYPE EC ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01810913", "output": "29362700"}, {"text_input": "What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT18040034", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18090041", "output": "29362100"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18090031", "output": "32041900"}, {"text_input": "What is the hs code for GENIVIDA (TM) TG, 1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT17080005,6", "output": "29329990"}, {"text_input": "What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ80407003", "output": "29420000"}, {"text_input": "What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA.MLAH1081118", "output": "29341000"}, {"text_input": "What is the hs code for LANSOPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA LP0218C035", "output": "29333990"}, {"text_input": "What is the hs code for CYANACOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPLEMEN KESEHATAN) COA. 1806833337", "output": "29362600"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1802823436", "output": "29372900"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00718222", "output": "29362100"}, {"text_input": "What is the hs code for NECTAR DE MATCHA FEMA P114 6 BHN BAKU KOSMETIK COA 0000023629", "output": "33029000"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 7314928", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP-A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8155510", "output": "38210010"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8159661", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8247729", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8247729", "output": "38210010"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8235876", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 8141516", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8162741", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 8219521", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8155510", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY 3ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7314928", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG L &P 80 500G (M. UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141691,823951", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8309581", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8239511", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8162741", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8211630", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8162741", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7314928", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8155510", "output": "38210010"}, {"text_input": "What is the hs code for GOLGIPLUG PROTEIN TRNSP INHB 1ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8114699", "output": "38210010"}, {"text_input": "What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P8V29QA000", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0218100200", "output": "29420000"}, {"text_input": "What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01809086", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01809086", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM ( BHN BAKU KOSMETIK) COA 0518100300", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIK DRUM (BHN BAKU KOSMETIK) COA 0518100300", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518100300,324", "output": "29420000"}, {"text_input": "What is the hs code for DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01806627", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318101565,567", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318101567,1568,1585,1586", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318101586,101605,11832,33", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0218090158,203", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180063,65,67 S/D 73", "output": "29420000"}, {"text_input": "What is the hs code for VITAMIN B12 0.PCT WS (BHN BAKU SUPLEMEN) COA UT18080022", "output": "29362600"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518046", "output": "29362200"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT18070048", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18080029", "output": "29362100"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB00618931", "output": "29362700"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418030", "output": "29362500"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT18070021", "output": "32041900"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01805040", "output": "32041900"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT18070024", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT18050023", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1806002", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN), COA WB00418105", "output": "29362900"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20170401", "output": "29362800"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418105", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518034", "output": "29362300"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18060018", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91811269", "output": "21069059"}, {"text_input": "What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW91811293", "output": "21069059"}, {"text_input": "What is the hs code for PX 103070 - C3 (BHN BAKU MAKANAN) COA XW91811294", "output": "21069059"}, {"text_input": "What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91811257", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT18080822", "output": "29362100"}, {"text_input": "What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18070207", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU MAKANAN) COA UT18070024", "output": "29362900"}, {"text_input": "What is the hs code for B-CAROTENE 1PCT CWS/M (BHN BAKU MAKANAN) COA UT18050021", "output": "32041900"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01805040", "output": "32041900"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT18070024", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT18050023", "output": "29362900"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL ( BHN BAKU MAKANAN) COA UT18070048", "output": "29362800"}, {"text_input": "What is the hs code for SILDENAFIL CITRATE USP (BHN BAKU OBAT) COA SLC 314 12 18", "output": "29335990"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1802844514", "output": "29372900"}, {"text_input": "What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC 011-8-801, 012-8-801, 004-8-801, 011-8-801", "output": "17021100"}, {"text_input": "What is the hs code for FD AND C YELLOW #5/TARTRASINE AL 36PCT-39PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP804545,..", "output": "32151900"}, {"text_input": "What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP798863.1", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C BLUE #1/BRILLIANT BLUE ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP795612", "output": "32151900"}, {"text_input": "What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP796877", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP797602", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C BLUE #2/INDIGO CARMINE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP803613", "output": "32151900"}, {"text_input": "What is the hs code for DOCUSATE SODIUM (BHN BAKU OBAT), COA SD8042416", "output": "29171900"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101854818", "output": "17021100"}, {"text_input": "What is the hs code for ETORICOXIB (BHN BAKU OBAT) COA.ERB/1812004", "output": "29333990"}, {"text_input": "What is the hs code for MAGNESIUM CHLORIDE HEXAHYDRATE CRYST (BHN BAKU KOSMETIK), COA A1239632", "output": "28273100"}, {"text_input": "What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-181206-GS", "output": "38249999"}, {"text_input": "What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH181110-ENBIO", "output": "38249999"}, {"text_input": "What is the hs code for LIPOID PPL-600 (BHN BAKU OBAT) COA.577200-2180223/001-002", "output": "29232010"}, {"text_input": "What is the hs code for PLAISANCE P116808 (BHN BAKU KOSMETIK) COA 0000017026", "output": "33029000"}, {"text_input": "What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA.0000013173", "output": "33029000"}, {"text_input": "What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU OBAT UTK PAKAN TERNAK) COA 201800243,235", "output": "28183000"}, {"text_input": "What is the hs code for NECTAR DE MATCHA FEMA P114 6 BHN BAKU KOSMETIK COA 0000023629", "output": "33029000"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA MTP33218", "output": "28363000"}, {"text_input": "What is the hs code for BOTTLE INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8274532", "output": "38210010"}, {"text_input": "What is the hs code for VIAL UNIVERSAL VIRAL TRANSPORT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 181214500", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8193816", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRUCELLA AGAR BBL AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8011671", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE RHAMNOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8332926.", "output": "38210010"}, {"text_input": "What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01A317M", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7324991", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8129691", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 8312962", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8179827", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8215542", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8046747", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8289953", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8162545", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 6066834", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7349871", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8141537", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8256652", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8227776", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8282931", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255613", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8306679", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8215542", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233944", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8227510", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183888", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206562", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8227609", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BEEF EXTRACT POWDER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233778", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BEEF EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7296821", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MALT EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8177885", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8222649", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8306679", "output": "38210010"}, {"text_input": "What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01A292M", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8318951", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8218523,8232685,8240967", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255977", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D-MANNOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7135976", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE RHAMNOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8332926", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8156600", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 81715177", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141537", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8170726", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PROTEOSE PEPTONE NO 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8232795", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POLYSORBATE 80 100 1 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8262934", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8260559", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8228997", "output": "38210010"}, {"text_input": "What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8302980", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8141903", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8150647", "output": "38210010"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 BHN BAKU OBAT, COA 121809280", "output": "28363000"}, {"text_input": "What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 121809210", "output": "29054300"}, {"text_input": "What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF,1KG ALUF (BHN BAKU SUPLEMEN) COA UE01806039", "output": "32030010"}, {"text_input": "What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18090041", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU SUPLEMEN) COA UT18090021", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU SUPLEMEN) COA UT18090021", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00218196", "output": "29362800"}, {"text_input": "What is the hs code for MEG-3 (TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT18040034", "output": "29362500"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18090031", "output": "32041900"}, {"text_input": "What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB01017666", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18090041", "output": "29362100"}, {"text_input": "What is the hs code for OPTISHARP NAT ZEA 5PCT CWS/S-TG, 10KG BAG (BHN BAKU SUPLEMEN) COA EW18095010", "output": "32041900"}, {"text_input": "What is the hs code for FLOWLAC (R) 100 (BHN BAKU OBAT) COA. L101504318", "output": "17021100"}, {"text_input": "What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103863418", "output": "17021100"}, {"text_input": "What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L1043114618", "output": "17021100"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO180601", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-181009", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) COA EG543-181008", "output": "38249999"}, {"text_input": "What is the hs code for OPASPRAY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT682899", "output": "32151900"}, {"text_input": "What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT682900", "output": "32151900"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT LYOPHIZED (BHN BAKU OBAT) COA NY2877", "output": "29372900"}, {"text_input": "What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-2651218,S-2771218", "output": "29334910"}, {"text_input": "What is the hs code for LUBRIPHARM (R) SSF NF/EP/JP SODIUM STEARYL FUMARATE(BHN BAKU OBAT) COA 121809641", "output": "28161000"}, {"text_input": "What is the hs code for LUBRIPHARM (R) SSF/NF/EP/JP SODIUM STEARYL FUMARATE (BHN BAKU OBAT) COA L121809287", "output": "28161000"}, {"text_input": "What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC 037-18-801", "output": "17021100"}, {"text_input": "What is the hs code for OPADRY EZ CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611901", "output": "38249999"}, {"text_input": "What is the hs code for CARBAZOCHROME SODIUM SULFONATE (ORAL GRADE) BHN BAKU OBAT,COA AC81005/81121", "output": "29339990"}, {"text_input": "What is the hs code for GUAIFENESIN USP (BHN BAKU OBAT) COA GGE-1812442,GGE-1812461", "output": "29094900"}, {"text_input": "What is the hs code for TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA648782", "output": "32151900"}, {"text_input": "What is the hs code for BARCROFT TM AL HYD GEL VISCO-9 USP (BHN BAKU OBAT) COA.1018802027", "output": "28183000"}, {"text_input": "What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHNN BAKU OBAT) COA 101823008", "output": "28161000"}, {"text_input": "What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA.LDC41018T", "output": "27101990"}, {"text_input": "What is the hs code for LANOLINE ANHYDROUS (BHN BAKU KOSMETIK) COA 4552,4553,4554", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA KLH", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA KLJ", "output": "38249999"}, {"text_input": "What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA KHN", "output": "38249999"}, {"text_input": "What is the hs code for SPIRAMYCIN (BHN BAKU OBAT) COA SP181405", "output": "29419000"}, {"text_input": "What is the hs code for EPERISONE HYDROCHLORIDE SYN-TECH (BHN BAKU OBAT) COA.E10-18043", "output": "29333990"}, {"text_input": "What is the hs code for ROSUVASTATIN CALCIUM (BHN BAKU OBAT) COA RVM2811218", "output": "29359000"}, {"text_input": "What is the hs code for D-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01806627", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318121895, 896", "output": "29420000"}, {"text_input": "What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES1806072", "output": "29420000"}, {"text_input": "What is the hs code for ARGAN OIL ,10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0021803", "output": "29362500"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18080237", "output": "29362800"}, {"text_input": "What is the hs code for NIACINAMIDE PC ,20KG BAL (BHN BAKU KOSMETIK) COA OP81802001", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000178370", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318121896,897", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001503757", "output": "29420000"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT18050045", "output": "29362800"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11805017", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT18040172", "output": "29362100"}, {"text_input": "What is the hs code for LEVOFLOXACIN HEMIHYDRATE USP (BHN BAKU OBAT) COA LF18120113", "output": "29349990"}, {"text_input": "What is the hs code for NEOSTIGMINE METHYLSULPHATE (BHN BAKU OBAT), COA DNMS0218003", "output": "29242990"}, {"text_input": "What is the hs code for E.C.O TRACE ZN 25PCT (BHN BAKU UTK PAKAN TERNAK) COA", "output": "29224900"}, {"text_input": "What is the hs code for E.C.O.TRACE MN 20PCT(BHN BAKU OBAT UTK PAKAN TERNAK) COA", "output": "29224900"}, {"text_input": "What is the hs code for E.C.O TRACE FE 20PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA", "output": "29224900"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM (BHN BAKU OBAT) COA 18111716,724,731,734", "output": "29331900"}, {"text_input": "What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA. 20181230", "output": "17023010"}, {"text_input": "What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 189135", "output": "29332900"}, {"text_input": "What is the hs code for LEUCOCYANIDINS PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 18333", "output": "38249999"}, {"text_input": "What is the hs code for FD AND C BLUE #1/BRILLIANT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP803378", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP797599", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL 36PCT-39PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA.WP804548", "output": "32151900"}, {"text_input": "What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP805755", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612084", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610808", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612075", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612086", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612073", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612072", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612083", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH512078", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612079", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612007", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612002", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612082", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612081", "output": "38249999"}, {"text_input": "What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612071", "output": "32151900"}, {"text_input": "What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612071", "output": "32151900"}, {"text_input": "What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612071", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612070", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612070", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612077", "output": "38249999"}, {"text_input": "What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612080", "output": "32151900"}, {"text_input": "What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612080", "output": "32151900"}, {"text_input": "What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612080", "output": "32151900"}, {"text_input": "What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612080", "output": "32151900"}, {"text_input": "What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612080", "output": "32151900"}, {"text_input": "What is the hs code for ACRYL-EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612089", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612002", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612076", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612088", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY 200 PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612087", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612074", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612085", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612069", "output": "38249999"}, {"text_input": "What is the hs code for VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 121809477", "output": "28365010"}, {"text_input": "What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND181204", "output": "29372200"}, {"text_input": "What is the hs code for PREDNISONE USP40 (BHN BAKU OBAT) COA NPD181009, NPD181209", "output": "29372100"}, {"text_input": "What is the hs code for TEFOSE 63 BF (BHN BAKU OBAT) COA 172486", "output": "28399000"}, {"text_input": "What is the hs code for TRANSCUTOL P (BAHAN BAKU OBAT) COA 172226", "output": "28399000"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU KOSMETIK) COA.01/18GAAK", "output": "28399000"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU KOSMETIK) COA.01/18GAAK, SAMPLE NO COMMERCIAL VALUE", "output": "28399000"}, {"text_input": "What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BAHAN BAKU OBAT) COA 168645", "output": "28399000"}, {"text_input": "What is the hs code for RESTYLANE SKINB VITALLGHLIDO 1MLD16 , COA 16503-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE LIDOCAINE 1 ML D16 ,COA 16199-3", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML , COA 16445-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE REFYNE 1ML , COA 16326-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE DEFYNE 1ML, COA 16283-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE DEFYNE 1 ML ,COA 16572-1", "output": "90189090"}, {"text_input": "What is the hs code for RESTYLANE KYSSE 1 ML , COA 16207-1", "output": "90189090"}, {"text_input": "What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 180807", "output": "29329990"}, {"text_input": "What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 182567", "output": "13021990"}, {"text_input": "What is the hs code for MANDARIN CLEAR (BHN BAKU KOSMETIK) COA 182564", "output": "13021990"}, {"text_input": "What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 181522", "output": "13021990"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612422", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612126", "output": "38249999"}, {"text_input": "What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN2451118", "output": "29221990"}, {"text_input": "What is the hs code for OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612838", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE(BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612321", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612569", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612570", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612605", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612564", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612563", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612479", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612390", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612565", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612566", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612577", "output": "38249999"}, {"text_input": "What is the hs code for GENTAMYCIN SULPHATE (BHN BAKU OBAT) COA 181121011", "output": "29419000"}, {"text_input": "What is the hs code for BETAMETHASONE DIPROPIONATE (BHN BAKU OBAT) COA X39-181002", "output": "29372200"}, {"text_input": "What is the hs code for LINCOMYCIN HCL EP (BHN BAKU OBAT) COA 1812010", "output": "29419000"}, {"text_input": "What is the hs code for CONFECTIONERY INK CI205002 BLUE(B.BAKU OBAT UTK PEWARNA TABLET)COA TKL47272,SAMPLE NO COMM VALU", "output": "32151900"}, {"text_input": "What is the hs code for MIRANOL ULTRA C32 200KG PLASCTIC DRUM (BHN BAKU KOSMETIK) COA BP808500R", "output": "34029099"}, {"text_input": "What is the hs code for DL-PANTHENOL 50L, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01811652", "output": "29362400"}, {"text_input": "What is the hs code for ETHYL PANTHENOL, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01809812", "output": "29362400"}, {"text_input": "What is the hs code for DL-PANTHENOL 50L, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01811652", "output": "29362400"}, {"text_input": "What is the hs code for ETHYL PANTHENOL ,1000KG IBC (BHN BAKU KOSMETIK) COA TL01809812", "output": "29362400"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01811259,274", "output": "29362700"}, {"text_input": "What is the hs code for FRAMYCETINE SULFATE (BHN BAKU OBAT) COA F1700008/01", "output": "29419000"}, {"text_input": "What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P8V25QA000", "output": "29420000"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01807002", "output": "29362900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ80313067", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT18080818", "output": "29362100"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP11805017", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)(BHN BAKU KOSMETIK) COA UT18040172", "output": "29362100"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18090273", "output": "29362800"}, {"text_input": "What is the hs code for NIACINAMIDE PC, 20KG BAL (BHN BAKU KOSMETIK) COA OP81710024,OP81802001", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000179090", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL EHS ,25KG PC (BHN BAKU KOSMETIK) COA 0718030056,0718050071", "output": "29420000"}, {"text_input": "What is the hs code for STAY-C (R) 50, 5KG BAG ALU (BHN BAKU KOSMETIK) COA CS18060018,19", "output": "29362700"}, {"text_input": "What is the hs code for STAY C (R) 50, 5KG BAG ALU (BHN BAKU KOSMETIK) COA CS18060019", "output": "29362700"}, {"text_input": "What is the hs code for DL-PANTHENOL 50L ,20KG PAIL PE (BHN BAKU KOSMETIK), COA TL01806627,7634", "output": "29362400"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 BHN BAKU OBAT, COA 121809229", "output": "28363000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 121809281", "output": "28363000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 121809229,9250", "output": "28363000"}, {"text_input": "What is the hs code for ANTISHINE WASH 1 (BHN BAKU KOSMETIK) COA 10300119", "output": "38249999"}, {"text_input": "What is the hs code for DEEP IMPACT FACE (BHN BAKU KOSMETIK) COA 10300077", "output": "38249999"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK,COA 01/18GL4", "output": "28399000"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK, COA 01/18LG4", "output": "28399000"}, {"text_input": "What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 168645", "output": "28399000"}, {"text_input": "What is the hs code for VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 121809477", "output": "28365010"}, {"text_input": "What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP 5300 (BHN BAKU OBAT) COA 101869007", "output": "28161000"}, {"text_input": "What is the hs code for THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000017018", "output": "33029000"}, {"text_input": "What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA.0000017019", "output": "33029000"}, {"text_input": "What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK)COA HMVBD-101228", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA MCP-N-060598", "output": "38249999"}, {"text_input": "What is the hs code for LINEN OILY EXTRACT (BHN BAKU KOSMETIK)COA LIU181106-H", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS181002", "output": "38249999"}, {"text_input": "What is the hs code for GRAPE SEED ORGANIC OIL (BHN BAKU KOSMETIK)COA RPH181202-ENBIO", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK)COA CFM180901-PGH", "output": "38249999"}, {"text_input": "What is the hs code for LICORICE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA GLG171001-BGBIO", "output": "38249999"}, {"text_input": "What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) COA OLVH190101-ENBIO", "output": "38249999"}, {"text_input": "What is the hs code for LOTUS OILY EXTRACT GT10 (BHN BAKU KOSMETIK) COA NEN180907-H", "output": "38249999"}, {"text_input": "What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA VIV180701-BGBIO", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO180903", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO18190101", "output": "38249999"}, {"text_input": "What is the hs code for PHYTELENE COMPLEX EGX773 (BHN BAKU KOSMETIK) COA PX773-190101-GS", "output": "38249999"}, {"text_input": "What is the hs code for CORTISONE ACETATE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1800951018", "output": "29372200"}, {"text_input": "What is the hs code for MIRANOL C2M CONC NP 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP901004R", "output": "34029099"}, {"text_input": "What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA R703600", "output": "29419000"}, {"text_input": "What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA R703600", "output": "29419000"}, {"text_input": "What is the hs code for SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK)COA GTB-033088", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SNAIL SECREATION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-041098", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-022208", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) COA MSEEC-050918", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-041128", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SNAIL SECREATION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-041098", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-101228", "output": "38249999"}, {"text_input": "What is the hs code for MIRANOL C2M CONC NP 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA HG28235", "output": "34029099"}, {"text_input": "What is the hs code for LIQUORICE LC (BHN BAKU KOSMETIK) COA.112431/P89456-P89459", "output": "13021920"}, {"text_input": "What is the hs code for VIUSID AQUA ORAL SOLUTION (PAKAN IKAN BERBENTUK CAIR) COA R-8/10-21", "output": "23099090"}, {"text_input": "What is the hs code for ONDASENTRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA 18OS002", "output": "29332900"}, {"text_input": "What is the hs code for THEOPHYLLINE ANHYDROUS (B. BAKU OBAT) COA 18292 S/D 301", "output": "29395900"}, {"text_input": "What is the hs code for OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET), COA WP807999", "output": "32151900"}, {"text_input": "What is the hs code for NIACINAMIDE USP (NICOTINAMIDE) (BHN BAKU KOSMETIK) COA 015012019/A, 016012019/A...", "output": "29362900"}, {"text_input": "What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 281018, 141118", "output": "25070000"}, {"text_input": "What is the hs code for NYSTATIN (BHN BAKU OBAT) COA.C114229, 30", "output": "29419000"}, {"text_input": "What is the hs code for NYSTATIN MICRONIZED (BHN BAKU OBAT) COA C130995", "output": "29419000"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00718225", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00718225", "output": "29362100"}, {"text_input": "What is the hs code for EUXYL PE 9010 CN 200KG FA (BHN BAKU KOSMETIK) COA 1521722,1522260", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 120 CN 10KG KA (BHN BAKU KOSMETIK) COA 1521517", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 900 CN 10KG KA (BHN BAKU KOSMETIK) COA 1522345", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 CN 10KG KA (BHN BAKU KOSMETIK) COA 1516344,1518342,1521364", "output": "38249999"}, {"text_input": "What is the hs code for SENSIDIN DO CN 10KG CA (BHN BAKU KOSMETIK) COA 1518078", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 100 10 KG KA (BHN BAKU KOSMETIK) COA 1521530", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 340 CN 10KG KA (BHN BAKU KOSMETIK) COA 1519442, SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 700 SAMPLE(S) 100 ML FL (BHN BAKU KOSMETIK) COA 1515358 ,SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 702 SAMPLE(S) 100ML FL (BHN BAKU KOSMETIK) COA 1522849, SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 703 100ML FL (BHN BAKU KOSMETIK) COA 1515816,SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 712 SAMPLE 100 ML FL (BHN BAKU KOSMETIK) COA 1518619 SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 702 SAMPLES 100 ML FL (BHN BAKU KOSMETIK) COA 1317499,SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 830 100 ML FL (BHN BAKU KOSMETIK) COA 1520202 SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL 940 (SAMPLE) 100 ML FL (BHN BAKU KOSMETIK) COA 1333310, SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 940 (SAMPLE) 100ML FL (BHN BAKU KOSMETIK) COA 1333310, SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 SAMPLE(S) 100ML FL (BHN BAKU KOSMETIK) COA 1509374,... SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA PA 40 (SAMPLE) 100 ML FL (BHN BAKU KOSMETIK) COA 1501346 SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 10 100 ML FL (BHN BAKU KOSMETIK) COA 1340277,1512096,SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00718222", "output": "29362100"}, {"text_input": "What is the hs code for ECOSLIM TM (BHN BAKU KOSMETIK) COA 1813603", "output": "38249999"}, {"text_input": "What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830016739J", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785016677J", "output": "38249999"}, {"text_input": "What is the hs code for CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785016832J", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK), COA 1820301", "output": "38249999"}, {"text_input": "What is the hs code for MATIPURE TM OIL FREE (BHN BAKU KOSMETIK) COA 1831101", "output": "38249999"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5584418", "output": "38249999"}, {"text_input": "What is the hs code for MELANOSTATINE 5BG (50PPM) (BHN BAKU KOSMETIK) COA 817046674J", "output": "38249999"}, {"text_input": "What is the hs code for MINIPORYL (BHN BAKU KOSMETIK) COA 832016604J", "output": "38249999"}, {"text_input": "What is the hs code for PROGELINE (BHN BAKU KOSMETIK) COA 820056838J", "output": "38249999"}, {"text_input": "What is the hs code for TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784026310J", "output": "38249999"}, {"text_input": "What is the hs code for DEFENSCALP (BHN BAKU KOSMETIK) COA 785076470J", "output": "38249999"}, {"text_input": "What is the hs code for B WHITE (BHN BAKU KOSMETIK) COA 829016718J", "output": "38249999"}, {"text_input": "What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK), COA 55417187", "output": "38249999"}, {"text_input": "What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829016884J", "output": "38249999"}, {"text_input": "What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 828016718J", "output": "38249999"}, {"text_input": "What is the hs code for MELANOSTATINE-5BG (50PPM) BHN BAKU KOSMETIK, COA 817046522J", "output": "38249999"}, {"text_input": "What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016716J", "output": "38249999"}, {"text_input": "What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016911J", "output": "38249999"}, {"text_input": "What is the hs code for SWT 7TM L (BHN BAKU KOSMETIK) COA 1828801", "output": "38249999"}, {"text_input": "What is the hs code for TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784026462J", "output": "38249999"}, {"text_input": "What is the hs code for CATCOL C 135 (L) GRADE (BAHAN BAKU KOSMETIK) COA 082/19", "output": "38249999"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA MTP01219", "output": "28363000"}, {"text_input": "What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) , COA 901005", "output": "38249999"}, {"text_input": "What is the hs code for KF-6028 (16KG) BHN BAKU KOSMETIK, COA 812200", "output": "38249999"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK COA B030119", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG151218", "output": "39123900"}, {"text_input": "What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0031409", "output": "38249999"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011I34L01", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I8G001", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB301218", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG180119", "output": "39123900"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA.M113154", "output": "29339990"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113157", "output": "29339990"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113123", "output": "29339990"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8297692", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8297692", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8297692", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8297692", "output": "38210010"}, {"text_input": "What is the hs code for PLURESSENCE LEMON 5001BA (BHN BAKU SUPLEMEN) COA 284616", "output": "28399000"}, {"text_input": "What is the hs code for BICAR FOOD 0/50 SODIUM BICARBONATE (BHN BAKU SUPLEMEN )COA MTP02419", "output": "28363000"}, {"text_input": "What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 182069", "output": "13021990"}, {"text_input": "What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453294475,4453391519", "output": "39139090"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612340", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612350", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612320", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612325", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612330", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612126", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612333", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612319", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612342", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612341", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612324", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612323", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612321", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612321", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612331", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612348", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612349", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612332", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612520", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612522", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612521", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612523", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612342", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH611868", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612524", "output": "38249999"}, {"text_input": "What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612516", "output": "32151900"}, {"text_input": "What is the hs code for PIGMENT BLEND GREEN ( BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612516", "output": "32151900"}, {"text_input": "What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612516", "output": "32151900"}, {"text_input": "What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 80605, 80726", "output": "38029090"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO180302", "output": "38249999"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO190102", "output": "38249999"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO180302", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO180903", "output": "38249999"}, {"text_input": "What is the hs code for VISTANOL GDHR (BHN BAKU KOSMETIK) COA WAK", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS S-CAQ (BHN BAKU KOSMETIK) COA KLE", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA KLJ", "output": "38249999"}, {"text_input": "What is the hs code for FEF CETRIMIDE PH EUR EP (BHN BAKU OBAT) COA JXOB984", "output": "38249999"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU MAKANAN) COA.TS00011052", "output": "29362500"}, {"text_input": "What is the hs code for 1,3 BUTYLENE GLYCOL, COSMETIC QUALITY(BHN BAKU KOSMETIK) COA P0618D13EC", "output": "29053200"}, {"text_input": "What is the hs code for OPADRY II TAN (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT684063", "output": "38249999"}, {"text_input": "What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT683189", "output": "32151900"}, {"text_input": "What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT684061", "output": "32151900"}, {"text_input": "What is the hs code for CONFECTIONERY INK BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT684001", "output": "32151900"}, {"text_input": "What is the hs code for CONFECTIONERY INK BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT684262", "output": "32151900"}, {"text_input": "What is the hs code for PURILEX TM COMPACTED, CEFALEXIN MONOHYDRATE (PURIDROX POWDER) BHN BAKU OBAT,COA.B427609", "output": "29419000"}, {"text_input": "What is the hs code for PURILEX TM COMPACTED, CEFALEXIN MONOHYDRATE (BHN BAKU OBAT) COA B427595,7645", "output": "29419000"}, {"text_input": "What is the hs code for VITAMIN PREMIX 103093 A (BHN BAKU MAKANAN) COA XW91901193,1194", "output": "21069059"}, {"text_input": "What is the hs code for ACYCLOVIR MICRONIZED (BHN BAKU OBAT) COA 19100067", "output": "29335990"}, {"text_input": "What is the hs code for RANITIDINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA RH 077 01 19, 078 01 19", "output": "29321900"}, {"text_input": "What is the hs code for RANITIDINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA RH 080 01 19, RH 081 01 19", "output": "29321900"}, {"text_input": "What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA R901000", "output": "29419000"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT LYOPHIZED (BHN BAKU OBAT) COA NY3411", "output": "29372900"}, {"text_input": "What is the hs code for O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 071818/005600", "output": "38249999"}, {"text_input": "What is the hs code for GRANULAC (R) 200 H(BHN BAKU OBAT) COA. L105715118", "output": "17021100"}, {"text_input": "What is the hs code for CINNARIZINE (BHN BAKU OBAT) COA 003012019CIN", "output": "29335990"}, {"text_input": "What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 18290153", "output": "30039000"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00718225", "output": "29362100"}, {"text_input": "What is the hs code for ISOFLAVONES 150 BDF (BHN BAKU KOSMETIK) COA 7275779", "output": "13021990"}, {"text_input": "What is the hs code for AMPROLIUM HCL (BHN BAKU OBAT UTK PAKAN TERNAK) COA 20190112, 113", "output": "29335990"}, {"text_input": "What is the hs code for INOSITOL (BHN BAKU OBAT) COA 201812062", "output": "29061300"}, {"text_input": "What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 1901026", "output": "29349990"}, {"text_input": "What is the hs code for POVIDONE K-30 (BHN BAKU OBAT) COA PK30-180819F41", "output": "39059990"}, {"text_input": "What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1901227 S/D 1231", "output": "29224900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT18080824,825", "output": "29362100"}, {"text_input": "What is the hs code for DL-PANTHENOL 50 L,1000KG IBC (BHN BAKU KOSMETIK) COA TL01812658", "output": "29362400"}, {"text_input": "What is the hs code for DL-PANTHENOL 50L, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01812658", "output": "29362400"}, {"text_input": "What is the hs code for ETHYL PANTHENOL, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01811814", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P8W27QA000, P8W28QA000", "output": "29420000"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20180701,0706", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 MIU/G (BHN BAKU MAKANAN) COA UT18090021", "output": "29362100"}, {"text_input": "What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT18040035", "output": "29362500"}, {"text_input": "What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8260559", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8260559", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8260559", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8227600", "output": "38210010"}, {"text_input": "What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8337538", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8297702", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206906", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 8241935", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8361674", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 8241622", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7250997", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141903", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8291771", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8282931", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8271802", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8241972", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LITMUS MILK BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8058939", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8283686", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8283698", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8281627", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8312890", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8115632", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7153977", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7135939", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE M.ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8313588", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MARINE BROTH 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8282904", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8032739", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TETRATHIONATE BR BASE HAJNA 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8155901", "output": "38210010"}, {"text_input": "What is the hs code for BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8274532", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK 90MM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8284533", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8179827", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8256652", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8291800", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219994", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8194606", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8331841", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8129691", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8291589", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206836", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8162545", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8240967", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8228997", "output": "38210010"}, {"text_input": "What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8302980", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8241614", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255630", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8183841", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CASITONE 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8289953", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233944", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7349871", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233583", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8219987", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255977", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8241935", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8079881", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206558", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8170732", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8291715", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8129682", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8193816", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8227776", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8291939", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8317859", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8297842", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255627", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STRACH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8241699", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183873", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8282931", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8271802", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8271696", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8234653", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8194606", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8129691", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8291589", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8206836", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8256652", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8162545", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255630", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8281593", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8270639", "output": "38210010"}, {"text_input": "What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8302980,712", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8228997", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183841", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8293816, 965", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8289953", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8310579", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 82339448", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8066834", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7349871", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8233583", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8219987", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 8241935", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8255977", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8255932", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8079881", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8079540", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8206558", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LYSINE DECATBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7324991", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8170732", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8299808", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8291715", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MALT AGAR 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7312565", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8129682", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7338553", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8227776,8271874", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8291939", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8291800", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8317859", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 8206906", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 8297842", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8227610", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8255627, 8346795", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8241699", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8183873", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8282931", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8331841", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) COA 8141903", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8271696", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8271802", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8234653", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8291589", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKIROORGANISME) BATCH 8228997", "output": "38210010"}, {"text_input": "What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8337538", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8281593", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8026869", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8255630", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8305685", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8299812", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8219987", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8346795", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8183873", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8291589", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8141903", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ENDO AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH 8031775", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7254544", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8281627", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE UNIVERSAL PREENRICHMENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8171952", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME( BATCH 8260573", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE NITRATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8129685", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 5 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8197524", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7297554", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8134767", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE APT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8134772", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7135939", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE YEAST MOLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8291647", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SS AGAR 500G ( MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7250994", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7250994", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8171598", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE M-PA-C AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8206646", "output": "38210010"}, {"text_input": "What is the hs code for BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8274532", "output": "38210010"}, {"text_input": "What is the hs code for FCAP V3.0 DVD ASSY WITH DONGLE (MEDIA UTK PENGEMBANGAN MIKROORGANISME)", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8227600", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH B02B009M", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8227600", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CATRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8306679", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8306679", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8299812", "output": "38210010"}, {"text_input": "What is the hs code for SOLUTION BACTERIOSTAT CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 18K3056904", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8331841", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8183841", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8228997", "output": "38210010"}, {"text_input": "What is the hs code for INSTRUMENT PHOENIXSPEC (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1806", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH B02B009M", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8289613", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500 (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8227600", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8306679", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7297545", "output": "38210010"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612773", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612949", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612524", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612952", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY SGR TRANSLUCENT (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA649861", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY SGR CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA649889", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA649856", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA649860", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY SGR TRANSLUCENT (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA649861", "output": "38249999"}, {"text_input": "What is the hs code for CITRIC ACID MONOHYDRATE BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 2AX1812043", "output": "29181400"}, {"text_input": "What is the hs code for POVIDONE K-25 (BHN BAKU OBAT) COA PK25-190103F42", "output": "39059990"}, {"text_input": "What is the hs code for NEOMYCIN SULPHATE USP (BHN BAKU OBAT) COA 201901039", "output": "29419000"}, {"text_input": "What is the hs code for PURIDROX TM POWDER CEFADROXILE MONOHYDRATE (BHN BAKU OBAT) COA M334610,11,12", "output": "29419000"}, {"text_input": "What is the hs code for METHOCEL K100 PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I79002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100 PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I5D002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I19001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I5Q002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100 PREMIUM CR ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I5C002", "output": "39123900"}, {"text_input": "What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8316601", "output": "38210010"}, {"text_input": "What is the hs code for BEAUPLEX (TM) VH, 5KG BAG ALU (BHN BAKU KOSMETIK) COA UF18316007", "output": "29420000"}, {"text_input": "What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91812173,2174", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318121901,902", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708170127,131,192", "output": "29420000"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01809090", "output": "29362400"}, {"text_input": "What is the hs code for DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01807634", "output": "29362400"}, {"text_input": "What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01804807,7810", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0318121898,899", "output": "29420000"}, {"text_input": "What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91812089,90,91", "output": "29420000"}, {"text_input": "What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01809090", "output": "29362400"}, {"text_input": "What is the hs code for STAY-C (R) 50, 5KG BAG ALU (BHN BAKU KOSMETIK) COA CS18060020 S/D 23", "output": "29362700"}, {"text_input": "What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0218100203,20242", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK), COA 0318121899, 900,901", "output": "29420000"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT18080823", "output": "29362100"}, {"text_input": "What is the hs code for CAROPHYLL PINK 10PCT CWS (BHN BAKU OBAT UTK PAKAN TERNAK) COA UE01805620", "output": "32041900"}, {"text_input": "What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA. 20181230", "output": "17023010"}, {"text_input": "What is the hs code for FASTIMMUNE CD56/CD69/CD45 50 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8311523", "output": "38210010"}, {"text_input": "What is the hs code for FASTIMMUNE HUMAN IL-2 PE... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8149610", "output": "38210010"}, {"text_input": "What is the hs code for CD79A PE HM47 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8274645", "output": "38210010"}, {"text_input": "What is the hs code for ANTI-MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8348900", "output": "38210010"}, {"text_input": "What is the hs code for CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8268723", "output": "38210010"}, {"text_input": "What is the hs code for CD3 FITC SK7 50 TESTS IVD (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8335832", "output": "38210010"}, {"text_input": "What is the hs code for CS&T RUO BEADS 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8260522", "output": "38210010"}, {"text_input": "What is the hs code for HU LEPTIN RCPTR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 72222961", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8312963", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8222563", "output": "38210010"}, {"text_input": "What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 82535459", "output": "38210010"}, {"text_input": "What is the hs code for PLATE COLUMBIA AGAR 5PCT SB 20 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8341506", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8247729", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8162741", "output": "38210010"}, {"text_input": "What is the hs code for CD200 APC (MRC OX-104) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8312558", "output": "38210010"}, {"text_input": "What is the hs code for CD5 FITC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8270690", "output": "38210010"}, {"text_input": "What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8331948", "output": "38210010"}, {"text_input": "What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8295519", "output": "38210010"}, {"text_input": "What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9016637", "output": "38210010"}, {"text_input": "What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8204557", "output": "38210010"}, {"text_input": "What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8307942", "output": "38210010"}, {"text_input": "What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8267852", "output": "38210010"}, {"text_input": "What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8220589, 91", "output": "38210010"}, {"text_input": "What is the hs code for CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8268723", "output": "38210010"}, {"text_input": "What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8348845", "output": "38210010"}, {"text_input": "What is the hs code for HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8222879", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8309579", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8162741,825558", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8162741,8255580", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8233839", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8054920", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8054920", "output": "38210010"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8232579", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8207980", "output": "38210010"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8232579", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8247729,8267844", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8309579", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8141516", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219521", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255580", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8227874,8242626.", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7314928", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8155510", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8239511", "output": "38210010"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8159661", "output": "38210010"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8235876", "output": "38210010"}, {"text_input": "What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8331948", "output": "38210010"}, {"text_input": "What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8295519", "output": "38210010"}, {"text_input": "What is the hs code for CD4 APC SK3 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8332733", "output": "38210010"}, {"text_input": "What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8204557,8278991", "output": "38210010"}, {"text_input": "What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8307942", "output": "38210010"}, {"text_input": "What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8267852", "output": "38210010"}, {"text_input": "What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 82206205", "output": "38210010"}, {"text_input": "What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8353691", "output": "38210010"}, {"text_input": "What is the hs code for CD45 PERCP 2D1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8150765", "output": "38210010"}, {"text_input": "What is the hs code for HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8222879", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8309579", "output": "38210010"}, {"text_input": "What is the hs code for SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA 19011411", "output": "38249999"}, {"text_input": "What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC 043-18-801", "output": "17021100"}, {"text_input": "What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 1901EF3710", "output": "29224900"}, {"text_input": "What is the hs code for VC ASCORBIC ACID 325, 20KG BOAIPO (BAHAN BAKU SUPLEMEN) COA HPD1901070,76,82,90,97,99,107", "output": "29362700"}, {"text_input": "What is the hs code for VC ASCORBIC ACID DC97PCT, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG1811003,4", "output": "29362700"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE /PURIMOX COMPACTED GRADE A(BHN BAKU OBAT) COA M530635 S/D 658, 634", "output": "29411019"}, {"text_input": "What is the hs code for GRANULAC (R) 200 H(BHN BAKU OBAT) COA. L101855218", "output": "17021100"}, {"text_input": "What is the hs code for DOCUSATE SODIUM BP (BHN BAKU OBAT) COA DSW9002", "output": "29171900"}, {"text_input": "What is the hs code for SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 1907660483", "output": "29322090"}, {"text_input": "What is the hs code for LEUCOCYANIDINS PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 18333", "output": "38249999"}, {"text_input": "What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA.LDC44218T", "output": "27101990"}, {"text_input": "What is the hs code for PROTEIN TRANSPORT INHIBITOR SOLN 0.7ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8033974-B", "output": "38210010"}, {"text_input": "What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK)COA MUP-030728", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-030728", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK)COA BAG-011388", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) COA MSEEC-050918", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-020719", "output": "38249999"}, {"text_input": "What is the hs code for RESTYLANE SB VITALLGHLIDO LIDOCAINE 1ML , COA 16419-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE SB VITAL LIGHT LIDOCAINE 1 ML ,COA 16503-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE LIDOCAINE 1ML , COA 16374-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML , COA 16545-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE REFYNE 1ML, COA 16326-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE DEFYNE 1 ML ,COA 16572-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE KYSSE 1 ML , COA 16207-1", "output": "33049990"}, {"text_input": "What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 141118", "output": "25070000"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5588618", "output": "38249999"}, {"text_input": "What is the hs code for CALCITRIOL (BHN BAKU OBAT) COA F074-856R053-1, SAMPLE NO COMMERCIAL VALUE", "output": "29362900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I5R002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100 PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I6F021", "output": "39123900"}, {"text_input": "What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB01017666", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18100055", "output": "29362100"}, {"text_input": "What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF,1KG ALUF (BHN BAKU SUPLEMEN) COA UE01811060", "output": "32030010"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18090031", "output": "32041900"}, {"text_input": "What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT18040036", "output": "29362500"}, {"text_input": "What is the hs code for GENIVIDA (TM) TG ,1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT17080006", "output": "29329990"}, {"text_input": "What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18100055", "output": "29362100"}, {"text_input": "What is the hs code for COATED ASCORBIC ACID TYPE EC,25KG BOX (BHN BAKU SUPLEMEN) COA TL01812503", "output": "29362700"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT18110039", "output": "32030010"}, {"text_input": "What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18100055", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A +D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18100042", "output": "29362100"}, {"text_input": "What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT18040036", "output": "29362500"}, {"text_input": "What is the hs code for GENIVIDA (TM) TG,1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT17080006", "output": "29329990"}, {"text_input": "What is the hs code for DPG FG (BHN BAKU KOSMETIK) COA C02201DG", "output": "29094900"}, {"text_input": "What is the hs code for PG USP (BHN BAKU KOSMETIK) COA C02201UG", "output": "29053200"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01806052", "output": "32041900"}, {"text_input": "What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18080219", "output": "29362800"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1807003", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1808118", "output": "29362300"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20170401", "output": "29362800"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX ALU (BHN BAKU MAKANAN) COA TL01807116", "output": "29362700"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ80503144", "output": "29362200"}, {"text_input": "What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ81209022", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ81209022", "output": "29362300"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01810781", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID ,25KG BOX /ALU (BHN BAKU MAKANAN) COA TL01807116", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID,25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01807110,7116", "output": "29362700"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT18090057", "output": "29362800"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT18090314,315", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT18090083", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT18080827", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT18080827", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT18080024", "output": "32041900"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT18090057", "output": "29362800"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1808009", "output": "29362900"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT18090057", "output": "29362800"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1808009", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518046", "output": "29362200"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01807116", "output": "29362700"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT18090057", "output": "29362800"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01808076", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI17100012", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100CWS (BHN BAKU SUPLEMEN) COA UT17120037", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18090045", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18090057", "output": "29362800"}, {"text_input": "What is the hs code for PX 103070C (BHN BAKU MAKANAN) COA XW91812154", "output": "21069059"}, {"text_input": "What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE01809013", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UE01810305,306", "output": "29362800"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB01118970", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18080017", "output": "29362600"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18070244", "output": "29362400"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT18070024", "output": "32041900"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01806052", "output": "32041900"}, {"text_input": "What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18080219", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT18070024", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1807003", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ81209022", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18080017", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT18090083", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN), COA UT18070244", "output": "29362400"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1808118", "output": "29362300"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01807116", "output": "29362700"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01810781", "output": "29362700"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ80703172", "output": "29362200"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT18040136", "output": "29362400"}, {"text_input": "What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18080219", "output": "29362800"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ81110224", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT18090083", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18080016,17", "output": "29362600"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01805043", "output": "32041900"}, {"text_input": "What is the hs code for CALCIUM D PANTOTHENATE ,25KG BOX (BHN BAKU MAKANAN) COA TL01804678", "output": "29362400"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1807003", "output": "29362900"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ80503136", "output": "29362200"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT18040136", "output": "29362400"}, {"text_input": "What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COAUT18100299", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT18090083,84", "output": "29362900"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ80703172", "output": "29362200"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01805040,5041", "output": "32041900"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU MAKANAN) COA TL01804678", "output": "29362400"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1807003", "output": "29362900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ80413101", "output": "29362500"}, {"text_input": "What is the hs code for PX 204005 (BHN BAKU MAKANAN) COA XW91811312", "output": "21069059"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ80513135", "output": "29362500"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT18090045", "output": "29362100"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB-00418105,106", "output": "29362900"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01805043", "output": "32041900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1807003", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518032", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ81209022", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT18080824", "output": "29362100"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1808118", "output": "29362300"}, {"text_input": "What is the hs code for PX 103070C (BHN BAKU MAKANAN) COA XW91812153", "output": "21069059"}, {"text_input": "What is the hs code for TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA649414", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612765", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612757", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612756", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612755", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612754", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612771", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613043", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612772", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612779", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612766", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612766", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH610807", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612758", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612769", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612773", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612753", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613449", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612768", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612614", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612523", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612778", "output": "38249999"}, {"text_input": "What is the hs code for KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0441018", "output": "29339990"}, {"text_input": "What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 182920", "output": "38249999"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 182751", "output": "13021990"}, {"text_input": "What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 180807", "output": "29329990"}, {"text_input": "What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769016576J", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1817804", "output": "38249999"}, {"text_input": "What is the hs code for MINIPORYL (BHN BAKU KOSMETIK) COA 832016604J", "output": "38249999"}, {"text_input": "What is the hs code for CW 5C 5PCT CLEAR (BHN BAKU KOSMETIK), COA 785016832J", "output": "38249999"}, {"text_input": "What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016911J", "output": "38249999"}, {"text_input": "What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829016718J", "output": "38249999"}, {"text_input": "What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 1821114", "output": "38249999"}, {"text_input": "What is the hs code for LABRAFIL M 1944 CS (BHN BAKU SUPLEMEN) COA 173317", "output": "28399000"}, {"text_input": "What is the hs code for DESONIDE MICRONIZED (BHN BAKU OBAT) COA NX2299M", "output": "29372900"}, {"text_input": "What is the hs code for MOMETASONE FUROATE MICRONIZED (BHN BAKU OBAT) COA NX2467M", "output": "29372200"}, {"text_input": "What is the hs code for TRIAMCINOLONE ACETONIDE MICRONIZED (BHN BAKU OBAT) COA NZ0111M", "output": "29372200"}, {"text_input": "What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NY2130M", "output": "29372200"}, {"text_input": "What is the hs code for NYSTATIN POWDER ROW (BHN BAKU OBAT) COA.C114267", "output": "29419000"}, {"text_input": "What is the hs code for NYSTATIN MICRONIZED ROW (BHN BAKU OBAT) COA C131009", "output": "29419000"}, {"text_input": "What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED(BHN BAKU OBAT UTK PAKAN TERNAK) COA. ROA0519", "output": "28363000"}, {"text_input": "What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN2451118", "output": "29221990"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A,20KG BA (BHN BAKU MAKANAN) COA WB01118400", "output": "29362100"}, {"text_input": "What is the hs code for PARSOL MCX,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518120391,0519010009", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519010003", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518120391", "output": "29420000"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01812478", "output": "29362700"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01812478", "output": "29362700"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18090031", "output": "32041900"}, {"text_input": "What is the hs code for COATED ASCORBIC ACID, TYPE EC,25KG BOX (BHN BAKU SUPLEMEN) COA TL01812569", "output": "29362700"}, {"text_input": "What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB01017666", "output": "29362800"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110039", "output": "32030010"}, {"text_input": "What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110014", "output": "29420000"}, {"text_input": "What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT18040036", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18100055", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT18100042", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT18090021", "output": "29362100"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT19010008,UT19020012", "output": "29362800"}, {"text_input": "What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ80407002", "output": "29420000"}, {"text_input": "What is the hs code for CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA. 1GC01CLB ZP48D 250MT", "output": "38249999"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190207", "output": "17029019"}, {"text_input": "What is the hs code for PROMOIS S-CAQ (BHN BAKU KOSMETIK) COA KLE", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA KLH", "output": "38249999"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 BHN BAKU OBAT, COA 121809620", "output": "28363000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 121809620, 121809621", "output": "28363000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 121809621,9623", "output": "28363000"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613476", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613472", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613475", "output": "38249999"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00818229", "output": "29362100"}, {"text_input": "What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK)COA GSC-K-041128", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-033088", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SNAIL SECREATION FILTRATE (BHN BAKU KOSMETIK)COA SAFW-041098", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-101228", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSFAC-021088", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK)COA MCP-N-060598", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND YUZU EXTRACT (BHN BAKU KOSMETIK) COA CJUBD-012919", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-033088", "output": "38249999"}, {"text_input": "What is the hs code for FENTACARE 2231 EF (BHN BAKU KOSMETIK )COA ZH19B1704,2003", "output": "34029019"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00818229", "output": "29362100"}, {"text_input": "What is the hs code for MC-GLUCAN (BHN BAKU KOSMETIK) COA MCGL190129", "output": "39139090"}, {"text_input": "What is the hs code for CILOSTAZOL USP (BHN BAKU OBAT) COA 18004CB2ARI", "output": "29337900"}, {"text_input": "What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BJ01209", "output": "29349990"}, {"text_input": "What is the hs code for PYRAZINAMIDE EP/USP (BHN BAKU OBAT) COA WPOZ 195 A19,WHOPZ 194 A19...", "output": "29339990"}, {"text_input": "What is the hs code for CALCITRIOL (BHN BAKU OBAT) COA F074-856R053-1, SAMPLE NO COMMERCIAL VALUE", "output": "29362900"}, {"text_input": "What is the hs code for GRANULAC (R) 200 H(BHN BAKU OBAT) COA. L101850319", "output": "17021100"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO190101", "output": "38249999"}, {"text_input": "What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-190202-GS", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS181002", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK)COA CFM180901-PGH", "output": "38249999"}, {"text_input": "What is the hs code for ICHA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK) COA II181118-AI-D-BIO", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613250", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613252", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613243", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613230", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613243", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY 200 GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613235", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613241", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613249", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612205", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL EZE II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613242", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613231", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613258", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613043", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE(BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613160", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613229", "output": "39061090"}, {"text_input": "What is the hs code for OMEPRAZOLE PELLETS 8,5 PCT (BHN BAKU OBAT) COA OP0219C008", "output": "30039000"}, {"text_input": "What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-2741218", "output": "29334910"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM (BHN BAKU OBAT) COA 1901006,7,8,2044", "output": "29331900"}, {"text_input": "What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND181206,190202", "output": "29372200"}, {"text_input": "What is the hs code for PREDNISONE USP40 (BHN BAKU OBAT) COA NPD190109", "output": "29372100"}, {"text_input": "What is the hs code for GABAPETIN (BHN BAKU OBAT) COA CGBU190109", "output": "29224900"}, {"text_input": "What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) , COA 902012", "output": "38249999"}, {"text_input": "What is the hs code for KSP-100 (10KG) BHN BAKU KOSMETIK, COA 902669", "output": "38249999"}, {"text_input": "What is the hs code for RESTYLANE SB VITALLGHLIDO LIDOCAINE 1ML , COA 16486-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE SB VITAL LIGHT LIDOCAINE 1 ML ,COA 16503-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE SB VITAL LIGHT LIDOCAINE 1ML , COA 16683-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE LIDOCAINE 1ML , COA 16374-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML, COA 16619-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE VOLYME 1 ML ,COA 16278-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE REFYNE 1 ML , COA 16326-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE DEFYNE 1 ML , COA 16572-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE KYSSE 1 ML , COA 16207-1", "output": "33049990"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE A(BHN BAKU OBAT) COA. M530697,530717,M530768...", "output": "29411019"}, {"text_input": "What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU OBAT) COA. 20190215", "output": "17023010"}, {"text_input": "What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA R703600", "output": "29419000"}, {"text_input": "What is the hs code for CEFOTAXIME SODIUM EP (BHN BAKU OBAT) COA R202700", "output": "29419000"}, {"text_input": "What is the hs code for IMERCARE 400D S (BHN BAKU KOSMETIK) COA 1708A4-10", "output": "38029090"}, {"text_input": "What is the hs code for LIPOID PPL-600 (BHN BAKU OBAT) COA.577200-2180223/011-012", "output": "29232010"}, {"text_input": "What is the hs code for PREDNISONE (BHN BAKU OBAT) COA K03B20180712M", "output": "29372100"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613655", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613651", "output": "38249999"}, {"text_input": "What is the hs code for OLIO VINACCIOLI RAFFINATO (BHN BAKU KOSMETIK) COA.B1900045", "output": "15152919"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG190201", "output": "29362700"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613447", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613510", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613511", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613519", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613517", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613037", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613503", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613478", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613487", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613488", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613252", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613490", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613500", "output": "38249999"}, {"text_input": "What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613499", "output": "32151900"}, {"text_input": "What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613499", "output": "32151900"}, {"text_input": "What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613499", "output": "32151900"}, {"text_input": "What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613499", "output": "32151900"}, {"text_input": "What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613499", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613489", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH612682", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613160", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613477", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613518", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613504", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613512", "output": "38249999"}, {"text_input": "What is the hs code for CITRIC ACID MONOHYDRATE BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX1902017", "output": "29181400"}, {"text_input": "What is the hs code for VC ASCORBIC ACID DS 97PCT, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG1811004 S/D 6 ,2002,2016", "output": "29362700"}, {"text_input": "What is the hs code for SILYBIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10918/M1", "output": "38249999"}, {"text_input": "What is the hs code for SILYBIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 10919/M1", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10921/M1", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10922/M1", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 10930/M1", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0003700", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXT 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0003800", "output": "13021990"}, {"text_input": "What is the hs code for SILYMARIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 19B0002700", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA TRITERP/C (BHN BAKU SUPLEMEN) COA 19S0003400", "output": "38249999"}, {"text_input": "What is the hs code for PHASEOLUS VULGARIS DRY EXTRACT (BHN BAKU SUPLEMEN) COA 071019", "output": "13021990"}, {"text_input": "What is the hs code for PHASEOLUS VULGARIS DRY EXTRACT (BHN BAKU SUPLEMEN) COA 071019,SAMPLE NO COMMERCIAL VALUE", "output": "13021990"}, {"text_input": "What is the hs code for VACCINIUM MYRTILLUS DRY EX (BHN BAKU SUPLEMEN) COA 064984", "output": "13021990"}, {"text_input": "What is the hs code for VACCINIUM MYRTILLUS DRY EX (BHN BAKU SUPLEMEN) COA 069402", "output": "13021990"}, {"text_input": "What is the hs code for CENTELLA ASIATICA /PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 073983", "output": "38249999"}, {"text_input": "What is the hs code for P. GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 074506", "output": "13021990"}, {"text_input": "What is the hs code for BILBERRY (V.MYRTILLUS) ET.EX 36PCT (BHN BAKU SUPLEMEN), COA 074664", "output": "13021990"}, {"text_input": "What is the hs code for SERENOA REPENS PURIFIEDEXT (BHN BAKU SUPLEMEN) COA 075070", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA /PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 073983", "output": "38249999"}, {"text_input": "What is the hs code for ECHINACEA ANG DRY PURIF.EX (BHN BAKU SUPLEMEN) COA 070823", "output": "13021990"}, {"text_input": "What is the hs code for P. GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 074506", "output": "13021990"}, {"text_input": "What is the hs code for P.GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 074506", "output": "13021990"}, {"text_input": "What is the hs code for PHASEOLUS VULGARIS DRY EXTRACT (BHN BAKU SUPLEMEN) COA 071019", "output": "13021990"}, {"text_input": "What is the hs code for PHASEOLUS VULGARIS DRY EXTRACT (BHN BAKU SUPLEMEN) COA 071019,SAMPLE NO COMMERCIAL VALUE", "output": "13021990"}, {"text_input": "What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA 173371", "output": "28399000"}, {"text_input": "What is the hs code for TRANSCUTOL P (BAHAN BAKU OBAT) COA 173156", "output": "28399000"}, {"text_input": "What is the hs code for SODIUM VALPROATE (BAHAN BAKU OBAT) COA.452718 (641)", "output": "29159090"}, {"text_input": "What is the hs code for LIQUORICE LC (BHN BAKU KOSMETIK) COA.112431/P89471-P89474", "output": "13021920"}, {"text_input": "What is the hs code for LIQUORICE LC (BHN BAKU KOSMETIK) COA 113189/P94725-P94728", "output": "13021920"}, {"text_input": "What is the hs code for REFINED SUNFLOWER OIL (BHN BAKU KOSMETIK) COA KKU 04/19", "output": "38249999"}, {"text_input": "What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA C02201UG", "output": "29053200"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8183841", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8241935", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8206906", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8241935", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8227600", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 9002638", "output": "38210010"}, {"text_input": "What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8337538", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO TSM BROTH 10KG (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 8337538", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255630", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9010685", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8225932", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8170732", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8227610", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8291939", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9002615", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183873", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8297692", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9002997", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8282931", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8271802", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8325637", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255932", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9002615", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9002997", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8234653", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9002997", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255932", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9002997", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8234653", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MOTILITY TEST MEDIUM BBL (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9015933", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141903", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8256652", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9002997", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK 90MM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8332998", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9010977", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9017883", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8170732", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8057815", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MYP AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7363783", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE RVS SOY BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8260535", "output": "38210010"}, {"text_input": "What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 181737816", "output": "38210010"}, {"text_input": "What is the hs code for KIT UNIVERSAL VIRAL TRANSPORT STD (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 181391500", "output": "38210010"}, {"text_input": "What is the hs code for SACHET GASPAK EZ CAMPY (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8290657", "output": "38210010"}, {"text_input": "What is the hs code for MEDIMACHINE II (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8241935", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8310579", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8271696", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8227600", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8331841", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8162545", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8270639,8282854", "output": "38210010"}, {"text_input": "What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8337538", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8281593", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8026869", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255630", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 90106851", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8079881", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255932", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8170732", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8227610", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8291715", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8297965", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8291939", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8317859", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297842", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8291800", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9002615", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILTER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8079540", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183873", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8256652", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297692", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8282931", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8271802", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8344948", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8183841", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8291707", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8219521", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8219521", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LETHERN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8233839", "output": "38210010"}, {"text_input": "What is the hs code for TUBE EGG YOLK ENRICHMENT50PCT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 83354877", "output": "38210010"}, {"text_input": "What is the hs code for TUBE PENASE CONCENTRATE 10X20ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 8360781", "output": "38210010"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8156756", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 8312963", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255563", "output": "38210010"}, {"text_input": "What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8334893", "output": "38210010"}, {"text_input": "What is the hs code for VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8270846", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8332781", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D/E NEUTRALIZING AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9031762", "output": "38210010"}, {"text_input": "What is the hs code for VIAL PERICILLINASE 10000000 KU/ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 83389029", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SHIGELLA ANTIS POLY A1 LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 81036295", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL O ANTISERUM FACTOR 9 GROUP D (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8341611", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL O ANTISERUM GRP C1 FTR 6/7 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8306817", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8338844", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8207980", "output": "38210010"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8232579", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8267844", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8291707", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255580", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255510", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7314928", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8239511", "output": "38210010"}, {"text_input": "What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8295519", "output": "38210010"}, {"text_input": "What is the hs code for CD3 APC SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9016646", "output": "38210010"}, {"text_input": "What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9016637", "output": "38210010"}, {"text_input": "What is the hs code for CD79A PE HM47 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8274645", "output": "38210010"}, {"text_input": "What is the hs code for ANTI-MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8348900", "output": "38210010"}, {"text_input": "What is the hs code for CD7 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8307942", "output": "38210010"}, {"text_input": "What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8341873", "output": "38210010"}, {"text_input": "What is the hs code for CD10 APC HI10A 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9009891", "output": "38210010"}, {"text_input": "What is the hs code for CD11B APC D12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9010912", "output": "38210010"}, {"text_input": "What is the hs code for CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8268723", "output": "38210010"}, {"text_input": "What is the hs code for CD25 PE 2A3 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8292598", "output": "38210010"}, {"text_input": "What is the hs code for CD56 APC NCAM 16.2 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8072654", "output": "38210010"}, {"text_input": "What is the hs code for CD10 PE-CY 7 HI10A 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9017648", "output": "38210010"}, {"text_input": "What is the hs code for CD19 PE-CY7 SJ25C1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9017531", "output": "38210010"}, {"text_input": "What is the hs code for CD34 PERCP CY5.5 8G12 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9010980", "output": "38210010"}, {"text_input": "What is the hs code for CD5 FITC L1/F12 100 TESTS RUO/GMP (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8270690", "output": "38210010"}, {"text_input": "What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8348845", "output": "38210010"}, {"text_input": "What is the hs code for CD45 PERCP 2D1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8150765", "output": "38210010"}, {"text_input": "What is the hs code for CD20 FITC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8320767", "output": "38210010"}, {"text_input": "What is the hs code for CD34 PE-CY7 BG12 Y7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8344849", "output": "38210010"}, {"text_input": "What is the hs code for ANTI KAPPA FITC/ANTI LAMBDA PE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8325669", "output": "38210010"}, {"text_input": "What is the hs code for CD3 APC H7 SK7 100 TEST RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9042932", "output": "38210010"}, {"text_input": "What is the hs code for CD20 V500-C RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 90077401", "output": "38210010"}, {"text_input": "What is the hs code for CD7 APC (M-T701) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8354761", "output": "38210010"}, {"text_input": "What is the hs code for CD200 APC (MRX OX-104) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9012744", "output": "38210010"}, {"text_input": "What is the hs code for CD43 APC-H7 (1G10) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9014684", "output": "38210010"}, {"text_input": "What is the hs code for CD23 FITC EBVCS 5 RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9046764", "output": "38210010"}, {"text_input": "What is the hs code for CD38 APC-H7 (HB7) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9022820", "output": "38210010"}, {"text_input": "What is the hs code for HU CD3 HORIZON V450 UCHT1 120TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9002639", "output": "38210010"}, {"text_input": "What is the hs code for HU CD45 HORIZON V500 HI30 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8257900", "output": "38210010"}, {"text_input": "What is the hs code for HU CD64 APC-H7 10.1 50TST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8297936", "output": "38210010"}, {"text_input": "What is the hs code for HU CD36 HORIZON V450 CB38 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8337814", "output": "38210010"}, {"text_input": "What is the hs code for HU CD7 APC M-T701 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8087803", "output": "38210010"}, {"text_input": "What is the hs code for HU CD3 B421 UCHT1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8316512", "output": "38210010"}, {"text_input": "What is the hs code for HU CD10 BV421 HI10A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8330923", "output": "38210010"}, {"text_input": "What is the hs code for HU CD138 BV421 MI15 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8276889", "output": "38210010"}, {"text_input": "What is the hs code for HU CD19 BV510 SJ25C1 100TST (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 802", "output": "38210010"}, {"text_input": "What is the hs code for HU CD14 BV421 MPHIP9 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8236752", "output": "38210010"}, {"text_input": "What is the hs code for HU CD103 BV421 BER ACT8 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8250690", "output": "38210010"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8232579", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8347637", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255580", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8239511", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8219521", "output": "38210010"}, {"text_input": "What is the hs code for MIRANOL C2M CONC NP 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP808517R", "output": "34029099"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 INF OIL ,4,5KG PJUG (BHN BAKU SUPLEMEN) COA TS00012079", "output": "29362500"}, {"text_input": "What is the hs code for GENIVIDA (TM) TG ,1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT17080006", "output": "29329990"}, {"text_input": "What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00518468", "output": "29362700"}, {"text_input": "What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT18010016", "output": "29362500"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01901719", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT19020838,839", "output": "29362100"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE,25KG BOX (BHN BAKU SUPLEMEN) COA TL01812478", "output": "29362700"}, {"text_input": "What is the hs code for BEAUPLEX (TM) VH,5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF18316006", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0319010176,177", "output": "29420000"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01808076,10101,10102,11116", "output": "29362400"}, {"text_input": "What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01807810", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0319010177,178", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708170192,80091,80092", "output": "29420000"}, {"text_input": "What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000179586", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001520830", "output": "29420000"}, {"text_input": "What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01811116", "output": "29362400"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18100317,318", "output": "29362800"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0319010178", "output": "29420000"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT18040172", "output": "29362100"}, {"text_input": "What is the hs code for PARSOL EHS, 20KG PC (BHN BAKU KOSMETIK) COA 0718050071,70106", "output": "29420000"}, {"text_input": "What is the hs code for DL-PANTHENOL 50L ,20KG PAIL PE, BHN BAKU KOSMETIK, COA TL01807634", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0319010178 S/D 181", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0218120242", "output": "29420000"}, {"text_input": "What is the hs code for AMPHISOL K( BHN BAKU KOSMETIK) COA VE00562749,750", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518120396", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0518120396,10009", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL HMS, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0418110236", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SHIELD ,20KG BOX (BHN BAKU KOSMETIK) COA 0818120259", "output": "29420000"}, {"text_input": "What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA. 8MT181248", "output": "30032000"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT LYOPHIZED (BHN BAKU OBAT) COA NY3411", "output": "29372900"}, {"text_input": "What is the hs code for SILDENAFIL CITRATE USP (BHN BAKU OBAT) COA SLC 030 12 18", "output": "29335990"}, {"text_input": "What is the hs code for MAGNOLIA BARK EXTRACT (BHN BAKU KOSMETIK) COA MBE05-181001", "output": "38249999"}, {"text_input": "What is the hs code for PROPYPHENAZONE (ST) (BHN BAKU OBAT) COA 1804031", "output": "29331100"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539172", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539170", "output": "35051010"}, {"text_input": "What is the hs code for STARCAP 1500 CO-PROCESSED (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537870", "output": "35051010"}, {"text_input": "What is the hs code for SUPPOCIRE AM PELLETS (BHN BAKU SUPLEMEN) COA 18E4910", "output": "28399000"}, {"text_input": "What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-022208", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA MCP-N-060598", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND JEJU TANGERINE EXTRACT (BHN BAKU KOSMETIK)COA GTUP-T-012988", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND LICORICE EXTRACT (BHN BAKU KOSMETIK) COA GGB-022778", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND BIO SODIUM HYALURONATE 1PCT SOLUTION (BHN BAKU KOSMETIK) COA HASC-132129", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK)COA ARP-160839", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND BIO SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA NMP-L-020719", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-062119", "output": "38249999"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190219", "output": "17029019"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613685", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613687", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613690", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613689", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613684", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613500", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613691", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613040", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613688", "output": "38249999"}, {"text_input": "What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 66273P", "output": "38249999"}, {"text_input": "What is the hs code for DEEP IMPACT DEO (BHN BAKU KOSMETIK) COA 10300081", "output": "38249999"}, {"text_input": "What is the hs code for O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 102418/005767", "output": "38249999"}, {"text_input": "What is the hs code for MATCHA GREEN TEA EXTRACT CSP 6 TC ( BHN BAKU KOSMETIK), COA CSP 18024 EOU", "output": "38249999"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 FOOD OIL ,4,5KG PJUG (BHN BAKU SUPLEMEN) COA TS00011948", "output": "29362500"}, {"text_input": "What is the hs code for VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 121809477", "output": "28365010"}, {"text_input": "What is the hs code for SOLUTION BACTERIOSTAT CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 18K3056904", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK 90MM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9017879", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9017886", "output": "38210010"}, {"text_input": "What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 181772115", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9030984", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 7312565", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206906", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 8317859", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 83105797", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9017880", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA IC XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9017878", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8331811", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8024751", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MOTILITY TEST MEDIUM BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9015933", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PHENOL RED LACTOSE BR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8311620", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE RHAMNOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8141537", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8297983", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8115632", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8271706", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE WL DIFFERENT MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8134719", "output": "38210010"}, {"text_input": "What is the hs code for GASPAK EZ STANDARD INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7303752", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01A348M", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE YEAST MOLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8291647", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE M TGE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8282888", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8193979", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7325835,8305704", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MAC CONKEY BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9039632", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MAC CONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9039632", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9002997", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9031930", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9002997", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PROTEOSE PEPTONE NO 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8232801,8232827", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TC LACTALBUMIN HYDROLYSATE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7331640", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BEEF EXTRACT POWDER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233778", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DILCO MI AGAR 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9031733", "output": "38210010"}, {"text_input": "What is the hs code for AZITHROMYCIN DIHYDRATE USP41 (BHN BAKU OBAT) COA 103-181009-1", "output": "29419000"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01811274,2472,2478", "output": "29362700"}, {"text_input": "What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) , COA 902012", "output": "38249999"}, {"text_input": "What is the hs code for KF-96A-6CS (16KG) BHN BAKU KOSMETIK, COA 902012", "output": "38249999"}, {"text_input": "What is the hs code for KP-562P (16KG) BHN BAKU KOSMETIK, COA 802008", "output": "38249999"}, {"text_input": "What is the hs code for KF-6038 (16KG) BHN BAKU KOSMETIK, COA 901209", "output": "38249999"}, {"text_input": "What is the hs code for KP-578 (16KG) BHN BAKU KOSMETIK , COA 804077", "output": "38249999"}, {"text_input": "What is the hs code for KSG-210 (16KG) BHN BAKU KOSMETIK , COA 903865", "output": "38249999"}, {"text_input": "What is the hs code for KSG-710 (16KG) BHN BAKU KOSMETIK, COA 902223", "output": "38249999"}, {"text_input": "What is the hs code for KF-6017 (17KG) BHN BAKU KOSMETIK, COA 902118", "output": "38249999"}, {"text_input": "What is the hs code for TEFOSE 63 ( BHN BAKU SUPLEMEN) ,COA 172486", "output": "28399000"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK, COA 01/19LG4", "output": "28399000"}, {"text_input": "What is the hs code for NOMEGESTROL ACETATE (BHN BAKU OBAT) COA NY3417", "output": "29372300"}, {"text_input": "What is the hs code for DEXCHLORPHENIRAMINE MALEATE BP/EP (BHN BAKU OBAT) COA SLL/DC/0319004", "output": "29333910"}, {"text_input": "What is the hs code for LIPOID S 20 (BHN BAKU OBAT) COA. 572000-2180123/021-035 (15)", "output": "29232010"}, {"text_input": "What is the hs code for METRONIDAZOLE BP (BHN BAKU OBAT) COA MBO-19030127", "output": "29332900"}, {"text_input": "What is the hs code for PREDNISONE USP40 (BHN BAKU OBAT) COA NPD181213", "output": "29372100"}, {"text_input": "What is the hs code for LINCOMYCIN HCL EP (BHN BAKU OBAT) COA 1809011", "output": "29419000"}, {"text_input": "What is the hs code for SCHISANDRA EXTRACT SCHISANDRIN 5PCT (BHN BAKU OBAT) COA SCE03-19022201", "output": "13021990"}, {"text_input": "What is the hs code for GRANULAC (R) 200 H (BHN BAKU OBAT) COA. L105715118", "output": "17021100"}, {"text_input": "What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.19100165,166", "output": "29391900"}, {"text_input": "What is the hs code for OPAGLOS WHITE/OFF WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT683215", "output": "32151900"}, {"text_input": "What is the hs code for CONFECTIONERY INK BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT685772", "output": "32151900"}, {"text_input": "What is the hs code for NIACINAMIDE PC,25KG BOX (BHN BAKU KOSMETIK) COA 0000179587 S/D 589", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0218120253", "output": "29420000"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ80313082", "output": "29362100"}, {"text_input": "What is the hs code for PARSOL MAX, 25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0918090030", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0818120259", "output": "29420000"}, {"text_input": "What is the hs code for SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA 19022012", "output": "38249999"}, {"text_input": "What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA. 20190224", "output": "17023010"}, {"text_input": "What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP809446", "output": "39059990"}, {"text_input": "What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP809447", "output": "39059990"}, {"text_input": "What is the hs code for EUXYL PE 9010 CN 200KG FA (BHN BAKU KOSMETIK) COA 1521841,1525235,1525327", "output": "38249999"}, {"text_input": "What is the hs code for GROTANOL 3025 CN 10KG KA (BHN BAKU KOSMETIK) COA 1523813", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 CN 10KG KA (BHN BAKU KOSMETIK) COA 1521364,1626526", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 CN 200KG FA (BHN BAKU KOSMETIK) COA 1524098,1526714", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 903 10KG KA (BHN BAKU KOSMETIK) COA 1522518", "output": "38249999"}, {"text_input": "What is the hs code for THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000017021", "output": "33029000"}, {"text_input": "What is the hs code for PLAISANCE P116808 (BHN BAKU KOSMETIK) COA.0000017030", "output": "33029000"}, {"text_input": "What is the hs code for PURILEX TM COMPACTED, CEFALEXIN MONOHYDRATE (PURIDROX POWDER) BHN BAKU OBAT,COA.B427660", "output": "29419000"}, {"text_input": "What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1910188,1910190", "output": "29242930"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE A(BHN BAKU OBAT) COA. M530776,775,781,774", "output": "29411019"}, {"text_input": "What is the hs code for CEFADROXILE MONOHYDRATE PURIDROX POWDER (BHN BAKU OBAT) COA M334613,15,17", "output": "29419000"}, {"text_input": "What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT) COA M334618,619,620", "output": "29419000"}, {"text_input": "What is the hs code for VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU MAKANAN) COA HPB1807026,63,66,67,1901079", "output": "29362700"}, {"text_input": "What is the hs code for ANTISHINE WASH 1 (BHN BAKU KOSMETIK) COA 10300122", "output": "38249999"}, {"text_input": "What is the hs code for PEG 400 (POLYETHYLENE GLYCOL) BAHAN BAKU KOSMETIK) COA.AKW0006970", "output": "39072010"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708170127, SAMPLE NO COMMERCIAL VALUE", "output": "29420000"}, {"text_input": "What is the hs code for MAPROTILINE HCL (BHN BAKU OBAT) COA 1850003424,3495", "output": "29214900"}, {"text_input": "What is the hs code for LIFE'S DHA S35-O100, 5KG ALUF (B.BAKU SUPLEMEN) COA VY00297607", "output": "29362500"}, {"text_input": "What is the hs code for NICLOSAMIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 190220", "output": "29242990"}, {"text_input": "What is the hs code for CROSPOVIDONE XL-10 (BHN BAKU OBAT) COA PP190115XL-10", "output": "39059990"}, {"text_input": "What is the hs code for SUCRALOSE (BHN BAKU OBAT) COA 19022201", "output": "29321400"}, {"text_input": "What is the hs code for D-GLUCOSAMINE SULPHATE POTASSIUM (BHN BAKU OBAT) COA XH2019030201", "output": "29329990"}, {"text_input": "What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20190217", "output": "29309090"}, {"text_input": "What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20190222", "output": "29309090"}, {"text_input": "What is the hs code for FIBRE DRUM (DRUM KOSONG)", "output": "48192000"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-190202", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK)COA EG543-190202", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK)COA GTB-012229", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK) COA U190312", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SNAIL SECREATION FILTRATE (BHN BAKU KOSMETIK)COA SAFW-041098", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-022208", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-101228", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSFAC-021088", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK)COA MSEEC-050918", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA MCP-N-060598", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND YUZU EXTRACT (BHN BAKU KOSMETIK) COA CJUBD-021929,CJUBD-031139", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND GLA-40 (BHN BAKU KOSMETIK) COA GLCP-032239", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-030728", "output": "38249999"}, {"text_input": "What is the hs code for DWI BI (BHN BAKU MAKANAN) COA XW91901333", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN B12 0,1PCT WS (BHN BAKU MAKANAN) COA UT18080017", "output": "29362600"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80513137", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18080017", "output": "29362600"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ80513137", "output": "29362500"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ81102495", "output": "29362200"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01811113", "output": "29362400"}, {"text_input": "What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91901332", "output": "21069059"}, {"text_input": "What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91902062", "output": "21069059"}, {"text_input": "What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91902170", "output": "21069059"}, {"text_input": "What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91902062", "output": "21069059"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01811329,330", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN B120.1PCT WS (BHN BAKU MAKANAN) COA UT18080017", "output": "29362600"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT18090057", "output": "29362800"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ81102495,UQ81102499", "output": "29362200"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01811113", "output": "29362400"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ81102495", "output": "29362200"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01802108", "output": "29362900"}, {"text_input": "What is the hs code for B--CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT18070024", "output": "32041900"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01807116,8275", "output": "29362700"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01810308,11329", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UE01811330,11332", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18080017", "output": "29362600"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18090057,100076", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18100076", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA TL018100076", "output": "29362800"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01808102", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01808102", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01808102", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01808102", "output": "29362900"}, {"text_input": "What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE01811020", "output": "29362100"}, {"text_input": "What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE01811020", "output": "29362100"}, {"text_input": "What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE01811020", "output": "29362100"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ80703211", "output": "29362200"}, {"text_input": "What is the hs code for ASCORBIC ACID ,25KG BOX /ALU (BHN BAKU MAKANAN) COA TL01808275,84", "output": "29362700"}, {"text_input": "What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18100299", "output": "29362800"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB01118971", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01808284", "output": "29362700"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01810923", "output": "29362700"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1808118,8119", "output": "29362300"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01806052", "output": "32041900"}, {"text_input": "What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18100299", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT18070024", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT18050026", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN), COA OPI1808009", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18070244", "output": "29362400"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418107", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518046", "output": "29362200"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT18050026", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ81209022", "output": "29362300"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18090057", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT18050026", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418107", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418031", "output": "29362500"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518046", "output": "29362200"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT18050026", "output": "29362900"}, {"text_input": "What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01809095", "output": "29362400"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418106,8107", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418030", "output": "29362500"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU MAKANAN) COA UT18050026", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518032,34", "output": "29362300"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT18050026", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI17100012", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18090045", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G(BHN BAKU MAKANAN) COA UT18100084", "output": "29362900"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT18070024", "output": "32041900"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UE01805042", "output": "32041900"}, {"text_input": "What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18100299", "output": "29362800"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT18090333", "output": "29362400"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1808009", "output": "29362900"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT18090059", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01803014", "output": "29362900"}, {"text_input": "What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91901218,1219", "output": "29420000"}, {"text_input": "What is the hs code for D-PANTHENOL 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01809092", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA 0518110309,327", "output": "29420000"}, {"text_input": "What is the hs code for DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01808637", "output": "29362400"}, {"text_input": "What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91902333,34,35", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SHIELD ,20KG BOX (BHN BAKU KOSMETIK) COA 0818120259", "output": "29420000"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18100318", "output": "29362800"}, {"text_input": "What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0021803", "output": "29362500"}, {"text_input": "What is the hs code for STAY-C (R) 50PCT ,5KG BAG ALU (BHN BAKU KOSMETIK) COA CS18060023,24", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT18050173", "output": "29362100"}, {"text_input": "What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0718070106", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0703190002", "output": "29420000"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613938", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613940", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613935", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613944", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613925", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613937", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613924", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614160", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY 200 GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613931", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613927", "output": "38249999"}, {"text_input": "What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613936", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613933", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613929", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613928", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613195", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613930", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613926", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613932", "output": "38249999"}, {"text_input": "What is the hs code for BICAR PHAMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA DOC0431974", "output": "28363000"}, {"text_input": "What is the hs code for PHARMAKAOLIN B 860 (BHN BAKU KOSMETIK) COA 08.08.18", "output": "25070000"}, {"text_input": "What is the hs code for SMALL QUATITY SURCHARGE HIRSCHAU, SAMPLE NO COMMERCIAL VALUE", "output": "25070000"}, {"text_input": "What is the hs code for EUXYL K 100 CN 10KG KA (BHN BAKU KOSMETIK) COA 1522602,1524252", "output": "38249999"}, {"text_input": "What is the hs code for GROTANOL 3025 CN 10KG KA (BHN BAKU KOSMETIK) COA 1520131", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 CN 10KG KA (BHN BAKU KOSMETIK) COA 1519499,1521364", "output": "38249999"}, {"text_input": "What is the hs code for SENSIDINE DO CN 10KG CA (BHN BAKU KOSMETIK) COA 1518078,1520056,1524582", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 900 CN 10KG KA (BHN BAKU KOSMETIK) COA 1522345", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 CN 200KG FA (BHN BAKU KOSMETIK) COA 1521722,1523259,1524098", "output": "38249999"}, {"text_input": "What is the hs code for CORTISONE ACETATE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1800951018", "output": "29372900"}, {"text_input": "What is the hs code for GRANULAC (R) 200 H (BHN BAKU OBAT) COA. L105715019", "output": "17021100"}, {"text_input": "What is the hs code for ALLOPURINOL (BHN BAKU OBAT) COA 19004AY3ARII", "output": "29335990"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA. RBA0701900", "output": "28363000"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA MTP06819", "output": "28363000"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-190303", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK)COA EG543-190303", "output": "38249999"}, {"text_input": "What is the hs code for SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA 19031410,19022610, 19030412", "output": "38249999"}, {"text_input": "What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA. 20190227", "output": "17023010"}, {"text_input": "What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA R901000", "output": "29419000"}, {"text_input": "What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA R703600", "output": "29419000"}, {"text_input": "What is the hs code for CEFTIZOXIME SODIUM (BHN BAKU OBAT) COA S600100", "output": "29419000"}, {"text_input": "What is the hs code for ROSUVASTATIN CALCIUM (BHN BAKU OBAT) COA RVM0360219", "output": "29359000"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101850719", "output": "17021100"}, {"text_input": "What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104310719", "output": "17021100"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA KLJ, WCK", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS S-CAQ (BHN BAKU KOSMETIK) COA KLE", "output": "38249999"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT19010001", "output": "32041900"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU MAKANAN) COA UT18090031", "output": "32041900"}, {"text_input": "What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19020011", "output": "29362500"}, {"text_input": "What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB01017666", "output": "29362800"}, {"text_input": "What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00518469", "output": "29362700"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18090031", "output": "32041900"}, {"text_input": "What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT18040036", "output": "29362500"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S TG (BHN BAKU SUPLEMEN) COA UT18110039", "output": "32030010"}, {"text_input": "What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18100055", "output": "29362100"}, {"text_input": "What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF, 1KG ALUF (BHN BAKU SUPLEMEN) COA UE01811060", "output": "32030010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN538787", "output": "35051010"}, {"text_input": "What is the hs code for PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for TRISODIUM CITRATE DIHYDRATE FINE GRANULAR (BHN BAKU OBAT), COA UJ846", "output": "29181400"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU OBAT) COA UJ907", "output": "29181400"}, {"text_input": "What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP805753", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C #40/ALLURA RED AC AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP801384", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C BLUE #2/BLUE CARMINE AL ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP803628", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP804546", "output": "32151900"}, {"text_input": "What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP805751", "output": "32151900"}, {"text_input": "What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP798864", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C BLUE #1/BRILLIANT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP805964", "output": "32151900"}, {"text_input": "What is the hs code for LINEN OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA LIU181106-H", "output": "38249999"}, {"text_input": "What is the hs code for WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK)COA EG138-181202", "output": "38249999"}, {"text_input": "What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIV181202-BGBIO", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS190201", "output": "38249999"}, {"text_input": "What is the hs code for WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK) COA EG138-181202", "output": "38249999"}, {"text_input": "What is the hs code for WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK) COA EG138-181202", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM180901-PGH", "output": "38249999"}, {"text_input": "What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA VIV180202-BGBIO", "output": "38249999"}, {"text_input": "What is the hs code for LICORICE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA GLG171001-BGBIO", "output": "38249999"}, {"text_input": "What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) COA", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO180601", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU OBAT) COA PAG-CO190101", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU OBAT) COA CEA-CO190302", "output": "38249999"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011I34L01", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E4M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180H8M012", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I6Q001", "output": "39123900"}, {"text_input": "What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91903006,3007", "output": "29420000"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18100318", "output": "29362800"}, {"text_input": "What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18100299", "output": "29362800"}, {"text_input": "What is the hs code for NIACINAMIDE PC,25KG BOX (BHN BAKU KOSMETIK) COA 0000179835", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180092,93,118", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MAX, 25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0918090030", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0918090030", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519010013", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519010013", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519010013", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519010013,17", "output": "29420000"}, {"text_input": "What is the hs code for STAY C (R) 50, 20KG BOX ALU (BHN BAKU KOSMETIK) COA CS18060005,6,10", "output": "29362700"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP19033039,40", "output": "29211900"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A,20KG BA (BHN BAKU MAKANAN) COA WB00219406,07", "output": "29362100"}, {"text_input": "What is the hs code for OMEPRAZOLE PELLETS 8,5 PCT (BHN BAKU OBAT) COA OP0219C019", "output": "30039000"}, {"text_input": "What is the hs code for DEXTROMETHORPHAN HBR USP (BAHAN BAKU OBAT) COA.EUS10340", "output": "29334910"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190305", "output": "17029019"}, {"text_input": "What is the hs code for MILD TALCUM MOD1 (BHN BAKU KOSMETIK) COA 10300160", "output": "38249999"}, {"text_input": "What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 180807", "output": "29329990"}, {"text_input": "What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 182567", "output": "13021990"}, {"text_input": "What is the hs code for BIOCELLACT CHAMOMILLA BD(BHN BAKU KOSMETIK) COA 182744", "output": "13021990"}, {"text_input": "What is the hs code for CARBAZOCHROME SODIUM SULFONATE (ORAL GRADE) BHN BAKU OBAT,COA AC81005/81121", "output": "29339990"}, {"text_input": "What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA. DOC0631921", "output": "28363000"}, {"text_input": "What is the hs code for LABRAFIL M 1944 CS (BHN BAKU OBAT) COA 173973", "output": "28399000"}, {"text_input": "What is the hs code for TEFOSE 63 BF (BAHAN BAKU OBAT) COA 173890", "output": "28399000"}, {"text_input": "What is the hs code for GELUCIRE 48/16 PELLETS (BAHAN BAKU OBAT) COA 161003", "output": "28399000"}, {"text_input": "What is the hs code for SORBITOL SOLUTION 70PCT CRYSTALLINE (BAHAN BAKU KOSMETIK) COA.9531819", "output": "29054400"}, {"text_input": "What is the hs code for GRANULAC (R) 200 H (BHN BAKU OBAT) COA. L101850719", "output": "17021100"}, {"text_input": "What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA.LDC15519T", "output": "27101990"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1802823436", "output": "29372900"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1902860518", "output": "29372900"}, {"text_input": "What is the hs code for DPG FG (BHN BAKU KOSMETIK) COA C02361DP", "output": "29094900"}, {"text_input": "What is the hs code for PG USP (BHN BAKU KOSMETIK) COA C02201UG", "output": "29053200"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK COA B270119", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB030219", "output": "39123900"}, {"text_input": "What is the hs code for MAGNOLIA BARK EXTRACT (BHN BAKU KOSMETIK) COA MBE05-181001/47675", "output": "38249999"}, {"text_input": "What is the hs code for EDIBLE BOVINE GELATINE (BAHAN BAKU OBAT ), COA 5001902640", "output": "35030049"}, {"text_input": "What is the hs code for EDIBLE BOVINE GELATINE (BHN BAKU OBAT) COA 5001902640", "output": "35030049"}, {"text_input": "What is the hs code for VITAMIN A ACETATE 1.5 MIU/.G (BHN BAKU SUPLEMEN) COA UT18120089", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT19030843", "output": "29362100"}, {"text_input": "What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED(BHN BAKU OBAT UTK PAKAN TERNAK) COA. MTP01019", "output": "28363000"}, {"text_input": "What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED(BHN BAKU OBAT UTK PAKAN TERNAK) COA. MTP01019", "output": "28363000"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01903219", "output": "29362700"}, {"text_input": "What is the hs code for GENIVIDA (TM) TG ,1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT17080005", "output": "29329990"}, {"text_input": "What is the hs code for GENIVIDA (TM) TG, 1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT17080005", "output": "29329990"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18090031", "output": "32041900"}, {"text_input": "What is the hs code for COATED ASCORBIC ACID ,TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01902093", "output": "29362700"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00218197", "output": "29362800"}, {"text_input": "What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110014", "output": "29420000"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE /M 1.0 M.I.U/G (BHN BAKU SUPLEMEN) COA UT19030022", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT19030022", "output": "29362100"}, {"text_input": "What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ80407003", "output": "29420000"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA651933", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY SGR RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA651859", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA651934", "output": "38249999"}, {"text_input": "What is the hs code for PRAYPHOS DKP FG (BHN BAKU KOSMETIK) COA 1900731", "output": "29420000"}, {"text_input": "What is the hs code for SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA 19031410", "output": "38249999"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190317", "output": "17029019"}, {"text_input": "What is the hs code for KF-6016 (BHN BAKU KOSMETIK) , COA 901061, SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for E.C.O TRACE FE 20PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC290319", "output": "29224900"}, {"text_input": "What is the hs code for TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA 90118", "output": "38247900"}, {"text_input": "What is the hs code for OILESS CITY TM (BHN BAKU KOSMETIK) COA 71104", "output": "38247900"}, {"text_input": "What is the hs code for BICAR FOOD 27/50 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA MTP06219", "output": "28363000"}, {"text_input": "What is the hs code for BICAR FOOD 0/50 SODIUM BICARBONATE (BHN BAKU OBAT )COA MTP03519", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA MTP04219", "output": "28363000"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614373", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614359", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613091", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614369", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614368", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613932", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614358", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614371", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614370", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614366", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614362", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614364", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY 200 PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614356", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614363", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614360", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614361", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614212", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614372", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614355", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL EZE PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614357", "output": "39061090"}, {"text_input": "What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614367", "output": "32151900"}, {"text_input": "What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614367", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614469", "output": "38249999"}, {"text_input": "What is the hs code for E.C.O TRACE ZN 25PCT (BHN BAKU UTK PAKAN TERNAK) COA BC040319", "output": "29224900"}, {"text_input": "What is the hs code for E.C.O.TRACE MN 20PCT(BHN BAKU OBAT UTK PAKAN TERNAK) COA BC060319", "output": "29224900"}, {"text_input": "What is the hs code for E.C.O TRACE FE 20PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC070319", "output": "29224900"}, {"text_input": "What is the hs code for LIQUIPHOS STRONG (BHN BAKU UTK PAKAN TERNAK) COA 040319-187", "output": "23099090"}, {"text_input": "What is the hs code for LIQUIPHOS STRONG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 040319-187", "output": "23099090"}, {"text_input": "What is the hs code for BILBERRY (V.MYRTILLUS) ET EX36PCT (BHN BAKU SUPLEMEN) COA 32860/M2", "output": "13021950"}, {"text_input": "What is the hs code for PYRAZINAMIDE EP/USP (BHN BAKU OBAT) COA WPOZ 213 B19,WHOPZ 214 B19...", "output": "29339990"}, {"text_input": "What is the hs code for LEVETIRACETAM (USP) (BHN BAKU OBAT) COA CLEU19004", "output": "29337900"}, {"text_input": "What is the hs code for DIACEREIN EP (BHN BAKU OBAT) COA DCE/40141118", "output": "29189900"}, {"text_input": "What is the hs code for NOREPINEPHRINE BITARTRATE ,BHN BAKU OBAT, COA 480104", "output": "29379010"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614638", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614722", "output": "38249999"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190317", "output": "17029019"}, {"text_input": "What is the hs code for NONIVAMIDE (SYNTHETIC CAPSAICIN)BHN BAKU KOSMETIK, COA.20190213", "output": "29241990"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU SUPLEMEN) COA XH20190102,201", "output": "29362800"}, {"text_input": "What is the hs code for PIROXICAM (BHN BAKU OBAT) COA PRX2019008M", "output": "29349990"}, {"text_input": "What is the hs code for DIBENCOZIDE (COBAMAMIDE) (BHN BAKU OBAT) COA COBA-20011901", "output": "29362600"}, {"text_input": "What is the hs code for STAY-C (R) 50, 20KG BOX ALU (BHN BAKU KOSMETIK) COA UE01901003", "output": "29362700"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519010017,19", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519010019", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA 0518110327", "output": "29420000"}, {"text_input": "What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01807810, 9813", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA 0518110327", "output": "29420000"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT19010004", "output": "29362800"}, {"text_input": "What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01809092", "output": "29362400"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0003800", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0004400", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0004500", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0004600", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXT 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B00189000", "output": "13021990"}, {"text_input": "What is the hs code for VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPB1901079", "output": "29362700"}, {"text_input": "What is the hs code for VC SODIUM ASCORBATE REGULAR, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPN1903140,3142", "output": "29362700"}, {"text_input": "What is the hs code for CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA 1GC01CLB ZP48D 250MT", "output": "38249999"}, {"text_input": "What is the hs code for VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 121809477", "output": "28365010"}, {"text_input": "What is the hs code for PERMETHRIN PHARMA GRADE BHN BAKU OBAT COA PE0022-S77", "output": "29163990"}, {"text_input": "What is the hs code for ATZNATRON 98/100 CAUSTIC SODA (NATRIUM HYDROXIDE)(BHN BAKU KOSMETIK) COA 937654", "output": "28151100"}, {"text_input": "What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) , COA 903019", "output": "38249999"}, {"text_input": "What is the hs code for NIACINAMIDE USP (BHN BAKU KOSMETIK) COA 18-19/NMD(P)/U/238 S/D 242,248", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19030022", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT19030022", "output": "29362100"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01812478,903214,903219", "output": "29362700"}, {"text_input": "What is the hs code for VC CALCIUM ASCORBATE, 25KG BAL (BHN BAKU SUPLEMEN) COA HPT1903002", "output": "29362700"}, {"text_input": "What is the hs code for OPADRY II TAN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH686840", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614637", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614360", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614641", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614642", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614640", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614636", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613227", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614634", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614632", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613973", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614633", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614638", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY 200 PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614639", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614363", "output": "38249999"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB130319", "output": "39123900"}, {"text_input": "What is the hs code for LINCOMYCIN HCL EP (BHN BAKU OBAT) COA 1812001,2014", "output": "29419000"}, {"text_input": "What is the hs code for OPALUX RED BHN BAKU OBAT UTK PEWARNA TABLET COA DT686814", "output": "32151900"}, {"text_input": "What is the hs code for OPALUX RED BHN BAKU OBAT UTK PEWARNA TABLET COA DT686815", "output": "32151900"}, {"text_input": "What is the hs code for OPALUX MAROON BHN BAKU OBAT UTK PEWARNA TABLET COA DT686816", "output": "32151900"}, {"text_input": "What is the hs code for OPALUX TAN BHN BAKU OBAT UTK PEWARNA TABLET COA DT686817", "output": "32151900"}, {"text_input": "What is the hs code for CONFECTIONERY INK BLUE BHN BAKU OBAT UTK PEWARNA TABLET COA DT686821", "output": "32151900"}, {"text_input": "What is the hs code for METHOCEL E15 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011I9EL02", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011IAKL02", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I6G002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I18003", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180HBK003", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100 PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I68003", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180HC5002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I8H001", "output": "39123900"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 BHN BAKU OBAT, COA 121809624", "output": "28363000"}, {"text_input": "What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND190204, 203", "output": "29372200"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM (BHN BAKU OBAT) COA 1902119,127,144", "output": "29331900"}, {"text_input": "What is the hs code for ACETYL SALICYLIC ACID (BHN BAKU OBAT) COA 19419", "output": "29182200"}, {"text_input": "What is the hs code for IBUPROFEN IBU003EP 25KG (BHN BAKU OBAT) COA 19037232", "output": "29163990"}, {"text_input": "What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA.19100239,244", "output": "29221990"}, {"text_input": "What is the hs code for DEXTROSE ANHYDROUS (BHN BAKU OBAT UTK PAKAN TERNAK) COA XWA190322-1", "output": "17023010"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190329", "output": "17029019"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0319030311", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0319030311 S/D 314", "output": "29420000"}, {"text_input": "What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000179838,39,80204", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0319030314,315", "output": "29420000"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT180501731", "output": "29362100"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ80313082", "output": "29362500"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519010032", "output": "29420000"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01806052,54, 55", "output": "32041900"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ81202577", "output": "29362200"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UF01806055", "output": "32041900"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18090045", "output": "29362100"}, {"text_input": "What is the hs code for ASCORBIC ACID,25KG BOX ALU (BHN BAKU MAKANAN) COA TL01808288", "output": "29362700"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01808104", "output": "29362900"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ81103293", "output": "29362200"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX ALU (BHN BAKU MAKANAN) COA TL01808288", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID ,25KG BOX ALU (BHN BAKU MAKANAN) COA TL01808288", "output": "29362700"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01808103", "output": "29362900"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE,25KG BOX (BHN BAKU SUPLEMEN) COA TL01811158", "output": "29362700"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01808103", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01808103", "output": "29362900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ80513137", "output": "29362500"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19010006", "output": "29362900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ80513137", "output": "29362500"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT18040136", "output": "29362400"}, {"text_input": "What is the hs code for RIBOFLAVIN 5' PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1810142", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB180819,141,142", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1810142", "output": "29362300"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT18040136", "output": "29362400"}, {"text_input": "What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ80909018", "output": "29362300"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518034", "output": "29362300"}, {"text_input": "What is the hs code for ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01808288", "output": "29362700"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01808103", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418031", "output": "29362500"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20170401", "output": "29362800"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT(BHN BAKU SUPLEMEN) COA WB00418110", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ81210261", "output": "29362300"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01806055", "output": "32041900"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ81202578", "output": "29362200"}, {"text_input": "What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ80909018", "output": "29362300"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518047", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ81202578", "output": "29362200"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20170401", "output": "29362800"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518047", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ81202577,2578", "output": "29362200"}, {"text_input": "What is the hs code for DL-ALPHA TOCOPHEROL (BHN BAKU MAKANAN) COA UT19010004", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18100077", "output": "29362800"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE,25KG BOX (BHN BAKU SUPLEMEN) COA TL01901626", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18100077", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18100077", "output": "29362800"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE,25KG BOX (BHN BAKU MAKANAN) COA TL01901626", "output": "29362400"}, {"text_input": "What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU MAKANAN)COA UT18100299", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UT18100077", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN D3 B1.0 MIU/G (BHN BAKU MAKANAN) COA UT18100085", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1808009", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01811335", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT18100085", "output": "29362900"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT1810056", "output": "32041900"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19010004", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN PREMIX 103047-D (BHN BAKU MAKANAN) COA XW91903090", "output": "21069059"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU MAKANAN) COA TL01901626", "output": "29362400"}, {"text_input": "What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18100299", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18110024", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT18100085", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01811335", "output": "29362800"}, {"text_input": "What is the hs code for CALCIUM ASCORBATE,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00818016", "output": "29362700"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01901626", "output": "29362400"}, {"text_input": "What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18100299", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT18100077", "output": "29362800"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1808009", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18110024", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT18100085", "output": "29362900"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01805044,45", "output": "32041900"}, {"text_input": "What is the hs code for PX 103070 C3 (BHN BAKU MAKANAN) COA XW91903197", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT18100085", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OPI1808009", "output": "29362900"}, {"text_input": "What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91903089", "output": "21069059"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT18080044", "output": "29362900"}, {"text_input": "What is the hs code for B-CAROTENE 1PCT CWS/M (BHN BAKU MAKANAN) COA UT18050022", "output": "32041900"}, {"text_input": "What is the hs code for D-PANTHENOL,20KG PAIL PE (BHN BAKU MAKANAN), COA TL01811113", "output": "29362400"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ80513137", "output": "29362500"}, {"text_input": "What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829016718J", "output": "38249999"}, {"text_input": "What is the hs code for EXO T (BHN BAKU KOSMETIK) COA 715016736J", "output": "38249999"}, {"text_input": "What is the hs code for HELIOGEL TM (BHN BAKU KOSMETIK) COA 1830001", "output": "38249999"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 5589518", "output": "38249999"}, {"text_input": "What is the hs code for PROGELINE (BHN BAKU KOSMETIK), COA 820056838J", "output": "38249999"}, {"text_input": "What is the hs code for ECOSLIM TM (BHN BAKU KOSMETIK) COA 1831402", "output": "38249999"}, {"text_input": "What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829016884J", "output": "38249999"}, {"text_input": "What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830016852J", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1835201", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1835201", "output": "38249999"}, {"text_input": "What is the hs code for MELANOSTATINE 5BG (50PPM) (BHN BAKU KOSMETIK) COA 817046674J", "output": "38249999"}, {"text_input": "What is the hs code for TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784027203K", "output": "38249999"}, {"text_input": "What is the hs code for IONOL CP (BHN BAKU KOSMETIK) COA 01162218", "output": "29420000"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614931", "output": "38249999"}, {"text_input": "What is the hs code for ULTALUX FF25 KG BAG (BHN BAKU KOSMETIK) COA D0418Y0131", "output": "38249999"}, {"text_input": "What is the hs code for RESTYLANE SB VITALLGHLIDO LIDOCAINE 1ML , COA 16486-1, 16547-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE SB VITAL LIGHT LIDOCAINE 1 ML ,COA 16683-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML, COA 16619-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE VOLYME 1 ML ,COA 16278-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE REFYNE 1 ML , COA 16524-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE DEFYNE 1 ML , COA 16684-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE KYSSE 1 ML , COA 16685-1", "output": "33049990"}, {"text_input": "What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT),COA 18E4503", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 19E0803", "output": "28399000"}, {"text_input": "What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA 173371", "output": "28399000"}, {"text_input": "What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) , COA 903119", "output": "38249999"}, {"text_input": "What is the hs code for KF-6038 (16KG) BHN BAKU KOSMETIK, COA 902211", "output": "38249999"}, {"text_input": "What is the hs code for KF-6017 (17KG) BHN BAKU KOSMETIK, COA 903119", "output": "38249999"}, {"text_input": "What is the hs code for KF-6038 (16KG) BHN BAKU KOSMETIK , COA 902211", "output": "38249999"}, {"text_input": "What is the hs code for DIMENHYDRINATE BHN BAKU OBAT COA.19100230., 19100232", "output": "29395900"}, {"text_input": "What is the hs code for EPERISONE HYDROCHLORIDE SYN-TECH (BHN BAKU OBAT) COA.E10-19006", "output": "29333990"}, {"text_input": "What is the hs code for 1,3 BUTYLENE GLYCOL, COSMETIC QUALITY(BHN BAKU KOSMETIK) COA P0619109DC", "output": "29053200"}, {"text_input": "What is the hs code for MIRANOL ULTRA C-32 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP901032R,BP904201R", "output": "34029099"}, {"text_input": "What is the hs code for DROPPER DMACA INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01B042M", "output": "38210010"}, {"text_input": "What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9008852", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TERGITOL 4 XLT4 SUPPLEMENT 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 5LBX5682", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01B019M", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8165900", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH B01B033M", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8331811", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8269714", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7312565", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK 90MM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9052547", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8338681", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BIGGY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 8079955", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LAURYL SULFATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8309819", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PHOSPHATE BUFFER PH 7.2 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 8317793", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE SOY AGAR MOD 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7254544", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8271706", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B03B009M", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8337871", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PHENYLALANINE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 7255671", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE M ENDO BROTH MF 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8053859", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE M TGE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8282888", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8171598", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BILE ESCULIN AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8171850", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9070997", "output": "38210010"}, {"text_input": "What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8337538", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8344948", "output": "38210010"}, {"text_input": "What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1820710", "output": "38210010"}, {"text_input": "What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 182125214", "output": "38210010"}, {"text_input": "What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH182175616", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B04B05BM", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9002638", "output": "38210010"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8337978", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8026869", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219987", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8170732", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8227610", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8297965", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE REPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206906", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8291939", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8317859", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8310579", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9002615", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8312966", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8344948", "output": "38210010"}, {"text_input": "What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8337538", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE YEAST EXTRACT 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 83449484", "output": "38210010"}, {"text_input": "What is the hs code for BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9045711", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9070997", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8291589", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 90709971", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8129691", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8291589", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206836", "output": "38210010"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8337978", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8305685", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233944", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8297883", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8299812", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219987", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8312962", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8299808", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 81296829", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8241699", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTONE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8141903", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141903", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9070997", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219987", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8141903", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BEEF EXTRACT POWDER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8233778", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DUICITOL 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8337666", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183841", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9070997", "output": "38210010"}, {"text_input": "What is the hs code for KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9002522", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8227600", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9002638", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8129691", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8291589", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8162545", "output": "38210010"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8337978", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8233599", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9030676", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO SOYTONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8228997", "output": "38210010"}, {"text_input": "What is the hs code for PAIL TRYPTOSE PHOSPHATE BROTH 10KG (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH8337538,9028867", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297702", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PHYTONE PEPTONE 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8026869", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8255630", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8183841", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8289953", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9010685", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 8233944", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7349871", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8299812", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8219987", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8312962", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8241935", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8170732", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8129682", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297965", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8291939", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8317859", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297842", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8310579", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8291800", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9002615,9014523", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9002631", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 8141903", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 8355570", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8256652", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8312966", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9002997", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8282931", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8271802", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE YEAST EXTRACT 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8344948", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) COA 82899533", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 73125656", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8256826", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8255932", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9030984", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKIROORGANISME) BATCH 9039632", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9038584", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 82559329", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8227610", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8206906", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9045804", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO PEPTONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9030688", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CASITONE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 82899535", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA IC-XT 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9037556", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8353659", "output": "38210010"}, {"text_input": "What is the hs code for BD ACCURI C6 PLUS SYSTEM (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9085649", "output": "38210010"}, {"text_input": "What is the hs code for DELL OPTIPLEX WORKSTATION BUNDLE (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH 8165558", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8347637", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8348971", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255580", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 88219521", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRUP GRP A-I &VI LYO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8334767", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG L& P80 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 823951152547", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8348971", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 8291707", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8334767", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 8299576", "output": "38210010"}, {"text_input": "What is the hs code for CD34 PE 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8348875", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9050681", "output": "38210010"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8277815", "output": "38210010"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8277815", "output": "38210010"}, {"text_input": "What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9016637", "output": "38210010"}, {"text_input": "What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9070562", "output": "38210010"}, {"text_input": "What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8268723", "output": "38210010"}, {"text_input": "What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9052934", "output": "38210010"}, {"text_input": "What is the hs code for ANTI HLA DR FITC L243 /(G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO )BATCH 8332704,9036873", "output": "38210010"}, {"text_input": "What is the hs code for ANTI MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9008965", "output": "38210010"}, {"text_input": "What is the hs code for CD19 PE-CY7 SJ25C1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9017531538", "output": "38210010"}, {"text_input": "What is the hs code for CD3 APC H7 SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9042932,9077593", "output": "38210010"}, {"text_input": "What is the hs code for CD34 PERCP CY5.5 8G12 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9010980", "output": "38210010"}, {"text_input": "What is the hs code for CD7 APC (M-T701) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9046766", "output": "38210010"}, {"text_input": "What is the hs code for CD79A PE HM47 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9065915", "output": "38210010"}, {"text_input": "What is the hs code for CD3 APC SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9016646", "output": "38210010"}, {"text_input": "What is the hs code for CD34 PR-CY7.8G12 Y7 100 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9084561", "output": "38210010"}, {"text_input": "What is the hs code for CD10 PE HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9065915", "output": "38210010"}, {"text_input": "What is the hs code for CD45 PERCP 2D1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8353503", "output": "38210010"}, {"text_input": "What is the hs code for CD3 FITC SK7 50 TESTS IVD(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9037512", "output": "38210010"}, {"text_input": "What is the hs code for CD14 PE MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9011874", "output": "38210010"}, {"text_input": "What is the hs code for HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 822879", "output": "38210010"}, {"text_input": "What is the hs code for HU CD3 HORIZON V450 UCHT1 120TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9002639", "output": "38210010"}, {"text_input": "What is the hs code for HU CD45 HORIZON V500 HI30 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9002640", "output": "38210010"}, {"text_input": "What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9065956", "output": "38210010"}, {"text_input": "What is the hs code for HU CD3 BV421 UCHT1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8316512", "output": "38210010"}, {"text_input": "What is the hs code for HU CD19 BV510 SJ25C1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8187645", "output": "38210010"}, {"text_input": "What is the hs code for ANNEXIN V FITC APOP DTEC KIT I 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9057536", "output": "38210010"}, {"text_input": "What is the hs code for PLT SDA W LP AND CMP IC-XT PK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9045812", "output": "38210010"}, {"text_input": "What is the hs code for PLT SDA W LP AND CMP IC-XT PK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9045812", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9017553", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8348971", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233839", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8312963", "output": "38210010"}, {"text_input": "What is the hs code for VIAL NOVOBIOCIN SUPPLEMENT 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9032736", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9059607", "output": "38210010"}, {"text_input": "What is the hs code for HU CD105 FITC 266 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7354806", "output": "38210010"}, {"text_input": "What is the hs code for CS&T RUO BEADS 50 TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8320799", "output": "38210010"}, {"text_input": "What is the hs code for ULTALUX FF25 KG BAG (BHN BAKU KOSMETIK) COA D0418Y0131", "output": "38249999"}, {"text_input": "What is the hs code for OLIVE POLYPHENOLIC DRY EXTRACT (BHN BAKU SUPLEMEN) COA 19058", "output": "13021950"}, {"text_input": "What is the hs code for GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 19034", "output": "38249999"}, {"text_input": "What is the hs code for LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 19076", "output": "38249999"}, {"text_input": "What is the hs code for GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 19034", "output": "38249999"}, {"text_input": "What is the hs code for AMLODIPINE BESILATE BO/EP (BHN BAKU OBAT) COA AMB/050/03/19 S/D AMB/059/03/19", "output": "29333990"}, {"text_input": "What is the hs code for CLOTRIMAZOLE MICRONIZED (BHN BAKU OBAT ) COA 201607040399,201703240111...", "output": "29332900"}, {"text_input": "What is the hs code for LIPOID S 20 (BHN BAKU OBAT) COA. 572000-2190125/025-048 (24)", "output": "29232010"}, {"text_input": "What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 182879", "output": "13021990"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18090031", "output": "32041900"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S -TG (BHN BAKU SUPLEMEN) COA UT18110040", "output": "32030010"}, {"text_input": "What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110014", "output": "29420000"}, {"text_input": "What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19020011", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18100055", "output": "29362100"}, {"text_input": "What is the hs code for VIT A PALM 1.0 M + VIT D3 100'000 (BHN BAKU SUPLEMEN) COA UT19030061", "output": "29362100"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01903219", "output": "29362700"}, {"text_input": "What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX ALU (BHN BAKU SUPLEMEN) COA WB00219485", "output": "29362700"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01903219", "output": "29362700"}, {"text_input": "What is the hs code for GRANULAC (R) 200 H (BHN BAKU OBAT) COA. L101851019", "output": "17021100"}, {"text_input": "What is the hs code for SORBITOL SOLUTION 70PCT CRYSTALLINE (BAHAN BAKU KOSMETIK) COA.0021920", "output": "29054400"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19010008", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL (BHN BAKU MAKANAN) COA UT19010008", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN PREMIX, TYPE MM81 (105PCT) BHN BAKU MAKANAN, COA XW91903285", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT18100086", "output": "29362900"}, {"text_input": "What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18100299", "output": "29362800"}, {"text_input": "What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00569207,212,213", "output": "29420000"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT19020838", "output": "29362100"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0703190002", "output": "29420000"}, {"text_input": "What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 1904EF7110", "output": "29224900"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01903219", "output": "29362700"}, {"text_input": "What is the hs code for COATED ASCORBIC ACID ,TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01903312", "output": "29362700"}, {"text_input": "What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF,1KG ALUF (BHN BAKU SUPLEMEN) COA UE01811060", "output": "32030010"}, {"text_input": "What is the hs code for MEG 3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19020004", "output": "29362500"}, {"text_input": "What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00219485", "output": "29362700"}, {"text_input": "What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ90107002", "output": "29420000"}, {"text_input": "What is the hs code for ASTAXANTHIN OIL 10PCT (BHN BAKU OBAT) COA.103231", "output": "32030010"}, {"text_input": "What is the hs code for PURIDROX TM POWDER, CEFADROXIL MONOHYDRATE (BHN BAKU OBAT) COA B334622, B334623, B334624", "output": "29419000"}, {"text_input": "What is the hs code for CITRIC ACID MONOHYDRATE BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 1AX1904014", "output": "29181400"}, {"text_input": "What is the hs code for ANTISHINE WASH 1 (BHN BAKU KOSMETIK) COA 10300123", "output": "38249999"}, {"text_input": "What is the hs code for ANTI SHINE WASH (BHN BAKU KOSMETIK) COA 10300074", "output": "38249999"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB100419", "output": "39123900"}, {"text_input": "What is the hs code for OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET), COA WP811276", "output": "32151900"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20180903", "output": "29362800"}, {"text_input": "What is the hs code for VIT A PALM 1.0 M+VIT D3 100'000 (BHN BAKU MAKANAN) COA UT19030061", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT19040853,854", "output": "29362100"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615095", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614856", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615084", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615080", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY EZ CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615075", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613312", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615020", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615119", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615119", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615256", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615256", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615256", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615254", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615254", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615081", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615082", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613973", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615076", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW(BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615087", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615074", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615077", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GRAY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615086", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615085", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615084", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615306", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614856", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615254", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615267", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615266", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH613312", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615085", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614771", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615263", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615262", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614304", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615265", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615382", "output": "38249999"}, {"text_input": "What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BJ01209", "output": "29349990"}, {"text_input": "What is the hs code for DIMENHYDRINATE BHN BAKU OBAT COA.19100230., 19100232", "output": "29395900"}, {"text_input": "What is the hs code for DEXTROSE ANHYDROUS (BHN BAKU OBAT UTK PAKAN TERNAK) COA XWA190322-1", "output": "17023010"}, {"text_input": "What is the hs code for CLOZAPINE (BHN BAKU OBAT) COA 780910", "output": "29335990"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539289", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539317", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539331", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539311", "output": "35051010"}, {"text_input": "What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK)COA MUP-012239", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND BIO-SIP (BHN BAKU KOSMETIK)COA STOD-021549", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-012229", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK) COA NMSP-D-011018", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-012639", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SNAIL SECREATION FILTRATE (BHN BAKU KOSMETIK)COA SAFW-0502187", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-022208", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-091808,HMVBD-101228", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA MCP-N-020249", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND YUZU EXTRACT (BHN BAKU KOSMETIK) COA CJUBD-031139", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-922718", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-012239", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-062119", "output": "38249999"}, {"text_input": "What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA. 20190417", "output": "17023010"}, {"text_input": "What is the hs code for PANTOPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT,COA APSS18004", "output": "29333990"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA.M113200", "output": "29339990"}, {"text_input": "What is the hs code for GRANULAC (R) 200H (BHN BAKU KOSMETIK)COA L105711219", "output": "17021100"}, {"text_input": "What is the hs code for CAPSULAC (R) 60 (BHN BAKU OBAT) COA. L100414818", "output": "17021100"}, {"text_input": "What is the hs code for CELLACTOSE (R) 80 (BHN BAKU OBAT) COA L100460119", "output": "17021100"}, {"text_input": "What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103860919", "output": "17021100"}, {"text_input": "What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104311019", "output": "17021100"}, {"text_input": "What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105711219", "output": "17021100"}, {"text_input": "What is the hs code for SK BIOLAND YUZU EXTRACT (BHN BAKU KOSMETIK)COA CJUBD-031139", "output": "38249999"}, {"text_input": "What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-006-V", "output": "38249999"}, {"text_input": "What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001520830", "output": "29420000"}, {"text_input": "What is the hs code for STAY-C (R) 50,5KG BAG ALU (BHN BAKU KOSMETIK) COA CSI8060025", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219030047", "output": "29420000"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01811116,TL01812130", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519020058", "output": "29420000"}, {"text_input": "What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91904018 S/D 22", "output": "29420000"}, {"text_input": "What is the hs code for BEAUPLEX (TM) VH,5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF18316007", "output": "29420000"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18100332", "output": "29362800"}, {"text_input": "What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000180204", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180118,119,120", "output": "29420000"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT19010008", "output": "29362800"}, {"text_input": "What is the hs code for STAY-C (R) 50, 5KG BAG ALU (BHN BAKU KOSMETIK) COA CS18060025,26", "output": "29362700"}, {"text_input": "What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001520830", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX ,25KG PC (BHN BAKU KOSMETIK) COA 0518110346", "output": "29420000"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20170401", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT18090175", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT18090175", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01803014", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT18090175", "output": "29362100"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11901013", "output": "29362900"}, {"text_input": "What is the hs code for B-CAROTENE 1PCT CWS/M (BHN BAKU MAKANAN) COA UT18050023", "output": "32041900"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18070244", "output": "29362400"}, {"text_input": "What is the hs code for ONDASENTRON HCL USP (BHN BAKU OBAT) COA 18OS002", "output": "29332900"}, {"text_input": "What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA.MLAH0160219", "output": "29341000"}, {"text_input": "What is the hs code for TRIAMCINOLONE ACETONIDE MICRONIZED (BHN BAKU OBAT) COA NZ0772M", "output": "29372200"}, {"text_input": "What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NZ0785M", "output": "29372200"}, {"text_input": "What is the hs code for KETOROLAC TROMETHAMOL/TROMETHAMINE (BHN BAKU OBAT) COA. 19100233", "output": "29339990"}, {"text_input": "What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK)COA 7766006", "output": "38249999"}, {"text_input": "What is the hs code for ACRYLPOL 980 (20KG) BAHAN BAKU KOSMETIK, COA 11518096,8111,9009", "output": "39069099"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB130319", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG080419", "output": "39123900"}, {"text_input": "What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M 31.0PCT (BHN BAKU OBAT) COA 101929004", "output": "28161000"}, {"text_input": "What is the hs code for THIOGLYCOLIC ACID 99PCT COSMETIC GRADE (BHN BAKU KOSMETIK) COA.0000066826", "output": "29309090"}, {"text_input": "What is the hs code for AMMONIUM THIOGLYCOLATE 71PCT(60PCT TGA) BHN BAKU KOSMETIK, COA.0000066827", "output": "29309090"}, {"text_input": "What is the hs code for MONOETHANOLAMINE THIOGLYCOLATE 83PCT (50PCT TGA) BHN BAKU KOSMETIK, COA 0000066828", "output": "29221100"}, {"text_input": "What is the hs code for AMMONIUM THIOGLYCOLATE 71PCT (60PCT TGA) B.BAKU KOSMETIK,COA 0000066829, SAMPLE NO COMM VALUE", "output": "29309090"}, {"text_input": "What is the hs code for DIAMMONIUM DITHIODIGLYCOLATE 48PCT... (B. BAKU KOSMETIK), COA 0000066830,SAMPLE NO COMM VALUE", "output": "29309090"}, {"text_input": "What is the hs code for MONOETHANOLAMINE THIOGLYCOLATE 83PCT ...(B. BAKU KOSMETIK), COA 0000066831,SAMPLE NO COMM VALUE", "output": "29221100"}, {"text_input": "What is the hs code for POTASSIUM THIOGLYCOLATE 43PCT (30PCT TGA)B. BAKU KOSMETIK, COA 0000066832,SAMPLE NO COMM VALUE", "output": "29309090"}, {"text_input": "What is the hs code for THIOGLYCOLIC ACID 99PCT PURE, B BAKU KOSMETIK, COA 0000066833, SAMPLE NO COMM VALUE", "output": "29309090"}, {"text_input": "What is the hs code for THIOGLYCOLIC ACID 80PCT, COSMETIC GRADE (BHN BAKU KOSMETIK) COA 0000066834,SAMPLE NO COMM VALUE", "output": "29309090"}, {"text_input": "What is the hs code for RESTYLANE SUBQ 2ML D16 , COA 16563-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE SKINB VITLIDO 1 MLD16 ,COA 16547-1", "output": "33049990"}, {"text_input": "What is the hs code for REST SKINB VITALLGHLIDO 1MLD16, COA 16683-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE LYFT LIDOCAINE 1 ML ,COA 16934-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE VOLYME 1 ML , COA 16679-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE KYSSE 1 ML , COA 16724-1", "output": "33049990"}, {"text_input": "What is the hs code for INCA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK)COA II190202-AI-D-BIO", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO190302", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-190303", "output": "38249999"}, {"text_input": "What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-190202-GS", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-180803-D-BIO", "output": "38249999"}, {"text_input": "What is the hs code for IPRATROPIUM BROMIDE (BHN BAKU OBAT) COA 1850002618", "output": "29397900"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE A(BHN BAKU OBAT) COA. M530871,866.907 S/D 909", "output": "29411019"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP19033157,158", "output": "29211900"}, {"text_input": "What is the hs code for SILYMARIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 19B0002800", "output": "38249999"}, {"text_input": "What is the hs code for SILYBIN/ PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 19B0033500", "output": "38249999"}, {"text_input": "What is the hs code for THE MATCHA I P001062 (BHN BAKU OBAT) COA.0000025081", "output": "33029000"}, {"text_input": "What is the hs code for JAGUAR C 162 CARDBOARD BOX 25KG (BHN BAKU KOSMETIK) COA MJAC19091B", "output": "38249999"}, {"text_input": "What is the hs code for BETAHISTINE MESILATE EP (BHN BAKU OBAT) COA EDBHM19002", "output": "29333990"}, {"text_input": "What is the hs code for LIPOID S 67 F (BHN BAKU OBAT) COA. 576200-2180031/007-013 (7)", "output": "29232010"}, {"text_input": "What is the hs code for AC019KC PHYTOVITYL C 5KG (BHN BAKU KOSMETIK) COA 0031052", "output": "38249999"}, {"text_input": "What is the hs code for AC019KC PHYTOVITYL C 5KG (BHN BAKU KOSMETIK) COA 0031052", "output": "38249999"}, {"text_input": "What is the hs code for FERROUS FUMARATE USP/EP (BHN BAKU OBAT) COA.2019/106", "output": "29171900"}, {"text_input": "What is the hs code for DRY VITAMIN A PALMITATE 1.7 MIU/G (TOCO)(BHN BAKU SUPLEMEN) COA UT19030845", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00918203", "output": "29362800"}, {"text_input": "What is the hs code for HALAL PANCREATIN (BHN BAKU OBAT) COA. 110419PAN", "output": "39139090"}, {"text_input": "What is the hs code for KANAMYCIN SULFATE (BHN BAKU OBAT UTK PAKAN TERNAK ) COA 190302", "output": "29419000"}, {"text_input": "What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 1904032", "output": "29349990"}, {"text_input": "What is the hs code for INOSITOL (BHN BAKU OBAT) COA 201902020", "output": "29061300"}, {"text_input": "What is the hs code for CITICOLINE SODIUM (BHN BAKU OBAT) COA CDP-C 20190409", "output": "29349990"}, {"text_input": "What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20190321", "output": "29309090"}, {"text_input": "What is the hs code for IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S936/18", "output": "38029090"}, {"text_input": "What is the hs code for PRO-LIPO TM NEO (BHN BAKU KOSMETIK) COA 1905401", "output": "38249999"}, {"text_input": "What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5555018", "output": "38249999"}, {"text_input": "What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5566918", "output": "38249999"}, {"text_input": "What is the hs code for ALDAVINE 5X (BHN BAKU KOSMETIK) COA 799036886J", "output": "38249999"}, {"text_input": "What is the hs code for B-WHITE (BHN BAKU KOSMETIK), COA 829017170K", "output": "38249999"}, {"text_input": "What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829016884J", "output": "38249999"}, {"text_input": "What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769016660J", "output": "38249999"}, {"text_input": "What is the hs code for ECOGEL TM (BHN BAKU KOSMETIK) COA 1831205", "output": "38249999"}, {"text_input": "What is the hs code for EXO-T (BHN BAKU KOSMETIK) COA 715017060K", "output": "38249999"}, {"text_input": "What is the hs code for LANACHRYS 2B PF (PRESERVATIVE) (BHN BAKU KOSMETIK) COA 5567018", "output": "38249999"}, {"text_input": "What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828016911J", "output": "38249999"}, {"text_input": "What is the hs code for SILIGEL TM (BHN BAKU KOSMETIK) COA 1824711", "output": "38249999"}, {"text_input": "What is the hs code for TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784027203K", "output": "38249999"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ81210261,262", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ81210262", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ81210263", "output": "29362300"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01901001", "output": "29362400"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518047", "output": "29362200"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518047", "output": "29362900"}, {"text_input": "What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18100299", "output": "29362800"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11811028", "output": "29362900"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT18100056", "output": "32041900"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT18100056", "output": "32041900"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT18070024", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11811028", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1810142", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18110025", "output": "29362600"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18070244", "output": "29362400"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01807309", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01807309", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0319030317,9030459,9030460", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519020058", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519020058,63,82", "output": "29420000"}, {"text_input": "What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP809470", "output": "39059990"}, {"text_input": "What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP809456", "output": "39059990"}, {"text_input": "What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP807299", "output": "32151900"}, {"text_input": "What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP798865", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C BLUE #2/INDIGO CARMINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP804676", "output": "32151900"}, {"text_input": "What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP809459", "output": "39059990"}, {"text_input": "What is the hs code for FD AND C BLUE #1/BRILLIANT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP805968", "output": "32151900"}, {"text_input": "What is the hs code for SENSIVA SC 10 CN 10KG KA (BHN BAKU KOSMETIK) COA.1528995", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 720 CO8 10KG KA (BHN BAKU KOSMETIK) COA 1518553", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 720 C08 10KG KA (BHN BAKU KOSMETIK) COA 1518553", "output": "38249999"}, {"text_input": "What is the hs code for NONIVAMIDE (SYNTHETIC CAPSAICIN)BHN BAKU KOSMETIK, COA.20190412", "output": "29241990"}, {"text_input": "What is the hs code for MEG-3 DHA INF 10 FOOD OIL (BHN BAKU MAKANAN) COA TS00011475", "output": "29362500"}, {"text_input": "What is the hs code for VC ASCORBIC ACID CDC 97PCT, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG1812012 S/D 14", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT19030090", "output": "29362100"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL01903219,TL01903391,TL01903452", "output": "29362700"}, {"text_input": "What is the hs code for DL-PANTHENOL 50 L (BHN BAKU MAKANAN) COA TL01902606", "output": "29362400"}, {"text_input": "What is the hs code for ETHYL PANTHENOL (BHN BAKU MAKANAN) COA TL01902803", "output": "29362400"}, {"text_input": "What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) , COA 904024", "output": "38249999"}, {"text_input": "What is the hs code for PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) SAMPLE NO COMMERCIAL VALUE,COA PH14130419", "output": "38249999"}, {"text_input": "What is the hs code for BOTTLE D/E NEUTRALIZING AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9091635", "output": "38210010"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8277815", "output": "38210010"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8277815", "output": "38210010"}, {"text_input": "What is the hs code for CD10 PE CY7 SJ25C1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9017531", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8319508", "output": "38210010"}, {"text_input": "What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9030532", "output": "38210010"}, {"text_input": "What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9077594", "output": "38210010"}, {"text_input": "What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9070562", "output": "38210010"}, {"text_input": "What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9081573", "output": "38210010"}, {"text_input": "What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9039821", "output": "38210010"}, {"text_input": "What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9058622", "output": "38210010"}, {"text_input": "What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8268723", "output": "38210010"}, {"text_input": "What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9052934", "output": "38210010"}, {"text_input": "What is the hs code for ANTI HLA DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9036873", "output": "38210010"}, {"text_input": "What is the hs code for CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8314885 ,9092796", "output": "38210010"}, {"text_input": "What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8358700", "output": "38210010"}, {"text_input": "What is the hs code for BD CST BEADS KIT 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 81798", "output": "38210010"}, {"text_input": "What is the hs code for ANTI MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9008965", "output": "38210010"}, {"text_input": "What is the hs code for CD19 PE CY7 SJ25C1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9017531", "output": "38210010"}, {"text_input": "What is the hs code for CD3 APC-H7 SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9077593", "output": "38210010"}, {"text_input": "What is the hs code for CD79A PE HM47 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9065915", "output": "38210010"}, {"text_input": "What is the hs code for CD10 APC HI10A 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9100635", "output": "38210010"}, {"text_input": "What is the hs code for CD11B APC D12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9080961", "output": "38210010"}, {"text_input": "What is the hs code for CD20 FITC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9065589", "output": "38210010"}, {"text_input": "What is the hs code for CD20 V500 C RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9050717", "output": "38210010"}, {"text_input": "What is the hs code for CD38 APC H7 (HB7) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9051517", "output": "38210010"}, {"text_input": "What is the hs code for CD34 PE-CY7 BG12 Y7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9084561", "output": "38210010"}, {"text_input": "What is the hs code for CD10 PE HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9065915", "output": "38210010"}, {"text_input": "What is the hs code for CD14 PE MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9098752", "output": "38210010"}, {"text_input": "What is the hs code for CD45 PERCP 2D1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8353503", "output": "38210010"}, {"text_input": "What is the hs code for CD3 FITC SK7 50 TESTS IVD (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 9037512", "output": "38210010"}, {"text_input": "What is the hs code for FASTIMMUNE CD55/CD69/CD45 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9087932", "output": "38210010"}, {"text_input": "What is the hs code for ANTI LAMBDA FITC 1-155-2 50TST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9042848", "output": "38210010"}, {"text_input": "What is the hs code for HU NESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9065956", "output": "38210010"}, {"text_input": "What is the hs code for HU CD64 APC H7 10.1 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9039654", "output": "38210010"}, {"text_input": "What is the hs code for HU CD36 HORIZON V450 CD38 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8337814", "output": "38210010"}, {"text_input": "What is the hs code for HU CD7 APC M-T701 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8319695", "output": "38210010"}, {"text_input": "What is the hs code for HU CD3 BV421 UCHT1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8316512", "output": "38210010"}, {"text_input": "What is the hs code for HU CD19 BV510 SJ25C1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8187645", "output": "38210010"}, {"text_input": "What is the hs code for HU CD14 BV421 MPHIP9 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8236752", "output": "38210010"}, {"text_input": "What is the hs code for HU CD103 BV421 BER ACT8 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8250690", "output": "38210010"}, {"text_input": "What is the hs code for HU CD31 FITC WM59 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8212882", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL CP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 83498971", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8312963", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8054920", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8222563", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8207980", "output": "38210010"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8235876", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8348971", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8291707", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8334767", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8299576", "output": "38210010"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8159661", "output": "38210010"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8277815", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SHIGELLA ANTIS POLY A LYOPHLIZED (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9101807", "output": "38210010"}, {"text_input": "What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 91155632", "output": "38210010"}, {"text_input": "What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9052934", "output": "38210010"}, {"text_input": "What is the hs code for FENTACARE 2231 EF (BHN BAKU KOSMETIK )COA ZH19B2003,0301", "output": "34029019"}, {"text_input": "What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9059721", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B03B064M", "output": "38210010"}, {"text_input": "What is the hs code for SODIUM SALICYLATE BP2005 (BHN BAKU KOSMETIK)COA 201811011", "output": "29182100"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9038584", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8233599", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8297702", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7349871", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8299812", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8269714", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8256826", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 8255932", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8170732,8206594", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9039632", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8297965", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206906", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8311766", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8317859", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8337581", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8310579", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9014523", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9002631", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8312966", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8282931", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8271696", "output": "38210010"}, {"text_input": "What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 182182215", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9038584", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8297702", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255630", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183841", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9010685", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8269714", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206594", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8337581", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9091855", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8331811", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9002573", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9021613", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8281627", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7312565", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9025695", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ENDO AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8031775", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8305630", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PHOSPHATE BUFFER PH 7.2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8317793", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8383686", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MICRO INOCULUM BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8311696", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7254544,9028828", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MR VP MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8297944", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE RHAMNOSE 25G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9028840", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9102959", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE UNIVERSAL PREENICHMENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8337869", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 5 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8197524", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8271706", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8227623", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8233602", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PSEUDOMONAS AGAR F 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8282885", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8134767", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01B081M", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 8 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8281787", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8337871", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE YEAST MOLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8291647", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8316761", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PHENYLLALANINE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 7255671", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141903", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9028852", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8171598", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TETRATHIONATE BR BASE HAJNA 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9084922", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8260535", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9045711", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MALTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9058798", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9084697", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH B02B103M", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9085520", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA IC XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9080924", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8291589", "output": "38210010"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9030661", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8312962", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9030984", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8227610", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9039632", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8310744", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8311766", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8337676", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 90216435", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 8256652", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8312979", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8354563", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8129691", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7312565", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8312979", "output": "38210010"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9030661", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9021617", "output": "38210010"}, {"text_input": "What is the hs code for PM KIT FACSARIA II/III (MEDIA UTK PENGEMBANGAN MIKROORGANISME)", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8325637", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8325627", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8325627", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE L-ARABINOSE 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8211672", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9052547", "output": "38210010"}, {"text_input": "What is the hs code for OILESS CITY TM (BHN BAKU KOSMETIK) COA 90415", "output": "38247900"}, {"text_input": "What is the hs code for BARCROFT TM AL HYD GEL LV13.USP (BHN BAKU OBAT) COA 101813157", "output": "28183000"}, {"text_input": "What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 10199001,9002", "output": "28161000"}, {"text_input": "What is the hs code for URSODEOXYCHOLIC ACID (BHN BAKU OBAT) COA C043C190203,301", "output": "29181900"}, {"text_input": "What is the hs code for SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA 190410201", "output": "38249999"}, {"text_input": "What is the hs code for EPA DHA 44 37 (BHN SUPLEMEN KESEHATAN) COA EE4437-190504", "output": "29061300"}, {"text_input": "What is the hs code for PERMETHRIN (PHARMA GRADE) BHN BAKU OBAT COA 194046001", "output": "29163990"}, {"text_input": "What is the hs code for LANOLINE ANHYDROUS (BHN BAKU KOSMETIK) COA 4930, 4931", "output": "38249999"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM REGULAR GRADE (BHN BAKU OBAT) COA 18091403 S/D 06, 1902146,147,149", "output": "29331900"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM INJECTABLE GRADE (BHN BAKU OBAT) COA 18121897", "output": "29331900"}, {"text_input": "What is the hs code for CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 201904T-CCH", "output": "38249999"}, {"text_input": "What is the hs code for PURE GREEN B AND W PIT (BHN BAKU KOSMETIK) COA 10300050", "output": "38249999"}, {"text_input": "What is the hs code for DEEP IMPACT FACE (BHN BAKU KOSMETIK) COA 10300044", "output": "38249999"}, {"text_input": "What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00569213,VE00570182", "output": "29420000"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518034", "output": "29362300"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518034", "output": "29362300"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518034", "output": "29362300"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01808015", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01808015", "output": "29362900"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01811327", "output": "29362700"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01811327", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ90106006,7", "output": "29362700"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT19010008", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19010006", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT18100087", "output": "29362900"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT1810056", "output": "32041900"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ81103291", "output": "29362200"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18110025", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT18100087", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18110025", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT1800087", "output": "29362900"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE ( BHN BAKU MAKANAN) COA UQ81103293", "output": "29362200"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE,25KG BOX (BHN BAKU MAKANAN) COA TL01901630", "output": "29362400"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT18040136", "output": "29362400"}, {"text_input": "What is the hs code for PREMIX VITAMIN OIL TYPE GBP (BHN BAKU MAKANAN) COA XW91904188", "output": "21069059"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18090046", "output": "29362100"}, {"text_input": "What is the hs code for CALCIUM ASCORBATE ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00918029", "output": "29362700"}, {"text_input": "What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18110339", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19010006", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18110025", "output": "29362600"}, {"text_input": "What is the hs code for D-A TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN), COA XH20170401", "output": "29362800"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18040130", "output": "29362400"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ80813210,3214", "output": "29362500"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB01218981", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT GRANULATION ,25KG BOX (BHN BAKU SUPLEMEN) COA WB01218981", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT GRANULATION 25KG BOX (BHN BAKU SUPLEMEN) COA WB01218981", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT GRANULATION 25KG BOX (BHN BAKU SUPLEMEN) COA WB01218981", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN), COA UT18110025", "output": "29362600"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 14 PREMIUM (BHN BAKU OBAT UTK PEWARNA TABLET), COA D184J24021", "output": "39123900"}, {"text_input": "What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 90212, 90214, ..", "output": "38029090"}, {"text_input": "What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA", "output": "38029090"}, {"text_input": "What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-0650319", "output": "29334910"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP19043208, 43209", "output": "29211900"}, {"text_input": "What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND181206, ND190205, ND190207", "output": "29372200"}, {"text_input": "What is the hs code for E.C.O TRACE ZN 25PCT (BHN BAKU UTK PAKAN TERNAK) COA BC270319", "output": "29224900"}, {"text_input": "What is the hs code for E.C.O.TRACE MN 20PCT(BHN BAKU OBAT UTK PAKAN TERNAK) COA BC280319", "output": "29224900"}, {"text_input": "What is the hs code for E.C.O TRACE FE 20PCT (BHN BAKU OBAT UTK PAKAN TERNAK) COA BC020519", "output": "29224900"}, {"text_input": "What is the hs code for BIOKEY SELENIUM VM (BHN BAKU UTK PAKAN TERNAK) COA 210218-148", "output": "23099090"}, {"text_input": "What is the hs code for BIOTOX (BHN BAKU UTK PAKAN TERNAK) COA 220319-238", "output": "23099090"}, {"text_input": "What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 201900061", "output": "28183000"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA. RBA1071900", "output": "28363000"}, {"text_input": "What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA WBB", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA WCK", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA WDK", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WK-GB (BHN BAKU KOSMETIK) COA WCN", "output": "38249999"}, {"text_input": "What is the hs code for GELOT 64 (BHN BAKU OBAT) COA 174492", "output": "28399000"}, {"text_input": "What is the hs code for GELOT 64 (BAHAN BAKU OBAT) COA 174492", "output": "28399000"}, {"text_input": "What is the hs code for TRANSCUTOL P (BAHAN BAKU OBAT) COA 173667", "output": "28399000"}, {"text_input": "What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616144", "output": "32151900"}, {"text_input": "What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT616144", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615690", "output": "38249999"}, {"text_input": "What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453391519,4453425151", "output": "39139090"}, {"text_input": "What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 101823008", "output": "28161000"}, {"text_input": "What is the hs code for NABUMETONE USP (BAHAN BAKU OBAT) COA.H-1911018", "output": "29145000"}, {"text_input": "What is the hs code for PERMETHRIN PHARMA GRADE BHN BAKU OBAT COA 195046005,195046006", "output": "29163990"}, {"text_input": "What is the hs code for TRISODIUM CITRATE DIHYDRATE FINE GRANULAR (BHN BAKU OBAT), COA UJ914", "output": "29181400"}, {"text_input": "What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU OBAT UTK PAKAN TERNAK) COA 201800394", "output": "28183000"}, {"text_input": "What is the hs code for SK BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK)COA KFB-L-031428", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-022208", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK)COA 2018G1505", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND YUZU EXTRACT (BHN BAKU KOSMETIK) COA CJUBD-043049, CJUBD-051359", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND YUZU EXTRACT (BHN BAKU KOSMETIK) COA CJUBD-051359", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SERICIN 4.5 CL (BHN BAKU KOSMETIK)COA SCPKIE1301", "output": "38249999"}, {"text_input": "What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA C00591UG", "output": "29053200"}, {"text_input": "What is the hs code for DPG FG (BHN BAKU OBAT UTK PAKAN TERNAK) COA C00591DG", "output": "29094900"}, {"text_input": "What is the hs code for O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 102418/005767", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 CN 200KG FA (BHN BAKU KOSMETIK) COA 1529634", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 200 KG DR (BHN BAKU KOSMETIK) COA 1526841", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 CN 200KG FA (BHN BAKU KOSMETIK) COA 1529634,1529821", "output": "38249999"}, {"text_input": "What is the hs code for HYDROXOCOBALAMIN CHLORIDE HP (BHN BAKU SUPLEMEN KESEHATAN) COA. KR00002", "output": "29362600"}, {"text_input": "What is the hs code for SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 1907711249", "output": "29322090"}, {"text_input": "What is the hs code for VALERIAN D.H.E 0.8PCT VAL.AC (BHN BAKU SUPLEMEN) COA 10949/M1", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0018900", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0019400", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0019500", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0019600", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0003200", "output": "13021990"}, {"text_input": "What is the hs code for CENTELLA ASIATICA TRITERP/C (BHN BAKU SUPLEMEN) COA 19S0003400", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA /PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 32811/H1", "output": "38249999"}, {"text_input": "What is the hs code for ECHINACEA ANG DRY PURIF EX (BHN BAKU SUPLEMEN) COA 32527/M1", "output": "13021990"}, {"text_input": "What is the hs code for VACCINIUM MYRTILLUS DRY EX (BHN BAKU SUPLEMEN) COA 19S0143400", "output": "13021990"}, {"text_input": "What is the hs code for BILBERRY (V.MYRTILLUS) ET. EX 36PCT (BHN BAKU SUPLEMEN), COA 32908/M2", "output": "13021990"}, {"text_input": "What is the hs code for P.GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN), COA 19S0132200", "output": "13021990"}, {"text_input": "What is the hs code for VACCINIUM MYRTILLUS DRY EX (BHN BAKU SUPLEMEN) COA 19S0143400", "output": "13021990"}, {"text_input": "What is the hs code for P. GINSENG DRY EXTRACT /IDB (BHN BAKU SUPLEMEN) COA 32347/M1", "output": "13021990"}, {"text_input": "What is the hs code for CENTELLA ASIATICA TRITERP/C (BHN BAKU SUPLEMEN) COA 19S0003400", "output": "38249999"}, {"text_input": "What is the hs code for ECHINACEA ANG DRY PURIF.EX (BHN BAKU SUPLEMEN) COA 32527/M1", "output": "13021990"}, {"text_input": "What is the hs code for NYSTATIN MICRONIZED ROW (BHN BAKU OBAT) COA C131060", "output": "29419000"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA. RBA0981900, RBA1021900", "output": "28363000"}, {"text_input": "What is the hs code for SALBUTAMOL SULFATE BP (BHN BAKU OBAT) COA 029D017", "output": "29225090"}, {"text_input": "What is the hs code for DOPAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA.19100301", "output": "29222900"}, {"text_input": "What is the hs code for PRAYPHOS DKP FG (BHN BAKU KOSMETIK) COA 1911831", "output": "29420000"}, {"text_input": "What is the hs code for PRAYPHOS MKP FG (BHN BAKU KOSMETIK) COA 19-017-01", "output": "29420000"}, {"text_input": "What is the hs code for METFORMIN HCL BP (BHN BAKU OBAT) COA MEF-19030442", "output": "29252900"}, {"text_input": "What is the hs code for MAGNESIUM HYDROXIDE FLOGEL USP (BAHAN BAKU OBAT) COA 201800446", "output": "28161000"}, {"text_input": "What is the hs code for CEFADROXIL MONOHYDRATE, PURIDROX COMPACTED (BHN BAKU OBAT) COA B340075,76,77", "output": "29419000"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE A(BHN BAKU OBAT) COA. M530892,893,894,895,896", "output": "29411019"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE A(BHN BAKU OBAT) COA. M530898,899,900,902,903", "output": "29411019"}, {"text_input": "What is the hs code for AMPICILLIN TRIHYDRATE, PURICILLIN COMPACTED(BHN BAKU OBAT) COA. M842459,60,61,85,86,91", "output": "29411020"}, {"text_input": "What is the hs code for CATCOL C 135 (L) GRADE (BAHAN BAKU KOSMETIK) COA 308/19", "output": "38249999"}, {"text_input": "What is the hs code for KETAMINE HCL (BHN BAKU OBAT), COA 0241319P", "output": "29223900"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615659", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615665", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615639", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615651", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615658", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615647", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615657", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615672", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615652", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615548", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615690", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615663", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615664", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GRAY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615643", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615646", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615645", "output": "38249999"}, {"text_input": "What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616144", "output": "32151900"}, {"text_input": "What is the hs code for PIGMENT BLEND GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616144", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615661", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615660", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615638", "output": "38249999"}, {"text_input": "What is the hs code for ACVRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615650", "output": "39061090"}, {"text_input": "What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA. 20190511", "output": "17023010"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190511", "output": "17029019"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190511", "output": "17029019"}, {"text_input": "What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA. 20190514", "output": "17023010"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX1904031", "output": "29181400"}, {"text_input": "What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 1905EF1210", "output": "29224900"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 BHN BAKU OBAT, COA 121909748,121909751", "output": "28363000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 BHN BAKU OBAT, COA 121909748,121909746", "output": "28363000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 BHN BAKU OBAT, COA 121909751", "output": "28363000"}, {"text_input": "What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 18-02-19,04-04-19", "output": "25070000"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539511", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539488", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539532", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539514", "output": "35051010"}, {"text_input": "What is the hs code for ACYCLOVIR MICRONIZED (BHN BAKU OBAT) COA 19100277", "output": "29335990"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB00219416,WB00219417,WB00219418", "output": "29362100"}, {"text_input": "What is the hs code for NOREPINEPHRINE BITARTRATE ,BHN BAKU OBAT, COA 460104", "output": "29379010"}, {"text_input": "What is the hs code for NOREPINEPHRINE BITARTRATE ,BHN BAKU OBAT, COA 460104", "output": "29379010"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616060", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616153", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616088", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616220", "output": "38249999"}, {"text_input": "What is the hs code for MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HG29146,HG29061", "output": "34029099"}, {"text_input": "What is the hs code for BICAR FOOD 0/50 SODIUM BICARBONATE (BHN BAKU OBAT ) COA MTP11319,MTP14819", "output": "28363000"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU SUPLEMEN) COA XH20190301", "output": "29362800"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU SUPLEMEN) COA XH20190301", "output": "29362800"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU SUPLEMEN) COA XH20190301", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00918204", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB01017666", "output": "29362800"}, {"text_input": "What is the hs code for RANITIDINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA RH3920519,RH3930519,RH3940519,RH3950519", "output": "29321900"}, {"text_input": "What is the hs code for FEED GRADE DICALCIUM PHOSPHATE POWDER (BHN BAKU UNTUK PAKAN TERNAK) COA TB1905005", "output": "28352510"}, {"text_input": "What is the hs code for NIACINAMIDE (NICOTINAMIDE) (BHN BAKU KOSMETIK) COA 153052019/A,154052019/A....", "output": "29362900"}, {"text_input": "What is the hs code for SERASENSE SF CM5 (BAHAN BAKU KOSMETIK) COA PA90514038,40,42,44", "output": "29319049"}, {"text_input": "What is the hs code for MAPROTILINE HCL (BHN BAKU OBAT) COA 1950001384", "output": "29214900"}, {"text_input": "What is the hs code for SUPPOCIRE AM PELLETS (BHN BAKU OBAT) COA 18E4910", "output": "28399000"}, {"text_input": "What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA 173818", "output": "28399000"}, {"text_input": "What is the hs code for TEFOSE 63 (BHN BAKU OBAT) COA 174047", "output": "28399000"}, {"text_input": "What is the hs code for TEFOSE 63 (BHN BAKU OBAT) COA 174616", "output": "28399000"}, {"text_input": "What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) , COA 904692", "output": "38249999"}, {"text_input": "What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) , COA 905210", "output": "38249999"}, {"text_input": "What is the hs code for KF-6016 (16KG) (BHN BAKU KOSMETIK) , COA 905062", "output": "38249999"}, {"text_input": "What is the hs code for RESTYLANE SB VITAL LIDOCAINE 1ML , COA 16547-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE LIDOCAINE HA FILLER IML N2 S2 ,COA 16547-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE LYFT LIDOCAINE IML, COA 16934-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE REFYNE 1 ML ,COA 16769-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE DEFYNE 1ML , COA 16716-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE KYSSE 1ML , COA 16547-1", "output": "33049990"}, {"text_input": "What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA TL01903292", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU SUPLEMEN) COA UT19030022", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19040043", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00918203", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA TL01903292", "output": "29362100"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01903292", "output": "29362700"}, {"text_input": "What is the hs code for COATED ASCORBIC ACID, TYPE EC, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01903316,63,65", "output": "29362700"}, {"text_input": "What is the hs code for BETATAB 20%S (BHN BAKU SUPLEMEN) COA UT18090032", "output": "32041900"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5% CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110040", "output": "32030010"}, {"text_input": "What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19020012", "output": "29362500"}, {"text_input": "What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19020012", "output": "29362500"}, {"text_input": "What is the hs code for B-CAROTENE 10% EMULS (BHN BAKU SUPLEMEN) COA UE01901006", "output": "32041900"}, {"text_input": "What is the hs code for BETATAB 20%S (BHN BAKU SUPLEMEN) COA UT18090032", "output": "32041900"}, {"text_input": "What is the hs code for COATED ASCORBIC ACID, TYPE EC, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01903365", "output": "29362700"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5% CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19020008", "output": "32030010"}, {"text_input": "What is the hs code for REDIVIVO(R) (LYCOPENE) 10% CWS/S-TG(BHN BAKU SUPLEMEN) COA UT18110014", "output": "29420000"}, {"text_input": "What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19020012", "output": "29362500"}, {"text_input": "What is the hs code for COATED ASCORBIC ACID, TYPE EC, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01903316,63,65", "output": "29362700"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5% CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110040", "output": "32030010"}, {"text_input": "What is the hs code for REDIVIVO(R) (LYCOPENE) 10% CWS/S-TG(BHN BAKU SUPLEMEN) COA UT18110014", "output": "29420000"}, {"text_input": "What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19020012", "output": "29362500"}, {"text_input": "What is the hs code for OPCODE RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT688076", "output": "32151900"}, {"text_input": "What is the hs code for OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT688077", "output": "32151900"}, {"text_input": "What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT688078", "output": "32151900"}, {"text_input": "What is the hs code for OPAGLOS CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT685555", "output": "32151900"}, {"text_input": "What is the hs code for OPACODE BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT688079", "output": "32151900"}, {"text_input": "What is the hs code for OPAGLOS WHITE/OFF WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT687493", "output": "32151900"}, {"text_input": "What is the hs code for LIPOID PPL-600 (BHN BAKU OBAT) COA. 577200-2190225", "output": "29232010"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011I9PL01", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E50 PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011H8JL02", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E50 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D11HAGL02", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I86001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E15 PREMIUM LV ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011I9EL02", "output": "39123900"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 20 PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D184F43021", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I9H001", "output": "39123900"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 20 PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D184F43021", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180ICV001", "output": "39123900"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA653759", "output": "38249999"}, {"text_input": "What is the hs code for TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA653760", "output": "32151900"}, {"text_input": "What is the hs code for CITRIC ACID MONOHYDRATE GRANULAR (BHN BAKU OBAT), COA UJ914,UJ916", "output": "29181400"}, {"text_input": "What is the hs code for HYDROXOCOBALAMIN CHLORIDE HP (BHN BAKU SUPLEMEN KESEHATAN) COA. KR00002", "output": "29362600"}, {"text_input": "What is the hs code for PROMOIS S-CAQ (BHN BAKU KOSMETIK) COA WBB", "output": "38249999"}, {"text_input": "What is the hs code for SILASOMA MFA(S) (BHN BAKU KOSMETIK) COA WEH", "output": "38249999"}, {"text_input": "What is the hs code for PROTEHIL LH (BHN BAKU KOSMETIK) COA WBB", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA WEL", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WR (BHN BAKU KOSMETIK) COA WCK", "output": "38249999"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA.M113193", "output": "29339990"}, {"text_input": "What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN2451118", "output": "29221990"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616046", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615542", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615977", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616082", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615658", "output": "39061090"}, {"text_input": "What is the hs code for OPADRYAMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616057", "output": "38249999"}, {"text_input": "What is the hs code for OPDRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615901", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615646", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616061", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616088", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616083", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616104", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616103", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616060", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB BLUE(BHN BAKU OBAT UTK PEWARNA TABLET)COA SH616076", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616077", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616078", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616069", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616059", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616224", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616224", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616056", "output": "39061090"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190515", "output": "17029019"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (BHN BAKU MAKANAN) COA UT19040855,856,857", "output": "29362100"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK COA B010419", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB200419", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG190519", "output": "39123900"}, {"text_input": "What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0033003", "output": "38249999"}, {"text_input": "What is the hs code for DL-PANTHENOL 50 L,1000KG IBC (BHN BAKU KOSMETIK) COA TL01904622", "output": "29362400"}, {"text_input": "What is the hs code for ETHYL PANTHENOL, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01902804", "output": "29362400"}, {"text_input": "What is the hs code for DL-PANTHENOL 50 L,1000KG IBC (BHN BAKU KOSMETIK) COA TL01904621", "output": "29362400"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX ( BAHAN BAKU MAKANAN) COA TL01903452,4597,4618", "output": "29362700"}, {"text_input": "What is the hs code for POMEGRANATE OF ACORES HYDROGLYCERINED EXTRACT(BHN BAKU KOSMETIK)COA PUGA190401-GL", "output": "38249999"}, {"text_input": "What is the hs code for ROSE OILY EXTRACT (BHN BAKU KOSMETIK)COA ROS190402-H", "output": "38249999"}, {"text_input": "What is the hs code for FLOWER ACID (BHN BAKU KOSMETIK)COA HS190502", "output": "38249999"}, {"text_input": "What is the hs code for GINGSENG PHYTELENE (BHN BAKU KOSMETIK)COA EG209-180803", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS181002", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS181002", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM180901-PGH", "output": "38249999"}, {"text_input": "What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA VIV181202-BGBIO", "output": "38249999"}, {"text_input": "What is the hs code for LICORICE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA GLG190401-BGBIO", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO190403", "output": "38249999"}, {"text_input": "What is the hs code for LINEN OILY EXTRACT (BHN BAKU KOSMETIK) COA LIU190201-H", "output": "38249999"}, {"text_input": "What is the hs code for LINEN OILY EXTRACT (BHN BAKU KOSMETIK) COA LIU190201-H", "output": "38249999"}, {"text_input": "What is the hs code for IONOL CP (BHN BAKU KOSMETIK) COA 01162218", "output": "29420000"}, {"text_input": "What is the hs code for LUBRIPHARM (R) SSF NF/EP/JP SODIUM STEARYL FUMARATE (BHN BAKU OBAT) COA 121909896", "output": "28161000"}, {"text_input": "What is the hs code for LUBRIPHARM (R) SSF NF/EP/JP SODIUM STEARYL FUMARATE (BHN BAKU OBAT) COA 121909896", "output": "28161000"}, {"text_input": "What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA. 20190529", "output": "11081200"}, {"text_input": "What is the hs code for GRANULAC (R) 200H (BHN BAKU KOSMETIK)COA L105711219", "output": "17021100"}, {"text_input": "What is the hs code for GRANULAC (R) 200H (BHN BAKU KOSMETIK)COA L105711219,L105711419", "output": "17021100"}, {"text_input": "What is the hs code for SENTRY POLYOX WSR 303 LEO NF (BHN BAKU OBAT UTK PEWARNA TABLET), COA D682J17RR3", "output": "39072010"}, {"text_input": "What is the hs code for SENTRY POLYOX WSR 1105 LEO NF (BHN BAKU OBAT UTK PEWARNA TABLET), COA D682H6MRDA", "output": "39072010"}, {"text_input": "What is the hs code for SENTRY POLYOX WSR N750 LEO NF (BHN BAKU OBAT UTK PEWARNA TABLET), COA D682I97RJ1", "output": "39072010"}, {"text_input": "What is the hs code for SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA.190508101", "output": "38249999"}, {"text_input": "What is the hs code for O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 021319/005928", "output": "38249999"}, {"text_input": "What is the hs code for LIQUORICE LC (BHN BAKU KOSMETIK) COA.113189", "output": "13021920"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT ) COA MTP13119,MTP13219", "output": "28363000"}, {"text_input": "What is the hs code for CETYL PALMITATE PELLETS CAR (BHN BAKU OBAT) COA 174492", "output": "28399000"}, {"text_input": "What is the hs code for THE MATCHA I P001062 (BHN BAKU OBAT) COA.0000027003", "output": "33029000"}, {"text_input": "What is the hs code for CLAIR BLACHE-II (BHN BAKU KOSMETIK) COA 190200", "output": "38249999"}, {"text_input": "What is the hs code for FLAVOSTERON SB (BHN BAKU KOSMETIK) COA 190662", "output": "13021990"}, {"text_input": "What is the hs code for CLAIRJU (BHN BAKU KOSMETIK) COA 190242", "output": "13021990"}, {"text_input": "What is the hs code for IZYAOI (BHN BAKU KOSMETIK) COA 190106", "output": "13021990"}, {"text_input": "What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 190441", "output": "38249999"}, {"text_input": "What is the hs code for CINDERELLACARE (BHN BAKU KOSMETIK) COA 190257", "output": "13021990"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9085521", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 90MM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9098554", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9100996", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MED 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9112920", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8141966", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9114508", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9114508", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9114508", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9114508", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8141966", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIDUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8129691", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7312565", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9021617", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183841", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8241935", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8311766", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8317859", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8310579", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8260535", "output": "38210010"}, {"text_input": "What is the hs code for BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9045711", "output": "38210010"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9030748", "output": "38210010"}, {"text_input": "What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B02B102M", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIDUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8129691", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIDUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8206836", "output": "38210010"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9030661", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9021617", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183841", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9010685", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8233944", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8271693", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8299812", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8256826", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8354530", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7312565", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8311766", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8271781", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8310579", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIDUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8256652", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8312979", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8331811", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8317859", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8354563", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9100996", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9028852", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA IC-XT PACK 90MM 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9115511", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9002631,9021643,903", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EOSIN MTHYLENE BLUE AG HHT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8254557", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MOTILITY TEST MEDIUM BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 09015933", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8317797", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9003524", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9028828", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DULCITOL 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8337666", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7332727", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIADIS MSRV 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8312875", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9102959", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9015774", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8354541", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8310633", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8332807", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8317895", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025631", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025631", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE YEAST MOLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8291647", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PHENYLALANINE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7255671", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9127956", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ISP MEDIUM 4 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8354590", "output": "38210010"}, {"text_input": "What is the hs code for GASPAK EZ LARGE INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8354590", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE YEAST NITROGEN BASE W/O AA 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8282924", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 90MM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9101597", "output": "38210010"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN)) COA SH9010015", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN B12 0,1PCT WS (BHN BAKU MAKANAN) COA UT18110025,UT18110026", "output": "29362600"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN)) COA UT18120056", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 10% CWS (BHN BAKU MAKANAN) COA UT18100056", "output": "32041900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN)) COA UT19010006", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN)) COA SI19010015", "output": "29362900"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPLEMEN)) COA XH20170305", "output": "29362800"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11901014", "output": "29362900"}, {"text_input": "What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT18110339", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19020014", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50% CWS/S (BHN BAKU MAKANAN) COA UE01903013", "output": "29362800"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11901014", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN)) COA UT19010006", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN E 50% CWS/S (BHN BAKU SUPLEMEN) COA UT19010004", "output": "29362800"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11901014", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/TG (TOCO) (BHN BAKU SUPLEMEN)) COA UT19030176", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN)) COA SI19010015", "output": "29362900"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN)) COA UQ81103293", "output": "29362200"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3% (BHN BAKU MAKANAN) COA WB00418116", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3% (BHN BAKU MAKANAN) COA WB00418116", "output": "29362900"}, {"text_input": "What is the hs code for ASCORBIC ACID 90% GRANULATION, 25 KG BOX (BHN BAKU SUPLEMEN) COA WB01218985", "output": "29362700"}, {"text_input": "What is the hs code for VTP # MS 012 (BHN BAKU MAKANAN) COA XW91905264", "output": "21069059"}, {"text_input": "What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91905264", "output": "21069059"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK)) COA 0000181894", "output": "29362900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ80713196", "output": "29362500"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0219030054", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0519040110,0519040111", "output": "29420000"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01807006", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01807006", "output": "29362900"}, {"text_input": "What is the hs code for BEAUPLEX (TM) VH, 5 KG BAG/ALU (BHN BAKU KOSMETIK) COA UF19021040", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0519040111", "output": "29420000"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01807006", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01807006,UE01807311", "output": "29362900"}, {"text_input": "What is the hs code for D-PANTHENOL 75 L, 20 KG PAIL PE (BHN BAKU KOSMETIK) COA TL01901304,TL01901305", "output": "29362400"}, {"text_input": "What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91905095,XW91905096", "output": "29420000"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18120366", "output": "29362800"}, {"text_input": "What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18110339", "output": "29362800"}, {"text_input": "What is the hs code for STAY-C (R) 50, 5 KG BAG ALU (BHN BAKU KOSMETIK) COA CS18060026,CS18060029", "output": "29362700"}, {"text_input": "What is the hs code for D-PANTHENOL, 20 KG PAIL PE (BHN BAKU KOSMETIK) COA TL01901304,TL01901305", "output": "29362400"}, {"text_input": "What is the hs code for ETHYL PANTHENOL, 20 KG PAIL PE (BHN BAKU KOSMETIK) COA TL01901304,TL01901305", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0718110176", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0518110346", "output": "29420000"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010015", "output": "29362900"}, {"text_input": "What is the hs code for B-CAROTENE 30% FS (BHN BAKU MAKANAN) COA UE01810072", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010015", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010015", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010015", "output": "29362900"}, {"text_input": "What is the hs code for B-CAROTENE 30% FS (BHN BAKU MAKANAN) COA UE01810072", "output": "32041900"}, {"text_input": "What is the hs code for B-CAROTENE 30% FS (BHN BAKU MAKANAN) COA UE01810072,UE01810073", "output": "32041900"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01903666", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN E 50% CWS/S (BHN BAKU SUPLEMEN) COA UE01903010,UE01903013", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN B12 (BHN BAKU SUPLEMEN) COA UT18110025", "output": "29362600"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01903666", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN E 50% CWS/S (BHN BAKU SUPLEMEN) COA UT19010004", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01803014", "output": "29362900"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01903666", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN E 50% CWS/S (BHN BAKU SUPLEMEN) COA UE01903013", "output": "29362900"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01903666", "output": "29362400"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE, 25 KG BOX (BHN BAKU SUPLEMEN) COA WB01218983,WB01218984", "output": "29362400"}, {"text_input": "What is the hs code for ASCORBIC ACID 90% GRANULARION, 25 KG BOX (BHN BAKU SUPLEMEN) COA WB01218984", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID 90% GRANULARION, 25 KG BOX (BHN BAKU SUPLEMEN) COA WB01218984", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID 90% GRANULARION, 25 KG BOX (BHN BAKU SUPLEMEN) COA WB01218984", "output": "29362700"}, {"text_input": "What is the hs code for VTP # MS 012 (BHN BAKU MAKANAN) COA XW91905263,XW91905265", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01803014", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19010006", "output": "29362900"}, {"text_input": "What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9099515", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B03B064M", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8219521", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9039992", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9084930", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LACTOBACILLI MRS BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9112888", "output": "38210010"}, {"text_input": "What is the hs code for VIAL ISOVITALEX ENRICHMENT 10ML 5 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9035837", "output": "38210010"}, {"text_input": "What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9068517", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9017553", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9059647", "output": "38210010"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8277815", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9059647", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8334767", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9049874", "output": "38210010"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8243742", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9059647", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9094722", "output": "38210010"}, {"text_input": "What is the hs code for CD4 PERCP-CY5.5 SK3 RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9052935", "output": "38210010"}, {"text_input": "What is the hs code for CD14 APC MPHIP9 100 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9115632", "output": "38210010"}, {"text_input": "What is the hs code for CD34 APC 8G12 100 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9077594", "output": "38210010"}, {"text_input": "What is the hs code for CD117 PE 104D2 50 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9070562", "output": "38210010"}, {"text_input": "What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9068517", "output": "38210010"}, {"text_input": "What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9081573", "output": "38210010"}, {"text_input": "What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9039821", "output": "38210010"}, {"text_input": "What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9058622", "output": "38210010"}, {"text_input": "What is the hs code for CD45 PERCP-CY5.5 2D1 50 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8268723", "output": "38210010"}, {"text_input": "What is the hs code for ANTI-MPO FITC 5B8 50 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9008965", "output": "38210010"}, {"text_input": "What is the hs code for CD19 PE-CY7 SJ25CI 100 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9086520", "output": "38210010"}, {"text_input": "What is the hs code for CD3 APC-H7 100 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9077593", "output": "38210010"}, {"text_input": "What is the hs code for CD79A PE HM47 50 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9065915", "output": "38210010"}, {"text_input": "What is the hs code for CD56 APC NCAM16.2 100 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8072654", "output": "38210010"}, {"text_input": "What is the hs code for CD10 PE-CY7 HI10A 100 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9051928", "output": "38210010"}, {"text_input": "What is the hs code for CD20 FITC L27 100 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9065589", "output": "38210010"}, {"text_input": "What is the hs code for ANTI-KAPPA FITC/ ANTI-LAMBDA PE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9063848", "output": "38210010"}, {"text_input": "What is the hs code for CD20 V500-C RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9114811", "output": "38210010"}, {"text_input": "What is the hs code for CD43 APC-H7 (1G10) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9078810", "output": "38210010"}, {"text_input": "What is the hs code for CD23 FITC EBVCS-5 RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9074873", "output": "38210010"}, {"text_input": "What is the hs code for CD25 PE 2A3 50 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9119763", "output": "38210010"}, {"text_input": "What is the hs code for CD34 PE-CY7 8G12 Y7 100 TEST RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9084561", "output": "38210010"}, {"text_input": "What is the hs code for ANNEXIN V FITC APOP DTEC KIT I 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9072590", "output": "38210010"}, {"text_input": "What is the hs code for HU CD64 APC-H7 10.1 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 09039654", "output": "38210010"}, {"text_input": "What is the hs code for HU CD36 HORIZON V450 CB38 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH8337814", "output": "38210010"}, {"text_input": "What is the hs code for HU CD7 APC M-T701 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8319695", "output": "38210010"}, {"text_input": "What is the hs code for HU CD3 BV421 UCHT1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8316512", "output": "38210010"}, {"text_input": "What is the hs code for HU CD10 BV421 HI10A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8330923", "output": "38210010"}, {"text_input": "What is the hs code for HU CD138 BV421 MI15 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8276889", "output": "38210010"}, {"text_input": "What is the hs code for HU CD19 BV510 SJ25C1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9014616", "output": "38210010"}, {"text_input": "What is the hs code for HU CD103 BV421 BER-ACT8 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9049542", "output": "38210010"}, {"text_input": "What is the hs code for CD38 APC-H7 (HB7) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9051517", "output": "38210010"}, {"text_input": "What is the hs code for CD7 APC (M-T701) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9098826", "output": "38210010"}, {"text_input": "What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-190310", "output": "29397900"}, {"text_input": "What is the hs code for SIMVASTATIN (BHN BAKU OBAT) COA DK40-1905092", "output": "29322090"}, {"text_input": "What is the hs code for GLUCOSAMINE HYDROCHLRIDE (BHN BAKU OBAT) COA WA201904003", "output": "29329990"}, {"text_input": "What is the hs code for METHISOPRINOL (BHN BAKU OBAT) COA.MTP9040119", "output": "29349990"}, {"text_input": "What is the hs code for PANTOPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT,COA AVHS19001", "output": "29333990"}, {"text_input": "What is the hs code for VANCOMYCIN HYDROCHLORIDE (STERILE POWDER) BHN BAKU OBAT,COA APSS18006", "output": "29419000"}, {"text_input": "What is the hs code for CEFTIZOXIME SODIUM (BHN BAKU OBAT) COA S600300", "output": "29419000"}, {"text_input": "What is the hs code for DESONIDE MICRONIZED (BHN BAKU OBAT) COA NX2905M", "output": "29372900"}, {"text_input": "What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LCD21619T", "output": "27101990"}, {"text_input": "What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK)COA CHP1190601", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND APRICOT XTRACT (BHN BAKU KOSMETIK)COA PAS-012059", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 050819", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-012239", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-121829", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-013159", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-021128", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COAGTB-012229", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK) COA NMSP-D-011018", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1190604", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-032249", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 050819", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK)COA CHP1181213", "output": "38249999"}, {"text_input": "What is the hs code for ASTAXANTHIN OIL 10PCT (BHN BAKU OBAT) COA 1903231", "output": "32030010"}, {"text_input": "What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 121909758", "output": "29054300"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 BHN BAKU OBAT, COA 121909749,121909750", "output": "28363000"}, {"text_input": "What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT688754", "output": "32151900"}, {"text_input": "What is the hs code for OPALUX TAN (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT688755", "output": "32151900"}, {"text_input": "What is the hs code for OPASPRAY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT688757", "output": "32151900"}, {"text_input": "What is the hs code for CONFECTIONERY INK BLUE (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT688756", "output": "32151900"}, {"text_input": "What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT688078", "output": "32151900"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 1AX1905010", "output": "29181400"}, {"text_input": "What is the hs code for CW-5C 5% CLEAR (BHN BAKU KOSMETIK) COA 785017426K", "output": "38249999"}, {"text_input": "What is the hs code for EXO-T (BHN BAKU KOSMETIK) COA 715017283K", "output": "38249999"}, {"text_input": "What is the hs code for KF-6048 (16KG) (BHN BAKU KOSMETIK) , COA 906022", "output": "38249999"}, {"text_input": "What is the hs code for KF-6016 (16KG) (BHN BAKU KOSMETIK) , COA 905063", "output": "38249999"}, {"text_input": "What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) , COA 905129", "output": "38249999"}, {"text_input": "What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) , COA 904214", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617112", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616587", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616588", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617111", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616714", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616924", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616923", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616583", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616580", "output": "39061090"}, {"text_input": "What is the hs code for IMERCARE TM VELLUTO (BHN BAKU KOSMETIK) COA 028/16", "output": "38029090"}, {"text_input": "What is the hs code for IMERCARE DOLCE (BHN BAKU KOSMETIK) COA S792/18", "output": "38029090"}, {"text_input": "What is the hs code for SILDENAFIL CITRATE USP (BHN BAKU OBAT) COA SLC 088 06 19", "output": "29335990"}, {"text_input": "What is the hs code for DEXAMETASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 1904031595", "output": "29372200"}, {"text_input": "What is the hs code for ANTISHINE WASH 1 (BHN BAKU KOSMETIK) COA 10300124", "output": "38249999"}, {"text_input": "What is the hs code for ANTI SHINE WASH (BHN BAKU KOSMETIK) COA 10300074", "output": "38249999"}, {"text_input": "What is the hs code for IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S240/19, S412/19", "output": "38029090"}, {"text_input": "What is the hs code for O-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 102418/005767", "output": "38249999"}, {"text_input": "What is the hs code for PEG 400 (POLYETHYLENE GLYCOL) BAHAN BAKU KOSMETIK) COA.AKW0007327,7412", "output": "39072010"}, {"text_input": "What is the hs code for DIMENHYDRINATE BHN BAKU OBAT COA. 19100402,409,410", "output": "29395900"}, {"text_input": "What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA R901000", "output": "29419000"}, {"text_input": "What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA S701500", "output": "29419000"}, {"text_input": "What is the hs code for CEFADROXIL MONOHYDRATE, PURIDROX POWDER (BHN BAKU OBAT) COA B334632,4634,4635", "output": "29419000"}, {"text_input": "What is the hs code for AMBROXOL HYDROCHLORIDE POWDER (BHN BAKU OBAT) COA AHM/19030,19029,19028", "output": "29221990"}, {"text_input": "What is the hs code for PREDNISOLONE BP2010/USP40 (BHN BAKU OBAT) COA NPL 190511", "output": "29372100"}, {"text_input": "What is the hs code for PREDNISONE USP40 (BHN BAKU OBAT) COA NPD 190404", "output": "29372100"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN )COA RBA1231900", "output": "28363000"}, {"text_input": "What is the hs code for EPA DHA 44 37 (BHN SUPLEMEN KESEHATAN) COA EE4437-190529", "output": "29061300"}, {"text_input": "What is the hs code for IRBESARTAN (BHN BAKU OBAT) COA", "output": "29332900"}, {"text_input": "What is the hs code for PROPOLIS BEE EXTRACT (BHN BAKU OBAT) COA 190502", "output": "29389000"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011IAKL02", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I6U001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J1G001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E15 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011I9EL02", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15 PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011I9EL02", "output": "39123900"}, {"text_input": "What is the hs code for FRAMYCETINE SULFATE (BHN BAKU OBAT) COA F1700008/01", "output": "29419000"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA. ROA149197,ROA150194,ROA152193,ROA,15219", "output": "28363000"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB00319233", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00918688", "output": "29362800"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190525", "output": "17029019"}, {"text_input": "What is the hs code for ACRYL-EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617475", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617423", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617422", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH614932", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617507", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617519", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617368", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY 200 PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617505", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616603", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617515", "output": "38249999"}, {"text_input": "What is the hs code for ACRYLPOL 980 (20KG) BAHAN BAKU KOSMETIK, COA 11519015,016,022", "output": "39069099"}, {"text_input": "What is the hs code for SORBITOL SOLUTION USP (BAHAN BAKU KOSMETIK) COA 1141920", "output": "29054400"}, {"text_input": "What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU SUPLEMEN) COA UT19030001,UT19030002", "output": "29362100"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA. M531075,76,77,81,60", "output": "29411019"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB00319233", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00918204", "output": "29362800"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01904618", "output": "29362700"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01904618", "output": "29362700"}, {"text_input": "What is the hs code for PHYTANTRIOL (BHN BAKU SUPLEMEN) COA UQ90107002", "output": "29420000"}, {"text_input": "What is the hs code for SPIRAMYCIN (BHN BAKU OBAT) COA SP181405", "output": "29419000"}, {"text_input": "What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK)COA 052419", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-013159", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK) COA NMSP-D-011018", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-022059", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK) COA CPG-021019", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND AMINO ACID COMPLEX (B) (BHN BAKU KOSMETIK) COA AMIBD-011519", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND YUZU EXTRACT (BHN BAKU KOSMETIK) COA CJUBD-051359,CJUBD-063059", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK)COA 2018G1505", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617420", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH615306", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616224", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617437", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617367", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617369", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617504", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617503", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616224", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617475", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY VIOLET (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617518", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617516", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616069", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616046", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616600", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH616603", "output": "38249999"}, {"text_input": "What is the hs code for INOSITOL (BHN BAKU OBAT) COA 201903031", "output": "29061300"}, {"text_input": "What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 1905056", "output": "29349990"}, {"text_input": "What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20190512", "output": "29309090"}, {"text_input": "What is the hs code for ALBENDAZOLE (BHN BAKU OBAT UTK PAKAN TERNAK) COA CDP-C 20190409", "output": "29339990"}, {"text_input": "What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1906005-09", "output": "29224900"}, {"text_input": "What is the hs code for POVIDONE K-30 EX JHNJ (BHN BAKU OBAT) COA PK30-190412F42", "output": "39059990"}, {"text_input": "What is the hs code for POVIDONE K-25 (BHN BAKU OBAT) COA PK25-190111F12", "output": "39059990"}, {"text_input": "What is the hs code for FIBRE DRUM", "output": "48192000"}, {"text_input": "What is the hs code for PHARMACEUTICAL BOVINE GELATINE (BAHAN BAKU OBAT ), COA 5001811285", "output": "35030049"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 FOOD OIL ,4,5KG PJUG (BHN BAKU SUPLEMEN) COA TS00012411", "output": "29362500"}, {"text_input": "What is the hs code for MATCHA GREEN TEA EXTRACT CSP 6 TC ( BHN BAKU KOSMETIK), COA CSP 19011 EOU", "output": "38249999"}, {"text_input": "What is the hs code for GEMCITABINE HYDROCHLORIDE (BHN BAKU OBAT) COA 190527", "output": "29349990"}, {"text_input": "What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA. DOC0631921", "output": "28363000"}, {"text_input": "What is the hs code for AMPICILLIN TRIHYDRATE, PURICILLIN COMPACTED(BHN BAKU OBAT) COA. M842521,27,28,53,54", "output": "29411020"}, {"text_input": "What is the hs code for TRISODIUM CITRATE 5.5-HYDRATE CRYST.,ERG.B,USP VIII ( BHN BAKU KOSMETIK), COA 3067308", "output": "29181400"}, {"text_input": "What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91905312", "output": "21069059"}, {"text_input": "What is the hs code for DWI-BI (BHN BAKU MAKANAN) COA XW91905316", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT19030846,50", "output": "29362100"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90502140", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90502140", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90502140", "output": "29362200"}, {"text_input": "What is the hs code for B-CAROTENE 30% FS (BHN BAKU MAKANAN) COA UE1810074", "output": "32041900"}, {"text_input": "What is the hs code for B-CAROTENE 30% FS (BHN BAKU MAKANAN) COA UE1810074", "output": "32041900"}, {"text_input": "What is the hs code for B-CAROTENE 30% FS (BHN BAKU MAKANAN) COA UE1810074", "output": "32041900"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT19040017", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT19040017", "output": "29362800"}, {"text_input": "What is the hs code for B-CAROTENE 10% CWS (BHN BAKU MAKANAN) COA UT18100062", "output": "32041900"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18110382,83", "output": "29362400"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3% (BHN BAKU SUPLEMEN) COA WB00418117", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1810151", "output": "29362300"}, {"text_input": "What is the hs code for SODIUM ASCORBIC CRYSTALLINE, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01902124", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25 KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01808405", "output": "29362700"}, {"text_input": "What is the hs code for B-CAROTENE 30% FS (BHN BAKU MAKANAN) COA UE01810073", "output": "32041900"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3% (BHN BAKU SUPLEMEN) COA WB00518036", "output": "29362300"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3% (BHN BAKU SUPLEMEN) COA WB00518036", "output": "29362300"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3% (BHN BAKU SUPLEMEN) COA WB00518036", "output": "29362300"}, {"text_input": "What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91905321,22", "output": "29420000"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3% (BHN BAKU SUPLEMEN) COA WB00518036", "output": "29362300"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3% (BHN BAKU SUPLEMEN) COA WB00518036", "output": "29362300"}, {"text_input": "What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18110340", "output": "29362800"}, {"text_input": "What is the hs code for B-CAROTENE 10% CWS (BHN BAKU MAKANAN) COA UT18100063", "output": "32041900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11902006", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3% (BHN BAKU SUPLEMEN) COA WB00418117", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3% (BHN BAKU SUPLEMEN) COA WB00418117", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3% (BHN BAKU SUPLEMEN) COA WB00418117", "output": "29362900"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT19040017", "output": "29362800"}, {"text_input": "What is the hs code for D-PANTHENOL, 20 KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01901001", "output": "29362400"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ81103293", "output": "29362200"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01807311", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3% (BHN BAKU SUPLEMEN) COA WB00418034", "output": "29362500"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3% (BHN BAKU SUPLEMEN) COA WB00418034", "output": "29362500"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3% (BHN BAKU SUPLEMEN) COA WB00418034", "output": "29362500"}, {"text_input": "What is the hs code for PX 204005 (BHN BAKU MAKANAN) COA XW91905283", "output": "21069059"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25 KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01808405", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25 KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01808405", "output": "29362700"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11901014", "output": "29362900"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25 KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01808405", "output": "29362700"}, {"text_input": "What is the hs code for SODIUM ASCORBIC CRYSTALLINE, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01902124", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25 KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01808414", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25 KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01808414", "output": "29362700"}, {"text_input": "What is the hs code for SODIUM ASCORBIC CRYSTALLINE, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01902124", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25 KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01808414", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25 KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01808414", "output": "29362700"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE(BHN BAKU SUPLEMEN) COA UQ80813226", "output": "29362500"}, {"text_input": "What is the hs code for D-PANTHENOL, 20 KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01901001", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL, 20 KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01901001", "output": "29362400"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE(BHN BAKU SUPLEMEN) COA UQ80813226", "output": "29362500"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3% (BHN BAKU SUPLEMEN) COA WB00418116,117", "output": "29362300"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3% (BHN BAKU SUPLEMEN) COA WB00418116", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3% (BHN BAKU SUPLEMEN) COA WB00518047", "output": "29362200"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE, 25 KG BOX/ALU (BHN BAKU SUPLEMEN) COA UQ90206035", "output": "29362700"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90210040", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90210040", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90210040", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90210038,40", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN B12 0.1% WS (BHN BAKU SUPLEMEN) COA UT18120037", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN B12 0.1% WS (BHN BAKU SUPLEMEN) COA UT18120037", "output": "29362600"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01807311", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01807311", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3% (BHN BAKU SUPLEMEN) COA WB00418117", "output": "29362900"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP19063028,3029", "output": "29211900"}, {"text_input": "What is the hs code for DEXAMETHASONE BP2010/USP40 (BHN BAKU OBAT) COA.NED190201", "output": "29372200"}, {"text_input": "What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT)COA L101851919", "output": "17021100"}, {"text_input": "What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT)COA L101851919", "output": "17021100"}, {"text_input": "What is the hs code for BODY_3 COMPLEX (BHN BAKU KOSMETIK) COA B3C021218", "output": "38249999"}, {"text_input": "What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830017169K", "output": "38249999"}, {"text_input": "What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769017053K", "output": "38249999"}, {"text_input": "What is the hs code for EXO-T (BHN BAKU KOSMETIK) COA 715017060K", "output": "38249999"}, {"text_input": "What is the hs code for EXO-T (BHN BAKU KOSMETIK) COA 715017283K", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL (TM) (BHN BAKU KOSMETIK), COA 1835105", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL (TM) (BHN BAKU KOSMETIK), COA 1901606", "output": "38249999"}, {"text_input": "What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK), COA 828017058K", "output": "38249999"}, {"text_input": "What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK), COA 5555018", "output": "38249999"}, {"text_input": "What is the hs code for ALDAVINE 5X (BHN BAKU KOSMETIK), COA 799037025K", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5% CLEAR (BHN BAKU KOSMETIK), COA 799037025K", "output": "38249999"}, {"text_input": "What is the hs code for ECOGEL (BHN BAKU KOSMETIK), COA 1834405", "output": "38249999"}, {"text_input": "What is the hs code for EXO-H (BHN BAKU KOSMETIK) COA 715026914J", "output": "38249999"}, {"text_input": "What is the hs code for EXO-T (BHN BAKU KOSMETIK) COA 715017283K", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL (TM) (BHN BAKU KOSMETIK), COA 1835103", "output": "38249999"}, {"text_input": "What is the hs code for MELANOSTATINE-5 BG (50PPM) (BHN BAKU KOSMETIK), COA 817046741J", "output": "38249999"}, {"text_input": "What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK), COA 1735916", "output": "38249999"}, {"text_input": "What is the hs code for TYROSTAT-11 (BHN BAKU KOSMETIK), COA 784027203K", "output": "38249999"}, {"text_input": "What is the hs code for TYROSTAT-09 (BHN BAKU KOSMETIK), COA 784016659J", "output": "38249999"}, {"text_input": "What is the hs code for TEFOSE 63 (BHN BAKU OBAT) COA 174916", "output": "28399000"}, {"text_input": "What is the hs code for TEFOSE 63 (BAHAN BAKU OBAT) COA 175325", "output": "28399000"}, {"text_input": "What is the hs code for PRECITOL ATO 5 (BAHAN BAKU OBAT) COA 173667", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE A PELLETS (BAHAN BAKU OBAT) COA 18E2201", "output": "28399000"}, {"text_input": "What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA.20190603", "output": "17023010"}, {"text_input": "What is the hs code for GLICLAZIDE (BHN BAKU OBAT) COA 1840001065-1840002667", "output": "29359000"}, {"text_input": "What is the hs code for BISOPROLOL FUMARATE USP (BHN BAKU OBAT) COA SLL/BF/0619002", "output": "29221990"}, {"text_input": "What is the hs code for HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 2905182", "output": "33029000"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA. M531037,38,53,94,125", "output": "29411019"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA. M596442,443,441", "output": "29411019"}, {"text_input": "What is the hs code for ROVIMIX AD3 1000/200, 20KG BAG (BHN BAKU OBAT UTK PAKAN TERNAK) COA UT19040355", "output": "29362100"}, {"text_input": "What is the hs code for TEFOSE 63 (BHN BAKU OBAT) COA 174775", "output": "28399000"}, {"text_input": "What is the hs code for TEFOSE 63 (BHN BAKU OBAT) COA 175052", "output": "28399000"}, {"text_input": "What is the hs code for SILYMARIN (BHN BAKU SUPLEMEN) COA 19S0045602", "output": "38249999"}, {"text_input": "What is the hs code for SILYMARIN (BHN BAKU SUPLEMEN) COA 19S0045602", "output": "38249999"}, {"text_input": "What is the hs code for P.GINGSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 32347/M1", "output": "13021990"}, {"text_input": "What is the hs code for MIRTOGEL (BHN BAKU SUPLEMEN) COA 19S0167200", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA TRITERPENES(BHN BAKU SUPLEMEN) COA 19S0002700", "output": "38249999"}, {"text_input": "What is the hs code for ECHINACEA ANG. DRY PURIF.EX (BHN BAKU SUPLEMEN) COA 32767/M1", "output": "13021990"}, {"text_input": "What is the hs code for P.GINGSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 32347/M1", "output": "13021990"}, {"text_input": "What is the hs code for SERENOA REPENS PURIFIED EXT.(BHN BAKU SUPLEMEN) COA 32905/B/1", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA TRITERP./C (BHN BAKU SUPLEMEN) COA 19S0003400", "output": "38249999"}, {"text_input": "What is the hs code for BILBERRY (V.MYRTILLUSE)ET.EX.36% (BHN BAKU SUPLEMEN) COA 32920/M2", "output": "13021990"}, {"text_input": "What is the hs code for NIACINAMIDE PC, 25 KG BOX (BHN BAKU KOSMETIK) COA 0000182299", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE PC, 25 KG BOX (BHN BAKU KOSMETIK) COA 000182299", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE PC, 25 KG BOX (BHN BAKU KOSMETIK) COA 000182299", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11902006", "output": "29362900"}, {"text_input": "What is the hs code for B-CAROTENE 30% FS (BHN BAKU MAKANAN) COA UE01810074,75", "output": "32041900"}, {"text_input": "What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18110339,40", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50% CWS/S (BHN BAKU SUPLEMEN) COA UE01903020", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010015", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01803014", "output": "29362900"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01903676,77", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01803014", "output": "29362900"}, {"text_input": "What is the hs code for B-CAROTENE 10% CWS (BHN BAKU MAKANAN) COA UT18100063", "output": "32041900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11902006", "output": "29362900"}, {"text_input": "What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18110340", "output": "29362800"}, {"text_input": "What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91905335", "output": "21069059"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT18120056", "output": "29362100"}, {"text_input": "What is the hs code for 1,3-BUTYLENE GLYCOL, COSMETIC QUALITY(BHN BAKU KOSMETIK) COA P0619325CC", "output": "29053200"}, {"text_input": "What is the hs code for OPADRY SGR CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET)COA GA654906", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY SGR RED (BHN BAKU OBAT UTK PEWARNA TABLET)COA GA654897", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY SGR RED (BHN BAKU OBAT UTK PEWARNA TABLET)COA GA654897", "output": "38249999"}, {"text_input": "What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT)COA L105711419", "output": "17021100"}, {"text_input": "What is the hs code for CAPSULAC (R) 60 (BHN BAKU OBAT)COA L100412119", "output": "17021100"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK 90MM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9127927", "output": "38210010"}, {"text_input": "What is the hs code for BISOPROLOL FUMARATE USP(BAHAN BAKU OBAT)COA LT-OBFM/001/19-12", "output": "29221990"}, {"text_input": "What is the hs code for ONDASENTRON HCL USP (BHN BAKU OBAT) COA 18OS002,18OS003", "output": "29332900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I72001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D111IBTL01", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM CR...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I9L001", "output": "39123900"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 10 PREMIUM...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D184GC1021", "output": "39123900"}, {"text_input": "What is the hs code for SILYMARIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 19B0002800", "output": "38249999"}, {"text_input": "What is the hs code for SILYBIN/ PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 19B0062700", "output": "38249999"}, {"text_input": "What is the hs code for CLAIR BLACHE-II (BHN BAKU KOSMETIK) COA 190200", "output": "38249999"}, {"text_input": "What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 190809", "output": "13021990"}, {"text_input": "What is the hs code for CINDERELLACARE (BHN BAKU KOSMETIK) COA 190257", "output": "13021990"}, {"text_input": "What is the hs code for IZYAOI (BHN BAKU KOSMETIK) COA 190106", "output": "13021990"}, {"text_input": "What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 182567", "output": "13021990"}, {"text_input": "What is the hs code for PRINCESSCARE (BHN BAKU KOSMETIK) COA 182936", "output": "13021990"}, {"text_input": "What is the hs code for CLAIRJU (BHN BAKU KOSMETIK) COA 190242", "output": "13021990"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG190607", "output": "29362700"}, {"text_input": "What is the hs code for OXFENDAZOLE (BHN BAKU OBAT UTK PAKAN TERNAK) COA LASA/L11/007/04/19", "output": "29242990"}, {"text_input": "What is the hs code for PACLITAXEL SEMISYNTHETIC (USP,TEST-2) (BHN BAKU OBAT) COA 899ESH012", "output": "29329990"}, {"text_input": "What is the hs code for PROPYPHENAZONE (ST) (BHN BAKU OBAT) COA 1804031", "output": "29331100"}, {"text_input": "What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1910188,1910190", "output": "29242930"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 2AX1906002", "output": "29181400"}, {"text_input": "What is the hs code for PARSOL MCX, 200 KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519050145", "output": "29420000"}, {"text_input": "What is the hs code for D-PANTHENOL, 20 KG PAIL PE (BHN BAKU KOSMETIK) COA TL01902021", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL 340, 25 KG PC (BHN BAKU KOSMETIK) COA 0219030052", "output": "29420000"}, {"text_input": "What is the hs code for STAY-C (R) 50, 5 KG BAG ALU (BHN BAKU KOSMETIK) COA CS18060029,30", "output": "29362700"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18120370", "output": "29362800"}, {"text_input": "What is the hs code for PARSOL 1789, 20 KG BOX (BHN BAKU KOSMETIK) COA 0319040609,10", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340, 25 KG PC (BHN BAKU KOSMETIK) COA 0219030052", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180120,21", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX, 200 KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519050145", "output": "29420000"}, {"text_input": "What is the hs code for OMEPRAZOLE PELLETS 8,5 PCT (BHN BAKU OBAT) COA OP0219C047", "output": "30039000"}, {"text_input": "What is the hs code for DEXTROSE ANHYDROUS (BHN BAKU OBAT UTK PAKAN TERNAK) COA XWA190422-1", "output": "17023010"}, {"text_input": "What is the hs code for LEVOFLOXACIN HEMIHYDRATE (BHN BAKU OBAT) COA C008-1906601", "output": "29349990"}, {"text_input": "What is the hs code for MAGNOLIA BARK EXTRACT (BHN BAKU KOSMETIK) COA MBE05-181105", "output": "38249999"}, {"text_input": "What is the hs code for PROPYPHENAZONE (ST) (BHN BAKU OBAT UTK PEWARNA TABLET) COA 1810254-58", "output": "29331100"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO190403", "output": "38249999"}, {"text_input": "What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-001-W, SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-001-W, SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for KOPCINOL (BHN BAKU KOSMETIK) COA K043.1/19/05/032", "output": "38249999"}, {"text_input": "What is the hs code for JAGUAR C 162 CARDBOARD BOX 25 KG (BHN BAKU KOSMETIK) COA MJAC19044B", "output": "38249999"}, {"text_input": "What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA. 20190611", "output": "11081200"}, {"text_input": "What is the hs code for SILVERION 2400 (BHN BAKU KOSMETIK) COA.17-12214", "output": "38249999"}, {"text_input": "What is the hs code for CLOTRIMAZOLE MICRONIZED (BHN BAKU OBAT ) COA 201904060015", "output": "29332900"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE/ PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA. M531131 S/D 34,36,37", "output": "29411019"}, {"text_input": "What is the hs code for PRAMIPEXOLE DIHYDROCHLORIDE MONOHYDRATE (BHN BAKU OBAT) COA PP0050818", "output": "29342000"}, {"text_input": "What is the hs code for PRAMIPEXOLE DIHYDROCHLORIDE MONOHYDRATE (BHN BAKU OBAT) COA PP0061218", "output": "29342000"}, {"text_input": "What is the hs code for PRAMIPEXOLE DIHYDROCHLORIDE MONOHYDRATE (BHN BAKU OBAT) COA PP0010319", "output": "29342000"}, {"text_input": "What is the hs code for OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET), COA WP814247", "output": "32151900"}, {"text_input": "What is the hs code for VC ASCORBIC ACID 325 MESH, 2OKG ... (BAHAN BAKU SUPLEMEN) COA HPD1901121,28,906036,38...", "output": "29362700"}, {"text_input": "What is the hs code for VC CALCIUM ASCORBATE DC, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPT1906009", "output": "29362700"}, {"text_input": "What is the hs code for VC ASCORBIC ACID DC 97PCT, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG1902002,2003,2006", "output": "29362700"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 19B0032000", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 19B0047800", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPPLEMEN) COA 19B0047900", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPPLEMEN) COA 19B0048000", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0048100", "output": "13021990"}, {"text_input": "What is the hs code for HAWTHORN DRY EXTRACT 1.8PCT (BHN BAKU SUPLEMEN) COA 10908/M1", "output": "13021990"}, {"text_input": "What is the hs code for PASSION FLOWER D.H.E 4PCT (BHN BAKU SUPLEMEN) COA 10926/M1", "output": "13021990"}, {"text_input": "What is the hs code for VALERIAN D.H.E 0,8PCT VAL.AC (BHN BAKU SUPLEMEN) COA 19B0006900", "output": "13021990"}, {"text_input": "What is the hs code for VALERIAN D.H.E 0.8PCT VAL.AC (BHN BAKU SUPLEMEN) COA 19B0013500", "output": "13021990"}, {"text_input": "What is the hs code for BUTCHERBROOM DRY HYDR EX 9-11PCT (BHN BAKU SUPLEMEN) COA 10678/M1", "output": "13021990"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 13590619,14320619...", "output": "29359000"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 15010619,15030619,15050619...", "output": "29359000"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 14320619", "output": "29359000"}, {"text_input": "What is the hs code for CATECHINS (TEA EXTRACT) (BHN BAKU SUPLEMEN KESEHATAN), COA 809071", "output": "21012020"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP19063145, 146", "output": "29211900"}, {"text_input": "What is the hs code for LIPOID S 20 (BHN BAKU OBAT) COA. 572000-2190127/001-024 (24)", "output": "29232010"}, {"text_input": "What is the hs code for LICOMYCIN HCL EP (BHN BAKU OBAT) COA 1905010", "output": "29419000"}, {"text_input": "What is the hs code for TETRACYCLINE HYDROCHLORIDE (BHN BAKU OBAT) COA 190606-61, 190605-02", "output": "29413000"}, {"text_input": "What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20190617", "output": "29309090"}, {"text_input": "What is the hs code for LEVOFLOXACIN HEMIHYDRATE (FREE ALKALINE) (BHN BAKU OBAT) COA C008-1906601", "output": "29349990"}, {"text_input": "What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) , COA 906133", "output": "38249999"}, {"text_input": "What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) , COA 906212", "output": "38249999"}, {"text_input": "What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18100055", "output": "29362100"}, {"text_input": "What is the hs code for DOCETAXEL TRIHYDRATE (BHN BAKU OBAT) COA 201811004, 201904003", "output": "29329990"}, {"text_input": "What is the hs code for MELANOSTATINE 5BG (BHN BAKU KOSMETIK) COA 817047308K", "output": "38249999"}, {"text_input": "What is the hs code for MINIPORYL (BHN BAKU KOSMETIK) COA 832017233K", "output": "38249999"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519030092", "output": "29420000"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ80813230", "output": "29362500"}, {"text_input": "What is the hs code for PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519030092", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0319050684, 685, 686", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519030092", "output": "29420000"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01807311", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01807311", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91906266", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19010089, UT19050090", "output": "29362900"}, {"text_input": "What is the hs code for NECTAR DE MATCHA FEMA P114 6 (BHN BAKU OBAT) COA.0000027992", "output": "33029000"}, {"text_input": "What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP804552", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C RED #40/ALLURA RED AC AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP806874", "output": "32151900"}, {"text_input": "What is the hs code for PVAP PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP811054", "output": "39059990"}, {"text_input": "What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP788130:1", "output": "32151900"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190615", "output": "17029019"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB00319233", "output": "29362100"}, {"text_input": "What is the hs code for OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT689944", "output": "32151900"}, {"text_input": "What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT690389", "output": "32151900"}, {"text_input": "What is the hs code for CONFECTIONERY INK BLUE (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT689987", "output": "32151900"}, {"text_input": "What is the hs code for SENTRY POLYOX WSR 303 LEO NF (BHN BAKU OBAT UTK PEWARNA TABLET), COA D6821BRRR3", "output": "39123900"}, {"text_input": "What is the hs code for MILD TALCUM MOD1 (BHN BAKU KOSMETIK) COA 10300170", "output": "38249999"}, {"text_input": "What is the hs code for ANTISHINE WASH 1 (BHN BAKU KOSMETIK) COA 10300125", "output": "38249999"}, {"text_input": "What is the hs code for ANTISHINE WASH (BHN BAKU KOSMETIK) COA 10300075", "output": "38249999"}, {"text_input": "What is the hs code for PURE GREEN B AND W PIT (BHN BAKU KOSMETIK) COA 10300051", "output": "38249999"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED GRADE P) BHN BAKU OBAT,COA. M596492", "output": "29411019"}, {"text_input": "What is the hs code for OMEPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W)BHN BAKU OBAT) COA AOSS19004", "output": "29333990"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT19040858, 59,60", "output": "29362100"}, {"text_input": "What is the hs code for RANITIDINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA RH388 05 19", "output": "29321900"}, {"text_input": "What is the hs code for PREDNISONE USP40 (BHN BAKU OBAT) COA NPD 190708", "output": "29372100"}, {"text_input": "What is the hs code for DEXTROSE ANHYDROUS (BHN BAKU OBAT UTK PAKAN TERNAK) COA XWA190422-2", "output": "17023010"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA ROA175197", "output": "28363000"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 15860619,15870619...", "output": "29359000"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT GRAPE CSB (BHN BAKU KOSMETIK) COA 01/17GUVA", "output": "28399000"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT GRAPE (BAHAN BAKU KOSMETIK) COA 01/17GUVA, SAMPLE NO COMMERCIAL VALUE", "output": "28399000"}, {"text_input": "What is the hs code for GELUCIRE 43/01 PELLETS (BAHAN BAKU OBAT) COA 17E4602", "output": "28399000"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9105960", "output": "38210010"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 65X15 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9042780", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9023839", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9049688", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8141966", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183841", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 9010685", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8297883", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 8271693", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8269714", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255977", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9021613", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8256826", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9092586", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9030984", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8206594", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9079880", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9038791", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8129682", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8227621", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9029985", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9084525", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE R2A AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8317859", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9079916", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8310579", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9107565", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9014512", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8382931", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8281627", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8260535", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9121588", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8206836", "output": "38210010"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 65X15 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9098631", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BLOOD AGAR BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9023839", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9049688", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183841", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 83055685", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8271693", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8269714", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8312962", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255977", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8256826", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9092586", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8206594", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9038791", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9029985", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8317859", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9079916", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9014523", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142519", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 8282931", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9028852", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142666", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DICHLORAN ROSE BENGAL CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8354556", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9050755", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8211649", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025977", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9084661", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9100996", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MR-VP BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9148534", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9003524", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9028828", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY II AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255703", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE OXGALL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8297826", "output": "38210010"}, {"text_input": "What is the hs code for PAIL BACTO AGAR 10KG (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9163843", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TREHALOSE 10G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9066673", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS MSRV 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8312875", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8084697", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MUELLER HINLON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8312890", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE NITRATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8129685", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025865", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BAIRD HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8310633", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9112968", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9107528", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8317917", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG B03B144M", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8337715", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084966", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PHENYLALANINE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7255671", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297871", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TETRATHIONATE BR BASE HAJNA 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084922", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8024751", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9094798", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8304929", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MARINE AGAR 2216 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9070997", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CHRO MAGAR CANDIDA 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9101733", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ISP MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9128891", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9071655,855", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9023839", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297702,706,...", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297883", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 8269714", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9030984", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8170732,8206594", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9014523", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8282931", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9091855", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9049688", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9079880", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) COA 9107565", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8281627", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9094798,9121588", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8331811", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9091914", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKIROORGANISME) BATCH 8255977", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 91215884", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9121588", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8130513", "output": "38210010"}, {"text_input": "What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9086804", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9129972", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9144945", "output": "38210010"}, {"text_input": "What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LCD22119T", "output": "27101990"}, {"text_input": "What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02B086M", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TERGITOL 4 XLT4 SUPPLEMENT 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH SLCB3712", "output": "38210010"}, {"text_input": "What is the hs code for KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0050319", "output": "29339990"}, {"text_input": "What is the hs code for LANSOPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA LP0219C027", "output": "30039000"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8207980", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9037956", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9116925", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8334767", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG L& P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9049874", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9079720", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, COA. 8219521", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233839", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 8285857", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8248932", "output": "38210010"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9025804", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9116925", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219521", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9116925", "output": "38210010"}, {"text_input": "What is the hs code for ANTI MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9155608", "output": "38210010"}, {"text_input": "What is the hs code for CD19 PE-CY7 SJ25C1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9086520", "output": "38210010"}, {"text_input": "What is the hs code for CD3 APC H7 SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9121572", "output": "38210010"}, {"text_input": "What is the hs code for CD79A PE HM47 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9065915", "output": "38210010"}, {"text_input": "What is the hs code for CD38 APC H7 (HB7) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9114884", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9116925", "output": "38210010"}, {"text_input": "What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9165530", "output": "38210010"}, {"text_input": "What is the hs code for CD3 PERCP SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9126824", "output": "38210010"}, {"text_input": "What is the hs code for CD8 FITC SK1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9099512", "output": "38210010"}, {"text_input": "What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9099563", "output": "38210010"}, {"text_input": "What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9115632", "output": "38210010"}, {"text_input": "What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9077594", "output": "38210010"}, {"text_input": "What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9070562", "output": "38210010"}, {"text_input": "What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161530", "output": "38210010"}, {"text_input": "What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161778", "output": "38210010"}, {"text_input": "What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9162907", "output": "38210010"}, {"text_input": "What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9058622", "output": "38210010"}, {"text_input": "What is the hs code for BD CST BEADS KIT 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 903996", "output": "38210010"}, {"text_input": "What is the hs code for CD79A PE HM47 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9165797", "output": "38210010"}, {"text_input": "What is the hs code for HU FOXP3 PE 259D/C7 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8138503", "output": "38210010"}, {"text_input": "What is the hs code for HU CD36 FITC CB38 (NL07) 100TST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8225528", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8334767", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8338844", "output": "38210010"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8156756", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9039992", "output": "38210010"}, {"text_input": "What is the hs code for CELL VIABILITY KIT 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9029826", "output": "38210010"}, {"text_input": "What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 05062019", "output": "25081000"}, {"text_input": "What is the hs code for LANOLINE ANHYDROUS (BHN BAKU KOSMETIK) COA 4932", "output": "38249999"}, {"text_input": "What is the hs code for LANOLIN ANHYDROUS (BHN BAKU KOSMETIK) COA 4932,4933,4934", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY FX YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA656328", "output": "38249999"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D0180J3E002", "output": "39123900"}, {"text_input": "What is the hs code for 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 04119/005976", "output": "38249999"}, {"text_input": "What is the hs code for 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 021319/005928", "output": "38249999"}, {"text_input": "What is the hs code for KM-9729 (BHN BAKU KOSMETIK) , COA 906198,SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for DERMOFEEL G 10L (BHN BAKU KOSMETIK) COA LT19500476", "output": "38249999"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT (BHN BAKU OBAT) COA NZ1198", "output": "29372900"}, {"text_input": "What is the hs code for AMPICILLIN TRIHYDRATE, PURICILLIN COMPACTED(BHN BAKU OBAT) COA. M842567 S/D 572", "output": "29411020"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1903081943", "output": "29372900"}, {"text_input": "What is the hs code for DESONIDE MICRONIZED (BHN BAKU OBAT) COA NX2905M", "output": "29372900"}, {"text_input": "What is the hs code for EPA DHA 44 37 (BHN SUPLEMEN KESEHATAN) COA EE4437-190701", "output": "29061300"}, {"text_input": "What is the hs code for MONENDOX 200 BMP (BHN BAKU OBAT UTK PAKAN TERNAK) COA 1006191", "output": "29419000"}, {"text_input": "What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT... (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP814308", "output": "32151900"}, {"text_input": "What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT... (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP8143064", "output": "32151900"}, {"text_input": "What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT... (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP814308", "output": "32151900"}, {"text_input": "What is the hs code for D AND C YELLOW #10 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP814306", "output": "32151900"}, {"text_input": "What is the hs code for CEFTIZOXIME SODIUM (BHN BAKU OBAT) COA S600300", "output": "29419000"}, {"text_input": "What is the hs code for SORBITOL SOLUTION USP 70PCT CRYSTALLISING (BAHAN BAKU KOSMETIK) COA 2331920", "output": "29054400"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT19050868", "output": "29362100"}, {"text_input": "What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA DT690957", "output": "32151900"}, {"text_input": "What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.ND190206", "output": "29372200"}, {"text_input": "What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT)COA L105712119", "output": "17021100"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619004", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618492", "output": "38249999"}, {"text_input": "What is the hs code for DEXAMETHASONE BP2010/USP40 (BHN BAKU OBAT) COA.NED190202", "output": "29372200"}, {"text_input": "What is the hs code for AMPICILLIN TRIHYDRATE (PURICILLIN POWDER) (BHN BAKU OBAT),COA. M780826", "output": "29411020"}, {"text_input": "What is the hs code for PIRACETAM (INJECTABLE GRADE) BHN BAKU OBAT COA. PIR01119", "output": "29337900"}, {"text_input": "What is the hs code for RUGENER DREIKRONEN HEILKREIDE 25K (BHN BAKU KOSMETIK) COA 81678637", "output": "29420000"}, {"text_input": "What is the hs code for GINKGO EXTRACT (BHN BAKU KOSMETIK) COA 81678637", "output": "29420000"}, {"text_input": "What is the hs code for VEEGUM K 20K BAG (BHN BAKU KOSMETIK) COA 81681676", "output": "29420000"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00119214", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00319233", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00918689", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00319233", "output": "29362100"}, {"text_input": "What is the hs code for EDIBLE BOVINE GELATINE (BAHAN BAKU OBAT ), COA 5001904890,894", "output": "35030049"}, {"text_input": "What is the hs code for EPIRUBICIN HYDROCHLORIDE BP/PHARMM EUR (BHN BAKU OBAT) COA FY0241", "output": "29419000"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP19063196,197", "output": "29211900"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ90103017", "output": "29362200"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19010089,19050090", "output": "29362900"}, {"text_input": "What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW91906225", "output": "21069059"}, {"text_input": "What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91906213", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19010089", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW91906389", "output": "21069059"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19040017", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN PREMIX 103093-A (BHN BAKU MAKANAN) COA XW91906344,6345", "output": "21069059"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01810075", "output": "32041900"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01810075", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN B12 0.PCT WS (BHN BAKU SUPLEMEN) COA UT18120037", "output": "29362600"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT(BHN BAKU SUPLEMEN) COA WB00418117", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN 5' PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1812181", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN 5' PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1812181", "output": "29362300"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19010006", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010015", "output": "29362900"}, {"text_input": "What is the hs code for CALCIUM ASCORBATE,25KG BOX ALU (BHN BAKU SUPLEMEN) COA WB00119006", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT19030176", "output": "29362100"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT18110383", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19010006", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00918689", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00119214", "output": "29362800"}, {"text_input": "What is the hs code for MIRANOL ULTRA C-32 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP90420IR,BP906329R", "output": "34029099"}, {"text_input": "What is the hs code for RESTYLANE SUBQ 2ML D16 , COA 16563-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE SKINB VITALLGHLIDO 1MLD16, COA 17063-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE REFYNE 1 ML ,COA 16769-1", "output": "33049990"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617906", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY 200 PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618812", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617919", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617838", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617839", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617909", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617925", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618809", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617908", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618807", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618667", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617922", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617918", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618810", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618810", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617924", "output": "39061090"}, {"text_input": "What is the hs code for ECHINACEA PURPUREA DRY AQUEOUS EXTRACT 0,8PCT (BAHAN BAKU SUPLEMEN) COA 10226/M2", "output": "13021990"}, {"text_input": "What is the hs code for FENTACARE 2231 EF (BHN BAKU KOSMETIK )COA ZH19E1303,ZHI9G0403...", "output": "34029019"}, {"text_input": "What is the hs code for NOREPINEPHRINE BITARTRATE ,BHN BAKU OBAT, COA 510104", "output": "29379010"}, {"text_input": "What is the hs code for PURIDROX TM POWDER, CEFADROXILE MONOHYDRATE (BHN BAKU OBAT) COA B334640, 41,42", "output": "29419000"}, {"text_input": "What is the hs code for D-RIBOSE (BHN BAKU OBAT) COA ZN190719", "output": "29400000"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/07/050719-2, ASG/07/060719-1...", "output": "29420000"}, {"text_input": "What is the hs code for CINNARIZINE (BHN BAKU OBAT) COA CIN1907012", "output": "29335990"}, {"text_input": "What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA C01781UP", "output": "29053200"}, {"text_input": "What is the hs code for PROMETHAZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA HPHCPN019", "output": "29343000"}, {"text_input": "What is the hs code for OXOMEMAZINE BASE (BHN BAKU OBAT) COA HXBCPN002", "output": "29343000"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785017553K", "output": "38249999"}, {"text_input": "What is the hs code for MELANOSTATINE -5BG (50PPM) (BHN BAKU KOSMETIK) COA 817047448K", "output": "38249999"}, {"text_input": "What is the hs code for PRO LIPO TM NEO (BHN BAKU KOSMETIK) COA 1908602", "output": "38249999"}, {"text_input": "What is the hs code for ISOCELL TM SLIM (DISC) (BHN BAKU KOSMETIK) COA 1912801", "output": "38249999"}, {"text_input": "What is the hs code for MELANOSTATINE 5BG (50PPM) (BHN BAKU KOSMETIK) COA 817047448K", "output": "38249999"}, {"text_input": "What is the hs code for TYROSTAT -09 (BHN BAKU KOSMETIK), COA 784017474K", "output": "38249999"}, {"text_input": "What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK), COA 5555018", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK), COA 1901606", "output": "38249999"}, {"text_input": "What is the hs code for MELANOSTATINE-5 BG (50PPM) (BHN BAKU KOSMETIK), COA 817047448K", "output": "38249999"}, {"text_input": "What is the hs code for MINIPORYL (BHN BAKU KOSMETIK), COA 832017233K", "output": "38249999"}, {"text_input": "What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK), COA 828017058K", "output": "38249999"}, {"text_input": "What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA. 8MT190654", "output": "30032000"}, {"text_input": "What is the hs code for LIFE'S DHA S35-O100, 5KG ALUF (B.BAKU SUPLEMEN) COA VY00304717", "output": "29362500"}, {"text_input": "What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-100519,S-1270619", "output": "29334910"}, {"text_input": "What is the hs code for NABUMETONE (BHN BAKU OBAT) COA H-2001118", "output": "29145000"}, {"text_input": "What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT)COA L101852119", "output": "17021100"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA ROA187194", "output": "28363000"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180IB8003", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I2O003", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15 PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D0180I8H003", "output": "39123900"}, {"text_input": "What is the hs code for CATCOL C 135 (L) GRADE (BAHAN BAKU KOSMETIK) COA 528/19", "output": "38249999"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT ) COA MTP18719", "output": "28363000"}, {"text_input": "What is the hs code for METHISOPRINOL (BHN BAKU OBAT) COA.MTP9050161", "output": "29349990"}, {"text_input": "What is the hs code for SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 1907802230", "output": "29322090"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ90110003,UQ90510127", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90510127", "output": "29362300"}, {"text_input": "What is the hs code for PARSOL MCX, 200 KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519030092", "output": "29420000"}, {"text_input": "What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91907036", "output": "29420000"}, {"text_input": "What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91907038 S/D 41", "output": "29420000"}, {"text_input": "What is the hs code for REFINED COCONUT OIL -GV 24/26 (BHN BAKU KOSMETIK)COA 19F0901", "output": "15131910"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT(BHN BAKU KOSMETIK)COA HEA180705", "output": "38249999"}, {"text_input": "What is the hs code for INCA INCHI ORGANIC LIPACTIVE (BHN BAKU KOSMETIK)COA II190202-AI-D-BIO", "output": "38249999"}, {"text_input": "What is the hs code for LOTUS OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA NEN190503-H", "output": "38249999"}, {"text_input": "What is the hs code for ONDANSETRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA 18OS003", "output": "29332900"}, {"text_input": "What is the hs code for MEG 3(TM) '10' N-3 INF POWDER S/SD(BHN BAKU MAKANAN) COA UT18040042", "output": "29362500"}, {"text_input": "What is the hs code for GENIVIDA (TM) TG ,1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT17080005", "output": "29329990"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18090032", "output": "32041900"}, {"text_input": "What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19020012", "output": "29362500"}, {"text_input": "What is the hs code for FRUITFLOW II SD, 1KG BAL (BHN BAKU SUPLEMEN) COA 19095", "output": "29362900"}, {"text_input": "What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110014", "output": "29420000"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT18100055", "output": "29362100"}, {"text_input": "What is the hs code for BETATAB 20%S (BHN BAKU SUPLEMEN) COA UT18090032", "output": "32041900"}, {"text_input": "What is the hs code for COATED ASCORBIC ACID TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01905715", "output": "29362700"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110040", "output": "32030010"}, {"text_input": "What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110014", "output": "29420000"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18090032", "output": "32041900"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110040", "output": "32030010"}, {"text_input": "What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110014", "output": "29420000"}, {"text_input": "What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19020012", "output": "29362500"}, {"text_input": "What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF, 1KG ALUF (BHN BAKU SUPLEMEN) COA UE01811060", "output": "32030010"}, {"text_input": "What is the hs code for CAROCARE NAT BC 20PCT CWS/S-TG,10KG BAG (BHN BAKU SUPLEMEN) COA EW19042007", "output": "29362500"}, {"text_input": "What is the hs code for COATED ASCORBIC ACID, TYPE EC, 25 KG BOX (BHN BAKU SUPLEMEN) COA TL01903316,63,65", "output": "29362700"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18090032", "output": "32041900"}, {"text_input": "What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF, 1KG ALUF (BHN BAKU SUPLEMEN) COA UE01901004", "output": "32030010"}, {"text_input": "What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00419407", "output": "29362700"}, {"text_input": "What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ90107003,7004", "output": "29420000"}, {"text_input": "What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1910804, 1910813, 1951408,1930434", "output": "29242930"}, {"text_input": "What is the hs code for FLUOROMETHOLONE MICRONISED USP BP JP (BHN BAKU OBAT) COA 1901370183", "output": "29372200"}, {"text_input": "What is the hs code for NYSTATIN MICRONIZED ROW (BHN BAKU OBAT) COA C131120", "output": "29419000"}, {"text_input": "What is the hs code for NYSTATIN POWDER (BHN BAKU OBAT) COA C114333", "output": "29419000"}, {"text_input": "What is the hs code for NYSTATIN MICRONIZED (BHN BAKU OBAT) COA C131171", "output": "29419000"}, {"text_input": "What is the hs code for MIRTOGENOL (R) (BHN BAKU SUPLEMEN) COA 80377/M1", "output": "38249999"}, {"text_input": "What is the hs code for SUPPOCIRE BM PELLETS (BHN BAKU OBAT) COA 19E1304", "output": "28399000"}, {"text_input": "What is the hs code for LABRAFIL M 1944 CS (BAHAN BAKU OBAT) COA 175446", "output": "28399000"}, {"text_input": "What is the hs code for LABRAFIL M 1944 CS (BAHAN BAKU OBAT) COA 175543", "output": "28399000"}, {"text_input": "What is the hs code for GELUCIRE 44/14 (BAHAN BAKU OBAT) COA 175733", "output": "28399000"}, {"text_input": "What is the hs code for PRECIROL ATO 5 (BHN BAKU OBAT) COA 175002", "output": "28399000"}, {"text_input": "What is the hs code for HYOSCINE BUTYL BROMIDE EP/BP (BHN BAKU OBAT) COA.2520519", "output": "29397900"}, {"text_input": "What is the hs code for FD AND C BLUE 32/INDIGO CARMINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP804675", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C YELLOW 36/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP809104", "output": "32151900"}, {"text_input": "What is the hs code for D AND C YELLOW 310 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP814308", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C BLUE #1/BRILLIANT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP805966", "output": "32151900"}, {"text_input": "What is the hs code for PVAP - PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP811063", "output": "39059990"}, {"text_input": "What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP807298", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP804552", "output": "32151900"}, {"text_input": "What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP802028-1", "output": "32151900"}, {"text_input": "What is the hs code for BICAR FOOD 0/50 SODIUM BICARBONATE (BHN BAKU OBAT ) COA MTP19919", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU OBAT) COA MTP03819", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU OBAT) COA MTP09219", "output": "28363000"}, {"text_input": "What is the hs code for INSTANT BLACK TEA POWDER TH B430 (BHN BAKU MAKANAN) COA 2019062403", "output": "21012020"}, {"text_input": "What is the hs code for GUAIFENESIN USP (BHN BAKU OBAT) COA GGE-1907159 TO GGE 1907168,GGE-1906155 TO GGE 1906158", "output": "29094900"}, {"text_input": "What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000182784", "output": "29362900"}, {"text_input": "What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01902023,3025", "output": "29362400"}, {"text_input": "What is the hs code for ETHYL PANTHENOL 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01902805", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0219030052", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0718110176", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519030092,50145", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX ,25KG PC (BHN BAKU KOSMETIK) COA 0519010008", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001529534", "output": "29420000"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ80813230", "output": "29362500"}, {"text_input": "What is the hs code for PARSOL SHIELD,20KG BOX (BHN BAKU KOSMETIK) COA 0819030067,68", "output": "29420000"}, {"text_input": "What is the hs code for MINERAL PREMIX FOR POWDER DRINK (BHN BAKU KOSMETIK) COA XW91907022", "output": "21069059"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20190202", "output": "29362800"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20190202", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19030004", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19030004", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010015", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN), COA UT19030004", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19030014", "output": "29362900"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20190202", "output": "29362800"}, {"text_input": "What is the hs code for PREDNISONE USP42 (BHN BAKU OBAT) COA.NPD190404, NPD190708", "output": "29372100"}, {"text_input": "What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA.NED190707, NED190710", "output": "29372200"}, {"text_input": "What is the hs code for DEXTROSE ANHYDROUS (BHN BAKU OBAT UTK PAKAN TERNAK) COA XWL1904153A", "output": "17023010"}, {"text_input": "What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 18290109", "output": "30039000"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 191100", "output": "38249999"}, {"text_input": "What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 182567,182975", "output": "13021990"}, {"text_input": "What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 191100", "output": "38249999"}, {"text_input": "What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 190672", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WS (BHN BAKU KOSMETIK) COA WGJ", "output": "38249999"}, {"text_input": "What is the hs code for PROTEHIL LH (BHN BAKU KOSMETIK) COA WCC", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA WEL", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA WGA", "output": "38249999"}, {"text_input": "What is the hs code for AC019KC PHYTOVITYL C 5KG (BHN BAKU KOSMETIK) COA 0031052", "output": "38249999"}, {"text_input": "What is the hs code for AC019KC PHYTOVITYL C 5KG (BHN BAKU KOSMETIK) COA 0034925", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK)COA ARP-321249", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK)COA MUP-012239", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-291069", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-021128", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012239", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SNAIL SECREATION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-050218", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-091808", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK)COA PSFAC-031028", "output": "38249999"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT)COA L101852319", "output": "17021100"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 BHN BAKU OBAT, COA 121909883", "output": "28363000"}, {"text_input": "What is the hs code for GABAPETIN (USP) (BHN BAKU OBAT) COA CGBU190319", "output": "29224900"}, {"text_input": "What is the hs code for DEXAMETASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 1904031595", "output": "29372200"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM (BHN BAKU OBAT UTK PAKAN TERNAK) COA 1905466", "output": "29331900"}, {"text_input": "What is the hs code for CARBOPLATIN EP (BHN BAKU OBAT) COA 570180010,147190010", "output": "28439000"}, {"text_input": "What is the hs code for SMIZYME PHYTASE 5000U/G GRANULAR (BHN BAKU OBAT UTK PAKAN TERNAK) COA 0224051907", "output": "35079000"}, {"text_input": "What is the hs code for CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA 1GC01CLB ZP48D 250MT", "output": "38249999"}, {"text_input": "What is the hs code for PRAYPHOS MKP FG (BHN BAKU KOSMETIK) COA 119-087-01", "output": "29420000"}, {"text_input": "What is the hs code for FLUCONAZOLE USP (BHN BAKU OBAT) COA AFLNC 0719048 (M)", "output": "29339910"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA. 9057852", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9057852", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9057852", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (ME UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9084933", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9028867", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTPSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9057852", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9028867", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8344948", "output": "38210090"}, {"text_input": "What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT19020012", "output": "29362500"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE,25KG BOX (BHN BAKU MAKANAN) COA TL01904618", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT19050023", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT19050023", "output": "29362100"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90410083", "output": "29362300"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA ROA204194", "output": "28363000"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM TYPE T 25 KG (BHN BAKU OBAT) COA C0029", "output": "29331100"}, {"text_input": "What is the hs code for CYANOXOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPLEMEN ) COA. 1907251390", "output": "29362600"}, {"text_input": "What is the hs code for L-LYSINE HYDROCHLORIDE(FEED GRADE) 98.5PCT (B.BAKU OBAT UTK TERNAK) COA DX19-07-169HJ-IB...", "output": "29224100"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619814", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619125", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619743", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619190", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619643", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619016", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619184", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619189", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619171", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619755", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619731", "output": "38249999"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J4A002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180HAV001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011J36L02", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM CR...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J32001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E15 PREMIUM LV ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011I9EL02", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM LVCR...(BHN BAKU OBAT UTK PEWARNA TABLET) COA D180IAK021", "output": "39123900"}, {"text_input": "What is the hs code for OXALIPLATIN (BHN BAKU OBAT) COA L20190610", "output": "28439000"}, {"text_input": "What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA. 20190716", "output": "11081200"}, {"text_input": "What is the hs code for SORBITOL SOLUTION 70PCT CRYSTALLISING (BAHAN BAKU KOSMETIK) COA 2851920", "output": "29054400"}, {"text_input": "What is the hs code for ROSUVASTATIN CALCIUM (BHN BAKU OBAT) COA RVM2160719", "output": "29359000"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618606", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618626", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619445", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619436", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619266", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618685", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618684", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619321", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619320", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618564", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH617919", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619373", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618636", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL EZE PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618636", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618640", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY 200 GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618541", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618561", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619431", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618627", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619436", "output": "38249999"}, {"text_input": "What is the hs code for PIGMENT BLEND BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618646", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619447", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GRAY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH6193692", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618624", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BLACK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619435", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619249", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH618635", "output": "38249999"}, {"text_input": "What is the hs code for MILD TALCUM MOD1 (BHN BAKU KOSMETIK) COA 10300173", "output": "38249999"}, {"text_input": "What is the hs code for PURE GREEN B&W PIT (BHN BAKU KOSMETIK) COA 10300052", "output": "38249999"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE 25KG/BOX (BHN BAKU MAKANAN ) COA. TL01907734,39", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19070056", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19070056", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19070056", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19070045", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19070045", "output": "29362100"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE 25KG BOX (BHN BAKU MAKANAN) COA TL01907739,41", "output": "29362400"}, {"text_input": "What is the hs code for STARCAP 1500 CO-PROCESSED (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN537877", "output": "35051010"}, {"text_input": "What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 040419 ,091218,070719", "output": "25070000"}, {"text_input": "What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK)COA 2019F1287", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND BLACK SESAME EXTRACT (BHN BAKU KOSMETIK) COA BSEA-011628", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND YUZU EXTRACT (BHN BAKU KOSMETIK) COA CJUBD-063059", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-013159", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-021879", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND GREEN TEA SEED OIL (BHN BAKU KOSMETIK) COA CSSO-043079", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK)COA MCP-N-033059", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK)COA 2019F1287", "output": "38249999"}, {"text_input": "What is the hs code for LOTUS NELUMBIUM NEL.FLOWER HS(BAHAN BAKU KOSMETIK) COA AM073203", "output": "13021950"}, {"text_input": "What is the hs code for SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA 190808071, 190815011", "output": "38249999"}, {"text_input": "What is the hs code for OMEPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W)BHN BAKU OBAT, COA AOSS19004", "output": "29333990"}, {"text_input": "What is the hs code for PANTOPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT, COA APSS19001", "output": "29333990"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 INF OIL ,4,5KG PJUG (BHN BAKU SUPLEMEN) COA TS00012231", "output": "29362500"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 18830719, 18840719...", "output": "29359000"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 18830719, 18840719...", "output": "29359000"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE BP MICRONISED (BHN BAKU OBAT) COA 18940719", "output": "29359000"}, {"text_input": "What is the hs code for TRIMETHOPRIM BP MICRONISED (BHN BAKU OBAT) COA TMP19070579", "output": "29335990"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01808015", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000182785", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01808015", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01808015", "output": "29362900"}, {"text_input": "What is the hs code for ETHYL PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01902805", "output": "29362400"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01903233", "output": "29362700"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418117", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19030014", "output": "29362900"}, {"text_input": "What is the hs code for CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU KOSMETIK) COA WB00119006", "output": "29362700"}, {"text_input": "What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18100325", "output": "29362800"}, {"text_input": "What is the hs code for D-PANTHENOL 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01902023,3025", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19030004", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11903009", "output": "29362900"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE,25KG BOX (BHN BAKU SUPLEMEN) COA TL01903233", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18120037", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010015", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19030021", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01901004", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1901002,1003", "output": "29362300"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE ,25KG BOX ALU (BHN BAKU MAKANAN) COA UQ90406087", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE ,25KG BOX ALU (BHN BAKU MAKANAN) COA UQ90406079", "output": "29362700"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01903233", "output": "29362700"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01810075", "output": "32041900"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01810075", "output": "32041900"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19030046", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19030004", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18120037", "output": "29362600"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19030021", "output": "29362400"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01903233", "output": "29362700"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19030046", "output": "29362800"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01903025", "output": "29362400"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1901010", "output": "29362300"}, {"text_input": "What is the hs code for THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000028231", "output": "33029000"}, {"text_input": "What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA.0000029305", "output": "33029000"}, {"text_input": "What is the hs code for PLAISANCE P116808 (BHN BAKU KOSMETIK) COA 0000029330", "output": "33029000"}, {"text_input": "What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 90412,90509,90520,90702", "output": "38029090"}, {"text_input": "What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 120319,140319,150319...", "output": "38029090"}, {"text_input": "What is the hs code for EUXYL K 120 CN 10KG KA (BHN BAKU KOSMETIK) COA 1532588", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 940 (SAMPLE) 100ML FL (BHN BAKU KOSMETIK) COA 1339633, SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 940 (SAMPLE) 100 ML FL (BHN BAKU KOSMETIK) COA 1339633, SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 100 SAMPLE(S) 100ML FL (BHN BAKU KOSMETIK) COA 1525399, SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 903 (SAMPLE) 100ML FL (BHN BAKU KOSMETIK) COA 1530568,SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA PA 20 SAMPLE(S) 100 ML FL (BHN BAKU KOSMETIK) COA 1520205,SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA ROA205196", "output": "28363000"}, {"text_input": "What is the hs code for DEXAMETHASONE BP2010/USP41 (BHN BAKU OBAT) COA.NED190404, NED190711", "output": "29372200"}, {"text_input": "What is the hs code for INSTANT BLACK TEA POWDER TH B430 (BHN BAKU MAKANAN) COA 2019071701", "output": "21012020"}, {"text_input": "What is the hs code for OPADRY ORANGE (BAHAN BAKU OBAT UNTUK PEWARNA TABLET) COA. GA657946", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA657948", "output": "38249999"}, {"text_input": "What is the hs code for MELOXICAM BP/EP (BHN BAKU OBAT) COA HMXCPM023", "output": "29341000"}, {"text_input": "What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9149751", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9072674", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B02B086M", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH B048192M", "output": "38210010"}, {"text_input": "What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9119914", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8206836", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8312962", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255977", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9107576", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8206836", "output": "38210010"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 85X15 MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9098631", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9085991", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9079880", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142519", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9028852", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9178487", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 8 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8281787", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8331811", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183841", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9170916", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9142666", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9114508", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255977", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9170723", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8304929", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9128845", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MOTILITY TEST MEDIUM BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9015933", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9129926", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9049923", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7317688", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9070997", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9028828", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CELLOBIOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9028837", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DULCITOL 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8337666", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9084697", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9107597", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 4 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8297988", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8312890", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9021602", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 5 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8197524", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9025865", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8310633", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8134767", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8317917", "output": "38210010"}, {"text_input": "What is the hs code for GAZPAK EZ STANDARD INCUBATION CONTAINER(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH7308545010", "output": "38210010"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGANGAN MIKRO ORGANISME)BATCH B01B163M", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9127972", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9121742", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BILE ESCULIN AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8271850", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TETRATHIONATE BR BASE HAJNA 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9084922", "output": "38210010"}, {"text_input": "What is the hs code for TUBE CRYSTAL E/ID INOCULUM FLUID(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9135718", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9141938", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9144942,...", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE STARCH AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 7114789", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MYP AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9133875", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BRAIN HEART INFUSION BR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8256839", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9172790", "output": "38210010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9178487", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9143927", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8331811", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PLATE VOUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9128557", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9143927,50548", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8331811", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8141966", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161608", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8269714", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9092586", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 90507553", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8310579", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9041523", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9142666", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8355570,9025917", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9043891", "output": "38210010"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9150548,575", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8291589", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9105960", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9023839", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9049688", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 8141966", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFIT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8183841", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8305685", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9127592", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8271693", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161608", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8269714", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9021613", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9092586", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9079951", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9039632,9112849", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9168641", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8227621", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9029985", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084525", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8317859", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 9079916", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 8310579,9161603", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9014523", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9021643", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9043891", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8354563", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9010685", "output": "38210010"}, {"text_input": "What is the hs code for CD45 PERCP CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8325512", "output": "38210010"}, {"text_input": "What is the hs code for ANTI MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9155608", "output": "38210010"}, {"text_input": "What is the hs code for HU CD41A PE HIP8 100 TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9010710", "output": "38210010"}, {"text_input": "What is the hs code for PI/RNASE STAINING BUFFER SOLUTION 100ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9183478", "output": "38210010"}, {"text_input": "What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9115632", "output": "38210010"}, {"text_input": "What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9077594, 9140698", "output": "38210010"}, {"text_input": "What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9070562", "output": "38210010"}, {"text_input": "What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9068517,9161530", "output": "38210010"}, {"text_input": "What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9161778", "output": "38210010"}, {"text_input": "What is the hs code for CD10 FITC HI 10A 50TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9162907", "output": "38210010"}, {"text_input": "What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9058622", "output": "38210010"}, {"text_input": "What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP W135 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9165674", "output": "38210010"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9025804", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9115887", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255580", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8219521", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8334767", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9049874", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8207980", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9115887", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219521", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8334767", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9039992", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9049874", "output": "38210010"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9025804", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8207980", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9129843", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255580,9039647..", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8219521", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9039992", "output": "38210010"}, {"text_input": "What is the hs code for BOTTLE HEMOGLOBIN SOL 2PCT 100ML10EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8268963", "output": "38210010"}, {"text_input": "What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT 10X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8334877", "output": "38210010"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8156756", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SHIGELLA ANTIS POLY A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9140633", "output": "38210010"}, {"text_input": "What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9107937", "output": "38210010"}, {"text_input": "What is the hs code for VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9129779", "output": "38210010"}, {"text_input": "What is the hs code for VIAL PENICILLINASE 10000000 KU/ML 1 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9099734", "output": "38210010"}, {"text_input": "What is the hs code for VIAL SHIGELLA ANTIS POLY A1 LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8103629", "output": "38210010"}, {"text_input": "What is the hs code for OPASPRAY BLUE (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT691289", "output": "32151900"}, {"text_input": "What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN1550519", "output": "29221990"}, {"text_input": "What is the hs code for IBUPROFEN 40 GRADE (BHN BAKU OBAT) COA 4050-3557", "output": "29163990"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190717", "output": "17029019"}, {"text_input": "What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT)COA L105712119", "output": "17021100"}, {"text_input": "What is the hs code for CELLACTOSE (R) 80 (BHN BAKU OBAT)COA L100462719", "output": "17021100"}, {"text_input": "What is the hs code for RESTYLANE SKINB VITLIDO 1 MLD16 ,COA 16905-1,17008-1", "output": "33049990"}, {"text_input": "What is the hs code for REST SKINB VITALLGHLIDO 1MLD16, COA 17063-1, 17132-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE LYFT LIDOCAINE 1 ML ,COA 17004-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE REFYNE 1 ML , COA 17084-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE KYSSE 1 ML , COA 16911-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE LYFT LIDOCAINE 1 ML ,COA 17004-1, 17061-1,SAMPLE NO COMM VALUE", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE REFYNE 1 ML , COA 17084-1, SAMPLE NO COMMERCIAL NALUE", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE KYSSE 1 ML , COA 16911-1, SAMPLE NO COMMERCIAL VALUE", "output": "33049990"}, {"text_input": "What is the hs code for TRISODIUM CITRATE DIHYDRATE FINE GRANULAR (BHN BAKU MAKANAN), COA UJ919,UJ921", "output": "29181400"}, {"text_input": "What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1908019 S/D 22, 24 S/D 26, 28 S/D 30", "output": "29224900"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539989", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN540098", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN540003", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539990", "output": "35051010"}, {"text_input": "What is the hs code for CETRIMIDE (BHN BAKU OBAT) COA 319CAA0002,0004", "output": "38249999"}, {"text_input": "What is the hs code for CEFADROXIL MONOHYDRATE (PURIDROX COMPACTED) BHN BAKU OBAT) COA B340109,111 S/D 113", "output": "29419000"}, {"text_input": "What is the hs code for LIPOID PPL-600 (BHN BAKU OBAT) COA. 577200-2190225/007", "output": "29232010"}, {"text_input": "What is the hs code for TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA657367", "output": "32151900"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00119215", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00918689", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00319235", "output": "29362100"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20190701", "output": "29362800"}, {"text_input": "What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) , COA 907134", "output": "38249999"}, {"text_input": "What is the hs code for KSG-210 (16KG) BHN BAKU KOSMETIK, COA 907060", "output": "38249999"}, {"text_input": "What is the hs code for KSG-710 (16KG) BHN BAKU KOSMETIK, COA 907268", "output": "38249999"}, {"text_input": "What is the hs code for KP-562P (16KG) BHN BAKU KOSMETIK, COA 802008", "output": "38249999"}, {"text_input": "What is the hs code for KP-578 (16KG) BHN BAKU KOSMETIK , COA 807080", "output": "38249999"}, {"text_input": "What is the hs code for KSP-100 (10KG) BHN BAKU KOSMETIK , COA 907717", "output": "38249999"}, {"text_input": "What is the hs code for KSG-15 (900G) BHN BAKU KOSMETIK, COA 908331", "output": "38249999"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01907062", "output": "29362700"}, {"text_input": "What is the hs code for SODIUM VALPROATE (BAHAN BAKU OBAT) COA.453131", "output": "29159090"}, {"text_input": "What is the hs code for CHOLINE L-BITARTRATE (BAHAN BAKU OBAT) COA.3018002", "output": "29231000"}, {"text_input": "What is the hs code for SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA 190710121", "output": "38249999"}, {"text_input": "What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000182785", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT19030850", "output": "29362100"}, {"text_input": "What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001529534", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0319050702,703,746", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P9N24QA000", "output": "29420000"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90513039", "output": "29362500"}, {"text_input": "What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT18100325", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19030046", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19030014", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11903009", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18120037", "output": "29362600"}, {"text_input": "What is the hs code for ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01902117", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01902117", "output": "29362700"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01810075", "output": "32041900"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19040022", "output": "29362800"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518048", "output": "29362200"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01903083", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19050090", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11903009", "output": "29362900"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01810082", "output": "32041900"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01810076", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18120037", "output": "29362600"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01810075", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18120037", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18120037", "output": "29362600"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01810082", "output": "32041900"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19030046", "output": "29362800"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19030021", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19030014", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18120037", "output": "29362600"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01810075,76", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01901004", "output": "29362900"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT18100063", "output": "32041900"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19030004", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT19040177", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT19050090", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01901004", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT19010008", "output": "29362900"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT18100063", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19070045", "output": "29362100"}, {"text_input": "What is the hs code for COATED ASCORBIC ACID TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01908235", "output": "29362700"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19020008", "output": "32030010"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19070056", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A+ D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN), COA UT19070045", "output": "29362100"}, {"text_input": "What is the hs code for CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 20190808", "output": "38249999"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011IAKL02", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011I9PL01", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011J36L02", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011IBTL01", "output": "39123900"}, {"text_input": "What is the hs code for SILDENAFIL CITRATE USP (BHN BAKU OBAT) COA SLC 103 07 19", "output": "29335990"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I6Q001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I6Q001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I5R002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180IC4002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I73002", "output": "39123900"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539801", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539799", "output": "35051010"}, {"text_input": "What is the hs code for SPIRAMYCIN (BHN BAKU OBAT) COA 190117080M", "output": "29419000"}, {"text_input": "What is the hs code for SERASENSE SF CM5 (BAHAN BAKU KOSMETIK) COA PA90729040,42,44,46,48,50,52,54", "output": "29319049"}, {"text_input": "What is the hs code for EDIBLE BOVINE GELATINE (BAHAN BAKU OBAT ), COA 5001907255,8279", "output": "35030049"}, {"text_input": "What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 83001722K", "output": "38249999"}, {"text_input": "What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769017443K", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1901606", "output": "38249999"}, {"text_input": "What is the hs code for MELANOSTATINE-5BG (50PPM) BHN BAKU KOSMETIK, COA 817047448K", "output": "38249999"}, {"text_input": "What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) COA 1805516", "output": "38249999"}, {"text_input": "What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK), COA 1835314", "output": "38249999"}, {"text_input": "What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK), COA 769017443K", "output": "38249999"}, {"text_input": "What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK), COA 828017197K", "output": "38249999"}, {"text_input": "What is the hs code for TYROSTAT-11 (BHN BAKU KOSMETIK), COA 784027602K", "output": "38249999"}, {"text_input": "What is the hs code for MELANOSTATINE-5BG (50PPM) (BHN BAKU KOSMETIK), COA 817047448K", "output": "38249999"}, {"text_input": "What is the hs code for DL-PANTHENOL 50 L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01808637", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL ,20KG PAIL PE BHN BAKU KOSMETIK) COA TL01904043", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219030054", "output": "29420000"}, {"text_input": "What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00588582,589482,589484", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180121,0708190001", "output": "29420000"}, {"text_input": "What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18100325", "output": "29362800"}, {"text_input": "What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000183324", "output": "29362900"}, {"text_input": "What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91907318", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91907294", "output": "21069059"}, {"text_input": "What is the hs code for VP DN03 (BHN BAKU MAKANAN) COA XW91907385", "output": "21069059"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418118", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00418118", "output": "29362900"}, {"text_input": "What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01903025", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01903025,32", "output": "29362400"}, {"text_input": "What is the hs code for D-BIOTIN (BHNN BAKU SUPLEMEN) COA UE01905011", "output": "29362900"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20190202", "output": "29362800"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011", "output": "29362900"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20190202", "output": "29362800"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX /ALU (BHN BAKU SUPLEMEN) COA TL01902123", "output": "29362700"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01903356", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01902117,2123", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01902117", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01902117", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01902117", "output": "29362700"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT19020008", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT19070873", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT19070873", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT19070873", "output": "29362100"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01902117", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT19070873", "output": "29362100"}, {"text_input": "What is the hs code for ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01902117", "output": "29362700"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT19020008", "output": "32041900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011", "output": "29362900"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90602227", "output": "29362200"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01902117", "output": "29362700"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ90602227", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90602227", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90602221,2227", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ90602221", "output": "29362200"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00619039", "output": "29362300"}, {"text_input": "What is the hs code for ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01902117", "output": "29362700"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011", "output": "29362900"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPLEMEN) COA XH20190202", "output": "29362800"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01906715", "output": "29362400"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25 KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01902117", "output": "29362700"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011", "output": "29362900"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90602227", "output": "29362200"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01906715", "output": "29362400"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01902123", "output": "29362700"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL01906715", "output": "29362400"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ90710155", "output": "29362300"}, {"text_input": "What is the hs code for PX 103070 -C3 (BHN BAKU MAKANAN) COA XW91907097", "output": "21069059"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ90710155", "output": "29362300"}, {"text_input": "What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453425151", "output": "39139090"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 10 PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D184J57021", "output": "39123900"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 14 PREMIUM (BHN BAKU OBAT UTK PEWARNA TABLET), COA D184J24021", "output": "39123900"}, {"text_input": "What is the hs code for TSPL-30-ID (IKG) (BHN BAKU KOSMETIK) , COA 807011", "output": "38249999"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB290719, LB140619", "output": "39123900"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B170719", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG030819", "output": "39123900"}, {"text_input": "What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP(BHN BAKU OBAT) COA 101902024,SAMPLE NO COMM VALUE", "output": "28183000"}, {"text_input": "What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M-31.0PCT (BHN BAKU OBAT) COA 101929014", "output": "28161000"}, {"text_input": "What is the hs code for OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT691567", "output": "32151900"}, {"text_input": "What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110017", "output": "29420000"}, {"text_input": "What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110017", "output": "29420000"}, {"text_input": "What is the hs code for GENIVIDA (TM) TG, 1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT17080005", "output": "29329990"}, {"text_input": "What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA.0000068305", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA.0000068305", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK),COA 0000068309", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H105 83PCT (BHN BAKU KOSMETIK), COA 0000068325", "output": "29309090"}, {"text_input": "What is the hs code for CEFTIZOXIME SODIUM (BHN BAKU OBAT) COA S600300", "output": "29419000"}, {"text_input": "What is the hs code for DICLOFENAC POTASSIUM BP 2019 (BHN BAKU OBAT) COA DFK/19080092", "output": "29224900"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1903163183", "output": "29372900"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG190802", "output": "29362700"}, {"text_input": "What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1908075 S/D 86", "output": "29224900"}, {"text_input": "What is the hs code for OMEPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA OP0219C036", "output": "30039000"}, {"text_input": "What is the hs code for ONDANSETRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA 18OS003", "output": "29332900"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED) BHN BAKU OBAT, COA. M531278,292,279,280", "output": "29411019"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX POWDER) ,BHN BAKU OBAT, COA. M484164,165", "output": "29411019"}, {"text_input": "What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA S100100", "output": "29419000"}, {"text_input": "What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA S701900", "output": "29419000"}, {"text_input": "What is the hs code for OPADRY AMB II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620358", "output": "38249999"}, {"text_input": "What is the hs code for WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK)COA EG138-190601", "output": "38249999"}, {"text_input": "What is the hs code for INCA INCHI ORGANIC LIPACTIVE WA (BHN BAKU KOSMETIK)COA II190608-AI-D-BIO", "output": "38249999"}, {"text_input": "What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 201900091", "output": "28183000"}, {"text_input": "What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK)COA CHP1190822", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK)COA NMP-L-291069", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012239", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-012229", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK) COA NMSP-D-011018", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK)COA OHA-030669", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK) COA CPG-391069", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-011079", "output": "38249999"}, {"text_input": "What is the hs code for 87-28-5 SALICYLIC ACID ETHYLENE GLYCOL ESTER/GLYCOL SALICYLATE (B.BAKU KOSMETIK)COA.DE190825", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619775", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620623", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620622", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619766", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619790", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620619", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619773", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619767", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619780", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619839", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY QX WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619758", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619932", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620620", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619932", "output": "38249999"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ90710156", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT19070875", "output": "29362100"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ90710156,58", "output": "29362300"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01907092,7109", "output": "29362700"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01907062,92", "output": "29362700"}, {"text_input": "What is the hs code for LEVOFLOXACIN HEMIHYDRATE (FREE ALKALINE) BHN BAKU OBAT, COA C008-1906604", "output": "29349990"}, {"text_input": "What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-190302", "output": "29397900"}, {"text_input": "What is the hs code for POVIDONE K30 (BHN BAKU OBAT) COA PK30-190807F21", "output": "39059990"}, {"text_input": "What is the hs code for INOSITOL (BHN BAKU OBAT) COA 201907054", "output": "29061300"}, {"text_input": "What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 1908052", "output": "29349990"}, {"text_input": "What is the hs code for CITICOLINE SODIUM (BHN BAKU OBAT) COA CDP-C-190702", "output": "29349990"}, {"text_input": "What is the hs code for PROCATEROL HCL HEMIHYDRATE MICRONIZED (BHN BAKU OBAT) COA 860050719M1", "output": "29337900"}, {"text_input": "What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19060014", "output": "29362500"}, {"text_input": "What is the hs code for MEG-3 (TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19060014", "output": "29362500"}, {"text_input": "What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19060014", "output": "29362500"}, {"text_input": "What is the hs code for TSPL-30-ID (IKG) (BHN BAKU KOSMETIK) , COA 807011", "output": "38249999"}, {"text_input": "What is the hs code for GELATINE (BAHAN BAKU OBAT ), COA 5131906514,6511,4402,6514,6511,4402,6514...", "output": "35051090"}, {"text_input": "What is the hs code for PRAYPHOS DKP FG (BAHAN BAKU KOSMETIK), COA 191634", "output": "29420000"}, {"text_input": "What is the hs code for FEED GRADE DICALCIUM PHOSPHATE POWDER (BHN BAKU UNTUK PAKAN TERNAK) COA TB1907003", "output": "28352510"}, {"text_input": "What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 190328", "output": "29329990"}, {"text_input": "What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 182975", "output": "13021990"}, {"text_input": "What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 190809", "output": "13021990"}, {"text_input": "What is the hs code for CLAIRJU (BHN BAKU KOSMETIK) COA 190809", "output": "13021990"}, {"text_input": "What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 190804", "output": "38249999"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 191234", "output": "13021990"}, {"text_input": "What is the hs code for EDIBLE BOVINE GELATINE 200 BLOOM...(BHN BAKU OBAT), COA 5001907208, 908268,SAMPLE NO COMM VALUE", "output": "35051090"}, {"text_input": "What is the hs code for EDIBLE BOVINE GELATINE INSTANT 200 (BHN BAKU OBAT) COA S18D03 , SAMPLE NO COMM VALUE", "output": "35051090"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 BHN BAKU OBAT, COA 121909773", "output": "28363000"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA.M113258", "output": "29339990"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113270", "output": "29339990"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113270", "output": "29339990"}, {"text_input": "What is the hs code for KETAMINE HCL (BHN BAKU OBAT), COA 0162419P", "output": "29223900"}, {"text_input": "What is the hs code for DEXAMETHASONE BP2010/USP41 (BHN BAKU OBAT) COA.NED190804, NED190805", "output": "29372200"}, {"text_input": "What is the hs code for MELOXICAM BP/EP (BHN BAKU OBAT) COA HMXCPN002", "output": "29341000"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20190809, 20190815", "output": "17029019"}, {"text_input": "What is the hs code for PERMETHRIN (PHARMA GRADE) BHN BAKU OBAT COA 195046014, 195046015", "output": "29163990"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 20410819, 20430819", "output": "29359000"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE BP MICRONISED (BHN BAKU OBAT) COA 19750819,19780819, 19860819...", "output": "29359000"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A, 20KG BAG (BHN BAKU MAKANAN) COA WB00719445,446", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A 20KG BAG (BHN BAKU MAKANAN) COA WB00719446", "output": "29362100"}, {"text_input": "What is the hs code for ETHAMBUTOL (BHN BAKU OBAT) COA N9058600 S/D 605,985 S/D 988", "output": "29051400"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM REGULAR GRADE (BHN BAKU OBAT) COA 1905550", "output": "29331900"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM INJECTABLE GRADE (BHN BAKU OBAT) COA 18121897, 18121899", "output": "29331900"}, {"text_input": "What is the hs code for THEOPHYLLINE (BHN BAKU OBAT) COA 19310,19311,19312", "output": "29395900"}, {"text_input": "What is the hs code for PIPEMIDIC ACID (BHN BAKU OBAT) COA 18051", "output": "29335990"}, {"text_input": "What is the hs code for ACETYLSALICYLIC ACID 40/80 ( BHN BAKU OBAT) COA 191624", "output": "29182200"}, {"text_input": "What is the hs code for ACETYLSALICYLIC ACID 20/60 (BHN BAKU OBAT) COA 191576", "output": "29182200"}, {"text_input": "What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91908052,8053,8054,8055", "output": "29420000"}, {"text_input": "What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT19020043", "output": "29362800"}, {"text_input": "What is the hs code for ETHYL PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01902805, TL01906808", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0718110176", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX ,25KG PC (BHN BAKU KOSMETIK) COA 0519010008", "output": "29420000"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT19060053", "output": "29362800"}, {"text_input": "What is the hs code for PARSOL HMS, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0419060155", "output": "29420000"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT18120377", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19060053", "output": "29362800"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519122", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00619039", "output": "29362300"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00619039", "output": "29362300"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519122", "output": "29362900"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPLEMEN) COA XH20190202", "output": "29362800"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01904028, UE01904029", "output": "32041900"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19040028, UT19060053", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19060053", "output": "29362800"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU SUPLEMEN) COA UT19040086", "output": "29362400"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19060053", "output": "29362800"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ80813230", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT19030176", "output": "29362100"}, {"text_input": "What is the hs code for DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01808637", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL , 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01904043", "output": "29362400"}, {"text_input": "What is the hs code for NIACINAMIDE USP (BHN BAKU KOSMETIK) COA 19-20/NMD(P)/U/078, 079 ,081,082,083", "output": "29362900"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE (BHN BAKU OBAT) COA F-04 1064-190801", "output": "29372900"}, {"text_input": "What is the hs code for CATECHINS (TEA EXTRACT) TEAVIGO (1KG)(BHN BAKU KOSMETIK), COA 907241", "output": "21012020"}, {"text_input": "What is the hs code for INSTANT TEA POWDER (TEA EXTRACT) BHN BAKU MAKANAN, COA 909061", "output": "9022010"}, {"text_input": "What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA S701900", "output": "29419000"}, {"text_input": "What is the hs code for CEFOTAXIME SODIUM STERILE USP (BHN BAKU OBAT) COA S201000", "output": "29419000"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED) BHN BAKU OBAT, COA. M531341,343,344,345", "output": "29411019"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX POWDER) ,BHN BAKU OBAT, COA. M484184,183", "output": "29411019"}, {"text_input": "What is the hs code for BROMELAIN 1600 GDU UNITS/G (BHN BAKU OBAT) COA 0162419P", "output": "35079000"}, {"text_input": "What is the hs code for SK BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK)COA MSEEC-050918", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK)COA NMP-L-360179", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-050218", "output": "38249999"}, {"text_input": "What is the hs code for AMPICILLIN SODIUM (STERILE) BP (BHN BAKU OBAT), COA SI/AMP/00660819", "output": "29411020"}, {"text_input": "What is the hs code for PANTOPRAZOLE SODIUM (STERILE) BHN BAKU OBAT, COA SI/PPZ/00450819", "output": "29333990"}, {"text_input": "What is the hs code for PROPYPHENAZONE (ST) (BHN BAKU OBAT) COA 1804031", "output": "29331100"}, {"text_input": "What is the hs code for POTASSIUM IODIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA KID/E/1920/013", "output": "28276000"}, {"text_input": "What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-1470719", "output": "29334910"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 20 PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D184J14021", "output": "39123900"}, {"text_input": "What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL 36PCT-39PCT...(BHN BAKU OBAT UTK PEWARNA TABLET) COA WP804552", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C RED #40 ALLURA RED AC AL... (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP806874", "output": "32151900"}, {"text_input": "What is the hs code for ERYTHROSINE AL 38PCT-42PCT... (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP798864-1", "output": "32151900"}, {"text_input": "What is the hs code for ERYTHROSINE AL 38PCT-42PCT... (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP798863:1", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C BLUE #1/BRILLIANT BLUE ...(BHN BAKU OBAT UTK PEWARNA TABLET) COA WP805969:AZ1029", "output": "32151900"}, {"text_input": "What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9121749", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9189033", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9148976", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8344948", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9070604", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9024916", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9070604", "output": "38210090"}, {"text_input": "What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8338681", "output": "38210090"}, {"text_input": "What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8338681", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9189048", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9189048", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8155535", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9105844", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9113978", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9057852", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8155535", "output": "38210090"}, {"text_input": "What is the hs code for DIFCO BEEF EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7296821", "output": "38210090"}, {"text_input": "What is the hs code for BACTO MALT EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8290986", "output": "38210090"}, {"text_input": "What is the hs code for BACTO MALT EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8290986", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PROTEOSE PEPTONE NO.3 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9070621", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8312754", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASAMINO ACIDS EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8312714", "output": "38210090"}, {"text_input": "What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ90107004", "output": "29420000"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 INF OIL ,4,5KG PJUG (BHN BAKU SUPLEMEN) COA TS00012344", "output": "29362500"}, {"text_input": "What is the hs code for CAROPHYLL YELLOW 10PCT, 5KG BAG ALU (BHN BAKU OBAT UTK PAKAN TERNAK) COA UE01901005", "output": "32041900"}, {"text_input": "What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) , COA 909219", "output": "38249999"}, {"text_input": "What is the hs code for KF-6028 (16KG) BHN BAKU KOSMETIK, COA 907215", "output": "38249999"}, {"text_input": "What is the hs code for KF-6028 (16KG) BHN BAKU KOSMETIK, COA 907215", "output": "38249999"}, {"text_input": "What is the hs code for KSG-15 (16KG) BHN BAKU KOSMETIK, COA 908344", "output": "38249999"}, {"text_input": "What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9177402", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01B204M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TERGITOL 4 XLT4 SUPPLEMENT 100 ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH SLCB3712", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH9144942,72793", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9185635", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9144942", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9185623", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9193139", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9199251", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9178482", "output": "38210090"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN )COA ROA238193", "output": "28363000"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8331811", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9219600", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9206582", "output": "38210090"}, {"text_input": "What is the hs code for SOLUTION BACTERIOSTAT CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 19G2256203", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8331811", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255977", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9148762", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9128557", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9084661", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9128533", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9107597", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9219600", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9107532", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9141938", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9021617", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8317927", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8297883", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9091912", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8312962", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8255977", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9084840", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9079951", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9107576", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9142666", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9133762", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE L-ARABINOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9189637", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9219600", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9128557", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9128533", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9212136", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE L-ARABINOSE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9199186", "output": "38210090"}, {"text_input": "What is the hs code for BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9045711", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8331811", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183841", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8317927", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9127592", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8312962", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 82559777", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9021613", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9148762", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9128557", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9170916", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9142666", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 9133762", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9025695", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8354563", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9084661", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9128533", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9211782", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9150544", "output": "38210090"}, {"text_input": "What is the hs code for TUBE CRYSTAL E/ ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9135718", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01B203M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M-PA-C AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 83555632", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9128828", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9010685", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161608", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8129682", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PLANT COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9128557,9189611", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9206386", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 9170916", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9107576", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142666", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9205168", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9084661", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9148762", "output": "38210090"}, {"text_input": "What is the hs code for PAIL BUFFERED PEPTONE WATER 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9133516", "output": "38210090"}, {"text_input": "What is the hs code for PAIL LAURYL TRYPTOSE BROTH 2KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9084715", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9114508", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8304929", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8305630", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MICRO INOCULUM BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8311696", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9175490", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9028828", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE L-ARABINOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9189637", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DULCITOL 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8337666", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TREHALOSE 10G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9066673", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM WQITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161593", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084697", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9142723", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9224870", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9021602", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NITRATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9148558", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025865", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9219600", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9112988", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE STOCK CULTURE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8012616", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8134767", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 8317917", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH B01B165M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 83377152", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084966", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9182087", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8032739", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9206582", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9189647", "output": "38210090"}, {"text_input": "What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9150805", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BLOOD AGAR BASE 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9023839", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9010685", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9168641", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161683", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9212136", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9212136", "output": "38210090"}, {"text_input": "What is the hs code for KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9172854", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8291589", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 9107532", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9105960", "output": "38210090"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161791", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8331811", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9141938", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9021617,9085997", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8183841", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8317927", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) COA 9127592", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297883", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8271693", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9091867,9161608", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9091912", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKIROORGANISME) BATCH 8312962, 9142767", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8255977", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9021613", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084840", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9092586", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9148762", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9079951", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9112849", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9128557", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILLIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9029985", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084525", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8317859", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH 9161603", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9107576", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9014523", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9142666", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9021643", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9025917", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 91337624", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9025695", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA PENGEMBANGAN MIKROORGANISME) BATCH 8354563", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084661", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9107597", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8317797", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE KOSER CITRATE MEDIUM 500G ( MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8054971", "output": "38210090"}, {"text_input": "What is the hs code for TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA658526", "output": "32151900"}, {"text_input": "What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA P-64", "output": "29397900"}, {"text_input": "What is the hs code for MOMETASONE FUROATE MICRONIZED (BHN BAKU OBAT) COA NX2467M", "output": "29372200"}, {"text_input": "What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NZ2112M", "output": "29372200"}, {"text_input": "What is the hs code for FEED GRADE DICALCIUM PHOSPHATE POWDER (BHN BAKU UNTUK PAKAN TERNAK) COA TB1908014", "output": "28352510"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620274", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620310", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620309", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620309", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621255", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621130", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH6202943", "output": "38249999"}, {"text_input": "What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 19E3002", "output": "28399000"}, {"text_input": "What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA C00991UP", "output": "29053200"}, {"text_input": "What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA. 20190903", "output": "17023010"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK ,COA 02/19GL4", "output": "28399000"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK, COA 02/19LG4, SAMPLE NO COMM VALUE", "output": "28399000"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180J4M001", "output": "39123900"}, {"text_input": "What is the hs code for ALLOPURINOL USP (BHN BAKU OBAT) COA 190054AY3ARII", "output": "29335990"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 02/18GAAK", "output": "28399000"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU KOSMETIK) COA.02/18GAAK, SAMPLE NO COMM VALUE", "output": "28399000"}, {"text_input": "What is the hs code for APIFIL CAR (BAHAN BAKU OBAT) COA. 173268", "output": "28399000"}, {"text_input": "What is the hs code for CAPRYOL 90 BF (BAHAN BAKU OBAT) COA 175088", "output": "28399000"}, {"text_input": "What is the hs code for PYRAZINAMIDE EP/USP (BHN BAKU OBAT) COA WPOZ 086 H 19,WHOPZ 087 H 19...", "output": "29339990"}, {"text_input": "What is the hs code for MIRANOL C2M CONC NP 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP907433R", "output": "34029099"}, {"text_input": "What is the hs code for OPALUX RED (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT692474", "output": "32151900"}, {"text_input": "What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT692170", "output": "32151900"}, {"text_input": "What is the hs code for OPALUX PINK (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT692475", "output": "32151900"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA.M113258", "output": "29339990"}, {"text_input": "What is the hs code for LIDOCAINE BASE (BHN BAKU OBAT) COA. 188117", "output": "29242990"}, {"text_input": "What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA.MLAH0430819", "output": "29341000"}, {"text_input": "What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT)COA L105712819", "output": "17021100"}, {"text_input": "What is the hs code for MAPROTILINE HCL (BHN BAKU OBAT) COA 1950002228", "output": "29214900"}, {"text_input": "What is the hs code for HU FOXP3 BUFFER SET 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9035607", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9169895", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9148525", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8219521", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI-LYO (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9157516", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9049874", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9172664", "output": "38210090"}, {"text_input": "What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9204535", "output": "38210090"}, {"text_input": "What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9196206", "output": "38210090"}, {"text_input": "What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9214700", "output": "38210090"}, {"text_input": "What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9116847", "output": "38210090"}, {"text_input": "What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161530", "output": "38210090"}, {"text_input": "What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9192091", "output": "38210090"}, {"text_input": "What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9192085", "output": "38210090"}, {"text_input": "What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9203956", "output": "38210090"}, {"text_input": "What is the hs code for CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8325512", "output": "38210090"}, {"text_input": "What is the hs code for BD CST BEADS KIT 50 TESTS(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 90399", "output": "38210090"}, {"text_input": "What is the hs code for CD14 PE MPHIP9 100TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9134580", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8207980", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH9169895,78374", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9148525", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8219521", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9039992", "output": "38210090"}, {"text_input": "What is the hs code for CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8325512", "output": "38210090"}, {"text_input": "What is the hs code for CD19 FITC 4G7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9039818", "output": "38210090"}, {"text_input": "What is the hs code for MS CD3 MOICPX PE-CY7 17A2 50UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9108972", "output": "38210090"}, {"text_input": "What is the hs code for PERM/WASH BUFFER 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8330934", "output": "38210090"}, {"text_input": "What is the hs code for HU CD40 FITC 5C3 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9017856", "output": "38210090"}, {"text_input": "What is the hs code for HUHL.A-DR FITC L243 (G46-6) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9042902", "output": "38210090"}, {"text_input": "What is the hs code for MS LGG 1KPA LTCL-FITC MOPC-21 100TST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8241736", "output": "38210090"}, {"text_input": "What is the hs code for CYTOFIX/CYTOPERM W/GOLGLPLUG KIT 250TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8330748", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9172653", "output": "38210090"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9025804", "output": "38210090"}, {"text_input": "What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP A (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9171702", "output": "38210090"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9025804", "output": "38210090"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025804", "output": "38210090"}, {"text_input": "What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9113721", "output": "38210090"}, {"text_input": "What is the hs code for ANTI-HLA-DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9136649", "output": "38210090"}, {"text_input": "What is the hs code for CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9162587", "output": "38210090"}, {"text_input": "What is the hs code for CD10 PE HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9178421", "output": "38210090"}, {"text_input": "What is the hs code for HU CD41A PE HIP8 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9010710", "output": "38210090"}, {"text_input": "What is the hs code for MS TH1/TH2/TH17 CBA KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9221635", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9025667", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8291707", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 9148525", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219521", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233839", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8243742", "output": "38210090"}, {"text_input": "What is the hs code for TUBE PENASE CONCENTRATE 10X20ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9190501", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8312963", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE FOLIC ACID ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9176696", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8248932", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLR B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9176695", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9142512", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9017792", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9196893", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOBACILLI MRS BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9039670", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9183217", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOBACILLI AGAR AOAC 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8155567", "output": "38210090"}, {"text_input": "What is the hs code for PDX-1 ALEXA 488 658A5 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8172732", "output": "38210090"}, {"text_input": "What is the hs code for CD4 APC SK3 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 9135596", "output": "38210090"}, {"text_input": "What is the hs code for CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9092796", "output": "38210090"}, {"text_input": "What is the hs code for CD3 PE SK7 100 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9113721", "output": "38210090"}, {"text_input": "What is the hs code for ANTI-HLA-DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9136649", "output": "38210090"}, {"text_input": "What is the hs code for HU CD41A PE HIP8 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9010710", "output": "38210090"}, {"text_input": "What is the hs code for HU CD209 APC DCN46 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9123890", "output": "38210090"}, {"text_input": "What is the hs code for HU CD64 FITC 10.1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9017758", "output": "38210090"}, {"text_input": "What is the hs code for HU CD274 PE MIH1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9032800", "output": "38210090"}, {"text_input": "What is the hs code for HU CD206 FITC 19.2 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8191532", "output": "38210090"}, {"text_input": "What is the hs code for CD11C PE CE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9157617", "output": "38210090"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9025804", "output": "38210090"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA ROA235197", "output": "28363000"}, {"text_input": "What is the hs code for ACRYLPOL 980 (20KG) BAHAN BAKU KOSMETIK, COA 11519073,11519074", "output": "39069099"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BAHAN BAKU MAKANAN ), COA 20190905", "output": "17029019"}, {"text_input": "What is the hs code for OPACODE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET), COA WP816958", "output": "32151900"}, {"text_input": "What is the hs code for MELANOSTATINE 5-BG(50PPM) (BHN BAKU KOSMETIK) COA 817047558K", "output": "38249999"}, {"text_input": "What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829017384K", "output": "38249999"}, {"text_input": "What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769017443K", "output": "38249999"}, {"text_input": "What is the hs code for LANACHRYS 2B PF (BHN BAKU KOSMETIK) COA 793057327K", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK), COA 1901606", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1907705", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1907706", "output": "38249999"}, {"text_input": "What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5555018", "output": "38249999"}, {"text_input": "What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) COA 830017310K", "output": "38249999"}, {"text_input": "What is the hs code for CHRONOLINE (BHN BAKU KOSMETIK) COA 769017443K", "output": "38249999"}, {"text_input": "What is the hs code for LANABLUE (DISC) (BHN BAKU KOSMETIK) COA 5533018", "output": "38249999"}, {"text_input": "What is the hs code for NEUTRAZEN (BHN BAKU KOSMETIK) COA 828017058K", "output": "38249999"}, {"text_input": "What is the hs code for TYROSTAT-11 (BHN BAKU KOSMETIK) COA 784027602K", "output": "38249999"}, {"text_input": "What is the hs code for CEFADROXIL MONOHYDRATE (PURIDROX TM POWDER) BHN BAKU OBAT, COA B334648 ,649,644", "output": "29419000"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180J7B001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J33002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I8Q003", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J5L003", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J4B003", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180J4J001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180J5L003", "output": "39123900"}, {"text_input": "What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219030054", "output": "29420000"}, {"text_input": "What is the hs code for D-PANTHENOL 75L ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01906334", "output": "29362400"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01905011", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01905011", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18120037", "output": "29362600"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01904029", "output": "32041900"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT19020008", "output": "32041900"}, {"text_input": "What is the hs code for CALCIUM ASCORBATE 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00119006", "output": "29362700"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011", "output": "29362900"}, {"text_input": "What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT19020043", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19030046", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19030004", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT19040177", "output": "29362100"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPLEMEN) COA XH20190202", "output": "29362800"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19030021", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010015", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19030014", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519137", "output": "29362900"}, {"text_input": "What is the hs code for CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00519015", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18120037", "output": "29362600"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19030021", "output": "29362400"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT19020008", "output": "32041900"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01902018", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18120037", "output": "29362600"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11190103", "output": "29362500"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90610138", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90610138", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90610138", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ90610138, UQ90710156", "output": "29362300"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00619038", "output": "29362300"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00619038", "output": "29362300"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00619038,WB00619039", "output": "29362300"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100CWS/AM (BHN BAKU SUPLEMEN) COA UT19060021", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT19040177", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT19020008", "output": "32041900"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01904029", "output": "32041900"}, {"text_input": "What is the hs code for CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00519015", "output": "29362700"}, {"text_input": "What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT19020043", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19030014", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010015", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11903011, OP11903019", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT19060021", "output": "29362900"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01904029", "output": "32041900"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01906728", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010015", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519051", "output": "29362200"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1901010", "output": "29362300"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519051", "output": "29362200"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT18120056", "output": "29362100"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ90206035", "output": "29362700"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX BAKU MAKANAN) COA TL01906718", "output": "29362400"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01907732", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01904045", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01904045", "output": "29362400"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01902018", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN PREMIX 103093-A (BHN BAKU MAKANAN) COA XW91908194", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW91908221", "output": "21069059"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01902018", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19050090", "output": "29362900"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01904045", "output": "29362400"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01907732", "output": "29362400"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL01905843", "output": "29362700"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL01906728", "output": "29362400"}, {"text_input": "What is the hs code for ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01902018", "output": "29362700"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01903366", "output": "29362700"}, {"text_input": "What is the hs code for DWI-BI (BHN BAKU MAKANAN) COA XW91908263", "output": "21069059"}, {"text_input": "What is the hs code for ADSORB AFLA (BHN BAKU UNTUK PAKAN TERNAK) COA 124", "output": "25081000"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA MTP22219", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA API HIGH PURITY (1X25KG FREE SAMPLE)NO COMMERCIAL VALUE,COA MTP22219", "output": "28363000"}, {"text_input": "What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00419415", "output": "29362700"}, {"text_input": "What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00419415", "output": "29362700"}, {"text_input": "What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110014", "output": "29420000"}, {"text_input": "What is the hs code for SODIUM ASCORBATE 99PCT TG,20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00419415", "output": "29362700"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19070015", "output": "32030010"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE ,25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ90706164,6165", "output": "29362700"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18120041", "output": "32041900"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19070015", "output": "32030010"}, {"text_input": "What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110014", "output": "29420000"}, {"text_input": "What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19060014", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100(BHN BAKU SUPLEMEN) COA UT19070056", "output": "29362100"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM TYPE T 25 KG (BHN BAKU OBAT) COA C0029", "output": "29331100"}, {"text_input": "What is the hs code for SARBUTAMOL SULFATE BP (BHN BAKU OBAT) COA 029D041", "output": "29051400"}, {"text_input": "What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 070719, 250719", "output": "25070000"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 INF OIL ,4,5KG PJUG (BHN BAKU SUPLEMEN) COA TS00012344", "output": "29362500"}, {"text_input": "What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA. 20190815", "output": "11081200"}, {"text_input": "What is the hs code for GINGSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO190101", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-190805", "output": "38249999"}, {"text_input": "What is the hs code for INCA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK) COA II190608-AI-D-BIO", "output": "38249999"}, {"text_input": "What is the hs code for HORSECHESNUT PHYTELENE EG 042 (BHN BAKU KOSMETIK) COA EG402-190801", "output": "38249999"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA190801", "output": "38249999"}, {"text_input": "What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA VIV1900701-BGBIO", "output": "38249999"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180092 ,SAMPLE NO COMM VALUE", "output": "29420000"}, {"text_input": "What is the hs code for D-RIBOSE (BHN BAKU OBAT) COA ZN190912", "output": "29400000"}, {"text_input": "What is the hs code for SORBITOL SPECIAL TM MDF 85, SORBITOL( BHN BAKU OBAT) COA M19013", "output": "29054400"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM (BHN BAKU OBAT) COA 1905465 S/D 67,1906726, 28", "output": "29331900"}, {"text_input": "What is the hs code for CLOMIPHENE CITRATE USP/EP (BHN BAKU OBAT ) COA 201809290013", "output": "29221990"}, {"text_input": "What is the hs code for GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 19249", "output": "38249999"}, {"text_input": "What is the hs code for LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 19076", "output": "38249999"}, {"text_input": "What is the hs code for LEUCOCYANIDINDS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 19076", "output": "38249999"}, {"text_input": "What is the hs code for DIOSMIN (BHN BAKU OBAT) COA 4003-20190807", "output": "29389000"}, {"text_input": "What is the hs code for CLARITHROMYCIN (BHN BAKU OBAT) COA 128-190417-1", "output": "29415000"}, {"text_input": "What is the hs code for CLAIR BLACHE-II (BHN BAKU KOSMETIK) COA 191100", "output": "38249999"}, {"text_input": "What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 190106", "output": "13021990"}, {"text_input": "What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 182975", "output": "13021990"}, {"text_input": "What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 190728", "output": "13021990"}, {"text_input": "What is the hs code for ROSE HIPS LIQUID B (BHN BAKU KOSMETIK) COA 183099", "output": "13021990"}, {"text_input": "What is the hs code for HYOSCINE BUTYL BROMIDE EP/BP (BHN BAKU OBAT) COA.2520519", "output": "29391900"}, {"text_input": "What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED(BHN BAKU OBAT UTK PAKAN TERNAK) COA. ROA3719", "output": "28363000"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE (BHN BAKU OBAT) COA F-04 1064-190801, F-04,1064-190603", "output": "29372900"}, {"text_input": "What is the hs code for IPRATROPIUM BROMIDE (BHN BAKU OBAT) COA 1950000929", "output": "29397900"}, {"text_input": "What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BJ05707", "output": "29349990"}, {"text_input": "What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW91909076,77", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708190001, 40 S/D 44", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0718110176, 0719070172", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001529534", "output": "29420000"}, {"text_input": "What is the hs code for BEAUPLEX (TM) VH, 5KG BAG ALU (BHN BAKU KOSMETIK) COA UF19020045", "output": "29420000"}, {"text_input": "What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES1901168", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001529534", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MAX, 25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0918110046", "output": "29420000"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT18120077", "output": "32041900"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01904029", "output": "32041900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011", "output": "29362900"}, {"text_input": "What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT19020043", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19030049", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19030004", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519137", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT19040177", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT19050090", "output": "29362900"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPLEMEN) COA XH20190202", "output": "29362800"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OPI1903019", "output": "29362900"}, {"text_input": "What is the hs code for CEFTAZIDIME BUFFERED (BHN BAKU OBAT) COA S100900", "output": "29419000"}, {"text_input": "What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA S702300", "output": "29419000"}, {"text_input": "What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) , COA 909220", "output": "38249999"}, {"text_input": "What is the hs code for KF-6038 (16KG) BHN BAKU KOSMETIK, COA 909220", "output": "38249999"}, {"text_input": "What is the hs code for GENIVIDA (TM) TG ,1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT19060002", "output": "29329990"}, {"text_input": "What is the hs code for GENIVIDA (TM) TG, 1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT19060002", "output": "29329990"}, {"text_input": "What is the hs code for GENIVIDA (TM) TG, 1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT19060002", "output": "29329990"}, {"text_input": "What is the hs code for GENIVIDA (TM) TG, 1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT19060002", "output": "29329990"}, {"text_input": "What is the hs code for VIT. A PALM. 1.0 M + VIT.D3 100'000 (BHN BAKU SUPLEMEN) COA UT19070073", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT19030004", "output": "32041900"}, {"text_input": "What is the hs code for GENIVIDA (TM) TG, 1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT19060002", "output": "29329990"}, {"text_input": "What is the hs code for GENIVIDA (TM) TG, 1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT19060002", "output": "29329990"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18090032", "output": "32041900"}, {"text_input": "What is the hs code for COATED ASCORBIC ACID, TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01908316", "output": "29362700"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19070015", "output": "32030010"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19070056", "output": "29362100"}, {"text_input": "What is the hs code for FERROUS FUMARATE USP/EP (BHN BAKU OBAT) COA.2019/173", "output": "29171900"}, {"text_input": "What is the hs code for CETIRIZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA 18019CZ6RII", "output": "29335990"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20190701, XH20190702", "output": "29362800"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621632", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB MAROON (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620818", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620878", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620585", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620873", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621359", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621358", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620876", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621106", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620817", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620294", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620819", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620869", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620870", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620871", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620935", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621130", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620972", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620970", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620969", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621254", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620968", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620967", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH619248", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620310", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621364", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620422", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620422", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621365", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620307", "output": "39061090"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 22220919, 22230919,22240919, 22260919,22200919", "output": "29359000"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE BP MICRONISED (BHN BAKU OBAT) COA 22200919,22210919,20190819", "output": "29359000"}, {"text_input": "What is the hs code for TRIMETHOPRIM BP MICRONISED (BHN BAKU OBAT) COA TMP19080680,19090685, 19090688", "output": "29335990"}, {"text_input": "What is the hs code for DRUM KOSONG (EMPTY DRUMS) FREE OF COST NO COMMERCIAL VALUE", "output": "48192000"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 22700919,22710919...", "output": "29359000"}, {"text_input": "What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 175450", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE A PELLETS (BAHAN BAKU OBAT) COA 18E2201", "output": "28399000"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN540226", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN540219", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN540229", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN540227", "output": "35051010"}, {"text_input": "What is the hs code for ROSUVASTATIN CALCIUM (BHN BAKU OBAT) COA RVM1970719", "output": "29359000"}, {"text_input": "What is the hs code for ECHINACEA ANG. DRY PURIF.EX (BHN BAKU SUPLEMEN) COA 32767/M1", "output": "13021990"}, {"text_input": "What is the hs code for P.GINGSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 32347/M1", "output": "13021990"}, {"text_input": "What is the hs code for CENTELLA ASIATICA /PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 32811/H1", "output": "38249999"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1903163183", "output": "29372900"}, {"text_input": "What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1907361843", "output": "29362600"}, {"text_input": "What is the hs code for PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0319050802 S/D 804, 807", "output": "29420000"}, {"text_input": "What is the hs code for ARGAN OIL ,10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0025591", "output": "29362500"}, {"text_input": "What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219030054", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0319050807 S/D 809,11", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0819030068", "output": "29420000"}, {"text_input": "What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES1901168", "output": "29420000"}, {"text_input": "What is the hs code for ARGAN OIL ,10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0025591", "output": "29362500"}, {"text_input": "What is the hs code for PARSOL MAX, 25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 091810046", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0418110233", "output": "29420000"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01905011", "output": "29362900"}, {"text_input": "What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0025591", "output": "29362500"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01905011", "output": "29362900"}, {"text_input": "What is the hs code for METHISOPRINOL (BHN BAKU OBAT) COA MTP9050150", "output": "29349990"}, {"text_input": "What is the hs code for ASTAXANTHIN OIL 10PCT (BHN BAKU OBAT) COA 1903231", "output": "32030010"}, {"text_input": "What is the hs code for ASTAXANTHIN WATER-SOLUBLE 1PCT (BHN BAKU OBAT) COA 1904051", "output": "32030010"}, {"text_input": "What is the hs code for CEFADROXIL MONOHYDRATE (PURIDROX TM POWDER) BHN BAKU OBAT, COA B334650,653 S/D 655", "output": "29419000"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA WID", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WG-SIG (BHN BAKU KOSMETIK) COA WBI", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA WGM", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-013159", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK)COA BAG-021879", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK) COA U190917", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA MCP-N-042189", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012239", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK)COA MSEEC-012039", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-011049", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK) COA NMSP-D-023028", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-040479", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK) COA CPG-391069", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND YUZU EXTRACT (BHN BAKU KOSMETIK) COA CJUBD-063059", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK)COA ARP-321249", "output": "38249999"}, {"text_input": "What is the hs code for SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-062928", "output": "38249999"}, {"text_input": "What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 101969012", "output": "28161000"}, {"text_input": "What is the hs code for INSTANT TEA POWDER (TEA EXTRACT) BHN BAKU MAKANAN, COA 909201,909061", "output": "9022010"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 INF OIL ,4,5KG PJUG (BHN BAKU SUPLEMEN) COA TS00012761", "output": "29362500"}, {"text_input": "What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT19030006,07", "output": "29362100"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE,25KG BOX (BHN BAKU MAKANAN) COA TL01908287,8292", "output": "29362700"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01908270,74,79,87", "output": "29362700"}, {"text_input": "What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT19060015", "output": "29362500"}, {"text_input": "What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA 176574", "output": "28399000"}, {"text_input": "What is the hs code for TEFOSE 63 BF (BAHAN BAKU OBAT) COA 176277", "output": "28399000"}, {"text_input": "What is the hs code for TEFOSE 63 BF (BAHAN BAKU OBAT) COA 176334", "output": "28399000"}, {"text_input": "What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN2830919", "output": "29221990"}, {"text_input": "What is the hs code for SK BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK)COA MSEEC-012039", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK)COA HMVBD-011079", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-062928", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND LICORICE EXTRACT (BHN BAKU KOSMETIK) COA GGB-012759", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA MCP-N-042189", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK)COA 061219", "output": "38249999"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA. RBA2661900", "output": "28363000"}, {"text_input": "What is the hs code for CATCOL C 135 (L) GRADE (BAHAN BAKU KOSMETIK) COA 561/19", "output": "38249999"}, {"text_input": "What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP816106", "output": "39059990"}, {"text_input": "What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP814311", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C BLUE #1/BRILLIANT BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP805964", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C BLUE #2/INDIGO CARMINE... (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP815895", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP807309", "output": "32151900"}, {"text_input": "What is the hs code for TRISODIUM CITRATE DIHYDRATE FINE GRANULAR (BHN BAKU MAKANAN), COA UJ927", "output": "29181400"}, {"text_input": "What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA P-64", "output": "29397900"}, {"text_input": "What is the hs code for MEPYRAMINE MALEATE EP (BHN BAKU OBAT) COA SLL/M/0519008", "output": "29333990"}, {"text_input": "What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1909077,78 ,81 S/D 88", "output": "29224900"}, {"text_input": "What is the hs code for NOREPINEPHRINE BITARTRATE/NORADRENALINE TARTRATE (BHN BAKU OBAT) COA 520104", "output": "29379010"}, {"text_input": "What is the hs code for SELVOL ULTALUX FF 25KG BAG (BHN BAKU KOSMETIK) COA D041892672", "output": "38249999"}, {"text_input": "What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 182879", "output": "13021990"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1906203", "output": "38249999"}, {"text_input": "What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829017461K", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 1833811", "output": "38249999"}, {"text_input": "What is the hs code for EPA DHA 44 37 (BHN SUPLEMEN KESEHATAN) COA EE4437-191006", "output": "29061300"}, {"text_input": "What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B02B228M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9072674", "output": "38210090"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY...(BHN BAKU OBAT UTK PEWARNA TABLET)COA IN540058", "output": "35051010"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180J1V001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180H86002", "output": "39123900"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9067559", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9189630", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9217032", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219521", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I AND VI LYO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9157516", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9039992", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8243742", "output": "38210090"}, {"text_input": "What is the hs code for CYCLETEST PLUS DNA REAGENT KIT RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9183628", "output": "38210090"}, {"text_input": "What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9204535", "output": "38210090"}, {"text_input": "What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9196206", "output": "38210090"}, {"text_input": "What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9209956", "output": "38210090"}, {"text_input": "What is the hs code for CS AND T RUO BEADS 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9087502", "output": "38210090"}, {"text_input": "What is the hs code for HU CD36 FITC CB36 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8225528", "output": "38210090"}, {"text_input": "What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9234913", "output": "38210090"}, {"text_input": "What is the hs code for HU CD4 PE-CY7 SK3 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9052626", "output": "38210090"}, {"text_input": "What is the hs code for ANNEXIN V FITC APOP DTEC KIT I 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9154818", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9197077", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219521", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8312963", "output": "38210090"}, {"text_input": "What is the hs code for VIAL E COLI O ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8285871", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9233245", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9017792", "output": "38210090"}, {"text_input": "What is the hs code for VIAL PENICILLINASE 10000000 KU/ML 1EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9219203", "output": "38210090"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9067559", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9197077", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8207980", "output": "38210090"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9067559", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9190271", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9217032", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219521", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I AND VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9157516", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 9039992", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG L AND P80 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9049874", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9039992", "output": "38210090"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9067559", "output": "38210090"}, {"text_input": "What is the hs code for ANTI SHINE WASH (BHN BAKU KOSMETIK) COA 10300077", "output": "38249999"}, {"text_input": "What is the hs code for STARCAP 1500 CO-PROCESSED (BHN BAKU OBAT UTK PEWARNA TABLET) COA IN539505", "output": "35051010"}, {"text_input": "What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 1909EF8413", "output": "29224900"}, {"text_input": "What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA. L105712819", "output": "17021100"}, {"text_input": "What is the hs code for CAPSULAC (R) 60 (BHN BAKU OBAT) COA L100412819", "output": "17021100"}, {"text_input": "What is the hs code for CELLACTOSE (R) 80 (BHN BAKU OBAT) COA L100462819", "output": "17021100"}, {"text_input": "What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103862619", "output": "17021100"}, {"text_input": "What is the hs code for FLOWLAC (R) 100 (BHN BAKU OBAT) COA L101503019", "output": "17021100"}, {"text_input": "What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA. 20190922", "output": "11081200"}, {"text_input": "What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 90238391", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9014523", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9171871", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE STANDARD METHODS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9002994", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239568", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9247271", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9150536", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9206092", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9129700", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9224870", "output": "38210090"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161791", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9084840", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9197721", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9171871", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161683", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9050790", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9168641", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9247271", "output": "38210090"}, {"text_input": "What is the hs code for TUBE CRYSTAL INOCULUM BROTH (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9219398", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9128828", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9107532", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9105960", "output": "38210090"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161791,", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8331811", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9141938", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9085997,9161680", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183841", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9066742", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8317927", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9127592", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8271693", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161608", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9142767", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8255977", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9021613", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9142728", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9148762", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9114508", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9168641", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9213074", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9128557", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE R2A AGAR 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8317859", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161603", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161683", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9170723", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9133762", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8354563", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9050790", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9084661", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142723", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9219806", "output": "38210090"}, {"text_input": "What is the hs code for PANEL VIEWER EUROPE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 457987", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9171871", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 9107576", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161683", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142666", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9021643", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025695", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8354563", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9050790", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084661", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9128557", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9211787", "output": "38210090"}, {"text_input": "What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1907559", "output": "38210090"}, {"text_input": "What is the hs code for TUBE CRYSTAL E/ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9219396", "output": "38210090"}, {"text_input": "What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 92118096", "output": "38210090"}, {"text_input": "What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9150590", "output": "38210090"}, {"text_input": "What is the hs code for VIAL UNIVERSAL VIRAL TRANSPORT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 190908700", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH B01B203M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9128931", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9114508", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9254329", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9142723", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239568", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9206092", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8305630", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MR-VP BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9148534", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 7317688", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9015557", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MR-VP MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297944", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297950", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084697", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTONE GLUCOSE EXT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8331813", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9224889", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9218024", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MICRO ASSAY CULTURE AGAR 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9025933", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8317917", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DICHLORAN ROSE BENGAL CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9142981", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH B01B211M136", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9121641", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ISP MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9189639", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ISP MEDIUM 4 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 8354590", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MARINE BROTH 2216 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9142906", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE YPD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9218049", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ISP MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8337710", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE YEAST NITROGEN BASE W/O AA 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9148839", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9206092", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9142666", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9206092", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH 9254329", "output": "38210090"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 INF OIL ,4,5KG PJUG (BHN BAKU SUPLEMEN) COA TS00012761", "output": "29362500"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLORIMETRIC (BAHAN BAKU SUPLEMEN) COA 19B0048100", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLORIMETRIC (BAHAN BAKU SUPLEMEN) COA 19B0062200", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLORIMETRIC (BAHAN BAKU SUPPLEMEN) COA 19B0062300", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLORIMETRIC (BAHAN BAKU SUPPLEMEN) COA 19B0066200", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLORIMETRIC (BHN BAKU SUPLEMEN) COA 19B0066300", "output": "13021990"}, {"text_input": "What is the hs code for VALERIAN D.H.E>0.8PCT VAL.AC (BHN BAKU SUPLEMEN) COA 19B0016400", "output": "13021990"}, {"text_input": "What is the hs code for SILYMARIN /PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 19B0044300", "output": "38249999"}, {"text_input": "What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 19B00063300", "output": "38249999"}, {"text_input": "What is the hs code for PASSION FLOWER D.H.E.>4PCT (BHN BAKU SUPLEMEN) COA 19B0061200", "output": "13021990"}, {"text_input": "What is the hs code for HAWTHORN DRY EXTRACT>1.8PCT (BHN BAKU SUPLEMEN) COA 10908/M1", "output": "13021990"}, {"text_input": "What is the hs code for VALERIAN D.H.E.>0.8PCT VAL.AC.(BHN BAKU SUPLEMEN) COA 19B0016400", "output": "13021990"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621969", "output": "38249999"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1903163183", "output": "29372900"}, {"text_input": "What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA ND190401", "output": "29372200"}, {"text_input": "What is the hs code for DEXAMETHASONE BP2010/USP42 (BHN BAKU OBAT) COA.NED190802, NED190901", "output": "29372200"}, {"text_input": "What is the hs code for PREDNISONE USP42 (BHN BAKU OBAT) COA NPD190911", "output": "29372100"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA ROA268194", "output": "28363000"}, {"text_input": "What is the hs code for VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19090044", "output": "29362100"}, {"text_input": "What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCTCWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110015", "output": "29420000"}, {"text_input": "What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19080018", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19090044", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19090044", "output": "29362100"}, {"text_input": "What is the hs code for COATED ASCORBIC ACID TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01909612", "output": "29362700"}, {"text_input": "What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCTCWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110015", "output": "29420000"}, {"text_input": "What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110015", "output": "29420000"}, {"text_input": "What is the hs code for VITAMIN B12 1PCT SD (BHN BAKU SUPLEMEN) COA UT18110016", "output": "29362600"}, {"text_input": "What is the hs code for SODIUM ASCORBATE 99PCT TG,20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00419416", "output": "29362700"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19070015", "output": "32030010"}, {"text_input": "What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF, 1KG /ALUF (BHN BAKU SUPLEMEN) COA UE01903011", "output": "32030010"}, {"text_input": "What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19090044", "output": "29362100"}, {"text_input": "What is the hs code for LABRAFAC PG (BHN BAKU OBAT UTK PAKAN TERNAK) COA 176988", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE BM PELLETS (BAHAN BAKU OBAT) COA 19E1401", "output": "28399000"}, {"text_input": "What is the hs code for CARBAZOCHROME SODIUM SULFONATE ORAL G (BHN BAKU OBAT)COA AC90801/90822", "output": "29339990"}, {"text_input": "What is the hs code for NOREPINEPHRINE BITARTRATE ,BHN BAKU OBAT, COA 520104", "output": "29379010"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011J66L01", "output": "39123900"}, {"text_input": "What is the hs code for SODIUM VALPROATE (BAHAN BAKU OBAT) COA.453132", "output": "29159090"}, {"text_input": "What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LCD39419T", "output": "27101990"}, {"text_input": "What is the hs code for AMOXICILLIN SODIUM CRYSTALLINE STERILE (BHN BAKU OBAT) COA 25NHAGB0", "output": "29411019"}, {"text_input": "What is the hs code for NYSTATIN POWDER (BHN BAKU OBAT) COA C114344", "output": "29419000"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 23620919,23630919...", "output": "29359000"}, {"text_input": "What is the hs code for IRBESARTAN (BHN BAKU OBAT) COA C5409-19-002", "output": "29332900"}, {"text_input": "What is the hs code for D-GLUCOSAMINE SULPHATE POTASSIUM (BHN BAKU OBAT) COA XH20191010", "output": "29329990"}, {"text_input": "What is the hs code for OXFENDAZOLE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 60419006", "output": "29242990"}, {"text_input": "What is the hs code for POVIDONE K-30 (BHN BAKU OBAT) COA PK30-190827F13", "output": "39059990"}, {"text_input": "What is the hs code for PREDNISONE (BHN BAKU OBAT) COA K03F20190504, K03F20190505", "output": "29372100"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621474", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621081", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620870", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621465", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621413", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621441", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621467", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH620996", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621441", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621471", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE II PURPLE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621466", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621494", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621495", "output": "39061090"}, {"text_input": "What is the hs code for PHARMABURST (R) C1 (BHN BAKU OBAT) COA.121910088", "output": "21069099"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT GRANULATION ,25KG BOX (BHN BAKU SUPLEMEN) COA WB00319900", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT GRANULATION ,25KG BOX (BHN BAKU SUPLEMEN) COA WB00319901", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT, GRANULATION ,25KGBOX (BHN BAKU SUPLEMEN) COA WB00319900,9901,9902", "output": "29362700"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90410072", "output": "29362300"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB00319902", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB00319902", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01902123", "output": "29362700"}, {"text_input": "What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT19020043", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19030014", "output": "29362900"}, {"text_input": "What is the hs code for D-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20190202", "output": "29362800"}, {"text_input": "What is the hs code for D-PANTHENOL 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01904045", "output": "29362400"}, {"text_input": "What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ90609014,18", "output": "29362300"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519051", "output": "29362200"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519051", "output": "29362200"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01901005", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19030039", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19030014", "output": "29362900"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01902123", "output": "29362700"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL01907738", "output": "29362400"}, {"text_input": "What is the hs code for B-CAROTENE 1PCT CWS/M (BHN BAKU MAKANAN) COA UT19070032", "output": "32041900"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT19050016", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT19060020", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)(BHN BAKU MAKANAN) COA UT19040177", "output": "29362100"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01902123", "output": "29362700"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS(BHN BAKU MAKANAN) COA UE01904029,UE01905038", "output": "32041900"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01906190", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU (BHN BAKU MAKANAN) COA UT19040177", "output": "29362100"}, {"text_input": "What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0005142826", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708190044,53,54", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P9N27QA000", "output": "29420000"}, {"text_input": "What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA S702300", "output": "29419000"}, {"text_input": "What is the hs code for DOXORUBICIN HYDROCHLORIDE EP (BHN BAKU OBAT) COA 0619036011, 061903049", "output": "29419000"}, {"text_input": "What is the hs code for GLICLAZIDE (BHN BAKU OBAT) COA 1940002667", "output": "29359000"}, {"text_input": "What is the hs code for GLICLAZIDE (BHN BAKU OBAT) COA 1940002357", "output": "29359000"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB00119216", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB00319233", "output": "29362100"}, {"text_input": "What is the hs code for ONDANSETRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA 19002OHRII", "output": "29332900"}, {"text_input": "What is the hs code for CLOBETASOL PROPIONATE USP 41 MI (BHN BAKU OBAT) COA APL/01207/H-19", "output": "29372900"}, {"text_input": "What is the hs code for PIROXICAM (BHN BAKU OBAT) COA PRX2019017M", "output": "29349990"}, {"text_input": "What is the hs code for EDIBLE BOVINE GELATINE (BAHAN BAKU OBAT ), COA 5001909474", "output": "35030049"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE,25KG BOX (BHN BAKU MAKANAN) COA TL01910873", "output": "29362700"}, {"text_input": "What is the hs code for THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000030383", "output": "33029000"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9221680", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9235165", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9235171", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9226303", "output": "38210090"}, {"text_input": "What is the hs code for CEFADROXIL MONOHYDRATE (PURIDROX COMPACTED) BHN BAKU OBAT, COA B340119,121,123", "output": "29419000"}, {"text_input": "What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799037025K", "output": "38249999"}, {"text_input": "What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799037191K", "output": "38249999"}, {"text_input": "What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799037364K", "output": "38249999"}, {"text_input": "What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829017461K", "output": "38249999"}, {"text_input": "What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769017504K", "output": "38249999"}, {"text_input": "What is the hs code for EXO-T TM (BHN BAKU KOSMETIK), COA 715017373K", "output": "38249999"}, {"text_input": "What is the hs code for LANACHRYS 2B PF (PRESERVATIVE ) BHN BAKU KOSMETIK, COA 793057327K", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK), COA 1921406", "output": "38249999"}, {"text_input": "What is the hs code for MELANOSTATINE TM 5BG (50PPM) BHN BAKU KOSMETIK, COA 817047448K", "output": "38249999"}, {"text_input": "What is the hs code for MELANOSTATINE TM 5 BG (50PPM) BHN BAKU KOSMETIK, COA 817047558K", "output": "38249999"}, {"text_input": "What is the hs code for NEUTRAZEN TM (BHN BAKU KOSMETIK), COA 828017197K", "output": "38249999"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK), COA 782017161K", "output": "38249999"}, {"text_input": "What is the hs code for MELANOSTATINE TM 5 BG (50PPM) BHN BAKU KOSMETIK, COA 817047558K", "output": "38249999"}, {"text_input": "What is the hs code for PRO-LIPO TM NEO (BHN BAKU KOSMETIK) COA 1921801", "output": "38249999"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9189048", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9189048", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9239884", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9155999", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9189027", "output": "38210090"}, {"text_input": "What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8338681", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239884", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239884", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9239884", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9148976", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9070604", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9070604", "output": "38210090"}, {"text_input": "What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BJ05707", "output": "29349990"}, {"text_input": "What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA C12041UP", "output": "29053200"}, {"text_input": "What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA. 8MT190979", "output": "30032000"}, {"text_input": "What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 190924031", "output": "38249999"}, {"text_input": "What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA DOC2521921", "output": "28363000"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BAHAN BAKU MAKANAN ), COA 20191017", "output": "17029019"}, {"text_input": "What is the hs code for ARGAN OIL, PRESSED CAN,25KG (BHN BAKU OBAT) COA 8005560001", "output": "29362500"}, {"text_input": "What is the hs code for TABCOAT TC WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA659458", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY SGR RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA660763", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA GA660424", "output": "38249999"}, {"text_input": "What is the hs code for CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 20191003", "output": "38249999"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1903143163", "output": "29372900"}, {"text_input": "What is the hs code for GABAPENTIN (USP) (BHN BAKU OBAT) COA CGBU190395, CGBU190398", "output": "29224900"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BAHAN BAKU MAKANAN ), COA 20191019", "output": "17029019"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J71002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180J7N002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J7I001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM CR...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J32001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E5 PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011J6AL01", "output": "39123900"}, {"text_input": "What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-1510719", "output": "29334910"}, {"text_input": "What is the hs code for KETOPROFEN SALE DI LISINA (BHN BAKU OBAT) COA 190324", "output": "29183000"}, {"text_input": "What is the hs code for KETOPROFEN (BHN BAKU OBAT) COA 192026", "output": "29183000"}, {"text_input": "What is the hs code for CEFADROXIL MONOHYDRATE (PURIDROX COMPACTED) BHN BAKU OBAT, COA B334656,B334656,B334660", "output": "29419000"}, {"text_input": "What is the hs code for EUXYL K 720 -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1518553", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 940 10KG KA (BHN BAKU KOSMETIK) COA 1531980", "output": "38249999"}, {"text_input": "What is the hs code for VIT A PALM 1.0M AND VIT D3 100'000 (BHN BAKU MAKANAN) COA UT19080074", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT19090024", "output": "29362100"}, {"text_input": "What is the hs code for SODIUM ASCORBATE 99PCT,20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00419416", "output": "29362700"}, {"text_input": "What is the hs code for RESTYLANE KYSSE 1ML, COA 16912-1,17302-1,17343-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE SB VITAL LIDOCAINE IML ,COA 17244-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE SB VITAL LIGHT LIDOCAINE IML, COA 17132-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE REFYNE 1 ML ,COA 17180-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE DEFYNE 1ML , COA 17294-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE KYSSE 1ML , COA 16912-1", "output": "33049990"}, {"text_input": "What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA.0000068958", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA.0000068959", "output": "29309090"}, {"text_input": "What is the hs code for LEVOFLOXACIN HEMIHYDRATE USP (BHN BAKU OBAT) COA LF19070101", "output": "29349990"}, {"text_input": "What is the hs code for THEOPHYLLINE ANHYDROUS (BAHAN BAKU OBAT) COA 19250,384,,385,394, S/D 398, 401,402,405", "output": "29395900"}, {"text_input": "What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT19080017,18", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT19070876", "output": "29362100"}, {"text_input": "What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT19080017", "output": "29362500"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ90706165,66,68,69", "output": "29362700"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT19050016", "output": "29362100"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90513038", "output": "29362500"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE ,25KG BOX (BHN BAKU MAKANAN) COA TL01909622,1910800,818,824", "output": "29362700"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A, 20KG BA (BHN BAKU MAKANAN) COA WB00719452,63,64", "output": "29362100"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-190906", "output": "38249999"}, {"text_input": "What is the hs code for WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK) COA EG138-190601", "output": "38249999"}, {"text_input": "What is the hs code for WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK) COA EG138-191002", "output": "38249999"}, {"text_input": "What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) , COA 910065", "output": "38249999"}, {"text_input": "What is the hs code for KF-6038 (16KG) BHN BAKU KOSMETIK, COA 90221", "output": "38249999"}, {"text_input": "What is the hs code for KF-6028 (16KG) BHN BAKU KOSMETIK, COA 909220", "output": "38249999"}, {"text_input": "What is the hs code for KF-96A-6CS (16KG) BHN BAKU KOSMETIK, COA 910066,910067", "output": "38249999"}, {"text_input": "What is the hs code for KF-56A (18KG) BHN BAKU KOSMETIK , COA 910742", "output": "38249999"}, {"text_input": "What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 182975", "output": "13021990"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 191630", "output": "13021990"}, {"text_input": "What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 191799", "output": "13021990"}, {"text_input": "What is the hs code for CLAIR BLANCHE II (BHN BAKU KOSMETIK) COA 191495", "output": "38249999"}, {"text_input": "What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 190328", "output": "29329990"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 191630", "output": "13021990"}, {"text_input": "What is the hs code for SODIUM SALICYLATE (TYPE O) USP/EP (BHN BAKU KOSMETIK)COA 1808016", "output": "29182100"}, {"text_input": "What is the hs code for OPALUX MAROON (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT694467", "output": "32151900"}, {"text_input": "What is the hs code for OPASPRAY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT693977", "output": "32151900"}, {"text_input": "What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU OBAT UTK PEWARNA TABLET), COA DT694401", "output": "32151900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J4M001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I5B003", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I5R001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM CR...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I61003", "output": "39123900"}, {"text_input": "What is the hs code for LISINOPRIL DIHYDRATE (BHN BAKU OBAT) COA C5170-19-001", "output": "29339990"}, {"text_input": "What is the hs code for AHCC-PROFESSIONAL-FG (BHN BAKUOBAT) COA 910FM01", "output": "21069099"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621495", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622561", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622560", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621917", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621924", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621925", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621913", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621925", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY KB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621918", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621921", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY 200 PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621888", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621922", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621919", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622847", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621473", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621466", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH621470", "output": "39061090"}, {"text_input": "What is the hs code for VITAMIN A WATER MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19070056", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19090044", "output": "29362100"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT18120041", "output": "32041900"}, {"text_input": "What is the hs code for COATED ASCORBIC ACID TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01909631", "output": "29362700"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19070015", "output": "32030010"}, {"text_input": "What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19080019", "output": "29362500"}, {"text_input": "What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK)COA CHP1191022", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK)COA ARP-870989", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012239", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-062109", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE 1PCT SOLUTION (BHN BAKU KOSMETIK) COA HASC-561409", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK)COA HMVBD-011079,021409", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND BIO-BLACK PEARL POWDER (BHN BAKU KOSMETIK) COA PDEG-022369", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COAOHA-062109", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-011579", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-021409", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 061219", "output": "38249999"}, {"text_input": "What is the hs code for GELATINE (PHARMACEUTICAL BOVINE) (BAHAN BAKU OBAT ), COA 5001907208", "output": "35030049"}, {"text_input": "What is the hs code for P.GINGSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 19S0132200", "output": "13021990"}, {"text_input": "What is the hs code for SODIUM ACETATE ANHYDROUS (BHN BAKU MAKANAN), COA 3073326", "output": "29152910"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED GRADE A) BHN BAKU OBAT, COA. M531601, 1623,1625,...", "output": "29411019"}, {"text_input": "What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9270953", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH B01B204M", "output": "38210090"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA ROA275191", "output": "28363000"}, {"text_input": "What is the hs code for DOCUSATE SODIUM BP (BHN BAKU OBAT) COA DSW9009", "output": "29171900"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9239568", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRILIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025695", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142908", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9128828", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9141938", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9066742,9128852", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9161608", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9168641", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8129682", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9189611", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9128828", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9105960,9211130", "output": "38210090"}, {"text_input": "What is the hs code for PLATE STERILERODAC EMPTY 65X15 MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9199500", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9141938,9183260", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161680", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9128852", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8317927", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9127592", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8297883", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8271693", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161608", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9091912", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8255977", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9021613", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142728", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9212136", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9079951, 9161545", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9128931", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9168641", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8129682", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161934", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9189611", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9196801", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9197721", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9206386", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161603", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9239568", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 9161683", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218059", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 90216434563", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9206092", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9148938", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 91769202", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9025695", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8354563", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9050790", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142908", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9248034", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 9196801", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239568", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9025695", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9179455", "output": "38210090"}, {"text_input": "What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1907559", "output": "38210090"}, {"text_input": "What is the hs code for TUBE CRYSTAL E/ ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9219396", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01B203M", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9248034", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9211356", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9023839", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8317927", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9127592", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161934", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9256266", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9084661", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9211593", "output": "38210090"}, {"text_input": "What is the hs code for PAIL BUFFERED PEPTONE WATER 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9133516", "output": "38210090"}, {"text_input": "What is the hs code for PAIL LAURYL TRYPTOSE BROTH 2KG (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161787", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9039645", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9168709", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9206092", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9198204", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRAIN HEART INFUSION BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8254550", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9128845", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218041", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PURPLE BROTH BASE BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9268130", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MICRO INOCULUM BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 8311696", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE OXGALL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297826", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE CHROMAGAR CANDIDA 500GM (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9134915", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MR-VP MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8297944", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SALICIN 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9197737", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161593", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9231550", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9224889", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GC MEDIUM BASE 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9134926", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT BROTH 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9219600", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8310633", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9267518", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8317917", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH B01B165M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE OF BASEL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9121641", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9128852", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 8331811", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8271693", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9091912", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9079916,...", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9161603", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161683", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) COA 9021643", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8354563", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH B02B241M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9148762", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9128830,9168888", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKIROORGANISME) BATCH 9161545", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161545", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9182087", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PHENYLALANINE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9189619", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161545", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9023839", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9280013", "output": "38210090"}, {"text_input": "What is the hs code for KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9277506", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9023839", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084661", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9156832", "output": "38210090"}, {"text_input": "What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9218933", "output": "38210090"}, {"text_input": "What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9241552", "output": "38210090"}, {"text_input": "What is the hs code for CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9196427", "output": "38210090"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9067559", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9197111,9227076,..", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9217032", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9157516", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9157516", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8312963", "output": "38210090"}, {"text_input": "What is the hs code for VIAL E COLI O ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8285871", "output": "38210090"}, {"text_input": "What is the hs code for VIAL ISOVITALEX ENRICHMENT 10ML 5 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9203982", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9217032", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8219521,...", "output": "38210090"}, {"text_input": "What is the hs code for CD14 APC MPHI9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9196206", "output": "38210090"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9067559", "output": "38210090"}, {"text_input": "What is the hs code for HU CD36 FITC CB38 (NL07) 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8225528", "output": "38210090"}, {"text_input": "What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9196206", "output": "38210090"}, {"text_input": "What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218933", "output": "38210090"}, {"text_input": "What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9246430", "output": "38210090"}, {"text_input": "What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9241552", "output": "38210090"}, {"text_input": "What is the hs code for CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9196427", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9256006", "output": "38210090"}, {"text_input": "What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP Y 1ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9277251", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8207980613", "output": "38210090"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9067559", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9213220", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9256006", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9189630", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9217032", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8219521", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9157516", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9039992", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8243742", "output": "38210090"}, {"text_input": "What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9228683", "output": "38210090"}, {"text_input": "What is the hs code for ANNEXIN V FITC APOP DTEC KIT I 100TST (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9225522", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9239884", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239004", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9241899", "output": "38210090"}, {"text_input": "What is the hs code for POLYPEPTONE PEPTONE EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9184337", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239004", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9148976", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9035505", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9070604", "output": "38210090"}, {"text_input": "What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9122883", "output": "38210090"}, {"text_input": "What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9121860", "output": "38210090"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01902123", "output": "29362700"}, {"text_input": "What is the hs code for PREMIX 504010 (BHN BAKU MAKANAN) COA XW91910074", "output": "21069059"}, {"text_input": "What is the hs code for CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA WB00519015", "output": "29362700"}, {"text_input": "What is the hs code for PX 204005 (BHN BAKU MAKANAN) COA XW91910177", "output": "21069059"}, {"text_input": "What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA S100200", "output": "29419000"}, {"text_input": "What is the hs code for CEFOTAXIME SODIUM STERILE USP (BHN BAKU OBAT) COA S200700", "output": "29419000"}, {"text_input": "What is the hs code for ACYCLOVIR MICRONIZED (BHN BAKU OBAT) COA 19100277", "output": "29335990"}, {"text_input": "What is the hs code for MEFENAMIC ACID POWDER (BHN BAKU OBAT) COA MA1908019 S/D 22, 24 S/D 26, 28 S/D 30", "output": "29224900"}, {"text_input": "What is the hs code for KETAMINE HCL (BHN BAKU OBAT), COA 0123819P", "output": "29223900"}, {"text_input": "What is the hs code for MAGNESIUM OXIDE, LIGHT POWDER BP2019 (BHN BAKU OBAT), COA 1101536-3", "output": "25199010"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA WGM", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA WJE", "output": "38249999"}, {"text_input": "What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA WHE", "output": "38249999"}, {"text_input": "What is the hs code for SILASOMA MFA (S) (BHN BAKU KOSMETIK) COA WJJ", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS HYDROMILK (BHN BAKU KOSMETIK) COA WIJ", "output": "38249999"}, {"text_input": "What is the hs code for INSTANT TEA POWDER (TEA EXTRACT) BHN BAKU MAKANAN, COA 910312", "output": "9022010"}, {"text_input": "What is the hs code for ACYCLOVIR MICRONIZED (BHN BAKU OBAT) COA 19100709", "output": "29335990"}, {"text_input": "What is the hs code for EPA DHA 44 37 (BHN SUPLEMEN KESEHATAN) COA EE4437-191029", "output": "29061300"}, {"text_input": "What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) , COA 909746", "output": "38249999"}, {"text_input": "What is the hs code for KF-6038 (16KG) BHN BAKU KOSMETIK, COA 910221", "output": "38249999"}, {"text_input": "What is the hs code for KF-6038 (16KG) BHN BAKU KOSMETIK, COA 910221", "output": "38249999"}, {"text_input": "What is the hs code for AQUACOAT ECD-30 ETHYLCELLULOSE AQUEOUS... (BHN BAKU OBAT UTK PEWARNA TABLET), COA XN19833521", "output": "39123900"}, {"text_input": "What is the hs code for AQUACOAT ECD-30 ETHYLCELLULOSE AQUEOUS 9BHN BAKU OBAT UTK PEWARNA TABLET) COA XN19833527", "output": "39123900"}, {"text_input": "What is the hs code for GRAPE SEED DRY EXTRACT (BHN BAKU SUPLEMEN) COA 19298", "output": "13021950"}, {"text_input": "What is the hs code for OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622339", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622338", "output": "38249999"}, {"text_input": "What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1951799, 1951800, 19", "output": "29242930"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BAHAN BAKU MAKANAN ), COA 20191023", "output": "17029019"}, {"text_input": "What is the hs code for PROPYPHENAZONE (ST) (BHN BAKU OBAT) COA 1909160,65,68,74,77", "output": "29331100"}, {"text_input": "What is the hs code for LEVOFLOXACIN HEMIHYDRATE (FREE ALKALINE) (BHN BAKU OBAT) COA C008-1906622", "output": "29349990"}, {"text_input": "What is the hs code for SERENOA REPENS PURIFIED EXT (BHN BAKU SUPLEMEN) COA 19S0245600", "output": "38249999"}, {"text_input": "What is the hs code for VACCINIUM MYRTILLUS DRY EX (BHN BAKU SUPLEMEN) COA 19S0321100", "output": "13021950"}, {"text_input": "What is the hs code for METHOTREXATE (BHN BAKU OBAT) COA EP190913", "output": "29335990"}, {"text_input": "What is the hs code for MC-GLUCAN (BHN BAKU KOSMETIK) COA MCGL191025", "output": "39139090"}, {"text_input": "What is the hs code for CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA 1GC01CLB ZP48D 250MT", "output": "38249999"}, {"text_input": "What is the hs code for PHARMACEUTICALS BOVINE GELATINE 200 BLOOM 18 MESH... (BAHAN BAKU OBAT ), COA 50019009420", "output": "29181200"}, {"text_input": "What is the hs code for EDIBLE BOVINE GELATINE 220 BLOOM 20 MESH (BHN BAKU MAKANAN) COA 5001909420", "output": "29181200"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT19080182", "output": "29362100"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE,25KG BOX (BHN BAKU MAKANAN) COA TL01909622,TL01909782", "output": "29362700"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J7D002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180J7J002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J71002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J7I001", "output": "39123900"}, {"text_input": "What is the hs code for MONOPROPYLENE GLYCOL (BHN BAKU KOSMETIK) COA PG(S)191018", "output": "29053200"}, {"text_input": "What is the hs code for LUBRIPHARM (R) SSF NF/EP/JP SODIUM STEARYL FUMARATE(BHN BAKU OBAT) COA 121910218", "output": "28161000"}, {"text_input": "What is the hs code for OPADRY 200 BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622646", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622900", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH623243", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622637", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622609", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622726", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH623086", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622621", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622611", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622636", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622638", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622608", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622619", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622610", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622634", "output": "39061090"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011J66L01", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180J63001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180I8Q003", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J4O002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100 PREMIUM LVCR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180J6O021", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180I8G001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR ... (BHN BAKU OBAT UTK PEWARNA WARNA) COA D180J5L003", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM CR ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180J66001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E15 PREMIUM LV ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011J3CL01", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180J89002", "output": "39123900"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH623542", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH623541", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH623566", "output": "38249999"}, {"text_input": "What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 192024", "output": "38249999"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 191495", "output": "38249999"}, {"text_input": "What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 182975", "output": "13021990"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 191630", "output": "13021990"}, {"text_input": "What is the hs code for ECOFARM BILBERRY LEAF-G (BHN BAKU KOSMETIK) COA 190419", "output": "13021990"}, {"text_input": "What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT19040104", "output": "29362800"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708190055,56", "output": "29420000"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT19040177172", "output": "29362100"}, {"text_input": "What is the hs code for PARSOL ZX (BHN BAKU KOSMETIK) COA 190508012", "output": "29420000"}, {"text_input": "What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0025591", "output": "29362500"}, {"text_input": "What is the hs code for PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0819030049", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MAX, 25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0918110046", "output": "29420000"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ90810196", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN PREMIX 103093-A (BHN BAKU MAKANAN) COA XW91910180", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN MINERAL PREMIX INSTANT DRINK (BHN BAKU MAKANAN) COA XW91910201", "output": "21069059"}, {"text_input": "What is the hs code for ANTIOXIDANT PREMIX FOR GUMMY (BHN BAKU MAKANAN) COA XW91910327", "output": "21069059"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01908359", "output": "29362700"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00518049", "output": "29362200"}, {"text_input": "What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ90609018", "output": "29362300"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT GRANULATION 25KG BOX (BHN BAKU SUPLEMEN) COA WB00419906", "output": "29362700"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90810196", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90810196", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT18120040", "output": "29362600"}, {"text_input": "What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA.MLAH0521019", "output": "29341000"}, {"text_input": "What is the hs code for INSTANT BLACK TEA POWDER THB430 (BHN BAKU MAKANAN) COA 2019102301", "output": "21012020"}, {"text_input": "What is the hs code for SENSIVA SC 50 CN 10KG KA (BHN BAKU KOSMETIK) COA.1539629", "output": "38249999"}, {"text_input": "What is the hs code for ROMAN CHAMOMILLE ORGANIC DISTILLATE 1:1 (SB)(BHN BAKU KOSMETIK)COA ANND191003-BIO", "output": "38249999"}, {"text_input": "What is the hs code for ROSE DAMASCENA ORGANIC DISTILLATE 1:20 (SB) (BHN BAKU KOSMETIK)COA ROSD190915-BIO", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO190101", "output": "38249999"}, {"text_input": "What is the hs code for GINGSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO190101", "output": "38249999"}, {"text_input": "What is the hs code for ARGAN VIRGIN COLD PRESSED DEODORISED ORGANIC OIL... (BHN BAKU KOSMETIK) COA ARHVD191105-SICBIO", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS190201", "output": "38249999"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA191002", "output": "38249999"}, {"text_input": "What is the hs code for ROMAN CHAMOMILLE ORGANIC DISTILLATE 1:1 (SB) (BHN BAKU KOSMETIK) COA ANND191003-BIO", "output": "38249999"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO190102", "output": "38249999"}, {"text_input": "What is the hs code for ETHYL PANTHENOL, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01902801", "output": "29362400"}, {"text_input": "What is the hs code for PROPOLIS BEE EXTRACT (BHN BAKU OBAT) COA 191101", "output": "29304000"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB110919", "output": "39123900"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B210919", "output": "39123900"}, {"text_input": "What is the hs code for GLICLAZIDE (BHN BAKU OBAT) COA 1940002357", "output": "29359000"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA WGM", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA WKF", "output": "38249999"}, {"text_input": "What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA WHE", "output": "38249999"}, {"text_input": "What is the hs code for THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0014517001", "output": "33029000"}, {"text_input": "What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA.0014518004", "output": "33029000"}, {"text_input": "What is the hs code for 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 052319/006049", "output": "38249999"}, {"text_input": "What is the hs code for PLATE TSA WLP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9277143", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9248813", "output": "38210090"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT19090082", "output": "29362800"}, {"text_input": "What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 201900363", "output": "28183000"}, {"text_input": "What is the hs code for EUXYL K 720 -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1540851", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 720 -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1540851", "output": "38249999"}, {"text_input": "What is the hs code for S AND M PHENOXYETHANOL RCH 100ML FL (BHN BAKU KOSMETIK) COA 1536332 ,SAMPLE NO COMM VALUE", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 940 (SAMPLE) 100 ML FL (BHN BAKU KOSMETIK) COA 1500965,SAMPLE NO COMM VALUE", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 900 (SAMPLE) 100 ML FL (BHN BAKU KOSMETIK) COA 1536334, SAMPLE NO COMM VALUE", "output": "38249999"}, {"text_input": "What is the hs code for HYOSCINE BUTYL BROMIDE EP/BP (BHN BAKU OBAT) COA 2520519", "output": "29391900"}, {"text_input": "What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-022019", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK)COA ARP-881089", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-452109", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 061219", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-022019", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-012229", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK) COA NMSP-D-012079", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-021819", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-602979", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA MCP-N-051709", "output": "38249999"}, {"text_input": "What is the hs code for RESTYLANE SB VITAL LIDOCAINE IML ,COA 17244-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE SB VITAL LIGHT LIDOCAINE IML, COA 17132-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE DEFYNE 1 ML ,COA 17399-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE REFYNE 1ML , COA 17292-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE KYSSE 1ML , COA 17343-1", "output": "33049990"}, {"text_input": "What is the hs code for MAGNOLIA BARK EXTRACT (BHN BAKU KOSMETIK) COA MBE05-190706", "output": "38249999"}, {"text_input": "What is the hs code for NATURAL SOURCE MIXED TOCOPHEROLS (BHN BAKU KOSMETIK) COA 190703M001", "output": "29362800"}, {"text_input": "What is the hs code for CEFADROXIL MONOHYDRATE (PURIDROX TM POWDER) BHN BAKU OBAT, COA B334662, 664,666", "output": "29419000"}, {"text_input": "What is the hs code for VALERIAN D.H.E>0.8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 19B0088300", "output": "13021990"}, {"text_input": "What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA 177378", "output": "28399000"}, {"text_input": "What is the hs code for TEFOSE 63 (BHN BAKU OBAT) COA 176440", "output": "28399000"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU OBAT) COA 02/18GAAK", "output": "28399000"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU OBAT) COA 02/18GAAK, SAMPLE NO COMM VALUE", "output": "28399000"}, {"text_input": "What is the hs code for LABRAFAC LIPOPHILE WL 1349 (BHN BAKU OBAT) COA 177185", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE AM PELLETS (BAHAN BAKU OBAT) COA 18E5109", "output": "28399000"}, {"text_input": "What is the hs code for LACTOFIL MOIST (BHN BAKU OBAT) COA Z91080026", "output": "28399000"}, {"text_input": "What is the hs code for NIACINAMIDE USP (BHN BAKU KOSMETIK) COA 19-20/NMD(P)/U/122,123,125,126,127", "output": "29362900"}, {"text_input": "What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH623270", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH623261", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH623240", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH622264", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH623243", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH623241", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH623263", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH623262", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH621458", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH623243", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH622621", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH623242", "output": "38249999"}, {"text_input": "What is the hs code for CLOTRIMAZOLE MICRONIZED (BHN BAKU OBAT ) COA 201910150265", "output": "29332900"}, {"text_input": "What is the hs code for GRINSTED XANTHAN 80 PHARMA GRADE, BHN BAKU OBAT, COA 4453521544", "output": "39139090"}, {"text_input": "What is the hs code for PHARMACEUTICALS BOVINE GELATINE 200/18 ...(BAHAN BAKU OBAT ), COA 5001907208", "output": "35030049"}, {"text_input": "What is the hs code for INSTANT BLACK TEA POWDER TH-B 430 (BHN BAKU MAKANAN) COA 2019111207", "output": "21012020"}, {"text_input": "What is the hs code for INSTANT BLACK TEA POWDER TH-E 1008 (BHN BAKU MAKANAN) COA 2019090203", "output": "21012020"}, {"text_input": "What is the hs code for VIUSID AQUA ORAL SOLUTION @1LTR (PAKAN IKAN BERBENTUK CAIR) COA T-4 06-22,T-5 07-22", "output": "23099090"}, {"text_input": "What is the hs code for VIUSID VET @ 1KG (PAKAN IKAN BERBENTUK CAIR) COA T-2 06-22", "output": "23099090"}, {"text_input": "What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9239004", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239004", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PROTEOSE PEPTONE NO.3 500G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9189727", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9148976", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9070604", "output": "38210090"}, {"text_input": "What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9122883", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239884", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239884", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9239884", "output": "38210090"}, {"text_input": "What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9121860", "output": "38210090"}, {"text_input": "What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9107951", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASAMINO ACIDS EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9105919", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9273225", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTONE 500G EA ( MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9273225", "output": "38210090"}, {"text_input": "What is the hs code for DOBUTAMINE HCL (BHN BAKU OBAT) COA 19100392", "output": "29222900"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE BP (BHN BAKU OBAT), COA ASGP/10/241019, ASGP/11/031119", "output": "29420000"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/08/230819-2,ASG/11/141119,151119,130919", "output": "29420000"}, {"text_input": "What is the hs code for CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/11/081119", "output": "39123100"}, {"text_input": "What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 5566918", "output": "38249999"}, {"text_input": "What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829017461K", "output": "38249999"}, {"text_input": "What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829017654K", "output": "38249999"}, {"text_input": "What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830017310K", "output": "38249999"}, {"text_input": "What is the hs code for GREYVERSE TM (BHN BAKU KOSMETIK), COA 833017324K", "output": "38249999"}, {"text_input": "What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK), COA 1835314", "output": "38249999"}, {"text_input": "What is the hs code for LANACHRYS 2B PF (PRESERVATIVE)BHN BAKU KOSMETIK, COA 793057327K", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK), COA 1921406", "output": "38249999"}, {"text_input": "What is the hs code for SILIGEL TM (BHN BAKU KOSMETIK), COA 1918702", "output": "38249999"}, {"text_input": "What is the hs code for PRO-LIPO TM NEO (BHN BAKU KOSMETIK) COA 1925101", "output": "38249999"}, {"text_input": "What is the hs code for AMBROXOL HYDROCHLORIDE POWDER (BHN BAKU OBAT) COA AHM/19087,AHM/19088", "output": "29221990"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR...(BHN BAKU PEWARNA TABLET)COA D180J75002", "output": "39123900"}, {"text_input": "What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP818101", "output": "39059990"}, {"text_input": "What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU PEWARNA TABLET) COA WP812973", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP812982", "output": "32151900"}, {"text_input": "What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP8143316", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C RED #40/ALLURA RED AC AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP811339", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP807997", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C YELLOW #6/SUNSET YELOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP818229", "output": "32151900"}, {"text_input": "What is the hs code for BILBERRY (V.MYRTILLUS)ET. EX 36PCT (BHN BAKU SUPLEMEN) COA 19S0328502", "output": "13021990"}, {"text_input": "What is the hs code for STARTAB DIRECTLY COMPRESSIBLE STARCH (BHN BAKU PEWARNA TABLET) COA.WP816007", "output": "35051010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9283058", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9290152", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9277140", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9241752", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9231577", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8354563", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9247271", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9247271", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9247271", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9247271", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9231577", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9247271", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9310881", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MARINE BROTH 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9294142", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9316132", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 92800133", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9316132", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9253973", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9256077,...", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9241388", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9269210", "output": "38210090"}, {"text_input": "What is the hs code for KIT PHOENIXAPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9287737", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9219559", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183841", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218804", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9211435", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9114508", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9241879", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9252346", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9168641", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9211356", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9231558", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183841", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MANOLATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9114508", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9256266", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239568", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9252346", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142723", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9254329", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9206092", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9128828", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239282", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161680", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183841", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9218804", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 9128931", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALONATE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9310881", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9168641", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9241879", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9254329", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9206092", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9252365", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9142723", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9256070,...", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9241388", "output": "38210090"}, {"text_input": "What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1911027", "output": "38210090"}, {"text_input": "What is the hs code for TUBE CRYSTAL E/ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9219396", "output": "38210090"}, {"text_input": "What is the hs code for TUBE CRYSTAL INOCULUM BROTH (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9157734", "output": "38210090"}, {"text_input": "What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9241413,415", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M-PA-C AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9295919", "output": "38210090"}, {"text_input": "What is the hs code for VIAL UNIVERSAL VIRAL TRANSPORT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 190908700", "output": "38210090"}, {"text_input": "What is the hs code for BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9213536", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8317927", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9127592", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161934", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9253973", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025695", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9084661", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9256077", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9128828", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239282", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9231558", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161680", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183841", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8317927", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9127592", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8271693,9218804", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161608", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9211435", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9021613", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9211593", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084840", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9142728", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161543", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9128931", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9255013", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 9168641", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161934", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9213074", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9239319", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9231539", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9253973", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DECARBOXCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9241879", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161683", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9021643", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9254329", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9206092", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9252365", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 8354563", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9084661", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9142723", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9142908", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9219559", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9023839", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9084840", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9261868", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) COA 9211356", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9198204", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8206968", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9028828", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE L-ARABINOSE 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9199186", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKIROORGANISME) BATCH 7332727", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9142723", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9273419", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9218024", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9134926", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9219600", "output": "38210090"}, {"text_input": "What is the hs code for GAZPAK EZ STANDARD INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 7308746010", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH B01B260M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9121641", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MYP AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9233393", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9189647", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER LACTOPHENOL COTTON BLUE STAIN (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH B01B219M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9023839", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9050790", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9023839", "output": "38210090"}, {"text_input": "What is the hs code for LYSING BUFFER 10X CONCENTRATE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9137698", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9281171", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9281171", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9281171", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9281171", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 8207980", "output": "38210090"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9067559,92", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9238628", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9249798", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9217032", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9246040", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9157516", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9039992", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9211095", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8207980", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9157516", "output": "38210090"}, {"text_input": "What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9204535", "output": "38210090"}, {"text_input": "What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9196206", "output": "38210090"}, {"text_input": "What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9269991", "output": "38210090"}, {"text_input": "What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9228683,9304226", "output": "38210090"}, {"text_input": "What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218933", "output": "38210090"}, {"text_input": "What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9246430", "output": "38210090"}, {"text_input": "What is the hs code for CD20 APC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9241552", "output": "38210090"}, {"text_input": "What is the hs code for CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9196427", "output": "38210090"}, {"text_input": "What is the hs code for ANTI-HLA-DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9204225", "output": "38210090"}, {"text_input": "What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9228756", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9227178,9227183", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8285857", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTISERUM FACTORS 4&5 GRP B (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8271718", "output": "38210090"}, {"text_input": "What is the hs code for METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/19090537", "output": "29332900"}, {"text_input": "What is the hs code for PHARMACEUTICAL BOVINE GELATINE 200/18 (BAHAN BAKU OBAT ), COA 5001907208", "output": "35030049"}, {"text_input": "What is the hs code for SPIRAMYCIN (BHN BAKU OBAT) COA SP191476", "output": "29419000"}, {"text_input": "What is the hs code for MIRANOL ULTRA C-32 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP909511R,BP911690R", "output": "34029099"}, {"text_input": "What is the hs code for PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0319101541 S/D 548", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0319101548", "output": "29420000"}, {"text_input": "What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000184323,324", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ90910221", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90910220,221", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN MINERAL PREMIX INSTANT DRINK (BHN BAKU MAKANAN) COA XW91911111", "output": "21069059"}, {"text_input": "What is the hs code for PX 103070-C3 (BHN BAKU MAKANAN) COA XW91911091,092", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW91911112", "output": "21069059"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01905038,5039", "output": "32041900"}, {"text_input": "What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B03B164M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GRAM DECOLORIZER 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9269854", "output": "38210090"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET), COA JP514001", "output": "32151900"}, {"text_input": "What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT)COA L105712819, L105714719", "output": "17021100"}, {"text_input": "What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 080419,090419,170519,270319...", "output": "38029090"}, {"text_input": "What is the hs code for L-GLUTAMIC ACID (FCC GRADE) PURITY 99PCT UP (BHN BAKU MAKANAN), COA 1000049875/191120", "output": "29224900"}, {"text_input": "What is the hs code for EUXYL K 100 CN 10KG KA (BHN BAKU KOSMETIK) COA 1536160", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50-CN- 10KG KA (BHN BAKU KOSMETIK) COA 1536004", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 120 -CN-10KG KA (BHN BAKU KOSMETIK) COA 1536749", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 10 -CN-10KG KA (BHN BAKU KOSMETIK) COA 1532992", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 720 -C08- 10 KG KA (BHN BAKU KOSMETIK) COA 1540851", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 100 SAMPLE(S) 100ML FL (BHN BAKU KOSMETIK) COA 1535690, SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 120 100 ML FL (BHN BAKU KOSMETIK) COA 1532897 ,SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 340 100ML FL (BHN BAKU KOSMETIK) COA 1338121, SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 700 SAMPLE 100ML FL (BHN BAKU KOSMETIK) COA 1527936,SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 701 SAMPLE 100 ML FL (BHN BAKU KOSMETIK) COA 1532289 SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 712 SAMPLE 100 ML FL (BHN BAKU KOSMETIK) COA 1536820,SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 830 100 ML FL (BHN BAKU KOSMETIK) COA 1536411 SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 900 (SAMPLE) 100 ML FL (BHN BAKU KOSMETIK) COA 1536334 SAMPLE COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for S&M PHENOXYETHANOL RCH 100 ML FL (BHN BAKU KOSMETIK) COA 1536332, SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA PA 20 SAMPLE(S) 100ML FL (BHN BAKU KOSMETIK) COA 1520205 SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA PA 30 (SAMPLE) 100 ML FL (BHN BAKU KOSMETIK) COA 1340275 SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR (BHN BAKU PEWARNA TABLET)COA D180J88002", "output": "39123900"}, {"text_input": "What is the hs code for LABRAFIL M 1944 CS (BHN BAKU OBAT) COA 177404", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE AM PELLETS (BAHAN BAKU OBAT) COA 18E5109", "output": "28399000"}, {"text_input": "What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) , COA 911141", "output": "38249999"}, {"text_input": "What is the hs code for KF-6038 (16KG) BHN BAKU KOSMETIK, COA 911224", "output": "38249999"}, {"text_input": "What is the hs code for KF-96A-6CS (16KG) BHN BAKU KOSMETIK, COA 910069", "output": "38249999"}, {"text_input": "What is the hs code for BETAHISTINE MESILATE EP (BHN BAKU OBAT) COA EDBHM19004", "output": "29333990"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT... (BHN BAKU OBAT) COA NZ1858", "output": "29372900"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT ...(BHN BAKU OBAT) COA NZ2075", "output": "29372900"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT... (BHN BAKU OBAT) COA NZ2605", "output": "29372900"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT... (BHN BAKU OBAT) COA NZ2606", "output": "29372900"}, {"text_input": "What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA S100300", "output": "29419000"}, {"text_input": "What is the hs code for OPACODE WHITE (BHN BAKU PEWARNA TABLET), COA WP820412", "output": "32151900"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA WKG", "output": "38249999"}, {"text_input": "What is the hs code for ALLOPURINOL USP (BHN BAKU OBAT) COA 19086AY3ARII", "output": "29335990"}, {"text_input": "What is the hs code for IMERCARE DOLCE (BHN BAKU KOSMETIK) COA S227/19", "output": "38029090"}, {"text_input": "What is the hs code for SODIUM ACETATE ANHYDROUS (BHN BAKU MAKANAN) COA 3078124", "output": "29152910"}, {"text_input": "What is the hs code for SELOHVITA C.SODIUM SELENITE MAX.0.99PCT (BHN BAKU OBAT) COA 3068590", "output": "28429010"}, {"text_input": "What is the hs code for CALCIUM ACETATE,POWDER,PURITY ACC TO E263 (BHN BAKU OBAT) COA 3077789", "output": "29152910"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)(BHN BAKU MAKANAN) COA UT19090183", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT19080883,885", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01909048,49", "output": "32041900"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01910882,892,902,909", "output": "29362700"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA339196", "output": "28363000"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BAHAN BAKU MAKANAN ), COA 20191017", "output": "17029019"}, {"text_input": "What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC46719T", "output": "27101990"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU OBAT) COA UJ949", "output": "29181400"}, {"text_input": "What is the hs code for AL HYD WET GEL VAC 20(BHN BAKU OBAT) COA 201900249,201900185", "output": "28183000"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN540567", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN540566", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN540569", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN540568", "output": "35051010"}, {"text_input": "What is the hs code for PREDNISONE (BHN BAKU OBAT) COA 03F20190504 S/D 506", "output": "29372100"}, {"text_input": "What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA1911108,12010,12011,12012,12014 S/D 16,18 S/D 20", "output": "29224900"}, {"text_input": "What is the hs code for NEOMYCIN SULPHATE USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA 201911024,11025", "output": "29419000"}, {"text_input": "What is the hs code for POVIDONE K-30 EX JHNH (BHN BAKU OBAT) COA PK30-190913F11", "output": "39059990"}, {"text_input": "What is the hs code for POVIDONE K-25 (BHN BAKU OBAT) COA PK25-191013F42", "output": "39059990"}, {"text_input": "What is the hs code for FIBRE DRUM, PRICE AND AMOUNT ARE FOR CUSTOM ONLY", "output": "48192000"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BAHAN BAKU MAKANAN ), COA 20191205", "output": "17029019"}, {"text_input": "What is the hs code for FERROUS FUMARATE (BHN BAKU MAKANAN), COA 3077999", "output": "29054300"}, {"text_input": "What is the hs code for ACRYLPOL 980 (20KG) BAHAN BAKU KOSMETIK, COA 11519097, 11519098", "output": "39069099"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0319101549 S/D 54,70,76", "output": "29420000"}, {"text_input": "What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000184499,184582", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL 340 ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219030054", "output": "29420000"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT19040177", "output": "29362100"}, {"text_input": "What is the hs code for STAY-C (R) 50, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UE01901015", "output": "29362700"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT19070206,90239", "output": "29362800"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90613065", "output": "29362500"}, {"text_input": "What is the hs code for CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00519025", "output": "29362700"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01908762", "output": "29362400"}, {"text_input": "What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT19070186", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01901006", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19040077", "output": "29362400"}, {"text_input": "What is the hs code for DL-ALPHA TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT19070186", "output": "29362800"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90702292,96", "output": "29362200"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ90910227", "output": "29362300"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT19090071", "output": "29362800"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01908359", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT19070093", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19070093", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT19080029", "output": "29362100"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01908359", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW91911153", "output": "21069059"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01908761", "output": "29362400"}, {"text_input": "What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT19070186", "output": "29362800"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11904011", "output": "29362900"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ90706162, 6163", "output": "29362700"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01905039", "output": "32041900"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ90303061", "output": "29362200"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01905039,40", "output": "32041900"}, {"text_input": "What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT19070186", "output": "29362800"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ90303061", "output": "29362200"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11190420", "output": "29362500"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011", "output": "29362900"}, {"text_input": "What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT19070186", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19030014", "output": "29362900"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01907976", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT18120040", "output": "29362600"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19030021", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01901006", "output": "29362900"}, {"text_input": "What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01906076", "output": "29362400"}, {"text_input": "What is the hs code for OXYTETRACYCLINE HYDROCHLORIDE (BHN BAKU OBAT) COA 19030767,768,769,770,771,772", "output": "29413000"}, {"text_input": "What is the hs code for THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000032930", "output": "33029000"}, {"text_input": "What is the hs code for BICAR FOOD 0/50 SODIUM BICARBONATE (BHN BAKU OBAT ) COA MTP34519", "output": "28363000"}, {"text_input": "What is the hs code for CEFADROXIL MONOHYDRATE (PURIDROX COMPACTED) BHN BAKU OBAT, COA B340122,126,128", "output": "29419000"}, {"text_input": "What is the hs code for INSTANT BLACK TEA POWDER TH B430 (BHN BAKU MAKANAN) COA 2019102301", "output": "21012020"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA MTP34519", "output": "28363000"}, {"text_input": "What is the hs code for INSTANT TEA POWDER (TEA EXTRACT) BHN BAKU MAKANAN, COA 912072", "output": "9022010"}, {"text_input": "What is the hs code for IMERCARE DOLCE (BHN BAKU KOSMETIK) COA S344/19", "output": "38029090"}, {"text_input": "What is the hs code for IMERCARE 11T (BHN BAKU KOSMETIK) COA S658/19", "output": "38029090"}, {"text_input": "What is the hs code for IMERCARE (R) VELLUTO (BHN BAKU KOSMETIK) COA L41/17", "output": "38029090"}, {"text_input": "What is the hs code for SORBITOL SOLUTION 70PCT CRYSTALLISING (BAHAN BAKU KOSMETIK) COA 1920P434", "output": "29054400"}, {"text_input": "What is the hs code for FERROUS FUMARATE (BHN BAKU MAKANAN), COA 3077999", "output": "29054300"}, {"text_input": "What is the hs code for SODIUM GLYCEROPHOSPHATE CRYST (BHN BAKU OBAT) COA 3073900-2", "output": "29199000"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH623629", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH624306", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH624265", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH623966", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH624280", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH624507", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH625173", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BLACK (BHN BAKU PEWARNA TABLET) COA SH624300", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH624287", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH623974", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH624307", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH624307", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH624284", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH624280", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH624502", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH623677", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH623567", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH623965", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH624010", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH623956", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH623966", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH623831", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH623677", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH623962", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II BLACK (BHN BAKU PEWARNA TABLET) COA SH623961", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE PURPLE (BHN BAKU PEWARNA TABLET) COA SH623964", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH623965", "output": "39061090"}, {"text_input": "What is the hs code for PHARMABURST (R) C1 (BHN BAKU OBAT) COA.121910249", "output": "21069099"}, {"text_input": "What is the hs code for VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 121910045", "output": "28365010"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG191122", "output": "29362700"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 26221119,26411119,...", "output": "29359000"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 27691219", "output": "29359000"}, {"text_input": "What is the hs code for PHARMACEUTICAL BOVINE GELATINE 200/18 (BAHAN BAKU OBAT), COA 5001907208,5001910526", "output": "35030049"}, {"text_input": "What is the hs code for BICAR PHARMA 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA RBA3331900", "output": "28363000"}, {"text_input": "What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 191125181", "output": "38249999"}, {"text_input": "What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453521544", "output": "39139090"}, {"text_input": "What is the hs code for SK BIOLAND GLA-40 (BHN BAKU KOSMETIK)COA GLCP-101819", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK)COA U191129", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012239,020619,", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-070819", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-021409, 032919", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK)COA MCP-N-051709", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND JEJU TANGERINE EXTRACT (BHN BAKU KOSMETIK) COA GTUP-T-011169", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-012239", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 112919", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-012239", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1191224", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK)COA MUP-012239, MUP-021769", "output": "38249999"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20190702", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB19090217", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB19080244", "output": "29362100"}, {"text_input": "What is the hs code for HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 2966585", "output": "33029000"}, {"text_input": "What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT19090091", "output": "29362100"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91013179,UQ91113190", "output": "29362500"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01910873,TL01910919", "output": "29362700"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19110085, UT19120090", "output": "29362800"}, {"text_input": "What is the hs code for D-PANTHENOL 50L, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01910645", "output": "29362400"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT19110086", "output": "29362800"}, {"text_input": "What is the hs code for METOCLOPRAMIDE HYDROCHLORIDE BP (BHN BAKU OBAT) COA M-1912406", "output": "29242990"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19120090", "output": "29362800"}, {"text_input": "What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT19080020", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT19110186", "output": "29362100"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT19050001", "output": "32041900"}, {"text_input": "What is the hs code for COATED ASCORBIC ACID TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL019", "output": "29362700"}, {"text_input": "What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF,1KG (BHN BAKU SUPLEMEN) COA UE01905024", "output": "32030010"}, {"text_input": "What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19080020", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19100046", "output": "29362100"}, {"text_input": "What is the hs code for COATED ASCORBIC ACID, TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01910939", "output": "29362700"}, {"text_input": "What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19080020", "output": "29362500"}, {"text_input": "What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19060003", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19070056", "output": "29362100"}, {"text_input": "What is the hs code for PERFECTAMYL AC (BHN BAKU KOSMETIK)COA K2872801", "output": "39139090"}, {"text_input": "What is the hs code for CEFTAZIDIME BUFFERED (BHN BAKU OBAT) COA S101100", "output": "29419000"}, {"text_input": "What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA S702300", "output": "29419000"}, {"text_input": "What is the hs code for CEFTIZOXIME SODIUM (BHN BAKU OBAT) COA S700200", "output": "29419000"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH623956", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH624515", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH624507", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH624511", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH624170", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH624502", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH624518", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH624501", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH624516", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH625173", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH624508", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II BLUE (BHN BAKU PEWARNA TABLET) COA SH624517", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH624287", "output": "39061090"}, {"text_input": "What is the hs code for METHOCEL E5 PREMIUM LV HYDROXYPROPYL (BHN BAKU PEWARNA TABLET)COA D011J93L01", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E15 PREMIUM LV HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D011J6BL02", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL (BHN BAKU PEWARNA TABLET)COA D011J8DL02", "output": "39123900"}, {"text_input": "What is the hs code for STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN540603", "output": "35051010"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 20 PREMIUM ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D184J1C021", "output": "39123900"}, {"text_input": "What is the hs code for PEG 400 (POLYETHYLENE GLYCOL) BAHAN BAKU KOSMETIK) COA.AKW0008148", "output": "39072010"}, {"text_input": "What is the hs code for DEXAMETHASONE BP2010/USP41 (BHN BAKU OBAT) COA.NED191001,NED190902", "output": "29372200"}, {"text_input": "What is the hs code for SUNFIBER AG (BHN BAKU MAKANAN), COA 907011", "output": "13021950"}, {"text_input": "What is the hs code for DIACEREIN EP (BHN BAKU OBAT) COA DCE/40100619", "output": "29389000"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BAHAN BAKU MAKANAN ), COA 20191205", "output": "17029019"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BAHAN BAKU MAKANAN ), COA 20191219", "output": "17029019"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA WIN", "output": "38249999"}, {"text_input": "What is the hs code for SILASOMA MFA(S) (BHN BAKU KOSMETIK) COA WJJ", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA WKG", "output": "38249999"}, {"text_input": "What is the hs code for AMITOSE HGA (BHN BAKU KOSMETIK) COA WLM", "output": "38249999"}, {"text_input": "What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M.31PCT (BHN BAKU OBAT) COA 101929026", "output": "28161000"}, {"text_input": "What is the hs code for BETAHISTINE MESILATE EP (BHN BAKU OBAT) COA EDBHM19005", "output": "29333990"}, {"text_input": "What is the hs code for IMIDAPRIL HYDROCHLORIDE (BHN BAKU OBAT) COA IPL/0519002, 003,005", "output": "29332900"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED GRADE P) BHN BAKU OBAT,COA M596896", "output": "29411019"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 19031833190", "output": "29372900"}, {"text_input": "What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BJ14407", "output": "29349990"}, {"text_input": "What is the hs code for KETOROLAC TROMETHAMOL/TROMETHAMINE (BHN BAKU OBAT) COA 19100747", "output": "29339990"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU MAKANAN) COA UT19120187", "output": "29362100"}, {"text_input": "What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 192024", "output": "38249999"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 191495", "output": "38249999"}, {"text_input": "What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 192253", "output": "13021990"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 191630", "output": "13021990"}, {"text_input": "What is the hs code for FD AND C BLUE #1/BRILLIANT BLUE (BHN BAKU PEWARNA TABLET) COA WP817550", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU PEWARNA TABLET) COA WP812979", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP807308", "output": "32151900"}, {"text_input": "What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP818103", "output": "39059990"}, {"text_input": "What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP818225", "output": "32151900"}, {"text_input": "What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT(BHN BAKU OBAT UTK PEWARNA TABLET) COA WP814838", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP812973", "output": "32151900"}, {"text_input": "What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP814310", "output": "32151900"}, {"text_input": "What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.19100884", "output": "29391900"}, {"text_input": "What is the hs code for ISONIAZID EP (BHN BAKU OBAT) COA IZ 001 J 19", "output": "29333910"}, {"text_input": "What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 201900368", "output": "28183000"}, {"text_input": "What is the hs code for LORATADINE USP (BHN BAKU ) COA LRHB 9687", "output": "29333990"}, {"text_input": "What is the hs code for SMIZYME PHYTASE 5000U/G GRANULAR (BHN BAKU OBAT UTK PAKAN TERNAK) COA 0123051912", "output": "35079000"}, {"text_input": "What is the hs code for NYSTATIN POWDER ROW (BHN BAKU OBAT) COA C114348, C114371", "output": "29419000"}, {"text_input": "What is the hs code for CEFADROXIL MONOHYDRATE (PURIDROX POWDER) BHN BAKU OBAT, COA B334669,B334671,B334673", "output": "29419000"}, {"text_input": "What is the hs code for EPA DHA 44 37 (BHN SUPLEMEN KESEHATAN) COA EE4437-191202", "output": "29061300"}, {"text_input": "What is the hs code for KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0150819", "output": "29339990"}, {"text_input": "What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) , COA 912142", "output": "38249999"}, {"text_input": "What is the hs code for KF-6038 (16KG) BHN BAKU KOSMETIK, COA 912225", "output": "38249999"}, {"text_input": "What is the hs code for KP-562P (16KG) BHN BAKU KOSMETIK, COA 802008", "output": "38249999"}, {"text_input": "What is the hs code for KP-578 (16KG) BHN BAKU KOSMETIK, COA 807081", "output": "38249999"}, {"text_input": "What is the hs code for KSP-100 (10KG) BHN BAKU KOSMETIK , COA 9111760", "output": "38249999"}, {"text_input": "What is the hs code for KSP-100 (10KG) BHN BAKU KOSMETIK , COA 911760", "output": "38249999"}, {"text_input": "What is the hs code for KF-6028 (16KG) BHN BAKU KOSMETIK, COA 912224,912225,912226", "output": "38249999"}, {"text_input": "What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9309706", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9267765", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9273225", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239007", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9274645", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9035505", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9070604", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9109987", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9267765", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9267765", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9267765", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9308244", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9274645", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA ( MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9109987", "output": "38210090"}, {"text_input": "What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 1912EF3212", "output": "29224900"}, {"text_input": "What is the hs code for AQUACOAT ECD-30 ETHYLCELLULOSE AQUEOUS... (BHN BAKU PEWARNA TABLET), COA XN19833579", "output": "39123900"}, {"text_input": "What is the hs code for AQUACOAT CPD-30 CELLULOSE (BHN BAKU PEWARNA TABLET) COA KN19833680", "output": "39123900"}, {"text_input": "What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9273225", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309706", "output": "38210090"}, {"text_input": "What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9107951", "output": "38210090"}, {"text_input": "What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9107951", "output": "38210090"}, {"text_input": "What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9107951", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9273225", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273225", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309706", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273225", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9309706", "output": "38210090"}, {"text_input": "What is the hs code for OPASPRAY YELLOW (BHN BAKU PEWARNA TABLET), COA DT696561", "output": "32151900"}, {"text_input": "What is the hs code for OPATINT BROWN (BHN BAKU PEWARNA TABLET), COA DT696574", "output": "32151900"}, {"text_input": "What is the hs code for OPACODE BLACK (BHN BAKU PEWARNA TABLET), COA DT696571", "output": "32151900"}, {"text_input": "What is the hs code for OPACODE WHITE (BHN BAKU PEWARNA TABLET) COA DT695391", "output": "32151900"}, {"text_input": "What is the hs code for METRONIDAZOLE BP MICRONISED (BHN BAKU OBAT) COA MTZ/9101863", "output": "29332900"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA360191, ROA360193", "output": "28363000"}, {"text_input": "What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW91911172, XW91911173", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010008", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010008", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010008", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010008", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11905015", "output": "29362900"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT19120094", "output": "29362800"}, {"text_input": "What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0026660", "output": "29362500"}, {"text_input": "What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0026660", "output": "29362500"}, {"text_input": "What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P9P06QA000", "output": "29420000"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT19080182", "output": "29362100"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01905011", "output": "29362900"}, {"text_input": "What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF19020048", "output": "29420000"}, {"text_input": "What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT19070186", "output": "29362800"}, {"text_input": "What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000184582", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708190056,57, 61", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P9P06QA000", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0719060154", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001552129", "output": "29420000"}, {"text_input": "What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000184582, 0000185458", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519090285, 0519090286", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SHIELD ,20KG BOX (BHN BAKU KOSMETIK) COA 0819040084", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0319101676", "output": "29420000"}, {"text_input": "What is the hs code for SAKURA EXTRACT B (BHN BAKU PEWARNA TABLET)COA 191460", "output": "13021990"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY PREGELATINIZED MAIZE STARCH (BHN BAKU PEWARNA TABLET)COA IN540442", "output": "35051010"}, {"text_input": "What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) COA 319CAA0004", "output": "38249999"}, {"text_input": "What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC46819T", "output": "27101990"}, {"text_input": "What is the hs code for PHENYTOIN SODIUM USP (BHN BAKU OBAT) COA ALC/PTS/181212", "output": "29332100"}, {"text_input": "What is the hs code for VC CALCIUM ASCORBATE DC, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPT1912001", "output": "29362700"}, {"text_input": "What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) ,COA 19E0402", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 19E2902", "output": "28399000"}, {"text_input": "What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 101969019", "output": "28161000"}, {"text_input": "What is the hs code for BOTTLE GRAM SAFRANIN 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9296660", "output": "38210090"}, {"text_input": "What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9280085", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01B273M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8207980", "output": "38210090"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9235506", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9254801", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9157516", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9211095", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9254801", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239389", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9157516", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9211095", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9305970", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SUPPLEMENT C 6X5ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9238664", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SUPPLEMENT C 6X5ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9238664", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9254801", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9189630", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8233839", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9211095", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9011569", "output": "38210090"}, {"text_input": "What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9254182", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9315833", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH9295569,9324156", "output": "38210090"}, {"text_input": "What is the hs code for NONIVAMIDE (SYNTHETIC CAPSAICIN)BHN BAKU KOSMETIK, COA.20191031", "output": "29241990"}, {"text_input": "What is the hs code for BOTTLE STANDARD METHODS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9343213", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9337386", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8317927", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9252346", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9291612", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9273651", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9161545", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273402", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9338809", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9252365,9273427", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9084840", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PHENOL RED BROTH BASE BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8310778", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PHENOL RED LACTOSE BR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8311620", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9028828", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025631", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01B291M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8337715", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9316132", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ C02 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9269210", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9241399", "output": "38210090"}, {"text_input": "What is the hs code for TUBE CRYSTAL INOCULUM BROTH (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9157734", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9241399", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161680", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9021613", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9310881", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9206092", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9128828", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239282", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9231558", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8297883", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218804", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161608", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9084840", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9142728", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALONATE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9310881", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161934", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILLIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9239319", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 9241879", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9252346", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9021643", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9206092", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9252365", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9261510", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239628", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9084661", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9318360", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9306763", "output": "38210090"}, {"text_input": "What is the hs code for KIT UNIVERSAL VIRAL TRANSPORT STD SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 191309900", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9128852", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 9211362", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9291612", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9302311", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218538", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218538", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9253973", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183841", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161608", "output": "38210090"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 INF OIL ,4,5KG PJUG (BHN BAKU SUPLEMEN) COA TS00013750", "output": "29362500"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708180093, SAMPLE NO COMMERCIAL VALUE", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL ZX , 0,500KG PAIL (BHN BAKU KOSMETIK) COA 190511012, SAMPLE NO COMMERCIAL VALUE", "output": "29420000"}, {"text_input": "What is the hs code for NIACINAMIDE USP (BHN BAKU KOSMETIK) COA 19-20/NMD(P)/U/146,148,149,150,151", "output": "29362900"}, {"text_input": "What is the hs code for NABUMETONE (BHN BAKU OBAT) COA H-0680619", "output": "29145000"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)(BHN BAKU MAKANAN) COA UT19100184,UT19100185", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT19110815, UT19110186", "output": "29362100"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19120094", "output": "29362800"}, {"text_input": "What is the hs code for MIXED TOCOPHEROL 95 (BHN BAKU MAKANAN) COA XH20190301", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT19110903, UT19110904", "output": "29362100"}, {"text_input": "What is the hs code for METHISOPRINOL (BHN BAKU OBAT) COA MTP9100289", "output": "29349990"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM TYPE T 25 KG (BHN BAKU OBAT) COA B0014", "output": "29331100"}, {"text_input": "What is the hs code for CINNARIZINE (BHN BAKU OBAT) COA CIN1912082", "output": "29335990"}, {"text_input": "What is the hs code for CHOLINE L-BITARTRATE (BAHAN BAKU OBAT) COA.3018788", "output": "29231000"}, {"text_input": "What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 061119", "output": "25070000"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ91006244,UQ91006245", "output": "29362700"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN, COA UT19120094", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT19110904", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT19090012", "output": "29362100"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE,25KG BOX/ALU (BHN BAKU MAKANAN, COA UQ91006241 S/D 6244", "output": "29362700"}, {"text_input": "What is the hs code for TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA P6914", "output": "29225090"}, {"text_input": "What is the hs code for BICAR FOOD 27/50 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA MTP34519", "output": "28363000"}, {"text_input": "What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED (BHN BAKU UTK PAKAN TERNAK) COA ROA0120", "output": "28363000"}, {"text_input": "What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIV190701-BGBIO", "output": "38249999"}, {"text_input": "What is the hs code for OLIVE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA OLE190801", "output": "38249999"}, {"text_input": "What is the hs code for ROSE OILY EXTRACT (BHN BAKU KOSMETIK)COA ROS191104-H", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS191102", "output": "38249999"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO190102", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-191107", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM191201-PGH", "output": "38249999"}, {"text_input": "What is the hs code for RICE MILK AQUEOUS EXTRACT (BHN BAKU KOSMETIK) COA ORS1909R1-AQ", "output": "38249999"}, {"text_input": "What is the hs code for RICA MILK AQUEOUS EXTRACT (BHN BAKU KOSMETIK) COA ORSL191201-AQ", "output": "38249999"}, {"text_input": "What is the hs code for EDIBLE BOVINE GELATINE 140/20 (BAHAN BAKU OBAT), COA 5001912753", "output": "35030049"}, {"text_input": "What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA. 20191227", "output": "17023010"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20191223", "output": "17029019"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH625682", "output": "38249999"}, {"text_input": "What is the hs code for CARBOPLATIN EP (BHN BAKU OBAT) COA 312190010", "output": "28439000"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS (KOSHER-PASSOVER) BHN BAKU MAKANAN, COA UJ952", "output": "29181400"}, {"text_input": "What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9(BHN BAKU OBAT) COA 201900372", "output": "28183000"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR (BHN BAKU PEWARNA TABLET)COA D180JAI001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR (BHN BAKU PEWARNA TABLET) COA D180JAG001", "output": "39123900"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 192339", "output": "38249999"}, {"text_input": "What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT19100092", "output": "29362100"}, {"text_input": "What is the hs code for ROVIMIX E-50 ADSORBATE, 25KG BAG (BHN BAKU UTK PAKAN TERNAK) COA UT19090354, UT19090356", "output": "29362800"}, {"text_input": "What is the hs code for RONOZYME (R)HIPHOS GT, 20KG BAGDK (BHN BAKU UTK PAKAN TERNAK) COA HK920731", "output": "29369000"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT19120042", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT19120042", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT19060025", "output": "29362900"}, {"text_input": "What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT19090231", "output": "29362800"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL01906077", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010008", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19030021", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19060067", "output": "29362800"}, {"text_input": "What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01906077", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19090018", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19030021", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19070094, UT19090096, 97", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19070093,UT19070094", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19070093", "output": "29362900"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT19120094", "output": "29362800"}, {"text_input": "What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ90609018", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ91010246", "output": "29362300"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19090018", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT19070093", "output": "29362900"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB00419906", "output": "29362700"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905011, UE01905017", "output": "29362900"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01911818", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19060067", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT19080182, UT19090183", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01911059", "output": "32041900"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01911059", "output": "32041900"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01909234", "output": "29362800"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ90503125,UQ90603126", "output": "29362200"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP11910006", "output": "29362900"}, {"text_input": "What is the hs code for CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB00519025", "output": "29362700"}, {"text_input": "What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT19090231", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19030004", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11910006", "output": "29362900"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01907990", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01901006", "output": "29362900"}, {"text_input": "What is the hs code for ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01908368", "output": "29362700"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01906076, TL01906077", "output": "29362400"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19030021, UT19030029", "output": "29362400"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1902032", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT19050003", "output": "29362600"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01905017", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL HMS, 25KG PC (BHN BAKU KOSMETIK) COA 0418110248", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL ZX ,20KG (BHN BAKU KOSMETIK) COA 190510012", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708190073,74,75,82", "output": "29420000"}, {"text_input": "What is the hs code for NIACINAMIDE PC ,25KG BOX (BHN BAKU KOSMETIK) COA 0000185459", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219030054", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0319101681,1682,1683,1684", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219030054,55", "output": "29420000"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT19090183", "output": "29362100"}, {"text_input": "What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF19020048", "output": "29420000"}, {"text_input": "What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT19090231", "output": "29362800"}, {"text_input": "What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000185459", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P9P08QA000", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001552129", "output": "29420000"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01905017", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0319101680,0319101681", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708190072", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL ZX, 20KG FIBRE DRUM (BHN BAKU KOSMETIK) COA 190510012", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0319101680", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA0819040084", "output": "29420000"}, {"text_input": "What is the hs code for VITAMIN PREMIX 103093-A (BHN BAKU MAKANAN) COA XW91911201", "output": "21069059"}, {"text_input": "What is the hs code for PRAYPHOS MKP FG (BAHAN BAKU KOSMETIK), COA 19-319-01", "output": "29420000"}, {"text_input": "What is the hs code for CATCOL C 135 (L) GRADE (BAHAN BAKU KOSMETIK) COA 116/20", "output": "38249999"}, {"text_input": "What is the hs code for CLOMIPHENE CITRATE USP/EP (BHN BAKU OBAT ) COA 201911190352", "output": "29221990"}, {"text_input": "What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1907652825", "output": "29362600"}, {"text_input": "What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1907652825", "output": "29362600"}, {"text_input": "What is the hs code for ADIPOFILL'IN TM (BHN BAKU KOSMETIK) COA 1908201", "output": "38249999"}, {"text_input": "What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829017654K", "output": "38249999"}, {"text_input": "What is the hs code for BODY_3 COMPLEX TM (BHN BAKU KOSMETIK) COA B3C010619", "output": "38249999"}, {"text_input": "What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830017750K", "output": "38249999"}, {"text_input": "What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769017504K", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK), COA 785017870K", "output": "38249999"}, {"text_input": "What is the hs code for ECOGEL TM (BHN BAKU KOSMETIK), COA 1919601", "output": "38249999"}, {"text_input": "What is the hs code for EXO-T TM (BHN BAKU KOSMETIK), COA 715017373K", "output": "38249999"}, {"text_input": "What is the hs code for LANACHRYS 2B PF (PRESERVATIVE- BHN BAKU KOSMETIK), COA 793057447K", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK), COA 1924505", "output": "38249999"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK), COA 5627619", "output": "38249999"}, {"text_input": "What is the hs code for NEUTRAZEN TM (BHN BAKU KOSMETIK), COA 828017309K", "output": "38249999"}, {"text_input": "What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) COA 1735916", "output": "38249999"}, {"text_input": "What is the hs code for SWT-7 TM L (BHN BAKU KOSMETIK) COA 1927001", "output": "38249999"}, {"text_input": "What is the hs code for TYROSTAT TM 09 (BHN BAKU KOSMETIK), COA 784017675K", "output": "38249999"}, {"text_input": "What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK), COA 784027671K", "output": "38249999"}, {"text_input": "What is the hs code for KETOPROFEN SALE DI LISINA (BHN BAKU OBAT) COA 187893", "output": "29183000"}, {"text_input": "What is the hs code for D-RIBOSE (BHN BAKU OBAT) COA ZN20200103", "output": "29400000"}, {"text_input": "What is the hs code for LEUCOCYANIDINS PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 19480", "output": "38249999"}, {"text_input": "What is the hs code for PROCATEROL HCL HEMIHYDRATE MICRONIZED (BHN BAKU OBAT) COA 860060719M1", "output": "29337900"}, {"text_input": "What is the hs code for FERROUS FUMARATE USP/EP (BHN BAKU OBAT) COA.2019/243", "output": "29171900"}, {"text_input": "What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 19290051", "output": "30039000"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB111219", "output": "39123900"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B011219, B251219", "output": "39123900"}, {"text_input": "What is the hs code for CORTISONE ACETATE MICRONISED PH.EUR JP (BHN BAKU OBAT) COA 1900985220", "output": "29372900"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 19B0066300", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 19B0112100", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPPLEMEN) COA 19B0112200", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPPLEMEN) COA 19B0112300", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0112400", "output": "13021990"}, {"text_input": "What is the hs code for SILYMARIN /PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 19B0136800", "output": "38249999"}, {"text_input": "What is the hs code for SILIBINA/FOSFOLIPIDI (BHN BAKU SUPLEMEN) COA 19B0063300", "output": "38249999"}, {"text_input": "What is the hs code for SILIBINA/FOSFOLIPIDI (BHN BAKU SUPLEMEN) COA 19B0110200", "output": "38249999"}, {"text_input": "What is the hs code for SILIBINA/FOSFOLIPIDI (BHN BAKU SUPLEMEN) COA 19B0110300", "output": "38249999"}, {"text_input": "What is the hs code for MONENDOX 200 BMP (BHN BAKU UTK PAKAN TERNAK) COA 2001021", "output": "29419000"}, {"text_input": "What is the hs code for AESTHEFILL (POLYLACTIC ACID) ,COA AF191204, SAMPLE NO COMMERCIAL VALUE", "output": "90189090"}, {"text_input": "What is the hs code for AESTHEFILL (POLYLACTIC ACID) ,COA AF191204", "output": "90189090"}, {"text_input": "What is the hs code for DERMOFEEL G 10L (BHN BAKU KOSMETIK) COA LT19500476", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH625622", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH625147", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH625134", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH625157", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH625132", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH624221", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH625135", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH625156", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH625145", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH625572", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH625158", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH625155", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH625144", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH625148", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH625137", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH625136", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH625133", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH625501", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH625501", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH625286", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH625138", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH625140", "output": "38249999"}, {"text_input": "What is the hs code for ECODIAR POWDER (HERACLEOTICUM) BHN BAKU OBAT UTK PAKAN TERNAK, COA P0102012020", "output": "33029000"}, {"text_input": "What is the hs code for ECODIAR LIQUID (HERACLEOTICUM) BHN BAKU OBAT UTK PAKAN TERNAK, COA L0102012020", "output": "33029000"}, {"text_input": "What is the hs code for ACRYLPOL 980 (20KG) BAHAN BAKU KOSMETIK, COA 11519108, 11519117", "output": "39069099"}, {"text_input": "What is the hs code for MICROCELAC(R) 100 (BHN BAKU OBAT) COA L103153919", "output": "17021100"}, {"text_input": "What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104310220", "output": "17021100"}, {"text_input": "What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105715019", "output": "17021100"}, {"text_input": "What is the hs code for FLOWLAC (R) 100 H (BHN BAKU OBAT) COA L105814919", "output": "17021100"}, {"text_input": "What is the hs code for LIPOID PPL-600 (BHN BAKU OBAT) COA. 577200-2190226/007-008 (2)", "output": "29232010"}, {"text_input": "What is the hs code for CEFADROXIL MONOHYDRATE (PURIDROX TM POWDER) BHN BAKU OBAT, COA B334675, B334683, B334684", "output": "29419000"}, {"text_input": "What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/BJ14806", "output": "29349990"}, {"text_input": "What is the hs code for MAGNESIUM L-HYDROGENASPARTATE 2-HYDRATE (BHN BAKU OBAT) COA 3077606", "output": "29224900"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN540750", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN540755", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN540752", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN540751", "output": "35051010"}, {"text_input": "What is the hs code for FEF CETRIMIDE PH EUR (BHN BAKU KOSMETIK) COA JX0C539", "output": "38249999"}, {"text_input": "What is the hs code for CETRIMIDE EP (BHN BAKU KOSMETIK) COA JX0C448", "output": "38249999"}, {"text_input": "What is the hs code for COATED ASCORBIC ACID TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01910962", "output": "29362700"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19070015", "output": "32030010"}, {"text_input": "What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19080021", "output": "29362500"}, {"text_input": "What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19060003", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19020057", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A + D3 WATER MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19120057", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19120057", "output": "29362100"}, {"text_input": "What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT19080021", "output": "29362500"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT19050001", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19100046", "output": "29362100"}, {"text_input": "What is the hs code for SENTRY POLYOX WSR 303 LEO NF (DOW) (BHN BAKU PEWARNA TABLET), COA D682J4QRR5", "output": "39123900"}, {"text_input": "What is the hs code for SENTRY POLYOX WSR 1105 LEO NF (DOW) BHN BAKU PEWARNA TABLET, COA D682I6RRD4", "output": "39123900"}, {"text_input": "What is the hs code for SENTRY POLYOX WSR N750 LEO NF (DOW) BHN BAKU UTK PEWARNA TABLET, COA D682I97RJ4", "output": "39123900"}, {"text_input": "What is the hs code for SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 1907762068, 1907923985", "output": "29322090"}, {"text_input": "What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1907652825", "output": "29362600"}, {"text_input": "What is the hs code for CYANOCOBALAMINE VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1907662827", "output": "29362600"}, {"text_input": "What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 19100882", "output": "29395900"}, {"text_input": "What is the hs code for HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2510719", "output": "29391900"}, {"text_input": "What is the hs code for MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HG30906, HG30693", "output": "34029099"}, {"text_input": "What is the hs code for CARBOPLATIN EP (BHN BAKU OBAT) COA 360190010, 404190010", "output": "28439000"}, {"text_input": "What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA S100400", "output": "29419000"}, {"text_input": "What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA S100400", "output": "29419000"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D011J8DL02", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180J8O001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM CR ...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J63001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM CR...(BHN BAKU OBAT UTK PEWARNA TABLET)COA D180J9A002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E15 PREMIUM LV... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D011J6BL02", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM ... (BHN BAKU OBAT UTK PEWARNA TABLET) COA D180JAJ002", "output": "39123900"}, {"text_input": "What is the hs code for CARBAZOCHROME SODIUM SULFONATE ORAL G (BHN BAKU OBAT)COA AC90801/90822", "output": "29339990"}, {"text_input": "What is the hs code for SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA.", "output": "38249999"}, {"text_input": "What is the hs code for KF-6038 (16KG) BHN BAKU KOSMETIK, COA 911226", "output": "38249999"}, {"text_input": "What is the hs code for KF-96A-6CS (16KG) BHN BAKU KOSMETIK, COA 910071", "output": "38249999"}, {"text_input": "What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 702017846K", "output": "38249999"}, {"text_input": "What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 1735914", "output": "38249999"}, {"text_input": "What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829017654K", "output": "38249999"}, {"text_input": "What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829017654K", "output": "38249999"}, {"text_input": "What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830017814K", "output": "38249999"}, {"text_input": "What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK), COA 769017736K", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK), COA 785017960K", "output": "38249999"}, {"text_input": "What is the hs code for GREYVERSE TM (BHN BAKU KOSMETIK), COA 833017324K", "output": "38249999"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK), COA 5624919", "output": "38249999"}, {"text_input": "What is the hs code for NEUTRAZEN TM (BHN BAKU KOSMETIK), COA 828017668K", "output": "38249999"}, {"text_input": "What is the hs code for PRO-LIPO TM NEO (BHN BAKU KOSMETIK), COA 1934801", "output": "38249999"}, {"text_input": "What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK), COA 784027671K", "output": "38249999"}, {"text_input": "What is the hs code for MELANOSTATINE TM 5PS (50PPM) (BHN BAKU KOSMETIK) COA 817016912J", "output": "38249999"}, {"text_input": "What is the hs code for MELANOSTATINE TM 5PS (50PPM) (BHN BAKU KOSMETIK) COA 817017459K", "output": "38249999"}, {"text_input": "What is the hs code for MELANOSTATINE TM 5PS (50PPM) (BHN BAKU KOSMETIK), COA 817017459K", "output": "38249999"}, {"text_input": "What is the hs code for MELANOSTATINE TM 5PS (50PPM) (BHN BAKU KOSMETIK), COA 817017459K", "output": "38249999"}, {"text_input": "What is the hs code for ONDANSETRON HCL USP (BHN BAKU OBAT) COA 19OS001", "output": "29332900"}, {"text_input": "What is the hs code for AMBROXOL HYDROCHLORIDE POWDER (BHN BAKU OBAT) COA AHM/20001", "output": "29221990"}, {"text_input": "What is the hs code for MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HG30584", "output": "34029099"}, {"text_input": "What is the hs code for ACNE BUSTERS (BHN BAKU KOSMETIK) COA 192024", "output": "38249999"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 192773", "output": "38249999"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 192233", "output": "13021990"}, {"text_input": "What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA190328", "output": "29329990"}, {"text_input": "What is the hs code for PHYTO COLLAGE B (N) BHN BAKU KOSMETIK, COA 192085", "output": "13021990"}, {"text_input": "What is the hs code for DERMAVEIL (BHN BAKU KOSMETIK) COA 192228", "output": "13021990"}, {"text_input": "What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT19090231", "output": "29362800"}, {"text_input": "What is the hs code for NIACINAMIDE PC , 25KG BOX (BHN BAKU KOSMETIK) COA 0000185972", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0719070172", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519100287,295", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA 0519010008,0519010014", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P9P08QA000, P9Q29QA000", "output": "29420000"}, {"text_input": "What is the hs code for STAY-C(R) 50, 5KG BAG ALU (BHN BAKU KOSMETIK) COA CS18060031", "output": "29362700"}, {"text_input": "What is the hs code for PARSOL HMS, 25KG PC (BHN BAKU KOSMETIK) COA 0418110248", "output": "29420000"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED GRADE P) BHN BAKU OBAT,COA M596895, M596941", "output": "29411019"}, {"text_input": "What is the hs code for CLEANBIO TM-ZINC PROTECT CL0024-K18(BHN BAKU KOSMETIK) COA 19ZDP", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK)COA CHP1200116", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK)COA MUP-021769", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-651329", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 012020", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-602979", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK)COA BAG-021879, BAG-030529", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA MCP-N-060929", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-020619, GSC-K-010210", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-053009", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND GREEN TEA SEED OIL (BHN BAKU KOSMETIK) COA CSSO-031459", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-041229", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND LICORICE EXTRACT (BHN BAKU KOSMETIK)COA GGB-012759", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) COA MSEEC-022219", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) COA MSEEC-022219", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK) COA NMSP-D-013010", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-062109", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-021819", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-032919, HMVBD-043029", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND CARBAMIDE (BHN BAKU KOSMETIK) COA U200120, SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT)COA L105715019", "output": "17021100"}, {"text_input": "What is the hs code for METHOCEL E4M PREMIUM HYDROXYPROPYL METHYLCELLULOSE (BHN BAKU PEWARNA TABLET)COA D180IBM011", "output": "39123900"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01909558", "output": "29362700"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT19050001", "output": "32041900"}, {"text_input": "What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19060003", "output": "32041900"}, {"text_input": "What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF,1KG ALUF (BHN BAKU SUPLEMEN) COA UE01905024", "output": "32030010"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT19090024, UT19100025", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT19100092", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT19100025", "output": "29362100"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01909592", "output": "29362700"}, {"text_input": "What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT19090012", "output": "29362100"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01909592", "output": "29362700"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20190702", "output": "29362800"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL01910914", "output": "29362700"}, {"text_input": "What is the hs code for DL-PANTHENOL 50L, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01911650", "output": "29362400"}, {"text_input": "What is the hs code for DL-PANTHENOL 50L, 1000KG IBC (BHN BAKU KOSMETIK) COA TL01911649", "output": "29362400"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM (BHN BAKU OBAT) COA 19121328,19121330,19121327", "output": "29331900"}, {"text_input": "What is the hs code for CORTISONE ACETATE MICRONISED PH.EUR JP (BHN BAKU OBAT) COA 1900971988", "output": "29372900"}, {"text_input": "What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA 20200108", "output": "11081200"}, {"text_input": "What is the hs code for BILBERRY (V.MYRTILLUS)ET.EX 36PCT (BHN BAKU SUPLEMEN) COA 19S0328502", "output": "13021990"}, {"text_input": "What is the hs code for CURCUMA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 19S0360203", "output": "38249999"}, {"text_input": "What is the hs code for GREEN TEA DRY DEC.EX/PHOSPHOL (BHN BAKU SUPLEMEN) COA 19S0269701", "output": "38249999"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 FOOD OIL ,4,5KG PJUG (BHN BAKU MAKANAN) COA TS00013977", "output": "29362500"}, {"text_input": "What is the hs code for PRAYPHOS MKP FG 25K BG (BHN BAKU KOSMETIK) COA 1931901", "output": "29420000"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A,20KG BA(BHN BAKU MAKANAN) COA WB19100467,469,470", "output": "29362100"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO190101", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO190101", "output": "38249999"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO190102", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK)COA EG543-191107", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) COA EG543-200101", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-200101", "output": "38249999"}, {"text_input": "What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-190404-GS", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS191102", "output": "38249999"}, {"text_input": "What is the hs code for HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIE191102", "output": "38249999"}, {"text_input": "What is the hs code for JOB'S TEARS HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA COL200101-B", "output": "38249999"}, {"text_input": "What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) COA OLVH200101-ENBIO", "output": "38249999"}, {"text_input": "What is the hs code for SAFFRON FLOWER HYDROGLYCERINED EXTRACT 80 (BHN BAKU KOSMETIK) COA CRS190502-GL80", "output": "38249999"}, {"text_input": "What is the hs code for SEABUCKTHORN HYDROGLYCOLIC EXTRACT (BHN BAKU OBAT) COA HIR200101-B", "output": "38249999"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA200101", "output": "38249999"}, {"text_input": "What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA VIV190701-BGBIO", "output": "38249999"}, {"text_input": "What is the hs code for CLOMIPHENE CITRATE USP/EP (BHN BAKU OBAT ) COA 201911190352", "output": "29221990"}, {"text_input": "What is the hs code for 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 052319/006049", "output": "38249999"}, {"text_input": "What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219030055, 30056, 40084", "output": "29420000"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ90913150", "output": "29362500"}, {"text_input": "What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000185972", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0319111747, 749 S/D 752", "output": "29420000"}, {"text_input": "What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00605068, VE00605069", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708190083", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519100295", "output": "29420000"}, {"text_input": "What is the hs code for OPACODE WHITE (BHN BAKU PEWARNA TABLET), COA WP822726", "output": "32151900"}, {"text_input": "What is the hs code for MC-GLUCAN (BHN BAKU KOSMETIK) COA MCGL191211", "output": "39139090"}, {"text_input": "What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC 026-19-801", "output": "17021100"}, {"text_input": "What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC 026-19-801", "output": "17021100"}, {"text_input": "What is the hs code for SODIUM SELENITE IN CARRIER, SODIUM SELENITE 0.85PCT-0.99PCT... (BHN BAKU OBAT) COA 3073760", "output": "28429010"}, {"text_input": "What is the hs code for SODIUM SELENITE MAX 0.99PCT IN CALCIUM CARBONATE (BHN BAKU OBAT) COA 3066563", "output": "28429010"}, {"text_input": "What is the hs code for CALCIUM STEARATE POWDER, PH EUR.10.ED.,VEGETABLE (BHN BAKU OBAT) COA 3079064", "output": "38249999"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1903044380", "output": "29372900"}, {"text_input": "What is the hs code for SENSIVA SC 50 CN 10KG KA (BHN BAKU KOSMETIK) COA.1540601", "output": "38249999"}, {"text_input": "What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0036849", "output": "38249999"}, {"text_input": "What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9337057", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9337057", "output": "38210090"}, {"text_input": "What is the hs code for DIFCO BEEF EXTRACT 500G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9253766", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9281428", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9109987", "output": "38210090"}, {"text_input": "What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9122883", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9267765", "output": "38210090"}, {"text_input": "What is the hs code for PEPTONE STARTER PAK NO.3(MEDIA U/ PENGEMBANGKAN MIKRO ORGANISME)BATCH 191029008,SAMPLE NO COMM", "output": "38210090"}, {"text_input": "What is the hs code for PREDNISONE USP42 (BHN BAKU OBAT) COA NPD190911, NPD191117", "output": "29372100"}, {"text_input": "What is the hs code for ISDN 25PCT-LACTOSE 450 75PCT DILUTED (BHN BAKU OBAT) COA 2000058", "output": "29329990"}, {"text_input": "What is the hs code for PANTOPRAZOLE SODIUM (STERILE) BHN BAKU OBAT, COA SI/PPZ/01001219", "output": "29333990"}, {"text_input": "What is the hs code for OXOMEMAZINE BASE (BHN BAKU OBAT) COA HXBCPN006", "output": "29343000"}, {"text_input": "What is the hs code for THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000035604", "output": "33029000"}, {"text_input": "What is the hs code for PLAISANCE P116808 (BHN BAKU KOSMETIK) COA.0000035606", "output": "33029000"}, {"text_input": "What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA 0000035607", "output": "33029000"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB19090218", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB19110253", "output": "29362100"}, {"text_input": "What is the hs code for BOTTLE GRAM DECOLORIZER 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9352509", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE COOKED MEAT MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0014169", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9219559", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9211356", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9256266", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9231272", "output": "38210090"}, {"text_input": "What is the hs code for PANEL VIEWER EUROPE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 457987", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9219559", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9211356", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9266117", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BISTMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183841", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218604", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9127592", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D-SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9218804", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9211435", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9142767", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273651", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9323677", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161545", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9255013", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7312565", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9168541", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239367", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273397", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9241879", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9211365", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9254329", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9148938", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9231272", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9261510", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239628", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142723", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9253973", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9219559", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9266117", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8183841", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218604", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9273651", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9323677", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161545", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9168641", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 9239568", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9231272", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9261510, 9353100", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239628", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9142723", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218604", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9219559", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9211356", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239282,9294153", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218538", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9291612", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161680", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8183841", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218604", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 9218804", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161608", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9211435", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142767", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9273651", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9021613", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9323677", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9142728", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161545", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9273402", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9255013", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9310881", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9168641, ...", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161934", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9273621", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9239379", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9273397", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9253973,9315219", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9211365", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9211365", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9206092", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9324109", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9252365", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9231272", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9353100", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239628", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 9084661", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9142723", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9295486", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9288895,899", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161680", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8183841", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9142728", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9252365", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9239628", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9142908", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9353100", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE COOKED MEAT MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0014169", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 9364954", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9295571", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9291612", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9202311", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PEPSIN 1 TO 10000 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9025890", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POLYSORBATE 80 100G 1 EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9289195", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GRAM CRYSTAL VIOLET 250ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9296589", "output": "38210090"}, {"text_input": "What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9301915", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) COA 9353100", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9198204", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRAIN HEART INFUSION BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9197613", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALT EXTRACT BROTH 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9295576", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PHOSPHATE BUFFER PH 7.2 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9302927", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKIROORGANISME) BATCH 9302976", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9337678", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9175490", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEMOGLOBIN FREEZE DRIED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9324009", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DULCITOL 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8337666", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MR-VP MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9354355", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9273419", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9219600", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE PHOSPHATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9364944", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH B018345M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9206582", "output": "38210090"}, {"text_input": "What is the hs code for MOMETASONE FUROATE MICRONIZED (BHN BAKU OBAT) COA NZ3259M", "output": "29372200"}, {"text_input": "What is the hs code for HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 2998491", "output": "33029000"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH626259", "output": "38249999"}, {"text_input": "What is the hs code for MAGNESIUM CHLORIDE 6-HYDRATE,CRYST (BHN BAKU KOSMETIK) COA 3066587", "output": "28273100"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 14 PREMIUM (BHN BAKU PEWARNA TABLET), COA D184J24021", "output": "39123900"}, {"text_input": "What is the hs code for LEMON SECRET (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 03/19GL4", "output": "28399000"}, {"text_input": "What is the hs code for GELUCIRE 48/16 (BHN BAKU OBAT) COA 178335", "output": "28399000"}, {"text_input": "What is the hs code for GELUCIRE 44/14 (BAHAN BAKU OBAT) COA 177696", "output": "28399000"}, {"text_input": "What is the hs code for GELUCIRE 44/14 (BAHAN BAKU OBAT) COA 178289", "output": "28399000"}, {"text_input": "What is the hs code for TEFOSE 63 (BHN BAKU OBAT) COA 177721", "output": "28399000"}, {"text_input": "What is the hs code for TEFOSE 63 (BAHAN BAKU OBAT) COA 178126", "output": "28399000"}, {"text_input": "What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ91007012", "output": "29420000"}, {"text_input": "What is the hs code for ARGAN VIRGIN COLD PRESSED DEODORISED ORGANIC OIL (BHN BAKU KOSMETIK)COA ARHVD191106-SICBIO", "output": "38249999"}, {"text_input": "What is the hs code for ROSA DAMASCENA ORGANIC DISTILLATE 1:20 (BHN BAKU KOSMETIK)COA ROSD190916-BIO", "output": "38249999"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA200101", "output": "38249999"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO190102", "output": "38249999"}, {"text_input": "What is the hs code for PANTOPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT, COA APSS19004", "output": "29333990"}, {"text_input": "What is the hs code for BOTTLE B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9337189", "output": "38210090"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9235506", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9256006", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9337905", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239389", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9246040", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9284311", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH9211095,9287860", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9284311", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8207980", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9136505,...", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9238630", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9189630", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9284311", "output": "38210090"}, {"text_input": "What is the hs code for CD19 PE SJ25C1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9268832", "output": "38210090"}, {"text_input": "What is the hs code for CD14 APC MPHIP9 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9338928", "output": "38210090"}, {"text_input": "What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9269991", "output": "38210090"}, {"text_input": "What is the hs code for CD5 APC L17F12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9304226", "output": "38210090"}, {"text_input": "What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9241769,9339955", "output": "38210090"}, {"text_input": "What is the hs code for CD10 FITC HI10A 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9274649,9354096", "output": "38210090"}, {"text_input": "What is the hs code for CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9274670", "output": "38210090"}, {"text_input": "What is the hs code for ANTI-HLA-DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9322195", "output": "38210090"}, {"text_input": "What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9310704", "output": "38210090"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9235506", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239389", "output": "38210090"}, {"text_input": "What is the hs code for VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9283338", "output": "38210090"}, {"text_input": "What is the hs code for NYSTATIN POWDER ROW (BHN BAKU OBAT) COA C114373", "output": "29419000"}, {"text_input": "What is the hs code for NYSTATIN MICRONIZED ROW (BHN BAKU OBAT) COA C131305", "output": "29419000"}, {"text_input": "What is the hs code for P.GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 19S0132200", "output": "13021990"}, {"text_input": "What is the hs code for P.GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 19S0132200", "output": "13021990"}, {"text_input": "What is the hs code for BILBERRY (V.MYRTILLUS)ET.EX 36PCT (BHN BAKU SUPLEMEN) COA 19S0328502", "output": "13021990"}, {"text_input": "What is the hs code for LECIGEL TM - 5KG (BHN BAKU KOSMETIK) COA 1924506", "output": "38249999"}, {"text_input": "What is the hs code for ECOGEL TM - 5KG (BHN BAKU KOSMETIK) COA 1934502", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM - 20KG (BHN BAKU KOSMETIK) COA 1933601", "output": "38249999"}, {"text_input": "What is the hs code for PHYTENSO TM - 5KG (BHN BAKU KOSMETIK) COA 1805516", "output": "38249999"}, {"text_input": "What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-1950919", "output": "29334910"}, {"text_input": "What is the hs code for INSTANT TEA POWDER (TEA EXTRACT) BHN BAKU MAKANAN, COA 912282", "output": "9022010"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM (BHN BAKU OBAT UTK PAKAN TERNAK) COA 1905466", "output": "29331900"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8207980", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9254142", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9256006", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9337905", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9189630", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9239389", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9284311", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH0007091", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9284311", "output": "38210090"}, {"text_input": "What is the hs code for TUBE PENASE CONCENTRATE 10X20ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9324994", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9018746", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 8285857", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364015", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239389", "output": "38210090"}, {"text_input": "What is the hs code for CS&T RUO BEADS 50 TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0009800", "output": "38210090"}, {"text_input": "What is the hs code for CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0051017", "output": "38210090"}, {"text_input": "What is the hs code for ERYTHROMYCIN ETHYL SUCCINATE BP (BHN BAKU OBAT) COA EES 067 A 20", "output": "29415000"}, {"text_input": "What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 20100080, 20100083", "output": "29395900"}, {"text_input": "What is the hs code for CETIRIZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA 19002CZ6BI", "output": "29335990"}, {"text_input": "What is the hs code for LIDOCAINE BASE (BHN BAKU OBAT) COA. 190562", "output": "29242990"}, {"text_input": "What is the hs code for LIDOCAINE HCL (BHN BAKU OBAT) COA 191827", "output": "29242990"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX POWDER) BHN BAKU OBAT, COA M484429", "output": "29411019"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED GRADE A) ,BHN BAKU OBAT, COA M532003,M532004", "output": "29411019"}, {"text_input": "What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) , COA 001228", "output": "38249999"}, {"text_input": "What is the hs code for KF-6017 (17KG) BHN BAKU KOSMETIK, COA 912143", "output": "38249999"}, {"text_input": "What is the hs code for KF-96A-6CS (16KG) BHN BAKU KOSMETIK, COA 910074", "output": "38249999"}, {"text_input": "What is the hs code for KSG-210 (16KG) BHN BAKU KOSMETIK, COA 002338", "output": "38249999"}, {"text_input": "What is the hs code for KSP-100 (10KG) BHN BAKU KOSMETIK , COA 911763", "output": "38249999"}, {"text_input": "What is the hs code for KP-562P (16KG) BHN BAKU KOSMETIK , COA 802008", "output": "38249999"}, {"text_input": "What is the hs code for KP-578 (16KG) BHN BAKU KOSMETIK, COA 912082", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA WIN", "output": "38249999"}, {"text_input": "What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA WIF", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA FAJ", "output": "38249999"}, {"text_input": "What is the hs code for TABCOAT TC WHITE (BHN BAKU PEWARNA TABLET) COA GA666098", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY ORANGE (BHN BAKU PEWARNA TABLET) COA GA666096", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA GA666097", "output": "38249999"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200121", "output": "17029019"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200107", "output": "17029019"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200103", "output": "17029019"}, {"text_input": "What is the hs code for DICLOFENAC POTASSIUM BP 2020 (BHN BAKU OBAT) COA DFK/10010003", "output": "29224900"}, {"text_input": "What is the hs code for DICLOFENAC SODIUM USP 42 (BHN BAKU OBAT) COA DFS/10010023", "output": "29224900"}, {"text_input": "What is the hs code for DICLOFENAC SODIUM USP 42 (BHN BAKU OBAT) COA DFS/10010027 S/ 30", "output": "29224900"}, {"text_input": "What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA D01231UP", "output": "29053200"}, {"text_input": "What is the hs code for CAROPHYLL RED 10PCT, 5KG BAG ALU (BHN BAKU OBAT UTK PAKAN TERNAK) COA UE01910718", "output": "32041900"}, {"text_input": "What is the hs code for DOXORUBICIN HYDROCHLORIDE EP (BHN BAKU OBAT) COA 0620036003", "output": "29419000"}, {"text_input": "What is the hs code for DOCETAXEL TRIHYDRATE (BHN BAKU OBAT) COA 201909005", "output": "29329990"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG200117", "output": "29362700"}, {"text_input": "What is the hs code for ACRYPOL 980 (20KG) BAHAN BAKU KOSMETIK, COA 11519129,11519133", "output": "39069099"}, {"text_input": "What is the hs code for 20KG ACRYPOL PRINTED BOX ,NO COMMERCIAL VALUE, BATCH 1020", "output": "48192000"}, {"text_input": "What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 90609", "output": "38247900"}, {"text_input": "What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 90920", "output": "38247900"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 90601", "output": "38247900"}, {"text_input": "What is the hs code for WILDLIME HARVEST TM AF (BHN BAKU KOSMETIK) COA 80901", "output": "38247900"}, {"text_input": "What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 91214", "output": "38247900"}, {"text_input": "What is the hs code for WILDLIME HARVEST TM AF (BHN BAKU KOSMETIK) COA 80901", "output": "38247900"}, {"text_input": "What is the hs code for MB TRAY RODAC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 106BH", "output": "38210090"}, {"text_input": "What is the hs code for MICROBIO M3D AUTOSCANNER EN (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH AS0132", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9319163", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODOC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9353341", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH 0010401", "output": "38210090"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01905018", "output": "29362900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT19110284,UT19120294", "output": "29362800"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01905018", "output": "29362900"}, {"text_input": "What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF19020048", "output": "29420000"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT19120294", "output": "29362800"}, {"text_input": "What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT19090231", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19100098", "output": "29362900"}, {"text_input": "What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT19090231", "output": "29362800"}, {"text_input": "What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01907087", "output": "29362400"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT19100216", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19100098", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01905017", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT19100008", "output": "29362600"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01909234", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01909234", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01909234", "output": "29362800"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519054", "output": "29362200"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB19109001", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT19090097", "output": "29362900"}, {"text_input": "What is the hs code for DL-ALPA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT19090231", "output": "29362800"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11910006", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519054", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91002459", "output": "29362200"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19090018", "output": "29362900"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01911059", "output": "32041900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90913150", "output": "29362500"}, {"text_input": "What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT19090231", "output": "29362800"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01907087", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19090018", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11910006", "output": "29362900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90913150", "output": "29362500"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519054", "output": "29362200"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01902008", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19080153", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN B12 0.PCT WS (BHN BAKU SUPLEMEN) COA UT19100008", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT19100008", "output": "29362600"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905017", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905017, UE01905018", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19030004", "output": "29362900"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE 25KG BOX (BHN BAKU SUPLEMEN) COA TL01908764", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT1900008", "output": "29362600"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19060068", "output": "29362800"}, {"text_input": "What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA UT19060068, UT19090231", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19060068,UT19060079", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010008", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1902032", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1902032", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1902032", "output": "29362300"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE01909050", "output": "32041900"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ91002459", "output": "29362200"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL01908764", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT19100008", "output": "29362600"}, {"text_input": "What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT19090231", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01909234", "output": "29362800"}, {"text_input": "What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273314", "output": "38210090"}, {"text_input": "What is the hs code for CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9274670", "output": "38210090"}, {"text_input": "What is the hs code for ANTYI-HLA-DR FITC L243 (G46-6) RUO/GMP(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9322195", "output": "38210090"}, {"text_input": "What is the hs code for CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9345605", "output": "38210090"}, {"text_input": "What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9310704", "output": "38210090"}, {"text_input": "What is the hs code for SERASENSE SF CM5 (BAHAN BAKU KOSMETIK) COA PA00117016, 18,20", "output": "29319049"}, {"text_input": "What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 2001EF6310", "output": "29224900"}, {"text_input": "What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1907753133", "output": "29362600"}, {"text_input": "What is the hs code for OMEPRAZOLE PELLETS -8,5PCT (BHN BAKU OBAT) COA OP8.5/121600120", "output": "30039000"}, {"text_input": "What is the hs code for RESTYLANE SB VITAL LIDOCAINE IML ,COA 17315-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE LIDOCAINE HA FILLER 1ML N2 S2 SE, COA 17462-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE LYFT LIDOCAINE 1 ML ,COA 17511-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE VOLYME 1ML , COA 17642-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE DEFYNE 1ML , COA 17568-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE KYSSE 1 ML, COA 17615-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE SB VITAL LIGHT LIDOCAINE 1ML , COA 17326-2,17459-2, 17634-1", "output": "33049990"}, {"text_input": "What is the hs code for CEFADROXIL MONOHYDRATE (PURIDROX POWDER) BHN BAKU OBAT, COA B334677S/D 679, 681", "output": "29419000"}, {"text_input": "What is the hs code for ALLOPURINOL USP (BHN BAKU OBAT) COA 19080AY3ARII", "output": "29335990"}, {"text_input": "What is the hs code for THEOPHYLLINE ANHYDROUS (BAHAN BAKU OBAT) COA 19491,20019,21 S/D 23, 25,26,28 S/D 31", "output": "29395900"}, {"text_input": "What is the hs code for PROPYPHENAZONE (ST) (BHN BAKU PEWARNA TABLET) COA 1911210,211,221,225,226", "output": "29331100"}, {"text_input": "What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA DOC0062021", "output": "28363000"}, {"text_input": "What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA DOC0062021", "output": "28363000"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH625713", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH625712", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH625711", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH625263", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH625786", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH625769", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH625752", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY PURPLE (BHN BAKU PEWARNA TABLET) COA SH625768", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH625747", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH625771", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH625276", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH625764", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH625945", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH625765", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE PURPLE (BHN BAKU PEWARNA TABLET) COA SH625736", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH625826", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH625746", "output": "39061090"}, {"text_input": "What is the hs code for PIGMENT BLEND YELLOW (BHN BAKU PEWARNA TABLET) COA SH625745", "output": "32151900"}, {"text_input": "What is the hs code for MAGNESIUM OXIDE, LIGHT POWDER, BP 2020 (BHN BAKU OBAT) COA 1104624", "output": "28273100"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH626155", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH625668", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY PURPLE (BHN BAKU PEWARNA TABLET) COA SH627015", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH625946", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH626159", "output": "38249999"}, {"text_input": "What is the hs code for OPALUX MAROON (BHN BAKU PEWARNA TABLET), COA DT698487", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY II TAN (BHN BAKU PEWARNA TABLET), COA DT698507", "output": "38249999"}, {"text_input": "What is the hs code for OPACODE BLACK (BHN BAKU PEWARNA TABLET), COA DT698793", "output": "32151900"}, {"text_input": "What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET) COA DT698788", "output": "32151900"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV...(BHN BAKU PEWARNA TABLET)COA D011J8DL02", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E50 PREMIUM LV... (BHN BAKU PEWARNA TABLET) COA D011J17L03", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM CR ...(BHN BAKU PEWARNA TABLET)COA D180J9A002", "output": "39123900"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA MTP04520", "output": "28363000"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB19090218", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB19110253", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB19090218", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E ACETATE 950NS (BHN BAKU SUPLEMEN) COA WB00918690", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB19110253", "output": "29362100"}, {"text_input": "What is the hs code for MONOPROPYLENE GLYCOL (BHN BAKU KOSMETIK) COA PG(S)200109", "output": "29053200"}, {"text_input": "What is the hs code for DEXAMETHASONE BP2010/USP41 (BHN BAKU OBAT) COA.NED191203,NED191205", "output": "29372200"}, {"text_input": "What is the hs code for MAGNOLIA BARK EXTRACT (BHN BAKU KOSMETIK) COA MBE05-190903", "output": "38249999"}, {"text_input": "What is the hs code for ASCORBIC ACID,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01912343", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19120057", "output": "29362100"}, {"text_input": "What is the hs code for FRUITFLOW II SD ,1KG BAL (BHN BAKU SUPLEMEN) COA 19417", "output": "29362900"}, {"text_input": "What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB19120517", "output": "29362700"}, {"text_input": "What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF, IKG ALUF (BHN BAKU SUPLEMEN) COA UE01905024", "output": "32030010"}, {"text_input": "What is the hs code for ASCORBIC ACID ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01912338", "output": "29362700"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE02001011", "output": "32041900"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT19050001", "output": "32041900"}, {"text_input": "What is the hs code for COATED ASCORBIC ACID, TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01912457", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19120057", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19100047", "output": "29362100"}, {"text_input": "What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ90907010, UQ90907011", "output": "29420000"}, {"text_input": "What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0040762", "output": "38249999"}, {"text_input": "What is the hs code for AC091KF FUCOGEL 1.5P 25 KG (BHN BAKU KOSMETIK) COA 0041338", "output": "38249999"}, {"text_input": "What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0041341", "output": "38249999"}, {"text_input": "What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0041499", "output": "38249999"}, {"text_input": "What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000186494", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0319111772", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519100295", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX ,25KG PC (BHN BAKU KOSMETIK) COA 0519010014", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0819120285", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001552129", "output": "29420000"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT19120090", "output": "29362800"}, {"text_input": "What is the hs code for STAY-C (R) 50, 5KG BAG ALU (BHN BAKU KOSMETIK) COA CS18060031,32,33", "output": "29362700"}, {"text_input": "What is the hs code for PARSOL 340 ,25KG PC (BHN BAKU KOSMETIK) COA 0219040085,0219060109", "output": "29420000"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT19080029", "output": "29362100"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11910006", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19030004", "output": "29362900"}, {"text_input": "What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92001273", "output": "21069059"}, {"text_input": "What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE01909014", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19100098", "output": "29362900"}, {"text_input": "What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799037686L", "output": "38249999"}, {"text_input": "What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829017962K", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785018040L", "output": "38249999"}, {"text_input": "What is the hs code for RIBOXYL TM (BHN BAKU KOSMETIK) COA R1116501", "output": "38249999"}, {"text_input": "What is the hs code for RIBOXYL TM (BHN BAKU KOSMETIK) COA R1286501", "output": "38249999"}, {"text_input": "What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK), COA 1735914", "output": "38249999"}, {"text_input": "What is the hs code for DEFENSCALP TM (BHN BAKU KOSMETIK), COA 785077880K", "output": "38249999"}, {"text_input": "What is the hs code for DEFENSCALP TM (BHN BAKU KOSMETIK), COA 785077880K", "output": "38249999"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK), COA 5624919", "output": "38249999"}, {"text_input": "What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK), COA 829017654K", "output": "38249999"}, {"text_input": "What is the hs code for LANACHRYS 2B PF (PRESERVATIVE- (BHN BAKU KOSMETIK), COA 793057447K", "output": "38249999"}, {"text_input": "What is the hs code for NEUTRAZEN TM (BHN BAKU KOSMETIK), COA 828017668K", "output": "38249999"}, {"text_input": "What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) COA 1805516", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785018040L", "output": "38249999"}, {"text_input": "What is the hs code for NEUTRAZEN TM (BHN BAKU KOSMETIK), COA 828017668K", "output": "38249999"}, {"text_input": "What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830017322K", "output": "38249999"}, {"text_input": "What is the hs code for LANACHRYS 2B PF (PRESERVATIVE- BHN BAKU KOSMETIK) COA 793057447K", "output": "38249999"}, {"text_input": "What is the hs code for NEUTRAZEN TM (BHN BAKU KOSMETIK) COA 828017309K", "output": "38249999"}, {"text_input": "What is the hs code for EMULMETIK TM 100 (BHN BAKU KOSMETIK) COA 1830418", "output": "38249999"}, {"text_input": "What is the hs code for CIPROFLOXACIN LACTATE INJECTABLE GRADE (BHN BAKU OBAT) COA TURTLE/CL/200201", "output": "29335990"}, {"text_input": "What is the hs code for SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 1908045293", "output": "29322090"}, {"text_input": "What is the hs code for PACLITAXEL SEMISYNTHETIC (USP,TEST-2) (BHN BAKU OBAT) COA 899NSH003", "output": "29329990"}, {"text_input": "What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC1920T", "output": "27101990"}, {"text_input": "What is the hs code for IMERCARE 11T (BHN BAKU KOSMETIK) COA S38/20", "output": "38029090"}, {"text_input": "What is the hs code for 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 073119/006130", "output": "38249999"}, {"text_input": "What is the hs code for CALCIUM CARBONATE DC TYPE CS90 PHARMA (BHN BAKU OBAT) COA 202000031", "output": "28365010"}, {"text_input": "What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P9R08QA000", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL HMS, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0419060155", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL HMS, 25KG PC (BHN BAKU KOSMETIK) COA 0418110248", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL ZX ,20KG DRUM (BHN BAKU KOSMETIK) COA 190510012, 190511012", "output": "29420000"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT19090183", "output": "29362100"}, {"text_input": "What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P9Q20QA000,P9R03QA000,P9R08QA000", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL EHS, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0719090220", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0719080180", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL EHS ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0719090220,231", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0819120285", "output": "29420000"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519041", "output": "29362500"}, {"text_input": "What is the hs code for MINERAL PREMIX HBS08022019 (BHN BAKU MAKANAN) COA XW92002109", "output": "21069059"}, {"text_input": "What is the hs code for PERTANI FK PREMIX 1.0 (BHN BAKU MAKANAN) COA XW92002110", "output": "21069059"}, {"text_input": "What is the hs code for PX 204005 (BHN BAKU MAKANAN) COA XW92002074", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN PREMIX 103047-D (BHN BAKU MAKANAN) COA XW92001302", "output": "21069059"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519041", "output": "29362500"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200207", "output": "17029019"}, {"text_input": "What is the hs code for ASTABIO ARV-S (BHN BAKU OBAT) COA.1903231", "output": "32030010"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM (BHN BAKU OBAT) COA 2002273,2276,2279,2285", "output": "29331900"}, {"text_input": "What is the hs code for LIFE'S DHA (TM) S35-O300, 5KG ALUF (B.BAKU SUPLEMEN) COA VY00348008", "output": "29362500"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA FAJ", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS SILK-1000 (BHN BAKU KOSMETIK) COA FBK", "output": "38249999"}, {"text_input": "What is the hs code for SILASOMA MFA(S) (BHN BAKU KOSMETIK) COA WJJ", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS KR-30 (BHN BAKU KOSMETIK) COA FAG", "output": "38249999"}, {"text_input": "What is the hs code for AMITOSE HGA (BHN BAKU KOSMETIK) COA WLM", "output": "38249999"}, {"text_input": "What is the hs code for KF-96A-6CS (16KG) BHN BAKU KOSMETIK, COA 910075", "output": "38249999"}, {"text_input": "What is the hs code for KSG-210 (16KG) BHN BAKU KOSMETIK, COA 002349", "output": "38249999"}, {"text_input": "What is the hs code for KSP-100 (10KG) BHN BAKU KOSMETIK , COA 001768", "output": "38249999"}, {"text_input": "What is the hs code for KP-56A (18KG) BHN BAKU KOSMETIK , COA 001805, 001808", "output": "38249999"}, {"text_input": "What is the hs code for KSP-101 (15KG) BHN BAKU KOSMETIK, COA 912338", "output": "38249999"}, {"text_input": "What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED(BHN BAKU UTK PAKAN TERNAK ) COA MTP00720", "output": "28363000"}, {"text_input": "What is the hs code for JAGUAR HP 105, 25KG CARDBOARD CARTON (BHN BAKU KOSMETIK) COA H1909148C", "output": "38249999"}, {"text_input": "What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0007261", "output": "38210090"}, {"text_input": "What is the hs code for 500/600 SUGLETS 500/600 (30/35 MESH)(BHN BAKU PEWARNA TABLET), COA ST513020", "output": "32151900"}, {"text_input": "What is the hs code for SIMVASTATIN (BAHAN BAKU KOSMETIK) COA DK40-1910182, DK40-1912072, DK40-1912091", "output": "29322090"}, {"text_input": "What is the hs code for L-MENTHOL CRYSTALS INDIAN NATURAL (BHN BAKU KOSMETIK) COA NFPL/MEN/271", "output": "38249999"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01909052", "output": "32041900"}, {"text_input": "What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92002154", "output": "21069059"}, {"text_input": "What is the hs code for ACNE BUSTERS (BHN BAKU KOSMETIK) COA 192406", "output": "38249999"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 192773", "output": "38249999"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 192920", "output": "13021990"}, {"text_input": "What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA192253", "output": "13021990"}, {"text_input": "What is the hs code for MANDARIN CLEAR (BHN BAKU KOSMETIK), COA 192120", "output": "13021990"}, {"text_input": "What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 192085", "output": "13021990"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA200202", "output": "38249999"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA200101", "output": "38249999"}, {"text_input": "What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED(BHN BAKU UTK PAKAN TERNAK ) COA MTP00720", "output": "28363000"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE BP (BHN BAKU OBAT), COA ASGP/01/250120, ASGP/02/030220", "output": "29420000"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/01/090120,090120-1,060220", "output": "29420000"}, {"text_input": "What is the hs code for CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/11/170120, 190120", "output": "39123100"}, {"text_input": "What is the hs code for ONDANSETRON HCL USP (BHN BAKU OBAT) COA 19OS001", "output": "29332900"}, {"text_input": "What is the hs code for GUAIFENESIN USP (BHN BAKU OBAT) COA GGE-2002016 S/D GGE-2002023", "output": "29094900"}, {"text_input": "What is the hs code for GUAIFENESIN USP 41 (B. BAKU OBAT) COA GGE-2002011,GGE-2002024, NO COMMERCIAL VALUE", "output": "29094900"}, {"text_input": "What is the hs code for EMPTY FIBER DRUM , NO COMMERCIAL VALUE", "output": "48192000"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0010404", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9357546", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH 9357546", "output": "38210090"}, {"text_input": "What is the hs code for BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0021915", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GRAM IODINE STANILIZED 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9353718", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0013917", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9337386", "output": "38210090"}, {"text_input": "What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 191444701", "output": "38210090"}, {"text_input": "What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8018298M, 8038249M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NITRATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9148558", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 5 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9280556", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9324094", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9219600", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9025631", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BORDET GENGOU AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9004960", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE PHOSPHATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9364944", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B018350M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE APT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8134772", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9324170", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9156832", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9189647", "output": "38210090"}, {"text_input": "What is the hs code for GASPAK EZ LARGE INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7326630010", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PHENYLALANINE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9189619", "output": "38210090"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0028518", "output": "38210090"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0028518", "output": "38210090"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0028518", "output": "38210090"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0028518", "output": "38210090"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0028518", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161934", "output": "38210090"}, {"text_input": "What is the hs code for BD ACCURI C6 PLUS SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0008882,0008883", "output": "38210090"}, {"text_input": "What is the hs code for DEL OPTIPLEX WORKSTATION BUNDLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8137704", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9219559", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273651", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9353100", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0002860", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9273340", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206968", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LAURYL SULFATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9141969", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9028828", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR NOBLE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9197730", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PEPSIN 1 TO 10000 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9347113", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE REINFORCED CLOSTRIDIAL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9352656", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161593", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 4 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 8297988", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 9303735", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GRAM CRYSTAL VIOLET 250G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9352484", "output": "38210090"}, {"text_input": "What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9303770", "output": "38210090"}, {"text_input": "What is the hs code for KIT UNIVERSAL VIRAL TRANSPORT STD SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 192230800", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9219559", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161608", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9315468", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9241879", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273839", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9353100", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0013917", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239282", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 9218538", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9291612", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161680", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0009096", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218804", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9211435", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9021613", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9148762", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9255013, 9295511", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161934", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9315219", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9241879", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9295571", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9211365", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9206092", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9353100", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9084661", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9310358", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9050790,9205168", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9295560", "output": "38210090"}, {"text_input": "What is the hs code for FEED GRADE DICALCIUM PHOSPHATE POWDER (BHN BAKU UNTUK PAKAN TERNAK) COA TB2001002", "output": "28352510"}, {"text_input": "What is the hs code for SUPPOCIRE A PELLETS (BHN BAKU OBAT) COA 18E2201", "output": "28399000"}, {"text_input": "What is the hs code for CETYL PALMITATE PELLETS CAR (BHN BAKU OBAT) COA 178899", "output": "28399000"}, {"text_input": "What is the hs code for TRANSCUTOL P (BAHAN BAKU OBAT) COA 177111", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE A PELLETS (BAHAN BAKU OBAT) COA 18E2201", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE BM PELLETS (BHN BAKU OBAT) COA 19E2001", "output": "28399000"}, {"text_input": "What is the hs code for TRANSCUTOL P (BAHAN BAKU OBAT) COA 177111", "output": "28399000"}, {"text_input": "What is the hs code for COMPRITOL 888 ATO (BHN BAKU OBAT) COA 178565", "output": "28399000"}, {"text_input": "What is the hs code for TRANSCUTOL P (BHN BAKU OBAT) COA 177111", "output": "28399000"}, {"text_input": "What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH626176", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH626275", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH626180", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH627177", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH625826", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH625826", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH626175", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH626197", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH626193", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BLUE (BHN BAKU PEWARNA TABLET) COA SH626206", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH626177", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II BLUE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH626204", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II BROWN (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH626178", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH625842", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH626163", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH626161", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH626165", "output": "38249999"}, {"text_input": "What is the hs code for PIGMENT BLEND BROWN (BHN BAKU PEWARNA TABLET) COA SH627034", "output": "32151900"}, {"text_input": "What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH626179", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH626283", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH626199", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH626164", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH626162", "output": "38249999"}, {"text_input": "What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453521544,4453582992", "output": "39139090"}, {"text_input": "What is the hs code for EPERISONE HYDROCHLORIDE SYN-TECH (BHN BAKU OBAT) COA.E10-19066", "output": "29333990"}, {"text_input": "What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-0090120", "output": "29334910"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB19110253", "output": "29362100"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 03750220,03870220", "output": "29359000"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 03700220, 03710220,03720220...", "output": "29359000"}, {"text_input": "What is the hs code for OXALIPLATIN (BAHAN BAKU OBAT) COA L20200114", "output": "28439000"}, {"text_input": "What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC 031-19-801", "output": "17021100"}, {"text_input": "What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC 031-19-801", "output": "17021100"}, {"text_input": "What is the hs code for SODIUM ASCORBATE 99PCT TG (BHN BAKU SUPLEMEN) COA WB19120517", "output": "29362700"}, {"text_input": "What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT20010007", "output": "29362500"}, {"text_input": "What is the hs code for SK BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK)COA GSC-K-010210", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK)COA SFP-N-011720", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-011720", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) COA MSEEC-022219", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK)COA CPG-391069", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-011720", "output": "38249999"}, {"text_input": "What is the hs code for CLEANBIO TM-ZINC (PROTECT) CL0024-K18 (BHN BAKU KOSMETIK) COA 20ZDP", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA MCP-N-060929", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-053009,GTB-010610", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) COA MSEEC-022219", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-040479", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SERICIN 4.5CL (BHN BAKU KOSMETIK) COA SCPKJB0701", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK)COA SAFW-010720", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-043029", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-022019", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-971729", "output": "38249999"}, {"text_input": "What is the hs code for MC-GLUCAN (BHN BAKU KOSMETIK) COA MCGL200121", "output": "39139090"}, {"text_input": "What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP821764", "output": "39059990"}, {"text_input": "What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW... (BHN BAKU PEWARNA TABLET) COA WP818968", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU PEWARNA TABLET) COA WP822860", "output": "32151900"}, {"text_input": "What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU PEWARNA TABLET) COA WP822178", "output": "32151900"}, {"text_input": "What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP815363", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C BLUE #1/BRILLIANT BLUE (BHN BAKU PEWARNA TABLET) COA WP816335", "output": "32151900"}, {"text_input": "What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ00217001, 7002, 7012", "output": "29420000"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 1AX2001022", "output": "29181400"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1903044380", "output": "29372900"}, {"text_input": "What is the hs code for SUPPOCIRE AM PELLETS (BAHAN BAKU OBAT) COA 20E0501", "output": "28399000"}, {"text_input": "What is the hs code for LANSOPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA LP0220C009", "output": "30039000"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM (BHN BAKU OBAT) COA 2002272,2285,2286,2289,2165", "output": "29331900"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN), BATCH UE01911058", "output": "32041900"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113351", "output": "29339990"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113378", "output": "29339990"}, {"text_input": "What is the hs code for SURCRALOSE (BHN BAKU OBAT) COA 20022701", "output": "29321400"}, {"text_input": "What is the hs code for PYRAZINAMIDE EP/USP (BHN BAKU OBAT) COA WHOPZ 237 B 20 S/D WHOPZ 247 B 20", "output": "29339990"}, {"text_input": "What is the hs code for CHONDROITIN SULPHATE SODIUM (BHN BAKU OBAT) COA HS2002064", "output": "29362900"}, {"text_input": "What is the hs code for WILDLIME HARVEST TM AF (BHN BAKU KOSMETIK) COA 80901", "output": "13021950"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 91019", "output": "13021950"}, {"text_input": "What is the hs code for CARBOXYMETHYLCELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/02/260220", "output": "39123100"}, {"text_input": "What is the hs code for MICONAZOLE NITRATE (BAHAN BAKU OBAT) COA H20191201", "output": "29332900"}, {"text_input": "What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 261119", "output": "25070000"}, {"text_input": "What is the hs code for MEG-3 3020 EE P OIL ,190KG MEF (BHN BAKU SUPLEMEN) COA TS00014000", "output": "29362500"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 2AX2001028", "output": "29181400"}, {"text_input": "What is the hs code for MAGNESIUM CARBONATE ,HEAVY (BHN BAKU OBAT) COA 1104545", "output": "28332100"}, {"text_input": "What is the hs code for ZINC SULFATE 1-HYDRATE, POWDER ,USP42 (BHN BAKU OBAT) COA 3080016", "output": "28332920"}, {"text_input": "What is the hs code for SODIUM ACETATE ANHYDROUS (BHN BAKU MAKANAN) COA 3079845", "output": "29152910"}, {"text_input": "What is the hs code for SODIUM SELENITE MAX 0,99PCT IN CALCIUM CARBONATE (BHN BAKU OBAT) COA", "output": "28429010"}, {"text_input": "What is the hs code for MAGNESIUM OXIDE, LIGHT, POWDER, BP 2020 (BHN BAKU OBAT) COA 1104435", "output": "28273100"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS(BHN BAKU MAKANAN) COA UE02001021", "output": "32041900"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN), COA TL02002870, 2878, 2886, 2898", "output": "29362700"}, {"text_input": "What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA. 8MT200146", "output": "30032000"}, {"text_input": "What is the hs code for NOSCAPINE BASE BP (BHN BAKU OBAT) COA P0200120", "output": "29391900"}, {"text_input": "What is the hs code for EDIBLE BOVINE GELATINE 140/20 HAL(BAHAN BAKU OBAT ), COA 5002003034", "output": "35030049"}, {"text_input": "What is the hs code for PHARMACEUTICAL BOVINE GELATINE 200/18 (BHN BAKU OBAT) COA 5002003033", "output": "35030049"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT20010015, UT20020016", "output": "29362800"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT19050001", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19100047", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02001010, 11", "output": "32041900"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02001011", "output": "32041900"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE,25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ91106250", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID ,25KG BOX ALU (BHN BAKU MAKANAN) COA TL01909626", "output": "29362700"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT20010015", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT20010921,922", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02001011", "output": "32041900"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01909626", "output": "29362700"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02001010", "output": "32041900"}, {"text_input": "What is the hs code for COATED ASCORBIC ACID TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01912444", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19120057", "output": "29362100"}, {"text_input": "What is the hs code for ETHYL PANTHENOL ,1000KG IBC (BHN BAKU KOSMETIK) COA TL01911814", "output": "29362400"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT20010012", "output": "29362800"}, {"text_input": "What is the hs code for NIACINAMIDE USP (BHN BAKU KOSMETIK) COA 19-20/NMD(P)/U/167 S/D 171", "output": "29362900"}, {"text_input": "What is the hs code for AMISOL TM 4135 - 25KG (BHN BAKU KOSMETIK) COA 1934001", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM - 5KG (BHN BAKU KOSMETIK) COA 2003305", "output": "38249999"}, {"text_input": "What is the hs code for SWT-7 TM H - 5KG (BHN BAKU KOSMETIK) COA 2000203", "output": "38249999"}, {"text_input": "What is the hs code for RESTYLANE SB VITAL LIDOCAINE IML ,COA 17315-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML , COA 17511-1, 17555-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE VOLYME 1 ML ,COA 17735-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE REFYNE 1ML , COA 17757-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE DEFYNE 1ML , COA 17818-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE KYSSE 1 ML, COA 17615-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE SB VITAL LIGHT LIDOCAINE 1ML , COA 17634-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE SB VITAL LIDOCAINE IML ,COA 17315-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML, COA 17555-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE VOLYME 1ML ,COA 17735-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE REFYNE 1ML , COA 17757-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE DEFYNE 1ML , COA 17818-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE KYSSE 1 ML, COA 17615-1, 17643-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE SB VITAL LIGHT LIDOCAINE 1ML , COA 17634-1", "output": "33049990"}, {"text_input": "What is the hs code for FERRIC PYROPHOSPHATE (BHN BAKU MAKANAN) COA 3067278", "output": "28353990"}, {"text_input": "What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA P-64", "output": "29397900"}, {"text_input": "What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA P-64", "output": "29397900"}, {"text_input": "What is the hs code for ADSORB AFLA (BHN BAKU UNTUK PAKAN TERNAK) COA 133", "output": "25081000"}, {"text_input": "What is the hs code for KSG-210 (16KG) BHN BAKU KOSMETIK, COA 002364", "output": "38249999"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 192773", "output": "38249999"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 192920", "output": "13021990"}, {"text_input": "What is the hs code for MANDARIN CLEAR (BHN BAKU KOSMETIK) COA 192120", "output": "13021990"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121910284,285", "output": "28363000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 121910285,122000007", "output": "28363000"}, {"text_input": "What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 90724,90821,90713,90716", "output": "38029090"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH626787", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH627682", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH626280", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH626762", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB RED (BHN BAKU PEWARNA TABLET) COA SH626763", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH626195", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH626760", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH626757", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH626792", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY 200 WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH627682", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB MAROON (BHN BAKU PEWARNA TABLET) COA SH626761", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH626758", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH627038", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH627038", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH626788", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE II ORANGE (BHN BAKU PEWARNA TABLET) COA SH626451", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH626997", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH626415", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH626437", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH626417", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH626421", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA SH626416", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH626422", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH627037", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH627038", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH626425", "output": "39061090"}, {"text_input": "What is the hs code for PIGMENT BLEND YELLOW (BHN BAKU UTK PEWARNA TABLET) COA SH627356", "output": "32151900"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01912350", "output": "29362700"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT19050001", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19120057", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT19100026", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT19100026", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)(BHN BAKU MAKANAN) COA UT20010191", "output": "29362100"}, {"text_input": "What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ91007012", "output": "29420000"}, {"text_input": "What is the hs code for DL-PANTHENOL 50 L,1000KG IBC (BHN BAKU KOSMETIK) COA TL02001601", "output": "29362400"}, {"text_input": "What is the hs code for ETHYL PANTHENOL ,1000KG IBC (BHN BAKU KOSMETIK) COA TL01911814", "output": "29362400"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN)COA TL01910914,12571,12595,2002866,...", "output": "29362700"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN), COA UE02001011,1020,1021", "output": "32041900"}, {"text_input": "What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00918690", "output": "29362800"}, {"text_input": "What is the hs code for BILBERRY (VACCINIUM MYRTILLUS) ETHANOLIC EXTRACT 36PCT (BHN BAKU SUPLEMEN) COA 20S0006803", "output": "13021990"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01906195", "output": "29362800"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ91002486", "output": "29362200"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE,25KG BOX (BHN BAKU MAKANAN) COA TL01912852", "output": "29362400"}, {"text_input": "What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92002154", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19100100,101", "output": "29362900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT19100257", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19100101", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01905018", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT19100219", "output": "29362400"}, {"text_input": "What is the hs code for NIAINAMIDE (BHN BAKU MAKANAN) COA OP11910006", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT19120040", "output": "29362900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE ,20KG BOX (BHN BAKU MAKANAN) COA QZ11190520", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN PREMIX HBS151118 (BHN BAKU MAKANAN) COA XW92002265", "output": "21069059"}, {"text_input": "What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT19090231,UT19100257", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19100101", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01906195", "output": "29362800"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT GRANULATION ,25KG BOX (BHN BAKU SUPLEMEN) COA WB19109001", "output": "29362700"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1903039", "output": "29362300"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB19109001", "output": "29362700"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905018", "output": "29362900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT19090231", "output": "29362800"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01908117", "output": "29362400"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11910006", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19060079", "output": "29362800"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT GRANULATION ,25KG BOX (BHN BAKU SUPLEMEN) COA WB1910900126", "output": "29362700"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91013173", "output": "29362500"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91002486", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91002486", "output": "29362200"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP11910006", "output": "29362900"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91002486", "output": "29362200"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519041", "output": "29362500"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519055", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91102534", "output": "29362200"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01905018", "output": "29362900"}, {"text_input": "What is the hs code for 500/600 SUGLETS 500/600 (30/35 MESH)(BHN BAKU PEWARNA TABLET), COA ST513514", "output": "32151900"}, {"text_input": "What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA. 20200223", "output": "17023010"}, {"text_input": "What is the hs code for CENTELLA ASIATICA EXTRACT 95PCT ( BHN BAKU KOSMETIK), COA GKP 19091 EOU", "output": "38249999"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA C002-YB2003317", "output": "29211900"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED) BHN BAKU OBAT, COA M532100,2135,2137,2138,2129,2139", "output": "29411019"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV...(BHN BAKU PEWARNA TABLET)COA D011J7KL02", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100 PREMIUM LV... (BHN BAKU PEWARNA TABLET) COA D180I97021", "output": "39123900"}, {"text_input": "What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0036760", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9288618", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9339275", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2189343", "output": "38210090"}, {"text_input": "What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8338681", "output": "38210090"}, {"text_input": "What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9122883", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0007337", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0007337", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9339275", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2189343", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9294107", "output": "38210090"}, {"text_input": "What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9121860", "output": "38210090"}, {"text_input": "What is the hs code for VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 121910045", "output": "28363000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000009", "output": "28363000"}, {"text_input": "What is the hs code for SORBITOL SOLUTION 70PCT CRYSTALLINE (BHN BAKU OBAT) COA 1920P617", "output": "29054400"}, {"text_input": "What is the hs code for PARSOL 340 ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219040084", "output": "29420000"}, {"text_input": "What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000187266, 187433", "output": "29362900"}, {"text_input": "What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00607669, 7670", "output": "29420000"}, {"text_input": "What is the hs code for VTP # MS012 (BHN BAKU MAKANAN) COA XW92002299", "output": "21069059"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12001019", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12001019", "output": "29362900"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT19040012", "output": "32041900"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19090007", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19090018", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519041", "output": "29362500"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00619040", "output": "29362300"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01908270", "output": "29362700"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12001019", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01902012", "output": "29362900"}, {"text_input": "What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92001275", "output": "21069059"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UE01906195", "output": "29362800"}, {"text_input": "What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92001274", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19100101", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19100101", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT19100220", "output": "29362300"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ90903221", "output": "29362200"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT19120095,96", "output": "29362800"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12001019", "output": "29362900"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT19050033", "output": "32041900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE,5KG PE PAIL (BHN BAKU MAKANAN) COA UT19100257", "output": "29362800"}, {"text_input": "What is the hs code for MIXED TOCOPHEROL 95 (BHN BAKU MAKANAN) COA XH20191001", "output": "29362800"}, {"text_input": "What is the hs code for MIXED TOCOPHEROL 95 (BHN BAKU MAKANAN) COA XH20191001", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A 20KG (BHN BAKU MAKANAN), COA WB19110473, S/D 475", "output": "29362100"}, {"text_input": "What is the hs code for SOYA LECITHIN (BHN BAKU MAKANAN) COA 2191117-15", "output": "29232010"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH626164", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH627038", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH626997", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH626996", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH627432", "output": "38249999"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM (BHN BAKU PEWARNA TABLET)COA D180K13001", "output": "39123900"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU SUPLEMEN), COA UJ010", "output": "29181400"}, {"text_input": "What is the hs code for BUDESONIDE MICRONIZED (BHN BAKU OBAT) COA NA0157M", "output": "29372900"}, {"text_input": "What is the hs code for RUGENER DREIKRONEN HEILKREIDE 25K (BHN BAKU KOSMETIK) COA 81690551", "output": "25090000"}, {"text_input": "What is the hs code for GINKGO EXTRACT (BHN BAKU KOSMETIK) COA 81692248", "output": "13021950"}, {"text_input": "What is the hs code for TRISODIUMCITRATE DIHYDRATE FINE GRANULAR (BHN BAKU MAKANAN), COA UJ002", "output": "29181400"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU MAKANAN) COA UJ006", "output": "29181400"}, {"text_input": "What is the hs code for LIFE'S DHA S35-O100, 5KG ALUF (B.BAKU SUPLEMEN) COA VY00339609", "output": "29362500"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB111219", "output": "39123900"}, {"text_input": "What is the hs code for FD AND C BLUE #2/INDIGO CARMINE (BHN BAKU PEWARNA TABLET) COA WP815898", "output": "32151900"}, {"text_input": "What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP821787", "output": "39059990"}, {"text_input": "What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU PEWARNA TABLET) COA WP822178:1", "output": "32151900"}, {"text_input": "What is the hs code for FD & C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP818970", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP818231", "output": "32151900"}, {"text_input": "What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT(BHN BAKU OBAT UTK PEWARNA TABLET) COA WP814313", "output": "32151900"}, {"text_input": "What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU OBAT UTK PEWARNA TABLET) COA WP814838", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C BLUE #2/INDIGO CARMINE AL (BHN BAKU PEWARNA TABLET) COA WP815897", "output": "32151900"}, {"text_input": "What is the hs code for GRANULAC (R) 70 (BHN BAKU OBAT) COA L101845019", "output": "17021100"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 2AX2003283", "output": "29181400"}, {"text_input": "What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0056915", "output": "38210090"}, {"text_input": "What is the hs code for CD3 APC-H7 SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0027983", "output": "38210090"}, {"text_input": "What is the hs code for CD25 PE 2A3 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0010234", "output": "38210090"}, {"text_input": "What is the hs code for CD34 PE-CY7 8G12 Y7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9358599", "output": "38210090"}, {"text_input": "What is the hs code for CD19-PE-CY7 SJ25C1 100 TESTS RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0021024", "output": "38210090"}, {"text_input": "What is the hs code for CD10 APC HI10A 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9269823", "output": "38210090"}, {"text_input": "What is the hs code for CD20 V500-C RUO (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9331815", "output": "38210090"}, {"text_input": "What is the hs code for CD200 APC (MRC OX-104) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0052723", "output": "38210090"}, {"text_input": "What is the hs code for CD43 APC H7 (1G10) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0052753", "output": "38210090"}, {"text_input": "What is the hs code for CD38 APC H7 (HB7) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0022307", "output": "38210090"}, {"text_input": "What is the hs code for ANTI-KAPPA FITC/ ANTI LAMBDA PE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9329635", "output": "38210090"}, {"text_input": "What is the hs code for HU CD64 APC-H7 10.1 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9039654", "output": "38210090"}, {"text_input": "What is the hs code for HU CD36 HORIZON V450 CB38 50TST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9136944", "output": "38210090"}, {"text_input": "What is the hs code for HU CD10 BV421 HI10A 100 TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9262144", "output": "38210090"}, {"text_input": "What is the hs code for HU CD19 BV510 SJ25C1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9337378", "output": "38210090"}, {"text_input": "What is the hs code for HU CD14 BV421 MPHIP9 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0010270", "output": "38210090"}, {"text_input": "What is the hs code for HU CD103 BV421 BER-ACT8 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9178814", "output": "38210090"}, {"text_input": "What is the hs code for HU CD3 BV421 UCHT1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9113553", "output": "38210090"}, {"text_input": "What is the hs code for CD45 PERCP-CY5.5 2D1 50 TEST RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9274670", "output": "38210090"}, {"text_input": "What is the hs code for ANTI HLA DR FITC L243 (G46-6) RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0063454", "output": "38210090"}, {"text_input": "What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0035573,9310704", "output": "38210090"}, {"text_input": "What is the hs code for CD34 PE CY7 8G12 Y7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9358599", "output": "38210090"}, {"text_input": "What is the hs code for CD25 PE 2A3 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0010234", "output": "38210090"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU KOSMETIK) COA UT19100257", "output": "29362800"}, {"text_input": "What is the hs code for NIACINAMIDE PC, 25KG BOX ( BHN BAKU KOSMETIK) COA 0000186799", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0319111794,796", "output": "29420000"}, {"text_input": "What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0026660", "output": "29362500"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT20010008", "output": "29362800"}, {"text_input": "What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES1901168", "output": "29420000"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01905018", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT19090183", "output": "29362100"}, {"text_input": "What is the hs code for STAY-C (R) 50,5KG BAG ALU (BHN BAKU KOSMETIK) COA CS18060033,34", "output": "29362700"}, {"text_input": "What is the hs code for PARSOL ZX, 20KG FIBRE DRUM (BHN BAKU KOSMETIK) COA 190511012", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708200010,11,12", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708200012,13", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 07080200013,14,15", "output": "29420000"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT19120040", "output": "29362900"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91102546", "output": "29362200"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20190203", "output": "29362800"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20191203", "output": "29362800"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPLEMEN) COA XH20190203", "output": "29362800"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPLEMEN) COA XH20191203", "output": "29362800"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPLEMEN) COA XH20191203, XH20200101", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010008", "output": "29362900"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPLEMEN) COA XH20200101", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010008", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ91010258", "output": "29362300"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT19120252", "output": "29362400"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN), COA QZ11190521", "output": "29362500"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11190521", "output": "29362500"}, {"text_input": "What is the hs code for RONOXAN A (BHN BAKU MAKANAN), COA UE01909005", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT19120040", "output": "29362900"}, {"text_input": "What is the hs code for CALCIUM ASCORBATE ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB19100012", "output": "29362700"}, {"text_input": "What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA. 20200309", "output": "17023010"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200227", "output": "17023010"}, {"text_input": "What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA 20200308", "output": "11081200"}, {"text_input": "What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA MTP04920", "output": "28363000"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH627831", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH627858", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH628167", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH626918", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH626901", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY YELLOW (BHN BAKU PEWARNA TABLET) COA SH626898", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH626921", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH626425", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH627095", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH626176", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH626915", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH626900", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH626920", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH627032", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH626918", "output": "38249999"}, {"text_input": "What is the hs code for STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN541008", "output": "35051010"}, {"text_input": "What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA 178703", "output": "28399000"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 03/19GL4", "output": "28399000"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 03/19GL4,SAMPLE NO COMM VALUE", "output": "28399000"}, {"text_input": "What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BAHAN BAKU KOSMETIK) COA 178542", "output": "28399000"}, {"text_input": "What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK)COA 192415", "output": "13021990"}, {"text_input": "What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 220519,270819,280819,290819", "output": "38029090"}, {"text_input": "What is the hs code for IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S823/19", "output": "38029090"}, {"text_input": "What is the hs code for SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA 200317111", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 100 -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1544896", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 900 -CO8- 10KG KA (BHN BAKU KOSMETIK) COA 1543631", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 -CN- 10KG KA (BHN BAKU KOSMETIK) COA 1543900", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 -CN-10KG KA (BHN BAKU KOSMETIK) COA 1543900", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 720 -C08- 10 KG KA (BHN BAKU KOSMETIK) COA 1544763", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 -CN- 10KG KA (BHN BAKU KOSMETIK) COA 1544357", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 -CN- 200 FA (BHN BAKU KOSMETIK) COA 1537186,1539504LUE", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 712 -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1544167", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 940 10KG KA (BHN BAKU KOSMETIK) COA 1541745", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 -CN- 200KG FA (BHN BAKU KOSMETIK) COA 1539504", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 -CN- 10KG KA (BHN BAKU KOSMETIK) COA 1544357", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 120 100 ML FL (BHN BAKU KOSMETIK) COA 1532897 SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 712 (SAMPLE) 100 ML FL (BHN BAKU KOSMETIK) COA 1544057 SAMPLE COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 903 (SAMPLE) 100 ML FL (BHN BAKU KOSMETIK) COA 1543252, SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA PA 40 SAMPLE 100ML FL (BHN BAKU KOSMETIK) COA 1544977 SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 SAMPLE(S) 100 ML FL (BHN BAKU KOSMETIK) COA 1542660,SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for S & M PHENOXYETHANOL RCH 25KG KA (BHN BAKU KOSMETIK) COA 1545104", "output": "38249999"}, {"text_input": "What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC 005-20-801", "output": "17021100"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN541128", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN541110", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN541130", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN541129", "output": "35051010"}, {"text_input": "What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA T700500", "output": "29419000"}, {"text_input": "What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA S700500", "output": "29419000"}, {"text_input": "What is the hs code for CEFTIZOXIME SODIUM (BHN BAKU OBAT) COA S600400", "output": "29419000"}, {"text_input": "What is the hs code for CEFTIZOXIME SODIUM (BHN BAKU OBAT) COA T600400", "output": "29419000"}, {"text_input": "What is the hs code for DEXAMETHASONE BP2010/USP41 (BHN BAKU OBAT) COA.NED191210,NED200101", "output": "29372200"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 06230320,06470320,06490320...", "output": "29359000"}, {"text_input": "What is the hs code for SUPPOCIRE BM PELLETS (BAHAN BAKU OBAT) COA 20E0904", "output": "28399000"}, {"text_input": "What is the hs code for PHARMABURST (R) 500 (BHN BAKU OBAT) COA 121910343", "output": "21069099"}, {"text_input": "What is the hs code for MILK TALCUM MOD1 FM2 (BHN BAKU KOSMETIK) COA 10300200", "output": "38249999"}, {"text_input": "What is the hs code for ANTISHINE WASH 1 FM2 (BHN BAKU KOSMETIK) COA 10300133", "output": "38249999"}, {"text_input": "What is the hs code for ROSUVASTATIN CALCIUM MICRONIZED (BHN BAKU OBAT) COA M325137", "output": "29359000"}, {"text_input": "What is the hs code for NONIVAMIDE (SYNTHETIC CAPSAICIN)BHN BAKU KOSMETIK, COA.20200105", "output": "29241990"}, {"text_input": "What is the hs code for DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU UNTUK PAKAN TERNAK) COA TB2002002", "output": "28352510"}, {"text_input": "What is the hs code for MONENDOX 200 BMP (BHN BAKU UTK PAKAN TERNAK) COA 2002211", "output": "29419000"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP20034380,34381", "output": "29211900"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA C002-YB2003377", "output": "29211900"}, {"text_input": "What is the hs code for FERROUS GLUCONATE, POWDER, USP 42 (BHN BAKU OBAT) COA 3083209", "output": "29181600"}, {"text_input": "What is the hs code for ZINC SULFATE 1-HYDRATE, POWDER ,USP42 (BHN BAKU OBAT) COA 3080018", "output": "28332920"}, {"text_input": "What is the hs code for FERROUS SULFATE ,DRIED, POWDER, USP42 (BHN BAKU OBAT) COA 3081041", "output": "28332920"}, {"text_input": "What is the hs code for MAGNESIUM L-HYDROGENASPARTATE 2-HYDRATE (BHN BAKU OBAT) COA 1103273-1", "output": "29224900"}, {"text_input": "What is the hs code for UNIMER U-151 (BHN BAKU KOSMETIK) COA VO00001407, VO00001974", "output": "39059990"}, {"text_input": "What is the hs code for SUPPOCIRE BP PELLETS (BHN BAKU OBAT) COA 19E2304", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 19E3002", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 19E5107", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE BM PELLETS (BHN BAKU OBAT) COA 19E1404", "output": "28399000"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200307", "output": "17029019"}, {"text_input": "What is the hs code for CEFADROXIL MONOHYDRATE (PURIDROX COMPACTED) BHN BAKU OBAT, COA B340149,340151,340153", "output": "29419000"}, {"text_input": "What is the hs code for LIPOID S 67 F (BHN BAKU OBAT) COA. 576200-2190033/001-006 (6)", "output": "29232010"}, {"text_input": "What is the hs code for LIPOID PPL-600 (BHN BAKU OBAT) COA 577200-2190225/009-010 (2)", "output": "29232010"}, {"text_input": "What is the hs code for LIPOID PPL-600 (BHN BAKU OBAT) COA. 577200-2190226/011-012 (2)", "output": "29232010"}, {"text_input": "What is the hs code for LIPOID S 67 F (BHN BAKU OBAT) COA. 576200-2190033/007-012 (6)", "output": "29232010"}, {"text_input": "What is the hs code for NOREPINEPHRINE BITARTRATE ,BHN BAKU OBAT, COA 540104", "output": "29379010"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL F (BHN BAKU KOSMETIK) COA FBA", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS191102", "output": "38249999"}, {"text_input": "What is the hs code for LOTUS OILY EXTRACT GT10 (BHN BAKU KOSMETIK)COA NEN191105-H", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO200101", "output": "38249999"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO190102", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-200101", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-200101", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 19B0112400", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 19B0163800", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPPLEMEN) COA 19B0163900", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPPLEMEN) COA 19B0164000", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 19B0164100", "output": "13021990"}, {"text_input": "What is the hs code for BUTCHERBROOM DRY HYDR EX.9-11PCT (BHN BAKU SUPLEMEN) COA 19B0053800", "output": "13021990"}, {"text_input": "What is the hs code for VALERIAN D.H.E >0.8PCT VAL.AC (BHN BAKU SUPLEMEN) COA 19B0092800", "output": "13021990"}, {"text_input": "What is the hs code for NEUTRAZEN TM (BHN BAKU KOSMETIK) COA 828018191L", "output": "38249999"}, {"text_input": "What is the hs code for NEUTRAZEN TM (BHN BAKU KOSMETIK) COA 828017668K", "output": "38249999"}, {"text_input": "What is the hs code for MELANOSTATINE TM 5BG (50PPM) (BHN BAKU KOSMETIK) COA 817048274L", "output": "38249999"}, {"text_input": "What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 702018037K", "output": "38249999"}, {"text_input": "What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769017736K", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK), COA 785017958K", "output": "38249999"}, {"text_input": "What is the hs code for LANACHRYS 2B PF (BHN BAKU KOSMETIK), COA 793057447K", "output": "38249999"}, {"text_input": "What is the hs code for MINIPORYL TM (BHN BAKU KOSMETIK), COA 832017667K", "output": "38249999"}, {"text_input": "What is the hs code for NEUTRAZEN TM (BHN BAKU KOSMETIK), COA 828018191L", "output": "38249999"}, {"text_input": "What is the hs code for LANABLUE TM PARABEN FREE (BHN BAKU KOSMETIK), COA 788027752K", "output": "38249999"}, {"text_input": "What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 070120, 291219", "output": "25070000"}, {"text_input": "What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-190405", "output": "29397900"}, {"text_input": "What is the hs code for METHISOPRINOL (BHN BAKU OBAT) COA MTP0030136", "output": "29349990"}, {"text_input": "What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 20100228, 20100234", "output": "29395900"}, {"text_input": "What is the hs code for LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 19480", "output": "38249999"}, {"text_input": "What is the hs code for GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 2010001900", "output": "38249999"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200315", "output": "17029019"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR...(BHN BAKU PEWARNA TABLET)COA D180J9M003", "output": "39123900"}, {"text_input": "What is the hs code for CLEANBIO TM-ZINC (PROTECT) (CL0024-K18) (BAHAN BAKU KOSMETIK) COA 20ZDP", "output": "38249999"}, {"text_input": "What is the hs code for SODIUM VALPROATE (BAHAN BAKU OBAT) COA.454191", "output": "29159090"}, {"text_input": "What is the hs code for PIROXICAM (BHN BAKU OBAT) COA PRX2019017M", "output": "29349990"}, {"text_input": "What is the hs code for SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 1908075969", "output": "29322090"}, {"text_input": "What is the hs code for ARGAN OIL,10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0026660", "output": "29362500"}, {"text_input": "What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0220020001", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0220020001", "output": "29420000"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPLEMEN) COA XH20200202", "output": "29362800"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT(BHN BAKU SUPLEMEN) COA WB00519139", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519139", "output": "29362200"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00619040,19041", "output": "29362300"}, {"text_input": "What is the hs code for STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN541002", "output": "35051010"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH628040", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH627591", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH627585", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH627588", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH627590", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH627584", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW BROWN (BHN BAKU PEWARNA TABLET) COA SH627614", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH627586", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH627594", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH627404", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH627688", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH627611", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH627274", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH627615", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE PURPLE (BHN BAKU PEWARNA TABLET) COA SH628511", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE PURPLE (BHN BAKU PEWARNA TABLET) COA SH628510", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE(BHN BAKU PEWARNA TABLET) COA SH628201", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH628200", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH628209", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH628208", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH628661", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II AMB RED (BHN BAKU PEWARNA TABLET) COA SH628660", "output": "38249999"}, {"text_input": "What is the hs code for HYDROCHLOROQUINE SULFATE (BHN BAKU OBAT) COA 12-SQKB-200306", "output": "29334990"}, {"text_input": "What is the hs code for L-LYSINE HYDROCHLORIDE (FEED GRADE) 98.5PCT (BHN BAKU UTK PAKAN TERNAK )COA QDDX20-03-0140HJ-IB", "output": "29349990"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH628031", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH627813", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH627814", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH627831", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH627859", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY BROWN (BHN BAKU PEWARNA TABLET) COA SH627815", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH628016", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH627812", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH628041", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH628015", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH628014", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH627879", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH628017", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH628013", "output": "39061090"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX2004009, 4010", "output": "29181400"}, {"text_input": "What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-021920", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 2019F1287", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-01043029,010430", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND GLA-40 (BHN BAKU KOSMETIK) COA GLCP-020310", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-030529", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK)COA AACN-011310", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND CUCUMBER EXTRACT (BHN BAKU KOSMETIK) COA CUPD-012020", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) COA MSEEC-022219", "output": "38249999"}, {"text_input": "What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA 20200318", "output": "11081200"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA083206, 204", "output": "28363000"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200323", "output": "17029019"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200311", "output": "17029019"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200317", "output": "17029019"}, {"text_input": "What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA 20200314", "output": "17023010"}, {"text_input": "What is the hs code for BICAR FOOD 27/50 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP07720", "output": "28363000"}, {"text_input": "What is the hs code for FLOWLAC (R) 100H (BHN BAKU OBAT) COA. L105810250", "output": "17021100"}, {"text_input": "What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104310620", "output": "17021100"}, {"text_input": "What is the hs code for CAPSULAC (R) 60 (BHN BAKU OBAT) COA L100410520", "output": "17021100"}, {"text_input": "What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103860220", "output": "17021100"}, {"text_input": "What is the hs code for CELLACTOSE (R) 80 (BHN BAKU OBAT) COA L100460120", "output": "17021100"}, {"text_input": "What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT FS, 5KG ALU (BHN BAKU SUPLEMEN) COA UE01907002", "output": "29420000"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL02001606", "output": "29362700"}, {"text_input": "What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110015", "output": "29420000"}, {"text_input": "What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110015", "output": "29420000"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT EMULS (BHN BAKU SUPLEMEN) COA UE01910016", "output": "32041900"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT EM YELLOW (BHN BAKU SUPLEMEN) COA UT20030001", "output": "32041900"}, {"text_input": "What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ000217003,4, UQ90907011", "output": "29420000"}, {"text_input": "What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ00217002, 7005", "output": "29420000"}, {"text_input": "What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ00317004", "output": "29420000"}, {"text_input": "What is the hs code for VC ASCORBIC ACID 325 MESH, 20KG BOA1PO... (BAHAN BAKU SUPLEMEN) COA HPD191019,2003036, 3042...", "output": "29362700"}, {"text_input": "What is the hs code for VC ASCORBIC ACID 325 MESH, 20KG BOA1PO (BAHAN BAKU SUPLEMEN) COA HPD2003089,3096.,3103,3113", "output": "29362700"}, {"text_input": "What is the hs code for VC ASCORBIC ACID DC 97PCT ,25KG BAL (BHN BAKU SUPLEMEN) COA HPG1910002, HPG2003001", "output": "29362700"}, {"text_input": "What is the hs code for CHOLINE CHLORIDE 60 PCT (BHN BAKU PAKAN UTK TERNAK), COA 202003T-CCH", "output": "38249999"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS (KOSHER-PASSOVER) (BHN BAKU MAKANAN) COA UJ012, UJ013", "output": "29181400"}, {"text_input": "What is the hs code for RANITIDINE HCL USP (BHN BAKU OBAT)COA. RH0470120,0480120,1970320", "output": "29321900"}, {"text_input": "What is the hs code for TRISODIUMCITRATE DIHYDRATE FINE GRANULAR (BHN BAKU MAKANAN), COA UJ006", "output": "29181400"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU MAKANAN) COA UJ012", "output": "29181400"}, {"text_input": "What is the hs code for IMERCARE 400D S (BHN BAKU KOSMETIK) COA 1905A4-05", "output": "38029090"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ91210334", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ91210316", "output": "29362300"}, {"text_input": "What is the hs code for REDIVIVO (R) LYCOPENE 10PCTCWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110015", "output": "29420000"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02001022", "output": "32041900"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE02001022", "output": "32041900"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG(BHN BAKU SUPLEMEN) COA UT20020008", "output": "32030010"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19120057", "output": "29362100"}, {"text_input": "What is the hs code for CAPSULAC (R) 60 (BHN BAKU OBAT) COA L100410520", "output": "17021100"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET), COA SH629243", "output": "38249999"}, {"text_input": "What is the hs code for BACTO TRYPTONE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0042379", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTONE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0042379", "output": "38210090"}, {"text_input": "What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9121860", "output": "38210090"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200327", "output": "17029019"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 2AX2004041, 4043", "output": "29181400"}, {"text_input": "What is the hs code for CLEANBIO TM-ZINC (PROTECT) (CL0024-K18) (BAHAN BAKU KOSMETIK) COA 20ZDP", "output": "38249999"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA.122000006,7,8", "output": "28363000"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL (BHN BAKU PEWARNA TABLET)COA D180K19002", "output": "39123900"}, {"text_input": "What is the hs code for VACCINIUM MYRTYLLUS DRY EX. (BHN BAKU SUPLEMEN) COA 20S0047001", "output": "13021990"}, {"text_input": "What is the hs code for P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 32347/M1", "output": "13021990"}, {"text_input": "What is the hs code for BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 20S0062103", "output": "13021990"}, {"text_input": "What is the hs code for GREEN TEA DRY DEC.EX/PHOSPHOL (BHN BAKU SUPLEMEN) COA 19S0269701", "output": "13021950"}, {"text_input": "What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 19S0108400", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 19S0193900", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 19S0209900", "output": "38249999"}, {"text_input": "What is the hs code for GREEN TEA DRY DEC.EX/PHOSPHOL (BHN BAKU SUPLEMEN) COA 19S0269701", "output": "13021950"}, {"text_input": "What is the hs code for CURCUMA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 20S0035903", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA/PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 32811/H1", "output": "38249999"}, {"text_input": "What is the hs code for VACCINIUM MYRTILLUS DRY EX (BHN BAKU SUPLEMEN) COA 20S0047001", "output": "13021990"}, {"text_input": "What is the hs code for STAY-C (R) 50,20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE01903046,49", "output": "29362700"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT20010015,23", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT20010023", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL(BHN BAKU KOSMETIK) COA UT19100257", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT20010010", "output": "29362800"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01905018", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT19120041", "output": "29362900"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ90902406,UQ91002494", "output": "29362200"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE, 29KG BOX (BHN BAKU MAKANAN) COA QZ11190614", "output": "29362500"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11190614", "output": "29362500"}, {"text_input": "What is the hs code for NIACINAMIDE FCC,25KG BOX (BHN BAKU MAKANAN) COA 0000187473", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12001013", "output": "29362900"}, {"text_input": "What is the hs code for ANTIOXIDANT PREMIX FOR GUMMY (BHN BAKU MAKANAN) COA XW92003065", "output": "21069059"}, {"text_input": "What is the hs code for NIACINAMIDE FCC, 25KG BOX (BHN BAKU MAKANAN) COA 0000187473", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02001008", "output": "29362800"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL01911147", "output": "29362400"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU MAKANAN) COA UT19100257", "output": "29362800"}, {"text_input": "What is the hs code for DL-ALPHA-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT19100257", "output": "29362800"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11190614", "output": "29362500"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90802361", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90902406", "output": "29362200"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT GRANULATION,25KG BOX (BHN BAKU SUPLEMEN) COA WB19119007", "output": "29362700"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91002494", "output": "29362200"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12001013", "output": "29362900"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01912527", "output": "29362700"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19080153", "output": "29362400"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01912527", "output": "29362700"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01912527", "output": "29362700"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL01912527", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WP19119007", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT GRANULATION ,25KG BOX (BHN BAKU SUPLEMEN) COA WB19119007,9009", "output": "29362700"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519041", "output": "29362500"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT19040012", "output": "32041900"}, {"text_input": "What is the hs code for CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB19100012", "output": "29362700"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD(BHN BAKU SUPLEMEN) COA UT19090007", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT19090018,19", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00619041", "output": "29362300"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519058", "output": "29362200"}, {"text_input": "What is the hs code for D-PANTHENOL 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01911147", "output": "29362400"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ00103303", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ90802361, UQ90902406", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90902406", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91002494", "output": "29362200"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT20010188,189", "output": "29362100"}, {"text_input": "What is the hs code for NIACINAMIDE FCC, 25KG BOX (BHN BAKU SUPLEMEN) COA 0000187473", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE FCC, 25KG BOX (BHN BAKU MAKANAN) COA 0000187473", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT19100220", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02001008", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02001008", "output": "29362800"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ00103303", "output": "29362200"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT19110014", "output": "29362600"}, {"text_input": "What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219040084", "output": "29420000"}, {"text_input": "What is the hs code for LIQUORICE LC (BHN BAKU KOSMETIK) COA.115385", "output": "13021920"}, {"text_input": "What is the hs code for PLAISANCE P116808 (BHN BAKU KOSMETIK) COA.0000038952", "output": "33029000"}, {"text_input": "What is the hs code for THE MATCHA I P001602 (BHN BAKU KOSMETIK) COA 0000038942", "output": "33029000"}, {"text_input": "What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU PEWARNA TABLET) COA WP814318,AZ5755", "output": "32151900"}, {"text_input": "What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU PEWARNA TABLET) COA WP822185", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C BLUE #1/BRILLIANT BLUE (BHN BAKU PEWARNA TABLET) COA WP816335", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU PEWARNA TABLET) COA WP822862", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C BLUE #1/BRILLIANT BLUE (BHN BAKU PEWARNA TABLET) COA WP816335:AZ6852", "output": "32151900"}, {"text_input": "What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU PEWARNA TABLET) COA WP824673:1", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU PEWARNA TABLET) COA WP822866:BA0298", "output": "32151900"}, {"text_input": "What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU PEWARNA TABLET) COA WP814316:AZ5758", "output": "32151900"}, {"text_input": "What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA OBAT) COA WP821786", "output": "39059990"}, {"text_input": "What is the hs code for FD AND C RED #40/ALLURA RED AC AL (BHN BAKU PEWARNA TABLET) COA WP820592:AZ8936", "output": "32151900"}, {"text_input": "What is the hs code for FC AND C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP818232:AZ7799", "output": "32151900"}, {"text_input": "What is the hs code for PREDNISONE USP42 (BHN BAKU OBAT) COA.NPD200410", "output": "29372100"}, {"text_input": "What is the hs code for BOTTLE GRAM SAFRANIN 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 002819, 9353466", "output": "38210090"}, {"text_input": "What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0041114", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B02B318M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9309252", "output": "38210090"}, {"text_input": "What is the hs code for NYSTATIN POWDER ROW (BHN BAKU OBAT) COA C114387, C114399", "output": "29419000"}, {"text_input": "What is the hs code for NYSTATIN MICRONIZED ROW (BHN BAKU OBAT) COA C131274", "output": "29419000"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP20034458, XP20034459", "output": "29211900"}, {"text_input": "What is the hs code for SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA 200309012", "output": "38249999"}, {"text_input": "What is the hs code for BIOCELLACT CHAMOMILLA BD (BHN BAKU KOSMETIK) COA 193125", "output": "13021990"}, {"text_input": "What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 191799", "output": "13021990"}, {"text_input": "What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 193115", "output": "29329990"}, {"text_input": "What is the hs code for PHYTO COLLAGE B (N) (BHN BAKU KOSMETIK) COA 192085,192760", "output": "13021990"}, {"text_input": "What is the hs code for CINDERELLACARE (BHN BAKU KOSMETIK), COA 192822", "output": "13021990"}, {"text_input": "What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 192929", "output": "13021990"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT19120262, 263", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19110102", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ91110280", "output": "29362300"}, {"text_input": "What is the hs code for PX 103070C (BHN BAKU MAKANAN) COA XW92003289, 90", "output": "21069059"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT19080029", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19090007", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519139", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519058", "output": "29362200"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL01912527", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT20010188", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01902012", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19080153,154", "output": "29362400"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL-ACETATE,20KG JUG (BHN BAKU SUPLEMEN) COA XH20200202", "output": "29362800"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB01906085,87,88", "output": "29362300"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519041", "output": "29362500"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91013186", "output": "29362500"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT GRANULATION ,25KG BOX (BHN BAKU SUPLEMEN) COA WB19119010", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01908419", "output": "29362700"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ91110280", "output": "29362300"}, {"text_input": "What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P9R08QA000, P9R09QA000", "output": "29420000"}, {"text_input": "What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000187434", "output": "29362900"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01911147,01911148,02001008", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519100308,0519110335", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519110335,336", "output": "29420000"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0034823", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0013917", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SODIUM DESOXYCHOLATE 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8312884", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 00348236", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9211356", "output": "38210090"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY ... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH0014801,28518,34699", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 8219795,9302047", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9161608", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273651", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9323677", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9315468", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9148762", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MAC-CONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9161545", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273402", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9302327", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239367", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239319", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9338809", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0008443", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9287872", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9353100", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9316509", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239367", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9324109", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9302327", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BIGGY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9231143", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0013690", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9175490", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MYP AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9324178", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309193", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0021157", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218024", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0056343", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9224604", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE YEAST CARBON BASE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0038689", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE WL DIFFERENTIAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9337172", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9280615", "output": "38210090"}, {"text_input": "What is the hs code for GASPAK EZ STANDARD INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH7326629010", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0042967", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9344975", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 9353100", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273651", "output": "38210090"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0034699", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9211356", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9273651", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9324109", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9324109", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9315219", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9219559", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0034823", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9302047", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161680", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0009096", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218604", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 9127592", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 92188048", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161608", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9211435", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9021613", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9315468", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161545", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9310881", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9261868", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161934", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9315219", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9241879", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9338809", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0008443", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9211362", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9273839", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0021091", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9287872", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9231272", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9353100", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9239628", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9309312", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9295486", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9219559,9364957", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0034823,9280673", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239282", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9218604", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9273651", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0077148", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9261868", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9239319", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BPOTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9311217", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9241879", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0008443", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9324109", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9353100", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9309312", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9273651", "output": "38210090"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 0034699", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALT AGAR 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9302327", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9364957", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9338809", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9316509890", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9352422", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9269210", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH9296257,9310358", "output": "38210090"}, {"text_input": "What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA D01431UP", "output": "29053200"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA C002-YB2004279, C002-YB2004305", "output": "29211900"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP09620", "output": "28363000"}, {"text_input": "What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 189135", "output": "29332900"}, {"text_input": "What is the hs code for SCHISANDRA EXTRACT (BAHAN BAKU OBAT) COA SCE03-20041601", "output": "13021990"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 1903224672", "output": "29372900"}, {"text_input": "What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ00317004,7007", "output": "29420000"}, {"text_input": "What is the hs code for PYRAZINAMIDE EP/USP (BHN BAKU OBAT) COA WHOPZ 259 B 20 S/D WHOPZ 269 B 20", "output": "29339990"}, {"text_input": "What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET), COA DT700664", "output": "32151900"}, {"text_input": "What is the hs code for OPALUX MAROON (BHN BAKU PEWARNA TABLET), COA DT700663", "output": "32151900"}, {"text_input": "What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET) COA DT700640", "output": "32151900"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 20 PREMIUM (BHN BAKU PEWARNA TABLET), COA D184J3H021", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV (BHN BAKU PEWARNA TABLET)COA D011J7KL02", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM (BHN BAKU PEWARNA TABLET) COA D180J8O001", "output": "39123900"}, {"text_input": "What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA 8MT200345", "output": "30032000"}, {"text_input": "What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 1911237,1911238,1952087,1911242", "output": "29242990"}, {"text_input": "What is the hs code for POVIDONE K-25 (BHN BAKU OBAT) COA PK25-200106F11", "output": "39059990"}, {"text_input": "What is the hs code for CROSPOVIDONE XL (BHN BAKU OBAT) COA PP200221XL", "output": "39059990"}, {"text_input": "What is the hs code for CITICOLINE SODIUM (BHN BAKU OBAT) COA 3A26190722, 3A26200111", "output": "29349990"}, {"text_input": "What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 2003028", "output": "29349990"}, {"text_input": "What is the hs code for INOSITOL (BHN BAKU OBAT) COA 202003060", "output": "29061300"}, {"text_input": "What is the hs code for GLUCOSAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA WA202002008", "output": "29329990"}, {"text_input": "What is the hs code for METHYLSULFONYLMETHANE USP (BHN BAKU OBAT) COA 20200316", "output": "29309090"}, {"text_input": "What is the hs code for IRBESARTAN (BHN BAKU OBAT), COA C5562-19-008", "output": "29332900"}, {"text_input": "What is the hs code for LEVOFLOXACIN HEMIHYDRATE (FREEALKALINE) BHN BAKU OBAT,COA C008-1912114", "output": "29349990"}, {"text_input": "What is the hs code for FIBRE DRUM, PRICE AND AMOUNT ARE FOR CUSTOM ONLY", "output": "48192000"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM INJECTABLE GRADE (BHN BAKU OBAT) COA 19121331,19121332", "output": "29331900"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM REGULAR GRADE (BHN BAKU OBAT) COA 2004586", "output": "29331900"}, {"text_input": "What is the hs code for CAFFEINE (BHN BAKU OBAT) COA 2003535,2004595,2004600,2004601,2004610", "output": "29393000"}, {"text_input": "What is the hs code for IBUPROFEN (BHN BAKU OBAT) COA 20017043", "output": "29163990"}, {"text_input": "What is the hs code for IBUPROFEN ( BHN BAKU OBAT) COA 20047165", "output": "29163990"}, {"text_input": "What is the hs code for BICAR FOOD 27/50 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP09120", "output": "28363000"}, {"text_input": "What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED(BHN BAKU UTK PAKAN TERNAK ) COA MTP01620", "output": "28363000"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01905018", "output": "29362900"}, {"text_input": "What is the hs code for PX103070-C3 (BHN BAKU MAKANAN) COA XW92003292", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN MINERAL PREMIX INSTANT DRINK (BHN BAKU MAKANAN) COA XW92003299", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92003344", "output": "21069059"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT19120041", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01905018", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE01905018", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT20010918", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20010010", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT20010011", "output": "29362800"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905018", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL 340,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219040084", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0519110336,10337,20366", "output": "29420000"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT20010915", "output": "29362100"}, {"text_input": "What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF19085007,UF18316006", "output": "29420000"}, {"text_input": "What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF19085007", "output": "29420000"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT20010023", "output": "29362800"}, {"text_input": "What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF19085007", "output": "29420000"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT20010023,25", "output": "29362800"}, {"text_input": "What is the hs code for OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET), COA SH629487", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY PURPLE (BHN BAKU PEWARNA TABLET) COA SH628514", "output": "38249999"}, {"text_input": "What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 121910329", "output": "29054300"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000009", "output": "28363000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000009", "output": "28363000"}, {"text_input": "What is the hs code for WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK)COA EG138-191002", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-C0200101", "output": "38249999"}, {"text_input": "What is the hs code for GRAPE SEED ORGANIC OIL (BHN BAKU KOSMETIK)COA RPM200102-ENBIO", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK)COA CFM191201-PGH", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-200101", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-200102", "output": "38249999"}, {"text_input": "What is the hs code for PEPPERMINT ORGANIC DISTILLATE 1:5 SB (BHN BAKU KOSMETIK) COA MEPD200401-BIO", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR ( BHN BAKU KOSMETIK) COA CHS191102", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS191102", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) CFM191201-PGH", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-C0200101", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-200101", "output": "38249999"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO190102", "output": "38249999"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO190102", "output": "38249999"}, {"text_input": "What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA.0000070426", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA.0000070427", "output": "29309090"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 78508188L", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785018258L", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785018040L", "output": "38249999"}, {"text_input": "What is the hs code for PROGELINE TM (BHN BAKU KOSMETIK) COA 820057918L", "output": "38249999"}, {"text_input": "What is the hs code for MELANOSTATINE TM 5 BG (50PPM) (BHN BAKU KOSMETIK) COA 817048274L", "output": "38249999"}, {"text_input": "What is the hs code for MELANOSTATINE TM 5 BG (BHN BAKU KOSMETIK), COA 817048274L", "output": "38249999"}, {"text_input": "What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK), COA 784027671K", "output": "38249999"}, {"text_input": "What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK), COA 769017736K", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK), COA 785018188L", "output": "38249999"}, {"text_input": "What is the hs code for LANACHRYS 2B PF (PRESERVATIVE (BHN BAKU KOSMETIK), COA 793057689K", "output": "38249999"}, {"text_input": "What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK), COA 784027993K", "output": "38249999"}, {"text_input": "What is the hs code for MELANOSTATINE TM 5 BG (50PPM) (BHN BAKU KOSMETIK), COA 817048335L", "output": "38249999"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0037326", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 8285857", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 90011569", "output": "38210090"}, {"text_input": "What is the hs code for VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9283338", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9340914", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0050168", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOBACILLLI MRS BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273767", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0063478", "output": "38210090"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9312760", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH0009986,9364835", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8207980", "output": "38210090"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9312760", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9254142", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9254801", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9189630", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239389", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH0015023,9246040", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0007091", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037338", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037326", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037326", "output": "38210090"}, {"text_input": "What is the hs code for CD117PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0030043", "output": "38210090"}, {"text_input": "What is the hs code for CD10 APC HI10A 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9269823", "output": "38210090"}, {"text_input": "What is the hs code for CD25 PE 2A3 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0010234", "output": "38210090"}, {"text_input": "What is the hs code for CD34 PE-CY7 8G12 Y7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9358599", "output": "38210090"}, {"text_input": "What is the hs code for ANTI-KAPPA FITC/ ANTI-LAMBDA PE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0043087", "output": "38210090"}, {"text_input": "What is the hs code for CD20 V500-C RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9331815", "output": "38210090"}, {"text_input": "What is the hs code for CD200 APC (MRC OX-104) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0052723", "output": "38210090"}, {"text_input": "What is the hs code for CD38 APC-H7 (HB7) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0076940", "output": "38210090"}, {"text_input": "What is the hs code for CD56 APC NCAM 16.2 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0063445", "output": "38210090"}, {"text_input": "What is the hs code for CD11B APC D12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9330650", "output": "38210090"}, {"text_input": "What is the hs code for CD23 FITC EBVCS-5 RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9351395", "output": "38210090"}, {"text_input": "What is the hs code for HU CD64 APC-H7 10.1 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9039654", "output": "38210090"}, {"text_input": "What is the hs code for HU CD36 HORIZON V450 CB38 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9136944", "output": "38210090"}, {"text_input": "What is the hs code for HU CD3 BV421 HI 10A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9113553", "output": "38210090"}, {"text_input": "What is the hs code for HU CD10 BV421 HI10A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9262144", "output": "38210090"}, {"text_input": "What is the hs code for HU CD19 BV510 SJ25C1 100 TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9337378", "output": "38210090"}, {"text_input": "What is the hs code for HU CD14 BV421 MPHIP9 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0010270", "output": "38210090"}, {"text_input": "What is the hs code for HU CD138 BV421 MI15 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9301758", "output": "38210090"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9312760", "output": "38210090"}, {"text_input": "What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0017348", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8207980", "output": "38210090"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9312760", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9254801,9338712", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0015023", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9284311", "output": "38210090"}, {"text_input": "What is the hs code for PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PI18050006", "output": "29349920"}, {"text_input": "What is the hs code for MC-GLUCAN (BHN BAKU KOSMETIK) COA MCGL200310", "output": "39139090"}, {"text_input": "What is the hs code for MIRANOL ULTRA C-32 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP002102R", "output": "34029099"}, {"text_input": "What is the hs code for OPACODE WHITE (BHN BAKU PEWARNA TABLET), COA WP826254", "output": "32151900"}, {"text_input": "What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP821800", "output": "39059990"}, {"text_input": "What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP821799", "output": "39059990"}, {"text_input": "What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP821797", "output": "39059990"}, {"text_input": "What is the hs code for FD & C YELLOW #5/TARTRAZINE AL(BHN BAKU PEWARNA TABLET) COA WP822866", "output": "32151900"}, {"text_input": "What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU PEWARNA TABLET) COA WP814316", "output": "32151900"}, {"text_input": "What is the hs code for EPA DHA 44 37 (BHN SUPLEMEN KESEHATAN) COA EE4437-200320", "output": "29061300"}, {"text_input": "What is the hs code for PACLITAXEL SEMISYNTHETIC (USP,TEST-2) (BHN BAKU OBAT) COA 8920NSH002", "output": "29329990"}, {"text_input": "What is the hs code for MONENDOX 200 BMP (BHN BAKU UTK PAKAN TERNAK) COA 2004061", "output": "29419000"}, {"text_input": "What is the hs code for LIPOID S 20 (BHN BAKU OBAT) COA. 572000-2190132/001-024 (24)", "output": "29232010"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU MAKANAN) COA TS00014427", "output": "29362500"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 INF OIL, 4,5KG PJUG (BHN BAKU SUPLEMEN) COA TS00014322", "output": "29362500"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000173", "output": "28363000"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA109206", "output": "28363000"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP09620", "output": "28363000"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 COARSE GRADE SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP09520", "output": "28363000"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH628444", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH628578", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY EZ CLEAR (BHN BAKU PEWARNA TABLET) COA SH628367", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH628364", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH628409", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH628341", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH628401", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH628421", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY QX YELLOW (BHN BAKU PEWARNA TABLET) COA SH628410", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY 200 PINK (BHN BAKU PEWARNA TABLET) COA SH628411", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH628367", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH628043", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH629181", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY EZ CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH628367", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH628366", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA SH628368", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH627584", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH629269", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH628363", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GRAY (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH628369", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH628398", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH628652", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH628578", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH628167", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY BROWN (BHN BAKU PEWARNA TABLET) COA SH628513", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH629727", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH629269", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH627919", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH628512", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH628565", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH629768", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH628542", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH629710", "output": "38249999"}, {"text_input": "What is the hs code for TABCOAT TC WHITE (BHN BAKU PEWARNA TABLET), COA GA670560", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY SGR CLEAR (BHN BAKU UTK PEWARNA OBAT) COA GA670561", "output": "38249999"}, {"text_input": "What is the hs code for ZINC PICOLINATE (BAHAN BAKU OBAT), COA 20002", "output": "29333910"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET), COA SH628731", "output": "38249999"}, {"text_input": "What is the hs code for ONDANSETRON HCL USP (BHN BAKU OBAT) COA 19OS001", "output": "29332900"}, {"text_input": "What is the hs code for ROVIMIX E 50 ADSORBATE (BHN BAKU UTK PAKAN TERNAK) COA VX12004044,45", "output": "29362800"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20191001", "output": "29362800"}, {"text_input": "What is the hs code for MIXED TOCOPHEROL 95 (BHN BAKU MAKANAN, COA XH20191001", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A, 20KG BA (BHN BAKU MAKANAN) COA WB19110478,479,480", "output": "29362100"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20191201", "output": "29362800"}, {"text_input": "What is the hs code for LIFE'S ARA (TM)'12' N-6 ARA POWDER (BHN BAKU MAKANAN), COA WB200103654", "output": "29362500"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A, 20KG BA (BHN BAKU MAKANAN) COA WB19110490", "output": "29362100"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20191201", "output": "29362800"}, {"text_input": "What is the hs code for CAROPHYLL PINK 10PCT-CWS (BHN BAKU UTK PAKAN TERNAK) COA UE01909787", "output": "32041900"}, {"text_input": "What is the hs code for ROVIMIX CALPAN, 25KG BOX (BHN BAKU UTK PAKAN TERNAK) COA TL01912418", "output": "29362400"}, {"text_input": "What is the hs code for CAROPHYLL PINK 10PCT-CWS (BHN BAKU UTK PAKAN TERNAK) COA UE01909787,9825", "output": "32041900"}, {"text_input": "What is the hs code for ROVIMIX AD3 1000/200,20KG BAG (BHN BAKU UTK PAKAN TERNAK) COA UT19111068,069", "output": "29362100"}, {"text_input": "What is the hs code for ROVIMIX NIACIN (BHN BAKU UTK PAKAN TERNAK) COA 27014,27015", "output": "29362900"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU UTK PEWARNA TABLET) COA SH629812", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA OBAT) COA SH630209", "output": "38249999"}, {"text_input": "What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA LC005-20-801", "output": "17021100"}, {"text_input": "What is the hs code for POVIDONE K-25 (BHN BAKU OBAT) COA PK25-200106F11", "output": "39059990"}, {"text_input": "What is the hs code for CROSPOVIDONE XL (BHN BAKU OBAT) COA PP200221XL", "output": "39059990"}, {"text_input": "What is the hs code for CITICOLINE SODIUM (BHN BAKU OBAT) COA 3A26190722, 3A26200111", "output": "29349990"}, {"text_input": "What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 2003028", "output": "29349990"}, {"text_input": "What is the hs code for INOSITOL (BHN BAKU OBAT) COA 202003060", "output": "29061300"}, {"text_input": "What is the hs code for GLUCOSAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA WA202002008", "output": "29329990"}, {"text_input": "What is the hs code for METHYLSULFONYLMETHANE USP (BHN BAKU OBAT) COA 20200316", "output": "29309090"}, {"text_input": "What is the hs code for IRBESARTAN (BHN BAKU OBAT), COA C5562-19-008", "output": "29332900"}, {"text_input": "What is the hs code for LEVOFLOXACIN HEMIHYDRATE (FREEALKALINE) BHN BAKU OBAT,COA C008-1912114", "output": "29349990"}, {"text_input": "What is the hs code for FIBRE DRUM, PRICE AND AMOUNT ARE FOR CUSTOM ONLY", "output": "48192000"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED GRADE A) BHN BAKU OBAT, COA M532342 S/D 46", "output": "29411019"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX POWDER) ,BHN BAKU OBAT, COA M484499", "output": "29411019"}, {"text_input": "What is the hs code for CLOTRIMAZOLE MICRONIZED (BHN BAKU OBAT ) COA 201910150265", "output": "29332900"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE, 25KG BOX/ALU(BHN BAKU MAKANAN) COA UQ91106273,274", "output": "29362700"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ91210316", "output": "29362300"}, {"text_input": "What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT20010007", "output": "29362500"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT20020008", "output": "32030010"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ91106274", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01912558", "output": "29362700"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT20020016", "output": "29362800"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL01912558, TL02001606", "output": "29362700"}, {"text_input": "What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT19120016", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT20020094", "output": "29362100"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ91106272,6274", "output": "29362700"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT20030023", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN) COA UT20030939", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO)BHN BAKU MAKANAN, COA UT20030939, 940", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT19100025", "output": "29362100"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT20020008", "output": "32030010"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02001022", "output": "32041900"}, {"text_input": "What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT20010010", "output": "29362500"}, {"text_input": "What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT20010006,7,10", "output": "29362500"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL02003119,3127, 3135,3141", "output": "29362700"}, {"text_input": "What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01912150", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT20010918", "output": "29362100"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01912150", "output": "29362400"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL-ACETATE (BHN BAKU KOSMETIK) COA UT20020036", "output": "29362800"}, {"text_input": "What is the hs code for ARGAN OIL ,10KG PAIL PE(BHN BAKU KOSMETIK) COA AVD0026660", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)(BHN BAKU KOSMETIK) COA UT20010189", "output": "29362100"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708200029,30", "output": "29420000"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000188161", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0320050440,441", "output": "29420000"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL01912150", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN A PALMITATE TYPE 250CWS/F (BHN BAKU MAKANAN) COA UT19090010,11", "output": "29362100"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519039", "output": "29362500"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL-ACETATE, 20KG JUG (BHN BAKU SUPLEMEN) COA XH20200202", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW92004206,07", "output": "21069059"}, {"text_input": "What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92004202", "output": "21069059"}, {"text_input": "What is the hs code for CATECHINS (TEA EXTRACT) (BHN BAKU SUPLEMEN KESEHATAN), COA 002211", "output": "21012020"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH6289710", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH629445", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH628409", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH628421", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH629488", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH629446", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH629459", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH628039", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH629660", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL -EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH629458", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH629483", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH629485", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH629460", "output": "38249999"}, {"text_input": "What is the hs code for PIGMENT BLEND BROWN (BHN BAKU PEWARNA TABLET) COA SH629461", "output": "32151900"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BOCARBONATE (BHN BAKU OBAT) COA RBA1042000", "output": "28363000"}, {"text_input": "What is the hs code for MONOPOT PHOS MKP FG 25K BG (BHN BAKU KOSMETIK) COA 20-015-01", "output": "29420000"}, {"text_input": "What is the hs code for PARACETAMOL USP (BHN BAKU OBAT) COA 1952499,1951956,1951890,1911136", "output": "29242990"}, {"text_input": "What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA2004247 S/D 4256", "output": "29224900"}, {"text_input": "What is the hs code for BETAHISTINE MESILATE EP (BHN BAKU OBAT) COA EDBHM20001", "output": "29333990"}, {"text_input": "What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBN2830919", "output": "29221990"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB19110257", "output": "29362100"}, {"text_input": "What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWER CATCOL C 135 (L) GRADE (BHN BAKU KOSMETIK) COA163/20", "output": "38249999"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 08800420,08810420,08820420,08830420...", "output": "29359000"}, {"text_input": "What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-022019", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-613079", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND CARBAMIDE(BHN BAKU KOSMETIK) COA U200410", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 040920", "output": "38249999"}, {"text_input": "What is the hs code for EXTRAPONE ACEROLA B (BHN BAKU KOSMETIK) COA 10300043", "output": "38249999"}, {"text_input": "What is the hs code for D&C GREEN NO.5 C.I.61570 FDA CERTIFIED (BHN BAKU KOSMETIK) COA 10300034", "output": "38249999"}, {"text_input": "What is the hs code for C47-051 SUNCROMA TITANIUM DIOXIDE (BHN BAKU KOSMETIK) COA 2693660200102", "output": "38249999"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0066956", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0023070", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0079232", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0079211", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0077148", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9302311", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0008275", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048064", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0047064", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9364856", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9337215", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239367", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BROT 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239319", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9324109", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0062582", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9231272", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9296257", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9211356", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239282", "output": "38210090"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0041165", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9302047", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161680", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0009096", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9354166", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218604", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161608", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9211435", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9273651", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0077148", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9315468", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MAC CONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161545", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9310881", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309234", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239319", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9273397,9311217", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0037434", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9241879", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DESTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9338809", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 00084432", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9211362", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0021091", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9324109", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9287872", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 9231272", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9353100", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239628", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9309312", "output": "38210090"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0041165", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9302311", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9295511", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239319", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0013917", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0009147", "output": "38210090"}, {"text_input": "What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 19144470", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GRAM CRYSTAL VIOLET 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0055871", "output": "38210090"}, {"text_input": "What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02C042M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GRAM IODINE STABILIZED 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 0028369", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161934", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9211435", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0034823", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01C098M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9295511", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0002325", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9295511", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9295511", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9302311", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0013917", "output": "38210090"}, {"text_input": "What is the hs code for MINICAPT MOBILE MICROBIAL SAMPLER 100LPM(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9211356", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9295511", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239319", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9219559,9364957", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0077148", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 9198204", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PSEUDOMONAS AGAR P 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025631", "output": "38210090"}, {"text_input": "What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0030043", "output": "38210090"}, {"text_input": "What is the hs code for CD10 APC HI10A 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0078254", "output": "38210090"}, {"text_input": "What is the hs code for CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0079949", "output": "38210090"}, {"text_input": "What is the hs code for CD25 PE 2A3 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0050201", "output": "38210090"}, {"text_input": "What is the hs code for ANTI-HLA-DR FITC L243 (646-6)RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0063454", "output": "38210090"}, {"text_input": "What is the hs code for CD13 PE L138 100 TESTS RUO/GMP (MEDIA PENGEMBANGAN MIKRO ORGANISME,BATCH0035573,0086625,9347462", "output": "38210090"}, {"text_input": "What is the hs code for CD34 PE-CY7 8G12 Y7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9358599", "output": "38210090"}, {"text_input": "What is the hs code for ANTI-KAPPA FITC/ANTI-LAMBDA PE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0043087", "output": "38210090"}, {"text_input": "What is the hs code for CD3 APC-H7 SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0086731", "output": "38210090"}, {"text_input": "What is the hs code for CD200 APC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0086271", "output": "38210090"}, {"text_input": "What is the hs code for HU CD64 APC-H7 10.1 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9039654", "output": "38210090"}, {"text_input": "What is the hs code for HU CD36 HORIZON V450 CB38 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0058061", "output": "38210090"}, {"text_input": "What is the hs code for HU CD7 APC M-T701 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9176946", "output": "38210090"}, {"text_input": "What is the hs code for HU CD3 BV421 UCHT1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9113553", "output": "38210090"}, {"text_input": "What is the hs code for HU CD10 BV421 HI10A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9262144", "output": "38210090"}, {"text_input": "What is the hs code for HU CD19 BV510 SJ25C1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9337378", "output": "38210090"}, {"text_input": "What is the hs code for HU CD14 BV421 MPHIP9 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0010270", "output": "38210090"}, {"text_input": "What is the hs code for HU CD103 BV421 BER-ACT8 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0094483", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9018746", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SHIGELLA ANTIS POLY A LYOPHILIZED (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 9354479", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SHIGELLA ANTIS POLY B LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0066791", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SHIGELLA ANTIS POLY D LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8313989", "output": "38210090"}, {"text_input": "What is the hs code for VIAL E COLI O ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9137791", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9340914", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8248932", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SHIGELLA ANTIS POLY C1 LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9207991", "output": "38210090"}, {"text_input": "What is the hs code for HU CD103 BV421 BER-ACT8 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0094483", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364916", "output": "38210090"}, {"text_input": "What is the hs code for VIAL ISOVITALEX ENRICHMENT 10ML 5 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048880", "output": "38210090"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9312760", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 82077980", "output": "38210090"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9312760", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9338712", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0015023,9338680", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9284311", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG L & P 80 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0072634", "output": "38210090"}, {"text_input": "What is the hs code for CD34 APC 8G12 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0057095", "output": "38210090"}, {"text_input": "What is the hs code for CD7 FITC M-T701 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0063465", "output": "38210090"}, {"text_input": "What is the hs code for CD45 PERCP-CY5.5 2D1 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0079949", "output": "38210090"}, {"text_input": "What is the hs code for ANTI-HLA-DR FITC L243 (G46-6) RUO/GMP (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0063454", "output": "38210090"}, {"text_input": "What is the hs code for CD3 APC-H7 SK7 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0027983,0086731", "output": "38210090"}, {"text_input": "What is the hs code for CD10 APC HI10A 100 TESTS RUO/GMPMEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0078254", "output": "38210090"}, {"text_input": "What is the hs code for HU CD64 APC-H7 10.1 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9039654", "output": "38210090"}, {"text_input": "What is the hs code for HU CD36 HORIZON V450 CB38 50TST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0058061", "output": "38210090"}, {"text_input": "What is the hs code for HU CD7 APC M-T701 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9176946", "output": "38210090"}, {"text_input": "What is the hs code for HU CD3 BV421 UCHT1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9113553", "output": "38210090"}, {"text_input": "What is the hs code for HU CD19 BV510 SJ25C1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9337378", "output": "38210090"}, {"text_input": "What is the hs code for HU CD103 BV421 BER-ACT8 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0094483", "output": "38210090"}, {"text_input": "What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT 10X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9323256", "output": "38210090"}, {"text_input": "What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT 10X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9323256", "output": "38210090"}, {"text_input": "What is the hs code for TUBE PENASE CONCENTRATE 10X20ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0009774", "output": "38210090"}, {"text_input": "What is the hs code for CD20 V500-C RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0111271", "output": "38210090"}, {"text_input": "What is the hs code for CD20 V500-C RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 0111271", "output": "38210090"}, {"text_input": "What is the hs code for CROSPOVIDONE XL ( BAHAN BAKU OBAT ) COA PP200411XL", "output": "39059990"}, {"text_input": "What is the hs code for ISONIAZID EP (BHN BAKU OBAT) COA IZ 002 L 19", "output": "29333910"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL (BHN BAKU PEWARNA TABLET)COA D180K1G022", "output": "39123900"}, {"text_input": "What is the hs code for ADSORB AFLA (BHN BAKU UNTUK PAKAN TERNAK) COA 139", "output": "25081000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA.121910283,284", "output": "28363000"}, {"text_input": "What is the hs code for 1,3-BUTYLENE GLYCOL, COSMETIC QUALITY(BHN BAKU KOSMETIK) COA P0620120DC", "output": "29053200"}, {"text_input": "What is the hs code for AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 149947", "output": "15159011"}, {"text_input": "What is the hs code for JOJOBA OIL VIRGIN LOW ODOUR (BHN BAKU KOSMETIK) COA 151999", "output": "15159011"}, {"text_input": "What is the hs code for EUXYL PE 9010 -CN- 10KG KA (BHN BAKU KOSMETIK) COA 1547360", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 900 -CO8- 10KG KA (BHN BAKU KOSMETIK) COA 1547822,1548910", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 -CN- 10KG KA (BHN BAKU KOSMETIK) COA 1544393", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 -CN-10KG KA (BHN BAKU KOSMETIK) COA 1544393", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 120 -C08- 10 KG KA (BHN BAKU KOSMETIK) COA 1548443", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 720 -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1546693", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 -CN- 200KG FA (BHN BAKU KOSMETIK) COA 1539504, 1548913", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 100 -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1548781", "output": "38249999"}, {"text_input": "What is the hs code for SENSIDIN DO -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1548623", "output": "38249999"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000173,174", "output": "28363000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000156,157", "output": "28363000"}, {"text_input": "What is the hs code for MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HG31068, HG31229", "output": "34029099"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA122206", "output": "28363000"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA121205", "output": "28363000"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 19B0164100", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 19B0177900", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPPLEMEN) COA 19B0178000", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPPLEMEN) COA 20B0018700", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 20B0018800", "output": "13021990"}, {"text_input": "What is the hs code for VALERIAN D.H.E .0.8PCT VAL.AC (BHN BAKU SUPLEMEN) COA 19B0147600", "output": "13021990"}, {"text_input": "What is the hs code for VALERIAN D.H.E >0.8PCT VAL.AC (BHN BAKU SUPLEMEN) COA 19B0147700", "output": "13021990"}, {"text_input": "What is the hs code for SILYMARIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 19B0142500", "output": "38249999"}, {"text_input": "What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 19B0179600", "output": "38249999"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200423", "output": "17029019"}, {"text_input": "What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA 20200423", "output": "17023010"}, {"text_input": "What is the hs code for OPADRY AMB II BROWN (BHN BAKU PEWARNA TABLET) COA SH629622", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH629598", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH630374", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH630372", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH630454", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH629610", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH629605", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH629611", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH630591", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH630590", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH628746", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH630619", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH630629", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH630651", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH629422", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY PURPLE (BHN BAKU PEWARNA TABLET) COA SH628514", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY 200 PINK (BHN BAKU PEWARNA TABLET) COA SH629608", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH628167", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH628167", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH630209", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH629597", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH629652", "output": "38249999"}, {"text_input": "What is the hs code for PRECIROL ATO 5 (BHN BAKU OBAT) COA 178799", "output": "28399000"}, {"text_input": "What is the hs code for TRANSCUTOL P (BHN BAKU OBAT) COA 178799", "output": "28399000"}, {"text_input": "What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA 178703", "output": "28399000"}, {"text_input": "What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA 179088", "output": "28399000"}, {"text_input": "What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIV190701-BGBIO", "output": "38249999"}, {"text_input": "What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK)COA OLVH200202-ENBIO", "output": "38249999"}, {"text_input": "What is the hs code for SEABUCKTHORN HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HIR200101-B", "output": "38249999"}, {"text_input": "What is the hs code for SEABUCKTHORN HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HIR200101-B", "output": "38249999"}, {"text_input": "What is the hs code for PEPPERMINT ORGANIC DISTILLATE 1:5 SB (BHN BAKU KOSMETIK) COA MEPD200401-BIO", "output": "38249999"}, {"text_input": "What is the hs code for HONEY HYDROGLYCOLIC (BHN BAKU KOSMETIK) COA MIE191102", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO200101", "output": "38249999"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC ( BHN BAKU KOSMETIK) COA HEA200202", "output": "38249999"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA200403", "output": "38249999"}, {"text_input": "What is the hs code for ULVA LACTUCA ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA ULL2004R1-GS-BGBIO", "output": "38249999"}, {"text_input": "What is the hs code for TAPIOKA STARCH NATURAL 25KG BAG (BHN BAKU KOSMETIK) COA 0092", "output": "11081400"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH629700", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH630496", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH630496", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH630496", "output": "38249999"}, {"text_input": "What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 101969019, 102069005", "output": "28161000"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA RBA125200", "output": "28363000"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 14 PREMIUM (BHN BAKU PEWARNA TABLET), COA D184I39021", "output": "39123900"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 20 PREMIUM (BHN BAKU PEWARNA TABLET), COA D184J1C021", "output": "39123900"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 20 PREMIUM (BHN BAKU PEWARNA TABLET) COA D184J71021", "output": "39123900"}, {"text_input": "What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP821809", "output": "39059990"}, {"text_input": "What is the hs code for D&C YELLOW #10 AL 15PCT-20PCT (BHN BAKU PEWARNA TABLET) COA WP821809", "output": "32151900"}, {"text_input": "What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU PEWARNA TABLET) COA WP769011", "output": "32151900"}, {"text_input": "What is the hs code for FD & C BLUE #2/INDIGO CARMINE (BHN BAKU PEWARNA TABLET) COA WP825902", "output": "32151900"}, {"text_input": "What is the hs code for D & C YELLOW #10 AL 15PCT-20PCT (BHN BAKU PEWARNA TABLET) COA WP824126", "output": "32151900"}, {"text_input": "What is the hs code for FD & C YELLOW #5/TARTRAZINE AL (BHN BAKU PEWARNA TABLET) COA WP822863", "output": "32151900"}, {"text_input": "What is the hs code for FD & C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP818232", "output": "32151900"}, {"text_input": "What is the hs code for FD & C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP818225", "output": "32151900"}, {"text_input": "What is the hs code for SILVERION 2400 (BHN BAKU KOSMETIK) COA 19-05225", "output": "38249999"}, {"text_input": "What is the hs code for IBUPROFEN 40 GRADE (BHN BAKU OBAT) COA 4050-3557", "output": "29061300"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM REGULAR GRADE(BHN BAKU OBAT) COA 2004586,2004587,2004635,2004640", "output": "29331900"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM INJECTABLE GRADE (BHN BAKU OBAT) COA 19121332", "output": "29331900"}, {"text_input": "What is the hs code for DICLOFENAC SODIUM USP42 (BHN BAKU OBAT) COA DFS/10040037,10040038,10040039,10040040,10040045", "output": "29224900"}, {"text_input": "What is the hs code for DICLOFENAC POTASSIUM BP (BHN BAKU OBAT) COA DFK/10020048,10020049", "output": "29224900"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1910131,133,134", "output": "29362300"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT20030001", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT19100047", "output": "29362100"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT20030027", "output": "29362800"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL02001642", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE, 25KG BOX /ALU (BHN BAKU MAKANAN) COA UQ91106279,6280", "output": "29362700"}, {"text_input": "What is the hs code for MEG-3 (TM)'10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT20010011001606", "output": "29362500"}, {"text_input": "What is the hs code for REDIVIVO (R) (LYCOPENE)10PCT CWS/S-TG(BHN BAKU SUPLEMEN) COA UT18110017", "output": "29420000"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19120057", "output": "29362100"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT20020008", "output": "32030010"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT20040027", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN) COA UT20040959", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 MIU/G (BHN BAKU MAKANAN, COA UT20040027", "output": "29362100"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU MAKANAN) COA UT19050001", "output": "32041900"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT20020008", "output": "32030010"}, {"text_input": "What is the hs code for VIAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT20040058", "output": "29362100"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT19050001", "output": "32041900"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT20020009", "output": "32030010"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ91210340", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT20040058", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) BHN BAKU MAKANAN, COA UT20030194, 195", "output": "29362100"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT19050001", "output": "32041900"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT20020008", "output": "32030010"}, {"text_input": "What is the hs code for OPTISHARP (ZEAXANTHIN)5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19060003", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19120057", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A +D3 WATER-MISCIBLE 100/20(BHN BAKU SUPLEMEN) COA UT19100047", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT20040957, 959", "output": "29362100"}, {"text_input": "What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT)COA L101851720", "output": "17021100"}, {"text_input": "What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC011-20-801", "output": "17021100"}, {"text_input": "What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC011-20-801", "output": "17021100"}, {"text_input": "What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.20100281", "output": "29391900"}, {"text_input": "What is the hs code for BOSWELLIA SERRATA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 20T0047700", "output": "38249999"}, {"text_input": "What is the hs code for VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 121910045", "output": "28365010"}, {"text_input": "What is the hs code for EUXYL PE 9010 CN 200KG FA (BHN BAKU KOSMETIK) COA 1548913", "output": "38249999"}, {"text_input": "What is the hs code for NIACINAMIDE USP (NIACINAMIDE USP/EP) BHN BAKU KOSMETIK, COA 20-21/NMD(P)/00011,00014 S/D 17", "output": "29362900"}, {"text_input": "What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 2005EF7813", "output": "29224900"}, {"text_input": "What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK)COA MCP-N-032630", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK)COA SFP-N-021920", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND JEJU TANGERINE EXTRACT (BHN BAKU KOSMETIK) COA GTUP-T-022919", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE 1PCT SOLUTION (BHN BAKU KOSMETIK) COA HASC-142520", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK)COA MCP-N-032630", "output": "38249999"}, {"text_input": "What is the hs code for DEEP IMPACT DEO 802054 (BHN BAKU KOSMETIK) COA 10300144", "output": "38249999"}, {"text_input": "What is the hs code for PURE GREEN B&W PIT (BHN BAKU KOSMETIK) COA 10300059", "output": "38249999"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA RBA1262000", "output": "28363000"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX2005011", "output": "29181400"}, {"text_input": "What is the hs code for DIACEREIN EP (BHN BAKU OBAT) COA DCE/40060220", "output": "29389000"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200429", "output": "17029019"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A,20KG BA (BHN BAKU MAKANAN) COA WB19110485 S/D 89", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A 20KG BA (BHN BAKU MAKANAN), COA WB19110481, 483, 484", "output": "29362100"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0066953", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2189343", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2189343", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2189343", "output": "38210090"}, {"text_input": "What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9274567", "output": "38210090"}, {"text_input": "What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9121860", "output": "38210090"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL ...(BHN BAKU PEWARNA TABLET)COA D180J88002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180JAD003", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D180JB1023", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D180JAL002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180JAK002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180JAS001", "output": "39123900"}, {"text_input": "What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.20100358", "output": "29391900"}, {"text_input": "What is the hs code for PARACETAMOL USP (BHN BAKU OBAT) COA 1911559,1952548,1952591,1952604", "output": "29242990"}, {"text_input": "What is the hs code for ACRYLPOL 980 (20KG) BAHAN BAKU KOSMETIK, COA 11520003,11520004", "output": "39069099"}, {"text_input": "What is the hs code for SERASENSE SF CM5 (BAHAN BAKU KOSMETIK) COA PA00416071,PA00416073,PA00416075", "output": "29319049"}, {"text_input": "What is the hs code for TICAGRELOR (BHN BAKU OBAT) COA, TG2M006022", "output": "29091900"}, {"text_input": "What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 19B0179600", "output": "38249999"}, {"text_input": "What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 20B0037200", "output": "38249999"}, {"text_input": "What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 20B0037200", "output": "38249999"}, {"text_input": "What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 19B0110300", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU UTK PEWARNA TABLET) COA SH630634", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA OBAT) COA SH631391", "output": "38249999"}, {"text_input": "What is the hs code for LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 19480", "output": "38249999"}, {"text_input": "What is the hs code for MIRTOGENOL (R) (BHN BAKU SUPLEMEN) COA 20S0092200", "output": "38249999"}, {"text_input": "What is the hs code for SILYMARIN (BHN BAKU SUPLEMEN) COA 19S0258905", "output": "38249999"}, {"text_input": "What is the hs code for ECHINACEA ANG.DRY PURIF.EX (BHN BAKU SUPLEMEN) COA 19S0359200", "output": "13021950"}, {"text_input": "What is the hs code for BILBERRY (V. MYRTILLUS) ET EX 36PCT (BHN BAKU SUPLEMEN) COA 20S0062103", "output": "13021950"}, {"text_input": "What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M-31PCT (BHN BAKU OBAT) COA 102029008,102029010", "output": "28161000"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX POWDER) BHN BAKU OBAT, COA M484519", "output": "29411019"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED) ,BHN BAKU OBAT, COA M532309", "output": "29411019"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP20043195, XP20043196", "output": "29211900"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 200414", "output": "13021950"}, {"text_input": "What is the hs code for ALPINIAWHITE (BHN BAKU KOSMETIK)COA 192930", "output": "13021990"}, {"text_input": "What is the hs code for THE MATCHA I P001602 (BHN BAKU KOSMETIK) COA 0000039198", "output": "33029000"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL ...(BHN BAKU PEWARNA TABLET)COA D180J63001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180J63002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D180H14002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D180J6P021", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180K1O003", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180K1Q002", "output": "39123900"}, {"text_input": "What is the hs code for CEFOPERAZONE SODIUM STERILE (BAHAN BAKU OBAT) COA 2004402117", "output": "29419000"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP20053132, XP20053133", "output": "29211900"}, {"text_input": "What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA.EDS/CA05606", "output": "29349990"}, {"text_input": "What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-0720420", "output": "29334910"}, {"text_input": "What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-0740420", "output": "29334910"}, {"text_input": "What is the hs code for EPA DHA 44 37 (BHN SUPLEMEN KESEHATAN) COA EE4437-200518", "output": "29061300"}, {"text_input": "What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA T100500, T100600", "output": "29419000"}, {"text_input": "What is the hs code for CEFOTAXIME SODIUM STERILE USP (BHN BAKU OBAT) COA T200400, T200500", "output": "29419000"}, {"text_input": "What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA T700500", "output": "29419000"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 10070520,10090520,10110520...", "output": "29359000"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ90813106", "output": "29362500"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT20020042", "output": "29362800"}, {"text_input": "What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000188240, 188397,188398", "output": "29362900"}, {"text_input": "What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES1901168", "output": "29420000"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01912158, TL01912165", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0320050529", "output": "29420000"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL01911148", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01911148", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A BHN BAKU MAKANAN) COA UT19080028,UT19080029", "output": "29362100"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLIORIDE ,20KG BOX(BHN BAKU MAKANAN) COA QZ11190618,QZ11190625", "output": "29362500"}, {"text_input": "What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01911148", "output": "29362400"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11190625", "output": "29362500"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12002003", "output": "29362900"}, {"text_input": "What is the hs code for PREMIX BALITA (BHN BAKU MAKANAN) COA XW92003345", "output": "21069059"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ91110282", "output": "29362300"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ91002508", "output": "29362200"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19110102", "output": "29362900"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL01909526, TL01909533", "output": "29362700"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90913144", "output": "29362500"}, {"text_input": "What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01911148", "output": "29362400"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ91110282", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1909123", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1909123,127,130", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT19110102", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT19110102", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ91110282", "output": "29362300"}, {"text_input": "What is the hs code for NIACINAMIDE FCC, 25KG BOX (BHN BAKU MAKANAN) COA 0000188584", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE FCC, 25KG BOX (BHN BAKU MAKANAN) COA 0000188584,0000188592", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19110102", "output": "29362900"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT GRANULATION ,25KG BOX(BHN BAKU SUPLEMEN) COA WP19119010", "output": "29362700"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ00103306", "output": "29362200"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL01911148", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT19120041", "output": "29362900"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL01911148", "output": "29362400"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11190625", "output": "29362500"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ91002507, UQ91002508", "output": "29362200"}, {"text_input": "What is the hs code for NIACINAMIDE FCC, 25KG BOX (BHN BAKU MAKANAN) COA 0000188584, 0000188592", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12002003", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU MAKANAN) COA UT19090007", "output": "29362900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11190625", "output": "29362500"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01912322, U01912323", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN A ACTATE 325 CWS/A (BHN BAKU MAKANAN) COA UT19120038", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA U01912322", "output": "29362800"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ00103306", "output": "29362200"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT20020036, UT20020042", "output": "29362800"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT19050033", "output": "32041900"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01911148", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD(BHN BAKU SUPLEMEN) COA UT19090007", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)(BHN BAKU SUPLEMEN) COA UT20010189", "output": "29362100"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT20010004", "output": "29362400"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90913144", "output": "29362500"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91002507", "output": "29362200"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00619042", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01902300", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT20010004", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT19120041", "output": "29362900"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL ACETATE, 20KG JUG(BHN BAKU SUPLEMEN) COA XH20200202", "output": "29362800"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLMEN) COA UT19050033", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010008", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20010004, UT20010009", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20010009, UT20010010", "output": "29362800"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01911148", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01911148", "output": "29362400"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ00103306", "output": "29362200"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN)COA WB19119010", "output": "29362700"}, {"text_input": "What is the hs code for B-CAROTNE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT19050033", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)BHN BAKU SUPLEMEN, COA UT20010189", "output": "29362100"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT19080154", "output": "29362400"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ00103306", "output": "29362200"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT GRANULATION,25KG BOX (BHN BAKU SUPLEMEN) COA WB19119010", "output": "29362700"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB19090221", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB19110257", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB19090222", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB19110257", "output": "29362100"}, {"text_input": "What is the hs code for GENIVIDA(TM) TG, 1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT19060004", "output": "29329990"}, {"text_input": "What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF, 1KG ALUF(BHN BAKU SUPLEMEN) COA UE01905024", "output": "32030010"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT19120057", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN B12 1PCT SD (BHN BAKU SUPLEMEN) COA UT20030002", "output": "29362600"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE02004042", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT20030008", "output": "29362600"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU MAKANAN) COA TL02005719", "output": "29362400"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT EMULS (BHN BAKU MAKANAN) COA UE01910015", "output": "32041900"}, {"text_input": "What is the hs code for VIT. A PALM. 1.0M+ VIT D3 100'000 (BHN BAKU MAKANAN) COA UT20040086", "output": "29362100"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU SUPLEMEN) COA TL02005719", "output": "29362400"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG200403", "output": "29362700"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA OBAT) COA SH631363", "output": "38249999"}, {"text_input": "What is the hs code for STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN541486", "output": "35051010"}, {"text_input": "What is the hs code for MONOPROPYLENE GLYCOL (BHN BAKU KOSMETIK) COA PG(S)200410", "output": "29053200"}, {"text_input": "What is the hs code for VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU MAKANAN) COA HPD2005010,HPD2004156", "output": "29362700"}, {"text_input": "What is the hs code for VC SODIUM ASCORBATE REGULAR, 25KG BAL (BAHAN BAKU MAKANAN) COA HPD2005055 S/D 57", "output": "29362700"}, {"text_input": "What is the hs code for VC ASCORBIC ACID 325 MESH ,20KG BOALPO (BHN BAKU SUPLEMEN) COA HPG2003176,3184,3193,3196", "output": "29362700"}, {"text_input": "What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT)COA L101851720", "output": "17021100"}, {"text_input": "What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA DOC1252022", "output": "28363000"}, {"text_input": "What is the hs code for ADSORB AFLA (BHN BAKU UNTUK PAKAN TERNAK) COA 144", "output": "25081000"}, {"text_input": "What is the hs code for DEXCHLORPHENIRAMINE MALEATE BP/EP (BHN BAKU OBAT) COA SLL/DC/0220004", "output": "29333910"}, {"text_input": "What is the hs code for DEXCHLORPHENIRAMINE MALEATE USP (BHN BAKU OBAT) COA SLL/DC/0420008", "output": "29333910"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA MTP12820", "output": "28363000"}, {"text_input": "What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102069005", "output": "28161000"}, {"text_input": "What is the hs code for FEF CETRIMIDE PH EUR (BHN BAKU KOSMETIK) COA KX0C656", "output": "38249999"}, {"text_input": "What is the hs code for ACTIPONE (R) CAMU CAMU ET (BHN BAKU KOSMETIK) COA 10300017", "output": "13021950"}, {"text_input": "What is the hs code for PF.ANTI SHINE WASH PERFUME 45414.1 (BHN BAKU KOSMETIK) COA 10300083", "output": "13021950"}, {"text_input": "What is the hs code for MILD TALCUM MOD 1 (BHN BAKU KOSMETIK) COA 10300204", "output": "13021950"}, {"text_input": "What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC1420T", "output": "27101990"}, {"text_input": "What is the hs code for PARACETAMOL USP (BHN BAKU OBAT) COA 2010040,2010020,2010013,2030197,2010740,2050268", "output": "29242990"}, {"text_input": "What is the hs code for ZINC SULFATE 1-HYDRATE, POWDER ,USP43 (BHN BAKU OBAT) COA 3080018", "output": "28332920"}, {"text_input": "What is the hs code for SELOHVITA C (BHN BAKU OBAT) COA 3084269", "output": "28429010"}, {"text_input": "What is the hs code for TRIPOTASSIUM CITRATE 1-HYDRATE (BHN BAKU OBAT) COA3083078", "output": "29181400"}, {"text_input": "What is the hs code for CALCIUM ACETATE, POWDER, PURITY ACC. TO E 263 (BHN BAKU OBAT) COA 3082104", "output": "29152910"}, {"text_input": "What is the hs code for FERROUS SULFATE, DRIED, POWDER, USP43 (BHN BAKU OBAT) COA 3084930", "output": "28332920"}, {"text_input": "What is the hs code for SELOHVITA C (BHN BAKU OBAT) COA 3084269", "output": "28429010"}, {"text_input": "What is the hs code for SELOHVITA C (BHN BAKU OBAT) COA 3084270", "output": "28429010"}, {"text_input": "What is the hs code for ZINC SULFATE 1-HYDRATE, POWDER,USP 43 (BHN BAKU OBAT) COA 3080020", "output": "28332920"}, {"text_input": "What is the hs code for MAGNESIUM CARBONATE, HEAVY (BHN BAKU OBAT) COA 1103215", "output": "28369990"}, {"text_input": "What is the hs code for EPERISONE HCL (BHN BAKU OBAT) COA 05820001", "output": "29333990"}, {"text_input": "What is the hs code for AMLODIPINE BESYLATE BP/EP (BHN BAKU OBAT) COA AMB/078/04/20 S/D AMB/080/04/20, AMB/084/04/20,..", "output": "29333990"}, {"text_input": "What is the hs code for NABUMETONE (BHN BAKU OBAT) COA H-0560520", "output": "29145000"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA ROA143203", "output": "28363000"}, {"text_input": "What is the hs code for OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH630044", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH630121", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH630045", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH630039", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH629422", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH629728", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH630043", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH630994", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH631391", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH630006", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH630581", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH630046", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE PURPLE (BHN BAKU PEWARNA TABLET) COA SH630040", "output": "39061090"}, {"text_input": "What is the hs code for ONDANSETRON HCL USP (BHN BAKU OBAT) COA 19OS001", "output": "29332900"}, {"text_input": "What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA.MLAH0160520", "output": "29341000"}, {"text_input": "What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 2004121219", "output": "29372200"}, {"text_input": "What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA OBAT) COA SH631278", "output": "38249999"}, {"text_input": "What is the hs code for AQUACOAT ECD-30 ETHYLCELLULOSE AQUEOUS (BHN BAKU PEWARNA TABLET), COA XN20834274", "output": "39123900"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT), COA ASGP/04/190420,190420-2,210420,190420-3,...", "output": "29420000"}, {"text_input": "What is the hs code for CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/04/180420,200420,220420", "output": "39123100"}, {"text_input": "What is the hs code for CROSCARMELLOSE SODIUM USP-NF (BHN BAKU OBAT) COA ACRMC/01/260120", "output": "39123100"}, {"text_input": "What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED(BHN BAKU PAKAN TERNAK) COA ROA2020", "output": "28363000"}, {"text_input": "What is the hs code for VITAMIN MINERAL PREMIX FOR IMMUNITY (BHN BAKU MAKANAN), COA XW93005287", "output": "21069059"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12004021", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519059", "output": "29362200"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12004021", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD(BHN BAKU SUPLEMEN) COA UT19090007", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12004021", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT20010189", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010008", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01902300", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT20010004", "output": "29362400"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12004021", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT20010189", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE01911059, UE02001009", "output": "32041900"}, {"text_input": "What is the hs code for ROVIMIX D3-500 (BHN BAKU PAKAN TERNAK) COA UE02001004", "output": "29362900"}, {"text_input": "What is the hs code for CAROPHYLL RED 10PCT, 5KG BAG ALU (BHN BAKU PAKAN TERNAK) COA UE02003556", "output": "32041900"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000175", "output": "28363000"}, {"text_input": "What is the hs code for LUBRIPHARM (R) SSF NF/EP/JP SODIUM STEARYL FUMARATE (BHN BAKU OBAT) COA 122000210", "output": "28161000"}, {"text_input": "What is the hs code for COMPRITOL 888 ATO (BHN BAKU OBAT) COA 179718", "output": "28399000"}, {"text_input": "What is the hs code for TRANCUTOL P (BHN BAKU OBAT) COA 177546", "output": "28399000"}, {"text_input": "What is the hs code for LABRAFIL M 1944 CS (BAHAN BAKU OBAT) COA 179415", "output": "28399000"}, {"text_input": "What is the hs code for LABRAFIL M 1944 CS (BAHAN BAKU OBAT) COA 179771", "output": "28399000"}, {"text_input": "What is the hs code for PLURESSENCE LEMON 5001 BA (BHN BAKU OBAT) COA 455295", "output": "28399000"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX2005018", "output": "29181400"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX2005020", "output": "29181400"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN541535", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN541546", "output": "35051010"}, {"text_input": "What is the hs code for CYPROHEPTADINE HCL BP/PH.EUR (BHN BAKU OBAT) COA CYP/10191013, CYP/10191014", "output": "29333990"}, {"text_input": "What is the hs code for CYPROHEPTADINE HCL BP/PH.EUR (BHN BAKU OBAT) COA CYP/11191016", "output": "29333990"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9239282", "output": "38210090"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 004165,...", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0070949,9302047", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161680", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0097399", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218604", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218804", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0037499,9337147", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9211435", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0107757", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9323677", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0002325", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161545", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0119308", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9302327", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9309234", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239367", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9287998", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065878", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9311217", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037434,...", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 00480551", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0008443", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0009147", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0083370,9211362", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0125228", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9324109", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0027287,0062582,...", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065975", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9353100", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142723", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 01078811", "output": "38210090"}, {"text_input": "What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1922523", "output": "38210090"}, {"text_input": "What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0030216,9352447", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218538", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0107757", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 93430972", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0013917", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0009147", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D-SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0097350,9218804", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0008443", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9273839", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0013247", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364957", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273651", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065975", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0013057", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE CORN MEAL AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364035", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ENDO AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0009128", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EOSIN METHYLENE BLUE AG HHT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9254786", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218041", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALT EXTRACT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0043946", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LAURYL SULFATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9280526", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PHENOL RED BROTH BASE BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8310778", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218592", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9028828", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TREHALOSE 10G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 00942411", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309193", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 9273419", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NITRATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9148558", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364959", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9339238", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE STOCK CULTURE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8012616", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9280662", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B02C022M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE APT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0034063", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PHENYLLALANINE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9189619", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9189647", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0035732", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9311217", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065836", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218592", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0021157", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8312795", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9156832", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0099482", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0009147", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 01252283", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TREHALOSE 10G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0094241", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0037499", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9218538", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0002325", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9364856", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9364864", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0042227", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0107757", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCHG 9343097", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0002860", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0013917", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0065836", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0065878", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0048064", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9364957", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0008443", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9324109", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 00833709", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9273839", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9353100", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0065975", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9161680", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0031247", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0077148", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9296257", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 9364957", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LEVINE EMB AGAR 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0002325", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0042333", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9364853", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9225861", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0035732", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GRAM CRYSTAL VIOLET 250ML(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0119933", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9337386", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GRAM IODINE STABILIZED 250ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) COA 0028379", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PHENOL RED SUCROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8057792", "output": "38210090"}, {"text_input": "What is the hs code for BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0021915", "output": "38210090"}, {"text_input": "What is the hs code for BD INTRASURE KIT RUO (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0021915", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0135906", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKIROORGANISME) BATCH 0135906", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0135906", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0135906", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0079962", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0091369", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0013917", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0065836", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0107888", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DIFCO CHROMAGAR SALMONELLA 374G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 00245797", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0013057", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PHENOL RED LACTOSE BR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8311620", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 002157", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH 9280662", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9324170", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 00429673", "output": "38210090"}, {"text_input": "What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC015-20-801", "output": "17021100"}, {"text_input": "What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC014-20-801, LC015-20-801", "output": "17021100"}, {"text_input": "What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC015-20-801", "output": "17021100"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH630771", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH631231", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH631232", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH631233", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH630303", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH631412", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY YELLOW (BHN BAKU PEWARNA TABLET) COA SH630305", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH630325", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II BLACK (BHN BAKU PEWARNA TABLET) COA SH630322", "output": "38249999"}, {"text_input": "What is the hs code for PIGMENT BLEND GREEN (BHN BAKU PEWARNA TABLET) COA SH630301", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH630117", "output": "38249999"}, {"text_input": "What is the hs code for PIGMENT BLEND BROWN (BHN BAKU PEWARNA TABLET) COA SH630312", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH630304", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BLUE (BHN BAKU PEWARNA TABLET) COA SH630321", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU OBAT UTK PEWARNA TABLET) COA SH631562", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH630311", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH630324", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH630306", "output": "38249999"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0037338", "output": "38210090"}, {"text_input": "What is the hs code for CD33 PE P67.6 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0051017", "output": "38210090"}, {"text_input": "What is the hs code for ANTI-MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0059074", "output": "38210090"}, {"text_input": "What is the hs code for CD19 PE-CY7 SJ25C1 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0093153", "output": "38210090"}, {"text_input": "What is the hs code for CD20 FITC L27 100 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0104073", "output": "38210090"}, {"text_input": "What is the hs code for ANTI-KAPPA FITC/ANTI-LAMBDA PE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0071546", "output": "38210090"}, {"text_input": "What is the hs code for CD38 APC-H7 (HB7) RUO (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0100543", "output": "38210090"}, {"text_input": "What is the hs code for HU CD10 BV421 HI10A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0086644", "output": "38210090"}, {"text_input": "What is the hs code for HU CD14 BV421 MPHIP9 100 TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0058170", "output": "38210090"}, {"text_input": "What is the hs code for CD38 APC-H7 (HB7) RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0100543", "output": "38210090"}, {"text_input": "What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0315942", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0090650", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273671", "output": "38210090"}, {"text_input": "What is the hs code for CD117 PE 104D2 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0030043", "output": "38210090"}, {"text_input": "What is the hs code for CD200 APC (MRC OX-104) RUO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0140296", "output": "38210090"}, {"text_input": "What is the hs code for ANTI-MPO FITC 5B8 50 TESTS RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0059074", "output": "38210090"}, {"text_input": "What is the hs code for VIAL ISOVITALEX ENRICHMENT 10ML 5 EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0132479", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0015023", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0133080", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9309244", "output": "38210090"}, {"text_input": "What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT 10X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9323256", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTISERUM GRP A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9046966", "output": "38210090"}, {"text_input": "What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0076734", "output": "38210090"}, {"text_input": "What is the hs code for VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9283338", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0034818,9340914", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEMOGLOBIN SOL 2PCT 100ML 10EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239090", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH 9273671", "output": "38210090"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9312760", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENTICHMENT (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0051680", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9270026", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9284311", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0037326", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG L &P 80 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0072634", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GRAM DECOLORIZER 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0077164", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GRAM SAFRANIN 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0055061", "output": "38210090"}, {"text_input": "What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0105205", "output": "38210090"}, {"text_input": "What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0105205", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9309252", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER INDOLE (MEDIA UTK PNGEMBANGAN MIKROORGANISME) BATCH B028318M", "output": "38210090"}, {"text_input": "What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 192253", "output": "13021990"}, {"text_input": "What is the hs code for CHRONO CHARDY (BHN BAKU KOSMETIK) COA 192698", "output": "13021990"}, {"text_input": "What is the hs code for BIOCELLACT CHAMOMILLA BD (BHN BAKU KOSMETIK) COA 200623", "output": "13021990"}, {"text_input": "What is the hs code for SWERTIANIN-P (BHN BAKU KOSMETIK), COA 200456", "output": "13021990"}, {"text_input": "What is the hs code for ALPINAWHITE (BHN BAKU KOSMETIK) COA 200601", "output": "13021990"}, {"text_input": "What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LG120420", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG120420", "output": "39123900"}, {"text_input": "What is the hs code for MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50310", "output": "29061100"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE01901001, SAMPLE NO COMMERCIAL VALUE", "output": "29362900"}, {"text_input": "What is the hs code for CROSPOVIDONE XL ( BAHAN BAKU OBAT ) COA PP200502XL", "output": "39059990"}, {"text_input": "What is the hs code for NOSCAPINE BASE USP (BHN BAKU OBAT) COA P0200720", "output": "29391900"}, {"text_input": "What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453582992", "output": "39139090"}, {"text_input": "What is the hs code for CYPROTERONE ACETATE MICRONIZED (BHN BAKU OBAT) COA NA0687M", "output": "29372900"}, {"text_input": "What is the hs code for PREDNISONE USP42 (BHN BAKU OBAT) COA NPD200505", "output": "29372100"}, {"text_input": "What is the hs code for MIRASIL DM 5L DR M 190KG (BHN BAKU KOSMETIK) COA 20092PN415", "output": "39100090"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM CR (BHN BAKU PEWARNA TABLET)COA D180JBT001", "output": "39123900"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 10 PREMIUM (BHN BAKU PEWARNA TABLET) COA D184GC1021", "output": "39123900"}, {"text_input": "What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC015-20-801", "output": "17021100"}, {"text_input": "What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET), COA DT703019", "output": "32151900"}, {"text_input": "What is the hs code for OPALUX TAN (BHN BAKU PEWARNA TABLET), COA DT703020", "output": "32151900"}, {"text_input": "What is the hs code for OPASPRAY YELLOW (BHN BAKU PEWARNA TABLET) COA DT702435", "output": "32151900"}, {"text_input": "What is the hs code for OPACODE RED (BHN BAKU PEWARNA TABLET) COA DT702944", "output": "32151900"}, {"text_input": "What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 2005009", "output": "29349990"}, {"text_input": "What is the hs code for INOSITOL (BHN BAKU OBAT) COA 202005063, 5064", "output": "29061300"}, {"text_input": "What is the hs code for POVIDONE K-30 EX JHNH (BHN BAKU OBAT) COA PK30-200421F11", "output": "39059990"}, {"text_input": "What is the hs code for POVIDONE K-25 (BHN BAKU OBAT) COA PK25-200430F31", "output": "39059990"}, {"text_input": "What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20200419", "output": "29309090"}, {"text_input": "What is the hs code for SUCRALOSE (JKSS00) (BHN BAKU OBAT) COA 20040103", "output": "29321400"}, {"text_input": "What is the hs code for CROSPOVIDONE XL-10 (BHN BAKU OBAT) COA PP200426XL-10", "output": "39059990"}, {"text_input": "What is the hs code for D-RIBOSE (BHN BAKU OBAT), COA ZN20200417", "output": "29400000"}, {"text_input": "What is the hs code for IRBESARTAN (BHN BAKU OBAT) COA C5055-20-003", "output": "29332900"}, {"text_input": "What is the hs code for LEVOFLOXACIN HEMIHYDRATE (FREE ALKALINE (BHN BAKU OBAT) COA C008-1912114", "output": "29349990"}, {"text_input": "What is the hs code for SODIUM SALICYLATE BP2005 (BHN BAKU KOSMETIK)COA 201909025", "output": "29182100"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-200504", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-200504", "output": "38249999"}, {"text_input": "What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-190303-GS", "output": "38249999"}, {"text_input": "What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 2004121219", "output": "29372200"}, {"text_input": "What is the hs code for KF-96L-2CS (14KG) BHN BAKU KOSMETIK, COA 003372", "output": "38249999"}, {"text_input": "What is the hs code for KF-96L-2CS (14KG) BHN BAKU KOSMETIK, COA 003376", "output": "38249999"}, {"text_input": "What is the hs code for SELOHVITA C (BHN BAKU OBAT) COA 3085066, 3084270", "output": "28429010"}, {"text_input": "What is the hs code for SURELEASE ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET), COA IN541465", "output": "32151900"}, {"text_input": "What is the hs code for P.GINSENG DRY EXTRACT /IDB(BHN BAKU SUPLEMEN) COA 32347/M1", "output": "13021990"}, {"text_input": "What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU KOSMETIK) COA 19S0393500", "output": "38249999"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA UQ90813111", "output": "29362500"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0320050625 S/D 628, 706, 707, 709", "output": "29420000"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE01904006", "output": "29362900"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT20010011", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE ,5KG PE PAIL(BHN BAKU KOSMETIK) COA UT2000045", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01912323", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE01912323", "output": "29362800"}, {"text_input": "What is the hs code for PX 103070-C3 (BHN BAKU MAKANAN) COA XW92005228", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19110102", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ91210303,304", "output": "29362300"}, {"text_input": "What is the hs code for VIT PREMIX MI A1 (BHN BAKU MAKANAN) COA XW92005382", "output": "21069059"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ91210304", "output": "29362300"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ91102566", "output": "29362200"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT20020042", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20030106, 107", "output": "29362900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE,5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20020045", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20020045", "output": "29362800"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1910130,0131,7111", "output": "29362300"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT20010004", "output": "29362400"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91113211", "output": "29362500"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91113211", "output": "29362500"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20010010", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S(BHN BAKU SUPLEMEN) COA UT20010010", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT19110102", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT19110102,UT20030106", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT20030106", "output": "29362900"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91002509,UA91102566", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91102566", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91102566", "output": "29362200"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT(BHN BAKU SUPLEMEN) COA WB00519134, WB00519135", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519059", "output": "29362200"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU MAKANAN) COA UT20020045", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20020045", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20020045", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19110102", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT19110102", "output": "29362900"}, {"text_input": "What is the hs code for ZINC GLUCONATE, POWDER, FCC 10 ( BHN BAKU MAKANAN) SAMPLE NO COMM VALUE", "output": "29181600"}, {"text_input": "What is the hs code for ZINC SULFATE 7-HYDRATE, CRYST, FCC 10 (BHN BAKU MAKANAN) SAMPLE NO COMM VALUE", "output": "28332920"}, {"text_input": "What is the hs code for FERROUS SULFATE 7-HYDRATE CRYST, FCC 10 (BHN BAKU MAKANAN) SAMPLE NO COMM VALUE", "output": "28332920"}, {"text_input": "What is the hs code for ZINC GLUCONATE, POWDER, FCC 10 (BHN BAKU MAKANAN) SAMPLE NO COMM VALUE", "output": "29181600"}, {"text_input": "What is the hs code for BACTO TRYPTOSE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0079795", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0084429", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTONE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 57343", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9071756", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0057343", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0007337", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0057343", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0042378", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTONE PHOSPHATE 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0057343", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0057343", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROT 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0057343", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9282976", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0057343", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9282981", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0057343", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0042378", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0042378", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0057337", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0057337", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0057337", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0057343", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0057337", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9337057", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9035505", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9035505", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2189343", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9109987", "output": "38210090"}, {"text_input": "What is the hs code for SK BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-022019", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND ARBUTIN (BHN BAKU KOSMETIK)COA ARP-071040", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-032399", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-021920", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK)COA NMP-L-052010", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK) COA MCP-N-032630", "output": "38249999"}, {"text_input": "What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 2051160,2051171,2051172", "output": "29242990"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL ...(BHN BAKU PEWARNA TABLET)COA D011JC2L02", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D011J8DL02", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D180JBR002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D180JC4001", "output": "39123900"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 10 PREMIUM ... (BHN BAKU PEWARNA TABLET) COA D184J7Q021", "output": "39123900"}, {"text_input": "What is the hs code for OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH630715", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH631235", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH632028", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH631233", "output": "38249999"}, {"text_input": "What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU PEWARNA TABLET) COA WP824576", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C BLUE #2/INDIGO CARMINE AL (BHN BAKU PEWARNA TABLET) COA WP815907", "output": "32151900"}, {"text_input": "What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU PEWARNA TABLET) COA WP824576", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP818966", "output": "32151900"}, {"text_input": "What is the hs code for D&C YELLOW #10 AL 15PCT-20PCT (BHN BAKU PEWARNA TABLET) COA WP814317", "output": "32151900"}, {"text_input": "What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP827632", "output": "39059990"}, {"text_input": "What is the hs code for PVAP- PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP827023", "output": "39059990"}, {"text_input": "What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA OBAT) COA WP827022", "output": "39059990"}, {"text_input": "What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP827629", "output": "39059990"}, {"text_input": "What is the hs code for STARTAB DIRECTLY COMPRESSIBLE STARCH (BHN BAKU PEWARNA TABLET) COA WP816007", "output": "35051010"}, {"text_input": "What is the hs code for CROSPOVIDONE XL ( BAHAN BAKU OBAT ) COA PP200531XL", "output": "39059990"}, {"text_input": "What is the hs code for D-RIBOSE (BHN BAKU OBAT) COA ZN20200608", "output": "29400000"}, {"text_input": "What is the hs code for OMEPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA OP0220C010,012", "output": "30039000"}, {"text_input": "What is the hs code for OMEPRAZOLE PELLETS 8,5PCT (BHN BAKU OBAT) COA OP0220C011", "output": "30039000"}, {"text_input": "What is the hs code for LANSOPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA LP0220C014", "output": "30039000"}, {"text_input": "What is the hs code for RESTYLANE SB VITAL LIDOCAINE 1ML ,COA 17862-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE LYFT LIDOCAINE 1ML , COA 17606-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE VOLYME 1 ML ,COA 17875-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE REFYNE 1ML , COA 17748-1, 17749-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE DEFYNE 1ML , COA 17870-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE KYSSE 1 ML, COA 17825-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE SB VITAL LIGHT LIDOCAINE 1ML , COA 17839-1", "output": "33049990"}, {"text_input": "What is the hs code for RESTYLANE DEFYNE 1ML , COA 17870-1,17852-1,SAMPLE NO COMM VALUE", "output": "33049990"}, {"text_input": "What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA 20200525", "output": "11081200"}, {"text_input": "What is the hs code for HEXYLENE GLYCOL (BHN BAKU KOSMETIK) COA 20040019", "output": "29053900"}, {"text_input": "What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 74814P", "output": "38249999"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000175, 194", "output": "28363000"}, {"text_input": "What is the hs code for REFINED SUNFLOWER OIL (BHN BAKU KOSMETIK) COA 0002228405", "output": "38249999"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK COA B100420", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB100420", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB100420", "output": "39123900"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B100420", "output": "39123900"}, {"text_input": "What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00637106,VE00637479,VE00637704", "output": "29420000"}, {"text_input": "What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00637704,VE00641232,VE00642630", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708200065 S/D 70", "output": "29420000"}, {"text_input": "What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL01912163", "output": "29362400"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT20030070,UT20050090", "output": "29362400"}, {"text_input": "What is the hs code for MIN PREMIX MI A2 (BHN BAKU MAKANAN) COA XW92005385", "output": "21069059"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11200406", "output": "29362500"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT20050090", "output": "29362400"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20010002", "output": "32041900"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL01912163", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL01912163,TL02001010", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT20030006", "output": "29362600"}, {"text_input": "What is the hs code for CALCIUM ASCORBATE ,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB20030026", "output": "29362700"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91102568", "output": "29362200"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20010010", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20010010", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)BHN BAKU MAKANAN, COA UT20010190, UT20030193", "output": "29362100"}, {"text_input": "What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET), COA DT703171", "output": "32151900"}, {"text_input": "What is the hs code for OPALUX TAN (BHN BAKU PEWARNA TABLET), COA DT703172", "output": "32151900"}, {"text_input": "What is the hs code for OPALUX MAROON (BHN BAKU PEWARNA TABLET) COA DT703361", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA OBAT) COA SH631392", "output": "38249999"}, {"text_input": "What is the hs code for PANTOPRAZOLE SODIUM (STERILE) BAHAN BAKU OBAT, COA SI/PPZ/00300320", "output": "29333990"}, {"text_input": "What is the hs code for OPADRY ORANGE (BHN BAKU PEWARNA TABLET) COA GA672687", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY SGR TRANSLUCENT (BHN BAKU PEWARNA TABLET) COA GA671697", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY SGR CLEAR (BHN BAKU PEWARNA TABLET) COA GA671696", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY SGR RED (BHN BAKU PEWARNA TABLET) COA GA672392", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY SGR TRANSLUCENT (BHN BAKU PEWARNA TABLET) COA GA671697", "output": "38249999"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN541906", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN541833", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN541922", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN541907", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN541924", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN541923", "output": "35051010"}, {"text_input": "What is the hs code for CEFADROXIL MONOHYDRATE (PURIDROX COMPACTED) BHN BAKU OBAT, COA B340170,172,173", "output": "29419000"}, {"text_input": "What is the hs code for CEFADROXILE MONOHYDRATE POWDER (PURIDROX POWDER) COA B334672,74,76,81,84", "output": "29419000"}, {"text_input": "What is the hs code for TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA P6935", "output": "29225090"}, {"text_input": "What is the hs code for TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA P6936", "output": "29225090"}, {"text_input": "What is the hs code for MATIPURE TM OIL FREE-5KG (BHN BAKU KOSMETIK) COA 2010102, 2010101", "output": "38249999"}, {"text_input": "What is the hs code for ECOGEL TM - 5KG (BHN BAKU KOSMETIK) COA 2012905", "output": "38249999"}, {"text_input": "What is the hs code for SWT-7TM L- 5KG (BHN BAKU KOSMETIK) COA 2011401", "output": "38249999"}, {"text_input": "What is the hs code for HELIOGEL TM - 5KG (BHN BAKU KOSMETIK) COA 1932401", "output": "38249999"}, {"text_input": "What is the hs code for HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA N3034126", "output": "33029000"}, {"text_input": "What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-1080620, S-1090620", "output": "29334910"}, {"text_input": "What is the hs code for PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PI18050006", "output": "29341000"}, {"text_input": "What is the hs code for PIROXICAM (BAHAN BAKU OBAT ) COA PRX2020007M", "output": "29349990"}, {"text_input": "What is the hs code for METHOTREXATE (BHN BAKU OBAT) COA EP200408", "output": "29335990"}, {"text_input": "What is the hs code for LIQUORICE LC (BHN BAKU KOSMETIK) COA.115774", "output": "13021950"}, {"text_input": "What is the hs code for L-LYSINE HYDROCHLORIDE (FEED GRADE) 98.5PCT (BHN BAKU UTK PAKAN TERNAK )COA QDDX20-03-0140HJ-IB", "output": "29349990"}, {"text_input": "What is the hs code for ISDN 25PCT-LACTOSE 450 75PCT DILUTED (BHN BAKU OBAT) COA 1813430,SAMPLE NO COMM VALUE", "output": "29329990"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX POWDER) BHN BAKU OBAT, COA M484486, M484583", "output": "29411019"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED) ,BHN BAKU OBAT, COA M532498, 2499,2519,2496", "output": "29411019"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH631406", "output": "38249999"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0099489", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0099489", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 00119492", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0099498", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0093988", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL ...(MEDIA PENGEMBANGAN MIKROORGANISME) BATCH 0099489,0119492", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0119492", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0119492", "output": "38210090"}, {"text_input": "What is the hs code for GLICLAZIDE (BHN BAKU OBAT) COA 1940001442", "output": "29359000"}, {"text_input": "What is the hs code for GLICLAZIDE (BHN BAKU OBAT) COA 1940002424", "output": "29359000"}, {"text_input": "What is the hs code for GLICLAZIDE (BHN BAKU OBAT) COA 1940002424", "output": "29359000"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ91102572", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ00103310", "output": "29362200"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT20030030", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100CWS (BHN BAKU SUPLEMEN) COA UT20010005", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20010005,7", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS ( BHN BAKU SUPLEMEN), COA UT20010007", "output": "29362900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE,5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20020045", "output": "29362800"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ00103310", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91102572", "output": "29362200"}, {"text_input": "What is the hs code for DWI-BI (BHN BAKU MAKANAN) COA XW92005346", "output": "21069059"}, {"text_input": "What is the hs code for VC ASCORBIC ACID REGULAR,25KG BAL (BAHAN BAKU SUPLEMEN) COA HPB2005191,5211", "output": "29362700"}, {"text_input": "What is the hs code for ONDANSETRON HCL USP (BHN BAKU OBAT) COA 19OS001, 20OS001", "output": "29332900"}, {"text_input": "What is the hs code for SODIUM VALPROATE (BAHAN BAKU OBAT) COA 454565 (759)", "output": "29159090"}, {"text_input": "What is the hs code for IONOL CP,25KG BAG (BHN BAKU KOSMETIK) COA 01110120", "output": "29071900"}, {"text_input": "What is the hs code for IONOL CP (BHN BAKU KOSMETIK) COA 01104320", "output": "29071900"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL02004413,4466,4508,4515", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT20040964,965,966", "output": "29362100"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02003030,3031", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL (BHN BAKU KOSMETIK) COA TL02003031,3032", "output": "29362400"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL02004515,4525,4532,4537", "output": "29362700"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU MAKANAN) COA TL02005719", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT20030008", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT20030007,8,13", "output": "29362600"}, {"text_input": "What is the hs code for OPTISHARP NAT ZEA 5PCT CWS/S-TG,10KG BAG (BHN BAKU SUPLEMEN) COA EW20055001", "output": "32041900"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT19050002", "output": "32041900"}, {"text_input": "What is the hs code for COATED ASCORBIC ACID, TYPE EC, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02005660", "output": "29362700"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT20020009", "output": "32030010"}, {"text_input": "What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19060003", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT20040058", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT20050049", "output": "29362100"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 2AX2006018", "output": "29181400"}, {"text_input": "What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 2051427,2051420,2051431,2051432", "output": "29242930"}, {"text_input": "What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP828366", "output": "39059990"}, {"text_input": "What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP828367", "output": "39059990"}, {"text_input": "What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP828113", "output": "39059990"}, {"text_input": "What is the hs code for D AND C YELLOW #10 AL 150CT-20PCT(BHN BAKU PEWARNA TABLET) COA WP814318", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C RED #40/ALLURA RED AC AL... (BHN BAKU PEWARNA TABLET) COA WP824791", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW... (BHN BAKU PEWARNA TABLET) COA WP818228", "output": "32151900"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2003362364", "output": "29372900"}, {"text_input": "What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK)COA 200055", "output": "13021990"}, {"text_input": "What is the hs code for ARGAN OIL,10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0026660", "output": "29362500"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT20050122", "output": "29362800"}, {"text_input": "What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92005354, XW92005356", "output": "21069059"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20010001", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)(BHN BAKU SUPLEMEN) COA UT20020192", "output": "29362100"}, {"text_input": "What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92005355", "output": "21069059"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113433", "output": "29339990"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 10 PREMIUM ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D184K25021", "output": "39123900"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 20 PREMIUM ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D184J1C021", "output": "39123900"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 20 PREMIUM ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D184K4L021", "output": "39123900"}, {"text_input": "What is the hs code for 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 011420/006294", "output": "38249999"}, {"text_input": "What is the hs code for CLOZAPINE (BHN BAKU OBAT) COA 880106, SAMPLE NO COMMERCIAL VALUE", "output": "29335990"}, {"text_input": "What is the hs code for ADRENALINE TARTRATE EPINEPHRINE BITARTRATE (B.BAKU OBAT)COA080108,100108,125158,SAMPLE NO COMM", "output": "29379020"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA RBA1662000", "output": "28363000"}, {"text_input": "What is the hs code for FERROUS GLUCONATE, POWDER, USP 43 (BHN BAKU OBAT) COA 3087218", "output": "29181600"}, {"text_input": "What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 00228,00310,00319", "output": "38029090"}, {"text_input": "What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 190120", "output": "25070000"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH631051", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH631037", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH631039", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY 200 BROWN (BHN BAKU PEWARNA TABLET) COA SH631075", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH631038", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB RED (BHN BAKU PEWARNA TABLET) COA SH631047", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II BROWN (BHN BAKU PEWARNA TABLET) COA SH631049", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH631052", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH630961", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH631048", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH631391", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH632089", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH631083", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH632287", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH631363", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH631979", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH631040", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH630117", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH632167", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB MAROON (BHN BAKU PEWARNA TABLET) COA SH632139", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB MAROON (BHN BAKU PEWARNA TABLET) COA SH632138", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH631398", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BLUE (BHN BAKU PEWARNA TABLET) COA SH631400", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH631380", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH631379", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH631378", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH631377", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II BLUE (BHN BAKU PEWARNA TABLET) COA SH631403", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH632051", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH632239", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH632096", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH631461", "output": "38249999"}, {"text_input": "What is the hs code for PEG 400 (BAHAN BAKU KOSMETIK) COA.AKW0000227", "output": "39072010"}, {"text_input": "What is the hs code for ACRYPOL 980 (20KG) BAHAN BAKU KOSMETIK, COA 11520019, 11520020", "output": "39069099"}, {"text_input": "What is the hs code for MOXIFLOXACIN HYDROCHLORIDE(BHN BAKU OBAT) COA MP0050719", "output": "29334990"}, {"text_input": "What is the hs code for IMWITOR (R) GMIS (BAHAN BAKU KOSMETIK) COA 004053", "output": "38249999"}, {"text_input": "What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA DOC1532021", "output": "28363000"}, {"text_input": "What is the hs code for VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 121910045", "output": "28365010"}, {"text_input": "What is the hs code for PHARMABURST (R) C1 (BHN BAKU OBAT) COA 122000126", "output": "21069099"}, {"text_input": "What is the hs code for VITAMIN MINERAL PREMIX FOR BISCUIT (BHN BAKU MAKANAN), COA XW92006379", "output": "21069059"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED GRADE P) BHN BAKU OBAT,COA M597141, M597153", "output": "29411019"}, {"text_input": "What is the hs code for ZINC SULFATE 1-HYDRATE, POWDER ,PH EUR 10.ED(BHN BAKU OBAT) COA 3080021", "output": "28332920"}, {"text_input": "What is the hs code for CYCLOSERINE USP ( BHN BAKU OBAT) COA CCLU200004", "output": "29232010"}, {"text_input": "What is the hs code for TRIPROLIDINE HCL USP (BHN BAKU OBAT) COA 2-KI-A-0020719", "output": "29333990"}, {"text_input": "What is the hs code for METHOCEL E50 PREMIUM LV HYDROXYPROPYL ...(BHN BAKU PEWARNA TABLET)COA D011J4NL02", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180JCF001", "output": "39123900"}, {"text_input": "What is the hs code for BICAR FOOD 27/50 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA MTP16020", "output": "28363000"}, {"text_input": "What is the hs code for LIPOID PPL-600 (BHN BAKU OBAT) COA 577200-2200227/001-005 (5)", "output": "29232010"}, {"text_input": "What is the hs code for PREDNISONE USP42 (BHN BAKU OBAT) COA NPD200308", "output": "29372100"}, {"text_input": "What is the hs code for PREDNISONE USP42 (BHN BAKU OBAT) COA NPD191008,NPD200702", "output": "29372100"}, {"text_input": "What is the hs code for PANTOPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT, COA APSS20001", "output": "29333990"}, {"text_input": "What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA 8MT200448", "output": "30032000"}, {"text_input": "What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET), COA DT703675", "output": "32151900"}, {"text_input": "What is the hs code for OPALUX MAROON (BHN BAKU PEWARNA TABLET), COA DT704050", "output": "32151900"}, {"text_input": "What is the hs code for OPASPRAY YELLOW (BHN BAKU PEWARNA TABLET) COA DT704051", "output": "32151900"}, {"text_input": "What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB00918691", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB19110254", "output": "29362100"}, {"text_input": "What is the hs code for HEXETIDINE (BAHAN BAKU OBAT) COA.FG20201113", "output": "29335990"}, {"text_input": "What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 202000011", "output": "28183000"}, {"text_input": "What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN ) COA MTP14720", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA MTP13120", "output": "28363000"}, {"text_input": "What is the hs code for VC ASCORBIC ACID DC 97PCT, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG2006003, 6004", "output": "29362700"}, {"text_input": "What is the hs code for VC ASCORBIC ACID 325 MESH, 20KG BOAIPO (BAHAN BAKU SUPLEMEN) COA HPD2003003089,3196,5146,5151", "output": "29362700"}, {"text_input": "What is the hs code for VC ASCORBIC ACID 325 MESH ,20KG BOAIPO (BHN BAKU SUPLEMEN) COA HPG2005159,5164,5178,6010,6017..", "output": "29362700"}, {"text_input": "What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-190303-GS", "output": "38249999"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA200403", "output": "38249999"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA200604", "output": "38249999"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA HEA200403", "output": "38249999"}, {"text_input": "What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 2006035", "output": "29349990"}, {"text_input": "What is the hs code for INOSITOL (BHN BAKU OBAT) COA 202006028, 202006029", "output": "29061300"}, {"text_input": "What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20200419", "output": "29309090"}, {"text_input": "What is the hs code for CROSPOVIDONE XL (BHN BAKU OBAT) COA PP200601XL", "output": "39059990"}, {"text_input": "What is the hs code for CITICOLINE SODIUM (BHN BAKU OBAT) COA 200314", "output": "29349990"}, {"text_input": "What is the hs code for SUCRALOSE (JKSS00) (BHN BAKU OBAT) COA 20040103", "output": "29321400"}, {"text_input": "What is the hs code for GLUCOSAMINE HCL (BHN BAKU OBAT) COA JST200610", "output": "29329990"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL02001647", "output": "29362700"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT20040041", "output": "29362800"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02004042,4043", "output": "32041900"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02004695", "output": "29362400"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ91106279,82,83,84", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ91206294", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT20040048", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02004043", "output": "32041900"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT20040045", "output": "29362800"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02004043", "output": "32041900"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL02001647, 4498", "output": "29362700"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02004044", "output": "32041900"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02004044", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT20040048", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE02004044", "output": "32041900"}, {"text_input": "What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110017", "output": "29420000"}, {"text_input": "What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT20040048", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02004043", "output": "32041900"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02004043, UE02004044", "output": "32041900"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02004044", "output": "32041900"}, {"text_input": "What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT19120019", "output": "29362100"}, {"text_input": "What is the hs code for MANGANESE (II)-SULFATE 1-HYDRATE (BHN BAKU OBAT) COA 3081906", "output": "28332920"}, {"text_input": "What is the hs code for KETOPROFEN (BHN BAKU OBAT) COA 192131", "output": "29183000"}, {"text_input": "What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0140891", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0143338", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0136728", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0143351", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA PENGEMBANGAN MIKROORGANISME) BATCH 0136728", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GRAM CRYSTAL VIOLET 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0140190", "output": "38210090"}, {"text_input": "What is the hs code for TUBE CRYSTAL INOCULUM BROTH (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0086820", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9361277", "output": "38210090"}, {"text_input": "What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9361277", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0013057", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE OXFORD MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9364955", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0079962", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0091369", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0002860", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0097350", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9337215", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0147111", "output": "38210090"}, {"text_input": "What is the hs code for KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0105924", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0042947", "output": "38210090"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0050557", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0125281", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9218538", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 002325", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9309234", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0070949", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161545", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218604", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0091369, 9311217", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239282", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0107757", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9343097", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0030113", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9287998", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239319", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309312", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9337215", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9315468", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048064", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364957", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037499", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0008443, 0048007", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0062582", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9310881", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9324109", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0107888", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0083370", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065756", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0037535", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0107881", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0135906", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273839", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TCBS 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9353100", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0009096", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9231272", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161680", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0013247", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0077148", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0097399", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142723", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9295486", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048007", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0062561,9225861", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065878", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048064", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 0037535", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9353100", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065975", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8206968", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EOSIN METHYLENE BLUE AG HHT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9254786", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LAURYL SULFATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9280562", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MR-VP BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9148534", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE KOSER CITRATE MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8054971", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9015537", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0090813", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0021157", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9364959", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9339238", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER LACTOPHENOL COTTON BLUE STAIN (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH BD1C118M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9206582", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0009096", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DESTROSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0030113", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH0048032,9315468", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9337215", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9310881", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0013247", "output": "38210090"}, {"text_input": "What is the hs code for CORTISONE ACETATE MICRONISED PH EUR JP (BHN BAKU OBAT) COA 1900971988", "output": "29372900"}, {"text_input": "What is the hs code for CEFADROXIL MONOHYDRATE POWDER (PURIDROX POWDER) BHN BAKU OBAT, COA B334690 S/D B334692, B334688", "output": "29419000"}, {"text_input": "What is the hs code for SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK)COA OSLP-112330", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK)COA NMP-L-651329,NMP-L-062010", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-030230", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-021920", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND BIO-OSLP (BHN BAKU KOSMETIK)COA BIO-OSLP", "output": "38249999"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT20050053", "output": "29362800"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL02005627,5632,5641,5648", "output": "29362700"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT20050056", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT20050002", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT20040058", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT20050049", "output": "29362100"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT20050053", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT20050053", "output": "29362800"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL02004603,4613,4620, 5627", "output": "29362700"}, {"text_input": "What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19060003", "output": "32041900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT20050123", "output": "29362800"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02004044, UE02004045", "output": "32041900"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN), COA UE02004045", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT20040096", "output": "29362100"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT19050002", "output": "32041900"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT20020009", "output": "32030010"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT20050968,970,971", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT20050002,50003,50004", "output": "29362100"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE ,25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ91206292", "output": "29362700"}, {"text_input": "What is the hs code for GEMCITABINE HYDROCHLORIDE (BAHAN BAKU OBAT) COA 200701", "output": "29349990"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 14730620,14750620", "output": "29359000"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE BP MICRONISED (BHN BAKU OBAT) COA 13650620,14700620,14710620,14720620...", "output": "29359000"}, {"text_input": "What is the hs code for TRIMETHOPRIM BP MICRONISED (BHN BAKU OBAT) COA TMP20040320", "output": "29335990"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH633029", "output": "38249999"}, {"text_input": "What is the hs code for PHARMACEUTICAL BOVINE GELATINE 150/08 ...(BAHAN BAKU OBAT ), COA 5131909595", "output": "35030049"}, {"text_input": "What is the hs code for BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0009780", "output": "38210090"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9312760", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9361990", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80 (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0072634", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT(MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0099632,0113610", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9284311", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0037326", "output": "38210090"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9312760", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9340918", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273671", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0015023", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0009986...", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL VT ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0128384", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0015023", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309244", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE FOLIC ACID ASSAY MEDIUM 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9176696", "output": "38210090"}, {"text_input": "What is the hs code for VIAL NOVOBIOCIN SUPPLEMENT 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0076485", "output": "38210090"}, {"text_input": "What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0086427", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 8248932", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9273671", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0121592", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0154553", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0148254", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASAMINO ACIDS TECHNICAL 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0140445", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0132203", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTONE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0042378", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0132203", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0132199", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0112241", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9035505", "output": "38210090"}, {"text_input": "What is the hs code for AMOXICILLIN SODIUM CRYSTALLINE STERILE (BHN BAKU OBAT) COA 25PEALQ0", "output": "29411019"}, {"text_input": "What is the hs code for POMEGRANATE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK)COA PUG2005L1,SAMPLE NO COMM VALUE", "output": "38249999"}, {"text_input": "What is the hs code for SAFFRON FLOWER HYDROGLYCENNED EXTRACT 80 (BHN BAKU KOSMETIK)COA CRS2004L1-GL80,SAMPLE NO COMM..", "output": "38249999"}, {"text_input": "What is the hs code for RICE MILK AQUEOUS EXTRACT (BHN BAKU KOSMETIK)COA ORSL1908L1-AQ,SAMPLE NO COMM VALUE", "output": "38249999"}, {"text_input": "What is the hs code for GRAPE SEED ORGANIC OIL (BHN BAKU KOSMETIK)COA VIVHV1905E1-ENBIO", "output": "38249999"}, {"text_input": "What is the hs code for CHLOROPHYLL POWDER (BHN BAKU KOSMETIK) COA CHLP2006E1-ES,SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO190112, SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 1907201172", "output": "29362600"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL02005802", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL02005802, 5806", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL02005806", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL02005815", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL02005815", "output": "29362700"}, {"text_input": "What is the hs code for COATED ASCORBIC ACID TYPE EC,25KG BOX (BHN BAKU SUPLEMEN) COA TL02005709", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ91206294 S/D 6297", "output": "29362700"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX (BHN BAKU MAKANAN) COA TL02005737", "output": "29362400"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL02005787,5795,5803", "output": "29362700"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT20060063", "output": "29362800"}, {"text_input": "What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19060003", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT20040058", "output": "29362100"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT19050002", "output": "32041900"}, {"text_input": "What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19060003", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT20040058", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT20050049", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02003029", "output": "32041900"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02003029", "output": "32041900"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02003029", "output": "32041900"}, {"text_input": "What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ00209501", "output": "29362300"}, {"text_input": "What is the hs code for KETOROLAC TROMETHAMOL/TROMETHAMINE (BHN BAKU OBAT) COA 20100147", "output": "29339990"}, {"text_input": "What is the hs code for CIPROFLOXACIN HCL (BHN BAKU OBAT) COA HB00U2007001 S/D 7005", "output": "29335990"}, {"text_input": "What is the hs code for SENTRY POLYOX WSR 303 LEO NF (DOW) (BHN BAKU PEWARNA TABLET), COA D682K39RR5", "output": "39123900"}, {"text_input": "What is the hs code for SENTRY POLYOX WSR 1105 LEO NF (DOW) BHN BAKU PEWARNA TABLET, COA D682JB7RD1", "output": "39123900"}, {"text_input": "What is the hs code for SENTRY POLYOX WSR N750 LEO NF (DOW) BHN BAKU UTK PEWARNA TABLET, COA D682I97RJ6", "output": "39123900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT20060145, UT20060146", "output": "29362800"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH632214", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH632216", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH632217", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH632239", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH630961", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH630415", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY VIOLET (BHN BAKU PEWARNA TABLET) COA SH632200", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH632409", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA SH632202", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH632215", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH632201", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH632219", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GRAY (BHN BAKU PEWARNA TABLET) COA SH632203", "output": "38249999"}, {"text_input": "What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 05062020", "output": "25081000"}, {"text_input": "What is the hs code for OPADRY RED (BHN BAKU PEWARNA TABLET) COA SH632756", "output": "38249999"}, {"text_input": "What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET), COA DT704786", "output": "32151900"}, {"text_input": "What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET), COA DT704740", "output": "32151900"}, {"text_input": "What is the hs code for OPACODE BLACK (BHN BAKU PEWARNA TABLET) COA DT704684", "output": "32151900"}, {"text_input": "What is the hs code for PARSOL MAX, 25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0919030007", "output": "29420000"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ00303364, 85", "output": "29362200"}, {"text_input": "What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW92006130,6131", "output": "21069059"}, {"text_input": "What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW92006204, 6205", "output": "21069059"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT20030023", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20020045", "output": "29362800"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ00303364", "output": "29362200"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20010007", "output": "29362900"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 25KG BOX (BHN BAKU SUPLEMEN) COA WB19119010", "output": "29362700"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ00303364", "output": "29362200"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT20020192,193", "output": "29362100"}, {"text_input": "What is the hs code for SILYMARIN/ET (BHN BAKU SUPLEMEN) COA 20S0078402", "output": "38249999"}, {"text_input": "What is the hs code for P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 32347/M1", "output": "13021990"}, {"text_input": "What is the hs code for CURCUMA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 20S0091308", "output": "38249999"}, {"text_input": "What is the hs code for SERENOA REPENS PURIFIED EXT (BHN BAKU SUPLEMEN) COA 19S0245600", "output": "38249999"}, {"text_input": "What is the hs code for LIPOID S 67 F (BHN BAKU OBAT) COA 576200-2190033/013-017 (5), 576200-2190033/018", "output": "29232010"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA RBA180200", "output": "28363000"}, {"text_input": "What is the hs code for NG 5 PCT-1,2 PROPYLENGLYCOLE 95% (BAHAN BAKU OBAT) COA 2005430", "output": "30039000"}, {"text_input": "What is the hs code for PYRAZINAMIDE EP/USP (BHN BAKU OBAT) COA WHOPZ 024 F 20 S/D WHOPZ 034 F 20", "output": "29339990"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA RBA1832000", "output": "28363000"}, {"text_input": "What is the hs code for AMBROXOL HCL BP (BHN BAKU OBAT) COA AHM/20061 S/D AHM/20065", "output": "29221990"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU MAKANAN) COA TS00014835", "output": "29362500"}, {"text_input": "What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 2030389,2030392,2051653", "output": "29242930"}, {"text_input": "What is the hs code for OPADRY SGR RED (BHN BAKU PEWARNA OBAT) COA GA674963", "output": "38249999"}, {"text_input": "What is the hs code for PARSOL 340, 0,250 KG SAM (BHN BAKU KOSMETIK) COA 0220040007,SAMPLE NO COMMERCIAL VALUE", "output": "29420000"}, {"text_input": "What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC16620T", "output": "27101990"}, {"text_input": "What is the hs code for BOTTLE GRAM SAFRANIN 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0055111", "output": "38210090"}, {"text_input": "What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0140250", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9309252", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GRAM DECOLORIZER 250ML (MEDIA UTK PNGEMBANGAN MIKROORGANISME) BATCH 0077164", "output": "38210090"}, {"text_input": "What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 040220,050220,130220,140220,170220,120220", "output": "38029090"}, {"text_input": "What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453662393", "output": "39139090"}, {"text_input": "What is the hs code for CHOLINE L-BITARTRATE (BAHAN BAKU OBAT) COA.3020013", "output": "29231000"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP20053181, XP20053182", "output": "29211900"}, {"text_input": "What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-002-X, SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 011420/006294", "output": "38249999"}, {"text_input": "What is the hs code for PANTOPRAZOLE SODIUM (STERILE) BAHAN BAKU OBAT, COA SI/PPZ/00360420", "output": "29333990"}, {"text_input": "What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC019-20-801", "output": "17021100"}, {"text_input": "What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA. LC019-20-801", "output": "17021100"}, {"text_input": "What is the hs code for HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2510420", "output": "29391900"}, {"text_input": "What is the hs code for GRANULAC (R) 70 (BHN BAKU OBAT) COA L101841420", "output": "17021100"}, {"text_input": "What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA.0000071858", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA.0000071887,SAMPLE NO COMMERCIAL VALUE", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H801 48PCT (BHN BAKU KOSMETIK) COA 0000071887, SAMPLE NO COMMERCIAL VALUE", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H105 83PCT (BHN BAKU KOSMETIK) COA 0000071889, SAMPLE NO COMMERCIAL VALUE", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H103 43PCT (BHN BAKU KOSMETIK), COA 0000071890,SAMPLE NO COMMERCIAL VALUE", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK), COA 0000071891,SAMPLE NO COMMERCIAL VALUE", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA 0000071892,SAMPLE NO COMMERCIAL VALUE", "output": "29309090"}, {"text_input": "What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU KOSMETIK) COA UT20050027", "output": "29362500"}, {"text_input": "What is the hs code for CORN STARCH (BHN BAKU MAKANAN) COA 20200629", "output": "11081200"}, {"text_input": "What is the hs code for ADSORB AFLA (BHN BAKU UNTUK PAKAN TERNAK) COA 149", "output": "25081000"}, {"text_input": "What is the hs code for CLOMIPHENE CITRATE USP/EP (BHN BAKU OBAT ) COA 202003240245", "output": "29221990"}, {"text_input": "What is the hs code for DOCUSATE SODIUM (BHN BAKU OBAT), COA SD0021906", "output": "29181600"}, {"text_input": "What is the hs code for NYSTATIN MICRONIZED ROW (BHN BAKU OBAT) COA C131423", "output": "29419000"}, {"text_input": "What is the hs code for CLOTRIMAZOLE MICRONIZED (BHN BAKU OBAT ) COA 202006260309", "output": "29332900"}, {"text_input": "What is the hs code for ALLOPURINOL USP (BHN BAKU OBAT) COA 20024AY3ARII", "output": "29335990"}, {"text_input": "What is the hs code for SUPPOCIRE A PELLETS (BHN BAKU OBAT) COA 19E4802", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE AM PELLETS (BHN BAKU OBAT) COA 20E1507", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE BM PELLETS (BAHAN BAKU OBAT) COA 19E1009", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE NA PELLETS (BAHAN BAKU OBAT) COA 19E5205", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 20E0802", "output": "28399000"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU MAKANAN) COA UT20020045", "output": "29362800"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20010001", "output": "32041900"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT19090007", "output": "29362900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ91113209", "output": "29362500"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE,5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20020045", "output": "29362800"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ91210344", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO)BHN BAKU SUPLEMEN, COA UT20030193", "output": "29362100"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT20010004", "output": "29362400"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ91210344, 345", "output": "29362300"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE01905018", "output": "29362900"}, {"text_input": "What is the hs code for CALCIUM ASCORBATE,25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB20030026", "output": "29362700"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ91210345", "output": "29362300"}, {"text_input": "What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92006263, XW92006264", "output": "21069059"}, {"text_input": "What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92006272", "output": "21069059"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20020045", "output": "29362800"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12005014", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ91210345", "output": "29362300"}, {"text_input": "What is the hs code for SODIUM SELENITE IN CARRIER (BHN BAKU SUPLEMEN) COA 3085558", "output": "28429010"}, {"text_input": "What is the hs code for TRIMAGNESIUM DICITRATE , ANHYDROUS (BHN BAKU SUPLEMEN) COA 3081933", "output": "29181590"}, {"text_input": "What is the hs code for HUILE DE COPRAH RAFF GV 24/26 (BHN BAKU KOSMETIK)COA 20F2602", "output": "15131910"}, {"text_input": "What is the hs code for MANGANESE (II)-SULFATE 1-HYDRATE (BHN BAKU SUPLEMEN) COA 3081905", "output": "28332920"}, {"text_input": "What is the hs code for ZINC OXIDE ,POWDER, PH EUR.10 ED (BHN BAKU SUPLEMEN) COA 3085795", "output": "28170010"}, {"text_input": "What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA VIV190701-BGBIO", "output": "38249999"}, {"text_input": "What is the hs code for PEPPERMINT ORGANIC FROM FRANCE DISTILLATE (SB) BHN BAKU MEPD200401-BIO", "output": "38249999"}, {"text_input": "What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-200701-GS", "output": "38249999"}, {"text_input": "What is the hs code for ROMAN CHAMOMILLE ORGANIC DISTILLATE 1:1 (SB) BHN BAKU KOSMETIK, COA ANND200401-BIO", "output": "38249999"}, {"text_input": "What is the hs code for SAFFLOWER REFINED OIL (BHN BAKU KOSMETIK) COA CARHR200202-DW", "output": "38249999"}, {"text_input": "What is the hs code for LICORICE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA GLG190401-BGBIO", "output": "38249999"}, {"text_input": "What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA VIV190701-BGBIO", "output": "38249999"}, {"text_input": "What is the hs code for FLOWER ACIDS (BHN BAKU KOSMETIK) COA HS200601", "output": "38249999"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 10 PREMIUM ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D184K25021", "output": "39123900"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 20 PREMIUM ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D184J9N021", "output": "39123900"}, {"text_input": "What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102069005", "output": "28161000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000194, 195", "output": "28363000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000193, 195", "output": "28363000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 BHN BAKU OBAT, COA 122000195", "output": "28363000"}, {"text_input": "What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA D02711UP", "output": "29053200"}, {"text_input": "What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA.0000072011", "output": "29309090"}, {"text_input": "What is the hs code for CEFTAZIDIME BUFFERED (BHN BAKU OBAT) COA T200300", "output": "29419000"}, {"text_input": "What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA T100600", "output": "29419000"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED) BHN BAKU OBAT, COA M532525,587,616,617", "output": "29411019"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX POWDER) ,BHN BAKU OBAT, COA M484611", "output": "29411019"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED) COA M532552", "output": "29411019"}, {"text_input": "What is the hs code for SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 20B0037300", "output": "38249999"}, {"text_input": "What is the hs code for SILYBIN /PHOSPHOPILIDS (BAHAN BAKU SUPLEMEN) COA 20B0067700", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 20B0018800", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 20B0037700", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 20B0037800", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 20B0037900", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 20B0038000", "output": "13021990"}, {"text_input": "What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 19B0110300", "output": "38249999"}, {"text_input": "What is the hs code for CEFADROXIL MONOHYDRATE POWDER (PURIDROX POWDER) BHN BAKU OBAT, COA B334695,696,697", "output": "29419000"}, {"text_input": "What is the hs code for DRY VITAMIN E 75HP (BHN BAKU SUPLEMEN), COA WB19090223", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 75HP (BHN BAKU SUPLEMEN), COA WB1909023", "output": "29362800"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH632783", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH633089", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY 200 PINK (BHN BAKU PEWARNA TABLET) COA SH632757", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY EZ CLEAR (BHN BAKU PEWARNA TABLET) COA SH632746", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH632194", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II BLUE (BHN BAKU PEWARNA TABLET) COA SH632758", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH633169", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH632749", "output": "39061090"}, {"text_input": "What is the hs code for DEXAMETHASONE BP2010/USP41 (BHN BAKU OBAT) COA NED200509, NED200511", "output": "29372200"}, {"text_input": "What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA ND190702", "output": "29372200"}, {"text_input": "What is the hs code for PREDNISOLONE BP2018/USP42 (BHN BAKU OBAT) COA NPL200310", "output": "29372100"}, {"text_input": "What is the hs code for KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0190520", "output": "29339990"}, {"text_input": "What is the hs code for BIOBENEFITY (PLANT EXTRACT FOR COSMETIC) BHN BAKU KOSMETIK, COA 200215", "output": "13021990"}, {"text_input": "What is the hs code for ROSE HIPS LIQUID B (PLANT EXTRACT FOR COSMETIC)BHN BAKU KOSMETIK) COA 200964", "output": "13021990"}, {"text_input": "What is the hs code for EMALEX PEIS-10EX (SURFACTANT FOR COSMETIC)BHN BAKU KOSMETIK) COA 2002-27", "output": "34021310"}, {"text_input": "What is the hs code for EMALEX GWIS-320 (SURFACTANT FOR COSMETIC)BHN BAKU KOSMETIK, COA 1-1034", "output": "34021310"}, {"text_input": "What is the hs code for PHYTO COLLAGE B(N) PLANT EXTRACT FOR COSMETIC (BHN BAKU KOSMETIK), COA 192760,200610", "output": "13021990"}, {"text_input": "What is the hs code for SPRINTMINT (PLANT EXTRACT FOR COSMETIC) BHN BAKU KOSMETIK,COA 200839", "output": "13021990"}, {"text_input": "What is the hs code for IZAYOI (PLANT EXTRACT FOR COSMETIC) BHN BAKU KOSMETIK,COA 193027", "output": "13021990"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 2AX2006039", "output": "29181400"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA MTP19120", "output": "28363000"}, {"text_input": "What is the hs code for FLOWLAC (R) 100H (BHN BAKU OBAT) COA. L105810720", "output": "17021100"}, {"text_input": "What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103862120", "output": "17021100"}, {"text_input": "What is the hs code for CAPSULAC (R) 60 (BHN BAKU OBAT) COA L100411820", "output": "17021100"}, {"text_input": "What is the hs code for CELLACTOSE (R) 80 (BHN BAKU OBAT) COA L100462120", "output": "17021100"}, {"text_input": "What is the hs code for TABCOAT TC WHITE (BHN BAKU PEWARNA TABLET) COA GA674053", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY SGR TRANSLUCENT (BHN BAKU PEWARNA TABLET) COA GA674052", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY SGR CLEAR (BHN BAKU PEWARNA TABLET) COA GA674054", "output": "38249999"}, {"text_input": "What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 180808", "output": "28399000"}, {"text_input": "What is the hs code for GELOT 64 (BAHAN BAKU OBAT) COA 180160", "output": "28399000"}, {"text_input": "What is the hs code for PHARMACEUTICAL BOVINE GELATINE 150/08 ...(BAHAN BAKU OBAT ), COA 5131906514, 5131909595", "output": "35030049"}, {"text_input": "What is the hs code for CATECHINS (TEA EXTRACT) (BHN BAKU SUPLEMEN KESEHATAN), COA 002211", "output": "38249999"}, {"text_input": "What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN), COA WB20070514,515", "output": "29362700"}, {"text_input": "What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA", "output": "38029090"}, {"text_input": "What is the hs code for SOYA LECITHIN (BHN BAKU MAKANAN) COA TY2200615-25", "output": "29232010"}, {"text_input": "What is the hs code for ZINC SULFATE 1-HYDRATE,POWDER,PH.EUR.10.ED (BHN BAKU SUPLEMEN) COA 3052430", "output": "28332920"}, {"text_input": "What is the hs code for VIT MINERAL PREMIX FOR MATERNAL BISCUIT (BHN BAKU MAKANAN), COA XW92007025", "output": "21069059"}, {"text_input": "What is the hs code for LISINOPRIL DIHYDRATE (BAHAN BAKU OBAT) COA C5170-19-005", "output": "29339990"}, {"text_input": "What is the hs code for AMITOSE R (BHN BAKU KOSMETIK) COA FDC", "output": "38249999"}, {"text_input": "What is the hs code for EDIBLE BOVINE GELATINE 140/20 HAL(BAHAN BAKU OBAT ), COA 5002007536,7560", "output": "35030049"}, {"text_input": "What is the hs code for GELATINE RXL 210 BLOOM 18 (BHN BAKU OBAT) COA 5001901482", "output": "35030049"}, {"text_input": "What is the hs code for EDIBLE BOVINE GELATINE 180/20 HAL (BHN BAKU OBAT) COA 5002003108", "output": "35030049"}, {"text_input": "What is the hs code for ECHINACEA ANG.DRY PURIF.EX (BHN BAKU SUPLEMEN) COA 20S0152800", "output": "13021990"}, {"text_input": "What is the hs code for ECHINACEA ANG.DRY PURIF.EX (BHN BAKU SUPLEMEN) COA 20S0152800", "output": "13021990"}, {"text_input": "What is the hs code for LIFE'S DHA (TM) S35-O300, 5KG ALUF (BHN BAKU SUPLEMEN) COA VY00365010", "output": "29362500"}, {"text_input": "What is the hs code for LIFE'SDHA S35-O100, 5KG ALUF (BHN BAKU SUPLEMEN) COA VY00339616", "output": "29362500"}, {"text_input": "What is the hs code for SENTRY POLYOX WSR 303 LEO NF (DOW) (BHN BAKU PEWARNA TABLET), COA D682K25RR3", "output": "39123900"}, {"text_input": "What is the hs code for TRISODIUMCITRATE DIHYDRATE FINE GRANULAR (BHN BAKU MAKANAN), COA UJ028", "output": "29181400"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU MAKANAN) COA UJ027", "output": "29181400"}, {"text_input": "What is the hs code for TRISODIUMCITRATE DIHYDRATE FINE GRANULAR (BHN BAKU MAKANAN), COA UJ027 ,UJ028", "output": "29181400"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU MAKANAN) COA UJ026", "output": "29181400"}, {"text_input": "What is the hs code for ESOMEPRAZOLE MAGNESIUM USP (BHN BAKU OBAT) COAESM/2007290", "output": "29333990"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN542450", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN542509", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN542479", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN542451", "output": "35051010"}, {"text_input": "What is the hs code for TRANSCUTOL P (BHN BAKU OBAT) COA 179566", "output": "28399000"}, {"text_input": "What is the hs code for TEFOSE 63 (BHN BAKU OBAT) COA 180034", "output": "28399000"}, {"text_input": "What is the hs code for GELOT 64 (BAHAN BAKU OBAT) COA 180160", "output": "28399000"}, {"text_input": "What is the hs code for PRECIROL ATO 5 (BAHAN BAKU OBAT) COA 180609", "output": "28399000"}, {"text_input": "What is the hs code for PREMIX BALITA (BHN BAKU MAKANAN) COA XW92006266, XW92006267", "output": "21069059"}, {"text_input": "What is the hs code for PX 103070-C3 (BHN BAKU MAKANAN) COA XW92006294, XW92006295", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN MINERAL PREMIX INSTANT DRINK (BHN BAKU MAKANAN) COA XW92007024", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92007026", "output": "21069059"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT20030067", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20010006", "output": "29362900"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL-ACETATE, 20KG JUG (BHN BAKU SUPLEMEN) COA XH20200401", "output": "29362800"}, {"text_input": "What is the hs code for PARSOL (R) HS, 20KG BOX (BHN BAKU KOSMETIK) COA HS0730520", "output": "29420000"}, {"text_input": "What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01906809", "output": "29362400"}, {"text_input": "What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01906809", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT20040017", "output": "29362600"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ91206297", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT20040017", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN B12 0,1PCT WS (BHN BAKU MAKANAN) COA UT20040017", "output": "29362600"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20010002,UT20010003", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2001002", "output": "29362300"}, {"text_input": "What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT20050020", "output": "29362500"}, {"text_input": "What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT20050020", "output": "29362500"}, {"text_input": "What is the hs code for MEG-3 (TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT20050020", "output": "29362500"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT20060146, 154", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT20060154", "output": "29362800"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA. L101852720", "output": "17021100"}, {"text_input": "What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA LC019-20-801", "output": "17021100"}, {"text_input": "What is the hs code for BICAR PHARMA HD0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN ) COA MTP16320", "output": "28363000"}, {"text_input": "What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA DOC1882021", "output": "28363000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000254", "output": "28363000"}, {"text_input": "What is the hs code for PHENYLEPHRINE HCL USP (BHN BAKU OBAT) COA 2-IL-D-0980620", "output": "29225090"}, {"text_input": "What is the hs code for AMBROXOL HYDROCHLORIDE (BAHAN BAKU OBAT), COA VBNG200194", "output": "29221990"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH633189", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH632784", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH633190", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH633187", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH633194", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH633205", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH633200", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH633169", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH633261", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH633185", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH633193", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH633204", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY RED (BHN BAKU PEWARNA TABLET) COA SH633188", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY 200 PINK (BHN BAKU PEWARNA TABLET) COA SH632757", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH632965", "output": "38249999"}, {"text_input": "What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC16420T", "output": "27101990"}, {"text_input": "What is the hs code for GRANULAC 200, 25KG BAG (BHN BAKU OBAT) COA. LC024-20-801", "output": "17021100"}, {"text_input": "What is the hs code for ECOGEL TM-5KG (BHN BAKU KOSMETIK) COA 2013701", "output": "38249999"}, {"text_input": "What is the hs code for AMISOL TRIO TM -5KG (BHN BAKU KOSMETIK) COA 1936114", "output": "38249999"}, {"text_input": "What is the hs code for ROSALITY TM- 1KG (BHN BAKU KOSMETIK) COA 2012801", "output": "38249999"}, {"text_input": "What is the hs code for PHYTENSO TM- 5KG (BHN BAKU KOSMETIK) COA 1936116", "output": "38249999"}, {"text_input": "What is the hs code for EXO-T TM -1KG (BHN BAKU KOSMETIK) COA 715017666K", "output": "38249999"}, {"text_input": "What is the hs code for SWT 7TM H -1KG (BHN BAKU KOSMETIK) COA 0029801", "output": "38249999"}, {"text_input": "What is the hs code for PLATE STERILE TODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0050557", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0125281", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0013180,9309234", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0070949,0079962", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161545", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0091369", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9239282", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0002860,0030113", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D-MANNITOL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0013917", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G(MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH0065878,9239319", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309312", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0042333,9337215", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048032", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9364958", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0037499,0126889", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0062582", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9310881", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037535", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9353100", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFIDE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0009096", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161680", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0013247", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0077148", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0097399", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH0125228,0161496", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142723", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0042947", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0035732", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9337386", "output": "38210090"}, {"text_input": "What is the hs code for TUBE CRYSTAL INOCULUM BROTH (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0086820", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0058279", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239282", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0174577", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037535", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9353100", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0135906", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0009096", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0147207", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BIGGY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0093712", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8206968", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0126958", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9015557", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MR-VP MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9354355", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RHAMNOSE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0154527", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309193", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MED 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9112920", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MICRO ASSAY CULTURE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025933", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0079804", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE YEAST NITROGEN BASE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0153180", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B03C073M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE OF BASAL MEDIUM 500GR(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048956", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE YEAST MOLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065956", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9324170", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0161496", "output": "38210090"}, {"text_input": "What is the hs code for GASPAK EZ LARGE INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7336258010", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0175457", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0161496", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9295486", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC /NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0042947", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0196591", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0196591", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMEN(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0120569", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I&VI LYO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0044798", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0034814", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9273671", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9338680", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065943", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0196591", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0041756", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0041756", "output": "38210090"}, {"text_input": "What is the hs code for VIAL FRASER BROTH SUPPLEMENT 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0120831", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0037338", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE FOLIC ACID ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9176696", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 00655855", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0078873", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0119320", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0121592", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0105076", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOBACILLI AGAR AOAC 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9339176", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8248932", "output": "38210090"}, {"text_input": "What is the hs code for CALCIUM CARBONATE DC TYPE CS90 PHARMA (BHN BAKU OBAT) COA 202000083", "output": "28365010"}, {"text_input": "What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 202000199", "output": "28183000"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 INF OIL, 4,5KG PJUG (BHN BAKU SUPLEMEN) COA TS00014967", "output": "29362500"}, {"text_input": "What is the hs code for SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 2008131314", "output": "29322090"}, {"text_input": "What is the hs code for CYPROHEPTADINE HCL BP/PH.EUR (BHN BAKU OBAT) COA CYP/05201006", "output": "29333990"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX2008007", "output": "29181400"}, {"text_input": "What is the hs code for LIFE'S ARA (TM) '12' N-6 ARA POWDER (BHN BAKU MAKANAN) COA WB20010367", "output": "29362500"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM LV HYDROXYPROPYL ...(BHN BAKU PEWARNA TABLET)COA D0180K1Q002", "output": "39123900"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 10 PREMIUM ETHYLCELLULOSE... (BHN BAKU PEWARNA TABLET) COA D184J7Q021", "output": "39123900"}, {"text_input": "What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M-31.0PCT (BHN BAKU OBAT) COA 102029017", "output": "28161000"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA200604", "output": "38249999"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA200604", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO200101", "output": "38249999"}, {"text_input": "What is the hs code for WITCH HAZEL ORGANIC DISTILLATE 1:10 (BHN BAKU KOSMETIK), COA PAG-CO200101", "output": "38249999"}, {"text_input": "What is the hs code for KIGELINE (BHN BAKU KOSMETIK) COA KA200502-B", "output": "38249999"}, {"text_input": "What is the hs code for COPPER (II) GLUCONATE, FINE POWDER, USP 43 (BHN BAKU SUPLEMEN) COA 3089250", "output": "29181600"}, {"text_input": "What is the hs code for METAMIZOL SODIUM (BAHAN BAKU UNTUK PAKAN TERNAK) COA 2006936", "output": "29331900"}, {"text_input": "What is the hs code for METHYL SULFONYL METHANE (BAHAN BAKU OBAT) COA 20200806", "output": "29309090"}, {"text_input": "What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 2007059", "output": "29349990"}, {"text_input": "What is the hs code for METHYL SULFONYL METHANE (BHN BAKU OBAT) COA 20200716", "output": "29309090"}, {"text_input": "What is the hs code for CAFFEINE (BHN BAKU OBAT) COA 2005897, 20071314, 20071316", "output": "29393000"}, {"text_input": "What is the hs code for L-LYSINE HCL (BHN BAKU OBAT) COA 2012270725", "output": "29224100"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000256", "output": "28363000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT), COA 122000255,256", "output": "28363000"}, {"text_input": "What is the hs code for PLATE STERILE TODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0050557", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0125281", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0013180,9309234", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0070949,0079962", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161545", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0091369", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9239282", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0002860,0030113", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D-MANNITOL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0013917", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G(MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH0065878,9239319", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309312", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0042333,9337215", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048032", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9364958", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0037499,0126889", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0062582", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9310881", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037535", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9353100", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFIDE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0009096", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161680", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0013247", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0077148", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0097399", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH0125228,0161496", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142723", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0042947", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0035732", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9337386", "output": "38210090"}, {"text_input": "What is the hs code for TUBE CRYSTAL INOCULUM BROTH (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0086820", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0058279", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239282", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0174577", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037535", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9353100", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0135906", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0009096", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0147207", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BIGGY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0093712", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 8206968", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0126958", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9015557", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MR-VP MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9354355", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RHAMNOSE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0154527", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309193", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MED 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9112920", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MICRO ASSAY CULTURE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9025933", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0079804", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE YEAST NITROGEN BASE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0153180", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B03C073M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE OF BASAL MEDIUM 500GR(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048956", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE YEAST MOLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065956", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9324170", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0161496", "output": "38210090"}, {"text_input": "What is the hs code for GASPAK EZ LARGE INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 7336258010", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0175457", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0161496", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9295486", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC /NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0042947", "output": "38210090"}, {"text_input": "What is the hs code for FERROUS LACTATE 2-HYDRATE POWDER (BHN BAKU MAKANAN) COA 3077408", "output": "29181200"}, {"text_input": "What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW92006358,6359", "output": "21069059"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20020027", "output": "29362800"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ00303386", "output": "29362200"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20020027,UT20040031", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20040031", "output": "29362800"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20010002", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT20030193", "output": "29362100"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ00303386", "output": "29362200"}, {"text_input": "What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92006346, XW92006347", "output": "21069059"}, {"text_input": "What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 90911, 200624", "output": "33012920"}, {"text_input": "What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 200510", "output": "13021950"}, {"text_input": "What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 90802", "output": "33012920"}, {"text_input": "What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD(BHN BAKU MAKANAN) COA UT20050022", "output": "29362500"}, {"text_input": "What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT20050022", "output": "29362500"}, {"text_input": "What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT20050022", "output": "29362500"}, {"text_input": "What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT20050022", "output": "29362500"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02005742", "output": "29362400"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2001016", "output": "29362300"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02006056", "output": "29362700"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL02005742", "output": "29362400"}, {"text_input": "What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110017", "output": "29420000"}, {"text_input": "What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT18110017", "output": "29420000"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL02005742", "output": "29362400"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL02005742, TL02007758", "output": "29362400"}, {"text_input": "What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA.0000072033", "output": "29309090"}, {"text_input": "What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK)COA BAG-010340", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND CHAMOMILE EXTRACT (BHN BAKU KOSMETIK)COA MCP-N-032630", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SENAS (BHN BAKU KOSMETIK) COA NASB-012020", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-021920", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND CACTUS EXTRACT (BHN BAKU KOSMETIK)COA CAB-021340", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND TEA TREE EXTRACT (BHN BAKU KOSMETIK) COA MASL-030260", "output": "38249999"}, {"text_input": "What is the hs code for NECTAR DE MATCHA FEMA P114 6 (BHN BAKU KOSMETIK) COA 0000040122", "output": "33029000"}, {"text_input": "What is the hs code for THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000040123", "output": "33029000"}, {"text_input": "What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA 0000040124", "output": "33029000"}, {"text_input": "What is the hs code for PLAISANCE P116808 (BHN BAKU KOSMETIK) COA 0000042817", "output": "33029000"}, {"text_input": "What is the hs code for OPADRY 200 PINK (BHN BAKU PEWARNA TABLET) COA SH633396", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH633414", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH633405", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH633416", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH633408", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH633419", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB RED (BHN BAKU PEWARNA TABLET) COA SH633392", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH633406", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH633415", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH632784", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH633409", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH633410", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH633393", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH633395", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH633394", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH633417", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH633407", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH6341242", "output": "38249999"}, {"text_input": "What is the hs code for OPASPRAY YELLOW (BHN BAKU PEWARNA TABLET), COA DT705767", "output": "32151900"}, {"text_input": "What is the hs code for OPATINT BLUE (BHN BAKU PEWARNA TABLET), COA DT705768", "output": "32151900"}, {"text_input": "What is the hs code for PIPEMIDIC ACID (BHN BAKU OBAT) COA 20018", "output": "29335990"}, {"text_input": "What is the hs code for DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2007002", "output": "28352510"}, {"text_input": "What is the hs code for COPPER SULPHATE PENTAHYDRATE (BHN BAKU PAKAN TERNAK) COA N93", "output": "28332500"}, {"text_input": "What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0170540", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0162138", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0157786", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA PENGEMBANGAN MIKROORGANISME) BATCH 0157830", "output": "38210090"}, {"text_input": "What is the hs code for GRANULAC 200, 25KG BAG (BHN BAKU OBAT) COA. LC024-20-801", "output": "17021100"}, {"text_input": "What is the hs code for GRANULAC 200, 25KG BAG (BHN BAKU OBAT) COA. LC024-20-801", "output": "17021100"}, {"text_input": "What is the hs code for CETIRIZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA 20010CZ6RII", "output": "29335990"}, {"text_input": "What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-200603", "output": "29061300"}, {"text_input": "What is the hs code for ZINC SULFATE 7-HYDRATE,CRYST,PH.EUR.10.ED (BHN BAKU SUPLEMEN) COA 3079705", "output": "28332920"}, {"text_input": "What is the hs code for ETAS 50 (BHN BAKU KOSMETIK) COA HSP1906S", "output": "13021950"}, {"text_input": "What is the hs code for VITAMIN MINERAL PREMIX FOR BISCUIT (BHN BAKU MAKANAN), COA XW92008093", "output": "21069059"}, {"text_input": "What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU OBAT) COA 202000176", "output": "28183000"}, {"text_input": "What is the hs code for PROPYPHENAZONE (ST) (BHN BAKU PEWARNA TABLET) COA 2005077,5080,5085,5086,6103", "output": "29331100"}, {"text_input": "What is the hs code for HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 3064486", "output": "33029000"}, {"text_input": "What is the hs code for FERROUS FUMARATE, FINE POWDER (BHN BAKU MAKANAN) COA 3082640", "output": "29054300"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0132228", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0112241", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 9109987", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9266545", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2186295", "output": "38210090"}, {"text_input": "What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9121860", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9035505", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2198829", "output": "38210090"}, {"text_input": "What is the hs code for PEPTONE STARTER PAK NO.3 EACH EA ,BATCH 191029008,SAMPLE NO COMMERCIAL VALUE", "output": "38210090"}, {"text_input": "What is the hs code for CORTISONE ACETATE MICRONISED PH EUR JP (BHN BAKU OBAT) COA 2000990940", "output": "29372900"}, {"text_input": "What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF, 1KG ALUF (BHN BAKU SUPLEMEN) COA UE02005024", "output": "32030010"}, {"text_input": "What is the hs code for GENIVIDA (TM) TG, 1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT19060004", "output": "29329990"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT EM YELLOW (BHN BAKU SUPLEMEN) COA UT20040007", "output": "32041900"}, {"text_input": "What is the hs code for BANANA OILY EXTRACT (BHN BAKU KOSMETIK)COA MUS2007L1-H ,SAMPLE NO COMM VALUE", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO2007L2-B,SAMPLE NO COMM..", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY FX YELLOW (BHN BAKU PEWARNA OBAT) COA GA676197", "output": "38249999"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL02007356,TL02007416", "output": "29362700"}, {"text_input": "What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN), COA UT20050026", "output": "29362500"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ00316030,31,32", "output": "29362700"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU MAKANAN) COA UT20050130", "output": "29362800"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030150", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030150", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20010006", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE02001001", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20010006", "output": "29362900"}, {"text_input": "What is the hs code for CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU SUPLEMEN, COA WB20030026", "output": "29362700"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00102696", "output": "29362200"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20010002", "output": "32041900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20050130", "output": "29362800"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030047", "output": "29362500"}, {"text_input": "What is the hs code for DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01908638", "output": "29362400"}, {"text_input": "What is the hs code for KAHLWAX 2442L (BHN BAKU KOSMETIK) COA F2024024-001", "output": "15211000"}, {"text_input": "What is the hs code for AVICEL CL 611 NF BDF (BHN BAKU KOSMETIK) COA", "output": "39129090"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH633915", "output": "38249999"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP20084489", "output": "29211900"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP20084490", "output": "29211900"}, {"text_input": "What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP828112", "output": "39059990"}, {"text_input": "What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP827634", "output": "39059990"}, {"text_input": "What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP828115", "output": "39059990"}, {"text_input": "What is the hs code for FD AND C YELLOW #6 SUNSET YELLOW ...(BHN BAKU PEWARNA TABLET) COA WP818966:AZ8109", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C BLUE #1/BRILLIANT BLUE ... (BHN BAKU PEWARNA TABLET) COA WP816342:AZ6940", "output": "32151900"}, {"text_input": "What is the hs code for ERYTHROSINE AL38PCT-42PCT (BHN BAKU PEWARNA TABLET) COA WP760229-1", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C BLUE #1/BRILLIANT BLUE ...(BHN BAKU PEWARNA TABLET) COA WP826689:BA1430", "output": "32151900"}, {"text_input": "What is the hs code for CLEANBIO TM-ZINC (PROTECT) (CL0024-K18) (BAHAN BAKU KOSMETIK) COA 20ZDP", "output": "38249999"}, {"text_input": "What is the hs code for COPPER SULFATE, POWDER, PH.EUR.10.ED (BHN BAKU SUPLEMEN) COA 3089772-1", "output": "28332500"}, {"text_input": "What is the hs code for PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PI18050006", "output": "29341000"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 19460820,19850820,19900820...", "output": "29359000"}, {"text_input": "What is the hs code for EMPTY DRUM (DRUM KOSONG) FREEOF COST NO COMMERCIAL VALUE", "output": "48192000"}, {"text_input": "What is the hs code for GRANULAC 200, 25KG BAG (BHN BAKU OBAT) COA. LC020-20-801", "output": "17021100"}, {"text_input": "What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA 179850", "output": "28399000"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU OBAT) COA 03/19GL4", "output": "28399000"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 03/19GL4,SAMPLE NO COMM VALUE", "output": "28399000"}, {"text_input": "What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA.0000072152", "output": "29309090"}, {"text_input": "What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH634360", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH634353", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH634351", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH634366", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH634363", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH634370", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH634371", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH634371", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH634363", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH634365", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH634350", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY GREEN (BHN BAKU PEWARNA TABLET) COA SH633938", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH633891", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH631635", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH633917", "output": "38249999"}, {"text_input": "What is the hs code for PIGMENT BLEND GREEN (BHN BAKU PEWARNA TABLET) COA SH633934", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY RED (BHN BAKU PEWARNA TABLET) COA SH633916", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH633959", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH633283", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH633940", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH633941", "output": "38249999"}, {"text_input": "What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 202000277", "output": "28183000"}, {"text_input": "What is the hs code for ALLOPURINOL USP (BHN BAKU OBAT) COA 20024AY3ARII", "output": "29335990"}, {"text_input": "What is the hs code for FEED LP20 (PAKAN IKAN BERBENTUK SERBUK) COA 2019.07.06-1,SAMPLE NO COMMERCIAL VALUE", "output": "23099090"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP20073160/XP20074900, XP20073161/XP20074901", "output": "29211900"}, {"text_input": "What is the hs code for STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN541939", "output": "35051010"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX2008014", "output": "29181400"}, {"text_input": "What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0047660", "output": "38249999"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0034836", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0091369", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0202716", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0191004", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0191035", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0196373", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0202780", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9239322", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0065878", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309312", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0042333", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048064", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048055", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0062582", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065756", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037535", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0135906", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9353100", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065975", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161680", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0147111", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161545,9364856", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0182725", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EOSIN METHYLENE BLUE AG HHT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0161742", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PHENOL RED BROTH BASE BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0035735", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9129926", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE CSIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0217191", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MICRO INOCULUM BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8311696", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MARINE AGAR 2216 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0202716", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9028828", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RHAMNOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0182029", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0191004", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE UNIVERSAL PREENRICHMENT BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0161260", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0043912", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NITRATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9148558", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364959", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0191035", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M-HPC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9364008", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0085263", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B03C218M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0097399", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0147111", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0048055", "output": "38210090"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0155534", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH0125281,0154856", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0013180", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0079962", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9364856", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9318604,9364864", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0091369", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH0008968,9294153,9309161,...", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0133426", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239322", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065878", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309312", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0042333,0174577", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048032", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048064", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364958", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 0048055", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0126889", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048007", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 00625828206968", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0133432", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0083370", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065756", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037535,0175236", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0135906", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9353100", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0009096", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065975", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9161680", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0013247", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0147207", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0153761", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0147111,0161496", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9142723", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0062561", "output": "38210090"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000293, 122000294", "output": "28363000"}, {"text_input": "What is the hs code for PHARMABRUST (R) C1 (BHN BAKU OBAT), COA 122000263", "output": "21069099"}, {"text_input": "What is the hs code for BACTO PROTEOSE PEPTONE 500G EA (MEDIA PENGEMBANGKAN MIKROORGANISME) BATCH 191029008", "output": "38210090"}, {"text_input": "What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0143491", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B02C111M", "output": "38210090"}, {"text_input": "What is the hs code for COPPER SULPHATE PENTAHYDRATE (BHN BAKU PAKAN TERNAK) COA N93", "output": "28332500"}, {"text_input": "What is the hs code for PREMIX BALITA (BHN BAKU MAKANAN) COA XW92008068,8069,8070", "output": "21069059"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02004002", "output": "29362800"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519062", "output": "29362200"}, {"text_input": "What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0220040016", "output": "29420000"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519062", "output": "29362200"}, {"text_input": "What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU MAKANAN) COA XW92007272, XW92007273", "output": "21069059"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN, COA WB00619043, WB00619044", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW92008140", "output": "21069059"}, {"text_input": "What is the hs code for FERROUS FUMARATE EP/USP/FCC (BHN BAKU OBAT) COA.2020/190", "output": "29171900"}, {"text_input": "What is the hs code for OSELTAMIVIR PHOSPHATE - USP (BHN BAKU OBAT) COA MBAS20015A", "output": "29242990"}, {"text_input": "What is the hs code for VIT A PALM 1.0 M+ VIT.D3 100'000 (BHN BAKU MAKANAN) COA UT20070095", "output": "29362100"}, {"text_input": "What is the hs code for VIT A PALM 1.0 M + VIT.D3 100'000 (BHN BAKU MAKANAN) COA UT20070096", "output": "29362100"}, {"text_input": "What is the hs code for MECOBALAMINE JP (BHN BAKU OBAT) COA SLL/MC/0320024", "output": "29362600"}, {"text_input": "What is the hs code for ULTALUX FF 25KG BAG (BHN BAKU KOSMETIK) COA D042031671", "output": "38249999"}, {"text_input": "What is the hs code for CHONDROITIN SULPHATE SODIUM (BHN BAKU OBAT) COA HS2008112", "output": "29362900"}, {"text_input": "What is the hs code for VC ASCORBIC ACID DC 97PCT, 25KG BAL (BHN BAKU MAKANAN) COA HPG2007010, HPG2007012", "output": "29362700"}, {"text_input": "What is the hs code for NORIT SX SUPER E 153 (BHN BAKU KOSMETIK) COA 4672350", "output": "38021000"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG200807", "output": "29362700"}, {"text_input": "What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC165 20 T", "output": "27101990"}, {"text_input": "What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWER CATCOL C 135 (L) GRADE (BHN BAKU KOSMETIK) COA 430/20", "output": "38249999"}, {"text_input": "What is the hs code for VC CALCIUM ASCORBATE DC, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPT2007003", "output": "29362700"}, {"text_input": "What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN ) COA MTP17720", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA RBA2432000", "output": "28363000"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX2008028", "output": "29181400"}, {"text_input": "What is the hs code for FERRIC PYROPHOSPHATE,APPROX 25PCT FE (BHN BAKU MAKANAN) COA 3081937", "output": "28353990"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0097374", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0162727", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0044798", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY 3ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037326", "output": "38210090"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0052572", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0041756,0041768", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9273671", "output": "38210090"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0052572", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0163058", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0037326", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0041768", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065943", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065943", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065943", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0154553", "output": "38210090"}, {"text_input": "What is the hs code for VIAL E COIL H ANTISERUM H7 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0044768", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037338", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0162999", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0196591", "output": "38210090"}, {"text_input": "What is the hs code for MONOCALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA 20200824216,2215,8216...", "output": "28352600"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL ...(BHN BAKU PEWARNA TABLET)COA D180J9I001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180K36003", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D180JCF001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D180J9E003", "output": "39123900"}, {"text_input": "What is the hs code for AEROSIL(R) R 972 (BHN BAKU KOSMETIK) COA 150041223", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH635209", "output": "38249999"}, {"text_input": "What is the hs code for PHARMACEUTICAL CASTOR OIL E.P (BHN BAKU KOSMETIK) COA 0000033504", "output": "38249999"}, {"text_input": "What is the hs code for BAYPURE CX 100 SOLID G !25K BAG (BHN BAKU KOSMETIK) COA CHASMX0020", "output": "38249999"}, {"text_input": "What is the hs code for METHISOPRINOL (BHN BAKU OBAT) COA MTP0070320", "output": "29349990"}, {"text_input": "What is the hs code for AMLODIPINE BESYLATE BP/EP (BHN BAKU OBAT) COA AMB/130/06/20", "output": "29333990"}, {"text_input": "What is the hs code for MAPROTILINE HCL (BHN BAKU OBAT) COA 1950002228, 1950003172", "output": "29214900"}, {"text_input": "What is the hs code for 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 072219/006111", "output": "38249999"}, {"text_input": "What is the hs code for BULK DRUG CETYL PYRIDINIUM CHLORIDE EP (BHN BAKU OBAT) COA 320CAB0001", "output": "29333990"}, {"text_input": "What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA 8MT2008154", "output": "30032000"}, {"text_input": "What is the hs code for ADSORB AFLA (BHN BAKU UNTUK PAKAN TERNAK) COA 159", "output": "25081000"}, {"text_input": "What is the hs code for THE MATCHA I P001602 (BHN BAKU KOSMETIK) COA 0000040123", "output": "33029000"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK COA LB250620", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB120620", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG120620", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT GREEN GLOBEADS L (70-120)BHN BAKU KOSMETIK, COA LG190120", "output": "39123900"}, {"text_input": "What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 200815", "output": "33012920"}, {"text_input": "What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 200618", "output": "13021950"}, {"text_input": "What is the hs code for MAGNESIUM CHLORIDE 6-HYDRATE (BHN BAKU OBAT) COA 3054789", "output": "28273100"}, {"text_input": "What is the hs code for GRANULAC (R) 70 (BHN BAKU OBAT) COA L101841520", "output": "17021100"}, {"text_input": "What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104312620", "output": "17021100"}, {"text_input": "What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L10386220", "output": "17021100"}, {"text_input": "What is the hs code for FLOWLAC (R) 100 H (BHN BAKU OBAT) COA L105810520", "output": "17021100"}, {"text_input": "What is the hs code for OPADRY SGR RED (BHN BAKU PEWARNA OBAT) COA GA678155", "output": "38249999"}, {"text_input": "What is the hs code for METHOCEL E5 PREMIUM LV HYDROXYPROPYL ...(BHN BAKU PEWARNA TABLET)COA D011K3KL02", "output": "39123900"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0212530", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0183232", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC100EA(MEDIA U/ PENGEMBANGAN MIKROORGANISME) BATCH0183229,0212530", "output": "38210090"}, {"text_input": "What is the hs code for SK BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK)COA AACN-011310", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK)COA BAG-010340", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-021920", "output": "38249999"}, {"text_input": "What is the hs code for DIFCO BEEF EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0091832", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0063490", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0057337", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PEPTONE 500G EA (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0112242, SAMPLE NO COMM VALUE", "output": "38210090"}, {"text_input": "What is the hs code for PEPTONE STARTER PAK ...(MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH191029008,SAMPLE NO COMM VALUE", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASAMINO ACIDS...(MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 00668822,SAMPLE NO COMM VALUE", "output": "38210090"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113459", "output": "29339990"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113443", "output": "29339990"}, {"text_input": "What is the hs code for CEFADROXIL MONOHYDRATE POWDER (PURIDROX POWDER) BHN BAKU OBAT, COA B340200,B340201,B340202", "output": "29419000"}, {"text_input": "What is the hs code for NIACINAMIDE USP (BHN BAKU KOSMETIK) COA 20-21/NMD(P)/00178,180,181,182,184", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB20010231", "output": "29362800"}, {"text_input": "What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 2008EF9812", "output": "29224900"}, {"text_input": "What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK)COA 7766017", "output": "38249999"}, {"text_input": "What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) COA 7766018", "output": "38249999"}, {"text_input": "What is the hs code for GELUCIRE 48/16 PELLETS (BHN BAKU OBAT) COA 178335", "output": "28399000"}, {"text_input": "What is the hs code for COMPRITOL 888 ATO (BHN BAKU OBAT) COA 181287", "output": "28399000"}, {"text_input": "What is the hs code for GELOIL SC (BAHAN BAKU OBAT) COA 176526", "output": "28399000"}, {"text_input": "What is the hs code for LABRAFIL M 1944 CS (BAHAN BAKU OBAT) COA 181071", "output": "28399000"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB20010231", "output": "29362800"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX2008028", "output": "29181400"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20200903", "output": "17029019"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED GRADE P) BHN BAKU OBAT,COA M597261,M597382", "output": "29411019"}, {"text_input": "What is the hs code for RANITIDINE HCL USP (BHN BAKU OBAT)COA. RH0470 08 20, RH471 08 20,RH482 08 20", "output": "29321900"}, {"text_input": "What is the hs code for GELATINE 200/08 ...(BAHAN BAKU OBAT ), COA 5132008200", "output": "35030049"}, {"text_input": "What is the hs code for TABCOAT TC WHITE (BHN BAKU PEWARNA TABLET) COA GA676921", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY SGR TRANSLUCENT (BHN BAKU PEWARNA TABLET) COA GA676922", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY SGR CLEAR (BHN BAKU PEWARNA TABLET) COA GA676923", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY SGR RED (BHN BAKU PEWARNA TABLET) COA GA676939", "output": "38249999"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP20084555, XP20084556", "output": "29211900"}, {"text_input": "What is the hs code for CHONDROITIN SULPHATE SODIUM (BHN BAKU OBAT) COA HS2009082", "output": "29362900"}, {"text_input": "What is the hs code for SERASENSE SF CM5 (BAHAN BAKU KOSMETIK) COA PA00807039,PA00807041, PA00807047", "output": "29319049"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH634837", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II PURPLE (BHN BAKU PEWARNA TABLET) COA SH634844", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH632409", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH632784", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH633089", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH632249", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH633282", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH634842", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH634841", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH634838", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH634845", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH634846", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II GREEN (BHN BAKU PEWARNA TABLET) COA SH634853", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH634871", "output": "38249999"}, {"text_input": "What is the hs code for SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA L202009-016", "output": "21069059"}, {"text_input": "What is the hs code for DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2008002", "output": "28352510"}, {"text_input": "What is the hs code for CORN PO4 25KG (BHN BAKU KOSMETIK) COA 0213", "output": "35051010"}, {"text_input": "What is the hs code for FERROUS SULFATE,DRIED, POWDER ,USP43 (BHN BAKU OBAT) COA 3086986", "output": "28332920"}, {"text_input": "What is the hs code for ZINC SULFATE 7-HYDRATE, CRYST., PH EUR.10 ED (BHN BAKU OBAT) COA 3079708", "output": "28332920"}, {"text_input": "What is the hs code for TRIPOTASSIUM CITRATE 1-HYDRATE (BHN BAKU OBAT) COA3090583", "output": "29181400"}, {"text_input": "What is the hs code for MAGNESIUM OXIDE, LIGHT, POWDER, BP 2020 (BHN BAKU OBAT) COA 1104435", "output": "25199010"}, {"text_input": "What is the hs code for TRICALCIUM CITRATE 4-HYDRATE (BHN BAKU OBAT) COA 3089630", "output": "29181400"}, {"text_input": "What is the hs code for ZINC SULFATE 1-HYDRATE, POWDER,USP 43 (BHN BAKU OBAT) COA 3087771-2", "output": "28332920"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH635815", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH635813", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREY ( BHN BAKU PEWARNA TABLET) COA SH635812", "output": "38249999"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000294", "output": "28363000"}, {"text_input": "What is the hs code for OPALUX MAROON (BHN BAKU PEWARNA OBAT) COA DT706927", "output": "32151900"}, {"text_input": "What is the hs code for MECOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/0720033", "output": "29362600"}, {"text_input": "What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 11092020", "output": "25081000"}, {"text_input": "What is the hs code for OPADRY SGR TRANSLUCENT (BHN BAKU PEWARNA OBAT) COA GA678566", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY SGR CLEAR (BHN BAKU PEWARNA TABLET) COA GA678568", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY SGR WHITE (BHN BAKU PEWARNA TABLET) COA GA678567", "output": "38249999"}, {"text_input": "What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0220040016", "output": "29420000"}, {"text_input": "What is the hs code for DL-PANTHENOL 50L ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01908638", "output": "29362400"}, {"text_input": "What is the hs code for DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01908640", "output": "29362400"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT20070164", "output": "29362800"}, {"text_input": "What is the hs code for STAY-C (R) 50,20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02002008,UE02002009", "output": "29362700"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20010006", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1907101", "output": "29362300"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00519063", "output": "29362200"}, {"text_input": "What is the hs code for CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB20030026", "output": "29362700"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02008792", "output": "29362400"}, {"text_input": "What is the hs code for ESOMEPRAZOLE PELLETS 22.5PCT (BHN BAKU OBAT) COA EO01820C022", "output": "30039000"}, {"text_input": "What is the hs code for VITAMIN PREMIX FOR BISCUIT (BHN BAKU MAKANAN), COA XW92009129", "output": "21069059"}, {"text_input": "What is the hs code for PANTOPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT, COA APSS19005", "output": "29333990"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT), COA ASG/07/310720, ASG/08/020820,ASG/08/030820", "output": "29420000"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE BP (BHN BAKU OBAT) COA ASGP/08/210820,ASGP/08/220820,ASGP/08/230820...", "output": "29420000"}, {"text_input": "What is the hs code for PHENYTOIN SODIUM (BHN BAKU OBAT) COA 20100268", "output": "29332100"}, {"text_input": "What is the hs code for RUGENER DREIKRONEN HEILKREIDE 25K (BHN BAKU KOSMETIK) COA 5032025280", "output": "25090000"}, {"text_input": "What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU PEWARNA TABLET) COA WP824132", "output": "32151900"}, {"text_input": "What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT ...(BHN BAKU PEWARNA TABLET) COA WP824133", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW ... (BHN BAKU PEWARNA TABLET) COA WP830186", "output": "32151900"}, {"text_input": "What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT (BHN BAKU PEWARNA TABLET) COA WP831125", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL ...(BHN BAKU PEWARNA TABLET) COA WP822802", "output": "32151900"}, {"text_input": "What is the hs code for GRANULAC (R) 70 (BHN BAKU OBAT) COA L101841520", "output": "17021100"}, {"text_input": "What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104312620", "output": "17021100"}, {"text_input": "What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L10386220", "output": "17021100"}, {"text_input": "What is the hs code for FLOWLAC (R) 100 H (BHN BAKU OBAT) COA L105810520", "output": "17021100"}, {"text_input": "What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN), COA XW92009194", "output": "21069059"}, {"text_input": "What is the hs code for L-GLUTAMIC ACID (FCC GRADE) PURITY 99PCT UP (BHN BAKU MAKANAN), COA 1000056342/200820", "output": "29224900"}, {"text_input": "What is the hs code for PROTIBOND TG-AK (BAHAN BAKU MAKANAN) COA AK20081709", "output": "21069059"}, {"text_input": "What is the hs code for DEXCHLORPHENIRAMINE MALEATE USP (BHN BAKU OBAT) COA SLL/DC/0820022,0920023/0920024", "output": "29333910"}, {"text_input": "What is the hs code for DEXCHLORPHENIRAMINE MALEATE USP (BHN BAKU OBAT) COA SLL/DC/0420008", "output": "29333910"}, {"text_input": "What is the hs code for CELECOXIB USP (BHN BAKU OBAT) COA CLX/016/08/20", "output": "29359000"}, {"text_input": "What is the hs code for AMPICILLIN TRIHYDRATE (PURICILLIN COMPACTED) BHN BAKU OBAT,COA B842860,M842868,M842869,M842870", "output": "29411020"}, {"text_input": "What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 20290029", "output": "30039000"}, {"text_input": "What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 20290029", "output": "30039000"}, {"text_input": "What is the hs code for KANEKA Q10 UBIDECARENONE 5KG JP (BHN BAKU KOSMETIK) COA FA01-4306", "output": "39139090"}, {"text_input": "What is the hs code for EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300046", "output": "13021950"}, {"text_input": "What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC 207 20 T", "output": "27101990"}, {"text_input": "What is the hs code for ACRYPOL 980 (20KG) BAHAN BAKU KOSMETIK, COA 11520049, 11520050,11520051", "output": "39069099"}, {"text_input": "What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2008341796", "output": "29362600"}, {"text_input": "What is the hs code for CYANOCOBALAMINE VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2008341796", "output": "29362600"}, {"text_input": "What is the hs code for ABSORAGE ( BHN BAKU KOSMETIK), COA 200264", "output": "13021990"}, {"text_input": "What is the hs code for MANDARIN CLEAR (BHN BAKU KOSMETIK) COA 200700", "output": "13021990"}, {"text_input": "What is the hs code for COMFREY LIQUID B (BHN BAKU KOSMETIK) COA 201261", "output": "13021990"}, {"text_input": "What is the hs code for IZAYOI (BHN BAKU KOSMETIK), COA 193027", "output": "13021990"}, {"text_input": "What is the hs code for PHYTO COLLAGE B(N) BHN BAKU KOSMETIK, COA 200610", "output": "13021990"}, {"text_input": "What is the hs code for CLAIRJU (BHN BAKU KOSMETIK),COA 200963", "output": "13021990"}, {"text_input": "What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK),COA 200719", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAC-CO200101", "output": "38249999"}, {"text_input": "What is the hs code for SEABUCKTHORN HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HIR200101-B", "output": "38249999"}, {"text_input": "What is the hs code for POMEGRANATE OF ACORES HYDROGLYCERINED EXTRACT (BHN BAKU KOSMETIK) COA PUGA200603-GL", "output": "38249999"}, {"text_input": "What is the hs code for ROSE OILY EXTRACT (BHN BAKU KOSMETIK), COA ROS200402-H", "output": "38249999"}, {"text_input": "What is the hs code for LIQUORICE ORGANIC OILY EXTRACT (BHN BAKU KOSMETIK) COA GLGT200901-HBIO", "output": "38249999"}, {"text_input": "What is the hs code for AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 154736", "output": "15159011"}, {"text_input": "What is the hs code for VIT MINERAL PREMIX FOR MATERNAL BISCUIT (BHN BAKU MAKANAN), COA XW92009299", "output": "21069059"}, {"text_input": "What is the hs code for VIT MINERAL PREMIX FOR MATERNAL BISCUIT (BHN BAKU MAKANAN), COA XW92009297", "output": "21069059"}, {"text_input": "What is the hs code for VIT MINERAL PREMIX FOR MATERNAL BISCUIT (BHN BAKU MAKANAN), COA XW92009298", "output": "21069059"}, {"text_input": "What is the hs code for SAMPLE ASCORBIC ACID (BHN BAKU KOSMETIK) COA TL02001622,SAMPLE NO COMM VALUE", "output": "29362700"}, {"text_input": "What is the hs code for REFINED SUNFLOWER OIL (BHN BAKU KOSMETIK) COA 0002228405", "output": "38249999"}, {"text_input": "What is the hs code for CETRIMIDE POWDER (BHN BAKU KOSMETIK) COA 320CAA0017", "output": "38249999"}, {"text_input": "What is the hs code for CATECHINS TEAVIGO 1KG (BHN BAKU SUPLEMEN KESEHATAN), COA 007081", "output": "38249999"}, {"text_input": "What is the hs code for CATECHINS TEAVIGO 1KG (BHN BAKU SUPLEMEN KESEHATAN) COA 007081", "output": "38249999"}, {"text_input": "What is the hs code for CATECHINS TEAVIGO 1KG (BHN BAKU SUPLEMEN KESEHATAN) COA 007081", "output": "38249999"}, {"text_input": "What is the hs code for INSTANT TEA POWDER (TEA EXTRACT) BHN BAKU MAKANAN, COA 912282", "output": "9022010"}, {"text_input": "What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB20090730", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB20070267", "output": "29362100"}, {"text_input": "What is the hs code for MOXIFLOXACIN HYDROCHLORIDE USP (INJECTABLE GRADE) (BHN BAKU OBAT) COA MOX/10070006", "output": "29334990"}, {"text_input": "What is the hs code for METRONIDAZOLE EP INJECTABLE (BHN BAKU OBAT) COA MTZ/0060815", "output": "29332900"}, {"text_input": "What is the hs code for METRONIDAZOLE BP (BHN BAKU OBAT) COA MTZ/0060926", "output": "29332900"}, {"text_input": "What is the hs code for BUDESONIDE MICRONIZED (BHN BAKU OBAT) COA NA2270M", "output": "29372900"}, {"text_input": "What is the hs code for CYPROTERONE ACETATE MICRONIZED (BHN BAKU OBAT) COA NA2678M", "output": "29372900"}, {"text_input": "What is the hs code for MOMETAZONE FUROATE MICRONIZED (BHN BAKU OBAT) COA NA2603M", "output": "29372200"}, {"text_input": "What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NA2219M", "output": "29372200"}, {"text_input": "What is the hs code for MELOXICAM USP (BHN BAKU OBAT) COA HMXCPN002", "output": "29341000"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP20094098, XP20094099", "output": "29211900"}, {"text_input": "What is the hs code for METRONIDAZOLE BENZOATE (PSD:100PCT<30UM) (BHN BAKU OBAT) COA MBO/10090439", "output": "29332900"}, {"text_input": "What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-003-X", "output": "38249999"}, {"text_input": "What is the hs code for GRANULAC 200, 25KG BAG (BHN BAKU OBAT) COA. LC020-20-801", "output": "17021100"}, {"text_input": "What is the hs code for MOMETASONE FUROATE USP 41 MICRONISED (BHN BAKU OBAT) COA APL/01225/I-20", "output": "29372200"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0219510", "output": "38210090"}, {"text_input": "What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 20290034", "output": "30039000"}, {"text_input": "What is the hs code for COPPER SULPHATE PENTAHYDRATE (BHN BAKU PAKAN TERNAK) COA N95", "output": "28332500"}, {"text_input": "What is the hs code for GRANULAC 200, 25KG BAG (BHN BAKU OBAT) COA. LC020-20-801", "output": "17021100"}, {"text_input": "What is the hs code for M 1555 N 900/980 76 (BHN BAKU KOSMETIK) COA 267905", "output": "56039300"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX2008028", "output": "29181400"}, {"text_input": "What is the hs code for PROMOIS SILK-1000 (BHN BAKU KOSMETIK) COA FFN", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA FEB", "output": "38249999"}, {"text_input": "What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02005654", "output": "29362700"}, {"text_input": "What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0320050466, SAMPLE NO COMM VALUE", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS3950120, SAMPLE NO COMM VALUE", "output": "29420000"}, {"text_input": "What is the hs code for VIT A PALM 1.0 MIU/G (TOCO) BHN BAKU KOSMETIK,COA UT20020192, SAMPLE NO COMM VALUE", "output": "29362100"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000190658, SAMPLE NO COMM VALUE", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0519030064, SAMPLE NO COMM VALUE", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0919040013, SAMPLE NO COMM VALUE", "output": "29420000"}, {"text_input": "What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PDJ0003 SAMPLE NO COMM VALUE", "output": "29420000"}, {"text_input": "What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA P-66", "output": "29397900"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT GRANULATION (BHN BAKU SUPLEMEN) COA WB20089035", "output": "29362700"}, {"text_input": "What is the hs code for GINKGO LEAVES EXTRACT (BHN BAKU KOSMETIK) COA 20080521", "output": "13021990"}, {"text_input": "What is the hs code for EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300045, 10300046", "output": "13021950"}, {"text_input": "What is the hs code for D&C GREEN NO.5 C.I.61570 FDA CERTIFIED (BHN BAKU KOSMETIK) COA 10300034", "output": "13021950"}, {"text_input": "What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK)COA CHP1200331", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND GREEN TEA SEED OIL (BHN BAKU KOSMETIK)COA CSSO-053029", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 100720", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND MARIGOLD EXTRACT (BHN BAKU KOSMETIK) COA MGA-012440", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND PF CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK)COA PSSBD-012329", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND BIOCTP-500 (BHN BAKU KOSMETIK) COA BOPN-010560", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-040270", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) HMVBD-010430,HMVBD-020700", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-052829", "output": "38249999"}, {"text_input": "What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWER FORM CATCOL C 135(L) GRADE(B.BAKU KOSMETIK) COA 432/20", "output": "38249999"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 200817", "output": "13021950"}, {"text_input": "What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 200618", "output": "13021950"}, {"text_input": "What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 200815", "output": "33012920"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP20094872, XP20094873", "output": "29211900"}, {"text_input": "What is the hs code for TRAMADOL HCL (BHN BAKU OBAT) COA. TH/3/19031/00E", "output": "29225090"}, {"text_input": "What is the hs code for 1,3-BUTYLENE GLYCOL, COSMETIC QUALITY(BHN BAKU KOSMETIK) COA P0620611BC", "output": "29053200"}, {"text_input": "What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN ) COA MTP19320", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 27/50 SODIUM BICARBONATE(B.BAKU SUPLEMEN) COA MTP25220,SAMPLE NO COMM VALUE", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (B. BAKU SUPLEMEN) COA MTP25820,SAMPLE NO COMM VALUE", "output": "28363000"}, {"text_input": "What is the hs code for LIDOCAINE HCL (BHN BAKU OBAT) COA 194898", "output": "29242990"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101853320", "output": "17021100"}, {"text_input": "What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0196591", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0128385", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0114639", "output": "38210090"}, {"text_input": "What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0190820", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0238363", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0226672", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0044798", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0037326", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0105016", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0209866", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0065943", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0120395,0212663", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0097374", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065943", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037338", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0114639", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0162999", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065855", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9295972", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0119320", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0121592", "output": "38210090"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0052572", "output": "38210090"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0155534", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0202780", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0237752", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0182725", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364958", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0133432", "output": "38210090"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0155534", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0154856", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0097116", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0013180", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0132738", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364856", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0161953", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0008968,0063472", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 00973500", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0132265", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239322", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065878", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9309312", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0174577", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0048055", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0048007", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0083370", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0135906", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9353100", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0009096", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0065975", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161680", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0013247", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0147207", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0161496", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TREHALOSE 10G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0237315", "output": "38210090"}, {"text_input": "What is the hs code for KIT UNIVERSAL VIRAL TRANSPORT STD SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 201988000", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0154856", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LEVINE EMB AGAR BBL500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 00971116", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0013180", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0132738", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9364856", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0161953", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0063472,0183095", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0002860", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0119308", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0097350", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0132265", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE R2A AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9239322", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065878", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9309312", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0174577", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0048032", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364958", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0048055", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0162119", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0048007", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0147211", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364969", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9310881", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0083370", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0175236", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0135906", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 9353100", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0009096", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065975", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161680", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0013247", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0147207", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0183103", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0161496", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065896", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0062561", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0182049", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9028828", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9015557", "output": "38210090"}, {"text_input": "What is the hs code for LOOPS INOCULATING 10/TUBE 10 MICROLITER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1917662", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0209766", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9224604", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9280662", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE YEAST MOLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065956", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 8317895", "output": "38210090"}, {"text_input": "What is the hs code for CATALYST REPLACEMENT CHARGES", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0062561", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0133450", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER, BATCH 0120935", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ CO2 CONTAINER, BATCH 0177959", "output": "38210090"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20070114", "output": "29362800"}, {"text_input": "What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE02001005", "output": "29362100"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ00310604", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPLEMEN) COA UQ00309505", "output": "29362300"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00619044", "output": "29362300"}, {"text_input": "What is the hs code for DWI-BI (BHN BAKU MAKANAN) COA XW92009159", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN), COA XW92009158,XW92009194", "output": "21069059"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ00303387", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ00303387", "output": "29362200"}, {"text_input": "What is the hs code for STAY-C(R) 50, 20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02003023", "output": "29362700"}, {"text_input": "What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF20014014", "output": "29420000"}, {"text_input": "What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES1908278", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL(R) HS, 20KG BOX (BHN BAKU KOSMETIK) COA HS0740520", "output": "29420000"}, {"text_input": "What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF20014014", "output": "29420000"}, {"text_input": "What is the hs code for STAY-C (R) 50, 5KG BAG ALU (BHN BAKU KOSMETIK) COA CSI8060035", "output": "29362700"}, {"text_input": "What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0720010005", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL (R) HS, 20KG BOX (BHN BAKU KOSMETIK) COA HS0740520", "output": "29420000"}, {"text_input": "What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01910812", "output": "29362400"}, {"text_input": "What is the hs code for STAY-C(R) 50, 5KG BAG ALU (BHN BAKU KOSMETIK) COA CS18060035", "output": "29362700"}, {"text_input": "What is the hs code for STAY-C(R) 50, 20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02003023, UE02003024", "output": "29362700"}, {"text_input": "What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-201006", "output": "29061300"}, {"text_input": "What is the hs code for BUTCHERBROOM DRY HYDR EX.9-11 (BHN BAKU SUPLEMEN) COA 20B0077600", "output": "13021990"}, {"text_input": "What is the hs code for PASSION FLOWER D.H.E.>4PCT (BHN BAKU SUPLEMEN) COA 20B0079600", "output": "13021990"}, {"text_input": "What is the hs code for HAWTHORN DRY HYDR. EXTR (BHN BAKU SUPLEMEN) COA 10909/M1", "output": "13021990"}, {"text_input": "What is the hs code for ALLOPURINOL USP (BHN BAKU OBAT) COA 20038AY3ARII", "output": "29335990"}, {"text_input": "What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2008462149", "output": "29362600"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL ...(BHN BAKU PEWARNA TABLET)COA D180JBT001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D011JBPL02", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D180K37001", "output": "39123900"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH635532", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH634880", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB MAROON (BHN BAKU PEWARNA TABLET) COA SH635533", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH635542", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH635252", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH634727", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH635560", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH635556", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH635544", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH635543", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH635545", "output": "38249999"}, {"text_input": "What is the hs code for PEG 400 (BAHAN BAKU KOSMETIK) COA.AKW0000227", "output": "39072010"}, {"text_input": "What is the hs code for EDIBLE BOVINE GELATINE 200/400 (BAHAN BAKU OBAT), COA S19F11", "output": "35030049"}, {"text_input": "What is the hs code for CURCUMA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 20S0177305", "output": "38249999"}, {"text_input": "What is the hs code for C47-051 SUNCROMA TITANIUM DIOXIDE (BHN BAKU KOSMETIK) COA 2718150100101", "output": "38249999"}, {"text_input": "What is the hs code for SENTRY POLYOX WSR 303 LEO NF (DOW) (BHN BAKU PEWARNA TABLET), COA D682JCNVR4", "output": "39123900"}, {"text_input": "What is the hs code for ECOGEL TM-5KG (BHN BAKU KOSMETIK) COA 2013701", "output": "38249999"}, {"text_input": "What is the hs code for HELIOGEL TM -30KG (BHN BAKU KOSMETIK) COA 2020501", "output": "38249999"}, {"text_input": "What is the hs code for SWT-7TM H-5KG (BHN BAKU KOSMETIK) COA 2021601", "output": "38249999"}, {"text_input": "What is the hs code for TYROSTAT TM 09- 1KG (BHN BAKU KOSMETIK) COA 784017970K", "output": "38249999"}, {"text_input": "What is the hs code for ROSALITY TM -1KG (BHN BAKU KOSMETIK) COA 1910701", "output": "38249999"}, {"text_input": "What is the hs code for ABYSSINE TM 657-1KG (BHN BAKU KOSMETIK) COA 702018037K", "output": "38249999"}, {"text_input": "What is the hs code for MINIPORYL TM - 1KG (BHN BAKU KOSMETIK) COA 832017967K", "output": "38249999"}, {"text_input": "What is the hs code for PROGELINE TM - 1KG (BHN BAKU KOSMETIK) COA 820058407L", "output": "38249999"}, {"text_input": "What is the hs code for EXO-T TM - 1KG (BHN BAKU KOSMETIK) COA 715017666K", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (ORANGE) (BHN BAKU PEWARNA TABLET) SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (ORANGE) (BHN BAKU PEWARNA TABLET) SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (PINK) (BHN BAKU PEWARNA TABLET)", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (ORANGE) (BHN BAKU PEWARNA TABLET)", "output": "38249999"}, {"text_input": "What is the hs code for FERRIC PYROPHOSPHATE APPROX 25PCT FE MICRONIZED (BHN BAKU MAKANAN) COA 3081937", "output": "28353990"}, {"text_input": "What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB20090730", "output": "29362800"}, {"text_input": "What is the hs code for OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH636395", "output": "38249999"}, {"text_input": "What is the hs code for PARSOL 340,0,25KG SAM (BHN BAKU KOSMETIK) COA 0220040007, SAMPLE NO COMMERCIAL VALUE", "output": "29420000"}, {"text_input": "What is the hs code for CLEANBIO TM-ZINC (PROTECT) (CL0024-K18) (BAHAN BAKU KOSMETIK) COA 20ZDP", "output": "38249999"}, {"text_input": "What is the hs code for NATRIUM HYDROXID PERLEN 98/99PCT...(B.BAKU KOSMETIK) COA 202004220020", "output": "28151100"}, {"text_input": "What is the hs code for FERROUS SULFATE,DRIED, POWDER ,USP43 (BHN BAKU OBAT) COA 3089416", "output": "28332920"}, {"text_input": "What is the hs code for FERROUS SULFATE, DRIED, POWDER, USP43 (BHN BAKU OBAT) COA 3081610", "output": "28332920"}, {"text_input": "What is the hs code for FERROUS FUMARATE, FINE POWDER (BHN BAKU OBAT) COA 3091248", "output": "29171900"}, {"text_input": "What is the hs code for MAGNESIUM CARBONATE, HEAVY POWDER, PH EUR.10.ED (BHN BAKU OBAT) COA 3091086-1", "output": "28332100"}, {"text_input": "What is the hs code for FERROUS FUMARATE, FINE POWDER (BHN BAKU OBAT) COA 3091248", "output": "29171900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT20060984", "output": "29362100"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1910128", "output": "29362300"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOS (BHN BAKU SUPLEMEN) COA TL02008813", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT20060027", "output": "29362600"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ00703509", "output": "29362200"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE,25KG BOX (BHN BAKU SUPLEMEN) COA TL02008815", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT20060027", "output": "29362600"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL02008813", "output": "29362400"}, {"text_input": "What is the hs code for DL-PANTHENOL 50L, 1000KG IBC (BHN BAKU SUPLEMEN) COA TL02009639", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT20080045", "output": "29362600"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ00316045 S/D 49", "output": "29362700"}, {"text_input": "What is the hs code for IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S328/20", "output": "38029090"}, {"text_input": "What is the hs code for CIPROFLOXACIN LACTATE INJECTABLE GRADE (BHN BAKU OBAT) COA TURTLE/CL/201001", "output": "29335990"}, {"text_input": "What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2008462149", "output": "29362600"}, {"text_input": "What is the hs code for AMLODIPINE BESYLATE (BHN BAKU OBAT) COA 20AD167, 20AD168, 20AD201", "output": "29333990"}, {"text_input": "What is the hs code for SPIRAMYCIN (BHN BAKU OBAT) COA 20B044SP", "output": "29419000"}, {"text_input": "What is the hs code for PARSOL 1789, 29KG BOX (BHN BAKU KOSMETIK) COA 0320050929 S/D 50931,50933, 51123, 51124", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219120234", "output": "29420000"}, {"text_input": "What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES1901169,ES1908277", "output": "29420000"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02004001", "output": "29362900"}, {"text_input": "What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01906809,TL01910812", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA 0519010014", "output": "29420000"}, {"text_input": "What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE02001005", "output": "29362100"}, {"text_input": "What is the hs code for PREMIX BALITA (BHN BAKU MAKANAN) COA XW92010139, XW92010140", "output": "21069059"}, {"text_input": "What is the hs code for PREMIX BALITA (BHN BAKU MAKANAN) COA XW92010138, XW92010140", "output": "21069059"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20090010", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20090010", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20080052", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20080052", "output": "29362800"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030068,WB00519063", "output": "29362200"}, {"text_input": "What is the hs code for DWI-BI (BHN BAKU MAKANAN) COA XW92009340", "output": "21069059"}, {"text_input": "What is the hs code for NIACINAMIDE USP (NIACINAMIDE USP/EP) BHN BAKU KOSMETIK,COA 20-21/NMD(P)/00236,00237,00238,00239", "output": "29362900"}, {"text_input": "What is the hs code for KSG-710 (16KG) BHN BAKU KOSMETIK, COA 004369", "output": "38249999"}, {"text_input": "What is the hs code for KF-54HV (18KG) BHN BAKU KOSMETIK, COA 006039", "output": "38249999"}, {"text_input": "What is the hs code for MINERAL IND 20 (BHN BAKU MAKANAN), COA XW92010176", "output": "21069059"}, {"text_input": "What is the hs code for SENSIVA SC 10- CN- 10KG KA (BHN BAKU KOSMETIK) COA.1543903", "output": "38249999"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK COA B200920", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB120920", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG120920", "output": "39123900"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B200920", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG280920", "output": "39123900"}, {"text_input": "What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0047657", "output": "38249999"}, {"text_input": "What is the hs code for NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 19LNC0925SQ626", "output": "27101990"}, {"text_input": "What is the hs code for NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 19LNC0923SQ625", "output": "27101990"}, {"text_input": "What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 020320,030320,040320,050320", "output": "38029090"}, {"text_input": "What is the hs code for NONIVAMIDE (SYNTHETIC CAPSAICIN) BHN BAKU KOSMETIK, COA.2020060", "output": "29241990"}, {"text_input": "What is the hs code for ROSUVASTATIN CALCIUM (BHN BAKU OBAT) COA RVM1870720", "output": "29359000"}, {"text_input": "What is the hs code for PREDNISONE USP42 (BHN BAKU OBAT) COA NED201014", "output": "29372100"}, {"text_input": "What is the hs code for DEXAMETHASONE BP93 (BHN BAKU OBAT) COA ND190702", "output": "29372200"}, {"text_input": "What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.20100620", "output": "29391900"}, {"text_input": "What is the hs code for FERROUS FUMARATE EP/USP/FCC (BHN BAKU OBAT) COA.2020/248", "output": "29171900"}, {"text_input": "What is the hs code for PHARMACEUTICAL BOVINE GELATINE 150/08 ...(BAHAN BAKU OBAT ), COA 5131909595", "output": "35030049"}, {"text_input": "What is the hs code for DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2010002", "output": "28352510"}, {"text_input": "What is the hs code for VIT MINERAL PREMIX FOR MATERNAL BISCUIT (BHN BAKU MAKANAN) COA XW92009300,301,302", "output": "21069059"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20010002, UT20010006", "output": "32041900"}, {"text_input": "What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 76883P", "output": "38249999"}, {"text_input": "What is the hs code for CITRONENSAURE MONOHYDRAT (CAM) GRIEB 8-80 MESH E330 (BHN BAKU KOSMETIK) COA THY2003035", "output": "29181400"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA ROA286203", "output": "28363000"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN542780", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN542781", "output": "35051010"}, {"text_input": "What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 2010EF6013", "output": "29224900"}, {"text_input": "What is the hs code for X-21-5595 (BHN BAKU KOSMETIK), COA 005137, SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-2101020", "output": "29334910"}, {"text_input": "What is the hs code for THE MATCHA I P001602 (BHN BAKU KOSMETIK) COA 0000043838", "output": "33029000"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 FOOD OIL, 4,5KG PJUG (BHN BAKU MAKANAN) COA TS00015449", "output": "29362500"}, {"text_input": "What is the hs code for BOTTLE UREA AGAR BASE BBL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0072659", "output": "38210090"}, {"text_input": "What is the hs code for MS INFLAMMATION CBA KIT (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0237897", "output": "38210090"}, {"text_input": "What is the hs code for VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0126154", "output": "38210090"}, {"text_input": "What is the hs code for VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 012615420", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0219903", "output": "38210090"}, {"text_input": "What is the hs code for VIAL N MENINGTIDIS ANTISERUM GRP A (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0226419", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0097374", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0162999", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0183095", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0107757,0196557", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9364958", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0133432", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0196557", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0002860", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0182049", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0133432", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G(MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0268409", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0268409", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0268409", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0268409", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0245118", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0161777", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0196448", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0139161", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0132265", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0275956", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065900", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRAIN HEART INFUSION BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0105297", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0202716", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BILE SALTS NO 3 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0252448", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RHAMNOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0182029", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MIL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065822", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0043912", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE COOKED MEAT MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0119545", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 8317895", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0217336", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B03C098M, B05C143M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0048956", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0244008", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0245118", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BILE ESCULIN AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0140280", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9344975", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GRAM CRYSTAL VIOLET 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0204263", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01C258M", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER DMACA INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B04C259M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GRAM IODINE STABILIZED 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0204394", "output": "38210090"}, {"text_input": "What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK)COA 200701", "output": "13021990"}, {"text_input": "What is the hs code for JOJOBA OIL VIRGIN LOW ODOUR (BHN BAKU KOSMETIK) COA 154917", "output": "15159011"}, {"text_input": "What is the hs code for AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 154736", "output": "15159011"}, {"text_input": "What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK)COA NMP-L-321900", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK)COA NMP-L-280950", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 100720", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-011760", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE POWDE (VLMW) (BHN BAKU KOSMETIK)COA CHP1200210", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-020700", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-033060", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-042750,GTB-053070", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 102920", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-280950", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND BIO-SODIUM HYALURONATE 1PCT SOLUTION (BHN BAKU KOSMETIK) COA HASC-512480", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-033060,SFP-N-040270", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK) COA CPG-712929", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-011310", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 102920", "output": "38249999"}, {"text_input": "What is the hs code for SK BIOLAND COMPAREX (BHN BAKU KOSMETIK) COA COEX-022800", "output": "38249999"}, {"text_input": "What is the hs code for GRANULAC 200, 25KG BAG (BHN BAKU OBAT) COA. LC030-20-801", "output": "17021100"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA RBA2922000", "output": "28363000"}, {"text_input": "What is the hs code for BOTTLE GRAM SAFRANIN 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0204362", "output": "38210090"}, {"text_input": "What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0143491", "output": "38210090"}, {"text_input": "What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 28092020", "output": "25081000"}, {"text_input": "What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET), COA DT708506", "output": "32151900"}, {"text_input": "What is the hs code for OPACODE BLACK (BHN BAKU PEWARNA TABLET), COA DT708195", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY YELLOW (BHN BAKU PEWARNA TABLET) COA DT708508", "output": "38249999"}, {"text_input": "What is the hs code for SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA 200514062", "output": "38249999"}, {"text_input": "What is the hs code for PARSOL MAX ,25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 091903008", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0820010204", "output": "29420000"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500AF, 20KG BOXNA (BHN BAKU SUPLEMEN) COA WB005190023", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN E ACETATE 950NS (BHN BAKU SUPLEMEN) COA WB20090730", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB20090234", "output": "29362800"}, {"text_input": "What is the hs code for SENSIDIN DO-C08- 10KG KA (BHN BAKU KOSMETIK) COA 1554688", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH636518", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH635914", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY GREEN (BHN BAKU PEWARNA TABLET) COA SH636271", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH636268", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH636257", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH636267", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH636258", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH636279", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH636260", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH636269", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH636288", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH636259", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH636274", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH636275", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH636282", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH636272", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II PURPLE (BHN BAKU PEWARNA TABLET) COA SH636276", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BLACK (BHN BAKU PEWARNA TABLET) COA SH636270", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH636278", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY 200 GREEN (BHN BAKU PEWARNA TABLET) COA SH635561", "output": "38249999"}, {"text_input": "What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA", "output": "38247900"}, {"text_input": "What is the hs code for AUSTRALIAN TEA TREE OIL-FER (BHN BAKU KOSMETIK) COA", "output": "38247900"}, {"text_input": "What is the hs code for LEMON TEA TREE OIL (BHN BAKU KOSMETIK) COA", "output": "38247900"}, {"text_input": "What is the hs code for OILESS'CITY (BHN BAKU KOSMETIK) COA", "output": "38247900"}, {"text_input": "What is the hs code for SKINECTURA TM (BHN BAKU KOSMETIK) COA", "output": "38247900"}, {"text_input": "What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA", "output": "38247900"}, {"text_input": "What is the hs code for WILDPLUM HARVEST TM AF (BHN BAKU KOSMETIK) COA", "output": "38247900"}, {"text_input": "What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT20100007, UT20100008", "output": "29362100"}, {"text_input": "What is the hs code for SODIUM FEREDETATE, POWDER BP2020 (BHN BAKU SUPLEMEN) COA 3089414", "output": "29224900"}, {"text_input": "What is the hs code for POTASSIUM L-ASPARTATE 0.5-HYDRATE CRYST.POWDER...(BHN BAKU SUPLEMEN) COA 3053097-2", "output": "29224900"}, {"text_input": "What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB20090730", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB20090730", "output": "29362800"}, {"text_input": "What is the hs code for JAGUAR C162 SGI CARDBOARD BOX 25KG (BHN BAKU KOSMETIK) COA MJAC20210A", "output": "38249999"}, {"text_input": "What is the hs code for EXTRAPONE (R) SEA EXTRACTS N (BHN BAKU KOSMETIK) COA 10300028", "output": "13021950"}, {"text_input": "What is the hs code for EXTRAPONE (R) GINSENG (BHN BAKU KOSMETIK) COA 10300038", "output": "13021950"}, {"text_input": "What is the hs code for GELUCIRE 48/16 PELLETS (BHN BAKU KOSMETIK) COA 178335, SAMPLE NO COMMERCIAL VALUE", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE BS2X PELLETS (BAHAN BAKU OBAT) COA 18E2903, SAMPLE NO COMMERCIAL VALUE", "output": "28399000"}, {"text_input": "What is the hs code for GLIMEPIRIDE (BHN BAKU OBAT) COA H885", "output": "29359000"}, {"text_input": "What is the hs code for BRB 1740, DRUM 190 KG ( BHN BAKU KOSMETIK) COA B077435", "output": "39100020"}, {"text_input": "What is the hs code for SWT-7TM L- 1KG (BHN BAKU KOSMETIK) COA 2028701", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM - 20KG (BHN BAKU KOSMETIK) COA 2028201", "output": "38249999"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20201019", "output": "17029019"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA FEB", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA FJE", "output": "38249999"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0265643", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0265643", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0265643", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0265643", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0265643", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0175364", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2248533", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2248533", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2195717", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2195717", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0003496", "output": "38210090"}, {"text_input": "What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0022270", "output": "38210090"}, {"text_input": "What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0022270", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PROTEOSE PEPTONE NO.3 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0002346", "output": "38210090"}, {"text_input": "What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9296104", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0175364", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0175364", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2248533", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2195717", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2195717", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0003496", "output": "38210090"}, {"text_input": "What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0022270", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0265643", "output": "38210090"}, {"text_input": "What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9121860", "output": "38210090"}, {"text_input": "What is the hs code for VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92010171", "output": "21069059"}, {"text_input": "What is the hs code for MINERAL PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92010172", "output": "21069059"}, {"text_input": "What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT20100008, UT20100009", "output": "29362100"}, {"text_input": "What is the hs code for CHOLINE CHLORIDE 60 PCT (CORN COB ) BHN BAKU PAKAN UTK TERNAK, COA 20201027", "output": "38249999"}, {"text_input": "What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA 8MT2010125", "output": "30032000"}, {"text_input": "What is the hs code for FERROUS GLUCONATE, POWDER ,USP43 (BHN BAKU OBAT) COA 3091310", "output": "29181600"}, {"text_input": "What is the hs code for TRICALCIUM CITRATE 4-HYDRATE DC 100 (BHN BAKU OBAT) COA 3060551", "output": "29181590"}, {"text_input": "What is the hs code for OLIO VINACCIOLI RAFFINATO (BHN BAKU KOSMETIK) COA.B200045", "output": "15152919"}, {"text_input": "What is the hs code for FENTACARE 2231 EF (BHN BAKU KOSMETIK )COA ZH20J2407, ZH20J2604", "output": "34029019"}, {"text_input": "What is the hs code for AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 154963", "output": "15159011"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0232102", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0261272", "output": "38210090"}, {"text_input": "What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB20090730", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB20070267, WB20070268", "output": "29362100"}, {"text_input": "What is the hs code for FERRIC PYROPHOSPHATE APPROX 25PCT FE MICRONIZED (BHN BAKU MAKANAN) COA 3090451", "output": "28353990"}, {"text_input": "What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA DOC3002021", "output": "28363000"}, {"text_input": "What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 19102020", "output": "25081000"}, {"text_input": "What is the hs code for FLAVOSTERONE SB ( BHN BAKU KOSMETIK), COA 201210", "output": "13021990"}, {"text_input": "What is the hs code for SPRING MINT (BHN BAKU KOSMETIK) COA 200839", "output": "13021990"}, {"text_input": "What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 193115", "output": "29329990"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK), COA 201146", "output": "38249999"}, {"text_input": "What is the hs code for ACNE BUSTERS (BHN BAKU KOSMETIK), COA 201574", "output": "38249999"}, {"text_input": "What is the hs code for ACNE BUSTERS (BHN BAKU KOSMETIK),COA 202038", "output": "38249999"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK),COA 200420", "output": "38249999"}, {"text_input": "What is the hs code for HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIE201002", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO200101", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO201002", "output": "38249999"}, {"text_input": "What is the hs code for LICORICE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA GLG201101-BGBIO", "output": "38249999"}, {"text_input": "What is the hs code for LOTUS OILY EXTRACT GT10 (BHN BAKU KOSMETIK) COA NEN200903-H", "output": "38249999"}, {"text_input": "What is the hs code for SEABUCKTHORN HYDROGLYCOLIC EXTRACT(BHN BAKU KOSMETIK) COA HIR201102-B", "output": "38249999"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO201001", "output": "38249999"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA200604", "output": "38249999"}, {"text_input": "What is the hs code for HYDROXOCOBALAMIN CHLORIDE SP (BHN BAKU OBAT) COA AAR0004", "output": "29362600"}, {"text_input": "What is the hs code for PREMIX BALITA (BHN BAKU MAKANAN), COA XW92010057, 58,59", "output": "21069059"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS200301", "output": "38249999"}, {"text_input": "What is the hs code for SODIUM SALICYLATE BP2005 (BHN BAKU KOSMETIK)COA 202004007", "output": "29182100"}, {"text_input": "What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0032595", "output": "29362500"}, {"text_input": "What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219120234", "output": "29420000"}, {"text_input": "What is the hs code for DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01908640", "output": "29362400"}, {"text_input": "What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000189669", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000189669,0000191168,0000191169", "output": "29362900"}, {"text_input": "What is the hs code for DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01908640", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219120234", "output": "29420000"}, {"text_input": "What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00649020,VE00649643,VE00649648", "output": "29420000"}, {"text_input": "What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0032595", "output": "29362500"}, {"text_input": "What is the hs code for PARSOL MCX ,25KG PC (BHN BAKU KOSMETIK) COA 0519010014", "output": "29420000"}, {"text_input": "What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02002804, TL02002805", "output": "29362400"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02004001", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL 1789 ,20KG BOX (BHN BAKU KOSMETIK) COA 0320051127 S/D 30,32,34,35", "output": "29420000"}, {"text_input": "What is the hs code for HEXYLENE GLYCOL (BHN BAKU KOSMETIK) COA 20040086", "output": "29053900"}, {"text_input": "What is the hs code for NORIT SX SUPER E 153 (BHN BAKU KOSMETIK) COA 4978845", "output": "38021000"}, {"text_input": "What is the hs code for ASTABIO ARV-S (BHN BAKU OBAT) COA.1903231", "output": "32030010"}, {"text_input": "What is the hs code for M 1555 N 900/980 76 (BHN BAKU KOSMETIK) COA 267905", "output": "56039300"}, {"text_input": "What is the hs code for M 1555 N 900/980 76 (BHN BAKU KOSMETIK) COA 267905", "output": "56039300"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20070115", "output": "29362900"}, {"text_input": "What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE02002007", "output": "29362100"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ00310604", "output": "29362300"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL(BHN BAKU MAKANAN) COA UT20060156", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UE02006284", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20080055", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN), COA UT20080055", "output": "29362800"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE02004001", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN MINERAL PREMIX FOR CAPSULE V3 (BHN BAKU SUPLEMEN) COA XW92010174", "output": "21069059"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE ,20KG BOX (BHN BAKU SUPLEMEN) COA QZ11200811", "output": "29362500"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12007018", "output": "29362900"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL ACETATE, 20KG JUG (BHN BAKU SUPLEMEN) COA XH20200401", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) BHN BAKU MAKANAN, COA UT20050198", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20070115", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ00310606", "output": "29362300"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ00603486", "output": "29362200"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ00310606", "output": "29362300"}, {"text_input": "What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92009341, XW92009342", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW92010177", "output": "21069059"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ00310606", "output": "29362300"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ00603486", "output": "29362200"}, {"text_input": "What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92010180", "output": "21069059"}, {"text_input": "What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 200618", "output": "13021950"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 200934", "output": "13021950"}, {"text_input": "What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA 20210305", "output": "17023010"}, {"text_input": "What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 060320", "output": "38029090"}, {"text_input": "What is the hs code for SERASENSE SF CM5 (BAHAN BAKU KOSMETIK) COA PA01116033,6035,6037", "output": "29319049"}, {"text_input": "What is the hs code for FLOWER ACIDS (BHN BAKU KOSMETIK) COA HS201002", "output": "38249999"}, {"text_input": "What is the hs code for SEABUCKTHORN HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HIR201102-B", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS200301", "output": "38249999"}, {"text_input": "What is the hs code for INCA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK) COA II201014-AI-D-BIO", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) COA EG543-200905", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM191201-PGH", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-200101", "output": "38249999"}, {"text_input": "What is the hs code for HYDROXYETHYL SALICYLATE PPC 25KG (BHN BAKU KOSMETIK) COA FG20201284", "output": "29182300"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA", "output": "29362700"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK)COA CHP1201109", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK)COA 111020", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-020700", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND COMPAREX (BHN BAKU KOSMETIK) COA COEX-022800", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK)COA SFP-N-050600", "output": "38249999"}, {"text_input": "What is the hs code for BILBERRY (V.MYRTILLUS) ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 20S0241101", "output": "13021990"}, {"text_input": "What is the hs code for BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 20S0241102", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 32347/M1", "output": "13021990"}, {"text_input": "What is the hs code for LIQUORICE LC (BHN BAKU KOSMETIK) COA.117231", "output": "13021950"}, {"text_input": "What is the hs code for LIQUORICE LC (BHN BAKU KOSMETIK) COA 118144", "output": "13021950"}, {"text_input": "What is the hs code for IVY DRY HYDR.EXTR.10PCT HPLC (BHN BAKU SUPLEMEN) COA 20B0099200", "output": "13021990"}, {"text_input": "What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.20100687", "output": "29391900"}, {"text_input": "What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.20100620, 685, 687", "output": "29391900"}, {"text_input": "What is the hs code for LIPOID S 20 (BHN BAKU OBAT) COA 572000-2200135/025-048(24)", "output": "29232010"}, {"text_input": "What is the hs code for PRICKLY PEAR WATER DISTILLATE (BHN BAKU KOSMETIK) COA 20110094", "output": "33019090"}, {"text_input": "What is the hs code for GLUCOSAMINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA HS2011466", "output": "29329990"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH636901", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH636588", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH636903", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH636814", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH636957", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH636959", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH636963", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH636956", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH636900", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH636919", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH636955", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY FX SILVER (BHN BAKU PEWARNA TABLET) COA SH636960", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH636902", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH637005", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH637004", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH637032", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH635914", "output": "38249999"}, {"text_input": "What is the hs code for PIGMENT BLEND BROWN (BHN BAKU PEWARNA TABLET) COA SH636958", "output": "32151900"}, {"text_input": "What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 1936214", "output": "38249999"}, {"text_input": "What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829018363L", "output": "38249999"}, {"text_input": "What is the hs code for GREYVERSE TM (BHN BAKU KOSMETIK) COA 833018113L", "output": "38249999"}, {"text_input": "What is the hs code for ROSALITY TM (BHN BAKU KOSMETIK) COA 2012801", "output": "38249999"}, {"text_input": "What is the hs code for EXO-P TM (BHN BAKU KOSMETIK) COA 715038112L", "output": "38249999"}, {"text_input": "What is the hs code for NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 19LNC0925SQ626", "output": "27101990"}, {"text_input": "What is the hs code for NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 19LNC1008SQ637", "output": "27101990"}, {"text_input": "What is the hs code for METHOCEL E15 PREMIUM LV HYDROXYPROPYL ...(BHN BAKU PEWARNA TABLET)COA D011JBLL01", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D011JBPL02", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D180K2J002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180K37002", "output": "39123900"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA FKF", "output": "38249999"}, {"text_input": "What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA FJN", "output": "38249999"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT20090106", "output": "29362800"}, {"text_input": "What is the hs code for KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 240420", "output": "25070000"}, {"text_input": "What is the hs code for OPALUX MAROON (BHN BAKU PEWARNA TABLET), COA DT709291", "output": "32151900"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA RBA3042000", "output": "28363000"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK), COA 200420", "output": "38249999"}, {"text_input": "What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK), COA 202079", "output": "13021990"}, {"text_input": "What is the hs code for SPRINTMINT (BHN BAKU KOSMETIK) ,COA 201280", "output": "13021990"}, {"text_input": "What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) ,COA 200719", "output": "13021990"}, {"text_input": "What is the hs code for PIPERONYL BUTOXIDE (BHN BAKU OBAT PAKAN TERNAK) COA 20201009", "output": "29329990"}, {"text_input": "What is the hs code for POVIDONE K-30 (BHN BAKU OBAT) COA PK30-200926F31", "output": "39059990"}, {"text_input": "What is the hs code for CROSPOVIDONE XL (BHN BAKU OBAT) COA PP201014XL", "output": "39059990"}, {"text_input": "What is the hs code for CAPTOPRIL (BHN BAKU OBAT) COA 5103-20-116", "output": "29339990"}, {"text_input": "What is the hs code for LEVOFLOXACIN HEMIHYDRATE (BHN BAKU OBAT) COA C008-2006307", "output": "29349990"}, {"text_input": "What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-201030", "output": "29061300"}, {"text_input": "What is the hs code for CEFADROXIL MONOHYDRATE COMPACTED (PURIDROX COMPACTED) BHN BAKU OBAT, COA B340209", "output": "29419000"}, {"text_input": "What is the hs code for CEFADROXIL MONOHYDRATE POWDER (PURIDROX POWDER) BHN BAKU OBAT, COA B334711", "output": "29419000"}, {"text_input": "What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19110005", "output": "29420000"}, {"text_input": "What is the hs code for 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 071320/006484", "output": "38249999"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA201105", "output": "38249999"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA201105", "output": "38249999"}, {"text_input": "What is the hs code for VITAMIN B MIX-SPREAD (BHN BAKU MAKANAN), COA XW92011126", "output": "21069059"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 14 PREMIUM (BHN BAKU PEWARNA TABLET), COA D184K5S021", "output": "39123900"}, {"text_input": "What is the hs code for SUPPOCIRE A PELLETS (BHN BAKU OBAT) COA 20E2306", "output": "28399000"}, {"text_input": "What is the hs code for AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 154963", "output": "15159011"}, {"text_input": "What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0162999", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0232663", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0262796", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0209866", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0097374", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0108475", "output": "38210090"}, {"text_input": "What is the hs code for VIAL E COIL O ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0094884", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0262823", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01C258M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GRAM DECOLORIZER 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0237809", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GRAM SAFRANIN 250ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0237818", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER INDOLE (MEDIA UTK PNGEMBANGAN MIKROORGANISME) BATCH B02C309M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 9218592", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0287484", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0287484", "output": "38210090"}, {"text_input": "What is the hs code for TUBE CRYSTAL E/ ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0218624", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0287484", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0035732", "output": "38210090"}, {"text_input": "What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2013232", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0286357", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G(MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0007272", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0062865", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 9309193", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0237291", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0043912", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MICRO ASSAY CULTURE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0230001", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0272335,8271706", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0217336", "output": "38210090"}, {"text_input": "What is the hs code for GASPAK EZ LARGE INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7326630010", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B02C205M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0148256", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0133196", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M TGE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0296293", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065715", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GRAM CRYSTAL VIOLET 250ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0237798", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0286603", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0211466", "output": "38210090"}, {"text_input": "What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0239539", "output": "38210090"}, {"text_input": "What is the hs code for ESOMEPRAZOLE SODIUM STERILE (BAHAN BAKU OBAT), COA SI/EPZ/00051120", "output": "29333990"}, {"text_input": "What is the hs code for PANTOPRAZOLE SODIUM STERILE (BHN BAKU OBAT) COA SI/PPZ/00771120", "output": "29333990"}, {"text_input": "What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA D10231UP", "output": "29053200"}, {"text_input": "What is the hs code for EDIBLE BOVINE GELATINE 140/20 HAL(BAHAN BAKU OBAT ), COA 5002010030,5002011077", "output": "35030049"}, {"text_input": "What is the hs code for PHARMACEUTICAL BOVINE GELATINE 200/18 (BHN BAKU OBAT) COA 5002011089", "output": "35030049"}, {"text_input": "What is the hs code for EDIBLE BOVINE GELATINE 200/400 (BHN BAKU OBAT) COA S19F11", "output": "35030049"}, {"text_input": "What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA DOC3002021", "output": "28363000"}, {"text_input": "What is the hs code for ETORICOXIB (BHN BAKU OBAT) COA ERBPC20004", "output": "29333990"}, {"text_input": "What is the hs code for MAGNESIUM CHLORIDE (BHN BAKU SUPLEMEN) COA 3054789", "output": "28273100"}, {"text_input": "What is the hs code for METHOCEL K100 PREMIUM LVCR (BHN BAKU PEWARNA TABLET), COA D180J8C021", "output": "39123900"}, {"text_input": "What is the hs code for PHARMABURST (R) 500 (BHN BAKU OBAT) COA 122000348", "output": "21069099"}, {"text_input": "What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA T703300", "output": "29419000"}, {"text_input": "What is the hs code for GELOIL SC (BHN BAKU OBAT) COA 182444", "output": "28399000"}, {"text_input": "What is the hs code for TRANCUTOL P (BHN BAKU OBAT) COA 180617", "output": "28399000"}, {"text_input": "What is the hs code for CETYL PALMITATE PELLETSCAR (BAHAN BAKU OBAT) COA 182801", "output": "28399000"}, {"text_input": "What is the hs code for LABRAFIL M 1944 CS (BAHAN BAKU OBAT) COA 181807", "output": "28399000"}, {"text_input": "What is the hs code for GELEOL MONO AND DIGLYCERIDES NF (BHN BAKU OBAT) COA 20E2004", "output": "28399000"}, {"text_input": "What is the hs code for GELOIL SC (BHN BAKU OBAT) COA 182444", "output": "28399000"}, {"text_input": "What is the hs code for PHARMACEUTICAL BOVINE GELATINE 150/08 ...(BAHAN BAKU OBAT ), COA 5132010428", "output": "35030049"}, {"text_input": "What is the hs code for PHARMACEUTICAL BOVINE GELATIN 150/08...(BAHAN BAKU OBAT ), COA 5132012567", "output": "35030049"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543043", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543044", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543046", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543045", "output": "35051010"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL ...(BHN BAKU PEWARNA TABLET)COA D180K7V003", "output": "39123900"}, {"text_input": "What is the hs code for ALUMINIUM HYDROXIDE WET GEL VISCO 9 (BHN BAKU OBAT) COA 202000389", "output": "28183000"}, {"text_input": "What is the hs code for BARCROFT TM AL HYD GEL VISCO 9, USP (BHN BAKU OBAT) COA 102002034", "output": "28183000"}, {"text_input": "What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M-31.0PCT (BHN BAKU OBAT) COA 102029034", "output": "28161000"}, {"text_input": "What is the hs code for BARCROFT TM AL HYD GEL LV13, USP (BHN BAKU OBAT) COA 102013066", "output": "28183000"}, {"text_input": "What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102023014", "output": "28161000"}, {"text_input": "What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP 5300 (BHN BAKU OBAT) COA 102069008,102069010", "output": "28161000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK)COA HMVBD-020700", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK)COA HOXB-012040", "output": "38249999"}, {"text_input": "What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 194849", "output": "29332900"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB20070268", "output": "29362100"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 20 PREMIUM (BHN BAKU PEWARNA TABLET)COA D184K4R021", "output": "39123900"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 10 PREMIUM (BHN BAKU PEWARNA TABLET) COA D184K3D021", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV (BHN BAKU PEWARNA TABLET)COA D011JBPL02", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM (BHN BAKU PEWARNA TABLET)COA D180K4R001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100 PREMIUM LV (BHN BAKU PEWARNA TABLET) COA D180J78021", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR (BHN BAKU UTK PEWARNA TABLET) COA D180JCV004", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E15 PREMIUM LV (BHN BAKU PEWARNA TABLET) COA D011K1AL02", "output": "39123900"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543004", "output": "35051010"}, {"text_input": "What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) 0219120234", "output": "29420000"}, {"text_input": "What is the hs code for ARGAN OIL,10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0032595", "output": "29362500"}, {"text_input": "What is the hs code for ARGAN OIL ,10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0032595", "output": "29362500"}, {"text_input": "What is the hs code for D-PANTHENOL 75L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01909355", "output": "29362400"}, {"text_input": "What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF20164001", "output": "29420000"}, {"text_input": "What is the hs code for ETHYL PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02002805", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0820010214", "output": "29420000"}, {"text_input": "What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES1908279", "output": "29420000"}, {"text_input": "What is the hs code for STAY-C (R) 50, 20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02003024", "output": "29362700"}, {"text_input": "What is the hs code for PARSOL MAX, 25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0919030008", "output": "29420000"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OPI2007018", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE02004001", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN PREMIX 103047-D (BHN BAKU MAKANAN) COA XW92010207", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN MINERAL PREMIX FOR BISCUIT (BHN BAKU MAKANAN) COA XW92010303", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN PREMIX 103093-A (BHN BAKU MAKANAN) COA XW92010302", "output": "21069059"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT20080026", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE02004001", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12007018", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB00619044", "output": "29362300"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030068", "output": "29362200"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT20060123", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20080052", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20080052", "output": "29362800"}, {"text_input": "What is the hs code for CALCIUM ASCORBATE, 25KG BOX ALU (BHN BAKU SUPLEMEN) COA WB20100069", "output": "29362700"}, {"text_input": "What is the hs code for CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB20100069", "output": "29362700"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2002019", "output": "29362300"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20080052", "output": "29362800"}, {"text_input": "What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92010227", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT20030195, UT20040196", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20070115", "output": "29362900"}, {"text_input": "What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92010233,XW92010234,XW92010235", "output": "21069059"}, {"text_input": "What is the hs code for PIPERONYL BUTOXIDE (BHN BAKU OBAT PAKAN TERNAK) COA 20201009", "output": "29329990"}, {"text_input": "What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET), COA DT709902", "output": "32151900"}, {"text_input": "What is the hs code for OPALUX TAN (BHN BAKU PEWARNA TABLET), COA DT709903", "output": "32151900"}, {"text_input": "What is the hs code for OPACODE BLACK (BHN BAKU PEWARNA TABLET) COA DT709904", "output": "32151900"}, {"text_input": "What is the hs code for ORANGE FRUITOGREEN HG (BHN BAKU KOSMETIK)COA CAF200101", "output": "38249999"}, {"text_input": "What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) COA OLVH201104-ENBIO", "output": "38249999"}, {"text_input": "What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2008642675", "output": "29362600"}, {"text_input": "What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP830190:BA3138", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU PEWARNA TABLET) COA WP833405:BA4812", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW ... (BHN BAKU PEWARNA TABLET) COA WP830190:BA3137", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU PEWARNA TABLET) COA WP822862:BA0316", "output": "32151900"}, {"text_input": "What is the hs code for ERYTHROSINE AL 38PCT-42PCT.(BHN BAKU PEWARNA TABLET) COA WP822178:1", "output": "32151900"}, {"text_input": "What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP833111", "output": "39059990"}, {"text_input": "What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP833112", "output": "39059990"}, {"text_input": "What is the hs code for METHOCEL K100 PREMIUM LVCR (BHN BAKU PEWARNA TABLET), COA D180J8D022", "output": "39123900"}, {"text_input": "What is the hs code for PEONY P118 182 (BHN BAKU KOSMETIK) COA 3104218", "output": "33029000"}, {"text_input": "What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA.0000073449", "output": "29309090"}, {"text_input": "What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 00319", "output": "38029090"}, {"text_input": "What is the hs code for CEFADROXIL MONOHYDRATE (BHN BAKU OBAT) COA Z310407,SAMPLE NO COMMERCIAL VALUE", "output": "29419000"}, {"text_input": "What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD(BHN BAKU MAKANAN) COA UT20100044", "output": "29362500"}, {"text_input": "What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT20100044,UT20100046", "output": "29362500"}, {"text_input": "What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT20100046", "output": "29362500"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100/CWS/AM (BHN BAKU MAKANAN) COA UT20080032", "output": "29362900"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE ,25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ00416054, UQ00416055", "output": "29362700"}, {"text_input": "What is the hs code for DL-PANTHENOL 50L, 1000KG IBC (BHN BAKU KOSMETIK) COA TL02011646", "output": "29362400"}, {"text_input": "What is the hs code for ETHYL PANTHENOL,1000KG IBC (BHN BAKU KOSMETIK) COA TL02002803", "output": "29362400"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT20090106", "output": "29362800"}, {"text_input": "What is the hs code for MIAMI SCG(S) (BHN BAKU KOSMETIK),COA 20121255", "output": "34021190"}, {"text_input": "What is the hs code for ZINC BISGLYCINATE POWDER,FOR THE USE IN FOOD SUPPLEMENTS (BHN BAKU SUPLEMEN) COA 3093384", "output": "29224900"}, {"text_input": "What is the hs code for CARTON BOX+ PRODUCT LABEL+OTHER (KARTON KOSONG) SAMPLE NO COMMERCIAL VALUE", "output": "48191000"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA RBA343207", "output": "28363000"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA RBA342204", "output": "28363000"}, {"text_input": "What is the hs code for VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPD2011072", "output": "29362700"}, {"text_input": "What is the hs code for VC ASCORBIC ACID DC 97PCT, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG2011003, HPG2011004", "output": "29362700"}, {"text_input": "What is the hs code for ARGAN OIL ,PRESSED (BHN BAKU KOSMETIK), COA 8007068001", "output": "29362500"}, {"text_input": "What is the hs code for EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300047", "output": "13021950"}, {"text_input": "What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE USP 43 (BHN BAKU OBAT) COA APL/01215/I-20", "output": "29372200"}, {"text_input": "What is the hs code for MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HG33516", "output": "34029099"}, {"text_input": "What is the hs code for ACRYPOL 980 (20KG) BAHAN BAKU KOSMETIK, COA 11520072, 11520073, 11520074", "output": "39069099"}, {"text_input": "What is the hs code for IMERCARE 400D S (BHN BAKU KOSMETIK) COA 2007A4-07", "output": "38029090"}, {"text_input": "What is the hs code for MANNITOL POWDER USP/EP - MANNO (BHN BAKU OBAT) COA.302011011", "output": "29054300"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA326202", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA RBA3202000", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA RBA3472000", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN ) COA MTP27620", "output": "28363000"}, {"text_input": "What is the hs code for VC SODIUM ASCORBATE REGULAR,25KG BAL (BAHAN BAKU SUPLEMEN) COA HPD2011209,233,234,236,237,238", "output": "29362700"}, {"text_input": "What is the hs code for GUAIFENESIN USP 41 (B. BAKU OBAT) COA GGE-2010192 S/D GGE-2010199, GGE-2011200 S/D 2011205", "output": "29094900"}, {"text_input": "What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-201030", "output": "29061300"}, {"text_input": "What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA 181151", "output": "28399000"}, {"text_input": "What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA 182613", "output": "28399000"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH637704", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH637717", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH637720", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH637700", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH637709", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH637702", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH637722", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH637729", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH637708", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH637727", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH637707", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH638009", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH637719", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH637701", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH637723", "output": "38249999"}, {"text_input": "What is the hs code for PIGMENT BLEND GREEN (BHN BAKU PEWARNA TABLET) COA SH637714", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY 200 BROWN (BHN BAKU PEWARNA TABLET) COA SH637724", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY EZ CLEAR (BHN BAKU PEWARNA TABLET) COA SH637705", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BLACK (BHN BAKU PEWARNA TABLET) COA SH637728", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY GREEN (BHN BAKU PEWARNA TABLET) COA SH637716", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB RED (BHN BAKU PEWARNA TABLET) COA SH637725", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II PURPLE (BHN BAKU PEWARNA TABLET) COA SH637726", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH638597", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB II BLUE (BHN BAKU PEWARNA TABLET) COA SH637731", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH637706", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH637706", "output": "39061090"}, {"text_input": "What is the hs code for PIGMENT BLEND BROWN (BHN BAKU PEWARNA TABLET) COA SH638313", "output": "32151900"}, {"text_input": "What is the hs code for DWI-BI (BHN BAKU MAKANAN) COA XW92010224", "output": "21069059"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0320051316,317,319,320", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0219120234", "output": "29420000"}, {"text_input": "What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000191533, 0000191813", "output": "29362900"}, {"text_input": "What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0032595", "output": "29362500"}, {"text_input": "What is the hs code for STAY-C(R) 50, 20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02003025", "output": "29362700"}, {"text_input": "What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92009073,,XW92009074", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MAX, 25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0919030009", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0820010214", "output": "29420000"}, {"text_input": "What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02002804, TL02002805", "output": "29362400"}, {"text_input": "What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF20164001", "output": "29420000"}, {"text_input": "What is the hs code for OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH637976", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH638009", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH637977", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY BROWN (BHN BAKU PEWARNA TABLET) COA SH637970", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL -EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH638598", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH637991", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE(BHN BAKU PEWARNA TABLET) COA SH637992", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH637704", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH637972", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH637968", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH637700", "output": "38249999"}, {"text_input": "What is the hs code for SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA 200601052", "output": "38249999"}, {"text_input": "What is the hs code for 1,3-BUTYLENE GLYCOL, COSMETIC QUALITY(BHN BAKU KOSMETIK) COA P0620O01BC", "output": "29053200"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA201105", "output": "38249999"}, {"text_input": "What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) COA OLVH201104-ENBIO", "output": "38249999"}, {"text_input": "What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) COA OLVH201205-ENBIO", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS200301", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO201002", "output": "38249999"}, {"text_input": "What is the hs code for GARLIC EXTRACT (BHN BAKU OBAT) COA BNPGE201110C106601", "output": "13021950"}, {"text_input": "What is the hs code for METOCLOPRAMIDE HYDROCHLORIDE BP (BHN BAKU OBAT) COA M-2012411", "output": "29242990"}, {"text_input": "What is the hs code for RANITIDINE HCL USP (BHN BAKU OBAT) COA RH 769 12 20", "output": "29321900"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA MTP35320", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA MTP22620,SAMPLE NO COMM VALUE", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (B.BAKU SUPLEMEN) COA MTP26820,SAMPLE NO COMM VALUE", "output": "28363000"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH638678", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH638586", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE ( BHN BAKU PEWARNA TABLET) COA SH638711", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH638675", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH638677", "output": "38249999"}, {"text_input": "What is the hs code for ADSORB AFLA (BHN BAKU UNTUK PAKAN TERNAK) COA 165", "output": "25081000"}, {"text_input": "What is the hs code for NOREPINEPHRINE BITARTRATE (NORADRENALINE TARTRATE)BHN BAKU OBAT, COA 600104", "output": "29379010"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 03/19GL4", "output": "28399000"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 03/19GL4,SAMPLE NO COMM VALUE", "output": "28399000"}, {"text_input": "What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA 181151", "output": "28399000"}, {"text_input": "What is the hs code for GELEOL MONO AND DIGLYCERIDES NF (BHN BAKU OBAT) COA 20E2004", "output": "28399000"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK COA B021120", "output": "39123900"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B021120", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB031120", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB031120", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG281120", "output": "39123900"}, {"text_input": "What is the hs code for KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 121020", "output": "25070000"}, {"text_input": "What is the hs code for MIRASIL DM300 000 A2 (BHN BAKU KOSMETIK) COA 2050F5011D", "output": "39100090"}, {"text_input": "What is the hs code for SCHISANDRA EXTRACT ( BAHAN BAKU OBAT ) COA SCE03-20081701", "output": "13021990"}, {"text_input": "What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-200405", "output": "29397900"}, {"text_input": "What is the hs code for ACNEBUSTERS ( BHN BAKU KOSMETIK), COA 202319", "output": "38249999"}, {"text_input": "What is the hs code for SOAPNUT EXTRACT POWDER (BHN BAKU KOSMETIK) COA 201983", "output": "13021990"}, {"text_input": "What is the hs code for SPRINGMINT (BHN BAKU KOSMETIK) COA 201280", "output": "13021990"}, {"text_input": "What is the hs code for EMALEX GWIS-320 (BHN BAKU KOSMETIK), COA 1-1046", "output": "34021310"}, {"text_input": "What is the hs code for EMALEX PEIS-10EX (BHN BAKU KOSMETIK), COA 2010-09", "output": "34021310"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK),COA 201904", "output": "13021990"}, {"text_input": "What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK),COA 201052", "output": "13021990"}, {"text_input": "What is the hs code for PHYTO COLLAGE B (N) BHN BAKU KOSMETIK, COA 202079", "output": "13021990"}, {"text_input": "What is the hs code for BIOBENEFITY (BHN BAKU KOSMETIK) COA 201575", "output": "13021990"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 201146", "output": "38249999"}, {"text_input": "What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 201501", "output": "13021990"}, {"text_input": "What is the hs code for BIOCELLACT CHAMOMILLA BD (BHN BAKU KOSMETIK) COA 201575", "output": "13021990"}, {"text_input": "What is the hs code for FERRIC PYROPHOSPHATE,APPROX 25PCT FE (BHN BAKU MAKANAN) COA 3090451", "output": "28353990"}, {"text_input": "What is the hs code for MOXIFLOXACIN HCL (BHN BAKU OBAT) COA MP0081120", "output": "29334990"}, {"text_input": "What is the hs code for MOXIFLOXACIN HCL ( BHN BAKU OBAT) COA MP0070820", "output": "29334990"}, {"text_input": "What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 2012043", "output": "29349990"}, {"text_input": "What is the hs code for INOSITOL (BHN BAKU OBAT) COA 202012045 S/D 202012047", "output": "29061300"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG201204", "output": "29362700"}, {"text_input": "What is the hs code for SURELEASE ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA IN542674", "output": "32151900"}, {"text_input": "What is the hs code for SURELEASE ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA IN542874", "output": "32151900"}, {"text_input": "What is the hs code for SURELEASE ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA IN542778", "output": "32151900"}, {"text_input": "What is the hs code for MANNOGEM (R) XL OPAL SPRAY DRIED MANNITOL USP/EP (BHN BAKU OBAT) COA 122000023,122000024", "output": "29054300"}, {"text_input": "What is the hs code for VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 121910046", "output": "28365010"}, {"text_input": "What is the hs code for LUBRIPHARM (R) SSF NF/EP/JP SODIUM STEARYL FUMARATE(BHN BAKU OBAT) COA 122000663", "output": "28161000"}, {"text_input": "What is the hs code for PEPPERMINT ORGANIC FROM FRANCE DISTILLATE (BHN BAKU KOSMETIK) COA MEPD201002-BIO", "output": "38249999"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO201001", "output": "38249999"}, {"text_input": "What is the hs code for HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIE201002", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO201002", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS200301", "output": "38249999"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20201119", "output": "17029019"}, {"text_input": "What is the hs code for NATURAL SOURCE MIXED TOCOPHEROLS (BHN BAKU KOSMETIK) COA 201206M001", "output": "29362800"}, {"text_input": "What is the hs code for HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 3107407", "output": "33029000"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 201023", "output": "13021950"}, {"text_input": "What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 200815,200818", "output": "33012990"}, {"text_input": "What is the hs code for LIME PEARL TM AF(BHN BAKU KOSMETIK) COA 201025", "output": "13021950"}, {"text_input": "What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 200911", "output": "13021950"}, {"text_input": "What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 200625", "output": "29061900"}, {"text_input": "What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 201217", "output": "33012990"}, {"text_input": "What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA 8MT2012136", "output": "30032000"}, {"text_input": "What is the hs code for DEXAMETHASONE BP2010/USP42 (BHN BAKU OBAT) COA NED200818,NED201005,NED200804", "output": "29372200"}, {"text_input": "What is the hs code for PREDNISONE USP42 (BHN BAKU OBA) COA NPD 200934", "output": "29372100"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA RBA3362000", "output": "28363000"}, {"text_input": "What is the hs code for MANNOGEM (R) XL OPAL SPRAY DRIED MANNITOL...(B BAKU OBAT)COA122000023,SAMPLE NOCOMMERCIAL VALUE", "output": "29054300"}, {"text_input": "What is the hs code for TUBE CRYSTAL E/ ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0218624", "output": "38210090"}, {"text_input": "What is the hs code for TUBE CRYSTAL INOCULUM BROTH (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0231561", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0139933", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0308542", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9323677", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MIDDLEBROOK 7H9 BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0112178", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0335417", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0097116", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0286434", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0268454,0287614..", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0282615", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0315052", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161680", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0275956", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065900", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0280297", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0286357", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0007272", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0315710", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEMOGLOBIN FREEZE DIED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0252083", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE CHROMAGAR CANDIDA 500GM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0238375", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9015557", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0265212", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIADIS MSRV 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0063501", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0308018", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE YEAST CARBON BASE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0038689", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0224851", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0343129", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0280159", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0307318", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0183124", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0287484", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0133432", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0254273,0268735", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TREHALOSE 10G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0294315", "output": "38210090"}, {"text_input": "What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000191813,0000191537,0000191887", "output": "29362900"}, {"text_input": "What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0032595", "output": "29362500"}, {"text_input": "What is the hs code for DL PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01908640", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT20090030", "output": "29362100"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ00610736", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20070119", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030049", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT20050198", "output": "29362100"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030068, WB20030076", "output": "29362200"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT20060124", "output": "29362400"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20040027", "output": "32041900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20080207", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20090010", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12007021", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20090010", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT20070119", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT20090030", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT20080026", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12007021", "output": "29362900"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL02007087", "output": "29362400"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ00610736, UQ00610738", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20070119", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT19100220", "output": "29362400"}, {"text_input": "What is the hs code for PHASEOLUS VULGARIS DRY EXTRACT (BHN BAKU SUPLEMEN) SAMPLE NO COMMERCIAL VALUE", "output": "13021950"}, {"text_input": "What is the hs code for LEUCOCYANIDINS (BHN BAKU SUPLEMEN) SAMPLE NO COMMERCIAL VALUE", "output": "13021950"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0293664", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0276571", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0277779", "output": "38210090"}, {"text_input": "What is the hs code for GLICLAZIDE (BHN BAKU OBAT) COA 2040001414", "output": "29359000"}, {"text_input": "What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2020101003", "output": "21012020"}, {"text_input": "What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-003-X", "output": "38249999"}, {"text_input": "What is the hs code for STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN542261", "output": "35051010"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000294, 122000361", "output": "28363000"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED GRADE A)BHN BAKU OBAT,COA M533258,M533090,M533260,...", "output": "29411019"}, {"text_input": "What is the hs code for THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000047423", "output": "33029000"}, {"text_input": "What is the hs code for THE MATCHA P112 180 (BHN BAKU OBAT) COA 0000047926", "output": "33029000"}, {"text_input": "What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-201030", "output": "29061300"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA FEB", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA FKF", "output": "38249999"}, {"text_input": "What is the hs code for AMITOSE R (BHN BAKU KOSMETIK) COA FHD", "output": "38249999"}, {"text_input": "What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA FKB", "output": "38249999"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE ,25KG BOX(BHN BAKU MAKANAN) COA TL02011164,TL02011169", "output": "29362700"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX(B. BAKU MAKANAN), COA TL02011131,11138,11142,11154,11164", "output": "29362700"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 201023", "output": "13021950"}, {"text_input": "What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 200815,200818", "output": "33012990"}, {"text_input": "What is the hs code for LIME PEARL TM AF(BHN BAKU KOSMETIK) COA 201025", "output": "13021950"}, {"text_input": "What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 200911", "output": "13021950"}, {"text_input": "What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 200625", "output": "29061900"}, {"text_input": "What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 201217", "output": "33012990"}, {"text_input": "What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0049504", "output": "38249999"}, {"text_input": "What is the hs code for AC091KF FUCOGEL 1.5P 25 KG (BHN BAKU KOSMETIK) COA 0050733", "output": "38249999"}, {"text_input": "What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP833129", "output": "39059990"}, {"text_input": "What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL (BHN BAKU PEWARNA TABLET) COA WP833403: BA4808", "output": "32151900"}, {"text_input": "What is the hs code for D AND C YELLOW #10 AL 15PCT-20PCT ... (BHN BAKU PEWARNA TABLET) COA WP831854:BA3821", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW... (BHN BAKU PEWARNA TABLET) COA WP830532:BA3278", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C YELLOW #5/TARTRAZINE AL...(BHN BAKU PEWARNA TABLET) COA WP822863:BA0318", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C RED #40/ALLURA RED AC AL... (BHN BAKU PEWARNA TABLET) COA WP835343:BA5318", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C YELLOW #6/SUNSET YELLOW... (BHN BAKU PEWARNA TABLET) COA WP830995:BA3413", "output": "32151900"}, {"text_input": "What is the hs code for VIT A PALM 1.0M+VIT.D3 100'000 (BHN BAKU MAKANAN) COA UT20110105", "output": "29362100"}, {"text_input": "What is the hs code for FLORAGLO (R)LUTEIN 20PCT SAF, 1KG ALUF (BHN BAKU SUPLEMEN) COA UE02007035", "output": "32030010"}, {"text_input": "What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT20110052", "output": "29362100"}, {"text_input": "What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ00617016", "output": "29420000"}, {"text_input": "What is the hs code for ABYSSINE TM PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) COA 702028515I", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785018206L", "output": "38249999"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782018475L", "output": "38249999"}, {"text_input": "What is the hs code for NEUTRAZEN TM (BHN BAKU KOSMETIK) COA 828018409L", "output": "38249999"}, {"text_input": "What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784027993K", "output": "38249999"}, {"text_input": "What is the hs code for ISOFLAVONES 150 BDF - 10KG (BHN BAKU KOSMETIK) COA 9484766", "output": "38249999"}, {"text_input": "What is the hs code for PRO-LIPO TM NEO -5KG (BHN BAKU KOSMETIK) COA 2029001", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM -5KG (BHN BAKU KOSMETIK) COA 2032305", "output": "38249999"}, {"text_input": "What is the hs code for SUNFLOHAIR TM -5KG (BHN BAKU KOSMETIK) COA 2023577", "output": "38249999"}, {"text_input": "What is the hs code for ROSALITY TM -5KG (BHN BAKU KOSMETIK) COA 2033901", "output": "38249999"}, {"text_input": "What is the hs code for MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL201228", "output": "29094900"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE (MMW) (BHN BAKU KOSMETIK)COA CHP1201214", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK)COA BAG-010340", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-032980,GSK-K-041410", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE 1PCT SOLUTION (BHN BAKU KOSMETIK) COA HASC-522680", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK)COA OHA-070910", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-022420", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-321900", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-021380", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-060900", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-022420", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-211980", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-010340", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT(BHN BAKU KOSMETIK) COA GSC-K-041410,GSC-K-032980", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND GREEN TEA SEED OIL (BHN BAKU KOSMETIK) COA CSSO-030640", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-070910", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-461710", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 122220", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-020700", "output": "38249999"}, {"text_input": "What is the hs code for DICLOFENAC SODIUM USP (BHN BAKU OBAT) COA DFS/10100410,DFS/10120479,DFS/10120480", "output": "29224900"}, {"text_input": "What is the hs code for CINNARIZINE (BHN BAKU OBAT) COA CIN2012183", "output": "29335990"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0265643", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0182358", "output": "38210090"}, {"text_input": "What is the hs code for BACTO MALT EXTRACT 500G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0035108", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0182358", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0322536", "output": "38210090"}, {"text_input": "What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT 10X10ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0226664", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0275398", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0037326", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037338", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0128385", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0282558", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0097374", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065943", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LETHEEN BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0280045", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0114639", "output": "38210090"}, {"text_input": "What is the hs code for VIAL NOVOBIOCIN SUPPLEMENT 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0262841", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0328195", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0328875", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0259350", "output": "38210090"}, {"text_input": "What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP C (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0170321", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0300807", "output": "38210090"}, {"text_input": "What is the hs code for SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202101-002", "output": "35040000"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL ...(BHN BAKU PEWARNA TABLET)COA D180K36002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D180K36002", "output": "39123900"}, {"text_input": "What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0049484", "output": "38249999"}, {"text_input": "What is the hs code for COPPER SULFATE, POWDER, PH.EUR.10.ED (BHN BAKU SUPLEMEN) COA 3094288", "output": "28332500"}, {"text_input": "What is the hs code for PGLCP 102KC RSPO MB (BHN BAKU KOSMETIK) COA 201120204", "output": "34021390"}, {"text_input": "What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 110320,100320,070720,080720,090320", "output": "38029090"}, {"text_input": "What is the hs code for KSG-210 (16KG) BHN BAKU KOSMETIK, COA 009669", "output": "38249999"}, {"text_input": "What is the hs code for KF-6048 (16KG) BHN BAKU KOSMETIK, COA 012025", "output": "38249999"}, {"text_input": "What is the hs code for MILD TALCUM MOD1 FM2 (BHN BAKU KOSMETIK) COA 10300220", "output": "13021950"}, {"text_input": "What is the hs code for ACTIPONE (R) CAMU CAMU ET (BHN BAKU KOSMETIK) COA 10300019", "output": "13021950"}, {"text_input": "What is the hs code for PHARMAKAOLIN B 860 X (BHN BAKU KOSMETIK) COA 23.10.19", "output": "25070000"}, {"text_input": "What is the hs code for MANGANESE GLUCONATE 2-HYDRATE ( BHN BAKU MAKANAN) SAMPLE NO COMM VALUE", "output": "29181600"}, {"text_input": "What is the hs code for COPPER SULFATE , POWDER, PH EUR 10 ED (BHN BAKU MAKANAN) SAMPLE NO COMM VALUE", "output": "28332500"}, {"text_input": "What is the hs code for TRICALCIUM CITRATE 4-HYDRATE ( BHN BAKU MAKANAN) SAMPLE NO COMM VALUE", "output": "29181590"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 INF OIL, 25KG MDR (BHN BAKU SUPLEMEN) COA TS00015753", "output": "29362500"}, {"text_input": "What is the hs code for COPPER SULFATE, POWDER, PH.EUR.10.ED (BHN BAKU SUPLEMEN) SAMPLE NO COMM VALUE", "output": "28332500"}, {"text_input": "What is the hs code for PGLCP 102KC RSPO MB (BHN BAKU KOSMETIK) COA 201120204", "output": "34021390"}, {"text_input": "What is the hs code for FEF CETRIMIDE PH EUR (BHN BAKU KOSMETIK) COA KX0C679", "output": "38249999"}, {"text_input": "What is the hs code for KIGELINE (BHN BAKU KOSMETIK)COA KA200904-B", "output": "38249999"}, {"text_input": "What is the hs code for MANGANESE (II)-SULFATE 1-HYDRATE ( BHN BAKU OBAT) SAMPLE NO COMM VALUE", "output": "29181600"}, {"text_input": "What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0032595", "output": "29362500"}, {"text_input": "What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF20164001", "output": "29420000"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02004001, UE02004003", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0320051320, 51321,51322", "output": "29420000"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT20060063", "output": "29362800"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02005013", "output": "29362900"}, {"text_input": "What is the hs code for STAY-C(R) 50, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UE02002019", "output": "29362700"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE,20KG BOX (BHN BAKU MAKANAN) COA QZ11200920", "output": "29362500"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12007021", "output": "29362900"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00502880,UQ00502881", "output": "29362200"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12007021", "output": "29362900"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL-ACETATE, 20KG JUG (BHN BAKU SUPLEMEN) COA XH20200401", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT20070119", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT20040196,197,198", "output": "29362100"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL02008093", "output": "29362400"}, {"text_input": "What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA DOC3562021", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA RBA0012100", "output": "28363000"}, {"text_input": "What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 194924", "output": "29332900"}, {"text_input": "What is the hs code for LIFE'S DHA (TM) S35-O300, 5KG ALUF (BHN BAKU SUPLEMEN) COA VY00382802", "output": "29362500"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II ( BHN BAKU KOSMETIK), COA 201146", "output": "38249999"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 201904", "output": "13021990"}, {"text_input": "What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 210029", "output": "38249999"}, {"text_input": "What is the hs code for IZAYOI (BHN BAKU KOSMETIK),COA 202320", "output": "13021990"}, {"text_input": "What is the hs code for BIOCELLACT CHAMOMILLA BD(BHN BAKU KOSMETIK),COA 210091", "output": "13021990"}, {"text_input": "What is the hs code for ABSORAGE (BHN BAKU KOSMETIK), COA 200264", "output": "13021990"}, {"text_input": "What is the hs code for SUPPOCIRE A PELLETS (BHN BAKU OBAT) COA 20E4106", "output": "28399000"}, {"text_input": "What is the hs code for 985-L-MENTHOL CRYSTALS INDIAN NATURAL (BHN BAKU KOSMETIK) COA NFPL-MEN-20-22", "output": "38249999"}, {"text_input": "What is the hs code for CYPROTERONE ACETATE MICRONIZED (BHN BAKU OBAT) COA NA3473M", "output": "29372900"}, {"text_input": "What is the hs code for ROSUVASTATIN CALCIUM (BHN BAKU OBAT) COA M325187", "output": "29359000"}, {"text_input": "What is the hs code for CENTELLA ASIATICA EXTRACT 95PCT ( BHN BAKU KOSMETIK), COA GKP 20095 EOU", "output": "13021950"}, {"text_input": "What is the hs code for TAMANOL BIO IL (BHN BAKU KOSMETIK) COA CIN191107-ILBIO", "output": "38249999"}, {"text_input": "What is the hs code for KAPILARINE (BHN BAKU KOSMETIK) COA KAP2008L2", "output": "38249999"}, {"text_input": "What is the hs code for ROMAN CHAMOMILLE ORGANIC DISTILLATE 1:1 (BHN BAKU KOSMETIK) COA ANN2006L2-DBIO", "output": "38249999"}, {"text_input": "What is the hs code for SPIRULINA HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA ARP2002E1-GS", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO200401", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) COA ANT2012L3", "output": "38249999"}, {"text_input": "What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2008722967", "output": "29362600"}, {"text_input": "What is the hs code for WITCH HAZEL ORGANIC DISTILLATE 1:10 (BHN BAKU KOSMETIK) COA HAVD201012-BIO", "output": "38249999"}, {"text_input": "What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-200802-GS", "output": "38249999"}, {"text_input": "What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-201003-GS", "output": "38249999"}, {"text_input": "What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-201004-GS", "output": "38249999"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO210101", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) COA EG543-200905", "output": "38249999"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO210101", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM201201-PGH", "output": "38249999"}, {"text_input": "What is the hs code for TICAGRELOR (BHN BAKU OBAT) COA, TG2M027112", "output": "29091900"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT), COA ASGP/12/251220,261220,271220,281220", "output": "29420000"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE BP (BHN BAKU OBAT) COA ASG/12/201220, ASG/12/261220", "output": "29420000"}, {"text_input": "What is the hs code for JAGUAR HP 105 SGI, 25KG CARDBOARD CARTON (BHN BAKU KOSMETIK) COA H2009167E", "output": "38249999"}, {"text_input": "What is the hs code for PIROXICAM (BAHAN BAKU OBAT ) COA PRX2020009M", "output": "29349990"}, {"text_input": "What is the hs code for METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/19090404", "output": "29332900"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH638885", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH638883", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH638968", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH638129", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH638879", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH638905", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH638884", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH638906", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH639055", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH638900", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH639514", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY 200 BROWN (BHN BAKU PEWARNA TABLET) COA SH638881", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH636146", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BLACK (BHN BAKU PEWARNA TABLET) COA SH638904", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH637368", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH638897", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH638911", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH639210", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH638910", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH638678", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH639514", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH637368", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH638586", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH638899", "output": "38249999"}, {"text_input": "What is the hs code for CAFFEINE BP/EP/USP (BHN BAKU OBAT) COA 2101098", "output": "29393000"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU SUPLEMEN), COA UJ047 ,UJ048", "output": "29181400"}, {"text_input": "What is the hs code for FEF CETRIMIDE PH EUR (BHN BAKU KOSMETIK) COA KX0C767", "output": "38249999"}, {"text_input": "What is the hs code for UNICERT YELLOW K7164-J (BHN BAKU KOSMETIK) COA.1103341", "output": "32041290"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK)COA HMVBD-020700", "output": "38249999"}, {"text_input": "What is the hs code for CALCIUM CARBONATE ,HEAVY POWDER, FCC 12 (BHN BAKU MAKANAN) COA 3058760", "output": "25174100"}, {"text_input": "What is the hs code for PERMETHRIN (PHARMA GRADE) BHN BAKU OBAT COA 205046005, 205046006", "output": "29163990"}, {"text_input": "What is the hs code for ALLOPURINOL USP (BHN BAKU OBAT) COA 20061AY3ARII", "output": "29335990"}, {"text_input": "What is the hs code for ISDN 25PCT-LACTOSE 450 75PCT DILUTED (BHN BAKU OBAT)COA 2100026,2100027", "output": "29329990"}, {"text_input": "What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-210112", "output": "29061300"}, {"text_input": "What is the hs code for VC ASCORBIC ACID 325 MESH,20KGBOALPO (BAHAN BAKU SUPLEMEN)COA HPD2012066,2070,2074,2081,2090...", "output": "29362700"}, {"text_input": "What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWER FORM CATCOL C 135(L) GRADE(B.BAKU KOSMETIK) COA 062/21", "output": "38249999"}, {"text_input": "What is the hs code for PEG 400 (BAHAN BAKU KOSMETIK) COA.AKW0001593", "output": "39072010"}, {"text_input": "What is the hs code for BRB DM 2, DRUM 180 KG ( BHN BAKU KOSMETIK) COA B079014, B083095", "output": "39100020"}, {"text_input": "What is the hs code for KSP-101 (15KG) (BHN BAKU KOSMETIK), COA 012369", "output": "38249999"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113534", "output": "29339990"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113520", "output": "29339990"}, {"text_input": "What is the hs code for CHERRY TREE FLOWER JAPAN OILY EXTRACT (BHN BAKU KOSMETIK) COA PRS210101-H", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-201102", "output": "38249999"}, {"text_input": "What is the hs code for RICE MILK AQUEOUS EXTRACT (SB) (BHN BAKU KOSMETIK) COA ORSL210101-AQ", "output": "38249999"}, {"text_input": "What is the hs code for SEABUCKTHORN HYDROGLYCOLIC EXTRACT (BG) (BHN BAKU KOSMETIK) COA HIR210101-B", "output": "38249999"}, {"text_input": "What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) COA", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) COA EG543-210201", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) COA EG543-210101", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) COA EG543-210101", "output": "38249999"}, {"text_input": "What is the hs code for FEF CETRIMIDE PH EUR (BHN BAKU KOSMETIK) COA KX0C775", "output": "38249999"}, {"text_input": "What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN), COA WB20070532", "output": "29362700"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 20B003800", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 20B0090600", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 20B0090700", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 20B0090800", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 20B0090900", "output": "13021990"}, {"text_input": "What is the hs code for PASSION FLOWER D.H.E.>4PCT (BHN BAKU SUPLEMEN) COA 20B0079600", "output": "13021990"}, {"text_input": "What is the hs code for DRY VITAMIN A PALMITATE TYPE 325 CWS/A, 20KG BA (BHN BAKU MAKANAN) COA WB20080532,533,534", "output": "29362100"}, {"text_input": "What is the hs code for COSME-PHYTAMI LOTUS FL 5KG(BAHAN BAKU KOSMETIK) COA AM087001", "output": "13021950"}, {"text_input": "What is the hs code for COSME-PHYT PEPPERMINT 5KG(BAHAN BAKU KOSMETIK) COA AM082638", "output": "13021950"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000533, 122000534", "output": "28363000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000533", "output": "28363000"}, {"text_input": "What is the hs code for OPADRY RED (BHN BAKU PEWARNA TABLET) COA SH639899", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW ( BHN BAKU PEWARNA TABLET) COA SH639243", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BLUE (BHN BAKU PEWARNA TABLET) COA SH639934", "output": "38249999"}, {"text_input": "What is the hs code for JAGUAR C162 SGI, CARDBOARD BOX 25KG (BHN BAKU KOSMETIK) COA MJAC20353A", "output": "38249999"}, {"text_input": "What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK)COA 7766026", "output": "38249999"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG201211, MCVG201224", "output": "29362700"}, {"text_input": "What is the hs code for CATHECHINS (SUNPHENON 90D) BHN BAKU TAMBAHAN PANGAN, COA 101111", "output": "38249999"}, {"text_input": "What is the hs code for DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB20100022", "output": "28352510"}, {"text_input": "What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC 208 20 T", "output": "27101990"}, {"text_input": "What is the hs code for ASTABIO ARV-S (BHN BAKU OBAT) COA.1903231", "output": "32030010"}, {"text_input": "What is the hs code for CALAMINE, POWDER, BP2021 (BHN BAKU OBAT) COA 3092304", "output": "28369990"}, {"text_input": "What is the hs code for BETAMETHASONE VALERATE (BHN BAKU OBAT) COA X21-200802", "output": "29372200"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP21014542, XP21014543", "output": "29211900"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH640547", "output": "38249999"}, {"text_input": "What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512050", "output": "47069200"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II ( BHN BAKU KOSMETIK), COA 210098", "output": "38249999"}, {"text_input": "What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 210029", "output": "38249999"}, {"text_input": "What is the hs code for MANDARIN CLEAR (BHN BAKU KOSMETIK) COA 201576", "output": "13021990"}, {"text_input": "What is the hs code for BIOBENEFITY (BHN BAKU KOSMETIK),COA 201003", "output": "13021990"}, {"text_input": "What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK),COA 202079", "output": "13021990"}, {"text_input": "What is the hs code for BOTANPI LIQUID B ( BHN BAKU KOSMETIK), COA 201501", "output": "13021990"}, {"text_input": "What is the hs code for AP GRIT (ROUND)G #60-80 (BHN BAKU KOSMETIK) COA 200019", "output": "38249999"}, {"text_input": "What is the hs code for AQUACOAT ECD-30 ETHYLCELLULOSE AQUEOUS... (BHN BAKU PEWARNA TABLET) COA 2173764333", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D180K1N022", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180J8D022", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D011JBPL02", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180J8D022", "output": "39123900"}, {"text_input": "What is the hs code for TREHALOSE (BHN BAKU MAKANAN) COA 2020121821", "output": "29400000"}, {"text_input": "What is the hs code for NIACINAMIDE USP (NIACINAMIDE USP/EP) BHN BAKU KOSMETIK,COA 20-21/NMD(P)/00390 S/D 00393", "output": "29362900"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SAC", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA FKF", "output": "38249999"}, {"text_input": "What is the hs code for AMITOSE R (BHN BAKU KOSMETIK) COA FHD", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS SILK-1000 (BHN BAKU KOSMETIK) COA FLA", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER(MMW) (BHN BAKU KOSMETIK)COA CHP1210113", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE 1PCT SOLUTION (BHN BAKU KOSMETIK)COA HASC-562800", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND HASU LIQUID (BHN BAKU KOSMETIK) COA NFH-011311", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-012040, HOXB-020920", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK)COA 011421", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 011421", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-011411", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-011020", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-031720", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND RHODIOLA EXTRACT (BHN BAKU KOSMETIK) COA FRR-012650", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-461710", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-010340", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (B) (BHN BAKU KOSMETIK) COA AMIBD-061060", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND NEWAPLE (BHN BAKU KOSMETIK) COA NWPB-042890", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-051900", "output": "38249999"}, {"text_input": "What is the hs code for SUNFIBER AG (BHN BAKU MAKANAN), COA 907011", "output": "13021950"}, {"text_input": "What is the hs code for DOCUSATE SODIUM (BHN BAKU OBAT), COA SD0071533", "output": "29171900"}, {"text_input": "What is the hs code for LIPOID PPL-600 (BHN BAKU OBAT) COA 577200-2200228/003-004 (2)", "output": "29232010"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP21014770, XP21014771", "output": "29211900"}, {"text_input": "What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 2150079, 2150094", "output": "29242930"}, {"text_input": "What is the hs code for FERRIC PYROPHOSPHATE,24-26PCT FE POWDER,FCC12 (BHN BAKU SUPLEMEN) COA 3095514", "output": "28353990"}, {"text_input": "What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0043912", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335663", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0315982", "output": "38210090"}, {"text_input": "What is the hs code for VIAL UNIVERSAL VIRAL TRANSPORT (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH N03081700", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0307318,031002", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0183124", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0244908", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0294089", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0293259", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9161680", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0294337", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0007272", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0273380", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE STANDARD METHODS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0062547", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0062865", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0350960", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9280662", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01C337M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0280159", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0237250", "output": "38210090"}, {"text_input": "What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0300164", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0300129", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0268232", "output": "38210090"}, {"text_input": "What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0301070", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0308542", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DERMATOPHYTE TEST MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0322911", "output": "38210090"}, {"text_input": "What is the hs code for KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0322101", "output": "38210090"}, {"text_input": "What is the hs code for BICAR FOOD 27/50 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA MTP32620", "output": "28363000"}, {"text_input": "What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2020101003", "output": "21012020"}, {"text_input": "What is the hs code for SUNTHEANINE (L-THEANINE) BHN BAKU MAKANAN, COA 101191", "output": "13021950"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785018790L", "output": "38249999"}, {"text_input": "What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) COA 2030316", "output": "38249999"}, {"text_input": "What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830017750K", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785018478L", "output": "38249999"}, {"text_input": "What is the hs code for CS-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785018790L", "output": "38249999"}, {"text_input": "What is the hs code for NEUTRAZEN TM (BHN BAKU KOSMETIK) COA 828018409L", "output": "38249999"}, {"text_input": "What is the hs code for NEUTRAZEN TM (BHN BAKU KOSMETIK) COA 828018638L", "output": "38249999"}, {"text_input": "What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) COA 2020816", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785018790L", "output": "38249999"}, {"text_input": "What is the hs code for TICAGRELOR (BHN BAKU OBAT) COA, TG2M027112", "output": "29091900"}, {"text_input": "What is the hs code for VC SODIUM ASCORBATE REGULAR, 25KG BAL (BAHAN BAKU MAKANAN) COA HPN2101155, 1156, 1159 S/D1163", "output": "29362700"}, {"text_input": "What is the hs code for VC ASCORBIC ACID 325 MESH, 20KG BOAIPO (BAHAN BAKU SUPLEMEN) COA HPD2012130,135,139,144, ...", "output": "29362700"}, {"text_input": "What is the hs code for VC ASCORBIC ACID REGULAR ,25KG BAL(BHN BAKU MAKANAN) COA HPB2012201", "output": "29362700"}, {"text_input": "What is the hs code for VC ASCORBIC ACID REGULAR, 25KG BAL (BHN BAKU MAKANAN) COA HPB2012040", "output": "29362700"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0328976", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0300807", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE FOLIC AOAC MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 9141510", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0282558", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0324108", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0300807", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0282558", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0097374", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065943", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0328875,0329828", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0259350", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0272043", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0280045", "output": "38210090"}, {"text_input": "What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105715019", "output": "17021100"}, {"text_input": "What is the hs code for FLOWLAC(R) 100H (BHN BAKU OBAT) COA L105810520,L105814919,L105810720", "output": "17021100"}, {"text_input": "What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104314220", "output": "17021100"}, {"text_input": "What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103863220", "output": "17021100"}, {"text_input": "What is the hs code for GRANULAC (R) 70 (BHN BAKU OBAT) COA L101842620", "output": "17021100"}, {"text_input": "What is the hs code for OPADRY EZ CLEAR (BHN BAKU PEWARNA TABLET) COA SH640548", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH640552", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE ( BHN BAKU PEWARNA TABLET) COA SH640549", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY YELLOW (BHN BAKU PEWARNA TABLET) COA SH640546", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH639730", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II BROWN (BHN BAKU PEWARNA TABLET) COA SH640551", "output": "38249999"}, {"text_input": "What is the hs code for SUPPOCIRE AM PELLETS (BHN BAKU OBAT) COA 20E2404", "output": "28399000"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB20090235", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB20100270", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB20090235", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB20100270", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB20090235", "output": "29362800"}, {"text_input": "What is the hs code for FLORAGLO(R)LUTEIN 20PCT SAF, 1KG ALUF (BHN BAKU SUPLEMEN) COA UE02007035", "output": "32030010"}, {"text_input": "What is the hs code for GENIVIDA (TM)TG, 1KG BAG ALU (BHN BAKU SUPLEMEN) COA UT19060004", "output": "29329990"}, {"text_input": "What is the hs code for VITAMIN B12 1PCT SD (BHN BAKU SUPLEMEN) COA UT20110022", "output": "29362600"}, {"text_input": "What is the hs code for MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50361", "output": "29061100"}, {"text_input": "What is the hs code for SORBITOL SPECIAL TM MDF 85,(BHN BAKU OBAT) COAM20003,SAMPLE NOCOMMERCIAL VALUE", "output": "21069059"}, {"text_input": "What is the hs code for 399976 ACTIPONE (R) CAMU CAMU GW (BHN BAKU KOSMETIK) COA 10300014", "output": "13021950"}, {"text_input": "What is the hs code for CEFTIZOXIME SODIUM (BHN BAKU OBAT) COA T601000", "output": "29419000"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543281", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543283", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543282", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543284", "output": "35051010"}, {"text_input": "What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA.MLAH0040121", "output": "29341000"}, {"text_input": "What is the hs code for RANITIDINE HYDROCHLORIDE USP (DC GRADE) (BHN BAKU OBAT) COA RH 041 01 21", "output": "29321900"}, {"text_input": "What is the hs code for SILDENAFIL CITRATE USP (BHN BAKU OBAT) COA SLC 020 01 21", "output": "29335990"}, {"text_input": "What is the hs code for KF-96A-6CS (16KG) BHN BAKU KOSMETIK, COA 101131", "output": "38249999"}, {"text_input": "What is the hs code for KF-7312J (18KG) BHN BAKU KOSMETIK, COA 101850", "output": "38249999"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20040030", "output": "32041900"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20040051", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN PREMIX FOR FERMENTED MILK (BHN BAKU MAKANAN) COA XW92012184", "output": "21069059"}, {"text_input": "What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0220040005", "output": "29420000"}, {"text_input": "What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00650554, VE00652698", "output": "29420000"}, {"text_input": "What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02002805", "output": "29362400"}, {"text_input": "What is the hs code for BEAUPLEX (TM) ,5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF20164001", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708200089,98,100,101", "output": "29420000"}, {"text_input": "What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES2007437", "output": "29420000"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02005013", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0720010029", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MAX, 25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0919030009", "output": "29420000"}, {"text_input": "What is the hs code for STAY-C(R)50, 20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02003026", "output": "29362700"}, {"text_input": "What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET), COA DT711639", "output": "32151900"}, {"text_input": "What is the hs code for OPALUX MAROON (BHN BAKU PEWARNA TABLET), COA DT711640", "output": "32151900"}, {"text_input": "What is the hs code for OPACODE BLACK (BHN BAKU PEWARNA TABLET) COA DT711636", "output": "32151900"}, {"text_input": "What is the hs code for OPASPRAY YELLOW (BHN BAKU PEWARNA OBAT) COA DT711728", "output": "32151900"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP21013310/XP21013312, XP21013311/XP21013313", "output": "29211900"}, {"text_input": "What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2008763065", "output": "29362600"}, {"text_input": "What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWDER FORM CATCOL C135(L) GRADE(B.BAKU KOSMETIK) COA 124/21", "output": "38249999"}, {"text_input": "What is the hs code for LUBRIPHARM (R) SSF NF/EP/JP SODIUM STEARYL FUMARATE (B.BAKU OBAT) COA 122100855", "output": "28161000"}, {"text_input": "What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU OBAT) COA 202000292", "output": "28183000"}, {"text_input": "What is the hs code for OPACODE WHITE (BHN BAKU PEWARNA TABLET) COA WP837267", "output": "32151900"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 10 PREMIUM (BHN BAKU PEWARNA TABLET)COA D184J7V021", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV (BHN BAKU PEWARNA TABLET) COA D011K3TL02", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM CR (BHN BAKU PEWARNA TABLET)COA D180K2O002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM (BHN BAKU PEWARNA TABLET)COA D180K3E002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM LV (BHN BAKU PEWARNA TABLET) COA D180K3B001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM (BHN BAKU UTK PEWARNA TABLET) COA D180JCH001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM (BHN BAKU PEWARNA TABLET) COA D180JCF002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM (BHN BAKU PEWARNA TABLET) COA D180K5C004", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E4M PREMIUM (BHN BAKU PEWARNA TABLET) COA D180J8S013", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100 PREMIUM LVCR (BHN BAKU PEWARNA TABLET) COA D180KCM022", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100 PREMIUM LVCR (BHN BAKU PEWARNA TABLET) COA D180KCU021", "output": "39123900"}, {"text_input": "What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 194924", "output": "29332900"}, {"text_input": "What is the hs code for HYDROCORTISONE ACETATE EP7/USP42 (BHN BAKU OBAT) COA NEHAC210103", "output": "29372200"}, {"text_input": "What is the hs code for PREDNISONE USP42 (BHN BAKU OBAT) COA NPD200934", "output": "29372100"}, {"text_input": "What is the hs code for PEONY P118 182 (BHN BAKU KOSMETIK) COA 3116474", "output": "33029000"}, {"text_input": "What is the hs code for HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 3118264", "output": "33029000"}, {"text_input": "What is the hs code for PIPERONYL BUTOXIDE (BHN BAKU OBAT PAKAN TERNAK) COA 20210110", "output": "29329990"}, {"text_input": "What is the hs code for SUCRALOSE (BHN BAKU OBAT) COA 20120301", "output": "29321400"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA031215", "output": "28363000"}, {"text_input": "What is the hs code for KANEKA Q10 UBIDECARENONE 5KG JP (BHN BAKU KOSMETIK) COA FA01-4323", "output": "29146200"}, {"text_input": "What is the hs code for CETRIMIDE POWDER (BHN BAKU KOSMETIK) COA 320CAA0026", "output": "38249999"}, {"text_input": "What is the hs code for CETRIMIDE POWDER (BHN BAKU KOSMETIK) COA 320CAA0026", "output": "38249999"}, {"text_input": "What is the hs code for JOJOBA OIL VIRGIN LOW ODOUR (BHN BAKU KOSMETIK) COA 155586", "output": "15159011"}, {"text_input": "What is the hs code for AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 155594", "output": "15159011"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK COA B291220", "output": "39123900"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B291220", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB040121", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB040121", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB040121", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT GREEN GLOBEADS L(70-120) BHN BAKU KOSMETIK, COA LG230121", "output": "39123900"}, {"text_input": "What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 201025", "output": "13021950"}, {"text_input": "What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 200911", "output": "13021950"}, {"text_input": "What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 201217", "output": "33012990"}, {"text_input": "What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 201215", "output": "13021950"}, {"text_input": "What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 210109", "output": "13021950"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED)BHN BAKU OBAT,COA M533445,446,448,444", "output": "29411019"}, {"text_input": "What is the hs code for COPPER SULPHATE PENTAHYDRATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA 031,032", "output": "28332500"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02011124, TL02011125", "output": "29362400"}, {"text_input": "What is the hs code for REFINED GRAPESEED OIL (BHN BAKU KOSMETIK) COA.B2000294", "output": "15152919"}, {"text_input": "What is the hs code for P.GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 20S0004000", "output": "13021990"}, {"text_input": "What is the hs code for P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 32347/M1", "output": "13021990"}, {"text_input": "What is the hs code for BILBERRY (V.MYRTILLUS) ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 20S0241102", "output": "13021990"}, {"text_input": "What is the hs code for VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN), COA XW92101217", "output": "21069059"}, {"text_input": "What is the hs code for MINERAL PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92101227", "output": "21069059"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT20110023", "output": "32041900"}, {"text_input": "What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT20120050", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT20090059", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02008089,UE02008090,UE02008091", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT20100029", "output": "29362100"}, {"text_input": "What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT20120050", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT20100046", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT20100029", "output": "29362100"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT20110023", "output": "32041900"}, {"text_input": "What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT20120050", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT20090059", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT20100046", "output": "29362600"}, {"text_input": "What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105715019", "output": "17021100"}, {"text_input": "What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105715019", "output": "17021100"}, {"text_input": "What is the hs code for STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN542261", "output": "35051010"}, {"text_input": "What is the hs code for METHOCEL E4M PREMIUM CR HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D180K3D011", "output": "39123900"}, {"text_input": "What is the hs code for OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH639735", "output": "38249999"}, {"text_input": "What is the hs code for PIGMENT BLEND GREEN (BHN BAKU PEWARNA TABLET) COA SH639742", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH639731", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH639733", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH639748", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH639747", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH639750", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH639751", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH638576", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH639741", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH639743", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE PURPLE (BHN BAKU PEWARNA TABLET) COA SH639825", "output": "39061090"}, {"text_input": "What is the hs code for CLOZAPINE (BHN BAKU OBAT) COA 890106", "output": "29335990"}, {"text_input": "What is the hs code for TRIAMCINOLONE ACETONIDE MICRONIZED (BHN BAKU OBAT) COA NA3399M", "output": "29372200"}, {"text_input": "What is the hs code for PYRANTEL PAMOATE (BHN BAKU OBAT) COA 117221005", "output": "29349990"}, {"text_input": "What is the hs code for PHARMACEUTICAL CASTOR OIL E.P (BHN BAKU KOSMETIK) COA 0000035987,35988", "output": "15152919"}, {"text_input": "What is the hs code for VIRGIN SWEET ALMOND OIL CONFORM TO THE EUR PH (BHN BAKU KOSMETIK) COA 0000035734", "output": "15152919"}, {"text_input": "What is the hs code for TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA R7002", "output": "29225090"}, {"text_input": "What is the hs code for TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA R7043", "output": "29225090"}, {"text_input": "What is the hs code for CAFFEINE BP/EP/USP (BHN BAKU OBAT) COA 2101098,2101100,2101101,2101110...", "output": "29393000"}, {"text_input": "What is the hs code for COMPLEX ANTI PESPIRANT (BHN BAKU KOSMETIK) COA ANTS200903", "output": "38249999"}, {"text_input": "What is the hs code for KIGELINE (BHN BAKU KOSMETIK) COA KA210201-B", "output": "38249999"}, {"text_input": "What is the hs code for ROMAN CHAMOMILLE ORGANIC DISTILLATE 1:1 (SB) (BHN BAKU KOSMETIK) COA ANND201202-BIO", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO201002", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS200301", "output": "38249999"}, {"text_input": "What is the hs code for GRAPE SEED ORGANIC OIL C00031 (BHN BAKU KOSMETIK) COA RPM201003-ENBIO", "output": "38249999"}, {"text_input": "What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-210101-GS", "output": "38249999"}, {"text_input": "What is the hs code for SAFFLOWER REFINED OIL (BHN BAKU KOSMETIK) COA CARHR201105-DW", "output": "38249999"}, {"text_input": "What is the hs code for THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000048605", "output": "33029000"}, {"text_input": "What is the hs code for NECTAR DE MATCHA FEMA P114 6 (BHN BAKU OBAT) COA 0000049825", "output": "33029000"}, {"text_input": "What is the hs code for NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 19LNC1008SQ637", "output": "27101990"}, {"text_input": "What is the hs code for NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 19LNC1008SQ637", "output": "27101990"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET)COA D011K1QL02", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180K78001", "output": "39123900"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 INF OIL, 25KG MDR (BHN BAKU SUPLEMEN) COA TS00016073", "output": "29362500"}, {"text_input": "What is the hs code for PANTOPRAZOLE SODIUM (BHN BAKU OBAT) COA PSFP20012", "output": "29333990"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM REGULAR GRADE(BHN BAKU OBAT) COA 20121626,20121627,20121629,2101053", "output": "29331900"}, {"text_input": "What is the hs code for POTASSIUM L.ASPARTATE 0,5-HYDRATE (BHN BAKU SUPLEMEN) COA 3097106", "output": "29224900"}, {"text_input": "What is the hs code for POTASSIUM L.ASPARTATE 0.5-HYDRATE (BHN BAKU SUPLEMEN) COA 3097106", "output": "29224900"}, {"text_input": "What is the hs code for SODIUM GLYCEROPHOSPHATE CRYST.,PH FRANC X(BHN BAKU SUPLEMEN) COA 3073900-2", "output": "29199000"}, {"text_input": "What is the hs code for PARACETAMOL USP (BHN BAKU OBAT) COA 2150195,196,197", "output": "29242930"}, {"text_input": "What is the hs code for PARACETAMOL USP (BHN BAKU OBAT) COA 2150197,2150204, 2150205", "output": "29242930"}, {"text_input": "What is the hs code for ACETAMINOPHEN (PARACETAMOL).(BAHAN BAKU PAKAN TERNAK ), COA 202101070A,202101071A", "output": "29242930"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 FOOD OIL, 25KG MDR (BHN BAKU SUPLEMEN) COA TS00016166", "output": "29362500"}, {"text_input": "What is the hs code for MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103154520", "output": "17021100"}, {"text_input": "What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000192804", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0320051617,51768,51769", "output": "29420000"}, {"text_input": "What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES2007437, ES2007442", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0520060021", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA 0519030065", "output": "29420000"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) BHN BAKU SUPLEMEN,COA UT20050198", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) BHN BAKU MAKANAN COA UT20050198", "output": "29362100"}, {"text_input": "What is the hs code for VIT PREMIX MI AI (BHN BAKU MAKANAN) COA XW92101174", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO)BHN BAKU MAKANAN, COA UT200500198, UT20050199", "output": "29362100"}, {"text_input": "What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829018390L", "output": "38249999"}, {"text_input": "What is the hs code for GREYVERSE TM (BHN BAKU KOSMETIK) COA 833018113L", "output": "38249999"}, {"text_input": "What is the hs code for NEUTRAZEN TM (BHN BAKU KOSMETIK) COA 828018638L", "output": "38249999"}, {"text_input": "What is the hs code for PROGELINE TM (BHN BAKU KOSMETIK) COA 820058691L", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785018790L", "output": "38249999"}, {"text_input": "What is the hs code for NEUTRAZEN TM (BHN BAKU KOSMETIK) COA 828018638L", "output": "38249999"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782018592M", "output": "38249999"}, {"text_input": "What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP836930", "output": "39059990"}, {"text_input": "What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP836904", "output": "39059990"}, {"text_input": "What is the hs code for FD&C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP830191:BA3144", "output": "32151900"}, {"text_input": "What is the hs code for FD & C YELLOW #5/TARTRAZINE AL (BHN BAKU PEWARNA TABLET) COA WP833403:BA4808", "output": "32151900"}, {"text_input": "What is the hs code for D & C YELLOW #10 AL 15PCT-20PCT (BHN BAKU PEWARNA TABLET) COA WP831857:BA3854", "output": "32151900"}, {"text_input": "What is the hs code for D & C YELLOW #10 AL 15PCT-20PCT(BHN BAKU PEWARNA TABLET) COA WP831855:BA3823", "output": "32151900"}, {"text_input": "What is the hs code for FD & C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP830191:BA3144", "output": "32151900"}, {"text_input": "What is the hs code for FD & C YELLOW #5/TARTRAZINE AL (BHN BAKU PEWARNA TABLET) COA WP822863:BA0318", "output": "32151900"}, {"text_input": "What is the hs code for FD&C RED #40/ALLURA RED AC AL...(BHN BAKU UTK PEWARNA TABLET) COA WP835348:BA5453", "output": "32151900"}, {"text_input": "What is the hs code for PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PI21010004", "output": "29349920"}, {"text_input": "What is the hs code for PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PI21010004", "output": "29349920"}, {"text_input": "What is the hs code for PROPYPHENAZONE (ST) (BHN BAKU OBAT) COA 2011211,213,217,224,248", "output": "29331100"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20210207", "output": "17029019"}, {"text_input": "What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA E01271UP", "output": "29053200"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20080123", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT20080032", "output": "29362900"}, {"text_input": "What is the hs code for MIN PREMIX MI A2 (BHN BAKU MAKANAN) COA XW92101175", "output": "21069059"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT20080032", "output": "29362900"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ00502890", "output": "29362200"}, {"text_input": "What is the hs code for VITAMIN B MIX -SPREAD (BHN BAKU MAKANAN) COA XW92101105", "output": "21069059"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20040030", "output": "32041900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20100265", "output": "29362800"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE02005013", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030178", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030051", "output": "29362500"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL02009653", "output": "29362700"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE(BHN BAKU SUPLEMEN) COA TL02008096", "output": "29362400"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20040051", "output": "29362300"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12007021", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT20080123", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2004045", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2004045", "output": "29362300"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00602917", "output": "29362200"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2004047", "output": "29362300"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT20080032", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS(BHN BAKU SUPLEMEN) COA UT20090010, UT20090011", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S(BHN BAKU SUPLEMEN) COA UT20120082", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20120082", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT20070120,UT20080123", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT20080123", "output": "29362900"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ90502890", "output": "29362200"}, {"text_input": "What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92101219, XW92101220", "output": "21069059"}, {"text_input": "What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92101207", "output": "21069059"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-012111", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK)COA MUB-031720", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-021380", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-061490", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK)COA HMVBD-011411", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 012821", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-BLACK PEARL POWDER(BHN BAKU KOSMETIK) COA PDEG-010221", "output": "38249999"}, {"text_input": "What is the hs code for AESTHEFILL (POLYLACTIC ACID) ,COA AF201123", "output": "90189090"}, {"text_input": "What is the hs code for ADSORB AFLA (BHN BAKU UNTUK PAKAN TERNAK) COA 175", "output": "25081000"}, {"text_input": "What is the hs code for PROCATEROL HCL HEMIHYDRATE MICRONIZED (BHN BAKU OBAT) COA 8601219M1", "output": "29337900"}, {"text_input": "What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC 04 21 T", "output": "27101990"}, {"text_input": "What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA.0000073895", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA.0000073896", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000073897,SAMPLE NO COMMERCIAL VALUE", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H103 43PCT (BHN BAKU KOSMETIK) COA 0000073898, SAMPLE NO COMMERCIAL VALUE", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK), COA 0000073899,SAMPLE NO COMMERCIAL VALUE", "output": "29309090"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH641025", "output": "38249999"}, {"text_input": "What is the hs code for CEFADROXIL MONOHYDRATE POWDER (PURIDROX POWDER) BHN BAKU OBAT, COA B334722,B334723,B334724", "output": "29419000"}, {"text_input": "What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-221220", "output": "29334910"}, {"text_input": "What is the hs code for ZINC SULFATE 1-HYDRATE,POWDER, USP 43 (BHN BAKU OBAT) COA 3095116", "output": "28332920"}, {"text_input": "What is the hs code for METHISOPRINOL (BHN BAKU OBAT) COA MTP1020064", "output": "29349990"}, {"text_input": "What is the hs code for ECOSLIM TM-5KG (BHN BAKU KOSMETIK) COA 2032102", "output": "38249999"}, {"text_input": "What is the hs code for ECOGEL TM-5KG (BHN BAKU KOSMETIK) COA 2101204", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM- 5KG (BHN BAKU KOSMETIK) COA 2032306,2101006", "output": "38249999"}, {"text_input": "What is the hs code for ROSALITY TM- 5KG (BHN BAKU KOSMETIK) COA 2100901", "output": "38249999"}, {"text_input": "What is the hs code for AMISOL TRIO TM-5KG (BHN BAKU KOSMETIK) COA 2021114", "output": "38249999"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0328558", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0358288", "output": "38210090"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20120022", "output": "29362900"}, {"text_input": "What is the hs code for JAGUAR C162 SGI, CARDBOARD BOX 25KG (BHN BAKU KOSMETIK) COA MJAC20353A", "output": "38249999"}, {"text_input": "What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA 2012402107", "output": "29419000"}, {"text_input": "What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-001-Y", "output": "38249999"}, {"text_input": "What is the hs code for COPPER SULPHATE PENTAHYDRATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA 054,055", "output": "28332500"}, {"text_input": "What is the hs code for MANNOGEM (R) XL OPAL SPRAY DRIED MANNITOL USP/EP (B BAKU OBAT)COA122000605", "output": "29054300"}, {"text_input": "What is the hs code for HUILE DE COPRAH RAFF GV 24/26 (BHN BAKU KOSMETIK)COA 21F0601", "output": "15131910"}, {"text_input": "What is the hs code for 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 092220/006591", "output": "38249999"}, {"text_input": "What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 2102EF9012", "output": "29224900"}, {"text_input": "What is the hs code for TADALAFIL USP (BHN BAKU OBAT) COA TAD/0519007", "output": "29349990"}, {"text_input": "What is the hs code for PHYTO COLLAGE B (N) ( BHN BAKU KOSMETIK), COA 2", "output": "13021990"}, {"text_input": "What is the hs code for SWERTIANIN-P (BHN BAKU KOSMETIK) COA 202179", "output": "13021990"}, {"text_input": "What is the hs code for ROSE HIPS LIQUID B (BHN BAKU KOSMETIK) COA 200964", "output": "13021990"}, {"text_input": "What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK),COA 202189", "output": "38249999"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK),COA 210098", "output": "38249999"}, {"text_input": "What is the hs code for IZAYOI ( BHN BAKU KOSMETIK), COA 210453", "output": "13021990"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA008216,8214,8216,009217,010217", "output": "28363000"}, {"text_input": "What is the hs code for LIPOID S 67 F (BHN BAKU OBAT) COA 576200-2210034/001--006(6),576200-2210034/007", "output": "29232010"}, {"text_input": "What is the hs code for EUXYL K 100 CN -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1559931", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010-CN- 200KG FA (BHN BAKU KOSMETIK) COA 1557150,1558832", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010-CN- 10KG KA (BHN BAKU KOSMETIK) COA 1559619", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 903 -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1556807", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 720 -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1558389", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 200KG DR (BHN BAKU KOSMETIK) COA 1557501", "output": "38249999"}, {"text_input": "What is the hs code for EFFISIN LA NATURAL SAMPLE 100ML FL(B.BAKU KOSMETIK)COA 1559237, SAMPLE NO COMM VALUE", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL ECO 910 SAMPLE 100ML FL (B.BAKU KOSMETIK)COA 1552570, SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 120 SAMPLE 100ML FL (BHN BAKU KOSMETIK) COA 1557976, SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 340 MUSTER 100ML FL (BHN BAKU KOSMETIK) COA 1556172 , SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 700 SAMPLE 100ML FL (BHN BAKU KOSMETIK) COA 1552454, SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 720 SAMPLE 100ML FL (BHN BAKU KOSMETIK) COA 1556433 SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 703 SAMPLE 100ML FL (BHN BAKU KOSMETIK) COA 1559236,SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 712 SAMPLE 100 ML FL (BHN BAKU KOSMETIK) COA 1560234 SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 720 SAMPLE 100ML FL (BHN BAKU KOSMETIK) COA 1545188,SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 900 (SAMPLE)100ML FL (BHN BAKU KOSMETIK) COA 1558250 SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 940 (SAMPLE) 100ML FL (BHN BAKU KOSMETIK) COA 1556173, SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 SAMPLE(S) 100ML FL (BHN BAKU KOSMETIK) COA 1557830, SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for SENSIDIN DO SAMPLE 100ML FL (BHN BAKU KOSMETIK) COA 1551993, SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA PA 20 SAMPLE(S) 100ML FL (BHN BAKU KOSMETIK) COA 1550653 SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA PA 30ML SAMPLE 100ML FL (BHN BAKU KOSMETIK) COA 1560735,SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 SAMPLE(S) 100ML FL (BHN BAKU KOSMETIK) COA 1559235,SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 340 -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1558219, SAMPLE NO COMMERCIAL VALUE", "output": "38249999"}, {"text_input": "What is the hs code for ACTIPONE (R) CAMU CAMU ET (BHN BAKU KOSMETIK) COA 10300020", "output": "13021950"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 00280121,03620221,03280221...", "output": "29359000"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 03280221,03370221,03430221...", "output": "29359000"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT20100029, UT20100030", "output": "29362100"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH640498", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE ( BHN BAKU PEWARNA TABLET) COA SH640505", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH641550", "output": "38249999"}, {"text_input": "What is the hs code for MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103154520", "output": "17021100"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-012111", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND APRICOT EXTRACT (BHN BAKU KOSMETIK)COA PAS-011980", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-010511", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-071300", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-011411", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-211980", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-082900", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND NEWAPLE (BHN BAKU KOSMETIK) COA NWPB-042890", "output": "38249999"}, {"text_input": "What is the hs code for KF-6028 (16KG) BHN BAKU KOSMETIK, COA 009245", "output": "38249999"}, {"text_input": "What is the hs code for KSG-710 (16KG) BHN BAKU KOSMETIK, COA 012391", "output": "38249999"}, {"text_input": "What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 8035700", "output": "38249999"}, {"text_input": "What is the hs code for SORBITOL SOLUTION 70PCT CRYSTALLIZING (BHN BAKU OBAT) COA 2021P548", "output": "29054400"}, {"text_input": "What is the hs code for CLOTRIMAZOLE MICRONIZED (BHN BAKU OBAT ) COA 202101260250", "output": "29332900"}, {"text_input": "What is the hs code for MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL210201,218,204,125,215", "output": "29094900"}, {"text_input": "What is the hs code for KRONOS 1171 EX CANADA (BHN BAKU OBAT) COA 0019370", "output": "28230000"}, {"text_input": "What is the hs code for STAY-C(R)50, 20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02003026, UE02010036", "output": "29362700"}, {"text_input": "What is the hs code for MIAMI SCG(S) (BHN BAKU KOSMETIK),COA 21021355", "output": "34021190"}, {"text_input": "What is the hs code for DRUM PACKING RING WITH SEAL (DRUM KOSONG) SAMPLE NO COMMERCIAL VALUE", "output": "48192000"}, {"text_input": "What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512103", "output": "47069200"}, {"text_input": "What is the hs code for FENTACARE 2231 EF 25KG PAPER BOX (BHN BAKU KOSMETIK )COA ZH21A3101,ZH21B0201", "output": "34029019"}, {"text_input": "What is the hs code for NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 20LNC0927SQ880", "output": "27101990"}, {"text_input": "What is the hs code for VP DN03 (BHN BAKU MAKANAN), COA XW92102304", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN PREMIX FOR FERMENTED MILK (BHN BAKU MAKANAN) COA XW92102258", "output": "21069059"}, {"text_input": "What is the hs code for ACNEBUSTERS ( BHN BAKU KOSMETIK), COA 210113", "output": "38249999"}, {"text_input": "What is the hs code for BIOBENEFITY (BHN BAKU KOSMETIK) COA 210200", "output": "13021990"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 210177", "output": "13021990"}, {"text_input": "What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK), COA 210276", "output": "13021990"}, {"text_input": "What is the hs code for DOKUDAMI LIQUID B (BHN BAKU KOSMETIK), COA 202395", "output": "13021990"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK),COA 202302", "output": "38249999"}, {"text_input": "What is the hs code for CLAIR BLANCHE -II (BHN BAKU KOSMETIK),COA 210098", "output": "38249999"}, {"text_input": "What is the hs code for FLAVOSTERONE SB BHN BAKU KOSMETIK, COA 210177", "output": "13021990"}, {"text_input": "What is the hs code for SPRINGMINT (BHN BAKU KOSMETIK) COA 210575", "output": "13021990"}, {"text_input": "What is the hs code for BIOBENEFITY (BHN BAKU KOSMETIK) COA 210200", "output": "13021990"}, {"text_input": "What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 210113", "output": "38249999"}, {"text_input": "What is the hs code for AP GRIT (ROUND)G #60-80 (BHN BAKU KOSMETIK) COA 200019", "output": "38249999"}, {"text_input": "What is the hs code for IONOL (R) CP (BHN BAKU OBAT), COA 01131220", "output": "29071900"}, {"text_input": "What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 200625", "output": "29061900"}, {"text_input": "What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 210109", "output": "13021950"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 201209", "output": "13021950"}, {"text_input": "What is the hs code for TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA 210102", "output": "13021950"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM CR (BHN BAKU PEWARNA TABLET)COA D180K2O002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR (BHN BAKU PEWARNA TABLET) COA D180K78001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR (BHN BAKU PEWARNA TABLET)COA D0180K37002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR (BHN BAKU PEWARNA TABLET)COA D180K75001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR (BHN BAKU PEWARNA TABLET) COA D180K76001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM (BHN BAKU UTK PEWARNA TABLET) COA D180K4J001", "output": "39123900"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122000536, 122100700", "output": "28363000"}, {"text_input": "What is the hs code for GELOIL SC (BHN BAKU OBAT) COA 184015", "output": "28399000"}, {"text_input": "What is the hs code for GELUCIRE 48/16 PELLETS (BHN BAKU OBAT) COA 178335", "output": "28399000"}, {"text_input": "What is the hs code for LABRAFIL M 1944 CS BF (BAHAN BAKU OBAT) COA 181824", "output": "28399000"}, {"text_input": "What is the hs code for LABRAFIL M 1944 CS BF (BAHAN BAKU OBAT) COA 182720", "output": "28399000"}, {"text_input": "What is the hs code for IPRATROPIUM BROMIDE (BHN BAKU OBAT) COA 2050002970", "output": "29397900"}, {"text_input": "What is the hs code for IPRATROPIUM BROMIDE (BHN BAKU OBAT) COA 2050002970", "output": "29397900"}, {"text_input": "What is the hs code for METRONIDAZOLE BP (BHN BAKU OBAT) COA MTZ/0111788", "output": "29332900"}, {"text_input": "What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453829590", "output": "39139090"}, {"text_input": "What is the hs code for AMIKACIN SULFATE (BHN BAKU OBAT) COA VW0004A", "output": "29419000"}, {"text_input": "What is the hs code for PANTOPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT, COA APSS20006", "output": "29333990"}, {"text_input": "What is the hs code for NORIT SX SUPER E 153 (BHN BAKU KOSMETIK) COA 4978845", "output": "38021000"}, {"text_input": "What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 7690186571", "output": "38249999"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782018592M", "output": "38249999"}, {"text_input": "What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) COA 2020816", "output": "38249999"}, {"text_input": "What is the hs code for NEUTRAZEN TM (BHN BAKU KOSMETIK) COA 828018638L", "output": "38249999"}, {"text_input": "What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 7690186571", "output": "38249999"}, {"text_input": "What is the hs code for L-CARNITINE (EP GRADE)(BHN BAKU KOSMETIK)COA 10100120210112", "output": "29239000"}, {"text_input": "What is the hs code for PEONY P118 182 (BHN BAKU KOSMETIK) COA 3127497", "output": "33029000"}, {"text_input": "What is the hs code for EUXYL K 720-C08- 10KG KA (BHN BAKU KOSMETIK) COA 1565663", "output": "38249999"}, {"text_input": "What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0261346", "output": "38210090"}, {"text_input": "What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0261346", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0237310", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER INDOLE (MEDIA UTK PNGEMBANGAN MIKROORGANISME) BATCH B03C335M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0357150", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0310783", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0357150", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1014021", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1025338", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH0315905,0365874", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT(MEDIA U/PENGEMBANGKAN MIKRO ORGANISME)BATCH0310783,0338317", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0350958", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0097374", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065943", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0128384", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0329828", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0259350", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037338", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0128385", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0237250", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH B01D025M", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01D028M 90011569", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0286434", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0063472", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0220229", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0097350,0217346", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0335617", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0048055", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0365816", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0315052", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0140282", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0283842", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0280297", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9337678", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0335663", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0350025", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MED 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9112920", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MUELLER HINTON AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0294294", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MICRO ASSAY CULTURE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335689", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0343129", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PSEUDOMONAS ISOLATION AG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9129525", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RHAMNOSE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0265844", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0352348", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0352348", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BORDET GENGOU AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0272029", "output": "38210090"}, {"text_input": "What is the hs code for SYSTEM GASPAK 100 SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0268611", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1020437", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0035732", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01D025M", "output": "38210090"}, {"text_input": "What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0328272", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M-PA-C AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0351056", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0315698", "output": "38210090"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM...(MEDIA U/PENGEMBANGAN MIKRO ORGANISME)BATCH1020740,1025909", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1019596", "output": "38210090"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1025909", "output": "38210090"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTYN 65X15MM ..(MEDIA U/PENGEMBANGAN MIKRO ORGANISME)BATCH1020740,1025909", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0280975", "output": "38210090"}, {"text_input": "What is the hs code for VC CALCIUM ASCORBATE DC, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPT2101001", "output": "29362700"}, {"text_input": "What is the hs code for VC CALCIUM ASCORBATE DC, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPT2011024", "output": "29362700"}, {"text_input": "What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN ) COA MTP04621", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA MTP04521", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA EXCIPIENT 0/13 SODIUM BICARBONATE(B.BAKU SUPLEMEN)COA MTP26820,SAMPLE NOCOMM VALUE", "output": "28363000"}, {"text_input": "What is the hs code for ZINC BISGLYCINATE, POWDER,FOR USE IN FOOD SUPPLEMENTS(BHN BAKU OBAT) COA 3095364", "output": "29224900"}, {"text_input": "What is the hs code for MAGNESIUM CARBONATE, HEAVY POWDER, PH EUR.10.ED (BHN BAKU OBAT) COA 3091607", "output": "28369990"}, {"text_input": "What is the hs code for SELOHVITA C SODIUM SELENITE... (BHN BAKU OBAT) COA 3091753", "output": "28429010"}, {"text_input": "What is the hs code for GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 21T0008700", "output": "13021950"}, {"text_input": "What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA 8MT2102166", "output": "30032000"}, {"text_input": "What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512103", "output": "47069200"}, {"text_input": "What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512050, G02512103", "output": "47069200"}, {"text_input": "What is the hs code for SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA L202103-002", "output": "35040000"}, {"text_input": "What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-210202-GS", "output": "38249999"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO210101", "output": "38249999"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-C0210302", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO201002", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO201202", "output": "38249999"}, {"text_input": "What is the hs code for KIGELINE (BHN BAKU KOSMETIK) COA KA210201-B", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210101", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG543 ( BHN BAKU KOSMETIK) COA EG543-210102", "output": "38249999"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA201105", "output": "38249999"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA201105", "output": "38249999"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA201105", "output": "38249999"}, {"text_input": "What is the hs code for WITCH HAZEL ORGANIC DISTILLATE 1:10 (BHN BAKU KOSMETIK) COA HAVD201113-BIO", "output": "38249999"}, {"text_input": "What is the hs code for STARTAB DIRECTLY COMPRESSIBLE STRACH(BHN BAKU PEWARNA TABLET) COA WP837778", "output": "35051010"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH641796", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED ( BHN BAKU PEWARNA TABLET) COA SH641795", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH641850", "output": "38249999"}, {"text_input": "What is the hs code for PRAYPHOS MKP FG (BHN BAKU KOSMETIK) COA 2023301", "output": "29420000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122100700, 122100705", "output": "28363000"}, {"text_input": "What is the hs code for SALICYLIC ACID PHARMACEUTICAL (BHN BAKU KOSMETIK) COA RAS2027500", "output": "29182100"}, {"text_input": "What is the hs code for EXTRAPONE (R) GINSENG (BHN BAKU KOSMETIK) COA 10300038", "output": "13021950"}, {"text_input": "What is the hs code for EXTRAPONE (R) SEA EXTRACTS N (BHN BAKU KOSMETIK) COA 10300030", "output": "13021950"}, {"text_input": "What is the hs code for SHEA BUTTER REFINED (BHN BAKU KOSMETIK) COA 156042", "output": "15159011"}, {"text_input": "What is the hs code for PRAYPHOS DKP FG 25KG BG (BHN BAKU KOSMETIK) COA 2101932", "output": "28352400"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE ,25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ01016100,UQ01016101", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT20100046", "output": "29362600"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02008093", "output": "32041900"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL02101679", "output": "29362700"}, {"text_input": "What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT20120057,UT21010002,UT21010003", "output": "29362500"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT20100117", "output": "29362800"}, {"text_input": "What is the hs code for AMBROXOL HYDROCHLORIDE POWDER (BHN BAKU OBAT) COA AHM/21012", "output": "29221990"}, {"text_input": "What is the hs code for GLIMEPIRIDE USP (BHN BAKU OBAT) COA GLI/21002", "output": "29359000"}, {"text_input": "What is the hs code for FERROUS FUMARATE (BHN BAKU OBAT) COA.2021/69", "output": "29171900"}, {"text_input": "What is the hs code for CEFADROXIL MONOHYDRATE POWDER (PURIDROX COMPACTED) BHN BAKU OBAT, COA B340241,B340240,B340244", "output": "29419000"}, {"text_input": "What is the hs code for CEFADROXIL MONOHYDRATE POWDER (PURIDROX COMPACTED) BHN BAKU OBAT, COA B340252,B340253,B340254", "output": "29419000"}, {"text_input": "What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE02002007", "output": "29362100"}, {"text_input": "What is the hs code for PX 204005 (BHN BAKU MAKANAN) COA XW92101249", "output": "21069059"}, {"text_input": "What is the hs code for PREMIX BALITA (BHN BAKU MAKANAN) COA XW92102006", "output": "21069059"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12007039", "output": "29362900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT20100290,UT20120323", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU MAKANAN) COA UE02002010, UE02002011", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT20110036", "output": "29362100"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL ACETATE, 20KG JUG (BHN BAKU SUPLEMEN) COA XH20200401", "output": "29362800"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20040030", "output": "32041900"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030076", "output": "29362200"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE02005013", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20040050", "output": "29362300"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCTBHN BAKU SUPLEMEN) COA WB20030076", "output": "29362200"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12007039", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030069", "output": "29362200"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02009412", "output": "29362800"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ00703525", "output": "29362200"}, {"text_input": "What is the hs code for DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01911652", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0220040041", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0320051770,0320051771,0320051772", "output": "29420000"}, {"text_input": "What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU SUPLEMEN) COA AVD0034088", "output": "29362500"}, {"text_input": "What is the hs code for D-PANTHENOL 75L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01909355", "output": "29362400"}, {"text_input": "What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00652698", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0820010214,215,339,340", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708200101,0708200110,0708200113,0708200114", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0520060029", "output": "29420000"}, {"text_input": "What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES2007442", "output": "29420000"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02008103", "output": "29362400"}, {"text_input": "What is the hs code for RANITIDINE HCL USP (BHN BAKU OBAT) COA RH/21/064,RH/21/065.RH/21/066", "output": "29321900"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED GRADE A)BHN BAKU OBAT,COA M533589,590,591,594,595,...", "output": "29411019"}, {"text_input": "What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0051887", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH642604", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE ( BHN BAKU PEWARNA TABLET) COA SH642339", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH642353", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH642535", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREY ( BHN BAKU PEWARNA TABLET) COA SH642533", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH640900", "output": "38249999"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113549", "output": "29339990"}, {"text_input": "What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02002806, TL02002807", "output": "29362400"}, {"text_input": "What is the hs code for STAY-C(R)50, 20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02010036", "output": "29362700"}, {"text_input": "What is the hs code for GLUCOSAMINE SULFATE 2KCL (BHN BAKU OBAT) COA JSTK210305", "output": "29329990"}, {"text_input": "What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-200705", "output": "29397900"}, {"text_input": "What is the hs code for SODIUM VALPROATE (BAHAN BAKU OBAT) COA 454854 (V6590)", "output": "29159090"}, {"text_input": "What is the hs code for VC ASCORBIC ACID DC 97PCT,25KG BAL( BAHAN BAKU SUPLEMEN)COA HPG2101008,1009,1010,2003", "output": "29362700"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA U/PENGEMBANGAN MIKRO ORGANISME)BATCH0338176,0338178", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASAMINO ACIDS TECHNICAL 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1012628", "output": "38210090"}, {"text_input": "What is the hs code for DIFCO BEEF EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0182357", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2248533", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2248533", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0265643", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0265643", "output": "38210090"}, {"text_input": "What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9296104", "output": "38210090"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE02010106", "output": "32041900"}, {"text_input": "What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU SUPLEMEN) COA UT21010003", "output": "29362500"}, {"text_input": "What is the hs code for SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202103-011", "output": "35040000"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO210302", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK)COA EG543-210102", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK)COA PAG-CO201002", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO201202", "output": "38249999"}, {"text_input": "What is the hs code for ASTABIO AR10 (ASTAXANTHIN OIL 10PCT) BHN BAKU OBAT, COA.2012091", "output": "32030010"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB20090234", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB21020738", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E ACETATE 950NS (BHN BAKU SUPLEMEN) COA WB21020738", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB20120277", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB21020738", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB21020738", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB20090239", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB21020738", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB20120278", "output": "29362100"}, {"text_input": "What is the hs code for SODIUM FEREDETATE, POWDER, BP2021 (BHN BAKU OBAT) COA 3082860-1", "output": "29224900"}, {"text_input": "What is the hs code for POTASSIUM L-ASPARTATE 0.5-HYDRATE (BHN BAKU OBAT) COA 3097106", "output": "29224900"}, {"text_input": "What is the hs code for TRICALCIUM CITRATE 4-HYDRATE (BHN BAKU OBAT) COA 3097610", "output": "29181590"}, {"text_input": "What is the hs code for ZINC SULFATE 7-HYDRATE,CRYST,PH EUR.10.ED (BHN BAKU OBAT) COA 3095383", "output": "28332920"}, {"text_input": "What is the hs code for ZINC SULFATE 1-HYDRATE, POWDER,USP 43 (BHN BAKU OBAT) COA 3095123", "output": "28332920"}, {"text_input": "What is the hs code for MAGNESIUM CARBONATE, HEAVY (BHN BAKU OBAT) COA 3091896", "output": "28369990"}, {"text_input": "What is the hs code for CALCIUM ACETATE POWDER,PURITY ACC TO E263 (BHN BAKU OBAT) COA 3092122", "output": "29152910"}, {"text_input": "What is the hs code for FLUOROMETHOLONE MICRONISED USP BP JP (BHN BAKU OBAT) COA 2001454818,2001454818", "output": "29372200"}, {"text_input": "What is the hs code for SUNSIL-TIN50 (BHN BAKU KOSMETIK) COA 201126042", "output": "38249999"}, {"text_input": "What is the hs code for SERASENSE SF CM5 (BAHAN BAKU KOSMETIK) COA PA10302036,PA10302044,PA10302046", "output": "29319049"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SAC", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA SAH", "output": "38249999"}, {"text_input": "What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP836905", "output": "39059990"}, {"text_input": "What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP834328", "output": "39059990"}, {"text_input": "What is the hs code for FD&C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP831236:BA3424", "output": "32151900"}, {"text_input": "What is the hs code for D & C YELLOW #10 AL 15PCT-20PCT (BHN BAKU PEWARNA TABLET) COA WP831857:BA3854", "output": "32151900"}, {"text_input": "What is the hs code for FD & C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP831242:BA3659", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY ORANGE (BHN BAKU PEWARNA TABLET) COA GA686695", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II GREEN (BHN BAKU PEWARNA TABLET) COA SH640572", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II PINK (BHN BAKU PEWARNA TABLET) COA SH640500", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH640497", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY YELLOW (BHN BAKU PEWARNA TABLET) COA SH640546", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH640504", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH641024", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH641025", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH641358", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH639147", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH640499", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH640485", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH640490", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB MAROON (BHN BAKU PEWARNA TABLET) COA SH640488", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH642194", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH642195", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH640503", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH640487", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH640652", "output": "39061090"}, {"text_input": "What is the hs code for AMBROXOL HYDROCHLORIDE EP (BHN BAKU OBAT) COA CEPABX 004 H 20", "output": "29221990"}, {"text_input": "What is the hs code for ISONIAZID USP (BHN BAKU OBAT) COA21025/INH", "output": "29333910"}, {"text_input": "What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2020101003", "output": "21012020"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA006214", "output": "28363000"}, {"text_input": "What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED (BHN BAKU UTK PAKAN TERNAK) COA ROA1021", "output": "28363000"}, {"text_input": "What is the hs code for NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 19LNC1010SQ638", "output": "27101990"}, {"text_input": "What is the hs code for MILD TALCUM MOD1 FM2 (BHN BAKU KOSMETIK) COA 10300225", "output": "13021950"}, {"text_input": "What is the hs code for BARCROFT TM AL HYD GEL VISCO-9 USP (BHN BAKU OBAT) COA 102102002", "output": "28183000"}, {"text_input": "What is the hs code for CATECHINS TEAVIGO 1KG (BHN BAKU KOSMETIK), COA 101191", "output": "21012020"}, {"text_input": "What is the hs code for CATECHINS TEAVIGO (BHN BAKU KOSMETIK) COA 101191", "output": "21012020"}, {"text_input": "What is the hs code for CATECHINS TEAVIGO (BHN BAKU KOSMETIK) COA 101191", "output": "21012020"}, {"text_input": "What is the hs code for GINKGO LEAVES EXTRACT (BHN BAKU KOSMETIK) COA 21030187", "output": "13021950"}, {"text_input": "What is the hs code for GREEN TEA FAIRTRADE DISTILLATE (BHN BAKU KOSMETIK) COA 21010286", "output": "38249999"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 100KG FIT (BHN BAKU SUPLEMEN) COA WB21019065", "output": "29362700"}, {"text_input": "What is the hs code for GREEN TEA DRY DEC.EX./PHOSPHOL (BHN BAKU SUPLEMEN) COA 19S0269701", "output": "13021950"}, {"text_input": "What is the hs code for P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 32347/M1", "output": "13021990"}, {"text_input": "What is the hs code for CENTELLA ASIATICA/PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 20S0317200", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 20S0203200", "output": "38249999"}, {"text_input": "What is the hs code for SERENOA REPENS PURIFIED EXT (BHN BAKU SUPLEMEN) COA 20S0245600", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 20S0203200", "output": "38249999"}, {"text_input": "What is the hs code for P.GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 20S0004000", "output": "13021990"}, {"text_input": "What is the hs code for SERENOA REPENS PURIFIED EXT(BHN BAKU SUPLEMEN) COA 20S0245600", "output": "38249999"}, {"text_input": "What is the hs code for KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 211120", "output": "25070000"}, {"text_input": "What is the hs code for IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S366/20, S61/21", "output": "38029090"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK COA LB040121", "output": "39123900"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B291220", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB040121", "output": "39123900"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B291220", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL (BHN BAKU UTK PEWARNA TABLET) COA D011K1QL02", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL (BHN BAKU UTK PEWARNA TABLET) COA D180KCT003", "output": "39123900"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20210305", "output": "17029019"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP21034451, XP21034452", "output": "29211900"}, {"text_input": "What is the hs code for TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA R7043", "output": "29225090"}, {"text_input": "What is the hs code for TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA R7044", "output": "29225090"}, {"text_input": "What is the hs code for DOCUSATE SODIUM BP (BHN BAKU OBAT) COA DSW1004", "output": "29171900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20100129", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2004047", "output": "29362300"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL02008098", "output": "29362400"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030164", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT20060124", "output": "29362400"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00602917", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00502883", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00502883", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00502883,2888,2889", "output": "29362200"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2004047,UEB2005054", "output": "29362300"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL-ACETATE, 20KG JUG (BHN BAKU SUPLEMEN) COA XH20200401", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20090011", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20090017", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT20100129", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12007039", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT(BHN BAKU SUPLEMEN) COA WB20040050", "output": "29362300"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030069", "output": "29362200"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL-ACETATE ,20KG JUG (BHN BAKU SUPLEMEN) COA XH20200401, XH0200703", "output": "29362800"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030157", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT20050199", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW92102298", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20100129", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000194008", "output": "29362900"}, {"text_input": "What is the hs code for STAY-C (R) 50, 20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02010036, UE02010037", "output": "29362700"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL02008098", "output": "29362400"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE ,20KG BOX (BHN BAKU MAKANAN) COA QZ11210107", "output": "29362500"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02010422", "output": "29362800"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT20060124", "output": "29362400"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ00910748", "output": "29362300"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12007039", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12007039", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE FCC, 25KG BOX (BHN BAKU MAKANAN) COA 0000193588", "output": "29362900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE ,20KG BOX (BHN BAKU MAKANAN) COA QZ11210107", "output": "29362500"}, {"text_input": "What is the hs code for DRY VITAMINN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02010422", "output": "29362800"}, {"text_input": "What is the hs code for THE MATCHA P112 180 (BHN BAKU KOSMETIK) COA 0000050301", "output": "33029000"}, {"text_input": "What is the hs code for PLAISANCE P116808 (BHN BAKU OBAT) COA 0000050302", "output": "33029000"}, {"text_input": "What is the hs code for THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000049261", "output": "33029000"}, {"text_input": "What is the hs code for JAGUAR HP 105 SGI, 25KG CARDBOARD CARTON (BHN BAKU KOSMETIK) COA H2009167H", "output": "38249999"}, {"text_input": "What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED (BHN BAKU UTK PAKAN TERNAK) COA ROA1021", "output": "28363000"}, {"text_input": "What is the hs code for BARCROFT TM AL HYD GEL VISCO-9 USP (BHN BAKU OBAT) COA 102102002", "output": "28183000"}, {"text_input": "What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP(BHN BAKU OBAT) COA102002043,102102001", "output": "28183000"}, {"text_input": "What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M-31.0PCT (BHN BAKU OBAT) COA 102129006", "output": "28161000"}, {"text_input": "What is the hs code for DIENOGEST MICRONIZED (BHN BAKU OBAT) COA NA2936M", "output": "29362300"}, {"text_input": "What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA.MLAH0090221", "output": "29341000"}, {"text_input": "What is the hs code for SILDENAFIL CITRATE (BHN BAKU OBAT) COA SLC/03/21/001", "output": "29335990"}, {"text_input": "What is the hs code for OMEPRAZOLE SODIUM STERILE (BAHAN BAKU OBAT), COA SI/OPZ/00080321", "output": "29333990"}, {"text_input": "What is the hs code for PANTOPRAZOLE SODIUM STERILE (BHN BAKU OBAT) COA SI/PPZ/00190221", "output": "29333990"}, {"text_input": "What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC7521T", "output": "27101990"}, {"text_input": "What is the hs code for AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 155917", "output": "15159011"}, {"text_input": "What is the hs code for LEVOFLOXACIN HEMIHYDRATE USP (BHN BAKU OBAT) COA LF20100039", "output": "29349990"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS (KOSHER-PASSOVER)BHN BAKU MAKANAN, COA UJ107", "output": "29181400"}, {"text_input": "What is the hs code for TRISODIUMCITRATE DIHYDRATE FINE GRANULAR (BHN BAKU MAKANAN), COA UJ104, UJ105", "output": "29181400"}, {"text_input": "What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET), COA DT713232", "output": "32151900"}, {"text_input": "What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET), COA DT713233", "output": "32151900"}, {"text_input": "What is the hs code for OPALUX MAROON (BHN BAKU PEWARNA TABLET) COA DT713234", "output": "32151900"}, {"text_input": "What is the hs code for OPASPRAY YELLOW (BHN BAKU UTK PEWARNA TABLET) COA DT713235", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH641865", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE ( BHN BAKU PEWARNA TABLET) COA SH641983", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH641984", "output": "38249999"}, {"text_input": "What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP(BHN BAKU OBAT) COA 102002043", "output": "28183000"}, {"text_input": "What is the hs code for METHISOPRINOL (BHN BAKU OBAT) COA MTP1020082, MTP1030126", "output": "29349990"}, {"text_input": "What is the hs code for CARBAZOCHROME SODIUM SULFONATE ORAL G (BHN BAKU OBAT)COA AC10101/10304", "output": "29339990"}, {"text_input": "What is the hs code for PEG 400 (BAHAN BAKU KOSMETIK) COA.AKW0001975", "output": "39072010"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A, 20KG BA(BHN BAKU MAKANAN)COA WB20080546,20110547,110548", "output": "29362100"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95,20KG JUG (BHN BAKU MAKANAN) COA XH20200403", "output": "29362800"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95,20KG JUG (BHN BAKU MAKANAN) COA XH20200403", "output": "29362800"}, {"text_input": "What is the hs code for CYPROHEPTADINE HCL (BHN BAKU OBAT) COA CYP/11201021, CYP/01211004", "output": "29333990"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2248533", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0265643", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0281167", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASAMINO ACIDS TECHNICAL 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1046639", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0182358", "output": "38210090"}, {"text_input": "What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0216774", "output": "38210090"}, {"text_input": "What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0216774", "output": "38210090"}, {"text_input": "What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02011131", "output": "29362400"}, {"text_input": "What is the hs code for STAY-C(R)50, 20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02010037", "output": "29362700"}, {"text_input": "What is the hs code for STAY-C(R)50, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UE02010030", "output": "29362700"}, {"text_input": "What is the hs code for STAY-C(R) 50, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UE02010030,UE02002019", "output": "29362700"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0520060030", "output": "29420000"}, {"text_input": "What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000194009", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02005013", "output": "29362900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT20100286,287,327", "output": "29362800"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02005013", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL (R)HS, 20KG BOX (BHN BAKU KOSMETIK) COA HS1230620,HS1240620", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL (R)HS, 20KG BOX (BHN BAKU KOSMETIK) COA HS1240620", "output": "29420000"}, {"text_input": "What is the hs code for NIACINAMIDE PC,25KG BOX (BHN BAKU KOSMETIK) COA 0000194009", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708200114,115,116", "output": "29420000"}, {"text_input": "What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02009113", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20090125", "output": "29362900"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL02009106", "output": "29362400"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11210107,QZ11210108", "output": "29362500"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12007039", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU MAKANAN) COA UE02002011", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU MAKANAN) COA UT20060003", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030157", "output": "29362900"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20060039", "output": "32041900"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD(BHN BAKU SUPLEMEN) COA UT20060003", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT20060003", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT(BHN BAKU SUPLEMEN) COA WB20030057", "output": "29362500"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20060039", "output": "32041900"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02101623", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19120107", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT19120107", "output": "29362800"}, {"text_input": "What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED (BHN BAKU UTK PAKAN TERNAK ) COA MTP00921", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE IPH (BHN BAKU OBAT) COA RBA05621BB", "output": "28363000"}, {"text_input": "What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M-31.0PCT (BHN BAKU OBAT) COA 102129006", "output": "28161000"}, {"text_input": "What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M-31.0PCT (BHN BAKU OBAT) COA 102129006", "output": "28161000"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 210205", "output": "13021950"}, {"text_input": "What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 210109", "output": "13021950"}, {"text_input": "What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 201217", "output": "33012990"}, {"text_input": "What is the hs code for MONENDOX 200 BMP (BHN BAKU UTK PAKAN TERNAK) COA 2102251", "output": "29419000"}, {"text_input": "What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN ) COA MTP07621", "output": "28363000"}, {"text_input": "What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED (BHN BAKU UTK PAKAN TERNAK ) COA MTP01121", "output": "28363000"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40 BRIX )BAHAN BAKU KOSMETIK, COA 01/20GL4", "output": "28399000"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40 BRIX)BAHAN BAKU KOSMETIK) COA 01/20GL4,SAMPLE NO COMM VALUE", "output": "28399000"}, {"text_input": "What is the hs code for TRANSCUTOL P (BHN BAKU OBAT) COA 182962", "output": "28399000"}, {"text_input": "What is the hs code for TEFOSE 63 (BAHAN BAKU OBAT) COA 182255", "output": "28399000"}, {"text_input": "What is the hs code for TEFOSE 63 (BHN BAKU OBAT) COA 183568", "output": "28399000"}, {"text_input": "What is the hs code for TABCOAT TC WHITE (BHN BAKU PEWARNA TABLET) COA GA686229", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY SGR TRANSLUCENT (BHN BAKU PEWARNA TABLET) COA GA686455", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY SGR TRANSLUCENT (BHN BAKU PEWARNA TABLET) COA GA686455", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY SGR RED (BHN BAKU PEWARNA TABLET) COA GA686603", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY SGR RED (BHN BAKU UTK PEWARNA TABLET) COA GA686602", "output": "38249999"}, {"text_input": "What is the hs code for VC SODIUM ASCORBATE REGULAR, 25KG BAL (BAHAN BAKU MAKANAN) COA HPN2101220 ,2228,2291,3226,...", "output": "29362700"}, {"text_input": "What is the hs code for VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU MAKANAN) COA HPB2103033", "output": "29362700"}, {"text_input": "What is the hs code for VC ASCORBIC ACID REGULAR ,25KG BAL(BHN BAKU MAKANAN) COA HPB2103030", "output": "29362700"}, {"text_input": "What is the hs code for VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU MAKANAN) COA HPB2103105, HPD2103054", "output": "29362700"}, {"text_input": "What is the hs code for VC SODIUM ASCORBATE REGULAR, 25KG BAL (BAHAN BAKU MAKANAN) COA HPN2103251, HPN2103269", "output": "29362700"}, {"text_input": "What is the hs code for VC SODIUM ASCORBATE REGULAR ,25KG BAL(BHN BAKU MAKANAN) COA HPN2103258 S/D 3263", "output": "29362700"}, {"text_input": "What is the hs code for MEG-3 3020 EE P OIL,190KG MEF (BHN BAKU SUPLEMEM) COA TS00016096 -", "output": "29362500"}, {"text_input": "What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105715019", "output": "17021100"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210304", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210304", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK) COA EG209-201102", "output": "38249999"}, {"text_input": "What is the hs code for ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (BHN BAKU KOSMETIK) COA ROSD210101-BIO", "output": "38249999"}, {"text_input": "What is the hs code for WITCH HAZEL ORGANIC DISTILLATE 1:10 (BHN BAKU KOSMETIK) COA HAVD210101-BIO", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO201202", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO201202", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO210301", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210303", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210303", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210303", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210303", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210301", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SAC", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SAC", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA SBJ", "output": "38249999"}, {"text_input": "What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA SAD", "output": "38249999"}, {"text_input": "What is the hs code for LIPOID PPL-600 (BHN BAKU OBAT) COA 577200-2210229/001--003(3)", "output": "29232010"}, {"text_input": "What is the hs code for DOPAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 21100115", "output": "29222900"}, {"text_input": "What is the hs code for KETOROLAC TROMETHAMOL/TROMETHAMINE (BHN BAKU OBAT) COA 20100664", "output": "29339990"}, {"text_input": "What is the hs code for TRETINOIN ( BAHAN BAKU OBAT ) COA TRER-20201103", "output": "29362900"}, {"text_input": "What is the hs code for SCHISANDRA EXTRACT (BHN BAKU OBAT) COA SCE03-21021701", "output": "13021990"}, {"text_input": "What is the hs code for NEOMYCIN SULPHATE (BHN BAKU OBAT) COA 202103005", "output": "29419000"}, {"text_input": "What is the hs code for CHONDROITIN SULPHATE SODIUM (BHN BAKU OBAT) COA HS2103073", "output": "29362900"}, {"text_input": "What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103860221", "output": "17021100"}, {"text_input": "What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104310221", "output": "17021100"}, {"text_input": "What is the hs code for FLOWLAC (R) 100H (BHN BAKU OBAT) COA L105810921", "output": "17021100"}, {"text_input": "What is the hs code for GRANULAC (R) 70 (BHN BAKU OBAT) COA L101844820", "output": "17021100"}, {"text_input": "What is the hs code for METHOCEL E15 PREMIUM LV HYDROXYPROPYL (BHN BAKU UTK PEWARNA TABLET) COA D011K3JL02", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL (BHN BAKU UTK PEWARNA TABLET) COA D180K2O002", "output": "39123900"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 10 PREMIUM ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET)COA D184K9A021", "output": "39123900"}, {"text_input": "What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU UTK PAKAN TERNAK) COA 202100007", "output": "28183000"}, {"text_input": "What is the hs code for ECODIAR POWDER (HERACLEOTICUM)B. BAKU UTK OBAT UTK PAKAN TERNAK, COA P0118032021", "output": "33029000"}, {"text_input": "What is the hs code for DOKUDAMI LIQUID B (BHN BAKU KOSMETIK), COA 210655", "output": "13021990"}, {"text_input": "What is the hs code for DERMAVEIL (BHN BAKU KOSMETIK), COA 210101", "output": "13021990"}, {"text_input": "What is the hs code for ACNE BUSTERS (BHN BAKU KOSMETIK),COA 210113", "output": "38249999"}, {"text_input": "What is the hs code for CLAIR BLANCHE -II (BHN BAKU KOSMETIK),COA 210098", "output": "38249999"}, {"text_input": "What is the hs code for IZAYOI (BHN BAKU KOSMETIK), COA 210453", "output": "13021990"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 202302", "output": "38249999"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 210177", "output": "13021990"}, {"text_input": "What is the hs code for ROSE HIPS LIQUID B (BHN BAKU KOSMETIK) COA 210171", "output": "13021990"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122100858", "output": "28363000"}, {"text_input": "What is the hs code for IMMUNITY BISCUIT PREMIX (BHN BAKU MAKANAN), COA XW92102276", "output": "21069059"}, {"text_input": "What is the hs code for PROTIBOND TG-AK (BAHAN BAKU MAKANAN) COA AK21031102, AK21031103", "output": "21069091"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK)COA MSEEC-031210", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK)COA GSC-K-041410,GSC-K-010231", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) BHN BAKU KOSMETIK,COA CHP1210315", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND COMPAREX (BHN BAKU KOSMETIK) COA COEX-022800,COEX-020331", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND GLA-40 (BHN BAKU KOSMETIK) COA GLCP-061110", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK)COA OHA-032321", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-011411,HMVBD-020331", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 021821", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSFAC-011690", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-021531", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-BLACK PEARL POWDER (BHN BAKU KOSMETIK) COA PDEG-010221", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-011020, KFB-L-012621", "output": "38249999"}, {"text_input": "What is the hs code for SURELEASE ETHYLCELLULOSE...(BHN BAKU PEWARNA TABLET), COA IN543988", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH641224", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH641225", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH641227", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH641226", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH641666", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH640875", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH641359", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH640626", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH640872", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH641501", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH640490", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH641860", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BLUE (BHN BAKU PEWARNA TABLET) COA SH642611", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH640901", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH640702", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II PURPLE (BHN BAKU PEWARNA TABLET) COA SH640902", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH640873", "output": "38249999"}, {"text_input": "What is the hs code for MANNOGEM (R) XL OPAL SPRAY DRIED MANNITOL USP/EP (BHN BAKU OBAT) COA 122000605", "output": "29054300"}, {"text_input": "What is the hs code for EFFERSODA (R)12 (BHN BAKU OBAT) COA 122100859", "output": "28363000"}, {"text_input": "What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122100718", "output": "29054300"}, {"text_input": "What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 8035700", "output": "38249999"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX POWDER)BHN BAKU OBAT,COA M485256,M485266", "output": "29411019"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED) COA M533712,M533725,M533726", "output": "29411019"}, {"text_input": "What is the hs code for XANTHAN FFPC (BHN BAKU OBAT), COA 83360405", "output": "39139090"}, {"text_input": "What is the hs code for ASTABIO AR10 (ASTAXANTHIN OIL 10PCT)BHN BAKU OBAT, COA.2012091", "output": "32030010"}, {"text_input": "What is the hs code for ASTABIO AW1 (ASTAXANTHIN WATER SOLUBLE 1)BHN BAKU OBAT, COA 2101261", "output": "32030010"}, {"text_input": "What is the hs code for MEFENAMIC ACID POWDER (BHN BAKU OBAT) COA MA2103245 S/D MA2103254", "output": "29224900"}, {"text_input": "What is the hs code for CETIRIZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA 20030CZ6RII", "output": "29335990"}, {"text_input": "What is the hs code for VC ASCORBIC ACID DC 97PCT, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG2102002, 2003,3001,3002", "output": "29362700"}, {"text_input": "What is the hs code for FERRIC PYROPHOSPHATE,APPROX.25PCT FE (BHN BAKU MAKANAN) COA 3096453", "output": "28353990"}, {"text_input": "What is the hs code for FD&C BLUE #2/INDIGO CARMINE AL... (BHN BAKU PEWARNA TABLET) COA WP837617:BA6892", "output": "32151900"}, {"text_input": "What is the hs code for FD & C YELLOW #6/SUNSET YELLOW... (BHN BAKU PEWARNA TABLET) COA WP831241:BA3595", "output": "32151900"}, {"text_input": "What is the hs code for FD & C YELLOW #6/SUNSET YELLOW... (BHN BAKU PEWARNA TABLET) COA WP831241:BA3594", "output": "32151900"}, {"text_input": "What is the hs code for B-WHITE (BHN BAKU KOSMETIK) COA 829018830L", "output": "38249999"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782018592M", "output": "38249999"}, {"text_input": "What is the hs code for NEUTRAZEN TM (BHN BAKU KOSMETIK) COA 828019134M", "output": "38249999"}, {"text_input": "What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829018830L", "output": "38249999"}, {"text_input": "What is the hs code for LANACHRYS 2B PF (PRESERVATIVE) (BHN BAKU KOSMETIK) COA 793058829L", "output": "38249999"}, {"text_input": "What is the hs code for MAGNESIUM CHLORIDE 6-HYDRATE CRYST (BHN BAKU SUPLEMEN) COA 3085903", "output": "28273100"}, {"text_input": "What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0051950", "output": "38249999"}, {"text_input": "What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0052167", "output": "38249999"}, {"text_input": "What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK)COA 202237", "output": "13021990"}, {"text_input": "What is the hs code for DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2010022", "output": "28352510"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1021690", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1050113", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1050113", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1050022", "output": "38210090"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0220040024, SAMPLE NO COMM VALUE", "output": "29420000"}, {"text_input": "What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2108850011", "output": "29362600"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122100859 , 122100860", "output": "28363000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA L122100860", "output": "28363000"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH643281", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY YELLOW ( BHN BAKU PEWARNA TABLET) COA SH643311", "output": "38249999"}, {"text_input": "What is the hs code for BOTTLE BIGGY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1047463", "output": "38210090"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1025909", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0272801", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0322946", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283842,1005238", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0343334", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0183144", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0063472", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0282615", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1047444", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0140282", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0321060", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RHAMNOSE 25G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0182029", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B03C343M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1019596", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0286434", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1026705", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283868", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335617", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0335781", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIK MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0293248", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0365805", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0294089", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1026614", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0272801", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1005238", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0280297", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1026627", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0286355", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1007107", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1040275", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0322897", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0282615", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1047444", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0300743", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0365816", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0350031", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1042590", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9337678", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0343861", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NITRATE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1019625", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0272335", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE YPD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1020471", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01D034M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MARINE BROTH 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0272398", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BORDET GENGOU AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1026784", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1020442", "output": "38210090"}, {"text_input": "What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0365704", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1025737", "output": "38210090"}, {"text_input": "What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02D068M", "output": "38210090"}, {"text_input": "What is the hs code for INDICATOR STRIPS GASPAK DRY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0328272", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0336852", "output": "38210090"}, {"text_input": "What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU OBAT ) COA MTP07821", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE IPH (BHN BAKU OBAT) COA RBA0832100", "output": "28363000"}, {"text_input": "What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 210223062", "output": "38249999"}, {"text_input": "What is the hs code for DRY VITAMIN A PALMITATE 250 S/N-B (BHN BAKU MAKANAN) COA WB20120489, SAMPLE NO COMM VALUE", "output": "29362100"}, {"text_input": "What is the hs code for METHYLCOBALAMINE JP (BHN BAKU OBAT) COA SLL/MCI/0620004", "output": "29362600"}, {"text_input": "What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102069010", "output": "28161000"}, {"text_input": "What is the hs code for ISOLATE SOY PROTEINSSPRO-90G (BHN BAKU MAKANAN) COA 202103-040", "output": "35040000"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP21034044, XP21034045", "output": "29211900"}, {"text_input": "What is the hs code for 985-L-MENTHOL CRYSTALS INDIAN NATURAL (BHN BAKU KOSMETIK) COA NFPL-MEN-20-22/63270", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK)COA SFP-N-010231", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK),COA CLHW-022231", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-021531", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-032321", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-010231", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK), COA 031021", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) BHN BAKU KOSMETIK) COA CHP1210325", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 031021", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-021380", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-030941", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-051900", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-020711", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-010231", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND NEWAPLE (BHN BAKU KOSMETIK) COA NWPB-042890", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-022231", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-020711", "output": "38249999"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG210310, MCVG210305", "output": "29362700"}, {"text_input": "What is the hs code for TABCOAT TC WHITE (BHN BAKU PEWARNA TABLET) COA GA685115", "output": "32151900"}, {"text_input": "What is the hs code for HYDROCORTISONE ACETATE EP7/USP42 (BHN BAKU OBAT) COA NEHAC210103", "output": "29372200"}, {"text_input": "What is the hs code for DEXAMETHASONE BP2010/USP41 (BHN BAKU OBAT) COA NED210407", "output": "29372200"}, {"text_input": "What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE EP6/USP42 (BHN BAKU OBAT) COA NEDNA210309", "output": "29372200"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 3AX2103050, 3AX2103051", "output": "29181400"}, {"text_input": "What is the hs code for EXTRAPONE (R) LICORICE GW P(BHN BAKU KOSMETIK) COA 10300009", "output": "38249999"}, {"text_input": "What is the hs code for EXTRAPONE (R) GINSENG (BHN BAKU KOSMETIK) COA 10300039", "output": "38249999"}, {"text_input": "What is the hs code for EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300049", "output": "38249999"}, {"text_input": "What is the hs code for EXTRAPONE (R) CUCUMBER GW (BHN BAKU KOSMETIK) COA 10300022", "output": "38249999"}, {"text_input": "What is the hs code for NEO EXTRAPONE (R) LEMON (BHN BAKU KOSMETIK) COA 10300015", "output": "38249999"}, {"text_input": "What is the hs code for C47-051 SUNCROMA TITANIUM DIOXIDE (BHN BAKU KOSMETIK) COA 2830740100101", "output": "38249999"}, {"text_input": "What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02D043M", "output": "38210090"}, {"text_input": "What is the hs code for DROPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B02D060M", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER INDOLE (MEDIA UTK PNGEMBANGAN MIKROORGANISME) BATCH B02D043M", "output": "38210090"}, {"text_input": "What is the hs code for VIAL E COLI H ANTISERUM H7 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0212196", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1032197", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEMOGLOBIN SOL 2PCT 100ML 10EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1035231", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0037326", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0097374", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0065943", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0114639", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS GRP B FLR 1/4/5/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0205165", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0219127", "output": "38210090"}, {"text_input": "What is the hs code for VIAL E COLL O ANTISERUM O157 SEROL TEST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0094884", "output": "38210090"}, {"text_input": "What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1021723", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0328195", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL H ANTISERUM B 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0240783", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL H ANTISERUM C 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1029886", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0329828", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0336719", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0336719", "output": "38210090"}, {"text_input": "What is the hs code for ROMAN CHAMOMILLE ORGANIC DISTILLATE 1:1 (SB) (BHN BAKU KOSMETIK)COA ANND210201-BIO", "output": "38249999"}, {"text_input": "What is the hs code for ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (SB) (BHN BAKU KOSMETIK)COA ROSD210101-BIO", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK)COA CHS210101", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK)COA CEA-CO210301", "output": "38249999"}, {"text_input": "What is the hs code for SERASENSE SF CM5 (BAHAN BAKU SUPLEMEN) COA PA10315017,PA10326011,PA10326013,6025", "output": "29319049"}, {"text_input": "What is the hs code for SODIUM VALPROATE (BAHAN BAKU OBAT) COA 455286 (V6661)", "output": "29159090"}, {"text_input": "What is the hs code for 1400/1700 SUGLETS 1400/1700 (12/14 MESH) BHN BAKU PEWARNA TABLET) COA ST516178", "output": "32151900"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40 BRIX) BAHAN BAKU KOSMETIK, COA 01/20GL4", "output": "28399000"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40 BRIX) BHN BAKU KOSMETIK,COA 01/20GL4, SAMPLE NO COMM VALUE", "output": "28399000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122100705, 122100858", "output": "28363000"}, {"text_input": "What is the hs code for MIAMI SCG(S) (BHN BAKU KOSMETIK),COA 21040155", "output": "34021190"}, {"text_input": "What is the hs code for FERROUS FUMARATE,FINE POWDER (BHN BAKU MAKANAN) COA 3097618", "output": "29171900"}, {"text_input": "What is the hs code for FERROUS GLUCONATE (BHN BAKU OBAT) COA 3089082", "output": "29181600"}, {"text_input": "What is the hs code for FERROUS GLUCONATE POWDER,PH EUR 10.ED (BHN BAKU OBAT) COA 3096140", "output": "29181600"}, {"text_input": "What is the hs code for MAGNESIUM OXIDE, LIGHT POWDER BP2021(BHN BAKU OBAT) COA 1104435", "output": "25199010"}, {"text_input": "What is the hs code for FERROUS SULFATE DRIED,POWDER,USP43 (BHN BAKU OBAT) COA 3096689/3087912", "output": "28332920"}, {"text_input": "What is the hs code for CALCIUM ACETATE, POWDER, PURITY ACC.TO E263(BHN BAKU OBAT) COA 3092322", "output": "29152910"}, {"text_input": "What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA.MLAH0150321", "output": "29341000"}, {"text_input": "What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA 21100155", "output": "29391900"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 20 PREMIUM ETHYLCELLULOSE (DOW) (BHN BAKU PEWARNA TABLET) COA D184KBI021", "output": "39123900"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 20 PREMIUM ETHYLCELLULOSE (DOW) (BHN BAKU PEWARNA TABLET) COA D184K4R021", "output": "39123900"}, {"text_input": "What is the hs code for PIPERONYL BUTOXIDE (BHN BAKU UTK PAKAN TERNAK) COA 20210328", "output": "29329990"}, {"text_input": "What is the hs code for SUCRALOSE(JKSS00) BHN BAKU OBAT, COA 21031402", "output": "29321400"}, {"text_input": "What is the hs code for POVIDONE K-25 (BHN BAKU OBAT) COA PK25-210120F11", "output": "39059990"}, {"text_input": "What is the hs code for IRBESARTAN (BHN BAKU OBAT) COA C5055-20-059", "output": "29332900"}, {"text_input": "What is the hs code for CITICOLINE SODIUM (AT25KG) BHN BAKU OBAT) COA 210216", "output": "29349990"}, {"text_input": "What is the hs code for LEVOFLOXACIN HEMIHYDRATE (FREE ALKALINE)BHN BAKU OBAT, COA C008-2003107", "output": "29349990"}, {"text_input": "What is the hs code for SIMVASTATIN (BHN BAKU OBAT) COA DK40-2102104", "output": "29322090"}, {"text_input": "What is the hs code for CROSPOVIDONE XL (BHN BAKU OBAT), COA PP210121XL", "output": "39059990"}, {"text_input": "What is the hs code for SODIUM SELENITE IN CARRIER (BHN BAKU SUPLEMEN) COA 3086606", "output": "28429010"}, {"text_input": "What is the hs code for ZINC OXIDE, POWDER, PH EUR.10.ED (BHN BAKU SUPLEMEN) COA 3093480", "output": "28170010"}, {"text_input": "What is the hs code for MIRASIL DM300 000 A2 (BHN BAKU KOSMETIK) COA 2050F501XD", "output": "39100090"}, {"text_input": "What is the hs code for CITRC ACID MONOHYDRATE (CAM) GRIEB 8-80 MESH E330 (BHN BAKU KOSMETIK) COA THY2011022", "output": "29181400"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM REGULAR GRADE(BHN BAKU OBAT) COA 2103370,2103371,2103372,2103378", "output": "29331900"}, {"text_input": "What is the hs code for DOCUSATE SODIUM (BHN BAKU OBAT), COA SD0071533", "output": "29171900"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU SUPLEMEN), COA UJ111", "output": "29181400"}, {"text_input": "What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 25022021", "output": "25081000"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000194009, 0000194010", "output": "29362900"}, {"text_input": "What is the hs code for BARCROFT TM AL HYD GEL VISC0-9, USP (BHN BAKU OBAT) COA 102102007", "output": "28183000"}, {"text_input": "What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M.31.0PCT (BHN BAKU OBAT) COA 102129006,102129013", "output": "28161000"}, {"text_input": "What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 21E0801", "output": "28399000"}, {"text_input": "What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105710721", "output": "17021100"}, {"text_input": "What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB21030542, WB21030543", "output": "29362700"}, {"text_input": "What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB21030542", "output": "29362700"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SCD", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS HYDROMILK (BHN BAKU KOSMETIK) COA SDN", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA SCL", "output": "38249999"}, {"text_input": "What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA SAD", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH643377", "output": "39061090"}, {"text_input": "What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 21E0105", "output": "28399000"}, {"text_input": "What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2008070971,2108890141", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO)BHN BAKU MAKANAN, COA UT21031046, UT21031047", "output": "29362100"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1056808", "output": "38210090"}, {"text_input": "What is the hs code for FENTACARE 2231 EF 25KG PAPER BOX (BHN BAKU KOSMETIK )COA ZH21C1401, ZH21C1502", "output": "34029019"}, {"text_input": "What is the hs code for LECIGEL TM-5KG (BHN BAKU KOSMETIK) COA 2100503, 2108806", "output": "38249999"}, {"text_input": "What is the hs code for AMISOL TRIO TM -5KG (BHN BAKU KOSMETIK) COA 2103114", "output": "38249999"}, {"text_input": "What is the hs code for ECOGEL TM- 5KG (BHN BAKU KOSMETIK) COA 2105102", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM- 20KG (BHN BAKU KOSMETIK) COA 2108805", "output": "38249999"}, {"text_input": "What is the hs code for ROSALITY TM-5KG (BHN BAKU KOSMETIK) COA 2100901", "output": "38249999"}, {"text_input": "What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0220040042", "output": "29420000"}, {"text_input": "What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000194296, 0000194375", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN PREMIX 103093-A (BHN BAKU MAKANAN) COA XW92103125", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN PREMIX 103047-D (BHN BAKU MAKANAN) COA XW92103124", "output": "21069059"}, {"text_input": "What is the hs code for NIACINAMIDE FCC, 25KG BOX (BHN BAKU MAKANAN) COA 0000194012", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE BHN BAKU MAKANAN) COA UT20110206", "output": "29362400"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT20060041", "output": "32041900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11210108", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20090125", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT20100044", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ01110814", "output": "29362300"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02010448", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02010448", "output": "29362800"}, {"text_input": "What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW92103133", "output": "21069059"}, {"text_input": "What is the hs code for MINERAL PREMIX HBS08022019 (BHN BAKU MAKANAN) COA XW92103126", "output": "21069059"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE02005013", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12007039", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT(BHN BAKU SUPLEMEN) COA WB20040050", "output": "29362300"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030067", "output": "29362200"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT20110036", "output": "29362100"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT20100193", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT20090125", "output": "29362900"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL02009114", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT20090125", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ01110814", "output": "29362300"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL02009114", "output": "29362400"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00813458", "output": "29362500"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02012930", "output": "29362400"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL(BHN BAKU SUPLEMEN) COA UQ01110814", "output": "29362300"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE ,25KG BOX(BHN BAKU SUPLEMEN) COA TL02012930", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20090017, UT20120026", "output": "29362900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00813470", "output": "29362500"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2005054", "output": "29362300"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN)COA UQ00813470", "output": "29362500"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2005054, 55", "output": "29362300"}, {"text_input": "What is the hs code for VP DN03 (BHN BAKU MAKANAN) COA XW92103155", "output": "21069059"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT20040087", "output": "29362400"}, {"text_input": "What is the hs code for NIACINAMIDE FCC, 25KG BOX (BHN BAKU MAKANAN) COA 0000194012", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT20120200, UT20050199", "output": "29362100"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL02012930", "output": "29362400"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ00602914", "output": "29362200"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02010448", "output": "29362800"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT20040087", "output": "29362400"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP21033316, XP21033317", "output": "29211900"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1069992", "output": "38210090"}, {"text_input": "What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA DOC0672121", "output": "28363000"}, {"text_input": "What is the hs code for SILYMARIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 20B0079000", "output": "38249999"}, {"text_input": "What is the hs code for VALERIAN D.H.E> 0.8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 20B0124900", "output": "13021990"}, {"text_input": "What is the hs code for PASSION FLOWER D.H.E>4PCT (BAHAN BAKU SUPLEMEN) COA 20B0079600", "output": "13021990"}, {"text_input": "What is the hs code for SILYBIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0010500", "output": "38249999"}, {"text_input": "What is the hs code for VALERIAN D.H.E >0,8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 20B0124900", "output": "13021990"}, {"text_input": "What is the hs code for PASSION FLOWER D.H.E>4PCT (BHN BAKU SUPLEMEN) COA 20B0157300", "output": "13021990"}, {"text_input": "What is the hs code for NYSTATIN POWDER ROW (BHN BAKU OBAT) COA C114492", "output": "29419000"}, {"text_input": "What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000194376, 0000194377", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0520060053", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0321050277,278,279", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708200116,117,118,119", "output": "29420000"}, {"text_input": "What is the hs code for STAY-C (R) 50, 20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02011039, UE02101010", "output": "29362700"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN),COA UQ00602915", "output": "29362200"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB1906088, UEB1906089", "output": "29362300"}, {"text_input": "What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92103200, XW92103201", "output": "21069059"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE02005016", "output": "29362900"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA MTP09821", "output": "28363000"}, {"text_input": "What is the hs code for VEEGUM K 20K BAG(BHN BAKU KOSMETIK) COA 81713473", "output": "25081000"}, {"text_input": "What is the hs code for RUGENER DREINKRONEN HEILKREIDE 25K BAG (BHN BAKU KOSMETIK) COA 81713381", "output": "25090000"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2248533", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2248533", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2248533", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTONE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0314230", "output": "38210090"}, {"text_input": "What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0220040024", "output": "29420000"}, {"text_input": "What is the hs code for D-PANTHENOL 75L ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01909355", "output": "29362400"}, {"text_input": "What is the hs code for STAY-C(R) 50, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UE02010030", "output": "29362700"}, {"text_input": "What is the hs code for STAY-C (R) 50, 20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02010037", "output": "29362700"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK),COA TL02011131", "output": "29362400"}, {"text_input": "What is the hs code for BEAUPLEX (TM) 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF20164020", "output": "29420000"}, {"text_input": "What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU MAKANAN) COA XW92103205, XW92103206", "output": "29420000"}, {"text_input": "What is the hs code for LUBRIPHARM (R) SSF NF/EP/JP SODIUM STEARYL FUMARATE (B.BAKU OBAT) COA 122100855", "output": "28161000"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 4 PREMIUM (BHN BAKU PEWARNA TABLET) COA D184K7D021", "output": "39123900"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH642454", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH642454", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH641359", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH642521", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH641667", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH642519", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH642354", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB MAROON (BHN BAKU PEWARNA TABLET) COA SH642291", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH642342", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH642322", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH642341", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA SH642344", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH643538", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH641983", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GRAY (BHN BAKU PEWARNA TABLET) COA SH642292", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH642290", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH642343", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY GREEN (BHN BAKU PEWARNA TABLET) COA SH642293", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH642454", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH642792", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH642787", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH642788", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH641983", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH643538", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH643539", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH642749", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH642729", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH641819", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH642749", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH642732", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH642751", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY EZ CLEAR (BHN BAKU PEWARNA TABLET) COA SH643072", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH642752", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH642758", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH643251", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II CLEAR (BHN BAKU PEWARNA TABLET) COA SH642466", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH641948", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH641945", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH643233", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH638108", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH641819", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH642788", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH642787", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH641227", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH641226", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH641954", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH641859", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH641816", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH641018", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH641860", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH641817", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH641818", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II CLEAR (BHN BAKU PEWARNA TABLET) COA SH641854", "output": "38249999"}, {"text_input": "What is the hs code for ACRYIL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH641857", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH641856", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH641864", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH641954", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH641853", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH641815", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH642014", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH641998", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH641984", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA SH641987", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH641816", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH641983", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH641988", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH642012", "output": "38249999"}, {"text_input": "What is the hs code for PIGMENT BLEND GREEN (BHN BAKU PEWARNA TABLET) COA SH641997", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH642707", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREEN (BHN BAKU PEWARNA TABLET) COA SH642005", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH642004", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH641985", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BLUE (BHN BAKU PEWARNA TABLET) COA SH642611", "output": "38249999"}, {"text_input": "What is the hs code for LIDOCAINE BASE (BHN BAKU OBAT) COA. 197248", "output": "29242990"}, {"text_input": "What is the hs code for DROSPIRENONE MICRONIZED (BHN BAKU OBAT) COA NA3345M", "output": "29372900"}, {"text_input": "What is the hs code for ONDANSETRON HCL USP (BHN BAKU OBAT) COA 21OS001", "output": "29332900"}, {"text_input": "What is the hs code for BICAR FOOD 27/50 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA MTP09721,MTP09621", "output": "28363000"}, {"text_input": "What is the hs code for ASTABIO AR10 (ASTAXANTHIN OIL 10PCT) BHN BAKU OBAT, COA.2104021", "output": "32030010"}, {"text_input": "What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 21290005", "output": "30039000"}, {"text_input": "What is the hs code for ALLOPURINOL USP (BHN BAKU OBAT) COA 20051AY3ARIIX", "output": "29335990"}, {"text_input": "What is the hs code for FEF CETRIMIDE PH EUR (BHN BAKU KOSMETIK) COA LX0D279", "output": "38249999"}, {"text_input": "What is the hs code for ABSORAGE (BHN BAKU KOSMETIK), COA 202322", "output": "13021990"}, {"text_input": "What is the hs code for BIOBENEFITY (BHN BAKU KOSMETIK) COA 210200", "output": "13021990"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 202302", "output": "38249999"}, {"text_input": "What is the hs code for IZAYOI (BHN BAKU KOSMETIK), COA 210453", "output": "13021990"}, {"text_input": "What is the hs code for MANDARIN INCLEAR (BHN BAKU KOSMETIK), COA 210641", "output": "13021990"}, {"text_input": "What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK),COA 210386", "output": "38249999"}, {"text_input": "What is the hs code for EMALEX GWIS-320 (BHN BAKU KOSMETIK),COA 1-1048", "output": "34021310"}, {"text_input": "What is the hs code for EMALEX PEIS-10EX (BHN BAKU KOSMETIK) COA 2104-15", "output": "34021310"}, {"text_input": "What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 210276", "output": "13021990"}, {"text_input": "What is the hs code for AP GRIT (BHN BAKU KOSMETIK) COA 210617", "output": "38249999"}, {"text_input": "What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 210377", "output": "13021990"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785018790L", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785018917M", "output": "38249999"}, {"text_input": "What is the hs code for ABYSSINE TM PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) COA 702028969M", "output": "38249999"}, {"text_input": "What is the hs code for SILDENAFIL CITRATE USP (BHN BAKU OBAT) COA SLC 043 04 21", "output": "29335990"}, {"text_input": "What is the hs code for OPADRY SGR RED (BHN BAKU PEWARNA TABLET) COA GA687593", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY SGR RED (BHN BAKU PEWARNA TABLET) COA GA687592", "output": "38249999"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544001", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544011", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544007", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544006", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543617", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543615", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543313", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543614", "output": "35051010"}, {"text_input": "What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP(BHN BAKU OBAT) COA 102102007", "output": "28183000"}, {"text_input": "What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M-31.0PCT (BHN BAKU OBAT) COA 102129013", "output": "28161000"}, {"text_input": "What is the hs code for VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU MAKANAN) COA HPB2103251, HPD2103120", "output": "29362700"}, {"text_input": "What is the hs code for VC ASCORBIC ACID DC 97PCT, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG2103002, HPG2103005", "output": "29362700"}, {"text_input": "What is the hs code for VC ASCORBIC ACID REGULAR, 25KG BAL (BAHAN BAKU MAKANAN) COA HPB2103249, HPD2103115,HPD2103118", "output": "29362700"}, {"text_input": "What is the hs code for VC ASCORBIC ACID 325 MESH, 20KGBOA1PO(BAHAN BAKU SUPLEMEN)COA HPD2104043,4032,4026,4021,4015...", "output": "29362700"}, {"text_input": "What is the hs code for VC SODIUM ASCORBATE REGULAR, 25KG BAL (BHN BAKU MAKANAN)COA HPN2103508,3509,3510,4005,4006,4007", "output": "29362700"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2% COLOR (BHN BAKU SUPLEMEN) COA 20B0090900", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2% COLOR (BHN BAKU SUPLEMEN) COA 20B0176100", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2% COLOR (BHN BAKU SUPLEMEN) COA 20B0176200", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2% COLOR (BHN BAKU SUPLEMEN) COA 20B0176300", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2% COLOR (BHN BAKU SUPLEMEN) COA 20B0176400", "output": "13021990"}, {"text_input": "What is the hs code for CEFADROXIL MONOHYDRATE (PURIDROX COMPACTED) BHN BAKU OBAT, COA B340269,B340270,B340268", "output": "29419000"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543752", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543235", "output": "35051010"}, {"text_input": "What is the hs code for SELENIUM SULFIDE EP/USP (MICRONIZED) (BHN BAKU OBAT) COA SS008D21", "output": "28309010"}, {"text_input": "What is the hs code for METAMIZOL SODIUM (BHN BAKU UTK PAKAN TERNAK) COA 2104534", "output": "29331900"}, {"text_input": "What is the hs code for PREDNISONE USP42 (BHN BAKU OBAT) COA NPD210201", "output": "29372100"}, {"text_input": "What is the hs code for VIT A PALM 1.0 M+VIT D3 100'000 (BHN BAKU MAKANAN) COA UT21030115", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT21020001", "output": "32041900"}, {"text_input": "What is the hs code for FLORAGLO(R) LUTEIN 20PCT SAF, 1KG ALUF (BHN BAKU SUPLEMEN) COA UE02007035", "output": "32030010"}, {"text_input": "What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-210402", "output": "29061300"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH643478", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH643523", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH643479", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED(BHN BAKU PEWARNA TABLET) COA SH643480", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH642908", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH643481", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA SH643519", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE II WHITE(BHN BAKU PEWARNA TABLET) COA SH643377", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH643517", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH643695", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH643175", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH643819", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH643478", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH643188", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH643168", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH643538", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH643539", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH643709", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH643170", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH643171", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH643172", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH643173", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH642749", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY RED (BHN BAKU PEWARNA TABLET) COA SH643174", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH643210", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH643175", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH643201", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH643216", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY PURPLE (BHN BAKU PEWARNA TABLET) COA SH643176", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH642290", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH643178", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH643236", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH643211", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH643212", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH643213", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH641666", "output": "38249999"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122100861", "output": "28363000"}, {"text_input": "What is the hs code for CLONIDINE HCL (BHN BAKU OBAT) COA 189447", "output": "29332900"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113578", "output": "29339990"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113550", "output": "29339990"}, {"text_input": "What is the hs code for PARACETAMOL USP (BHN BAKU OBAT) COA 2110040,2110047,2150600", "output": "29242930"}, {"text_input": "What is the hs code for MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HA00291", "output": "34029099"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT21011030,UT21021031", "output": "29362100"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL02101756", "output": "29362700"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02010105", "output": "32041900"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02010105", "output": "32041900"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT20100028", "output": "32030010"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02010105, UE02010106", "output": "32041900"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ10110545", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT20100030", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02010106", "output": "32041900"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02010106", "output": "32041900"}, {"text_input": "What is the hs code for MEG-3(TM)'10'N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT21010003", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT20070098", "output": "29362100"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ01116113,6119", "output": "29362700"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02012135,136", "output": "29362400"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT20100120", "output": "29362800"}, {"text_input": "What is the hs code for ETHYL PANTHENOL ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02006812", "output": "29362400"}, {"text_input": "What is the hs code for GARCINIA CAMBOGIA 60PCT CA-K SALT - 5KGS(BHN BAKU OBAT) COA FGC2104003", "output": "13021950"}, {"text_input": "What is the hs code for EUXYL PE 9010 CN 200KG FA (BHN BAKU KOSMETIK) COA 1565304, 1566287", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010-C08- 200KG FA (BHN BAKU KOSMETIK) COA 1566749", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 900 -C08- 10KG KA (BHN BAKU KOSMETIK) COA 1563420", "output": "38249999"}, {"text_input": "What is the hs code for IONOL (R) CP (BHN BAKU OBAT), COA 01128920", "output": "29071900"}, {"text_input": "What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102123003", "output": "28161000"}, {"text_input": "What is the hs code for BARCROFT TM AL HYD GEL LV13, USP (BHN BAKU OBAT) COA 102113037", "output": "28183000"}, {"text_input": "What is the hs code for BARCROFT TM AL HYD GEL LV13, USP (BHN BAKU OBAT) SHIPMENT SAMPLE, NO COMMERCIAL VALUE", "output": "28183000"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 20 PREMIUM ETHYLCELLULOSE (DOW) (BHN BAKU PEWARNA TABLET) COA D184KB9021", "output": "39123900"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 20 PREMIUM ETHYLCELLULOSE (DOW) (BHN BAKU PEWARNA TABLET) COA D184K9M021", "output": "39123900"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 20 PREMIUM ETHYLCELLULOSE (DOW)BHN BAKU PEWARNA TABLET, COA D184L1J021", "output": "39123900"}, {"text_input": "What is the hs code for COSME-PHYTAMI LOTUS FL 5KG(BAHAN BAKU KOSMETIK) COA AM087578", "output": "13021950"}, {"text_input": "What is the hs code for METRONIDAZOLE BP (BHN BAKU OBAT) COA MTZ/1010021", "output": "29332900"}, {"text_input": "What is the hs code for NOREPINEPHRINE BITARTRATE (NORADRENALINE TARTRATE)BHN BAKU OBAT, COA 650104", "output": "29379010"}, {"text_input": "What is the hs code for STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN542460", "output": "35051010"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95, 20KG JUG (BHN BAKU MAKANAN) COA XH2020061", "output": "29362800"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95, 20KG JUG (BHN BAKU MAKANAN) COA XH2020061", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A,20KG BA (BHN BAKU MAKANAN) COA WB20110552,553,554", "output": "29362100"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT GRANULATION, 100KG FIT (BHN BAKU SUPLEMEN) COA WB21019065", "output": "29362700"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95, 20KG JUG (BHN BAKU MAKANAN) COA XH20200601", "output": "29362800"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) (BAHAN BAKU KOSMETIK) COA B-180321", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB210221", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB210221", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG230121", "output": "39123900"}, {"text_input": "What is the hs code for GREENSIL (BHN BAKU KOSMETIK) COA EG209-201102", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210303", "output": "38249999"}, {"text_input": "What is the hs code for SEABUCKTHORN HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HIR210101-B", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM201201-PGH", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK) COA EG209-201102", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO210301", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO210301", "output": "38249999"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT21020204,205,206", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT EM YELLOW (BHN BAKU SUPLEMEN) COA UT21020001", "output": "32041900"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT21010006", "output": "32041900"}, {"text_input": "What is the hs code for MEG-3(TM)'10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT21010004", "output": "29362500"}, {"text_input": "What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT21010005, UT21010006", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT20090059", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE02010107", "output": "32041900"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT21010006", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT21031043", "output": "29362100"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ10213048", "output": "29362200"}, {"text_input": "What is the hs code for MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50373", "output": "29061100"}, {"text_input": "What is the hs code for GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 21T0008700", "output": "38249999"}, {"text_input": "What is the hs code for GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 21T0008700", "output": "38249999"}, {"text_input": "What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2008803264", "output": "29362600"}, {"text_input": "What is the hs code for SORBITOL SOLUTION 70PCT CRYSTALLIZING (BHN BAKU OBAT) COA 2122P033", "output": "29054400"}, {"text_input": "What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED (BHN BAKU UTK PAKAN TERNAK) COA ROA1621", "output": "28363000"}, {"text_input": "What is the hs code for GABAPENTIN USP (BHN BAKU OBAT) COA CGBU210178", "output": "29224900"}, {"text_input": "What is the hs code for RANITIDINE HCL USP (BHN BAKU OBAT) COA RH 235 04 21, 234 04 21", "output": "29321900"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX POWDER)BHN BAKU OBAT,COA M485324,M485329", "output": "29411019"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED GRADE P) COA M597684", "output": "29411019"}, {"text_input": "What is the hs code for AMOXICILLIN TRIHYDRATE (PURIMOX COMPACTED GRADE A) BHN BAKU OBAT, COA M533870,M533881,M533869", "output": "29411019"}, {"text_input": "What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 2150588,50598,10040", "output": "29242930"}, {"text_input": "What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 19102020, 24032021", "output": "25081000"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT), COA ASG/04/120421, 150421,160421,170421,180421", "output": "29420000"}, {"text_input": "What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW MONO YRN27-03 (ALAT KESEHATAN) COA MO2760N0420", "output": "30061010"}, {"text_input": "What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW MONO YRN29-02 (ALAT KESEHATAN) COA MO2938N0420", "output": "30061010"}, {"text_input": "What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW MONO YRN29-03 (ALAT KESEHATAN) COA MO2950N0420", "output": "30061010"}, {"text_input": "What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW MONO YRN30-01(ALAT KESEHATAN) COA MO3025N0420", "output": "30061010"}, {"text_input": "What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW SCREW YRS27-03(ALAT KESEHATAN) COA SC2760N0420", "output": "30061010"}, {"text_input": "What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW SCREW YRS29-02 (ALAT KESEHATAN) COASC2938N0420", "output": "30061010"}, {"text_input": "What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW SCREW YRS29-03 (ALAT KESEHATAN)COA SC2950N0420", "output": "30061010"}, {"text_input": "What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC 6D YRPN19-84-L(AKL) COA 6D19100L0420", "output": "30061010"}, {"text_input": "What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC 6D YRPN21-70-L (AKL) COA 6D2190L0420", "output": "30061010"}, {"text_input": "What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW DC DUAL ARM YRDN-FE-CI-01(AKL)COA DA21300N0420", "output": "30061010"}, {"text_input": "What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW DC DUAL ARM YRDN-FE-CI-02(AKL)COA DA21420N0420", "output": "30061010"}, {"text_input": "What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC ULTRA+ YRPN25-113, COA UP2560N0420", "output": "30061010"}, {"text_input": "What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC ULTRA+ YRPN25-115,COA UP2590N0420", "output": "30061010"}, {"text_input": "What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW MC HEART LIFTING YRPN19-126-W,COA HL19100U0420", "output": "30061010"}, {"text_input": "What is the hs code for STERILA POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW MC HEART LIFTING YRPN19-126-L,COA HL19100L0420", "output": "30061010"}, {"text_input": "What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC HI RHINO YRPN19-103-L, COA HR1938L0420", "output": "30061010"}, {"text_input": "What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC HI RHINO YRPN19-105L, COA HR1960L0420", "output": "30061010"}, {"text_input": "What is the hs code for OCTENINDINE DIHYDROCHLORIDE (BHN BAKU KOSMETIK) COA OTD-00010121", "output": "29420000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK)COA CLHW-030941", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK),COA GTB-082900", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-040641", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-032321", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-010231", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-050231", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-021531", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND JEJU TANGERINE EXTRACT (BHN BAKU KOSMETIK) COA GTUP-T-021910", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-012621,KFB-L-022241", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER(BHN BAKU KOSMETIK) COA MUP-021380", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-050231", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-020431", "output": "38249999"}, {"text_input": "What is the hs code for KF-56A (18KG) BHN BAKU KOSMETIK, COA 103008", "output": "38249999"}, {"text_input": "What is the hs code for KF-6028 (16KG) BHN BAKU KOSMETIK, COA 102253", "output": "38249999"}, {"text_input": "What is the hs code for KSP-100 (10KG) BHN BAKU KOSMETIK, COA 012843", "output": "38249999"}, {"text_input": "What is the hs code for VITAMIN PREMIX MENGNIU UHT MILK (BHN BAKU MAKANAN), COA XW92104270", "output": "21069059"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 2AX2104053", "output": "29181400"}, {"text_input": "What is the hs code for LEVOFLOXACIN HEMIHYDRATE (BHN BAKU OBAT) COA DK21-2104174", "output": "29349990"}, {"text_input": "What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA 2101402124", "output": "29419000"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH644311", "output": "38249999"}, {"text_input": "What is the hs code for ISONIAZID USP (BHN BAKU OBAT) COA 21031/INH,21032/INH,21045/INH...", "output": "29333910"}, {"text_input": "What is the hs code for NOREPINEPHRINE BITARTRATE (NORADRENALINE TARTRATE)BHN BAKU OBAT, COA 650104", "output": "29379010"}, {"text_input": "What is the hs code for DULSE PHYTELENE EG745 (BHN BAKU KOSMETIK) COA EG745-210302-GS-B", "output": "38249999"}, {"text_input": "What is the hs code for ROSEMARY OILY EXTRACT (BHN BAKU KOSMETIK) COA ROO210101-H", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX ANTI PESPIRANT (BHN BAKU KOSMETIK) COA ANTS200903", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210101", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210101", "output": "38249999"}, {"text_input": "What is the hs code for HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIE191102", "output": "38249999"}, {"text_input": "What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-210202-GS", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-201102", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210303", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210304", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210304", "output": "38249999"}, {"text_input": "What is the hs code for SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202104-042", "output": "35040000"}, {"text_input": "What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512116", "output": "47069200"}, {"text_input": "What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW92103407", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G(BHN BAKU MAKANAN) COA UT20090126", "output": "29362900"}, {"text_input": "What is the hs code for D-PANTHENOL ,20KG PAIL PE(BHN BAKU MAKANAN) COA TL02009114", "output": "29362400"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12102024", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2005055,UEB2005063", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) BHN BAKU SUPLEMEN, COA UT21010203", "output": "29362100"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL02009114", "output": "29362400"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030054", "output": "29362500"}, {"text_input": "What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92103202", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20090126", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT21010203", "output": "29362100"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM REGULAR GRADE(BHN BAKU OBAT) COA 2103378,3310,4458,4487,4534", "output": "29331900"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB21010283", "output": "29362100"}, {"text_input": "What is the hs code for IMERCARE DOLCE (BHN BAKU KOSMETIK) COA S344/19", "output": "38029090"}, {"text_input": "What is the hs code for IMERCARE 11T (BHN BAKU KOSMETIK) COA S336/20, S50/21", "output": "38029090"}, {"text_input": "What is the hs code for IMERCARE (R) VELLUTO (BHN BAKU KOSMETIK) COA S294/19", "output": "38029090"}, {"text_input": "What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 270121,091020,161020,130121,141020,150121", "output": "38029090"}, {"text_input": "What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 00318, 00319,00325,00331,00402,00415", "output": "38029090"}, {"text_input": "What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC19321T", "output": "27101990"}, {"text_input": "What is the hs code for EUXYL K 100-C08-10KG KA 10KG KA (BHN BAKU KOSMETIK) COA 1565217", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 120 -CO8- 10KG KA (BHN BAKU KOSMETIK) COA 1564902", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 940-C08- 10KG KA (BHN BAKU KOSMETIK) COA 1560341", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010-C08-10KG KA (BHN BAKU KOSMETIK) COA 1566741", "output": "38249999"}, {"text_input": "What is the hs code for SENSIDIN DO-C08-10 KG KA (BHN BAKU KOSMETIK) COA 1561276", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 10-C08-10KG KA (BHN BAKU KOSMETIK) COA 1566737", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50-C07- 10KG KA (BHN BAKU KOSMETIK) COA 1565251", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50-C07-10KG KA (BHN BAKU KOSMETIK) COA 1565251", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 720-C08- 10KG KA (BHN BAKU KOSMETIK) COA 1565775", "output": "38249999"}, {"text_input": "What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1075077", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2248533", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2248533", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2260443", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0314230", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0281167", "output": "38210090"}, {"text_input": "What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0216774", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0281167", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0281167", "output": "38210090"}, {"text_input": "What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BAHAN BAKU OBAT) COA.S-A-0100221, S-A-0200421", "output": "29334910"}, {"text_input": "What is the hs code for ARGAN OIL, 10KG PAIL PE (BHN BAKU KOSMETIK) COA AVD0034088", "output": "29362500"}, {"text_input": "What is the hs code for DL-PANTHENOL 50L ,20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02006633", "output": "29362400"}, {"text_input": "What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE0666638,VE00697476,VE00697477", "output": "29420000"}, {"text_input": "What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02002807", "output": "29362400"}, {"text_input": "What is the hs code for STAY-C (R) 50,20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02101010, UE02101011", "output": "29362700"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02010119", "output": "29362400"}, {"text_input": "What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02002807,TL02006812", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02010119", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL MAX, 25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0919030010", "output": "29420000"}, {"text_input": "What is the hs code for INOSITOL (BHN BAKU OBAT) COA 202104060, 202104061, 202104062", "output": "29061300"}, {"text_input": "What is the hs code for ACESULFAME K (BHN BAKU OBAT) COA 2104007", "output": "29349990"}, {"text_input": "What is the hs code for LISINOPRIL DIHYDRATE (BHN BAKU OBAT) COA C5170-21-004R", "output": "29339990"}, {"text_input": "What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA 8MT2104120", "output": "30032000"}, {"text_input": "What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP(BHN BAKU OBAT) COA 102102012", "output": "28183000"}, {"text_input": "What is the hs code for VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 121910046", "output": "28365010"}, {"text_input": "What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET), COA DT715593", "output": "32151900"}, {"text_input": "What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET), COA DT715591", "output": "32151900"}, {"text_input": "What is the hs code for OPACODE BLACK (BHN BAKU PEWARNA TABLET) COA DT714962", "output": "32151900"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE ,25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ10116003, UQ10116004", "output": "29362700"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02010107,UE02102010,UE02102011", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT21020053", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20100030", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT21031044,45,46", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT21010006, UT21010007", "output": "29362100"}, {"text_input": "What is the hs code for ACRYPOL 980 (20KG) BAHAN BAKU KOSMETIK, COA 11521001,11521002,11521003", "output": "39069099"}, {"text_input": "What is the hs code for FEF CETRIMIDE PH EUR (BHN BAKU KOSMETIK) COA LX0D327", "output": "38249999"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0336852", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0293259", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1067935,1102066", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0343102", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1074504", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALT EXTRACT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1081466", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1068716", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0322946", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0273380", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0335663", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0062865", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0287286", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0350960", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0272335", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE YEAST CARBON BASE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0038689", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1061373", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01D034M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0315100", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1042613", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MARINE BROTH 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1074489", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0280297", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218592", "output": "38210090"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1033932", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0286355", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1019596", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0315698", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0286434", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1026705", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1007102", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1007107", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0283759", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1040275", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0063472,1033190", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1067935", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283868", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0350026", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1047444", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0300743", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0335781", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1068134,1081518", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0343102", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0365805", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1026614", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0282579", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0293747", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0350031", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0286569", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0350990", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0322946", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1007134", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1005238,1074483", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1026627", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BUFFER PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0322897", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0282615", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0293248", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1042590", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RVS SOY BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1068885", "output": "38210090"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1025909", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0315698", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1068885", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1025115", "output": "38210090"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1033932", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02D083M", "output": "38210090"}, {"text_input": "What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2106836", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M-PA-C AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0351056", "output": "38210090"}, {"text_input": "What is the hs code for THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000050455", "output": "33029000"}, {"text_input": "What is the hs code for THE MATCHA P112 180 (BHN BAKU OBAT) COA 0000050455, 456", "output": "33029000"}, {"text_input": "What is the hs code for NECTAR DE MATCHA FEMA P114 6 (BHN BAKU KOSMETIK) COA 0000051589", "output": "33029000"}, {"text_input": "What is the hs code for L GLUTATHIONE REDUCED (BHN BAKU MAKANAN) COA B210218", "output": "29309090"}, {"text_input": "What is the hs code for PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 110920/006689", "output": "38249999"}, {"text_input": "What is the hs code for MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL210513, MCCPOL210517)", "output": "29094900"}, {"text_input": "What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP837544", "output": "39059990"}, {"text_input": "What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP837540", "output": "39059990"}, {"text_input": "What is the hs code for FD&C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP839968:BA7461", "output": "32151900"}, {"text_input": "What is the hs code for D & C YELLOW #10 AL 15PCT-20PCT (BHN BAKU PEWARNA TABLET) COA WP831857:BA3853", "output": "32151900"}, {"text_input": "What is the hs code for FD & C YELLOW #6/SUNSET YELLOW (BHN BAKU PEWARNA TABLET) COA WP839968:BA7461", "output": "32151900"}, {"text_input": "What is the hs code for FD & C BLUE #1/BRILLIANT BLUE (BHN BAKU PEWARNA TABLET) COA WP840329:BA7694", "output": "32151900"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL (BHN BAKU UTK PEWARNA TABLET) COA D011K4QL01", "output": "39123900"}, {"text_input": "What is the hs code for GELOIL SC (BHN BAKU OBAT) COA 184015", "output": "28399000"}, {"text_input": "What is the hs code for TRANSCUTOL P (BHN BAKU OBAT) COA 184290", "output": "28399000"}, {"text_input": "What is the hs code for GELUCIRE 48/16 PELLETS (BAHAN BAKU OBAT) COA 185000", "output": "28399000"}, {"text_input": "What is the hs code for MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HG34130,HG34273,HG34322", "output": "34029099"}, {"text_input": "What is the hs code for GLICLAZIDE (BHN BAKU OBAT) COA 2040001414, 2140000857", "output": "29359000"}, {"text_input": "What is the hs code for TREHALOSE (BHN BAKU MAKANAN) COA 20210429", "output": "29400000"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP21043214/XP21044670, XP21043215/XP21044671", "output": "29211900"}, {"text_input": "What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 2130037, 2150638, 2150725", "output": "29242930"}, {"text_input": "What is the hs code for MEFENAMIC ACID POWDER (BHN BAKU OBAT) COA MA2105007 S/D MA2105016", "output": "29224900"}, {"text_input": "What is the hs code for BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 21S0080501", "output": "13021990"}, {"text_input": "What is the hs code for BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 21S0080501", "output": "13021990"}, {"text_input": "What is the hs code for P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 32347/M1", "output": "13021990"}, {"text_input": "What is the hs code for GREEN TEA DRY DEC.EX/PHOSPHOL (BHN BAKU SUPLEMEN) COA 19S0269705", "output": "13021950"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH643962", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH643963", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE PURPLE (BHN BAKU PEWARNA TABLET) COA SH643973", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH643974", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH643990", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH643975", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH644001", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH643991", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH643976", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH644437", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH643992", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH644520", "output": "38249999"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA065214,064217", "output": "28363000"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA ROA063217, ROA063216,064212,059216", "output": "28363000"}, {"text_input": "What is the hs code for VC ASCORBIC ACID 325MESH, 20KG BOAIPO (BAHAN BAKU SUPLEMEN)COA HPD2104048,62,68,74,80,83,89...", "output": "29362700"}, {"text_input": "What is the hs code for VC ASCORBIC ACID DC 97PCT, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPG2104001", "output": "29362700"}, {"text_input": "What is the hs code for VIT MINERAL PREMIX FOR MATERNAL BISCUIT (BHN BAKU MAKANAN), COA XW92104279", "output": "21069059"}, {"text_input": "What is the hs code for MINERAL PREMIX MILK POWDER FOR ADULTS V2 (BHN BAKU MAKANAN) COA XW92104280", "output": "21069059"}, {"text_input": "What is the hs code for BOTTLE FOLIC AOAC MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9141510", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE FOLIC ACID ASSAY MEDIUM 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1097843", "output": "38210090"}, {"text_input": "What is the hs code for HU CD81 FITC JS-81 100TST (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0349337", "output": "38210090"}, {"text_input": "What is the hs code for HU CD63 PE H5C6 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065061", "output": "38210090"}, {"text_input": "What is the hs code for HU CD9 PERCP-CY5.5 M-L13 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1075165", "output": "38210090"}, {"text_input": "What is the hs code for HU SOLBI PTEIN CBA BUF KIT 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1019589", "output": "38210090"}, {"text_input": "What is the hs code for HU TGF BTA1 CBA FLEX SET B6 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0353298", "output": "38210090"}, {"text_input": "What is the hs code for HU IL-8 CBA FLEX SET A9 100TST (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0115228", "output": "38210090"}, {"text_input": "What is the hs code for HU G-CSF CBA FLEX SET C8 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0169301", "output": "38210090"}, {"text_input": "What is the hs code for HU ANGIOGENIN CBA FLEX SET C4 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0101829", "output": "38210090"}, {"text_input": "What is the hs code for HU VEGF CBA FLEX SET B8 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0188486", "output": "38210090"}, {"text_input": "What is the hs code for HU BASIC FGF CBA FLEX SET C5 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1055901", "output": "38210090"}, {"text_input": "What is the hs code for HU IL-10 CBA FLEX SET B7 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0136247", "output": "38210090"}, {"text_input": "What is the hs code for HU IL-6 CBA FLEX SET A7 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0234057-1", "output": "38210090"}, {"text_input": "What is the hs code for HU TH1/TH2/TH17 CBA KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0209267", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE FOLIC AOAC MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9141510", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0226415", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0128385", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1069001", "output": "38210090"}, {"text_input": "What is the hs code for VIAL ISOVILATEX ENRICHMENT 10ML 5 EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1100739", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTISERUM FACTOR 12 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0240788", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTISERUM FACTOR 9 GROUP D (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0156280", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL H ANTISERUM D 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0122003", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0128384", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0219127", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0328195", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0259332,1097818", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1014897", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0037338", "output": "38210090"}, {"text_input": "What is the hs code for VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1040296", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 107114", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1021706", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1069019", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE FOLIC ACID ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1097843", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0282558,1048171", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0097374", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065943", "output": "38210090"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122100906, 122100907", "output": "28363000"}, {"text_input": "What is the hs code for PARACETAMOL USP (BHN BAKU OBAT) COA 2130044,2130047,2150699", "output": "29242930"}, {"text_input": "What is the hs code for ETHAMBUTOL (BHN BAKU OBAT) COA N1020460,461,579,580,882 S/D886,1021148,149,150,433,434,435", "output": "29221910"}, {"text_input": "What is the hs code for KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 020221", "output": "25070000"}, {"text_input": "What is the hs code for ACNE BUSTERS (BHN BAKU KOSMETIK),COA 210386", "output": "38249999"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK),COA 210884", "output": "13021990"}, {"text_input": "What is the hs code for IZAYOI (BHN BAKU KOSMETIK), COA 210640", "output": "13021990"}, {"text_input": "What is the hs code for CHRONO CHARDY (BHN BAKU KOSMETIK) COA 210561", "output": "13021990"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 210442", "output": "38249999"}, {"text_input": "What is the hs code for DICLOFENAC SODIUM USP (BHN BAKU OBAT) COA DFS/11030108,117 S/D 123", "output": "29224900"}, {"text_input": "What is the hs code for DICLOFENAC POTASSIUM BP (BHN BAKU OBAT) COA DFK/11020072", "output": "29224900"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPLEMEN) COA UT21010007", "output": "32041900"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT21020012", "output": "32030010"}, {"text_input": "What is the hs code for FLORAGLO(R) LUTEIN 20PCT SAF,1KG ALUF (BHN BAKU SUPLEMEN) COA UE02007035", "output": "32030010"}, {"text_input": "What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT21040054", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE02104025, 4026", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT21030060", "output": "29362100"}, {"text_input": "What is the hs code for MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HA00328", "output": "34029099"}, {"text_input": "What is the hs code for LIFE'S DHA (TM) S35-O100, 5KG ALUF (BHN BAKU SUPLEMEN) COA VY00383107", "output": "29362500"}, {"text_input": "What is the hs code for BRB SILICONE OIL DM 100 EP, DRUM 200 KG ( BHN BAKU KOSMETIK) COA B089574", "output": "39100020"}, {"text_input": "What is the hs code for OPACODE WHITE (BHN BAKU PEWARNA TABLET) COA WP841862", "output": "32151900"}, {"text_input": "What is the hs code for METHOCEL A15 PREMIUM LV (BHN BAKU PEWARNA TABLET)COA D180K57021", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E5 PREMIUM LV (BHN BAKU PEWARNA TABLET) COA D011K73L01", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR (BHN BAKU PEWARNA TABLET)COA D18OKCT003", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM (BHN BAKU PEWARNA TABLET)COA D180K2Q001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM CR (BHN BAKU PEWARNA TABLET) COA D180K4K003", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM (BHN BAKU UTK PEWARNA TABLET) COA D180KCJ003", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15 PREMIUM CR (BHN BAKU PEWARNA TABLET) COA D180KCT002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E15 PREMIUM LV (BHN BAKU PEWARNA TABLET) COA D011K4RL02", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR (BHN BAKU PEWARNA TABLET) COA D180K3O001", "output": "39123900"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101851321", "output": "17021100"}, {"text_input": "What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103860721", "output": "17021100"}, {"text_input": "What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104310821", "output": "17021100"}, {"text_input": "What is the hs code for MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103150821", "output": "17021100"}, {"text_input": "What is the hs code for FLOWLAC (R) 100H (BHN BAKU OBAT) COA L105810921", "output": "17021100"}, {"text_input": "What is the hs code for GRANULAC(R) 200H (BHN BAKU OBAT) COA L105715019", "output": "17021100"}, {"text_input": "What is the hs code for LIPOID S 67 F (BHN BAKU OBAT) COA 576200-2210035/001-006 (6), 576200-2210035/007", "output": "29232010"}, {"text_input": "What is the hs code for CEFADROXIL MONOHYDRATE (PURIDROX COMPACTED) BHN BAKU OBAT, COA B334726,B334743,B334759", "output": "29419000"}, {"text_input": "What is the hs code for ROSALITY TM- 1KG (BHN BAKU KOSMETIK) COA 2110201", "output": "38249999"}, {"text_input": "What is the hs code for AMISOL TRIO TM - 5KG (BHN BAKU KOSMETIK) COA 2030514", "output": "38249999"}, {"text_input": "What is the hs code for PRO-LIPO TM NEO -5KG (BHN BAKU KOSMETIK) COA 2111902", "output": "38249999"}, {"text_input": "What is the hs code for PRO-LIPO TM NEO- 5KG (BHN BAKU KOSMETIK) COA 2109501", "output": "38249999"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 210318", "output": "13021950"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 210205", "output": "13021950"}, {"text_input": "What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 210302", "output": "13021950"}, {"text_input": "What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 210226", "output": "13021950"}, {"text_input": "What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 210215", "output": "33012990"}, {"text_input": "What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 210226, 210324", "output": "13021950"}, {"text_input": "What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 20210511", "output": "25081000"}, {"text_input": "What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 11052021", "output": "25081000"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU KOSMETIK) COA QZ11201204", "output": "29362500"}, {"text_input": "What is the hs code for DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02008637", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0321050319,320,321,322,323", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0220040045", "output": "29420000"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21020044", "output": "29362800"}, {"text_input": "What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0220040045, 61", "output": "29420000"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21020044", "output": "29362800"}, {"text_input": "What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001594056", "output": "29420000"}, {"text_input": "What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02006812", "output": "29362400"}, {"text_input": "What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES2007442, ES2008443", "output": "29420000"}, {"text_input": "What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF21004047", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001594056", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0221040010", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL (R)HS, 20KG BOX (BHN BAKU KOSMETIK) COA HS5800321", "output": "29420000"}, {"text_input": "What is the hs code for DURALAC H ,25KH BOX (BHN BAKU OBAT) COA LC 008-21-805", "output": "17021100"}, {"text_input": "What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799038785M", "output": "38249999"}, {"text_input": "What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830018825M", "output": "38249999"}, {"text_input": "What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769018735M", "output": "38249999"}, {"text_input": "What is the hs code for LANACHRYS 2B PF (BHN BAKU KOSMETIK) COA 793058829L", "output": "38249999"}, {"text_input": "What is the hs code for LANACHRYS 2B PF (BHN BAKU KOSMETIK) COA 793058976M", "output": "38249999"}, {"text_input": "What is the hs code for MINIPORYL TM (BHN BAKU KOSMETIK) COA 832018916M", "output": "38249999"}, {"text_input": "What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) COA 2020816", "output": "38249999"}, {"text_input": "What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) COA 2021116", "output": "38249999"}, {"text_input": "What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769018914M", "output": "38249999"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782018592M", "output": "38249999"}, {"text_input": "What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799038785M", "output": "38249999"}, {"text_input": "What is the hs code for GREYVERSE TM (BHN BAKU KOSMETIK) COA 833018113L", "output": "38249999"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP21054003/XP21054005, XP21054004/XP21054006", "output": "29211900"}, {"text_input": "What is the hs code for CEFADROXIL MONOHYDRATE (PURIDROX COMPACTED) BHN BAKU OBAT, COA B340278, B340279", "output": "29419000"}, {"text_input": "What is the hs code for CEFADROXIL MONOHYDRATE (PURIDROX POWDER) COA B334749", "output": "29419000"}, {"text_input": "What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN ) COA MTP12221", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA EXCIPIENT 0/13 SODIUM BICARBONATE(B.BAKU SUPLEMEN)COA MTP06621,SAMPLE NOCOMM VALUE", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (B.BAKU SUPLEMEN) COA MTP07821,SAMPLE NO COMM VALUE", "output": "28363000"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT20090059,UT21030060", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU MAKANAN) COA UT21030207", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU MAKANAN, COA UT21030207, UT21030208", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT21031052, UT21031053", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI19010015", "output": "29362900"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02102011, 2012", "output": "32041900"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02103169", "output": "29362700"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE02102011", "output": "32041900"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT21020011", "output": "32030010"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT20090059", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT21020053", "output": "29362100"}, {"text_input": "What is the hs code for CENTELLA ASIATICA EXTRACT 95PCT ( BHN BAKU KOSMETIK), COA GKP 21023 EOU", "output": "13021950"}, {"text_input": "What is the hs code for NORIT SX SUPER E 153 (BHN BAKU KOSMETIK) COA 4978845", "output": "38021000"}, {"text_input": "What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWDER FORM CATCOL C135(L) GRADE(B.BAKU KOSMETIK) COA 299/21", "output": "38249999"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20120026, UT20120027", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPLEMEN) COA UT20120027, UT20120029", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20120082", "output": "29362800"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE ,25KG BOX(BHN BAKU SUPLEMEN) COA TL02011055", "output": "29362700"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02011055, TL02011063", "output": "29362700"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02012939", "output": "29362400"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN), COA UQ01110816", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPLEMEN) COA UT20090126", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE02002011", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT20100039", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT20100006", "output": "29362900"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL02009114", "output": "29362400"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN), COA UQ00913475", "output": "29362500"}, {"text_input": "What is the hs code for CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB21020014", "output": "29362700"}, {"text_input": "What is the hs code for CALCIUM ASCORBATE, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB21020014", "output": "29362700"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ01213535", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20090126", "output": "29362900"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ00702010, UQ00702011", "output": "29362200"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D011K2JL01", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM HYDROXYPROPYL (BHN BAKU UTK PEWARNA TABLET) COA D180KCJ003", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL (BHN BAKU PEWARNA TABLET)COA D180KCP002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D180K36002", "output": "39123900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20110309,UT20120343", "output": "29362800"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ01110816,UQ10110501", "output": "29362300"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE02005016", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ10110507", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ10110501, UQ10110507", "output": "29362300"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE02005016", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN), COA UT20100006", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ10110507", "output": "29362300"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00702010", "output": "29362200"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT21020039", "output": "29362400"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL-ACETATE, 20KG JUG (BHN BAKU SUPLEMEN) COA XH20201101", "output": "29362800"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL-ACETATE, 20KG JUG (BHN BAKU SUPLEMEN) COA XH20201101", "output": "29362800"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN), COA UQ01213535", "output": "29362500"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL-ACETATE, 20KG JUG (BHN BAKU SUPLEMEN) COA XH20201101", "output": "29362800"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL-ACETATE,20KG JUG (BHN BAKU SUPLEMEN) COA XH20201101", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU MAKANAN) COA UT20120343", "output": "29362800"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11210115", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20090126, UT20100127", "output": "29362900"}, {"text_input": "What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92104205, XW92104206", "output": "21069059"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU MAKANAN) COA UT20110309", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT20100127", "output": "29362900"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL02009114", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL02009114", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT20100045", "output": "29362900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11201204", "output": "29362500"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN), COA UT20100115", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT20110309", "output": "29362800"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030067", "output": "29362200"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) BHN BAKU SUPLEMEN, COA UT21010203", "output": "29362100"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20040050", "output": "29362300"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20090065,UT20120082", "output": "29362800"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN), COA UEB2005063", "output": "29362300"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00702010", "output": "29362200"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ01110816", "output": "29362300"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00813472", "output": "29362500"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20060041", "output": "32041900"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB2003005427", "output": "29362500"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20060041", "output": "32041900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00813472", "output": "29362500"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12102024", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT21010203", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20060041", "output": "32041900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00913475", "output": "29362500"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPLEMEN) COA UT21010009", "output": "29362100"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ10110511", "output": "29362300"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02012937,939,944,952", "output": "29362400"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02012952", "output": "29362400"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE 25KG BOX (BHN BAKU SUPLEMN) COA TL02012952", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325CWS/A (BHN BAKU SUPLEMEN) COA UT21010009", "output": "29362100"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT21020039", "output": "29362400"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU MAKANAN) COA UT20120343", "output": "29362800"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ10110507", "output": "29362300"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL02012952", "output": "29362400"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL02012952", "output": "29362400"}, {"text_input": "What is the hs code for VINH WELLNESS COLLAGEN (FISH COLLAGEN PEPTIDES) BHN BAKU MAKANAN,COA 0281", "output": "35040000"}, {"text_input": "What is the hs code for DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2104001", "output": "28352510"}, {"text_input": "What is the hs code for AESTHEFILL V200 (POLYLACTIC ACID) ,COA AF210403", "output": "90189090"}, {"text_input": "What is the hs code for AESTHEFILL V200 (POLYLASTIC ACID) COA AF210403, SAMPLE NO COMM VALUE", "output": "90189090"}, {"text_input": "What is the hs code for RANITIDINE HCL USP (BHN BAKU OBAT) COA RH 302 04 21", "output": "29321900"}, {"text_input": "What is the hs code for DICLOFENAC SODIUM USP (BHN BAKU OBAT) COA DFS/11040130", "output": "29224900"}, {"text_input": "What is the hs code for METOCLOPRAMIDE HCL (BHN BAKU OBAT) COA M-2103413", "output": "29242990"}, {"text_input": "What is the hs code for SOYA LECITHIN (BHN BAKU MAKANAN) COA TY2210428-20", "output": "29232010"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA133217,ROA138212", "output": "28363000"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH644523", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH644516", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH644525", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH643475", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH644517", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH644518", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH644519", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH644520", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH644524", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH644049", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH644546", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB RED (BHN BAKU PEWARNA TABLET) COA SH644545", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH644526", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH642167", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH644522", "output": "38249999"}, {"text_input": "What is the hs code for PIGMENT BLEND GREEN (BHN BAKU PEWARNA TABLET) COA SH644527", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH644544", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH644598", "output": "38249999"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0321050325, 0321050326", "output": "29420000"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU KOSMETIK) COA QZ11201205", "output": "29362500"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0321050326,327,328", "output": "29420000"}, {"text_input": "What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000194526, 194527", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU KOSMETIK, COA UT21021018", "output": "29362100"}, {"text_input": "What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA 0519070225", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA 0519070225", "output": "29420000"}, {"text_input": "What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02006812", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL MCX, 25KG PC (BHN BAKU KOSMETIK) COA 0519070225", "output": "29420000"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02005016", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0720010029", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001594056", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL (R)HS, 20KG BOX (BHN BAKU KOSMETIK) COA HS5800321", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0821010124", "output": "29420000"}, {"text_input": "What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92104191", "output": "29420000"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA SEN", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS KR-30 (BHN BAKU KOSMETIK) COA SDE", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WK-GB (BHN BAKU KOSMETIK) COA SDF", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SCD", "output": "38249999"}, {"text_input": "What is the hs code for KF-6028 (16KG) BHN BAKU KOSMETIK, COA 103254, 103254", "output": "38249999"}, {"text_input": "What is the hs code for KSP-100 (10KG) BHN BAKU KOSMETIK, COA 101851", "output": "38249999"}, {"text_input": "What is the hs code for ARGAN VIRGIN COLD PRESSED DEODORISED ORGANIC OIL XNE112(B.BAKU KOSMETIK) COA ARHVD210503-SICBIO", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210304", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210505", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG543 (BHN BAKU KOSMETIK) COA EG543-210304", "output": "38249999"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPLEMEN) COA TL02104385", "output": "29362700"}, {"text_input": "What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ10217005", "output": "29420000"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 1AX2105029", "output": "29181400"}, {"text_input": "What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2021040501", "output": "21012020"}, {"text_input": "What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2021040501", "output": "21012020"}, {"text_input": "What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) BHN BAKU OBAT, COA 4453829622", "output": "39139090"}, {"text_input": "What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M-31.0PCT (BHN BAKU OBAT) COA 102129026", "output": "28161000"}, {"text_input": "What is the hs code for BRB SILICONE OIL DM 100 EP ( BHN BAKU KOSMETIK) COA B089574", "output": "39100020"}, {"text_input": "What is the hs code for KETOPROFEN (BHN BAKU OBAT) COA.197729", "output": "29183000"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 11520521,11540521,11560521,11610521..", "output": "29359000"}, {"text_input": "What is the hs code for ALLOPURINOL USP (BHN BAKU OBAT) COA 20100AY3ARII, 21024AY3ARII", "output": "29335990"}, {"text_input": "What is the hs code for PANTOPRAZOLE SODIUM (STERILE) BAHAN BAKU OBAT, COA SI/PPZ/00500521", "output": "29333990"}, {"text_input": "What is the hs code for OMEPRAZOLE SODIUM STERILE (BAHAN BAKU OBAT), COA SI/OPZ/00090521,00100521,00110521,00120521", "output": "29333990"}, {"text_input": "What is the hs code for LIPOID PPL-600 (BHN BAKU OBAT) COA 577200-2210229/005-006(2)", "output": "29232010"}, {"text_input": "What is the hs code for CYPROHEPTADINE HCL (BHN BAKU OBAT) COA CYP/03201003", "output": "29333990"}, {"text_input": "What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP(BHN BAKU OBAT) COA 102102012", "output": "28183000"}, {"text_input": "What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M-31.0PCT (BHN BAKU OBAT) COA 102129026", "output": "28161000"}, {"text_input": "What is the hs code for SILYBIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0010700", "output": "38249999"}, {"text_input": "What is the hs code for VALERIAN D.H.E> 0.8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 21B0032600", "output": "13021990"}, {"text_input": "What is the hs code for IVY DRY HYDR EXTR 10PCT HPLC (BAHAN BAKU SUPLEMEN) COA 20B0128900", "output": "13021990"}, {"text_input": "What is the hs code for PASSION FLOWER D.H.E 4PCT (BAHAN BAKU SUPLEMEN) COA 21B0049900", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BAHAN BAKU SUPLEMEN) COA 20B0176400", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 20B0176500", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0039000", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0039100", "output": "13021990"}, {"text_input": "What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) COA 2103116", "output": "38249999"}, {"text_input": "What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) COA 2021116", "output": "38249999"}, {"text_input": "What is the hs code for TYROSTAT TM 09 (BHN BAKU KOSMETIK) COA 784019061M", "output": "38249999"}, {"text_input": "What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 702018037K", "output": "38249999"}, {"text_input": "What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829018970M", "output": "38249999"}, {"text_input": "What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 3383001-P1K", "output": "38249999"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019143M", "output": "38249999"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708200063, SAMPLE NO COMMERCIAL VALUE", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL ZX, 0,500 KG PAIL (BHN BAKU KOSMETIK) COA 191211012,SAMPLE NO COMMERCIAL VALUE", "output": "29420000"}, {"text_input": "What is the hs code for CEFTIZOXIME SODIUM (BHN BAKU OBAT) COA A600100", "output": "29419000"}, {"text_input": "What is the hs code for CEFTAZIDIME BUFFERED (BHN BAKU OBAT) COA A200200", "output": "29419000"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0293259", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0272801", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0280297", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B02D014M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0314278", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G(MEDIA U/PENGEMBANGAN MIKRO ORGANISME)BATCH0343334,1026627", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0286434", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1007107", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1040275", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0063472,0335092", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0220229", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0335781", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1042590", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1005238", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1026705", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0322897", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335617", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0282615", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0300743", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0293248", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1068161", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0365805", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0294089", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1026614", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0282579", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0140282,0350031", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0272801", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1026627", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1040275", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1081599", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1097255", "output": "38210090"}, {"text_input": "What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2106836", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA U/PENGEMBANGAN MIKRO ORGANISME)BATCH 0336852,0365693", "output": "38210090"}, {"text_input": "What is the hs code for INDICATOR STRIPS GASPAK DRY ABAEROBIC(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1078783", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH1020444,1025115", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1081599", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0280297", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1026705", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0365805", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0220229", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0217346", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 0322897", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0365816", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0293259", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0293747", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1081535", "output": "38210090"}, {"text_input": "What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1078740", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1025737", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LEPTOSPIRA MED BASE EMJH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1097873", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA BROTH BASE FREY 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9353217", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0350031", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1068885", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1007102", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1047444", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0365716", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1081510", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MIO MEDIUM 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0091372", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 0280297", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1074496", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BIGGY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1047463", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1048209", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0343861", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MED 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9112920", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0272335", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1111035", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0294367", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PSEUDOMONAS AGAR F 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0048042", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE KF STREPTOCOCCUS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0321982", "output": "38210090"}, {"text_input": "What is the hs code for GASPAK EZ LARGE INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7358630010", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE STARCH AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0037569", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0315100", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ISP MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0063474", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ISP MEDIUM 4 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9239308", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PSEUDOMONAS ISOLATION AG 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 9129525", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1026113", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1089773", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1071350", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA U/PENGEMBANGAN MIKROORGANISME)BATCH1098990,1111790", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 1089767", "output": "38210090"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE ,25KG BOX/ALU (BHN BAKU MAKANAN MANUSIA) COA UQ10216026, UQ10216027", "output": "29362700"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN MANUSIA) COA UT21010004,UT21030025", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G(TOCO) (BHN BAKU MAKANAN MANUSIA) COA UT21031053, UT21031054", "output": "29362100"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN MANUSIA) COA UQ10216027, UQ10216028", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) BHN BAKU MAKANAN MANUSIA, COA UT21041057,58,59", "output": "29362100"}, {"text_input": "What is the hs code for SHEA BUTTHER REFINED (BHN BAKU KOSMETIK) COA 156995", "output": "15159011"}, {"text_input": "What is the hs code for AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 156497", "output": "15159011"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK)COA 042221", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK),COA BAG-021531", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-011151", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-050231", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-461710", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012711", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-030941", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND CARBAMIDE (BHN BAKU KOSMETIK) COA U210517", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-050231", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-080261", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-030941", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-030261", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-022631", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-010411,GTB-082900", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND YUZU EXTRACT (BHN BAKU KOSMETIK) COA CJUBD-010511", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-030941", "output": "38249999"}, {"text_input": "What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0349743", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2260443", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0281167", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1040254", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2316462", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2316462", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2316462", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2316462", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2316462", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2316462", "output": "38210090"}, {"text_input": "What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0022270", "output": "38210090"}, {"text_input": "What is the hs code for DIFCO YEAST EXTRAC,UF 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2183859", "output": "38210090"}, {"text_input": "What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102069010,102169004", "output": "28161000"}, {"text_input": "What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT ) COA MTP12321", "output": "28363000"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN ) COA MTP15321", "output": "28363000"}, {"text_input": "What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA 183227", "output": "28399000"}, {"text_input": "What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA 183227", "output": "28399000"}, {"text_input": "What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA 183228", "output": "28399000"}, {"text_input": "What is the hs code for OPADRY ORANGE (BHN BAKU PEWARNA TABLET) COA GA6912911", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA GA691292", "output": "38249999"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 FOOD OIL, 25KG MDR (BHN BAKU MAKANAN) COA TS00016910", "output": "29362500"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 FOOD OIL, 25KG MDR (BHN BAKU MAKANAN) COA TS00016748", "output": "29362500"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1064629", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1069040", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1048171", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0097374", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0065943", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1074476", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 0226415", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0037326", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0037326", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0097374", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065943", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1110880", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1007619", "output": "38210090"}, {"text_input": "What is the hs code for VIAL ISOVITALEX ENRICHMENT 2ML 5EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1068356", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9256006", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SHIGELLA ANTIS POLY A1 LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1035135", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTISERUM FACTOR 9 GROUP D (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0275790", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL H ANTISERUM D 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0122003", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1063164", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SHIGELLA ANTIS POLY D LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9172946", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTISERUM GRP A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0212181", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTISERUM GRP C1 FTR 6/7 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0281783", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0328195,0343796", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE B12 ASAAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1110880", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SHIGELLA ANTIS POLY A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0198678", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0037338", "output": "38210090"}, {"text_input": "What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105712021", "output": "17021100"}, {"text_input": "What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU MAKANAN) COA TL02009115", "output": "29362400"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU MAKANAN) COA UT21010022", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE,5KG PE PAIL (BHN BAKU MAKANAN) COA UT21010022", "output": "29362800"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT21010006", "output": "29362400"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU MAKANAN) COA UEB2005064", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2006072", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN), COA UEB2005064", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2006073", "output": "29362300"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL ACETATE ,20KG JUG(BHN BAKU SUPLEMEN) COA XH20201101", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE,5KG PE PAIL BHN BAKU SUPLEMEN, COA UT21010022", "output": "29362800"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20040050", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU SUPLEMEN) COA UT21010203", "output": "29362100"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN), COA WB20030067", "output": "29362200"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ01213535", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (TOCO) (BHN BAKU SUPLEMEN) COA UT21010203", "output": "29362100"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL ACETATE, 20KG JUG (BHN BAKU SUPLEMEN) COA XH20201101", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL(BHN BAKU SUPLEMEN) COA UT21010022", "output": "29362800"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPLEMEN) COA UE02005016", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030157,169", "output": "29362900"}, {"text_input": "What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL02009115", "output": "29362400"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS(BHN BAKU SUPLEMEN) COA UT20120055", "output": "32041900"}, {"text_input": "What is the hs code for D-PANTHENOL ,20KG PAIL ( BHN BAKU SUPLEMEN), COA TL02011128", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL ,20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL02011128", "output": "29362400"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2006073, UEB2006074", "output": "29362300"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00802045, UQ00802046", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00802046", "output": "29362200"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT(BHN BAKU SUPLEMEN) COA WB20040050", "output": "29362300"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPLEMEN) COA WB20030067", "output": "29362200"}, {"text_input": "What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92105045", "output": "21069059"}, {"text_input": "What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92105030, XW92105031", "output": "21069059"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT20040087", "output": "29362400"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ01113625", "output": "29362200"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02012561", "output": "29362800"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA087214,217,85213,85214", "output": "28363000"}, {"text_input": "What is the hs code for MILD TALCUM MOD1 FM2 (BHN BAKU KOSMETIK) COA 10300227", "output": "13021950"}, {"text_input": "What is the hs code for SILVERION 2400 (BHN BAKU KOSMETIK) COA 20-05294", "output": "38249999"}, {"text_input": "What is the hs code for MEG-3 (TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT21030008", "output": "29362500"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02104025", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU MAKANAN) COA UT21030060", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE02104025", "output": "32041900"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCTV CWS/S-TG (BHN BAKU SUPLEMEN) COA UT21020012", "output": "32030010"}, {"text_input": "What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT21040054", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPLEMEN) COA UE02104025", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT21040054", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT21030060", "output": "29362100"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG(BHN BAKU SUPLEMEN) COA UT21020012", "output": "32030010"}, {"text_input": "What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19060003", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT21020009", "output": "29362600"}, {"text_input": "What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT19060003", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT21030060", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPLEMEN) COA UT21020009", "output": "29362600"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02104362", "output": "29362700"}, {"text_input": "What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE02103001", "output": "29362100"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL02104385", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G(TOCO) BHN BAKU MAKANAN, COA UT21041063", "output": "29362100"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE, 25KG BOX/ALU (BHN BAKU MAKANAN) COA UQ10216039 ,6040,6041", "output": "29362700"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT21040029", "output": "29362800"}, {"text_input": "What is the hs code for CALCIUM ACETATE,POWDER,PURITY ACC (BHN BAKU SUPLEMEN) COA 3102204", "output": "29152910"}, {"text_input": "What is the hs code for METHYLCOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/122046", "output": "29362600"}, {"text_input": "What is the hs code for HYDROCORTISONE ACETATE EP7/USP42 (BHN BAKU OBAT) COA NEHAC210411", "output": "29372200"}, {"text_input": "What is the hs code for PREDNISONE USP42 (BHN BAKU OBAT) COA NPD210404,NPD210307", "output": "29372100"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122100910", "output": "28363000"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2003484579", "output": "29372900"}, {"text_input": "What is the hs code for PANTOPRAZOLE SODIUM STERILE (34PCT TO 38PCT W/W) BHN BAKU OBAT, COA APSS21001", "output": "29333990"}, {"text_input": "What is the hs code for CAFFEINE BP/EP/USP (BHN BAKU OBAT) COA 2105729,735,736,737,738,750", "output": "29393000"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE BP (BHN BAKU OBAT) COA 12010521,12030521,1205021,1060521...", "output": "29359000"}, {"text_input": "What is the hs code for EMPTY FIBER DRUMS ,FREE OF COST NO COMMERCIAL VALUE", "output": "48192000"}, {"text_input": "What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0220040056", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0220040056", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0221040010", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0520060055", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0321050323,325,328", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0321050328,329,428,429", "output": "29420000"}, {"text_input": "What is the hs code for LEMON SECRET (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 01/20GL4", "output": "28399000"}, {"text_input": "What is the hs code for LEMON SECRET (LEMON 40 BRIX) B.BAKU KOSMETIK,COA 01/20GL4,SAMPLE NO COMMERCIAL VALUE", "output": "28399000"}, {"text_input": "What is the hs code for EMULCIRE 61 WL 2659 (BHN BAKU OBAT) COA 181959", "output": "28399000"}, {"text_input": "What is the hs code for EMULCIRE 61 WL 2659 (BHN BAKU OBAT) COA 181959", "output": "28399000"}, {"text_input": "What is the hs code for ISOLATE SOY PROTEIN (BHN BAKU MAKANAN) COA SL202105-042", "output": "35040000"}, {"text_input": "What is the hs code for SODIUM SALICYLATE BP2005 (BHN BAKU KOSMETIK)COA 202006005", "output": "29182100"}, {"text_input": "What is the hs code for SENSIDIN DO CAN 10KG (BHN BAKU KOSMETIK) COA 1554435,1557007,1561276", "output": "38249999"}, {"text_input": "What is the hs code for BIOBENEFITY (BHN BAKU KOSMETIK) COA 211041", "output": "13021990"}, {"text_input": "What is the hs code for COMFREY LIQUID B (BHN BAKU KOSMETIK), COA 210890", "output": "13021950"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK), COA 210884", "output": "13021990"}, {"text_input": "What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK),COA 211238", "output": "38249999"}, {"text_input": "What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 201330", "output": "13021950"}, {"text_input": "What is the hs code for BIOBENEFITY (BHN BAKU KOSMETIK) COA 211041", "output": "13021990"}, {"text_input": "What is the hs code for SOAPNUT EXTRACT POWDER (BHN BAKU KOSMETIK) COA 211309", "output": "13021990"}, {"text_input": "What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA.21100300", "output": "29391900"}, {"text_input": "What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA 21100300", "output": "29391900"}, {"text_input": "What is the hs code for ASTABIO AR10 (ASTAXANTHIN OIL 10PCT) BHN BAKU OBAT,COA.2104021,2011101", "output": "32030010"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2260443", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0335766", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0335766", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0335766", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0335766", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0335766", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1004958", "output": "38210090"}, {"text_input": "What is the hs code for DIFCO TC YEASTOLATE UF 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2294858", "output": "38210090"}, {"text_input": "What is the hs code for DIFCO PHYTONE ULTRA TERED (UF) EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2321260", "output": "38210090"}, {"text_input": "What is the hs code for SOY PEPTONE 100 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2246454", "output": "38210090"}, {"text_input": "What is the hs code for MIRANOL ULTRA C-32 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP105354R", "output": "34029099"}, {"text_input": "What is the hs code for SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 2108370637", "output": "29322090"}, {"text_input": "What is the hs code for MOXIFLOXACIN HYDROCHLORIDE(BHN BAKU OBAT) COA MP0040421", "output": "29334990"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH645608", "output": "38249999"}, {"text_input": "What is the hs code for AQUACOAT CPD-30 CELLULOSE (BHN BAKU PEWARNA TABLET), COA 2173804237", "output": "39123900"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA082213", "output": "28363000"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB21010283", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB21020738", "output": "29362800"}, {"text_input": "What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2108890141", "output": "29362600"}, {"text_input": "What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512116", "output": "47069200"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A, 20KG BA (BHN BAKU MAKANAN) COA WB21030564,566,568", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A, 20KG BA (BHN BAKU MAKANAN) COA WB21030568,570,572", "output": "29362100"}, {"text_input": "What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02D043M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SELENITE CYSTINE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0076951", "output": "38210090"}, {"text_input": "What is the hs code for FLORAGLO(R) LUTEIN 20PCT SAF, 1KG ALUF (BHN BAKU SUPLEMEN) COA UE02007035", "output": "32030010"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG210310, MCVG210510", "output": "29362700"}, {"text_input": "What is the hs code for FEF CETRIMIDE PH EUR (BHN BAKU KOSMETIK) COA LX0D319", "output": "38249999"}, {"text_input": "What is the hs code for FEF CETRIMIDE PH EUR (BHN BAKU KOSMETIK) COA LX0D343", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210301", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210302", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210302", "output": "38249999"}, {"text_input": "What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE (BHN BAKU KOSMETIK) COA OLVH2106R2-ENBIO", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-2106R1", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210301", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM201201-PGH", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO210402", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210603", "output": "38249999"}, {"text_input": "What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA DOC1582121", "output": "28363000"}, {"text_input": "What is the hs code for FLOWER ACIDS (BHN BAKU KOSMETIK) COA HS2106R1", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH644929", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH644930", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH644955", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH644931", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH644956", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH645305", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH644932", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH644933", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH644935", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH644957", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH644936", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH644963", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH644964", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II PURPLE (BHN BAKU PEWARNA TABLET) COA SH644965", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY 200 BROWN (BHN BAKU PEWARNA TABLET) COA SH644962", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II CLEAR (BHN BAKU PEWARNA TABLET) COA SH644958", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY YELLOW (BHN BAKU PEWARNA TABLET) COA SH644937", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH645561", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH645562", "output": "38249999"}, {"text_input": "What is the hs code for ENROFLOXACIN BASE CVP2015 (BHN BAKU PAKAN TERNAK) COA 210526-5, 210527-4", "output": "29334990"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00902089", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00902089", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ00902089, UQ00902090", "output": "29362200"}, {"text_input": "What is the hs code for DL-PANTHENOL 50L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02012659", "output": "29362400"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21040124", "output": "29362800"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX(BHN BAKU KOSMETIK) COA QZ11210434", "output": "29362500"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02011128", "output": "29362400"}, {"text_input": "What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF21004047", "output": "29420000"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21040124", "output": "29362800"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT20120055", "output": "32041900"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL02011107,TL02011115", "output": "29362700"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12105003", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT20100006", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT20100006", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT21020039", "output": "29362400"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPLEMEN) COA TL02103654", "output": "29362400"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ01112120", "output": "29362200"}, {"text_input": "What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF21004047", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL HMS, 25KG PC (BHN BAKU KOSMETIK) COA 0420040039", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0821010125", "output": "29420000"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ01112120", "output": "29362200"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11210401", "output": "29362500"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU SUPLEMEN) COA TL02011128", "output": "29362400"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ01113625", "output": "29362200"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT20120055", "output": "32041900"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ01112120", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ01112120", "output": "29362200"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL02102638, TL02103654", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL 75L, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL01911370", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0221040010", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0720010029", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX ,200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0520060060", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001594056", "output": "29420000"}, {"text_input": "What is the hs code for ETHYL PANTHENOL, 20KG PAIL PE (BHN BAKU KOSMETIK) COA TL02006812", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0321050429, 30,31", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0821010125", "output": "29420000"}, {"text_input": "What is the hs code for D&C GREEN NO.5 C.I.61570 FDA CERTIFIED (BHN BAKU KOSMETIK) COA 10300036", "output": "13021950"}, {"text_input": "What is the hs code for EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300050, 10300051", "output": "13021950"}, {"text_input": "What is the hs code for KANEKA Q10 UBIDECARENONE 5KG JP (BHN BAKU KOSMETIK) COA FA01-4426", "output": "29146200"}, {"text_input": "What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA E01641UP", "output": "29053200"}, {"text_input": "What is the hs code for MIRTOGENOL (BHN BAKU SUPLEMEN) COA 21S0115800", "output": "38249999"}, {"text_input": "What is the hs code for GREEN TEA DRY DEC.EX/PHOSPHOL (BHN BAKU SUPLEMEN) COA 19S0269705", "output": "13021950"}, {"text_input": "What is the hs code for DEXAMETHASONE BP2010/USP41 (BHN BAKU OBAT) COA NED210601", "output": "29372200"}, {"text_input": "What is the hs code for MONOCALCIUM PHOSPHATE FEED GRADE GRANULE@25KG (BHN BAKU PAKAN TERNAK) COA 20210507115", "output": "28352600"}, {"text_input": "What is the hs code for OPADRY II GRAY (BHN BAKU PEWARNA TABLET) COA SH645907", "output": "38249999"}, {"text_input": "What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105712021", "output": "17021100"}, {"text_input": "What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000195039", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT20110047, UT20110048", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20120091, UT20120092", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU MAKANAN) COA UT21030084", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL (BHN BAKU SUPLEMEN) COA UT21030084", "output": "29362800"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ01213536", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI20030009", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPLEMEN) COA SI20030009", "output": "29362900"}, {"text_input": "What is the hs code for VIT MINERAL PREMIX FOR MATERNAL BISCUIT(BHN BAKU MAKANAN) COA XW92105344", "output": "21069059"}, {"text_input": "What is the hs code for METHISOPRINOL (BHN BAKU OBAT) COA MTP1050273", "output": "29349990"}, {"text_input": "What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-210521", "output": "29061300"}, {"text_input": "What is the hs code for SUPPOCIRE AM PELLETS (BHN BAKU OBAT) COA 21E1001", "output": "28399000"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP21053155/XP21054401/XP21054665, XP21053156/XP21054402/...4666", "output": "29211900"}, {"text_input": "What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA.0000075635", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA.0000075636", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H105 83PCT (BHN BAKU KOSMETIK) COA 0000075637", "output": "29309090"}, {"text_input": "What is the hs code for UBIDECARENONE (COENZYM Q10 FERMENTATIVE) BHN BAKU KOSMETIK) COA 51-2011127", "output": "29146200"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK)COA SFP-N-041251", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-041251", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND CACTUS EXTRACT (BHN BAKU KOSMETIK) COA CAB-020321", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND DERMABIOTICS HDB1196 GN (BHN BAKU KOSMETIK) COA DGN1196210611", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND GREEN TEA SEED OIL (BHN BAKU KOSMETIK)COA CSSO-051300, CSSO-011541", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-080261", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND TURMERIC ROOT EXTRACT (BHN BAKU KOSMETIK) COA WRGC-013151", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-BLACK PEARL POWDER (BHN BAKU KOSMETIK) COA PDEG-010221", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-031051,SFP-N-041251", "output": "38249999"}, {"text_input": "What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2021040501", "output": "21012020"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM REGULAR GRADE(BHN BAKU OBAT) COA 2105676,6791,6794,6795,6796,6797", "output": "29331900"}, {"text_input": "What is the hs code for AMLODIPINE BESYLATE BP/EP (BHN BAKU OBAT) COA AMB/093/05/21, AMB/094/05/21", "output": "29333990"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 1AX2106005", "output": "29181400"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 1AX2106002", "output": "29181400"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH645548", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH645455", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH645680", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH645682", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB MAROON (BHN BAKU PEWARNA TABLET) COA SH645549", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH645550", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH645551", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH645553", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH645554", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH645555", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH645556", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH645566", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH645557", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH645570", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH645571", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH645572", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH644934", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SCD", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SFE", "output": "38249999"}, {"text_input": "What is the hs code for AMITOSE HGA (BHN BAKU KOSMETIK) COA SCD", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA SFA", "output": "38249999"}, {"text_input": "What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA SCF", "output": "38249999"}, {"text_input": "What is the hs code for KF-6028 (16KG) BHN BAKU KOSMETIK, COA 106255", "output": "38249999"}, {"text_input": "What is the hs code for KSP-100 (10KG) BHN BAKU KOSMETIK, COA 104859", "output": "38249999"}, {"text_input": "What is the hs code for KF-56A (18KG) BHN BAKU KOSMETIK, COA 104020", "output": "38249999"}, {"text_input": "What is the hs code for FERROUS SULFATE,DRIED, POWDER, USP43 (BHN BAKU SUPLEMEN) COA 3090130", "output": "28332920"}, {"text_input": "What is the hs code for RANITIDINE HCL USP (BHN BAKU OBAT) COA RH 237 06 21", "output": "29321900"}, {"text_input": "What is the hs code for PREGABALIN (BHN BAKU OBAT) COA PU2611019", "output": "29224900"}, {"text_input": "What is the hs code for PIOGLITAZONE HYDROCHLORIDE (BHN BAKU OBAT) COA, PG0250321", "output": "29341000"}, {"text_input": "What is the hs code for BRB 1740,DRUM 190KG ( BHN BAKU KOSMETIK) COA B087973, B088280", "output": "39100020"}, {"text_input": "What is the hs code for GRANULAC (R) 200H (BHN BAKU SUPPLEMEN) COA L105712121", "output": "17021100"}, {"text_input": "What is the hs code for MAGNESIUM CHLORIDE 6-HYDRATE,CRYST.,USP43 (BHN BAKU KOSMETIK) COA 3092579", "output": "28273100"}, {"text_input": "What is the hs code for TABCOAT TC WHITE (BHN BAKU PEWARNA TABLET) COA GA691890", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY SGR RED (BHN BAKU PEWARNA TABLET) COA GA691894", "output": "38249999"}, {"text_input": "What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122100871", "output": "29054300"}, {"text_input": "What is the hs code for IMERSCRUB 400P AMBER (BHN BAKU KOSMETIK) COA PL19TA1601", "output": "38029090"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG210611", "output": "29362700"}, {"text_input": "What is the hs code for THE MATCHA I P001062 (BHN BAKU KOSMETIK) COA 0000052993", "output": "33029000"}, {"text_input": "What is the hs code for NECTAR DE MATCHA FEMA P114 6 (BHN BAKU KOSMETIK) COA 0000054405", "output": "33029000"}, {"text_input": "What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512116", "output": "47069200"}, {"text_input": "What is the hs code for POTASSIUM GLYCEROPHOSPHATE SOLUTION (BHN BAKU SUPLEMEN) COA 3102777", "output": "29199000"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210301", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210301", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO210402", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK) COA EG209-2106R1", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM210602-PGH", "output": "38249999"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO210302", "output": "38249999"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO210603", "output": "38249999"}, {"text_input": "What is the hs code for SODIUM SALICYLATE (BHN BAKU KOSMETIK)COA NO2104011", "output": "29182300"}, {"text_input": "What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED (BHN BAKU UTK PAKAN TERNAK) COA ROA2421", "output": "28363000"}, {"text_input": "What is the hs code for CEFADROXIL MONOHYDRATE (PURIDROX COMPACTED) BHN BAKU OBAT, COA B340289,B340300,B340304", "output": "29419000"}, {"text_input": "What is the hs code for LIPOID S 67 F(BHN BAKU OBAT) COA 576200-2210036/001-008 (8), 576200-2210036/009", "output": "29232010"}, {"text_input": "What is the hs code for SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0054100", "output": "13021950"}, {"text_input": "What is the hs code for VALERIAN D.H.E> 0.8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 21B0032600", "output": "13021990"}, {"text_input": "What is the hs code for VALERIAN D.H.E >0.8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 21B0032700", "output": "13021990"}, {"text_input": "What is the hs code for SILYMARIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 21B0071700", "output": "13021950"}, {"text_input": "What is the hs code for NABUMETONE USP (BAHAN BAKU OBAT) COA.H-0590421", "output": "29145000"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2003565686", "output": "29372900"}, {"text_input": "What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK)COA 8285400", "output": "38249999"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122100908", "output": "28363000"}, {"text_input": "What is the hs code for FERROUS GLUCONATE (BHN BAKU OBAT) COA 3100451", "output": "29181600"}, {"text_input": "What is the hs code for TRIPOTASSIUM CITRATE 1-HYDRATE, CRYST.,PH.EUR.10 ED.USP43 (BHN BAKU OBAT) COA 3100616", "output": "29181400"}, {"text_input": "What is the hs code for ZINC SULFATE 1-HYDRATE, POWDER,USP43 (BHN BAKU OBAT) COA 3102213", "output": "28332920"}, {"text_input": "What is the hs code for FERROUS SULFATE, DRIED, POWDER, USP 43(BHN BAKU OBAT) COA 3101792", "output": "28332920"}, {"text_input": "What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK),COA 2106EF0910", "output": "29224900"}, {"text_input": "What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1138784", "output": "38210090"}, {"text_input": "What is the hs code for WHEAT 100 UF EACH EA (MEDIA U/PENGEMBANGAN MIKRO ORGANISME)BATCH210118002,SAMPLE NO COMM VALUE", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2260443", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2260443", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2260443", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2316462", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1004958", "output": "38210090"}, {"text_input": "What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0022270", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0156235", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0335766", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0335766", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0335766", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0335766", "output": "38210090"}, {"text_input": "What is the hs code for SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 2108370637", "output": "29322090"}, {"text_input": "What is the hs code for DOPAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 21100302", "output": "29222900"}, {"text_input": "What is the hs code for DRY VIT.A PALMITATE TYPE 250 CWS/F (BHN BAKU SUPLEMEN) COA UT21010004,SAMPLE NO COMM VALUE", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT20110049, SAMPLE NO COMM VALUE", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UE02010440, SAMPLE NO COMM VALUE", "output": "29362800"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA QZ11200510, SAMPLE NO COMM VALUE", "output": "29362500"}, {"text_input": "What is the hs code for VC ASCORBIC ACID REGULAR (BHN BAKU SUPLEMEN) COA HPD2105066, SAMPLE NO COMM VALUE", "output": "29362700"}, {"text_input": "What is the hs code for VC ASCORBIC ACID REGULAR (BHN BAKU SUPLEMEN) COA HPD2105072 SAMPLE NO COMM VALUE", "output": "29362700"}, {"text_input": "What is the hs code for VC SODIUM ASCORBATE REGULAR (BHN BAKU SUPLEMEN) COA HPN2002010, SAMPLE NO COMM VALUE", "output": "29362700"}, {"text_input": "What is the hs code for B-CAROTENE 1PCT CWS/M (BHN BAKU SUPLEMEN) COA UT20020011, SAMPLE NO COMM VALUE", "output": "32041900"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT EMULSION RED(BHN BAKU SUPLEMEN) COA UE02104009, SAMPLE NO COMMERCIAL VALUE", "output": "32041900"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT EM YELLOW (BHN BAKU SUPLEMEN) COA UT21020001,SAMPLE NO COMMERCIAL VALUE", "output": "32041900"}, {"text_input": "What is the hs code for VIT A PALM. 1.0 MIU/G (TOCO) BHN BAKU SUPLEMEN, COA UT20020192,SAMPLE NO COMMERCIAL VALUE", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G... (BHN BAKU SUPLEMEN) COA UT20111005,SAMPLE NO COMMERCIAL VALUE", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPLEMEN) COA UT20100006,SAMPLE NO COMMERCIAL VALUE", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN B12 CRYST FOOD GRADE(BHN BAKU SUPLEMEN) COA D012004019,7046, SAMPLE NO COMMERCIAL VALUE", "output": "29362600"}, {"text_input": "What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 210429", "output": "33012990"}, {"text_input": "What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 210324", "output": "13021990"}, {"text_input": "What is the hs code for ML0975-SE0981 CUSTOM BLENDING VEGETABLES BLEND B (BHN BAKU OBAT) COA L-11513", "output": "13021950"}, {"text_input": "What is the hs code for ML0973-SE0979 CUSTOM BLENDING FRUITS BLEND B (BHN BAKU OBAT) COA L-11512", "output": "13021950"}, {"text_input": "What is the hs code for MIRANOL ULTRA C-32 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP105354R", "output": "34021990"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21040031, 32", "output": "29362100"}, {"text_input": "What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT21040002", "output": "29420000"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02104026", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT21051066,67,68", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A+D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT21040054", "output": "29362100"}, {"text_input": "What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT19060003", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPPLEMEN) COA UT21030060", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02104026", "output": "32041900"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM (BHN BAKU UTK PAKAN TERNAK) COA 2106797", "output": "29331900"}, {"text_input": "What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA2105294 S/D 5296,6201 S/D 6207", "output": "29224900"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20210619", "output": "17029019"}, {"text_input": "What is the hs code for KETOPROFEN (BHN BAKU OBAT) COA. 197748", "output": "29183000"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB21030293", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB21020738", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB20090242", "output": "29362800"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU SUPPLEMEN) COA TL02105535", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT21020009", "output": "29362600"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU SUPPLEMEN) COA TL02104446,TL02105560", "output": "29362700"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT21050041", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21040002", "output": "29362900"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE, 25KG BOX (BHN BAKU MAKANAN) COA TL02105535,5618,5646,5653", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID, 25KG BOX/ALU (BHN BAKU MAKANAN) COA TL02104446", "output": "29362700"}, {"text_input": "What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103861821", "output": "17021100"}, {"text_input": "What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104311321", "output": "17021100"}, {"text_input": "What is the hs code for FLOWLAC (R) 100H (BHN BAKU OBAT) COA L105812121", "output": "17021100"}, {"text_input": "What is the hs code for GRANULAC (R)200H (BHN BAKU OBAT) COA L105712121", "output": "17021100"}, {"text_input": "What is the hs code for OPADRY ORANGE (BHN BAKU PEWARNA TABLET) COA GA691291", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA GA691292", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY SGR RED (BHN BAKU PEWARNA TABLET) COA GA691313", "output": "38249999"}, {"text_input": "What is the hs code for XANTHAN FFPC (BHN BAKU OBAT), COA 83423001", "output": "39139090"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK),COA 211404", "output": "38249999"}, {"text_input": "What is the hs code for ROSE HIPS LIQUID B (BHN BAKU KOSMETIK),COA 210171", "output": "13021990"}, {"text_input": "What is the hs code for PIROXICAM (BAHAN BAKU OBAT ) COA PRX2021003M", "output": "29349990"}, {"text_input": "What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0220040056", "output": "29420000"}, {"text_input": "What is the hs code for NIACINAMIDE PC, 25KG BOX (BHN BAKU KOSMETIK) COA 0000195040,195042,195043,195877,195878", "output": "29362900"}, {"text_input": "What is the hs code for STAY-C(R)50, 20KG BOX/ALU (BHN BAKU KOSMETIK) COA UE02101007", "output": "29362700"}, {"text_input": "What is the hs code for BEAUPLEX (TM) VH, 5KG BAG/ALU (BHN BAKU KOSMETIK) COA UF21004047", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0821010127", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MAX, 25KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0919040013,0921020003", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0720010029", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL HMS, 25KG PC (BHN BAKU KOSMETIK) COA 0421040014", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL EHS, 25KG PC (BHN BAKU KOSMETIK) COA 0720010029", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0221040010", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL HMS, 25KG PC (BHN BAKU KOSMETIK) COA 0421040014, 0421040024", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SHIELD, 20KG BOX (BHN BAKU KOSMETIK) COA 0821010127", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340, 25KG PC (BHN BAKU KOSMETIK) COA 0221040010", "output": "29420000"}, {"text_input": "What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 24052021", "output": "25081000"}, {"text_input": "What is the hs code for DIACEREIN EP (BHN BAKU OBAT) COA DCE/40241220", "output": "29189900"}, {"text_input": "What is the hs code for OPALUX MAROON (BHN BAKU PEWARNA TABLET), COA DT717552", "output": "32151900"}, {"text_input": "What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET) COA DT717559", "output": "32151900"}, {"text_input": "What is the hs code for OPASPRAY YELLOW (BHN BAKU PEWARNA TABLET) COA DT717553", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY TF GREEN (BHN BAKU PEWARNA TABLET) COA DT717554", "output": "38249999"}, {"text_input": "What is the hs code for ANTIOXIDANT PREMIX FOR GUMMY (BHN BAKU MAKANAN) COA XW92106154", "output": "21069059"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ01110805, UQ01110806", "output": "29362300"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11210402", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPLEMEN) COA UE02101102", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20120092", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPLEMEN) COA UT20120092", "output": "29362800"}, {"text_input": "What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92106034, XW92106035", "output": "21069059"}, {"text_input": "What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92106035, XW92106036", "output": "21069059"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02006024", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02006024", "output": "29362900"}, {"text_input": "What is the hs code for DICLOFENAC POTASSIUM BP (BHN BAKU OBAT) COA DFK/11020072", "output": "29224900"}, {"text_input": "What is the hs code for DICLOFENAC SODIUM USP (BHN BAKU OBAT) COA DFS/11060212,11060213,11060214, 204,211,...", "output": "29224900"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH646736", "output": "38249999"}, {"text_input": "What is the hs code for AQUACOAT CPD-30 ETHYLCELLULOSE AQUEOUS... (BHN BAKU PEWARNA TABLET) COA 2173804237", "output": "39123900"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH646882", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH646574", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GRAY (BHN BAKU PEWARNA TABLET) COA SH646550", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK)COA SFP-N-041251", "output": "38249999"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT), COA ASG/06/070621,ASG/06/070621-1,...", "output": "29420000"}, {"text_input": "What is the hs code for CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/06/040621", "output": "39123100"}, {"text_input": "What is the hs code for CROSCARMELLOSE SODIUM USP-NF (BHN BAKU OBAT) COA ACRMC/06/090621", "output": "39129090"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE BP (BHN BAKU OBAT), COA ASGP/05/270521", "output": "29420000"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/06/040621, ASG/06/040621-1,ASG/06/050621...", "output": "29420000"}, {"text_input": "What is the hs code for SORBITOL SOLUTION 70PCT CRYSTALLIZING (BHN BAKU OBAT) COA 2122P122", "output": "29054400"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU KOSMETIK) COA 02/19GAAK", "output": "28399000"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK)COA 02/19GAAK, SAMPLE NO COMM VALUE", "output": "28399000"}, {"text_input": "What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT21050006", "output": "29420000"}, {"text_input": "What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2109291397", "output": "29362600"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LB020521", "output": "39123900"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) BHN BAKU KOSMETIK, COA B140621", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT GREEN GLOBEADS L (70-120) BHN BAKU KOSMETIK, COA LG240621", "output": "39123900"}, {"text_input": "What is the hs code for KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 260421,270421", "output": "25070000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK)COA BAG-032861", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND CACTUS EXTRACT (BHN BAKU KOSMETIK),COA CAB-020321", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND CAMELLIA JAPONICA FLOWER EXTRACT (BHN BAKU KOSMETIK) COA CJE-012320", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-010231", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-091371", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK), COA HMVBD-020331, HMVBD-030651", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND YUZU EXTRACT BHN BAKU KOSMETIK) COA CJUBD-021061", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-612120", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 062821", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND KIWI EXTRACT(BHN BAKU KOSMETIK) COA KFB-L-030261", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-091371", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-090161", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-051851", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 062821", "output": "28321000"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113557", "output": "29339990"}, {"text_input": "What is the hs code for TILAMAR (R) PDO WITH NOOVISTA#, 25KG PAIL (BHN BAKU KOSMETIK) COA PC210623", "output": "29420000"}, {"text_input": "What is the hs code for GENIVIDA (TM) TG, 1KG BAG ALU(BHN BAKU SUPLEMEN) COA UT19040001", "output": "29329990"}, {"text_input": "What is the hs code for REDIVIVO (R) LYCOPENE 10PCT CWS/S-TG(BHN BAKU SUPLEMEN) COA UT21050003", "output": "29420000"}, {"text_input": "What is the hs code for VIT A PALM 1.0M+VIT D3 100'000 (BHN BAKU MAKANAN) COA UT21030118", "output": "29362100"}, {"text_input": "What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512116", "output": "47069200"}, {"text_input": "What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE EP/USP (BHN BAKU OBAT) COA NEDNA200704", "output": "29372200"}, {"text_input": "What is the hs code for DEXAMETHASONE BP2010/USP42 (BHN BAKU OBAT) COA NED210713, NED210714", "output": "29372200"}, {"text_input": "What is the hs code for PREDNISONE USP42 (BHN BAKU OBAT) COA NPD201213", "output": "29372100"}, {"text_input": "What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK), COA LDC28621T", "output": "27101990"}, {"text_input": "What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK)COA 7766034", "output": "38249999"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA MTP16021", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA MTP17421", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA MTP17421", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU OBAT) COA MTP14321", "output": "28363000"}, {"text_input": "What is the hs code for VC ASCORBIC ACID 325MESH, 20KG BOA1PO (BAHAN BAKU SUPLEMEN)COA HPD2103051, HPD2104119", "output": "29362700"}, {"text_input": "What is the hs code for VC ASCORBIC ACID 325MESH, 20KG BOA1PO (BAHAN BAKU SUPLEMEN) COA HPD2104119,4122,4128,4132...", "output": "29362700"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH647429", "output": "38249999"}, {"text_input": "What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP843159", "output": "39059990"}, {"text_input": "What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP839155", "output": "39059990"}, {"text_input": "What is the hs code for D&C YELLOW #10 AL 15PCT-20PCT (BHN BAKU PEWARNA TABLET) COA WP831858:BA3992", "output": "32151900"}, {"text_input": "What is the hs code for FD & C YELLOW #6/SUNSET YELLOW... (BHN BAKU PEWARNA TABLET) COA WP839962:BA7342", "output": "32151900"}, {"text_input": "What is the hs code for FD & C YELLOW #5/TARTRAZINE AL... (BHN BAKU PEWARNA TABLET) COA WP833401:BA4911", "output": "32151900"}, {"text_input": "What is the hs code for ERYTHROSINE AL 38PCT-42PCT (BHN BAKU PEWARNA TABLET) COA WP822178:1", "output": "32151900"}, {"text_input": "What is the hs code for FD AND C BLUE #2/INDIGO CARMINE AL...(BHN BAKU UTK PEWARNA TABLET) COA WP837618:BA6893", "output": "32151900"}, {"text_input": "What is the hs code for FERROUS FUMARATE USP/FCC/PH.EUR (BHN BAKU OBAT) COA 2021/196", "output": "29171900"}, {"text_input": "What is the hs code for DAPRACARE P6000 DSHV MB (BHN BAKU KOSMETIK) COA 2106230115", "output": "39072090"}, {"text_input": "What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 2104221214", "output": "29372200"}, {"text_input": "What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 2104221214", "output": "29372200"}, {"text_input": "What is the hs code for ISONIAZID USP (BHN BAKU OBAT) COA 21103/INH,21147/INH, 21149/INH,...", "output": "29333910"}, {"text_input": "What is the hs code for CITICOLINE SODIUM (BHN BAKU OBAT) COA Y210524", "output": "29349990"}, {"text_input": "What is the hs code for LEVOFLOXACIN HEMIHYDRATE (FREE ALKALINE)BHN BAKU OBAT, COA C008-2105606", "output": "29349990"}, {"text_input": "What is the hs code for POVIDONE K-25 (BHN BAKU OBAT), COA PK25-210510F31", "output": "39059990"}, {"text_input": "What is the hs code for DOXYCYCLINE HYCLATE (BHN BAKU PAKAN TERNAK) COA DH-2106059", "output": "29413000"}, {"text_input": "What is the hs code for SUCRALOSE (BHN BAKU OBAT) COA 21062702", "output": "29321400"}, {"text_input": "What is the hs code for TUBE CRYSTAL E/ID INOCULUM FLUID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1110353", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1081546", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M-PA-C AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1138796", "output": "38210090"}, {"text_input": "What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1095256", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1081546", "output": "38210090"}, {"text_input": "What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 1078793", "output": "38210090"}, {"text_input": "What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 202758900", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02D119M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0322946", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1103638", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0335617", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0294287", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1103638", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0321060", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0314278,1123327", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335617", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1007116,1033190", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1103638", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1111132", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1081518", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1132546", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1068161", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1040269", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1123067", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE YPD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0286513", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TSN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0126959", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1132512", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1068716", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0273380", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0272792", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0062865", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR NOBLE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1048168", "output": "38210090"}, {"text_input": "What is the hs code for LOOPS INOCULATING 10/TUBE 10 MICROLITER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2008440", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0294294", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1133939", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0350960", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1097237", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE YEAST CARBON BASE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0038689", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1111035", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1068956", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01D091M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1103647", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TODD HEWITT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335708", "output": "38210090"}, {"text_input": "What is the hs code for MS CD4 PERCP RM4-5 25UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065978", "output": "38210090"}, {"text_input": "What is the hs code for MS CD56 (NCAM-1) BUV615 809220 50UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1187003", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1097144", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1035143", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0114639", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTISERUM FACTOR 12 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0240788", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0219127", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 1139986", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 10978180", "output": "38210090"}, {"text_input": "What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP W135 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1092251", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1110880", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0226415", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0336719", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0097374", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE FOLIC AOAC MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1133929", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1069992,1139984", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL H ANTISERUM A 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1090463", "output": "38210090"}, {"text_input": "What is the hs code for MS CD8A FITC 53-6.7 25UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9346132", "output": "38210090"}, {"text_input": "What is the hs code for PARACETAMOL USP (BHN BAKU OBAT) COA 2110022, 2130026, 2110058", "output": "29242930"}, {"text_input": "What is the hs code for VC CALCIUM ASCORBATE DC, 25KG BAL (BAHAN BAKU SUPLEMEN) COA HPT2105019", "output": "29362700"}, {"text_input": "What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP(BHN BAKU OBAT) COA 102102024", "output": "28183000"}, {"text_input": "What is the hs code for SENTRY POLYOX WSR 303 LEO NF (DUPONT/IFF) BHN BAKU PEWARNA TABLET) COA D682L1IRR6", "output": "39123900"}, {"text_input": "What is the hs code for SENTRY POLYOX WSR 1105 LEO NF (DUPONT/IFF) BHN BAKU PEWARNA TABLET, COA D682K5KRD1", "output": "39123900"}, {"text_input": "What is the hs code for BAYPURE CX 100 SOLID G !25K BAG (BHN BAKU KOSMETIK) COA CHASMY0052", "output": "38249999"}, {"text_input": "What is the hs code for MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL210715, MCCPOL210719", "output": "29094900"}, {"text_input": "What is the hs code for PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 110920/006689", "output": "38249999"}, {"text_input": "What is the hs code for OLIO VINACCIOLI RAFFINATO (BHN BAKU KOSMETIK) COA.B2100178", "output": "15152919"}, {"text_input": "What is the hs code for OLIO MANDORLE DOLCI RAFF.EU PH (BHN BAKU KOSMETIK) COA B21000180", "output": "15152919"}, {"text_input": "What is the hs code for CYCLOPENTASILOXANE CM5 L (BHN BAKU KOSMETIK) COA 2128WKQ315", "output": "29319049"}, {"text_input": "What is the hs code for OPADRY SGR RED (BHN BAKU PEWARNA TABLET) COA GA692531", "output": "38249999"}, {"text_input": "What is the hs code for NG 5 PCT-1,2 PROPYLENGLYCOLE 95% (BAHAN BAKU OBAT) COA 2109232", "output": "30039000"}, {"text_input": "What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105712021, L105712121", "output": "17021100"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH646435", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH646437", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH646379", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH646380", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH646802", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH646439", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH646434", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH646382", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH646442", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH642544", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GRAY (BHN BAKU PEWARNA TABLET) COA SH646550", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH646385", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH646431", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH646386", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH646387", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH646422", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH646562", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH646561", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II BLUE (BHN BAKU PEWARNA TABLET) COA SH646459", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II BLUE (BHN BAKU PEWARNA TABLET) COA SH646458", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH646417", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH646418", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH646432", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY YELLOW (BHN BAKU PEWARNA TABLET) COA SH646389", "output": "38249999"}, {"text_input": "What is the hs code for OPADRYAMB YELLOW (BHN BAKU PEWARNA TABLET) COASH646445", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY RED (BHN BAKU PEWARNA TABLET) COA SH646390", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH646441", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY BLUE (BHN BAKU PEWARNA TABLET) COA SH646424", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH646430", "output": "38249999"}, {"text_input": "What is the hs code for PIGMENT BLEND BROWN (BHN BAKU PEWARNA TABLET) SH646423", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY CLEAR ( BHN BAKU PEWARNA TABLET) COA SH646442", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH646433", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH646436", "output": "38249999"}, {"text_input": "What is the hs code for IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S168/21", "output": "38029090"}, {"text_input": "What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 040221,010321,030321,040321", "output": "38029090"}, {"text_input": "What is the hs code for EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300012", "output": "13021950"}, {"text_input": "What is the hs code for VITAMIN PREMIX 103093-A (BHN BAKU MAKANAN) COA XW92106187", "output": "21069059"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT20120055", "output": "32041900"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT20120055", "output": "32041900"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL02011130, TL02101001", "output": "29362400"}, {"text_input": "What is the hs code for PX 204005 (BHN BAKU MAKANAN) COA XW92106421", "output": "21069059"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02104029", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKAKAN) COA UT21010003", "output": "29362100"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11210404", "output": "29362500"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ01212140", "output": "29362200"}, {"text_input": "What is the hs code for NIACINAMIDE FCC, 25KG BOX (BHN BAKU MAKANAN) COA 0000195880", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE FCC, 25KG BOX (BHN BAKU MAKANAN) COA 0000195880", "output": "29362900"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT21030025, UT21040028", "output": "29362800"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ01112120, UQ01112126", "output": "29362200"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT20120092", "output": "29362800"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT20120055", "output": "32041900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT20120028, 20029,40007", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21020039", "output": "29362400"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21020039", "output": "29362400"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21020039", "output": "29362400"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21020039", "output": "29362400"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2007090", "output": "29362300"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB20040051, 52", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ01110813", "output": "29362300"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB20030067", "output": "29362200"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ10113538", "output": "29362500"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU SUPPLEMEN) COA TL02103655,TL02103673", "output": "29362400"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE, 5KG PE PAIL(BHN BAKU SUPPLEMEN) COA UT21030084", "output": "29362800"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ01212140", "output": "29362200"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ10113538", "output": "29362500"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB20040052", "output": "29362300"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB20030067", "output": "29362200"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU SUPPLEMEN) COA UT21020206", "output": "29362100"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE,5KG PE PAIL (BHN BAKU SUPPLEMEN)COA UT21030084", "output": "29362800"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL-ACETATE, 20KG JUG (BHN BAKU SUPPLEMEN) COA XH20201101", "output": "29362800"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12105003", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12105003", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT21020040", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN), COA UT20100006", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT20100006", "output": "29362900"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE, 25KG BOX (BHN BAKU MAKANAN) COA TL02103655", "output": "29362400"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11210404", "output": "29362500"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ10210551", "output": "29362300"}, {"text_input": "What is the hs code for NIACINAMIDE FCC, 25KG BOX (BHN BAKU MAKANAN) COA 0000195880", "output": "29362900"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM REGULAR GRADE(BHN BAKU OBAT) COA 2106797,2106936,2106937,2106801", "output": "29331900"}, {"text_input": "What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019141M", "output": "38249999"}, {"text_input": "What is the hs code for ECOGEL TM (BHN BAKU KOSMETIK) COA 2105102", "output": "38249999"}, {"text_input": "What is the hs code for EXO-P TM (BHN BAKU KOSMETIK) COA 715038112L", "output": "38249999"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019143M", "output": "38249999"}, {"text_input": "What is the hs code for PROGELINE TM (BHN BAKU KOSMETIK) COA 211580", "output": "38249999"}, {"text_input": "What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769019139M", "output": "38249999"}, {"text_input": "What is the hs code for LANACHRYS 2B PF (BHN BAKU KOSMETIK) COA 793058976M", "output": "38249999"}, {"text_input": "What is the hs code for TYROSTAT TM 09 (BHN BAKU KOSMETIK) COA 784019061M", "output": "38249999"}, {"text_input": "What is the hs code for MILD TALCUM MOD1 FM2 (BHN BAKU KOSMETIK) COA 10300228", "output": "13021950"}, {"text_input": "What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 197129", "output": "29332900"}, {"text_input": "What is the hs code for LIDOCAINE HCL (BHN BAKU OBAT) COA 195759", "output": "29242990"}, {"text_input": "What is the hs code for NONIVAMIDE (SYNTHETIC CAPSAICIN) BHN BAKU KOSMETIK, COA.20210630", "output": "29241990"}, {"text_input": "What is the hs code for IONOL (R) CP (BHN BAKU KOSMETIK), COA 01131820", "output": "29071900"}, {"text_input": "What is the hs code for ACARBOSE (BHN BAKU KOSMETIK) COA ACAP21020A", "output": "29329990"}, {"text_input": "What is the hs code for MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103151521", "output": "17021100"}, {"text_input": "What is the hs code for ONDANSETRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA 21OS002", "output": "29332900"}, {"text_input": "What is the hs code for SODIUM ASCORBATE 99PCT TG, 20KG BOX/ALU (BHN BAKU SUPLEMEN) COA WB21060550", "output": "29362700"}, {"text_input": "What is the hs code for SUNFIBER AG (BHN BAKU MAKANAN), COA 003141", "output": "13021950"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH647366", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH647377", "output": "38249999"}, {"text_input": "What is the hs code for VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92106377", "output": "21069059"}, {"text_input": "What is the hs code for MINERAL PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92106463", "output": "21069059"}, {"text_input": "What is the hs code for PARSOL 1789, 20KG BOX (BHN BAKU KOSMETIK) COA 0321050487, 0321050488", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0220040061", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL EHS, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0720010064", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001594056", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 1789, 20 KG BOX (BHN BAKU KOSMETIK) COA 0321050488, 0321050489", "output": "29420000"}, {"text_input": "What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES2010464", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX, 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA 0520060060", "output": "29420000"}, {"text_input": "What is the hs code for D-PANTHENOL, 20KG PAIL PE (BHN BAKU MAKANAN) COA TL02101008", "output": "29362400"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11210404", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT21020009", "output": "29362600"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPPLEMEN) COA UQ10313120", "output": "29362200"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT20120092, UT21040020", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21040020", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21040020", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT21040018", "output": "29362100"}, {"text_input": "What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92106254", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW92106376", "output": "21069059"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ10313120", "output": "29362200"}, {"text_input": "What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 2151045,2151048,2151055", "output": "29242930"}, {"text_input": "What is the hs code for CALAMINE , POWDER, BP 2021 (BHN BAKU SUPLEMEN) COA 3092304", "output": "28369990"}, {"text_input": "What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA 8MT2107132", "output": "30032000"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 2AX2106057", "output": "29181400"}, {"text_input": "What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2021040501", "output": "21012020"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1148193", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1160733", "output": "38210090"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SFE, SHF", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA SGB", "output": "38249999"}, {"text_input": "What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1068182", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01D154M", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) COA B01D154M", "output": "38210090"}, {"text_input": "What is the hs code for FERRIC PYROPHOSPHATE,APPROX 25PCT... (POST BORDER) COA 3101653", "output": "28353990"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210301", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210301", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210603", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM21060-PGH", "output": "38249999"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO210603", "output": "38249999"}, {"text_input": "What is the hs code for KSP-100 (10KG) BHN BAKU KOSMETIK, COA 105865", "output": "38249999"}, {"text_input": "What is the hs code for KSP-101 (15KG) BHN BAKU KOSMETIK, COA 106404", "output": "38249999"}, {"text_input": "What is the hs code for KF-54HV (18KG) BHN BAKU KOSMETIK, COA 007040", "output": "38249999"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 14360621, 14290621", "output": "29359000"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 15040621,15050621,15060621...", "output": "29359000"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500B (BHN BAKU SUPLEMEN) COA WB21030293", "output": "29362100"}, {"text_input": "What is the hs code for KETOPROFEN (BHN BAKU OBAT) COA. 197921", "output": "29183000"}, {"text_input": "What is the hs code for PROPYPHENAZONE (ST) (BHN BAKU OBAT UTK PEWARNA TABLET) COA 2105066,5070,5071,5072,5073", "output": "29331100"}, {"text_input": "What is the hs code for CALCIUM CARBONATE DC TYPE CS90 PHARMA (BHN BAKU SUPPLEMEN) COA 202100181", "output": "28365010"}, {"text_input": "What is the hs code for GELUCIRE 44/14 (BHN BAKU OBAT) COA 183228", "output": "28399000"}, {"text_input": "What is the hs code for COMPRITOL 888 ATO (BHN BAKU OBAT) COA 185235", "output": "28399000"}, {"text_input": "What is the hs code for ABSORAGE (BHN BAKU KOSMETIK), COA 202322", "output": "13021990"}, {"text_input": "What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 211412", "output": "38249999"}, {"text_input": "What is the hs code for BIOBENEFITY (BHN BAKU KOSMETIK), COA 211041", "output": "13021990"}, {"text_input": "What is the hs code for BIOCELLACT CHAMOMILLA BD (BHN BAKU KOSMETIK),COA 210382", "output": "13021990"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK),COA 211404", "output": "38249999"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 211215", "output": "13021990"}, {"text_input": "What is the hs code for MANDARIN CLEAR (BHN BAKU KOSMETIK) COA 211240", "output": "13021990"}, {"text_input": "What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 211021", "output": "13021990"}, {"text_input": "What is the hs code for AP GRIT (ROUND)G 60-80 (BHN BAKU KOSMETIK) COA 210617", "output": "38249999"}, {"text_input": "What is the hs code for SODIUM CARBONATE IPH (BHN BAKU OBAT) COA DOC1812121", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA RBA1992100,RBA1942100", "output": "28363000"}, {"text_input": "What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-0210421, S-A-0210422, S-A-0210423", "output": "29334910"}, {"text_input": "What is the hs code for OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-091371", "output": "38249999"}, {"text_input": "What is the hs code for YUZU EXTRACT (BHN BAKU KOSMETIK) COA CJUBD-021061,CJUBD-031271", "output": "38249999"}, {"text_input": "What is the hs code for CAMELLIA JAPONICA SEED OIL (BHN BAKU KOSMETIK) COA CJSO-021241", "output": "38249999"}, {"text_input": "What is the hs code for HOCOX (BHN BAKU KOSMETIK) COA HOXB-040641", "output": "38249999"}, {"text_input": "What is the hs code for PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-622320", "output": "38249999"}, {"text_input": "What is the hs code for SODIUM HYALURONATE 1PCT SOLUTION (BHN BAKU KOSMETIK) COA HASC-130841", "output": "38249999"}, {"text_input": "What is the hs code for WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-030651", "output": "38249999"}, {"text_input": "What is the hs code for KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-030261", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 720 (BHN BAKU KOSMETIK) COA 1570630", "output": "38249999"}, {"text_input": "What is the hs code for PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PI21060010", "output": "29349920"}, {"text_input": "What is the hs code for SODIUM ASCORBATE 99% TG (BHN BAKU SUPPLEMEN) COA WB210705960", "output": "29362700"}, {"text_input": "What is the hs code for CETIRIZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA 21016CZ6RII", "output": "29335990"}, {"text_input": "What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (POST BORDER)", "output": "29362600"}, {"text_input": "What is the hs code for LIPOID S 20 (POST BORDER) COA 572000-2210137/037-049", "output": "29232010"}, {"text_input": "What is the hs code for PURIMOX POWDER (BHN BAKU OBAT) COA M485459", "output": "29411019"}, {"text_input": "What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M534233,M534234,M534235,M534190,M534245", "output": "29411019"}, {"text_input": "What is the hs code for COMPRITOL 888 ATO", "output": "28399000"}, {"text_input": "What is the hs code for TSPL-30-ID (BHN BAKU KOSMETIK) COA 002012", "output": "38249999"}, {"text_input": "What is the hs code for SHIN ETSU SILICONE KP-561P (BHN BAKU KOSMETIK) COA 104137", "output": "38249999"}, {"text_input": "What is the hs code for KF-7312K (BHN BAKU KOSMETIK) COA 105189", "output": "38249999"}, {"text_input": "What is the hs code for KP-545 (BHN BAKU KOSMETIK) COA 102932,105933", "output": "38249999"}, {"text_input": "What is the hs code for KSG-15 (BHN BAKU KOSMETIK) COA 101512", "output": "38249999"}, {"text_input": "What is the hs code for KSG-16 (BHN BAKU KOSMETIK) COA 106370", "output": "38249999"}, {"text_input": "What is the hs code for KSG-18A (BHN BAKU KOSMETIK) COA 105045", "output": "38249999"}, {"text_input": "What is the hs code for KSG-19 (BHN BAKU KOSMETIK) COA 105095", "output": "38249999"}, {"text_input": "What is the hs code for KSG-016F (BHN BAKU KOSMETIK) COA 107449", "output": "38249999"}, {"text_input": "What is the hs code for KSG-41A (BHN BAKU KOSMETIK) COA 008014", "output": "38249999"}, {"text_input": "What is the hs code for KSG-43 (BHN BAKU KOSMETIK) COA 005094", "output": "38249999"}, {"text_input": "What is the hs code for KSG-44 (BHN BAKU KOSMETIK) COA 101094", "output": "38249999"}, {"text_input": "What is the hs code for KSG-045Z (BHN BAKU KOSMETIK) COA 104021", "output": "38249999"}, {"text_input": "What is the hs code for KSG-048Z (BHN BAKU KOSMETIK) COA 102009", "output": "38249999"}, {"text_input": "What is the hs code for X-21-5595 (BHN BAKU KOSMETIK) COA 105152", "output": "38249999"}, {"text_input": "What is the hs code for NBN-30-ID (BHN BAKU KOSMETIK) COA 008056", "output": "38249999"}, {"text_input": "What is the hs code for TSPL-30-ID (BHN BAKU KOSMETIK) COA 002012", "output": "38249999"}, {"text_input": "What is the hs code for X-21-5616 (BHN BAKU KOSMETIK) COA 006023", "output": "38249999"}, {"text_input": "What is the hs code for KF-9021-ID (BHN BAKU KOSMETIK) COA 011001", "output": "38249999"}, {"text_input": "What is the hs code for KSG-042Z (BHN BAKU KOSMETIK) COA 106013", "output": "38249999"}, {"text_input": "What is the hs code for KSG-42A (BHN BAKU KOSMETIK) COA 107013", "output": "38249999"}, {"text_input": "What is the hs code for MOXIFLOXACIN HYDROCHLORIDE (BHN BAKU OBAT) COA MP0040421", "output": "29334990"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 14 PREMIUM (BHN BAKU OBAT) COA D184L5P021", "output": "39123900"}, {"text_input": "What is the hs code for PREDNISONE USP42 (BHN BAKU OBAT) COA NPD210708", "output": "29372100"}, {"text_input": "What is the hs code for CYPROHEPTADINE HCL (BHN BAKU OBAT) COA CYP/07211022", "output": "29333990"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG210702, MCVG210709", "output": "29362700"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (POST BORDER) COA MTP19021", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (POST BORDER) COA MTP19021", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (POST BORDER) COA MTP17421,MTP18921", "output": "28363000"}, {"text_input": "What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 21290005", "output": "30039000"}, {"text_input": "What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 21290005", "output": "30039000"}, {"text_input": "What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 21290005", "output": "30039000"}, {"text_input": "What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 21290005", "output": "30039000"}, {"text_input": "What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 21290005", "output": "30039000"}, {"text_input": "What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 21290005", "output": "30039000"}, {"text_input": "What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 21290005", "output": "30039000"}, {"text_input": "What is the hs code for CEFADROXIL MONOHYDRATE COMPACTED (BHN BAKU OBAT) COA B340303, B340305, B340309", "output": "29419000"}, {"text_input": "What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (POST BORDER) COA 2109331509", "output": "29362600"}, {"text_input": "What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M534309,323,324,310,317,308,332", "output": "29411019"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544479", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544594", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544575", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544585", "output": "35051010"}, {"text_input": "What is the hs code for MELOXICAM BP/EP (BHN BAKU OBAT) COA HMXCPP003", "output": "29341000"}, {"text_input": "What is the hs code for MC-GLUCAN (BHN BAKU KOSMETIK) COA", "output": "39139090"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT21040018", "output": "29362100"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12105030", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT21020008", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT21020008", "output": "29362900"}, {"text_input": "What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW92107069", "output": "21069059"}, {"text_input": "What is the hs code for PX 103070 - C3 (BHN BAKU MAKANAN) COA XW92107304,XW92107305", "output": "21069059"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT21030084", "output": "29362800"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE, 20KG BOX (BHN BAKU MAKANAN) COA QZ11210406", "output": "29362500"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT21030067", "output": "29362400"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12105030", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12105030", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPPLEMEN) COA UQ10209504", "output": "29362300"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02104690", "output": "29362400"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ10113538", "output": "29362500"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3% (BHN BAKU SUPPLEMEN) COA WB20030074", "output": "29362200"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU SUPPLEMEN) COA UT21020204", "output": "29362100"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT21030084", "output": "29362800"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ10210551, UQ10210553, UQ10210554", "output": "29362300"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3 PCT (BHN BAKU SUPPLEMEN) COA WB20040052", "output": "29362300"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ10213560", "output": "29362500"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3 PCT (BHN BAKU SUPPLEMEN) COA WB20040052", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ10210554", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ10210554", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040009", "output": "29362900"}, {"text_input": "What is the hs code for VP DN03 (BHN BAKU MAKANAN) COA XW92106435", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21030135", "output": "29362900"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02104690, TL02104693", "output": "29362400"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11210406", "output": "29362500"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ10112038", "output": "29362200"}, {"text_input": "What is the hs code for KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0060521", "output": "29339990"}, {"text_input": "What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (POST BORDER) COA 2109361604", "output": "29362600"}, {"text_input": "What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH647890", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH646694", "output": "38249999"}, {"text_input": "What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 19072021", "output": "25081000"}, {"text_input": "What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 20210719", "output": "25081000"}, {"text_input": "What is the hs code for ASCORBIC ACID 90% GRANULATION (BHN BAKU SUPPLEMEN) COA WB21049079, WB21049084", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID 90% GRANULATION (BHN BAKU SUPPLEMEN) COA WB21019035", "output": "29362700"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20210503", "output": "29362800"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20210503", "output": "29362800"}, {"text_input": "What is the hs code for SODIUM CARBONATE IPH (BHN BAKU SUPPLEMEN) COA DOC1582121", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU OBAT) COA RBA1962100", "output": "28363000"}, {"text_input": "What is the hs code for 985-L-MENTHOL CRYSTALS INDIAN NATURAL (BHN BAKU KOSMETIK) COA NFPL-MEN-20-23", "output": "38249999"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (POST BORDER) COA MTP19021", "output": "28363000"}, {"text_input": "What is the hs code for JAGUAR HP 105 SGI (BHN BAKU KOSMETIK) COA H2103045A", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210301", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210301", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210603", "output": "38249999"}, {"text_input": "What is the hs code for WITCH HAZEL ORGANIC DISTILLATE 1:10 (SB) (BHN BAKU KOSMETIK) COA HAVD210705-BIO", "output": "38249999"}, {"text_input": "What is the hs code for ROSE OILY EXTRACT (BHN BAKU KOSMETIK) COA ROS210703-H", "output": "38249999"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 210318", "output": "13021950"}, {"text_input": "What is the hs code for OILESS CITY TM (BHN BAKU KOSMETIK) COA 210324", "output": "13021950"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1131086", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 0226415", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0097374,1053886", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065943", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0226415", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 1063138", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 9256006", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1053886", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30 ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1131086", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1139984", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0114639", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1063164", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1110880", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH1097818,1153205", "output": "38210090"}, {"text_input": "What is the hs code for OPADRY FX YELLOW (BHN BAKU PEWARNA TABLET) COA GA694355", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY SGR TRANSLUCENT (BHN BAKU PEWARNA TABLET) COA GA694365", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY SGR TRANSLUCENT (BHN BAKU PEWARNA TABLET) COA GA694365", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY SGR CLEAR (BHN BAKU PEWARNA TABLET) COA GA694366", "output": "38249999"}, {"text_input": "What is the hs code for BODY 3 COMPLEX (BHN BAKU KOSMETIK) COA B3C020421", "output": "38249999"}, {"text_input": "What is the hs code for MINIPORYL TM (BHN BAKU KOSMETIK) COA 832019418M", "output": "38249999"}, {"text_input": "What is the hs code for B WHITE (BHN BAKU KOSMETIK) COA 829018970M", "output": "38249999"}, {"text_input": "What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019141M", "output": "38249999"}, {"text_input": "What is the hs code for DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834019444M", "output": "38249999"}, {"text_input": "What is the hs code for ECOGEL TM (BHN BAKU KOSMETIK), COA 2113702", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK), COA 2105706", "output": "38249999"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK), COA 782019143M", "output": "38249999"}, {"text_input": "What is the hs code for MINIPORYL TM (BHN BAKU KOSMETIK), COA 832019418M", "output": "38249999"}, {"text_input": "What is the hs code for ROSALITY TM (BHN BAKU KOSMETIK), COA 2012801", "output": "38249999"}, {"text_input": "What is the hs code for ROSALITY TM (BHN BAKU KOSMETIK), COA 2033901", "output": "38249999"}, {"text_input": "What is the hs code for ROSALITY TM (BHN BAKU KOSMETIK) COA 2100901", "output": "38249999"}, {"text_input": "What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029189M", "output": "38249999"}, {"text_input": "What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029189M", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH647079", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH647078", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH647076", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH647080", "output": "38249999"}, {"text_input": "What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01D154M", "output": "38210090"}, {"text_input": "What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-210521", "output": "29061300"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM \nHYDROXYPROPYL METHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D18L3U001", "output": "39123900"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544539", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544544", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN543744", "output": "35051010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1148193", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1140816", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASAMINO ACIDS TECHNICAL 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1118056", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASAMINO ACIDS TECHNICAL 10KG EA (MEDIA U/PENGEMBANGAN MIKRO ORGANISME)BATCH 1118056", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASAMINO ACIDS TECHNICAL 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1095082", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASAMINO ACIDS TECHNICAL 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1118056", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2260443", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2260443", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2316462", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2316462", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1004958", "output": "38210090"}, {"text_input": "What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0022270", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0335766", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 00343138", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 00343138", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0365879", "output": "38210090"}, {"text_input": "What is the hs code for BACTO LACTALBUMIN HYDROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0349743", "output": "38210090"}, {"text_input": "What is the hs code for L-CARNITINE (EP GRADE)(BHN BAKU KOSMETIK)COA 10100120210529", "output": "29239000"}, {"text_input": "What is the hs code for BOTTLE R2A AGAR 500 G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335617", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1068148", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0286569", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTERIOLOGICAL 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283868", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0217346", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1047444", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POLYSORBATE 80 100G 1 EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1161396", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1140042", "output": "38210090"}, {"text_input": "What is the hs code for KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1165835", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRAIN HEART INFUSION BBL 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1159375", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE YEAST NITROGEN BASE W/O AA 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1097792", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1081408", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01D091M,B01D130M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GELATIN 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1102066", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1096296", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1111125", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1007102", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1068148", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE R2A AGAR 500 G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335617", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1047444", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335781,110", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0350002", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0365716", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1040269", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500 GR(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1026614", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1081510", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1048461", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MIO MEDIUM 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0091372", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR TECHNICAL 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1088540", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1007102", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283759", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1068148", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B02D119M", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1117783", "output": "38210090"}, {"text_input": "What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01D095M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE R2A AGAR 500 G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335617", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500 GR )(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0322946", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283759", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GELATIN 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1102066", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283868", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1081578", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1068148", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0293248", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1042590", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 035002", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0244908,1081408", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE YEAST NITROGEN BASE W/O AA 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1097792", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BLOOD AGAR BASE 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0286355", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0273380", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0272792", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE OF BASAL MEDIUM 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1082936", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M ENDO AGAR LES 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1042613", "output": "38210090"}, {"text_input": "What is the hs code for DRY VITAMIN E 50 PCT CWS/S (BHN BAKU MAKANAN) COA UE02105079", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21040141", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12105031", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU MAKANAN) COA UT21020042", "output": "29362400"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU MAKANAN) COA UT21020042", "output": "29362400"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU MAKANAN) COA UT21020042", "output": "29362400"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU MAKANAN) COA UT21020042", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN E 50 PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21040012", "output": "29362800"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA QZ11210406", "output": "29362500"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT20120030, UT21040007", "output": "29362900"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02102012", "output": "29362400"}, {"text_input": "What is the hs code for RIBOFLAVIN 5-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2009106", "output": "29362300"}, {"text_input": "What is the hs code for DRY VITAMIN E 50 PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21040012", "output": "29362800"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02006024", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21040007", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT20040087", "output": "29362400"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT20040087", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21040141", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN E 50 PCT CWS/S (BHN BAKU MAKANAN) COA UE02105079", "output": "29362800"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ10413153", "output": "29362200"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21050139", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21050139", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21050139", "output": "29362800"}, {"text_input": "What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0721010014", "output": "29420000"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21050139", "output": "29362800"}, {"text_input": "What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0721010014", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0421040024", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060015", "output": "29420000"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL02105696", "output": "29362700"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT21060051", "output": "29362800"}, {"text_input": "What is the hs code for B-CAROTENE 30 PCT FS (BHN BAKU MAKANAN) COA UE02105040", "output": "32041900"}, {"text_input": "What is the hs code for GENIVIDA(TM) TG (BHN BAKU SUPPLEMEN) COA UT19040001", "output": "29329990"}, {"text_input": "What is the hs code for REDIVIVO (R) (LYCOPENE) 10 PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT21050003", "output": "29420000"}, {"text_input": "What is the hs code for VITAMIN B12 0.1 PCT WS (BHN BAKU MAKANAN) COA UT20100059", "output": "29362600"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5 PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT21020013", "output": "32030010"}, {"text_input": "What is the hs code for B-CAROTENE 30 PCT FS (BHN BAKU SUPLEMEN) COA UE02105040", "output": "32041900"}, {"text_input": "What is the hs code for REDIVIVO (R) (LYCOPENE) 10 PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT21050003", "output": "29420000"}, {"text_input": "What is the hs code for REDIVIVO (R) (LYCOPENE) 10 PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT21050003", "output": "29420000"}, {"text_input": "What is the hs code for REDIVIVO (R) (LYCOPENE) 10 PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT21050003", "output": "29420000"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21040003", "output": "29362900"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT21050039", "output": "29362800"}, {"text_input": "What is the hs code for GUAIFENESIN USP 42 (B. BAKU OBAT) COA GGE-2106083 - GGE-2107095,GGE-2105080", "output": "29094900"}, {"text_input": "What is the hs code for CARBAZOCHROME SODIUM SULFONATE ORAL G (BHN BAKU OBAT)COA AC10601/10623", "output": "29339990"}, {"text_input": "What is the hs code for PARACETAMOL USP (BHN BAKU OBAT) COA 2110058, 21100640, 2130036", "output": "29242930"}, {"text_input": "What is the hs code for PURIDROX POWDER (BHN BAKU OBA) COA B334758,B334760,B334761,B334765", "output": "29419000"}, {"text_input": "What is the hs code for POTASSIUM L-ASPARTATE 0.5-HYDRATE (BHN BAKU OBAT) COA 3097106", "output": "29224900"}, {"text_input": "What is the hs code for FERROUS SULFATE,DRIED, POWDER, USP43 (BHN BAKU SUPLEMEN) COA 3103276,3090743", "output": "28332920"}, {"text_input": "What is the hs code for MAGNESIUM CARBONATE, HEAVY (BHN BAKU OBAT) COA 3091896,1104812", "output": "28369990"}, {"text_input": "What is the hs code for SELOHVITA C (BHN BAKU OBAT) COA 3103151", "output": "28429010"}, {"text_input": "What is the hs code for SODIUM GLYCEROPHOSPHATE CRYST.,PH FRANC X(BHN BAKU SUPLEMEN) COA 3084920", "output": "29199000"}, {"text_input": "What is the hs code for ZINC SULFATE 7-HYDRATE, CRYST, PH.EUR.10.ED (BHN BAKU OBAT) COA 3101060", "output": "28332920"}, {"text_input": "What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050489, 0321050490, 0321050491, 0321050492", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050492, 0321050493, 0321050494", "output": "29420000"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000196754, 0000196755", "output": "29362900"}, {"text_input": "What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF21092004", "output": "29420000"}, {"text_input": "What is the hs code for MONENDOX 200 BMP (BHN BAKU UTK PAKAN TERNAK) COA 2107121", "output": "29419000"}, {"text_input": "What is the hs code for ASCORBIC ACID 90 PCT GRANULATION (BHN BAKU SUPPLEMEN) COA WB21049096", "output": "29362700"}, {"text_input": "What is the hs code for METHOCEL A15 PREMIUM LV METHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D180K57021", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E5 PREMIUM LV HYDROXYPROPYL METHYLCELLULOSE(BHN BAKU PEWARNA TABLET)COA D011K4HE02", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM HYDROXYPROPYL METHYLCELLULOSE(BHN BAKU PEWARNA TABLET)COA D180KCJ003", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL METHYLCELLULOSE(BHN BAKU PEWARNA TABLET)COA D180L1I001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL METHYLCELLULOSE(BHN BAKU PEWARNA TABLET)COA D180L1J001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E50 PREMIUM LV HYDROXYPROPYL METHYLCELLULOSE(BHN BAKU PEWARNA TABLET)COAD011K4EL02", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL METHYLCELLULOSE(BHN BAKU PEWARNA TABLET)COAD011K72L01", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL METHYLCELLULOSE(BHN BAKU PEWARNA TABLET)COAD180K5T003", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL METHYLCELLULOSE(BHN BAKU PEWARNA TABLET) COAD180J9O003", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E15 PREMIUM LV HYDROXYPROPYL METHYLCELLULOSE(BHN BAKU PEWARNA TABLET)COAD011K5SL02", "output": "39123900"}, {"text_input": "What is the hs code for PANTOPRAZOLE SODIUM (STERILE) BAHAN BAKU OBAT SI/PPZ/01090721", "output": "29333990"}, {"text_input": "What is the hs code for OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA SH647139", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA SH647138", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH647107", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH647108", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH647109", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH647110", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH647130", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH647136", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH647111", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH647359", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH645305", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH647113", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH647137", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH647114", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH647115", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH647116", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY YELLOW (BHN BAKU PEWARNA TABLET) COA SH647117", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH647700", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH647134", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH647133", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH646694", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH647135", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH647294", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH647133", "output": "38249999"}, {"text_input": "What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 2109371648", "output": "29362600"}, {"text_input": "What is the hs code for 1400/1700 SUGLETS 1400/1700 (12/14 MESH) BHN BAKU PEWARNA TABLET) COA ST516915", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH647477", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH648241", "output": "38249999"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 14 PREMIUM ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D184L5P021", "output": "39123900"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122101134,122101135", "output": "28363000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122100910", "output": "28363000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122100909", "output": "28363000"}, {"text_input": "What is the hs code for EFFERSODA (R)12 (BHN BAKU OBAT) COA 122100927", "output": "28363000"}, {"text_input": "What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122100871", "output": "29054300"}, {"text_input": "What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122100871", "output": "29054300"}, {"text_input": "What is the hs code for MANNITOL POWDER USP/EP - MANNO (POST BORDER) COA 302106305", "output": "29054300"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122100927", "output": "28363000"}, {"text_input": "What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122100871", "output": "29054300"}, {"text_input": "What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122100871", "output": "29054300"}, {"text_input": "What is the hs code for B WHITE TM (BHN BAKU KOSMETIK) COA 829019351M", "output": "38249999"}, {"text_input": "What is the hs code for B WHITE TM (BHN BAKU KOSMETIK) COA 829019351M", "output": "38249999"}, {"text_input": "What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769019139M", "output": "38249999"}, {"text_input": "What is the hs code for LANACHRYS 2B PF (PRESERVATIVE) (BHN BAKU KOSMETIK) COA 793059142M", "output": "38249999"}, {"text_input": "What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK), COA 784029189M", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5 PCT CLEAR (BHN BAKU KOSMETIK), COA 785019289M", "output": "38249999"}, {"text_input": "What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) COA 321CAA0002", "output": "38249999"}, {"text_input": "What is the hs code for EFFERSODA (R)12 (BHN BAKU OBAT) COA 122101134", "output": "28363000"}, {"text_input": "What is the hs code for AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-022631", "output": "38249999"}, {"text_input": "What is the hs code for ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-021820", "output": "38249999"}, {"text_input": "What is the hs code for CARBAMIDE (BHN BAKU KOSMETIK) COA U210805", "output": "38249999"}, {"text_input": "What is the hs code for COMPAREX (BHN BAKU KOSMETIK) COA COEX-031181", "output": "38249999"}, {"text_input": "What is the hs code for PF CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSSBD-011351", "output": "38249999"}, {"text_input": "What is the hs code for RUBUS IDAEUS FRUIT EXTRACT (BHN BAKU KOSMETIK) COA RCFW-020720", "output": "38249999"}, {"text_input": "What is the hs code for KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-041281", "output": "38249999"}, {"text_input": "What is the hs code for FD&C BLUE 2/INDIGO CARMINE AL 11 PCT - 14 PCT (BHN BAKU PEWARNA TABLET) COA WP837604", "output": "32151900"}, {"text_input": "What is the hs code for D&C YELLOW 10 AL 15 PCT - 20 PCT (BHN BAKU PEWARNA TABLET) COA WP831856", "output": "32151900"}, {"text_input": "What is the hs code for FD&C YELLOW 6/SUNSET YELLOW... (BHN BAKU PEWARNA TABLET) COA WP839965", "output": "32151900"}, {"text_input": "What is the hs code for FD&C YELLOW 5/TARTRAZINE AL... (BHN BAKU PEWARNA TABLET) COA WP833409", "output": "32151900"}, {"text_input": "What is the hs code for ERYTHROSINE AL 38 PCT - 42 PCT (BHN BAKU UTK PEWARNA TABLET) COA WP824673", "output": "32151900"}, {"text_input": "What is the hs code for D&C YELLOW 10 AL 15 PCT - 20 PCT (BHN BAKU PEWARNA TABLET) COA WP831856", "output": "32151900"}, {"text_input": "What is the hs code for MATCHA ( BHN BAKU KOSMETIK), COA CSP 21003 EOU", "output": "38249999"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040019", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040019", "output": "29420000"}, {"text_input": "What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00699076, VE00699077", "output": "29420000"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT21031049", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT21040018", "output": "29362100"}, {"text_input": "What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92107260, XW92107261", "output": "21069059"}, {"text_input": "What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000195881", "output": "29362900"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL02101747, TL02101752, TL02101762", "output": "29362700"}, {"text_input": "What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWDER FORM CATCOL C135(L) GRADE(B.BAKU KOSMETIK) COA 371/21", "output": "38249999"}, {"text_input": "What is the hs code for ETHAMBUTOL (BHN BAKU OBAT) COA N1037533,N1041088-N1041095,N1042458-N1042461,....", "output": "29221910"}, {"text_input": "What is the hs code for ALLOPURINOL USP (BHN BAKU OBAT) COA 20042AY3ARIIX", "output": "29335990"}, {"text_input": "What is the hs code for LIPOID PPL-600 (BHN BAKU SUPPLEMEN) COA 57200-2210229", "output": "29232010"}, {"text_input": "What is the hs code for METOCLOPRAMIDE HYDROCHLORIDE USP (BHN BAKU OBAT) COA 21005M4RII", "output": "29242990"}, {"text_input": "What is the hs code for METOCLOPRAMIDE HYDROCHLORIDE BP (BHN BAKU OBAT) COA M-2107415", "output": "29242990"}, {"text_input": "What is the hs code for MIAMI SCG(S) (BHN BAKU KOSMETIK) COA 21060455,21080555", "output": "34021190"}, {"text_input": "What is the hs code for FD&C RED 40/ALLURA RED AC AL38 PCT- 42 PCT (BHN BAKU PEWARNA TABLET) COA WP835349", "output": "32151900"}, {"text_input": "What is the hs code for PVAP - PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP843157", "output": "39059990"}, {"text_input": "What is the hs code for PVAP - PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP843515", "output": "39059990"}, {"text_input": "What is the hs code for PVAP - PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP843152", "output": "39059990"}, {"text_input": "What is the hs code for FD&C YELLOW 5/TARTRAZINE AL 36 PCT - 39 PCT (BHN BAKU PEWARNA TABLET) COA WP833410", "output": "32151900"}, {"text_input": "What is the hs code for FD&C YELLOW 6/SUNSET YELLOWFCF AL 38 PCT- 42 PCT (BHN BAKU PEWARNA TABLET) COA WP839969", "output": "32151900"}, {"text_input": "What is the hs code for D&C YELLOW 10 AL 15 PCT - 20 PCT (BHN BAKU PEWARNA TABLET) COA WP831856", "output": "32151900"}, {"text_input": "What is the hs code for ERYTHROSINE AL 38 PCT -42 PCT (BHN BAKU PEWARNA TABLET) COA WP822182", "output": "32151900"}, {"text_input": "What is the hs code for BIOBENEFITY (BHN BAKU KOSMETIK) COA 211041", "output": "13021990"}, {"text_input": "What is the hs code for COMFREY LIQUID B (BHN BAKU KOSMETIK), COA 210890", "output": "13021950"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK), COA 210884", "output": "13021990"}, {"text_input": "What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK),COA 211238", "output": "38249999"}, {"text_input": "What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 201330", "output": "13021950"}, {"text_input": "What is the hs code for BIOBENEFITY (BHN BAKU KOSMETIK) COA 211041", "output": "13021990"}, {"text_input": "What is the hs code for SOAPNUT EXTRACT POWDER (BHN BAKU KOSMETIK) COA 211309", "output": "13021990"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM REGULAR GRADE(BHN BAKU OBAT) COA 21071134,21081214,1215,1216,1217,1219,1220", "output": "29331900"}, {"text_input": "What is the hs code for IBUPROFEN (BHN BAKU OBAT) COA 21087493", "output": "29163990"}, {"text_input": "What is the hs code for C47-051 SUNCROMA TITANIUM DIOXIDE (BHN BAKU KOSMETIK) COA D0NT17", "output": "38249999"}, {"text_input": "What is the hs code for CEFOTAXIME SODIUM STERILE USP (BHN BAKU OBAT) COA A200300", "output": "29419000"}, {"text_input": "What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA A201000", "output": "29419000"}, {"text_input": "What is the hs code for COPPER SULFATE, POWDER, PH.EUR.10.ED (BHN BAKU SUPLEMEN) COA 3099671", "output": "28332500"}, {"text_input": "What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 10715,10716", "output": "38029090"}, {"text_input": "What is the hs code for KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 08-05-21", "output": "25070000"}, {"text_input": "What is the hs code for HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 3192764", "output": "33029000"}, {"text_input": "What is the hs code for CATECHINS TEAVIGO 1KG (BHN BAKU KOSMETIK), COA 105161", "output": "21012020"}, {"text_input": "What is the hs code for PREDNISONE USP42 (BHN BAKU OBAT) COA NPD210830", "output": "29372100"}, {"text_input": "What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE EP9/USP43 (BHN BAKU OBAT) COA NEDNA210801", "output": "29372200"}, {"text_input": "What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA EDS/CA14507", "output": "29349990"}, {"text_input": "What is the hs code for BOSWELLIA SERRATA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 21T0040100", "output": "38249999"}, {"text_input": "What is the hs code for EFFERSODA (R)12 (BHN BAKU OBAT) COA 122101136", "output": "28363000"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH648472", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH648473", "output": "38249999"}, {"text_input": "What is the hs code for METHOCEL A15 PREMIUM LV (BHN BAKU PEWARNA TABLET) COA D180K57021", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D180K3O001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYLMETHYLCELLUL(BHN BAKU PEWARNA TABLET) COA D180KBO002", "output": "39123900"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 20 PREMIUM (BHN BAKU PEWARNA TABLET) COA D184L1J021", "output": "39123900"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 20 PREMIUM (BHN BAKU PEWARNA TABLET) COA D184L1J021", "output": "39123900"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 20 PREMIUM (BHN BAKU PEWARNA TABLET) COA D184L1J021", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D180L51022", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D011K72L01", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D011K4PL02", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D180K61001", "output": "39123900"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 10 PREMIUM (BHN BAKU PEWARNA TABLET) COA D184L3B021", "output": "39123900"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 10 PREMIUM (BHN BAKU PEWARNA TABLET) COA D184K9A021", "output": "39123900"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP20221, MTP20321", "output": "28363000"}, {"text_input": "What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT21040012, UT21040013", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT21040032", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 30 PCT FS (BHN BAKU MAKANAN) COA UE02105041", "output": "32041900"}, {"text_input": "What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT21060018", "output": "29362500"}, {"text_input": "What is the hs code for B-CAROTENE 30 PCT FS (BHN BAKU MAKANAN) COA UE02105041,UE02105042", "output": "32041900"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ10316049,UQ10316050,UQ10316051", "output": "29362700"}, {"text_input": "What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT21060018", "output": "29362500"}, {"text_input": "What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT21060018", "output": "29362500"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL02105566", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02105566", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT21070033", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN B12 0.1 PCT WS (BHN BAKU SUPPLEMEN) COA UT20100060,UT20100061", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT21061085", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 30 PCT FS (BHN BAKU SUPPLEMEN) COA UE02105042", "output": "32041900"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5 PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT21020013", "output": "32030010"}, {"text_input": "What is the hs code for OPTISHARP (ZEAXANTHIN) 5 PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT18100002", "output": "32041900"}, {"text_input": "What is the hs code for NORFLOXACIN (BHN BAKU PAKAN HEWAN) COA 210327,210328", "output": "29335990"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH648757", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH648763", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2 PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0039100", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2 PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0039200", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2 PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0052600", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2 PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0052700", "output": "13021990"}, {"text_input": "What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334752", "output": "29419000"}, {"text_input": "What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340310, B340311,B340312", "output": "29419000"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG210723,MCVG210730", "output": "29362700"}, {"text_input": "What is the hs code for MANNOGEM (R) XL OPAL SPRAY DRIED MANNITOL USP/EP (BHN BAKU OBAT) COA 122101074", "output": "29054300"}, {"text_input": "What is the hs code for PVAP - PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP843718", "output": "39059990"}, {"text_input": "What is the hs code for PVAP - PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP843719", "output": "39059990"}, {"text_input": "What is the hs code for FD&C YELLOW 6/SUNSET YELLOW FCF AL 38 PCT- 42 PCT (BHN BAKU PEWARNA TABLET) COA WP831242", "output": "32151900"}, {"text_input": "What is the hs code for D&C YELLOW 10 AL 15 PCT - 20 PCT (BHN BAKU PEWARNA TABLET) COA WP844748", "output": "32151900"}, {"text_input": "What is the hs code for D&C YELLOW 10 AL 15 PCT - 20 PCT (BHN BAKU PEWARNA TABLET) COA WP844748", "output": "32151900"}, {"text_input": "What is the hs code for FD&C YELLOW 5/TARTRAZINE AL36 PCT - 39 PCT (BHN BAKU PEWARNA TABLET) COA WP833409", "output": "32151900"}, {"text_input": "What is the hs code for FD&C BLUE 2/INDIGO CARMINE AL30 PCT- 36 PCT (BHN BAKU PEWARNA TABLET) COA WP837609", "output": "32151900"}, {"text_input": "What is the hs code for ERYTHROSINE AL 38 PCT-42 PCT (BHN BAKU PEWARNA TABLET) COA WP822181", "output": "32151900"}, {"text_input": "What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 107164", "output": "38249999"}, {"text_input": "What is the hs code for KSG-210 (16KG) (BHN BAKU KOSMETIK) COA 104950", "output": "38249999"}, {"text_input": "What is the hs code for KSG-710 (16KG) (BHN BAKU KOSMETIK) COA 105425", "output": "38249999"}, {"text_input": "What is the hs code for KSP-101 (15KG) (BHN BAKU KOSMETIK) COA 106405", "output": "38249999"}, {"text_input": "What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) COA 105025", "output": "38249999"}, {"text_input": "What is the hs code for KP-561P (16KG) (BHN BAKU KOSMETIK) COA 104138", "output": "38249999"}, {"text_input": "What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) COA 107873", "output": "38249999"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1148199", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1160739", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1160733", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1182004", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE CHROMAGAR CANDIDA 500GM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1097086", "output": "38210090"}, {"text_input": "What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM(MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1117839,48,1167524,830", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BORDET GENGOU AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0272029", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1201394", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283759", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1188932", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1159422", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1140190", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1047444", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GLYCEROL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1181694", "output": "38210090"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1046365", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1124600", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BLOOD AGAR BASE 500 G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0286355", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LEVINE EMB AGAR 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 1019596", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0315698", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0286434", "output": "38210090"}, {"text_input": "What is the hs code for BOTLE LYSINE DECARBOXYLASE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0272792", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1081408", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1133957", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1179332", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1033190", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283868", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1188932", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1103628", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335617", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1111027", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1138027", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1103638", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1111132", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1081518", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1042590", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1132546", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1166778", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1074280", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1097917", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500 G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1081510", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0293747", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1048461", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1019484", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1097054", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0350990,1145029", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0322946", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1047444", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1042865", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALT EXTRACT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1138882", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKIROORGANISME) BATCH 0273380", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0062865", "output": "38210090"}, {"text_input": "What is the hs code for PAIL BACTO AGAR 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1131476", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MED 3 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9112920", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BORDET GENGOU AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1172498", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1082936", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1042613", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1166546", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MICRO INOCULUM BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1075951", "output": "38210090"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1046365", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1019596", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1188932", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1103628", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1103638", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1042590", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1097917", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1097054", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BIGGY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1166930", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PHENOL RED LACTOSE BR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1081551", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9218592", "output": "38210090"}, {"text_input": "What is the hs code for BOTLE LYSINE DECARBOXYLASE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0272792", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0062865", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1040332", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0294294", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1111035", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1068956", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1042613", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1068885", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1201123", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1208830", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335617", "output": "38210090"}, {"text_input": "What is the hs code for MECOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/0721031", "output": "29362600"}, {"text_input": "What is the hs code for FERROUS SULFATE, DRIED, POWDER, USP 43(BHN BAKU OBAT) COA 3092988", "output": "28332920"}, {"text_input": "What is the hs code for SALBUTAMOL SULFATE BP (BHN BAKU OBAT) COA 021F051", "output": "29225090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1048171", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SHIGELLA ANTIS POLY C1 LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0345561", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL H ANTISERUM B 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0240783", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SHIGELLA ANTIS POLY A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0198678", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SHIGELLA ANTIS POLY D LYOPHILIZE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9172946", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS GRP B FTR 1/4/5/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0205165", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTISERUM GRP C1 FTR 6/7 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0281783", "output": "38210090"}, {"text_input": "What is the hs code for VIAL E COLI O ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0094884", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1145576", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1110880", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1131086", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1131086", "output": "38210090"}, {"text_input": "What is the hs code for VIAL E COLI H ANTISERUM H7 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0212196", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ANAEROBE ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1145576", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1063145", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1221115", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1098974,110...", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1063145", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1126127", "output": "38210090"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1070093", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1053886", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0065943,112322", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1126127", "output": "38210090"}, {"text_input": "What is the hs code for CLOMIPHENE CITRATE USP/EP (BHN BAKU OBAT ) COA 202107190216", "output": "29221990"}, {"text_input": "What is the hs code for HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2510721", "output": "29391900"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH648099", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH648100", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH648065", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH647842", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH648073", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH648072", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH648069", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH648071", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH648067", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH648059", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH648166", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH647522", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH648068", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH648050", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY RED (BHN BAKU PEWARNA TABLET) COA SH648051", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH648052", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH648074", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB RED (BHN BAKU PEWARNA TABLET) COA SH648079", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH648075", "output": "38249999"}, {"text_input": "What is the hs code for MIRASIL DM 5 L (BHN BAKU KOSMETIK) COA 2132FF2615,21092PN115,2132FF2315", "output": "39100090"}, {"text_input": "What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105712321", "output": "17021100"}, {"text_input": "What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105712321", "output": "17021100"}, {"text_input": "What is the hs code for ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (SB) (BHN BAKU KOSMETIK)COA ROSD210603-BIO", "output": "38249999"}, {"text_input": "What is the hs code for DANDRILYS (NAT) (BHN BAKU KOSMETIK) COA DAN210604-Z", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210603", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210603", "output": "38249999"}, {"text_input": "What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK)COA VIV201202-BGBIO", "output": "38249999"}, {"text_input": "What is the hs code for KIGELINE (BHN BAKU KOSMETIK)COA KA210504-B", "output": "38249999"}, {"text_input": "What is the hs code for LICORICE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA GLG210301-BGBIO", "output": "38249999"}, {"text_input": "What is the hs code for WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK)COA EG138-19060", "output": "38249999"}, {"text_input": "What is the hs code for WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK)COA EG138-191002", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO210703", "output": "38249999"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA210201", "output": "38249999"}, {"text_input": "What is the hs code for GREENSIL (BHN BAKU KOSMETIK) GS210702-I", "output": "38249999"}, {"text_input": "What is the hs code for GREENSIL (BHN BAKU KOSMETIK) GS210703-I", "output": "38249999"}, {"text_input": "What is the hs code for OLIVE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA OLE2108R1", "output": "38249999"}, {"text_input": "What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 210695", "output": "13021990"}, {"text_input": "What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1068182", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1138838", "output": "38210090"}, {"text_input": "What is the hs code for CINNARIZINE (BHN BAKU OBAT) COA CIN2108101", "output": "29335990"}, {"text_input": "What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 2109431763", "output": "29362600"}, {"text_input": "What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 2109331509", "output": "29362600"}, {"text_input": "What is the hs code for PROMETHAZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA HPHCPP023", "output": "29343000"}, {"text_input": "What is the hs code for BIOBENEFITY (BHN BAKU KOSMETIK) COA 211519", "output": "13021990"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 211404", "output": "38249999"}, {"text_input": "What is the hs code for CUREPASSION (BHN BAKU KOSMETIK) COA 210905", "output": "13021990"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 211215", "output": "13021990"}, {"text_input": "What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 211349", "output": "13021990"}, {"text_input": "What is the hs code for BIOBENEFITY (BHN BAKU KOSMETIK) COA 211519", "output": "13021990"}, {"text_input": "What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 210550", "output": "29329990"}, {"text_input": "What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 211412", "output": "38249999"}, {"text_input": "What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 211095", "output": "13021990"}, {"text_input": "What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 211773", "output": "13021990"}, {"text_input": "What is the hs code for NICLOSAMIDE (BHN BAKU PAKAN HEWAN) COA 20210808", "output": "29242990"}, {"text_input": "What is the hs code for POVIDONE K-25 (BHN BAKU OBAT), COA PK25-210513F32", "output": "39059990"}, {"text_input": "What is the hs code for CROSPOVIDONE XL-10 (BHN BAKU OBAT), COA PP210622XL-10", "output": "39059990"}, {"text_input": "What is the hs code for EMPTY FIBRE DRUM, FREE OF COST SAMPLE NO COMMERCIAL VALUE", "output": "48192000"}, {"text_input": "What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2021040501", "output": "21012020"}, {"text_input": "What is the hs code for OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH648361", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH648362", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH648363", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH648423", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH648364", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH648512", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH648071", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH648067", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH648366", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH648372", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GRAY (BHN BAKU PEWARNA TABLET) COA SH648367", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH648375", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH648368", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II CLEAR (BHN BAKU PEWARNA TABLET) COA SH648373", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB MAROON (BHN BAKU PEWARNA TABLET) COA SH648369", "output": "38249999"}, {"text_input": "What is the hs code for LABRAFIL M 1944 CS BF (BAHAN BAKU OBAT) COA 184833", "output": "28399000"}, {"text_input": "What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 185845", "output": "28399000"}, {"text_input": "What is the hs code for PRECIROL ATO 5 (BAHAN BAKU OBAT) COA 184931", "output": "28399000"}, {"text_input": "What is the hs code for GELOIL SC (BHN BAKU OBAT) COA 185392", "output": "28399000"}, {"text_input": "What is the hs code for EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300013,10300014", "output": "13021950"}, {"text_input": "What is the hs code for D&C GREEN NO.5 C.I.61570 FDA CERTIFIED (BHN BAKU KOSMETIK) COA 10300039", "output": "13021950"}, {"text_input": "What is the hs code for STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN544228", "output": "35051010"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (POST BORDER) COA QZ11210435", "output": "29362500"}, {"text_input": "What is the hs code for NIACINAMIDE PC (POST BORDER) COA 0000197488,0000197489", "output": "29362900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (POST BORDER) COA UT21050139,UT21050150,UT21070205", "output": "29362800"}, {"text_input": "What is the hs code for NIACINAMIDE PC (POST BORDER) COA 0000197488", "output": "29362900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (POST BORDER) COA UT21050139", "output": "29362800"}, {"text_input": "What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF21092004", "output": "29420000"}, {"text_input": "What is the hs code for GINKGO LEAVES EXTRACT (BHN BAKU KOSMETIK) COA 21070747", "output": "13021950"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (POST BORDER) COA UT21040137", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (POST BORDER) COA UT21040137", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN PREMIX MILK POWDER FOR ADULTS (POST BORDER) COA XW92107434", "output": "21069059"}, {"text_input": "What is the hs code for PX 204005 (POST BORDER) COA XW92107435", "output": "21069059"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (POST BORDER) COA QZ11210407,QZ11210434", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (POST BORDER) COA UT21040141", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (POST BORDER) COA UT21040141", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (POST BORDER) COA UT21040141", "output": "29362900"}, {"text_input": "What is the hs code for B-CAROTENE 10 PCT CWS (POST BORDER) COA UT20120055", "output": "32041900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (POST BORDER) COA UT21040099", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (POST BORDER) COA UT21020013", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN K1 (POST BORDER) COA SI21040009", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3 PCT (POST BORDER) COA WB20030171", "output": "29362900"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL-ACETATE (POST BORDER) COA XH20210401", "output": "29362800"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (POST BORDER) COA QZ11210435", "output": "29362500"}, {"text_input": "What is the hs code for NIACINAMIDE (POST BORDER) COA OP12107007", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3 PCT (POST BORDER) COA WB20030074", "output": "29362200"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (POST BORDER) COA TL02102028,TL02102036", "output": "29362700"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (POST BORDER) COA TL02103186", "output": "29362700"}, {"text_input": "What is the hs code for DRY VITAMIN E 50 PCT CWS/S (POST BORDER) COA UT21040012", "output": "29362800"}, {"text_input": "What is the hs code for D-PANTHENOL (POST BORDER) COA TL02102012", "output": "29362400"}, {"text_input": "What is the hs code for NIACINAMIDE FCC (POST BORDER) COA 0000195881", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN PREMIX FOR FERMENTED MILK (POST BORDER) COA XW92108022", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN PREMIX MENGNIU UHT MILK (POST BORDER) COA XW92108115", "output": "21069059"}, {"text_input": "What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105712321", "output": "17021100"}, {"text_input": "What is the hs code for STARLAC (R) (BHN BAKU OBAT) COA L104265320", "output": "17021100"}, {"text_input": "What is the hs code for SORBOLAC (R) 400 (BHN BAKU OBAT) COA L103842621", "output": "17021100"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH648757", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH648423", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH648777", "output": "38249999"}, {"text_input": "What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122101211", "output": "29054300"}, {"text_input": "What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU UTK PAKAN TERNAK) COA 202100544", "output": "28183000"}, {"text_input": "What is the hs code for ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-032861", "output": "38249999"}, {"text_input": "What is the hs code for SOPHORA ROOT POWDER (BHN BAKU KOSMETIK)COA SFP-N-051851", "output": "38249999"}, {"text_input": "What is the hs code for WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-030651,HMVBD-042481", "output": "38249999"}, {"text_input": "What is the hs code for CACTUS EXTRACT (BHN BAKU KOSMETIK) COA CAB-020321", "output": "38249999"}, {"text_input": "What is the hs code for SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 081321", "output": "28321000"}, {"text_input": "What is the hs code for BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012711,BHA-021781", "output": "38249999"}, {"text_input": "What is the hs code for LICORICE EXTRACT (BHN BAKU KOSMETIK) COA GGB-011641", "output": "38249999"}, {"text_input": "What is the hs code for SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) 081321", "output": "28321000"}, {"text_input": "What is the hs code for TRANEXAMIC ACID (BHN BAKU KOSMETIK) COA AC210601", "output": "38249999"}, {"text_input": "What is the hs code for HOCOX (BHN BAKU KOSMETIK) COA HOXB-072081", "output": "38249999"}, {"text_input": "What is the hs code for BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-021781", "output": "38249999"}, {"text_input": "What is the hs code for MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-011151", "output": "38249999"}, {"text_input": "What is the hs code for OLIGO-HA (BHN BAKU KOSMETIK)COA OHA-113081", "output": "38249999"}, {"text_input": "What is the hs code for SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-021081", "output": "38249999"}, {"text_input": "What is the hs code for SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 083021", "output": "28321000"}, {"text_input": "What is the hs code for SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 082421", "output": "28321000"}, {"text_input": "What is the hs code for FLORAGLO (R) LUTEIN 20 PCT SAF (POST BORDER) COA UE02106008", "output": "32030010"}, {"text_input": "What is the hs code for VC ASCORBIC ACID 325 MESH (POST BORDER) COA HPD2105074,065,058,052,037,033,027,025,023,..", "output": "29362700"}, {"text_input": "What is the hs code for VC ASCORBIC ACID 325 MESH (POST BORDER) COA HPD2105074,088,101,111,116,121,123,126,127,..", "output": "29362700"}, {"text_input": "What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 702018037K", "output": "38249999"}, {"text_input": "What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799039054M", "output": "38249999"}, {"text_input": "What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 2021114", "output": "38249999"}, {"text_input": "What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019186M", "output": "38249999"}, {"text_input": "What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019287M", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5 PCT CLEAR (BHN BAKU KOSMETIK) COA 785019289M", "output": "38249999"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019143M", "output": "38249999"}, {"text_input": "What is the hs code for PROGELINE TM (BHN BAKU KOSMETIK) COA 203149R", "output": "39139090"}, {"text_input": "What is the hs code for BODY_3 COMPLEX TM (BHN BAKU KOSMETIK) COA B3C020421", "output": "38249999"}, {"text_input": "What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769019234M", "output": "39139090"}, {"text_input": "What is the hs code for ECOSLIM TM (BHN BAKU KOSMETIK) COA 2114201", "output": "38249999"}, {"text_input": "What is the hs code for MINIPORYL TM (BHN BAKU KOSMETIK) COA 832019290M", "output": "38249999"}, {"text_input": "What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) COA 2103116", "output": "38249999"}, {"text_input": "What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029189M", "output": "39139090"}, {"text_input": "What is the hs code for TYROSTAT TM (BHN BAKU KOSMETIK) COA 784029189M", "output": "39139090"}, {"text_input": "What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP(BHN BAKU OBAT) COA 102102033", "output": "28183000"}, {"text_input": "What is the hs code for SUPPOCIRE A PELLETS (BHN BAKU OBAT) COA 21E1705", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 21E0801", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 21E1110", "output": "28399000"}, {"text_input": "What is the hs code for CANDESARTAN (BAHAN BAKU OBAT ) COA 5668-20-437", "output": "29339990"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE BP (BHN BAKU OBAT) COA 20060821,20100821", "output": "29359000"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 19970821,20030821,19990821,20050821,...", "output": "29359000"}, {"text_input": "What is the hs code for FLORAGLO (R) LUTEIN 20 PCT SAF (POST BORDER) COA UE02106008", "output": "32030010"}, {"text_input": "What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP19021,MTP20321", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP19721", "output": "28363000"}, {"text_input": "What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1083193", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2260443", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2260443", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2242841", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2242841", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1004958", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1004958", "output": "38210090"}, {"text_input": "What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0022270", "output": "38210090"}, {"text_input": "What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0175474", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0343138", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0343138", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0343138", "output": "38210090"}, {"text_input": "What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105712421", "output": "17021100"}, {"text_input": "What is the hs code for MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103150821", "output": "17021100"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122101135", "output": "28363000"}, {"text_input": "What is the hs code for VITAMIN B12 0.1 PCT WS (BHN BAKU SUPPLEMEN) COA UT20100061", "output": "29362600"}, {"text_input": "What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT21060019", "output": "29362500"}, {"text_input": "What is the hs code for B-CAROTENE 10 PCT EM YELLOW (BHN BAKU MAKANAN) COA UT21020002", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT21061087", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 30 PCT FS (BHN BAKU SUPPLEMEN) COA UE02105042", "output": "32041900"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5 PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT21020013", "output": "32030010"}, {"text_input": "What is the hs code for BETATAB 20 PCT S (BHN BAKU SUPPLEMEN) COA UT21050013", "output": "32041900"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122100927", "output": "28363000"}, {"text_input": "What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122100871", "output": "29054300"}, {"text_input": "What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122100871", "output": "29054300"}, {"text_input": "What is the hs code for RANITIDINE HCL USP (BHN BAKU OBAT) COA RH558 08 21, RH559 08 21", "output": "29321900"}, {"text_input": "What is the hs code for RANITIDINE HCL USP (BHN BAKU OBAT) COA RH560 08 21,RH565 08 21", "output": "29321900"}, {"text_input": "What is the hs code for RANITIDINE HCL USP (BHN BAKU OBAT) COA RH613 08 21,RH614 08 21,RH615 08 21", "output": "29321900"}, {"text_input": "What is the hs code for TRISODIUMCITRATE DIHYDRATE FINE GRANULAR (BHN BAKU MAKANAN) COA UJ125,UJ126", "output": "29181400"}, {"text_input": "What is the hs code for ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (BHN BAKU KOSMETIK) COA ROSD210603-BIO", "output": "38249999"}, {"text_input": "What is the hs code for ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (BHN BAKU KOSMETIK) COA ROSD210704-BIO", "output": "38249999"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA210802", "output": "38249999"}, {"text_input": "What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA VIV201202-BGBIO", "output": "39139090"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210802", "output": "38249999"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV (BHN BAKU PEWARNA TABLET) COA D011L3IL02", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM (BHN BAKU PEWARNA TABLET) COA D180L4K001", "output": "39123900"}, {"text_input": "What is the hs code for VC CALCIUM ASCORBATE DC (POST BORDER) COA HPT2105028", "output": "29362700"}, {"text_input": "What is the hs code for OPALUX MAROON (BHN BAKU PEWARNA TABLET) COA DT719099", "output": "32151900"}, {"text_input": "What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET) COA DT717312", "output": "32151900"}, {"text_input": "What is the hs code for OPACODE GOLD (BHN BAKU PEWARNA TABLET) COA DT719053", "output": "32151900"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SHF", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA SGC", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS SILK-1000 (BHN BAKU KOSMETIK) COA SFC", "output": "38249999"}, {"text_input": "What is the hs code for NYSTATIN POWDER ROW GRADE (BHN BAKU OBAT) COA C114532", "output": "29419000"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0217346", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1047444", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1081578", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1216783", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1216783", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1200358", "output": "38210090"}, {"text_input": "What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2111335", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ CO2 CONTAINER, BATCH 1208821", "output": "38210090"}, {"text_input": "What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 210030900", "output": "38210090"}, {"text_input": "What is the hs code for OPTISHARP NAT ZEA 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA EW21025003", "output": "32041900"}, {"text_input": "What is the hs code for REDIVIVO (R) (LYCOPENE) 10 PCT FS (BHN BAKU SUPPLEMEN) COA UE02104002", "output": "29420000"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT21040032", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U/G (BHN BAKU MAKANAN) COA UT21070034", "output": "29362100"}, {"text_input": "What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-002-Y", "output": "13021990"}, {"text_input": "What is the hs code for PURIDROX POWDER (BHN BAKU OBA) COA B334774,B334775,B334777", "output": "29419000"}, {"text_input": "What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 210324", "output": "13021990"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 210602,210618", "output": "13021950"}, {"text_input": "What is the hs code for PERMETHRIN (PHARMA GRADE) BHN BAKU OBAT COA 215046008,215046009", "output": "29163990"}, {"text_input": "What is the hs code for AZITHROMYCIN (BHN BAKU OBAT) COA 129-210612-1", "output": "29419000"}, {"text_input": "What is the hs code for CROSPOVIDONE XL (BHN BAKU OBAT), COA PP210415XL", "output": "39059990"}, {"text_input": "What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-200607", "output": "29397900"}, {"text_input": "What is the hs code for PARACETAMOL (BHN BAKU OBAT) COA 2110189Z", "output": "29242930"}, {"text_input": "What is the hs code for PREDNISONE USP42 (BHN BAKU OBAT) COA NPD210814", "output": "29372100"}, {"text_input": "What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE EP9/USP43 (BHN BAKU OBAT) COA NEDNA210805", "output": "29372200"}, {"text_input": "What is the hs code for SODIUM FEREDETATE, POWDER, BP2021 (BHN BAKU OBAT) COA 3100051", "output": "29224900"}, {"text_input": "What is the hs code for FERRIC PYROPHOSPHATE,24.0-26.0 PCT FE (BHN BAKU MAKANAN) COA 3101651", "output": "28353990"}, {"text_input": "What is the hs code for TREHALOSE (BHN BAKU MAKANAN) COA 20210905", "output": "29400000"}, {"text_input": "What is the hs code for OPADRY FX YELLOW (BHN BAKU PEWARNA OBAT) COA GA695798", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY SGR TRANSLUCENT (BHN BAKU PEWARNA TABLET) COA GA695796", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY SGR CLEAR (BHN BAKU PEWARNA TABLET) COA GA695797", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY FX YELLOW (BHN BAKU PEWARNA OBAT) COA GA695798", "output": "38249999"}, {"text_input": "What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-002-Y", "output": "38249999"}, {"text_input": "What is the hs code for SURELEASE ETHYLCELLULOSE DISPERSION TYPE B NF CLEAR (BHN BAKU PEWARNA TABLET) COA IN545428", "output": "32151900"}, {"text_input": "What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512130", "output": "47069200"}, {"text_input": "What is the hs code for ZINC GLYCINATE (BHN BAKU UTK PAKAN TERNAK) COA 62039", "output": "29224900"}, {"text_input": "What is the hs code for MANGANESE GLYCINATE (BHN BAKU UTK PAKAN TERNAK) COA 62040", "output": "29224900"}, {"text_input": "What is the hs code for EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) COA 1571128", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 10 CAN 10 KG (BHN BAKU KOSMETIK) COA 1571322", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) COA 1571186,1571422,1571403", "output": "38249999"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT21040032,UT21070033", "output": "29362100"}, {"text_input": "What is the hs code for OPACODE S-1-277005 BLACK (BHN BAKU PEWARNA TABLET) COA TKL58703", "output": "32151900"}, {"text_input": "What is the hs code for PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 030221/006855", "output": "38249999"}, {"text_input": "What is the hs code for PEONY P118 182 (BHN BAKU KOSMETIK) COA 3192765", "output": "33029000"}, {"text_input": "What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA MLAH0510721", "output": "29341000"}, {"text_input": "What is the hs code for CURCUMA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 21S0176508", "output": "13021990"}, {"text_input": "What is the hs code for BOSWELLIA SERRATA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 21T0029500", "output": "13021990"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT21040099,UT21050145", "output": "29362800"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02102019", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU MAKANAN) COA UT21020204,UT21020206", "output": "29362100"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040019", "output": "29420000"}, {"text_input": "What is the hs code for D-PANTHENOL 75 L (BHN BAKU KOSMETIK) COA TL02105318", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0421040024", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040024", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0821010129", "output": "29420000"}, {"text_input": "What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02101008", "output": "29362700"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02105006", "output": "29362900"}, {"text_input": "What is the hs code for PREMIX VMP JELLY (BHN BAKU MAKANAN) COA XW92108005", "output": "21069059"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3 PCT (BHN BAKU SUPPLEMEN) COA WB21050185", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3 PCT (BHN BAKU SUPPLEMEN) COA WB21050185", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21040007", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21050103", "output": "29362400"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21050103", "output": "29362400"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPPLEMEN) COA UQ10513180", "output": "29362200"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21050103", "output": "29362400"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02105006", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21050103", "output": "29362400"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02105006", "output": "29362900"}, {"text_input": "What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK) COA 8483300", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH648910", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH648899", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH648913", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH648900", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH648518", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH648902", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH648164", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH649393", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH648904", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH648905", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH648914", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH648906", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH648960", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH648960", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY 200 BROWN (BHN BAKU PEWARNA TABLET) COA SH648954", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH648955", "output": "38249999"}, {"text_input": "What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP(BHN BAKU OBAT) COA 102102033,102102035", "output": "28183000"}, {"text_input": "What is the hs code for POTASSIUM IODIDE AND CARRIER (BHN BAKU OBAT) COA 3104535", "output": "28276000"}, {"text_input": "What is the hs code for CHOLINE L-BITARTRATE (BAHAN BAKU OBAT) COA 3023195", "output": "29231000"}, {"text_input": "What is the hs code for EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300054", "output": "13021940"}, {"text_input": "What is the hs code for ACTIPONE (R) CAMU CAMU ET (BHN BAKU KOSMETIK) COA 10300023", "output": "13021950"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG210813,MCVG210820", "output": "29362700"}, {"text_input": "What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-0450621,S-A-0460621", "output": "29334910"}, {"text_input": "What is the hs code for FERROUS GLUCONATE, POWDER, PH.EUR.10.ED. (BHN BAKU OBAT) COA 3100740", "output": "29181600"}, {"text_input": "What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET) COA DT719212", "output": "32151900"}, {"text_input": "What is the hs code for OPASPRAY YELLOW (BHN BAKU PEWARNA TABLET) COA DT718563", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY TF GREEN (BHN BAKU PEWARNA TABLET) COA DT719213", "output": "38249999"}, {"text_input": "What is the hs code for AQUACOAT ECD-30 ETHYLCELLULOSE AQUEOUS... (BHN BAKU PEWARNA TABLET) COA 2173877225", "output": "39123900"}, {"text_input": "What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102169005", "output": "28161000"}, {"text_input": "What is the hs code for MIAMI SCG(S) (BHN BAKU KOSMETIK) COA 21080555,21092155", "output": "34021190"}, {"text_input": "What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK) COA 2108EF4511", "output": "29224900"}, {"text_input": "What is the hs code for LIFE'S DHA(TM) S35-O300 (BHN BAKU SUPLEMEN) COA VY00428508", "output": "29362500"}, {"text_input": "What is the hs code for LIFE'S DHA S35-O100 (BHN BAKU SUPLEMEN) COA VY00383107", "output": "29362500"}, {"text_input": "What is the hs code for MANNOGEM (R) XL OPAL SPRAY DRIED MANNITOL USP/EP (BHN BAKU OBAT) COA 122101075", "output": "29054300"}, {"text_input": "What is the hs code for SURELEASE ETHYLCELLULOSE DISPERSION TYPE B NF CLEAR (BHN BAKU PEWARNA TABLET) COA IN545428", "output": "32151900"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-042481", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-042481", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-140191", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND NEWAPLE (BHN BAKU KOSMETIK) COA NWPB-020681", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012781", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SENAS (BHN BAKU KOSMETIK) COA NASB-011441,NASB-031281", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE 1 PCT SOLUTION (BHN BAKU KOSMETIK) COA HASC-130841", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-042481", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK)COA BAG-032861", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND NEWAPLE (BHN BAKU KOSMETIK) COA NWPB-020681", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-072081", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-120891", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH647897", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA SH647139", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA SH647665", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH647293", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH647583", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH647584", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH648277", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH648277", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH647586", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH646139", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH647230", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH647619", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH647620", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH647587", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH647588", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH647589", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH647591", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH647592", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II CLEAR (BHN BAKU PEWARNA TABLET) COA SH647621", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH647137", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH647593", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH647594", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH646416", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH647700", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II PURPLE (BHN BAKU PEWARNA TABLET) COA SH647634", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY PURPLE (BHN BAKU PEWARNA TABLET) COA SH647595", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH647596", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY YELLOW (BHN BAKU PEWARNA TABLET) COA SH647117", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH647115", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH647624", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH647599", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY YELLOW (BHN BAKU PEWARNA TABLET) COA SH647600", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BLACK (BHN BAKU PEWARNA TABLET) COA SH647626", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH647627", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH647633", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH647107", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH647601", "output": "38249999"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB180721", "output": "39123900"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B140621", "output": "39123900"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B140621", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB180721", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LG240621", "output": "39123900"}, {"text_input": "What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0057767", "output": "38249999"}, {"text_input": "What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 06092021", "output": "25081000"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040019", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK)COA 0708200129,0708200176 SD 0708200180,0708210001 SD 0708210002", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040024", "output": "29420000"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21070210", "output": "29362800"}, {"text_input": "What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0921020004", "output": "29420000"}, {"text_input": "What is the hs code for VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92108197", "output": "21069059"}, {"text_input": "What is the hs code for MINERAL PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92108198", "output": "21069059"}, {"text_input": "What is the hs code for DRY VITAMIN E 50 PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21040020,UT21040021", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21040007", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21040007", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040009", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12107007", "output": "29362900"}, {"text_input": "What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92108257,XW92108258", "output": "21069059"}, {"text_input": "What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA 20210911", "output": "17023010"}, {"text_input": "What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1123046", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1123046", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1166662", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2260443", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2355402", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2242841", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2305551", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1004958", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1004958", "output": "38210090"}, {"text_input": "What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0175474", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0343138", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0343138", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1046607", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1046607", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1046607", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0365879", "output": "38210090"}, {"text_input": "What is the hs code for DIFCO BEEF EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0182357", "output": "38210090"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH649742", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH649125", "output": "38249999"}, {"text_input": "What is the hs code for ASTABIO ARV-S (BHN BAKU OBAT) COA 2108041", "output": "32030010"}, {"text_input": "What is the hs code for SORBITOL SOLUTION 70PCT CRYSTALLIZING (BHN BAKU KOSMETIK) COA 2122P332", "output": "29054400"}, {"text_input": "What is the hs code for SORBITOL SOLUTION 70PCT CRYSTALLIZING (BHN BAKU KOSMETIK) COA 2122P332", "output": "29054400"}, {"text_input": "What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102169005", "output": "28161000"}, {"text_input": "What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102169005", "output": "28161000"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500 AF (BHN BAKU SUPLEMEN) COA WB21070044", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500 AF (BHN BAKU SUPLEMEN) COA WB21070035", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500 AF (BHN BAKU SUPLEMEN) COA WB21070035", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPLEMEN) COA WB21020738,WB21080755", "output": "29362800"}, {"text_input": "What is the hs code for OPTISHARP NAT. ZEA. 14 PCT SAFF. (BHN BAKU SUPLEMEN) COA 2107108366", "output": "32041900"}, {"text_input": "What is the hs code for EUXYL K 900 (BHN BAKU KOSMETIK) COA 1571128", "output": "38249999"}, {"text_input": "What is the hs code for MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50397", "output": "29061100"}, {"text_input": "What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019287M", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5 PCT CLEAR (BHN BAKU KOSMETIK) COA 785019479M", "output": "38249999"}, {"text_input": "What is the hs code for EXO-P TM (BHN BAKU KOSMETIK) COA 715038112L", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2105706", "output": "38249999"}, {"text_input": "What is the hs code for PROGELINE TM (BHN BAKU KOSMETIK) COA 203149R", "output": "39139090"}, {"text_input": "What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799039054M", "output": "38249999"}, {"text_input": "What is the hs code for BODY_3 COMPLEX TM (BHN BAKU KOSMETIK) COA B3C030721", "output": "38249999"}, {"text_input": "What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769019234M", "output": "39139090"}, {"text_input": "What is the hs code for CW-5C 5 PCT CLEAR (BHN BAKU KOSMETIK) COA 785019479M", "output": "38249999"}, {"text_input": "What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA EDS/CA14606", "output": "29349990"}, {"text_input": "What is the hs code for FERROUS SULFATE,DRIED, POWDER, USP43 (BHN BAKU SUPLEMEN) COA 3081610", "output": "28332920"}, {"text_input": "What is the hs code for ZINC SULFATE 7-HYDRATE, POWDER, USP 43 (BHN BAKU OBAT) COA 3102250", "output": "28332920"}, {"text_input": "What is the hs code for MAGNESIUM CARBONATE, HEAVY (BHN BAKU OBAT) COA 1104812", "output": "28369990"}, {"text_input": "What is the hs code for MAGNESIUM L-HYDROGENASPARTATE 2-HYDRATE (BHN BAKU OBAT) COA 3083564-9", "output": "29224900"}, {"text_input": "What is the hs code for ZINC SULFATE 1-HYDRATE, POWDER,USP 43 (BHN BAKU OBAT) COA 3102250", "output": "28332920"}, {"text_input": "What is the hs code for FERROUS GLUCONATE, POWDER, USP 43 (BHN BAKU OBAT) COA 3091589", "output": "29181600"}, {"text_input": "What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 21290019", "output": "30039000"}, {"text_input": "What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 21290019", "output": "30039000"}, {"text_input": "What is the hs code for METHISOPRINOL (BHN BAKU OBAT) COA MTP1080390,MTP1090420", "output": "29349990"}, {"text_input": "What is the hs code for MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103152821", "output": "17021100"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544753", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544733", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544773", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544835", "output": "35051010"}, {"text_input": "What is the hs code for MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HA00989,HA01033", "output": "34021990"}, {"text_input": "What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP24621", "output": "28363000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122101178,122101179", "output": "28363000"}, {"text_input": "What is the hs code for LINAGLIPTIN (BHN BAKU OBAT) COA LG0080621", "output": "29332900"}, {"text_input": "What is the hs code for 1400/1700 SUGLETS 1400/1700 (12/14 MESH) BHN BAKU PEWARNA TABLET) COA ST516916", "output": "32151900"}, {"text_input": "What is the hs code for PGLCP 102KC RSPO MB (BHN BAKU KOSMETIK) COA 210710201", "output": "34021390"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122101180", "output": "28363000"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/07/290721,ASG/08/280821,ASG/09/020921,...", "output": "29420000"}, {"text_input": "What is the hs code for CROSCARMELLOSE SODIUM USP-NF (BHN BAKU OBAT) COA ACRMC/09/040921", "output": "39129090"}, {"text_input": "What is the hs code for LINAGLIPTIN (BHN BAKU OBAT) COA LG0080621", "output": "29332900"}, {"text_input": "What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) COA 1573252", "output": "38249999"}, {"text_input": "What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK) COA LDC34521T", "output": "27101990"}, {"text_input": "What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA E00971UP", "output": "29053200"}, {"text_input": "What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105712321,L105712421", "output": "17021100"}, {"text_input": "What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) COA 321CAA0003", "output": "38249999"}, {"text_input": "What is the hs code for SORBITOL SPECIAL TM MDF 85 (BHN BAKU OBAT) COA M21003", "output": "29054400"}, {"text_input": "What is the hs code for ROSUVASTATIN CALSIUM (BHN BAKU OBAT) COA M325189", "output": "29359000"}, {"text_input": "What is the hs code for PERMETHRIN (PHARMA GRADE) BHN BAKU OBAT COA PMT/008/2021", "output": "29163990"}, {"text_input": "What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000076788", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000076789", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H105 83PCT (BHN BAKU KOSMETIK) COA 0000076790", "output": "29309090"}, {"text_input": "What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA EDSB200006", "output": "29349990"}, {"text_input": "What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) (BHN BAKU OBAT) COA 4453829622", "output": "39139090"}, {"text_input": "What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-210903", "output": "29061300"}, {"text_input": "What is the hs code for LIPOID S 20 (BHN BAKU SUPPLEMEN) COA 572000-2210138/001-020", "output": "29232010"}, {"text_input": "What is the hs code for ZINC GLUCONATE POWDER USP 43 (BHN BAKU OBAT) COA 3107385", "output": "29181600"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP24621,MTP24621", "output": "28363000"}, {"text_input": "What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122101141", "output": "29054300"}, {"text_input": "What is the hs code for MC-GLUCAN (BHN BAKU KOSMETIK) COA MCGL210906", "output": "39139090"}, {"text_input": "What is the hs code for GALAXY 610 EHS MB (ETHYLENE GLYCOL DISTEARATE) (BHN BAKU KOSMETIK) COA 728011", "output": "34049090"}, {"text_input": "What is the hs code for PHENOXY ETHANOL PR (BHN BAKU KOSMETIK) COA 728616,728616,727745", "output": "29094900"}, {"text_input": "What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105712021,L105712421", "output": "17021100"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122101181", "output": "28363000"}, {"text_input": "What is the hs code for MANNOGEM (R) XL OPAL SPRAY DRIED MANNITOL (BHN BAKU OBAT) COA 122101241", "output": "29054300"}, {"text_input": "What is the hs code for PHARMABURST (R) C1 (BHN BAKU OBAT) COA 122100929", "output": "21069099"}, {"text_input": "What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122101211", "output": "29054300"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40 BRIX ) (BAHAN BAKU KOSMETIK) COA 01/20GL4", "output": "28399000"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40 BRIX ) (BAHAN BAKU KOSMETIK) COA 01/21GL4", "output": "28399000"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40 BRIX ) (BAHAN BAKU KOSMETIK) COA 01/20GL4, SAMPLE NO COMM VALUE", "output": "28399000"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40 BRIX ) (BAHAN BAKU KOSMETIK) COA 01/21GL4, SAMPLE NO COMM VALUE", "output": "28399000"}, {"text_input": "What is the hs code for OPALUX MAROON (BHN BAKU PEWARNA TABLET) COA DT719926", "output": "32151900"}, {"text_input": "What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET) COA DT719912", "output": "32151900"}, {"text_input": "What is the hs code for OPACODE BLACK (BHN BAKU PEWARNA TABLET) COA DT718996", "output": "32151900"}, {"text_input": "What is the hs code for PRAMIPEXOLE DI HCL MONOHYDRATE (BHN BAKU OBAT) COA PP0100821", "output": "29342000"}, {"text_input": "What is the hs code for PREDNISOLONE BP2018/USP42 (BHN BAKU OBAT) COA NPL210918", "output": "29372100"}, {"text_input": "What is the hs code for TRIAMCINOLONE EP9.0 (BHN BAKU OBAT) COA NTL210901", "output": "29372200"}, {"text_input": "What is the hs code for HYDROCORTISONE ACETATE EP7/USP42 (BHN BAKU OBAT) COA NEHAC210305", "output": "29372200"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113681", "output": "29339990"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113653,M113656", "output": "29339990"}, {"text_input": "What is the hs code for PHARMACEUTICAL CASTOR OIL E.P (BHN BAKU KOSMETIK) COA 0000037362", "output": "15152919"}, {"text_input": "What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) 0000076486", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) 0000076487", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000076488,SAMPLE NO COMMERCIAL VALUE", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H103 43PCT (BHN BAKU KOSMETIK) COA 0000076489, SAMPLE NO COMMERCIAL VALUE", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK), COA 0000076490,SAMPLE NO COMMERCIAL VALUE", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H105 83 PCT (BHN BAKU KOSMETIK), COA 0000076491,SAMPLE NO COMMERCIAL VALUE", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H100L 80 PCT (BHN BAKU KOSMETIK), COA 0000076492,SAMPLE NO COMMERCIAL VALUE", "output": "29309090"}, {"text_input": "What is the hs code for NOREPINEPHRINE BITARTRATE (NORADRENALINE TARTRATE) (BHN BAKU OBAT) COA 690104", "output": "29379010"}, {"text_input": "What is the hs code for NOREPINEPHRINE BITARTRATE (NORADRENALINE TARTRATE) (BHN BAKU OBAT) COA 690104", "output": "29379010"}, {"text_input": "What is the hs code for CEFIXIME COMPACTED USP (BHN BAKU OBAT) COA CFEC210531,CFEC210532", "output": "29419000"}, {"text_input": "What is the hs code for CEFIXIME COMPACTED USP (BHN BAKU OBAT) COA CFEC210531,CFEC210532", "output": "29419000"}, {"text_input": "What is the hs code for ZINC SULFATE 1-HYDRATE, POWDER, USP FCC 12 (BHN BAKU MAKANAN) COA 3095829-2", "output": "28332920"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH649432", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH649187", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH649187", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH649172", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH649190", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH649173", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH649627", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH649176", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH648913", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH649177", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH649194", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH649396", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH649184", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH648904", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH649180", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH648906", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH649195", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH649193", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH649185", "output": "38249999"}, {"text_input": "What is the hs code for PIGMENT BLEND BROWN (BHN BAKU PEWARNA TABLET) SH649486", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY VIOLET (BHN BAKU PEWARNA TABLET) COA SH649182", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY PURPLE (BHN BAKU PEWARNA TABLET) COA SH649257", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH648483", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH649529", "output": "38249999"}, {"text_input": "What is the hs code for DL-PANTHENOL 50 L (BHN BAKU KOSMETIK) COA TL02103605", "output": "29362400"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA QZ11210436", "output": "29362500"}, {"text_input": "What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0038007", "output": "29362500"}, {"text_input": "What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92108130", "output": "29420000"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000198172", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0721010014", "output": "29420000"}, {"text_input": "What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES2105544", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0721010013", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0821010129,0821010130,0821010281", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0421040024", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0921020014", "output": "29420000"}, {"text_input": "What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF21092005", "output": "29420000"}, {"text_input": "What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF21092005", "output": "29420000"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21070210", "output": "29362800"}, {"text_input": "What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0921020014", "output": "29420000"}, {"text_input": "What is the hs code for VITAMIN MINERAL PREMIX (BHN BAKU MAKANAN) COA XW92109042", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02101102", "output": "29362900"}, {"text_input": "What is the hs code for ASCORBIC ACID 90 PCT GRANULATION (BHN BAKU SUPPLEMEN) COA WB21049089", "output": "29362700"}, {"text_input": "What is the hs code for PARACETAMOL USP (BHN BAKU OBAT) COA 21505530,21505350", "output": "29242930"}, {"text_input": "What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-200607", "output": "29397900"}, {"text_input": "What is the hs code for LINCOMYCIN HYDROCHLORIDE (BHN BAKU OBAT) COA 2106006", "output": "29419000"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO210603", "output": "38249999"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO210603", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210802", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210302", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210603", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO210703", "output": "38249999"}, {"text_input": "What is the hs code for WITCH HAZEL ORGANIC DISTILLATE 1:10 (SB) (BHN BAKU KOSMETIK) COA HAVD210806-BIO", "output": "38249999"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO210603", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM210602-PGH", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210306", "output": "38249999"}, {"text_input": "What is the hs code for LOTUS FROM VIETNAM ORGANIC OILY EXTRACT (BHN BAKU KOSMETIK) COA NEN210401-HBIO", "output": "38249999"}, {"text_input": "What is the hs code for SEABUCKTHORN HYDROGLYCOLIC EXTRACT (BG) (BHN BAKU KOSMETIK) COA HIR210101-B", "output": "38249999"}, {"text_input": "What is the hs code for SODIUM ACETATE ANHYDROUS (BHN BAKU SUPPLEMEN) COA 3098999", "output": "29152910"}, {"text_input": "What is the hs code for EUXYL K 712 CAN 10 KG (BHN BAKU KOSMETIK) COA 1570683", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 720 CAN 10 KG (BHN BAKU KOSMETIK) COA 1570630,1570829", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) COA 1570866", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 903 CAN 10 KG (BHN BAKU KOSMETIK) COA 1568847", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) COA 1570860", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA PA 40 CAN 10 KG (BHN BAKU KOSMETIK) COA 1565784", "output": "38249999"}, {"text_input": "What is the hs code for VISTANOL GDHR (BHN BAKU KOSMETIK) COA SIC", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WK-F (BHN BAKU KOSMETIK) COA SIG", "output": "38249999"}, {"text_input": "What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA SHI", "output": "38249999"}, {"text_input": "What is the hs code for AMITOSE R (BHN BAKU KOSMETIK) COA SHG", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SHF", "output": "38249999"}, {"text_input": "What is the hs code for STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN544621", "output": "35051010"}, {"text_input": "What is the hs code for KF-6038(16KG) (BHN BAKU KOSMETIK) COA 108262", "output": "38249999"}, {"text_input": "What is the hs code for KSG-210 (16KG) (BHN BAKU KOSMETIK) COA 105983", "output": "38249999"}, {"text_input": "What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) COA 110060", "output": "38249999"}, {"text_input": "What is the hs code for ETORICOXIB (BHN BAKU OBAT) COA ERBPC21006", "output": "29333990"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 211404,212280", "output": "38249999"}, {"text_input": "What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 211021", "output": "13021990"}, {"text_input": "What is the hs code for LEUCOCYANIDINS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 21T0030100", "output": "13021990"}, {"text_input": "What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1203881", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1182011", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01D214M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GRAM SAFRANIN 250ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1117588", "output": "38210090"}, {"text_input": "What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1074549", "output": "38210090"}, {"text_input": "What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 210811022", "output": "38249999"}, {"text_input": "What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1242374", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME) BATCH 1053886,12011851", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1123223", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1242374", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1123223", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0114639", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0294317", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1195933", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 1153205", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1187757", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1223997", "output": "38210090"}, {"text_input": "What is the hs code for HU ANAPHYLATOXIN CBA KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1222136", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1102066", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1133939", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1111035", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1159790", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01D200M", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER LACTOPHENOL COTTON BLUE STAIN (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01D110M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE YPD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0286513", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC /NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1200358", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1007107", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283868", "output": "38210090"}, {"text_input": "What is the hs code for LOOPS INOCULATING 10/TUBE 10 MICROLITER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2110427", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0286434", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1081408", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1047444", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1068885", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1215037", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GRAM CRYSTAL VIOLET 250ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1117569", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1167834", "output": "38210090"}, {"text_input": "What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2111335", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1188089", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GRAM IODINE STABILIZED 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1020480", "output": "38210090"}, {"text_input": "What is the hs code for PREDNISONE USP42 (BHN BAKU OBAT) COA NPD210915", "output": "29372100"}, {"text_input": "What is the hs code for TRIAMCINOLONE EP9.0 (BHN BAKU OBAT) COA NTL210902", "output": "29372200"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM HYDROXYPROPYL METHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D180L3M001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL METHYL... (BHN BAKU PEWARNA TABLET) COA D180KCT002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL METHYL... (BHN BAKU PEWARNA TABLET) COA D180L7P001", "output": "39123900"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544879", "output": "35051010"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL02108107", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL02108107", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU SUPLEMEN) COA TL02108107", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL02108107", "output": "29362700"}, {"text_input": "What is the hs code for ZINC GLYCINATE (BHN BAKU UTK PAKAN TERNAK) COA 62058", "output": "29224900"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP26321", "output": "28363000"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH650237", "output": "38249999"}, {"text_input": "What is the hs code for GALAXY 610 EHS MB (ETHYLENE GLYCOL DISTEARATE) (BHN BAKU KOSMETIK) COA 728011", "output": "34049090"}, {"text_input": "What is the hs code for PHENOXY ETHANOL PR (BHN BAKU KOSMETIK) COA 729129", "output": "29094900"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM (BHN BAKU UTK PAKAN TERNAK) COA 21081220", "output": "29331900"}, {"text_input": "What is the hs code for MEFENAMIC ACID (BHN BAKU OBAT) COA MA2109137 S/D 138,MA2110003 S/D 004,MA2110010,MA2110013,....", "output": "29224900"}, {"text_input": "What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH650660", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210603", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) COA ANTS210201", "output": "38249999"}, {"text_input": "What is the hs code for FLOWER ACIDS (BHN BAKU KOSMETIK) COA HS210703", "output": "38249999"}, {"text_input": "What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0058527", "output": "38249999"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0220040027, SAMPLE NO COMMERCIAL VALUE", "output": "29420000"}, {"text_input": "What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) COA 7766037", "output": "38249999"}, {"text_input": "What is the hs code for ALUMINIUM HYDROXIDE ACETATE POWDER, DAC 2011 (BHN BAKU SUPLEMEN) COA 3016131-4", "output": "29152990"}, {"text_input": "What is the hs code for FERROUS GLUCONATE (BHN BAKU OBAT) COA 3106520", "output": "29181600"}, {"text_input": "What is the hs code for MAGNESIUM L-HYDROGENASPARTATE 2-HYDRATE POWDER, PH.EUR.10.ED. (BHN BAKU OBAT) COA 3106187", "output": "29224900"}, {"text_input": "What is the hs code for SODIUM SELENITE IN CARRIER (BHN BAKU OBAT) COA 3106231", "output": "28429010"}, {"text_input": "What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512133", "output": "47069200"}, {"text_input": "What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512133", "output": "47069200"}, {"text_input": "What is the hs code for FERROUS SULFATE,DRIED, POWDER, USP43 (BHN BAKU SUPLEMEN) COA 3103702", "output": "28332920"}, {"text_input": "What is the hs code for PEARL ESSENCES 35031MJ (BHN BAKU KOSMETIK) COA D1381006", "output": "32061910"}, {"text_input": "What is the hs code for PEARL ESSENCES 35031MJ (BHN BAKU KOSMETIK) COA D1320220", "output": "32061910"}, {"text_input": "What is the hs code for FLORAGLO (R) LUTEIN 20 % SAF (BHN BAKU SUPPLEMEN) COA UE02106008", "output": "32030010"}, {"text_input": "What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02101013,UE02102022,UE02102023", "output": "29362700"}, {"text_input": "What is the hs code for BRB 1740, DRUM 190KG ( BHN BAKU KOSMETIK) COA B095086", "output": "39100020"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ10713228", "output": "29362200"}, {"text_input": "What is the hs code for OPTISHARP (ZEAXANTHIN) 5 PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT19060004", "output": "32041900"}, {"text_input": "What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT21040013", "output": "29362100"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT21070072", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT21061088,UT21061089,UT21061090", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPPLEMEN) COA UT21070061", "output": "29362100"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPPLEMEN) COA UQ10713249", "output": "29362200"}, {"text_input": "What is the hs code for VITAMIN B12 0.1 PCT WS (BHN BAKU SUPPLEMEN) COA UT20100059,UT20100061", "output": "29362600"}, {"text_input": "What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340314,B340318,B340320", "output": "29419000"}, {"text_input": "What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334781", "output": "29419000"}, {"text_input": "What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334763", "output": "29419000"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP26421", "output": "28363000"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP26421", "output": "28363000"}, {"text_input": "What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050109,0321050110,0321050112,0321050113,0321050114,...", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050107,0321050108,0321050109", "output": "29420000"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544799", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544815", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544770", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN544776", "output": "35051010"}, {"text_input": "What is the hs code for ACRYL-EZE PURPLE (BHN BAKU PEWARNA TABLET) COA SH649630", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH649626", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH649631", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH649627", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH649660", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH649661", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH649628", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH649194", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH649632", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH649633", "output": "39061090"}, {"text_input": "What is the hs code for PIGMENT BLEND GREEN (BHN BAKU PEWARNA TABLET) COA SH649634", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH649636", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BLUE (BHN BAKU PEWARNA TABLET) COA SH649637", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH649635", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH649629", "output": "38249999"}, {"text_input": "What is the hs code for PIGMENT BLEND YELLOW (BHN BAKU UTK PEWARNA TABLET) COA SH649659", "output": "32151900"}, {"text_input": "What is the hs code for MONOCALCIUM PHOSPHATE FEED GRADE MICROGRANULAR (BHN BAKU PAKAN TERNAK) COA 20210928028", "output": "28352600"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA270211,ROA271213", "output": "28363000"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH650146", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH650134", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH650135", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH650166", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH650148", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH650136", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH650635", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH650137", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH650158", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH650138", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH650164", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH650154", "output": "38249999"}, {"text_input": "What is the hs code for PIGMENT BLEND GREEN (BHN BAKU PEWARNA TABLET) COA SH650149", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH650155", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH650150", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY YELLOW (BHN BAKU PEWARNA TABLET) COA SH650139", "output": "38249999"}, {"text_input": "What is the hs code for GRANULAC (R) 200 H (BHN BAKU OBAT) COA L105713621", "output": "17021100"}, {"text_input": "What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104312821", "output": "17021100"}, {"text_input": "What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP846871", "output": "39059990"}, {"text_input": "What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP846870", "output": "39059990"}, {"text_input": "What is the hs code for PVAP - PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP846853", "output": "39059990"}, {"text_input": "What is the hs code for FD&C YELLOW #6/SUNSET YELLOW FCF AL ... (BHN BAKU PEWARNA TABLET) COA WP839971:BA7547", "output": "32151900"}, {"text_input": "What is the hs code for FD&C YELLOW #5/TARTRAZINE AL ... (BHN BAKU PEWARNA TABLET) COA WP844301:BA9667", "output": "32151900"}, {"text_input": "What is the hs code for D&C YELLOW #10 AL 15 PCT - 20 PCT ... (BHN BAKU PEWARNA TABLET) COA WP844755:BA9949", "output": "32151900"}, {"text_input": "What is the hs code for D&C YELLOW #10 AL 15 PCT - 20 PCT ... (BHN BAKU PEWARNA TABLET) COA WP844755:BA9949", "output": "32151900"}, {"text_input": "What is the hs code for FD&C YELLOW #6/SUNSET YELLOW FCF AL ... (BHN BAKU PEWARNA TABLET) COA WP839971:BA7547", "output": "32151900"}, {"text_input": "What is the hs code for FD&C RED #40/ALLURA RED AC AL 38 PCT- 42 PCT.. (BHN BAKU PEWARNA TABLET) COA WP841246:BA8625", "output": "32151900"}, {"text_input": "What is the hs code for ERYTHROSINE AL 38 PCT - 42 PCT... (BHN BAKU PEWARNA TABLET) COA WP844564:1", "output": "32151900"}, {"text_input": "What is the hs code for ZINC CITRATE, POWDER, USP 43 (DIETARY SUPPL.) (BHN BAKU SUPPLEMEN) COA 3094704-2", "output": "29181590"}, {"text_input": "What is the hs code for NABUMETONE USP (BAHAN BAKU OBAT) COA.H-0690421", "output": "29145000"}, {"text_input": "What is the hs code for ONDANSETRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA 20015OH2RII", "output": "29332900"}, {"text_input": "What is the hs code for SODIUM CARBONATE IPH (BHN BAKU SUPPLEMEN) COA DOC2632121", "output": "28363000"}, {"text_input": "What is the hs code for DICLOFENAC SODIUM USP 43 (BHN BAKU OBAT) COA DFS/11090382 - 11090387,11090390,11090394 ...", "output": "29224900"}, {"text_input": "What is the hs code for FERROUS FUMARATE (BHN BAKU OBAT) COA 2021/320", "output": "29171900"}, {"text_input": "What is the hs code for LEVOFLOXACIN HEMIHYDRATE (BHN BAKU OBAT) COA C008-2106507", "output": "29349990"}, {"text_input": "What is the hs code for NORIT SX SUPER E 153 (BHN BAKU KOSMETIK) COA 4978845", "output": "38021000"}, {"text_input": "What is the hs code for ASCORBIC ACID 90 PCT GRANULATION (BHN BAKU SUPPLEMEN) COA WB21049093,WB21049094", "output": "29362700"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20210702", "output": "29362800"}, {"text_input": "What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2021091803", "output": "21012020"}, {"text_input": "What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 170321,180321,190321", "output": "38029090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-051851,SFP-N-061391", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-051851,SFP-N-061391", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND NEWAPLE (BHN BAKU KOSMETIK) COA NWPD-020681", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (B) (BHN BAKU KOSMETIK) COA AMIBD-081761", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-010231", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND JEJU TANGERINE EXTRACT (BHN BAKU KOSMETIK) COA GTUP-T-021910", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUP-011851", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) BHN BAKU KOSMETIK) COA CHP1210913", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA H HMVBD-042481", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-163091", "output": "38249999"}, {"text_input": "What is the hs code for MINIPORYL TM (BHN BAKU KOSMETIK) COA 832019610M", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5 PCT CLEAR (BHN BAKU KOSMETIK) COA 785019611M", "output": "38249999"}, {"text_input": "What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 702018037K", "output": "38249999"}, {"text_input": "What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769019234M", "output": "39139090"}, {"text_input": "What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769019234M", "output": "39139090"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2119406", "output": "38249999"}, {"text_input": "What is the hs code for MINIPORYL TM (BHN BAKU KOSMETIK) COA 832019610M", "output": "38249999"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT KIWI (BAHAN BAKU KOSMETIK) COA 02/19GAAK", "output": "28399000"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK)COA 02/19GAAK, SAMPLE NO COMM VALUE", "output": "28399000"}, {"text_input": "What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 185845", "output": "28399000"}, {"text_input": "What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102102035", "output": "28183000"}, {"text_input": "What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M -31.0 PCT (BHN BAKU OBAT) COA 102129041,102129045", "output": "28161000"}, {"text_input": "What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M534658 S/D M534662,M534657", "output": "29411019"}, {"text_input": "What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M534586,M534643,M534655 S/D M534657,M534654", "output": "29411019"}, {"text_input": "What is the hs code for DRY VITAMIN E 50 PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21050024", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT21090026", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT21090026", "output": "29362100"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL02105701,TL02105708", "output": "29362700"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT21060188", "output": "29362800"}, {"text_input": "What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW92109285", "output": "21069059"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12108030", "output": "29362900"}, {"text_input": "What is the hs code for MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL211011,MCCPOL211026", "output": "29094900"}, {"text_input": "What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) COA 1573747", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-061391", "output": "38249999"}, {"text_input": "What is the hs code for IONOL (R) CP (BHN BAKU KOSMETIK), COA 01141420", "output": "29071900"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA210802,HEA211003", "output": "38249999"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA210802,HEA211003", "output": "38249999"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA210802,HEA211003", "output": "38249999"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA210802,HEA211003", "output": "38249999"}, {"text_input": "What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET) COA DT721117", "output": "32151900"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-010411", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011851", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-021820", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND CARBAMIDE (BHN BAKU KOSMETIK) COA U211027", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-010231", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-072081", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE 1PCT SOLUTION (BHN BAKU KOSMETIK) COA HASC-130841", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND TEA TREE EXTRACT (BHN BAKU KOSMETIK) COA MASL-031381", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (VLMW) (BHN BAKU KOSMETIK)COA CHP1211007", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-051501", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 102121", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011851", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-173091", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (LMW) (BHN BAKU KOSMETIK)COA CHP1210927", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-061391", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND KIWI EXTRACT(BHN BAKU KOSMETIK) COA KFB-L-041281", "output": "13021990"}, {"text_input": "What is the hs code for KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0050521", "output": "29339990"}, {"text_input": "What is the hs code for METOCLOPRAMIDE HYDROCHLORIDE BP (BHN BAKU OBAT) COA M-2109418", "output": "29242990"}, {"text_input": "What is the hs code for DESONIDE MICRONIZED (BHN BAKU OBAT) COA NB2195M", "output": "29372900"}, {"text_input": "What is the hs code for SELOHVITA C (BHN BAKU SUPPLEMEN) COA 3105597,3105469", "output": "28429010"}, {"text_input": "What is the hs code for SELOHVITA C (BHN BAKU SUPPLEMEN) COA 3107175", "output": "28429010"}, {"text_input": "What is the hs code for FERROUS LACTATE 2-HYDRATE, POWDER (BHN BAKU MAKANAN) COA 3107161", "output": "29181200"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20210919", "output": "17029019"}, {"text_input": "What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 2120606", "output": "38249999"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 212280", "output": "38249999"}, {"text_input": "What is the hs code for AP GRIT (ROUND)G #60-80 (BHN BAKU KOSMETIK) COA 211205", "output": "38249999"}, {"text_input": "What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 211752", "output": "13021990"}, {"text_input": "What is the hs code for KF-56A(18KG) (BHN BAKU KOSMETIK) COA 110060", "output": "38249999"}, {"text_input": "What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) COA 109262", "output": "38249999"}, {"text_input": "What is the hs code for KF-6038(16KG) (BHN BAKU KOSMETIK) COA 108262", "output": "38249999"}, {"text_input": "What is the hs code for KF-6017(17KG) (BHN BAKU KOSMETIK) COA 109167", "output": "38249999"}, {"text_input": "What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) COA 109889", "output": "38249999"}, {"text_input": "What is the hs code for KSP-101 (15KG) (BHN BAKU KOSMETIK) COA 105401", "output": "38249999"}, {"text_input": "What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0821010281", "output": "29420000"}, {"text_input": "What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02102015,UE02102021", "output": "29362700"}, {"text_input": "What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00717409", "output": "29420000"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21070210", "output": "29362800"}, {"text_input": "What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES2106548", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040024", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0421040024", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0821010281", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0921020014", "output": "29420000"}, {"text_input": "What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92109282", "output": "29420000"}, {"text_input": "What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02011038,UE02101012", "output": "29362700"}, {"text_input": "What is the hs code for DRY VITAMIN E 50 PCT CWS/S (BHN BAKU MAKANAN) COA UE02105102", "output": "29362800"}, {"text_input": "What is the hs code for B-CAROTENE 10 PCT CWS (BHN BAKU MAKANAN) COA UT21050015", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21040137", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02105006", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3 PCT (BHN BAKU SUPPLEMEN) COA WB20040052", "output": "29362300"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5 PCT SD (BHN BAKU SUPPLEMEN) COA UT20060003", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN E 50 PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21040021", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5 PCT SD (BHN BAKU SUPPLEMEN) COA UT20060003", "output": "29362900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT21060188", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50 PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21040021", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50 PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21040021,UT21050024", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT21040137", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT21040137", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT21040140", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT21040140,UT21040141", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21040007,UT21040011", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT21040137", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21040011", "output": "29362900"}, {"text_input": "What is the hs code for SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202110-008", "output": "35040000"}, {"text_input": "What is the hs code for SOYA LECITHIN (BHN BAKU MAKANAN) COA TY2210706-5", "output": "29232010"}, {"text_input": "What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 210415", "output": "13021990"}, {"text_input": "What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 200625", "output": "29061900"}, {"text_input": "What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 210711", "output": "13021990"}, {"text_input": "What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 210415", "output": "13021990"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 210618", "output": "13021990"}, {"text_input": "What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1123046", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2355402", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2305551", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1004958", "output": "38210090"}, {"text_input": "What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0175474", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1046607", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0365879", "output": "38210090"}, {"text_input": "What is the hs code for MAGNESIUM CARBONATE, HEAVY (BHN BAKU OBAT) COA 3095827", "output": "28369990"}, {"text_input": "What is the hs code for MAPROTILINE HCL (BHN BAKU OBAT) COA 2150002151", "output": "29214900"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH650452", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH650517", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH650515", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH650495", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH650518", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH650516", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH650429", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH650635", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH650431", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH650432", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB PURPLE (BHN BAKU PEWARNA TABLET) COA SH650158", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 20S0252500", "output": "13021950"}, {"text_input": "What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 20S0252500", "output": "13021950"}, {"text_input": "What is the hs code for BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 21S0233301", "output": "13021990"}, {"text_input": "What is the hs code for MIRTOGENOL (R) (BHN BAKU SUPLEMEN) COA 21S0115800", "output": "13021950"}, {"text_input": "What is the hs code for CENTELLA ASIATICA/PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 20S0317200", "output": "13021950"}, {"text_input": "What is the hs code for SERENOA REPENS PURIFIED EXT (BHN BAKU SUPLEMEN) COA 20S0245600", "output": "13021950"}, {"text_input": "What is the hs code for MIRTOGENOL (R) (BHN BAKU SUPLEMEN) COA 21S0115800", "output": "13021950"}, {"text_input": "What is the hs code for ECHINACEA ANG.DRY PURIF.EX (BHN BAKU SUPLEMEN) COA 20S0173900", "output": "13021990"}, {"text_input": "What is the hs code for P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 21S0231200", "output": "13021990"}, {"text_input": "What is the hs code for P.GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 20S0004000", "output": "13021990"}, {"text_input": "What is the hs code for P.GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 20S0004000", "output": "13021990"}, {"text_input": "What is the hs code for PIROXICAM (BAHAN BAKU OBAT ) COA PRX2021002M", "output": "29349990"}, {"text_input": "What is the hs code for ISDN 25PCT-LACTOSE 450 75PCT DILUTED (BHN BAKU OBAT) COA 2111770", "output": "29329990"}, {"text_input": "What is the hs code for TRIMETHOPRIM POWDER BP (BHN BAKU PAKAN TERNAK) COA A-20112110019", "output": "29335990"}, {"text_input": "What is the hs code for CROSPOVIDONE XL (BHN BAKU OBAT) COA PP210609XL", "output": "39059990"}, {"text_input": "What is the hs code for POVIDONE K-25 (BHN BAKU OBAT) COA PK25-210628F31", "output": "39059990"}, {"text_input": "What is the hs code for PARACETAMOL USP (BHN BAKU OBAT) COA 2130798,2110003,2150092", "output": "29242930"}, {"text_input": "What is the hs code for LEVOFLOXACIN HEMIHYDRATE (FREE ALKALINE) (BHN BAKU OBAT) COA C008-2106507", "output": "29349990"}, {"text_input": "What is the hs code for ACRYPOL 980 (20KG) (BAHAN BAKU KOSMETIK) COA 11521029,11521030,11521031", "output": "39069099"}, {"text_input": "What is the hs code for UBIDECARENONE (COENZYM Q10 FERMENTATIVE) BHN BAKU KOSMETIK) COA 51-2105150", "output": "29146200"}, {"text_input": "What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA", "output": "21012020"}, {"text_input": "What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA", "output": "21012020"}, {"text_input": "What is the hs code for VALERIAN D.H.E> 0.8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 21B0041700", "output": "13021990"}, {"text_input": "What is the hs code for IVY DRY HYDR EXTR 10PCT HPLC (BAHAN BAKU SUPLEMEN) COA 21B0077400", "output": "13021990"}, {"text_input": "What is the hs code for PASSION FLOWER D.H.E 4PCT (BAHAN BAKU SUPLEMEN) COA 21B0099700", "output": "13021990"}, {"text_input": "What is the hs code for HAWTHORN DRY HYDR. EXTR (BHN BAKU SUPLEMEN) COA 20B0127300", "output": "13021990"}, {"text_input": "What is the hs code for BUTCHERBROOM DRY HYDR EX.9-11 (BHN BAKU SUPLEMEN) COA 20B0175500", "output": "13021990"}, {"text_input": "What is the hs code for SILYMARIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 21B0087300", "output": "13021950"}, {"text_input": "What is the hs code for SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0107000", "output": "13021950"}, {"text_input": "What is the hs code for SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0107000", "output": "13021950"}, {"text_input": "What is the hs code for SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0086000", "output": "13021950"}, {"text_input": "What is the hs code for METHOCEL E4M PREMIUM HYDROXYPROPYL METHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D180K3B013", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL METHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D180K6T003", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL METHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D180K2Q001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL METHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D180K4K002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D180L52021", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM HYDROXYPROPYL METHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D180KCJ002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL METHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D011L3HL01", "output": "39123900"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019668M", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5 PCT CLEAR (BHN BAKU KOSMETIK) COA 785019611M", "output": "38249999"}, {"text_input": "What is the hs code for DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834019745M", "output": "39139090"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019668M", "output": "38249999"}, {"text_input": "What is the hs code for GREYVERSE TM (BHN BAKU KOSMETIK) COA 833019576M", "output": "39139090"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2119406", "output": "38249999"}, {"text_input": "What is the hs code for ROSALITY TM (BHN BAKU KOSMETIK) COA 2033901", "output": "38249999"}, {"text_input": "What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-0470621,S-A-0480621", "output": "29334910"}, {"text_input": "What is the hs code for SUPPOCIRE BM PELLETS (BHN BAKU OBAT) COA 20E4703", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE AM PELLETS (BHN BAKU OBAT) COA 21E3701", "output": "28399000"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG211008", "output": "29362700"}, {"text_input": "What is the hs code for VIUSID VET POWDER @1 KG (PAKAN IKAN BERBENTUK BUBUK) COA X-2", "output": "23099090"}, {"text_input": "What is the hs code for OPACODE WHITE (BHN BAKU PEWARNA TABLET) COA WP848554", "output": "32151900"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPPLEMEN) COA WB21030293", "output": "29362100"}, {"text_input": "What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340324,B340325", "output": "29419000"}, {"text_input": "What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334784", "output": "29419000"}, {"text_input": "What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ10917011", "output": "29420000"}, {"text_input": "What is the hs code for FLORAGLO (R) LUTEIN 20 PCT SAF (BHN BAKU SUPPLEMEN) COA UE02109022", "output": "32030010"}, {"text_input": "What is the hs code for OLIO VINACCIOLI RAFFINATO (BHN BAKU KOSMETIK) COA B2100275", "output": "15152919"}, {"text_input": "What is the hs code for OLIO MANDORLE DOLCI RAFF.EU PH (BHN BAKU KOSMETIK) COA B2100216", "output": "15152919"}, {"text_input": "What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0294317", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1195933", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1244192", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1063145", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1201851", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1123223", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1221115", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1126127", "output": "38210090"}, {"text_input": "What is the hs code for VIAL ISOVILATEX ENRICHMENT 10ML 5 EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1286863", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1271802", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1271802", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1271802", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1271802", "output": "38210090"}, {"text_input": "What is the hs code for LABRAFIL M 1944 CS BF (BAHAN BAKU OBAT) COA 186122", "output": "28399000"}, {"text_input": "What is the hs code for LABRASOL BF (BHN BAKU OBAT) COA 186053", "output": "28399000"}, {"text_input": "What is the hs code for GELEOL MONO AND DIGLYCERIDES NF (BAHAN BAKU OBAT) COA 21E3603", "output": "28399000"}, {"text_input": "What is the hs code for EMULCIRE 61 WL 2659 (BHN BAKU OBAT) COA 185819", "output": "28399000"}, {"text_input": "What is the hs code for COMPRITOL 888 PELLETS (BAHAN BAKU OBAT) COA 20E4902", "output": "28399000"}, {"text_input": "What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02103038", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ10816068,UQ10816069", "output": "29362700"}, {"text_input": "What is the hs code for BETATAB 20 PCT S (BHN BAKU SUPPLEMEN) COA UT21080014", "output": "32041900"}, {"text_input": "What is the hs code for BETATAB 20 PCT S (BHN BAKU SUPPLEMEN) COA UT21080014", "output": "32041900"}, {"text_input": "What is the hs code for BETATAB 20 PCT S (BHN BAKU SUPPLEMEN) COA UT21080014,UT21090024", "output": "32041900"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02108192", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPPLEMEN) COA UT21070061", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT21060056", "output": "29362100"}, {"text_input": "What is the hs code for BETATAB 20 PCT S (BHN BAKU SUPPLEMEN) COA UT21090024", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN B12 0.1 PCT WS (BHN BAKU SUPPLEMEN) COA UT21020013,UT21070019", "output": "29362600"}, {"text_input": "What is the hs code for BETATAB 20 PCT S (BHN BAKU SUPPLEMEN) COA UT21090024", "output": "32041900"}, {"text_input": "What is the hs code for BETATAB 20 PCT S (BHN BAKU SUPPLEMEN) COA UT21090024", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU SUPPLEMEN) COA UT21040032,UT21070034", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 30 PCT FS (BHN BAKU MAKANAN) COA UE02107051,UE02107052", "output": "32041900"}, {"text_input": "What is the hs code for B-CAROTENE 30 PCT FS (BHN BAKU MAKANAN) COA UE02107052,UE02107053", "output": "32041900"}, {"text_input": "What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT21040014", "output": "29362100"}, {"text_input": "What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01D260M", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1204081", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1081578", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0217346,1188932", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1047444", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1204081", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01D216M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1201798", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1231054", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1221531", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BIGGY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1166930", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 4 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1176291", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE CITRATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 9247669", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1103652", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0002110", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01D245M,B03D253M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1042613", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1019654", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE YPD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1188444", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1231054", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B03D253M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1231054", "output": "38210090"}, {"text_input": "What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 1243173", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1242029", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01D216M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GRAM CRYSTAL VIOLET 250ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1213772", "output": "38210090"}, {"text_input": "What is the hs code for KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1257090", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GRAM IODINE STABILIZED 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1180501", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1231182", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1252369", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1277944", "output": "38210090"}, {"text_input": "What is the hs code for METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/11100532", "output": "29332900"}, {"text_input": "What is the hs code for COPPER SULFATE, POWDER, PH.EUR.10.ED (BHN BAKU SUPLEMEN) COA 3104865", "output": "28332500"}, {"text_input": "What is the hs code for RUGENER DREIKRONEN HEILKREIDE 25K (BHN BAKU KOSMETIK) COA 8022125400", "output": "25090000"}, {"text_input": "What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01D270M", "output": "38210090"}, {"text_input": "What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1243442", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GRAM SAFRANIN 250ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1243435", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01D270M", "output": "38210090"}, {"text_input": "What is the hs code for CATECHINS TEAVIGO 1KG (BHN BAKU KOSMETIK), COA 105161", "output": "21012020"}, {"text_input": "What is the hs code for OCTENINDINE DIHYDROCHLORIDE (BHN BAKU KOSMETIK) COA OTD-00051021", "output": "29420000"}, {"text_input": "What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP846881", "output": "39059990"}, {"text_input": "What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP846884", "output": "39059990"}, {"text_input": "What is the hs code for FD&C YELLOW #6/SUNSET YELLOW FCF AL ... (BHN BAKU PEWARNA TABLET) COA WP839971:BA7547", "output": "32151900"}, {"text_input": "What is the hs code for D&C YELLOW #10 AL 15 PCT - 20 PCT D&C YELLOW...(BHN BAKU PEWARNA TABLET) COA WP844750:BA9967", "output": "32151900"}, {"text_input": "What is the hs code for FD&C YELLOW #6/SUNSET YELLOW FCF AL ... (BHN BAKU PEWARNA TABLET) COA WP839971:BA7547", "output": "32151900"}, {"text_input": "What is the hs code for OPACODE GOLD (BHN BAKU PEWARNA TABLET) COA WP849115", "output": "32151900"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB21080245,WB21080248", "output": "29362800"}, {"text_input": "What is the hs code for OPADRY SGR TRANSLUCENT (BHN BAKU PEWARNA TABLET) COA GA696991", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY SGR CLEAR (BHN BAKU PEWARNA TABLET) COA GA697125", "output": "38249999"}, {"text_input": "What is the hs code for MIRASIL CM 5 L (BHN BAKU KOSMETIK) COA 2143WKQ415", "output": "29319049"}, {"text_input": "What is the hs code for MIRASIL DM 5 L (BHN BAKU KOSMETIK) COA 2133FF2415,2132FF2615", "output": "39100090"}, {"text_input": "What is the hs code for VC ASCORBIC ACID 325 MESH (BHN BAKU SUPLEMEN) COA HPD2110053,HPD2110052,HPD2110051,HPD....", "output": "29362700"}, {"text_input": "What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA EDS/CB00809", "output": "29349990"}, {"text_input": "What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 21100419,21100420", "output": "29395900"}, {"text_input": "What is the hs code for RIVAROXABAN EP (BHN BAKU OBAT) COA BAN500121,BAN500621,BAN500821,BAN501221", "output": "29349990"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02105011", "output": "29362900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21060182", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21060182", "output": "29362800"}, {"text_input": "What is the hs code for DL-PANTHENOL 50 L (BHN BAKU KOSMETIK) COA TL02104620", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060015", "output": "29420000"}, {"text_input": "What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02102021,UE02103035", "output": "29362700"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040024", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0421040024", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0821010284", "output": "29420000"}, {"text_input": "What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02010815,TL02010816", "output": "29362400"}, {"text_input": "What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES2106548", "output": "29420000"}, {"text_input": "What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COAXW92110028,XW92110029", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0921020014,0921020016", "output": "29420000"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA QZ11210440", "output": "29362500"}, {"text_input": "What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02103036", "output": "29362700"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210002,0708210003,0708210016,0708210017", "output": "29420000"}, {"text_input": "What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF21092005", "output": "29420000"}, {"text_input": "What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW92109286", "output": "21069059"}, {"text_input": "What is the hs code for PX 103070 - C3 (BHN BAKU MAKANAN) COA XW92109291,XW92109292", "output": "21069059"}, {"text_input": "What is the hs code for PX 103070 - C3 (BHN BAKU MAKANAN) COA XW92109292,XW92109293", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN MINERAL PREMIX WFP RICE KERNEL (BHN BAKU MAKANAN) COA XW92110189", "output": "21069059"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT21090026", "output": "29362100"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12108030", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT21030022", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN E 50 PCT CWS/S (BHN BAKU MAKANAN) COA UE02105081", "output": "29362800"}, {"text_input": "What is the hs code for B-CAROTENE 10 PCT CWS (BHN BAKU MAKANAN) COA UT21050015", "output": "32041900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12108033,OP12109001", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ10310580", "output": "29362300"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12108030", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ10310580", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2101008", "output": "29362300"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ10412162,UQ10412166", "output": "29362200"}, {"text_input": "What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92109294,XW92109295", "output": "21069059"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH650921", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH650920", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH650922", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH650888", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB MAROON (BHN BAKU PEWARNA TABLET) COA SH650889", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH650890", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH650911", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH650891", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH649661", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH650443", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH650912", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH650892", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH650893", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB RED (BHN BAKU PEWARNA TABLET) COA SH650894", "output": "38249999"}, {"text_input": "What is the hs code for PIGMENT BLEND BROWN (BHN BAKU PEWARNA TABLET) COA SH650913", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH650919", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BLUE (BHN BAKU PEWARNA TABLET) COA SH650923", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH650736", "output": "38249999"}, {"text_input": "What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0058979", "output": "38249999"}, {"text_input": "What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0058979", "output": "38249999"}, {"text_input": "What is the hs code for MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50411", "output": "29061100"}, {"text_input": "What is the hs code for PEARL ESSENCES 35031MJ (BHN BAKU KOSMETIK) COA D1390252", "output": "32061910"}, {"text_input": "What is the hs code for PEONY P118 182 (BHN BAKU KOSMETIK) COA 3215925", "output": "33029000"}, {"text_input": "What is the hs code for PROTIBOND TG-AK (BAHAN BAKU MAKANAN) COA", "output": "21069091"}, {"text_input": "What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102102039", "output": "28183000"}, {"text_input": "What is the hs code for CALCIUM CARBONATE DC TYPE CS90 PHARMA (BHN BAKU SUPPLEMEN) COA 202100523", "output": "28365010"}, {"text_input": "What is the hs code for MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL211108,MCCPOL211112", "output": "29094900"}, {"text_input": "What is the hs code for SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0107200", "output": "13021950"}, {"text_input": "What is the hs code for SILYMARIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 21B0087300", "output": "13021950"}, {"text_input": "What is the hs code for LIPOID S 67 F (BHN BAKU SUPPLEMEN) COA 576200-2210037/001-006,007", "output": "29232010"}, {"text_input": "What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA 8MT2109179", "output": "30032000"}, {"text_input": "What is the hs code for NEBIVOLOL HYDROCHLORIDE (BHN BAKU OBAT) COA NHM0170621", "output": "29329990"}, {"text_input": "What is the hs code for COMPLEX ANTI PESPIRANT (BHN BAKU KOSMETIK) COA ANTS210201", "output": "38249999"}, {"text_input": "What is the hs code for GREENSIL (BHN BAKU KOSMETIK) COA GS210803-1", "output": "38249999"}, {"text_input": "What is the hs code for RICE MILK AQUEOUS EXTRACT (SB) (BHN BAKU KOSMETIK) COA ORSL201101-AQ", "output": "38249999"}, {"text_input": "What is the hs code for RICE MILK AQUEOUS EXTRACT (SB) (BHN BAKU KOSMETIK) COA ORSL201101-AQ,ORSL211102-AQ", "output": "38249999"}, {"text_input": "What is the hs code for ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (SB) (BHN BAKU KOSMETIK)COA ROSD210905-BIO", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210802", "output": "13021990"}, {"text_input": "What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK) COA 2111EF3812", "output": "29224900"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000199653", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000198941,0000199653", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000199653", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT21090026", "output": "29362100"}, {"text_input": "What is the hs code for NIACINAMIDE FCC (BAHAN BAKU MAKANAN) COA 0000198933", "output": "29362900"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BAHAN BAKU MAKANAN) COA UT21060051", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BAHAN BAKU SUPPLEMEN) COA UE02101004", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BAHAN BAKU SUPPLEMEN) COA UT21090026", "output": "29362100"}, {"text_input": "What is the hs code for V003400 (BAHAN BAKU MAKANAN) COA XW92110218, XW92110219", "output": "21069059"}, {"text_input": "What is the hs code for V003400 (BAHAN BAKU MAKANAN) COA XW92110219,XW92110220,XW92110221", "output": "21069059"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2355402", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2355402", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1004958", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1046610", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1046610", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1123046", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2355402", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2355402", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2305551", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2305551", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1004958", "output": "38210090"}, {"text_input": "What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0175474", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1046610", "output": "38210090"}, {"text_input": "What is the hs code for CD SUPREME FPM 500 GRAMS EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2348881", "output": "38210090"}, {"text_input": "What is the hs code for PEPTONE STARTER PAK NO 1... (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 210412001", "output": "38210090"}, {"text_input": "What is the hs code for MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103152821", "output": "17021100"}, {"text_input": "What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104312921", "output": "17021100"}, {"text_input": "What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105713621", "output": "17021100"}, {"text_input": "What is the hs code for FLOWLAC (R) 100H (BHN BAKU OBAT) COA L105812121", "output": "17021100"}, {"text_input": "What is the hs code for CELLACTOSE (R) 80 (BHN BAKU OBAT) COA L100462721", "output": "17021100"}, {"text_input": "What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105713621", "output": "17021100"}, {"text_input": "What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M534820,M534821,M534822,M534823,M534824,M534819", "output": "29411019"}, {"text_input": "What is the hs code for FRENCH MARITIME PINE BARK EXTRACT (BAHAN BAKU OBAT) COA X/7630", "output": "13021990"}, {"text_input": "What is the hs code for OXOMEMAZINE HYDROCHLORIDE (BHN BAKU OBAT) COA HXHCPP001", "output": "29343000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-021781", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-010231", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-010411", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011851", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-120891", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 111921", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-061391", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND TEA TREE EXTRACT (BHN BAKU KOSMETIK) COA MASL-031381", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK), COA HMVBD-051501", "output": "13021950"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-010971,APB-R-022481", "output": "13021990"}, {"text_input": "What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK) COA LCD44821T", "output": "27101990"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP27721", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP28121", "output": "28363000"}, {"text_input": "What is the hs code for B-CAROTENE 10% EM YELLOW (BHN BAKU MAKANAN) COA UT21090004", "output": "32041900"}, {"text_input": "What is the hs code for VIT. A PALM. 1.0 M + VIT. D3 100'000 (BHN BAKU MAKANAN) COA UT21060126", "output": "29362100"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SHF", "output": "38249999"}, {"text_input": "What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA SIJ", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS EF-1118(IS) (BHN BAKU KOSMETIK) COA SHB", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA SKG", "output": "38249999"}, {"text_input": "What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA SHI", "output": "38249999"}, {"text_input": "What is the hs code for FD&C YELLOW #6/SUNSET YELLOW FCF AL ... (BHN BAKU PEWARNA TABLET) COA WP839971:BA7546", "output": "32151900"}, {"text_input": "What is the hs code for FENTACARE 2231 EF 25KG PAPER BOX (BHN BAKU KOSMETIK )COA ZH21J2201,ZH21K1004", "output": "34029019"}, {"text_input": "What is the hs code for JAGUAR C 162 CARDBOARD BOX 25 KG (BHN BAKU KOSMETIK) COA MJAC21292A", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA GA698164", "output": "38249999"}, {"text_input": "What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340332,B340333", "output": "29419000"}, {"text_input": "What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334780,B334785", "output": "29419000"}, {"text_input": "What is the hs code for MIRANOL ULTRA C-32 MB 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP110624MB", "output": "34021990"}, {"text_input": "What is the hs code for ACETAMINOPHEN (PARACETAMOL) (BHN BAKU OBAT) COA 202109007A,202109008A", "output": "29242930"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH651577", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH650888", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH650892", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH651436", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH651579", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH651580", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH651245", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH651581", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH651582", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH651583", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH651615", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH651601", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH651612", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH651602", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH652198", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY BROWN (BHN BAKU PEWARNA TABLET) COA SH651616", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH651628", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH651238", "output": "38249999"}, {"text_input": "What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK) COA 2111EF6811", "output": "29224900"}, {"text_input": "What is the hs code for MAGNESIUM CARBONATE, EXTRA LIGHT, POWDER (BHN BAKU OBAT) COA 3103621", "output": "28369990"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN545344", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN545336", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN545370", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN545355", "output": "35051010"}, {"text_input": "What is the hs code for ONDANSETRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA 21OS002,21OS003", "output": "29332900"}, {"text_input": "What is the hs code for PHARMABURST (R) C1 (BHN BAKU OBAT) COA 122100929", "output": "21069099"}, {"text_input": "What is the hs code for PHARMABURST (R) 500 (BHN BAKU OBAT) COA 122100954", "output": "21069099"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122101178,122101182", "output": "28363000"}, {"text_input": "What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122101212", "output": "29054300"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SHF,SJG", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA SKH", "output": "38249999"}, {"text_input": "What is the hs code for MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL211112,MCCPOL211115", "output": "29094900"}, {"text_input": "What is the hs code for AMLODIPINE BESYLATE BP/EP (BHN BAKU OBAT) COA AMB/158/10/21,AMB/159/10/21", "output": "29333990"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 212280,212924", "output": "38249999"}, {"text_input": "What is the hs code for PHYTO COLLAGE B(N) (BAHAN BAKU KOSMETIK) COA 211021", "output": "13021990"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 212073", "output": "13021990"}, {"text_input": "What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 212202", "output": "13021990"}, {"text_input": "What is the hs code for ALPINIAWHITE (BAHAN BAKU KOSMETIK) COA 212418", "output": "13021990"}, {"text_input": "What is the hs code for HPA PURE SENSITIVE P116 13 (BHN BAKU KOSMETIK) COA 3241995", "output": "33029000"}, {"text_input": "What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512130,G02512137", "output": "47069200"}, {"text_input": "What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512133,G02512137", "output": "47069200"}, {"text_input": "What is the hs code for FERRIC PYROPHOSPHATE (BHN BAKU MAKANAN) COA 3101653", "output": "28353990"}, {"text_input": "What is the hs code for FERROUS SULFATE, DRIED, POWDER, USP 43 (BHN BAKU MAKANAN) COA 3107512", "output": "28332920"}, {"text_input": "What is the hs code for KSG-15(900 G) (BHN BAKU KOSMETIK) COA 104517", "output": "38249999"}, {"text_input": "What is the hs code for NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 20LNC0927SQ880", "output": "27101990"}, {"text_input": "What is the hs code for NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 20LNC1020SQ901", "output": "27101990"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN)COA ROA273214,ROA276216,ROA277213,ROA...", "output": "28363000"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113603", "output": "29339990"}, {"text_input": "What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) COA 1573747", "output": "38249999"}, {"text_input": "What is the hs code for PREMIX FOR ENERGY DRINK (BHN BAKU MAKANAN) COA XW92110437", "output": "21069059"}, {"text_input": "What is the hs code for NYSTATIN POWDER ROW GRADE (BHN BAKU OBAT) COA C114566", "output": "29419000"}, {"text_input": "What is the hs code for HERBAL EXTRACTS (GARCINIA CAMBOGIA 60 PCT) (BAHAN BAKU KOSMETIK) COA FGC2104003", "output": "13021990"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO210904", "output": "38249999"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO210603", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS210603", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS211004", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK) COA EG209-210701", "output": "13021990"}, {"text_input": "What is the hs code for RICE MILK AQUEOUS EXTRACT (SB) (BHN BAKU KOSMETIK) COA ORSL211102-AQ", "output": "38249999"}, {"text_input": "What is the hs code for RICE MILK AQUEOUS EXTRACT (SB) (BHN BAKU KOSMETIK) COA ORSL211103-AQ", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COACFM210602-PGH", "output": "38249999"}, {"text_input": "What is the hs code for OLIVE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA OLE2108R1", "output": "38249999"}, {"text_input": "What is the hs code for KIGELINE (BHN BAKU KOSMETIK) COA KA210605-B", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-031691", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011851", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-120891", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-021081", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 111921", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-042781", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-032861", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIOCTP-500 (BHN BAKU KOSMETIK) COA BOPN-022381", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1211119", "output": "39139090"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000199654", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000199654,0000199655", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0721010014,0721010030", "output": "29420000"}, {"text_input": "What is the hs code for DL-PANTHENOL 50 L (BHN BAKU KOSMETIK) COA TL02104620", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060010", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210017,0708210018", "output": "29420000"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21060182", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21060182,UT21070210,UT21090291", "output": "29362800"}, {"text_input": "What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0038007", "output": "29362500"}, {"text_input": "What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0721010015", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001624169", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060015", "output": "29420000"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000199655", "output": "29362900"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE BP (BHN BAKU OBAT) COA 25311121,25331121,25351121,25371121,25391121,254....", "output": "29359000"}, {"text_input": "What is the hs code for CETIRIZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA 21006CZ6RII", "output": "29335990"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM REGULAR GRADE(BHN BAKU OBAT) COA 21111670,21111671,21111672,21111716", "output": "29331900"}, {"text_input": "What is the hs code for CAFFEINE BP/EP/USP (BHN BAKU OBAT) COA 21101664-667,21101747,21101751,21111800", "output": "29393000"}, {"text_input": "What is the hs code for GELUCIRE 44/14 BF (BAHAN BAKU OBAT) COA 183228", "output": "28399000"}, {"text_input": "What is the hs code for GELUCIRE 44/14 BF (BAHAN BAKU OBAT) COA 183398", "output": "28399000"}, {"text_input": "What is the hs code for TEFOSE 63 BF (BAHAN BAKU OBAT) COA 185423", "output": "28399000"}, {"text_input": "What is the hs code for TRANSCUTOL P BF (BAHAN BAKU OBAT) COA 187041", "output": "28399000"}, {"text_input": "What is the hs code for LABRAFAC LIPOPHILE WL 1349 BF (BAHAN BAKU OBAT) COA 186085", "output": "28399000"}, {"text_input": "What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET), COA DT722716", "output": "32151900"}, {"text_input": "What is the hs code for OPALUX PINK (BHN BAKU PEWARNA TABLET), COA DT722759", "output": "32151900"}, {"text_input": "What is the hs code for COPPER (II) GLUCONATE, FINE POWDER, USP 43 (BHN BAKU SUPLEMEN) COA 3107840", "output": "29181600"}, {"text_input": "What is the hs code for NATTOKINASE (BHN BAKU OBAT) COA H185SDK001", "output": "35079000"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02110596", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU MAKANAN) COA UT21040211", "output": "29362100"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02108192", "output": "29362700"}, {"text_input": "What is the hs code for B-CAROTENE 30 PCT FS (BHN BAKU MAKANAN) COA UE02107055", "output": "32041900"}, {"text_input": "What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT21040013,UT21040014", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21060016", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (BHN BAKU MAKANAN) COA UT21100101", "output": "29362100"}, {"text_input": "What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02102804,TL02106807", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210076,0708210077,0708210078,0708210079,0708210080", "output": "29420000"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1264950", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOBACILLI AGAR AOAC 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1299409", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1063145", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1201851", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1126127", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1048171", "output": "38210090"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1175732", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1201851", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1123223", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1126127", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1063138", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0128385", "output": "38210090"}, {"text_input": "What is the hs code for VIAL TINSDALE ENRICHMENT 6X15 ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1200461", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1110880,1313171", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1292716", "output": "38210090"}, {"text_input": "What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP Y 1MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1099742", "output": "38210090"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1175732", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1257917", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1068161", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONT.. (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1214470,124...", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1145029", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1102066", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1243871", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MIDDLEBROOK 7H9 BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1081554", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01D200M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1257917", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1173496", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PHENOL RED BROTH BASE BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0335077", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1229997", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9337678", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEMOGLOBIN FREEZE DIED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1187642", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE CHROMAGAR CANDIDA 500GM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1215989", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1187914", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1224924", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1292440", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0002110", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE KF STREPTOCOCCUS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1173803", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1061373", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER LACTOPHENOL COTTON BLUE STAIN (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B04D215M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1131540", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1097873", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1272026", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1236639", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1292440", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1201798", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1048461", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1188932", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1236639", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1088540", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1272026", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1188932", "output": "38210090"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1061650", "output": "38210090"}, {"text_input": "What is the hs code for LOOPS INOCULATING 10/TUBE 10 MICROLITER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2113830", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1292440", "output": "38210090"}, {"text_input": "What is the hs code for RIFAMPICIN POWDER (BAHAN BAKU OBAT) COA 21B015RF", "output": "29419000"}, {"text_input": "What is the hs code for CAPIXYL (TM) (BHN BAKU KOSMETIK) COA 830019287M", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5 PCT CLEAR (BHN BAKU KOSMETIK) COA 785019671M", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5 PCT CLEAR (BHN BAKU KOSMETIK) COA 785019762M", "output": "38249999"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019668M", "output": "38249999"}, {"text_input": "What is the hs code for ABYSSINE (TM) PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) COA 702029166M", "output": "38249999"}, {"text_input": "What is the hs code for B-WHITE (TM) (BHN BAKU KOSMETIK) COA 829019351M", "output": "39139090"}, {"text_input": "What is the hs code for CHRONOLINE (TM) (BHN BAKU KOSMETIK) COA 211512", "output": "39139090"}, {"text_input": "What is the hs code for DENDRICLEAR (TM) (BHN BAKU KOSMETIK) COA 834019745M", "output": "39139090"}, {"text_input": "What is the hs code for ECOGEL (TM) (BHN BAKU KOSMETIK) COA 2125802", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL (TM) (BHN BAKU KOSMETIK) COA 2110006", "output": "38249999"}, {"text_input": "What is the hs code for MELANOSTATINE(TM) 5 BG (50PPM) (BHN BAKU KOSMETIK) COA 211497", "output": "38249999"}, {"text_input": "What is the hs code for MINIPORYL (TM) (BHN BAKU KOSMETIK) COA 832019624M", "output": "38249999"}, {"text_input": "What is the hs code for ROSALITY (TM) (BHN BAKU KOSMETIK) COA 2100901", "output": "38249999"}, {"text_input": "What is the hs code for SILIGEL (TM) (BHN BAKU KOSMETIK) COA 2119602", "output": "38249999"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB21080246", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB21080246", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21060147", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN PREMIX 103093 - A (BHN BAKU MAKANAN) COA XW92110303", "output": "21069059"}, {"text_input": "What is the hs code for PX TRS1 WITHOUT K1 (BHN BAKU MAKANAN) COA XW92110304", "output": "21069059"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE02105011", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPPLEMEN) COA UQ10409510", "output": "29362300"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT21090026", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT21060147", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN E 50 PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21050024,UT21070034", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50 PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21070034", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50 PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21070034,UT21070041", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21040010", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21040011", "output": "29362900"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPPLEMEN) COA UQ10713242", "output": "29362200"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21040011", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5 PCT SD (BHN BAKU SUPPLEMEN) COA UT21050002", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5 PCT SD (BHN BAKU SUPPLEMEN) COA UT21050002", "output": "29362900"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ10713242", "output": "29362200"}, {"text_input": "What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92110232", "output": "21069059"}, {"text_input": "What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-0570921,S-A-0701121", "output": "29334910"}, {"text_input": "What is the hs code for MANGANESE (II)-SULFATE 1-HYDRATE ( BHN BAKU OBAT) COA 3110084", "output": "29181600"}, {"text_input": "What is the hs code for BUDESONIDE MICRONIZED (BHN BAKU OBAT) COA NB2281M", "output": "29372900"}, {"text_input": "What is the hs code for MOMETAZONE FUROATE MICRONIZED (BHN BAKU OBAT) COA NB2941M", "output": "29372200"}, {"text_input": "What is the hs code for TRIAMCINOLONE ACETONIDE MICRONIZED (BHN BAKU OBAT) COA NB2907M", "output": "29372200"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/10/211021,221021,281021,011121", "output": "29420000"}, {"text_input": "What is the hs code for CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/11/021121", "output": "39123100"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE BP (BHN BAKU OBAT) COA ASGP/10/011121", "output": "29420000"}, {"text_input": "What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) (BHN BAKU OBAT) COA 4454035379", "output": "39139090"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20211119", "output": "17029019"}, {"text_input": "What is the hs code for MONOPOT PHOS MKP FG 25K BG (PRAYPHOS MKP FG) (BHN BAKU KOSMETIK) COA 21-148-01", "output": "29420000"}, {"text_input": "What is the hs code for PRAYPHOS DKP FG 25KG BG (BHN BAKU KOSMETIK) COA 2025931", "output": "28352400"}, {"text_input": "What is the hs code for METHOCEL E5 PREMIUM LV HYDROXYPROPYL METHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D011K5BL02", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E15 PREMIUM LV HYDROXYPROPYL METHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D011K5NL01", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL METHYL... (BHN BAKU PEWARNA TABLET) COA D180L52021", "output": "39123900"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2355402", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1082038", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1046610", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1046610", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1046610", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1046610", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASAMINO ACIDS TECHNICAL 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1153688", "output": "38210090"}, {"text_input": "What is the hs code for SOY PEPTONE 100 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2395099", "output": "38210090"}, {"text_input": "What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105713621", "output": "17021100"}, {"text_input": "What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104313121", "output": "17021100"}, {"text_input": "What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105713621", "output": "17021100"}, {"text_input": "What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105713621,L105714621", "output": "17021100"}, {"text_input": "What is the hs code for MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HA01520", "output": "34021990"}, {"text_input": "What is the hs code for SUSTAINABLE VIRGIN OLIVE OIL (BHN BAKU KOSMETIK) COA 0000039386", "output": "38249999"}, {"text_input": "What is the hs code for VIRGIN SWEET ALMOND OIL (BHN BAKU KOSMETIK) COA 0000038920", "output": "15152919"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK) COA NMSP-D-020121,NMSP-D-030121", "output": "39139090"}, {"text_input": "What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWDER FORM CATCOL C135(L) GRADE(B.BAKU KOSMETIK) COA 460/21", "output": "38249999"}, {"text_input": "What is the hs code for MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HA01397,HA01520", "output": "34021990"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 212953", "output": "38249999"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BAHAN BAKU KOSMETIK) COA 212631", "output": "13021990"}, {"text_input": "What is the hs code for AESTHEFILL V200 (POLYLACTIC ACID) ,COA AF211115", "output": "90189090"}, {"text_input": "What is the hs code for VC ASCORBIC ACID 325 MESH (BHN BAKU SUPLEMEN) COA HPD2110152,146,145,144,134,133,.132,127,...", "output": "29362700"}, {"text_input": "What is the hs code for SORBITOL SPECIAL TM MDF 85 (BHN BAKU OBAT) COA M21007", "output": "29054400"}, {"text_input": "What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) COA 7766039", "output": "38249999"}, {"text_input": "What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) COA 7766038", "output": "38249999"}, {"text_input": "What is the hs code for EXTRAPONE (R) LICORICE GWP (BHN BAKU KOSMETIK) COA 10300015", "output": "13021950"}, {"text_input": "What is the hs code for ACTIPONE (R) WHITE TEA GW (BHN BAKU KOSMETIK) COA 10300048", "output": "13021950"}, {"text_input": "What is the hs code for PHYTOCONCENTROLE (R) CAMOMILE (BHN BAKU KOSMETIK) COA 10300044", "output": "13021950"}, {"text_input": "What is the hs code for FD&C YELLOW NO 6 87 PCT PDR (BHN BAKU KOSMETIK) COA 10300020", "output": "13021950"}, {"text_input": "What is the hs code for EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300055", "output": "13021950"}, {"text_input": "What is the hs code for EPERISONE HYDROCHLORIDE SYN-TECH (BHN BAKU OBAT) COA E10-21052", "output": "29333990"}, {"text_input": "What is the hs code for LABRAFIL M 1944 CS BF (BAHAN BAKU OBAT) COA 186488", "output": "28399000"}, {"text_input": "What is the hs code for CETYL PALMITATE PELLETSCAR (BHN BAKU OBAT) COA 185624", "output": "28399000"}, {"text_input": "What is the hs code for GELUCIRE 48/16 PELLETS CAR (BAHAN BAKU OBAT) COA 185000", "output": "28399000"}, {"text_input": "What is the hs code for PANTOPRAZOLE SODIUM (STERILE) BAHAN BAKU OBAT SI/PPZ/01691021", "output": "29333990"}, {"text_input": "What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP846876", "output": "39059990"}, {"text_input": "What is the hs code for PVAP-PHTHALAVIN NF CLEAR (BHN BAKU PEWARNA TABLET) COA WP846877", "output": "39059990"}, {"text_input": "What is the hs code for D&C YELLOW #10 AL 15 PCT - 20 PCT... (BHN BAKU PEWARNA TABLET) COA WP844752:BA9879", "output": "32151900"}, {"text_input": "What is the hs code for FD&C YELLOW #5/TARTRAZINE AL 36PCT - 39 PCT... (BHN BAKU PEWARNA TABLET) COA WP844299:BA9550", "output": "32151900"}, {"text_input": "What is the hs code for ERYTHROSINE AL 38 PCT-42 PCT... (BHN BAKU PEWARNA TABLET) COA WP844563:1", "output": "32151900"}, {"text_input": "What is the hs code for D&C YELLOW #10 AL 15 PCT - 20 PCT... (BHN BAKU PEWARNA TABLET) COA WP844749:BA9877", "output": "32151900"}, {"text_input": "What is the hs code for FD&C BLUE #1/BRILLIANT BLUE FCF AL ... (BHN BAKU PEWARNA TABLET) COA WP840330:BA7714", "output": "32151900"}, {"text_input": "What is the hs code for FD&C YELLOW #6/SUNSET YELLOW FCF AL ... (BHN BAKU PEWARNA TABLET) COA WP839971:BA7546", "output": "32151900"}, {"text_input": "What is the hs code for ERYTHROSINE AL 38 PCT-42 PCT (JECFA, GB) ERYTHROSINE...(BHN BAKU PEWARNA TABLET) COA WP844563:1", "output": "32151900"}, {"text_input": "What is the hs code for FD&C YELLOW #5/TARTRAZINE AL36 PCT - 39 PCT.. (BHN BAKU PEWARNA TABLET) COA WP844299:BA9550", "output": "32151900"}, {"text_input": "What is the hs code for FD&C BLUE #1/BRILLIANT BLUE FCF AL 28PCT-31PCT... (BHN BAKU PEWARNA TABLET) COA WP846602:BB1029", "output": "32151900"}, {"text_input": "What is the hs code for CEFTIZOXIME SODIUM (BHN BAKU OBAT) COA A100300", "output": "29419000"}, {"text_input": "What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2021091803", "output": "21012020"}, {"text_input": "What is the hs code for LIPOID PPL-600 (BHN BAKU SUPPLEMEN) COA 577200-2210231/005--007", "output": "29232010"}, {"text_input": "What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 2109361604", "output": "29362600"}, {"text_input": "What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 2109361604", "output": "29362600"}, {"text_input": "What is the hs code for TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA S7227", "output": "29225090"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000200344,0000200381", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000199655,0000199656,0000199657,0000200344", "output": "29362900"}, {"text_input": "What is the hs code for STERLIE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW MONO YRN29-03 (ALAT KESEHATAN) COA MO2950N1210", "output": "30061010"}, {"text_input": "What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC6D YRPN19...(ALAT KESEHATAN)COA 6D19100L1210", "output": "30061010"}, {"text_input": "What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC6D YRPN21..(ALAT KESEHATAN)COA 6D2190L1210", "output": "30061010"}, {"text_input": "What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW MC HEART...(ALAT KESEHATAN) COA HL19100L1210", "output": "30061010"}, {"text_input": "What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW MC HEART.. (ALAT KESEHATAN) COA HL19100U1210", "output": "30061010"}, {"text_input": "What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC HI RHINO.(ALAT KESEHATAN) COA HR1938L1210", "output": "30061010"}, {"text_input": "What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC HI RHINO.. (ALAT KESEHATAN) COA HR1960L1210", "output": "30061010"}, {"text_input": "What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW DC DUAL... (ALAT KESEHATAN) COA DA21110N1210", "output": "30061010"}, {"text_input": "What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW DC DUAL... (ALAT KESEHATAN) COA DA21110N1210", "output": "30061010"}, {"text_input": "What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 09112021", "output": "25081000"}, {"text_input": "What is the hs code for ESOMEPRAZOLE MAGNESIUMUSP (BHN BAKU OBAT) COA ESM/2111567", "output": "29333990"}, {"text_input": "What is the hs code for BETAHISTINE MESILATE EP/BP (BHN BAKU OBAT) COA EDBHM21003", "output": "29333990"}, {"text_input": "What is the hs code for EUXYL K 100 CAN 10 KG (BHN BAKU KOSMETIK) COA 1569539", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 120 CAN 10 KG (BHN BAKU KOSMETIK) COA 1570700", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) COA 1573368", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) COA 1570953", "output": "38249999"}, {"text_input": "What is the hs code for SENSIDIN DO CAN 10 KG (BHN BAKU KOSMETIK) COA 1570026", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) COA 1573368", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) COA 1574318", "output": "38249999"}, {"text_input": "What is the hs code for FENTACARE 1631 25 MB 200KG PLAS DR (BHN BAKU KOSMETIK ) COA ZH21I1404M", "output": "29239000"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) XH20210704", "output": "29362800"}, {"text_input": "What is the hs code for ASCORBIC ACID 90 PCT GRANULATION (BHN BAKU SUPPLEMEN) WB21109004", "output": "29362700"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) WB20060516,WB21030580,WB21090584,WB21090586", "output": "29362100"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20210901,XH20211001", "output": "29362800"}, {"text_input": "What is the hs code for MEG-3 30 N-3 INF OIL (BHN BAKU SUPPLEMEN) COA TS00018399", "output": "29362500"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2003565686", "output": "29372900"}, {"text_input": "What is the hs code for L-CARNITINE (EP GRADE)(BHN BAKU KOSMETIK)COA 10100120211037", "output": "29239000"}, {"text_input": "What is the hs code for MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HA01397", "output": "34021990"}, {"text_input": "What is the hs code for CHOLINE CHLORIDE 60 PCT (BHN BAKU PAKAN HEWAN) COA YF60Y202111020", "output": "38249999"}, {"text_input": "What is the hs code for BROMELAINE 1600 GDU (BHN BAKU OBAT) COA 223.777", "output": "35079000"}, {"text_input": "What is the hs code for GLIMEPIRIDE USP 43 (BHN BAKU OBAT) COA GLM/042/10/21", "output": "29359000"}, {"text_input": "What is the hs code for PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M598040,M598041", "output": "29411019"}, {"text_input": "What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M534956 S/D M534962", "output": "29411019"}, {"text_input": "What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0058979", "output": "38249999"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20211127", "output": "17029019"}, {"text_input": "What is the hs code for CATECHINS TEAVIGO 4 KG (BHN BAKU KOSMETIK), COA 109101", "output": "21012020"}, {"text_input": "What is the hs code for SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0126700", "output": "13021950"}, {"text_input": "What is the hs code for SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0126800", "output": "13021950"}, {"text_input": "What is the hs code for SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0126800", "output": "13021950"}, {"text_input": "What is the hs code for SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0126900", "output": "13021950"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/12/051221,061221,071221,081221,091221", "output": "29420000"}, {"text_input": "What is the hs code for NEOSTIGMINE METHYL SULPHATE (BHN BAKU OBAT) COA NMS0220004", "output": "29211100"}, {"text_input": "What is the hs code for FENTACARE 2231 EF 25KG PAPER BOX (BHN BAKU KOSMETIK )COA ZH21L0404,ZH21L0904", "output": "34029019"}, {"text_input": "What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) COA 321CAA0012", "output": "38249999"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ10613218", "output": "29362200"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21060146", "output": "29362900"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ10613218", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ10612206", "output": "29362200"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21040010", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3 PCT (BHN BAKU SUPPLEMEN) COA WB21050060", "output": "29362500"}, {"text_input": "What is the hs code for PREMIX VMP JELLY (BHN BAKU MAKANAN) COA XW92111021", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92111038", "output": "21069059"}, {"text_input": "What is the hs code for MINERAL PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92111019", "output": "21069059"}, {"text_input": "What is the hs code for MIN PREMIX MI A2 (BHN BAKU MAKANAN) COA XW92111020", "output": "21069059"}, {"text_input": "What is the hs code for VIT PREMIX MI A1 (BHN BAKU MAKANAN) COA XW92111039", "output": "21069059"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12110019", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5 PCT SD (BHN BAKU MAKANAN) COA UT21050002", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12110019", "output": "29362900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11210901", "output": "29362500"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11210901", "output": "29362500"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11210901", "output": "29362500"}, {"text_input": "What is the hs code for MIRASIL CM5 L (BHN BAKU KOSMETIK) COA 2149WKQ515", "output": "29319049"}, {"text_input": "What is the hs code for VALERIAN D.H.E 0.8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 21B0128500", "output": "13021990"}, {"text_input": "What is the hs code for VALERIAN D.H.E 0.8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 21B0128500", "output": "13021990"}, {"text_input": "What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M534977,978,989,990,991,992", "output": "29411019"}, {"text_input": "What is the hs code for RANITIDINE HCL USP ( BAHAN BAKU OBAT ) COA RH 825 10 21,RH 826 10 21,RH 824 10 21", "output": "29321900"}, {"text_input": "What is the hs code for METOCLOPRAMIDE HYDROCHLORIDE BP ( BAHAN BAKU OBAT ) COA M-2111419", "output": "29242990"}, {"text_input": "What is the hs code for FLUNARIZINE DIHYDROCHLORIDE BP ( BAHAN BAKU OBAT ) COA FLU/08211033", "output": "29335990"}, {"text_input": "What is the hs code for CINNARIZINE BP/EP( BAHAN BAKU OBAT ) COA CIN/11211143", "output": "29335990"}, {"text_input": "What is the hs code for RANITIDINE HYDROCHLORIDE( BAHAN BAKU OBAT ) COA RH 993 12 21", "output": "29321900"}, {"text_input": "What is the hs code for RANITIDINE HYDROCHLORIDE( BAHAN BAKU OBAT ) COA RH 291 04 21", "output": "29321900"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH652270", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE PURPLE (BHN BAKU PEWARNA TABLET) COA SH652289", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH652271", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH652286", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH650443", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH652272", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH652273", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB RED (BHN BAKU PEWARNA TABLET) COA SH652274", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GRAY (BHN BAKU PEWARNA TABLET) COA SH652275", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH652345", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH652276", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH652277", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH652288", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH652595", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH652302", "output": "38249999"}, {"text_input": "What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102123012", "output": "28161000"}, {"text_input": "What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102102039", "output": "28183000"}, {"text_input": "What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102123012, SAMPLE NO COMMERCIAL..", "output": "28161000"}, {"text_input": "What is the hs code for BARCROFT TM 0600 AHMC (BHN BAKU OBAT) COA 102114002", "output": "28161000"}, {"text_input": "What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102123012", "output": "28161000"}, {"text_input": "What is the hs code for BARCROFT TM AL HYD GEL LV13, USP (BHN BAKU OBAT) COA 102113125", "output": "28183000"}, {"text_input": "What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102123012, SAMPLE NO COMMERCIAL..", "output": "28161000"}, {"text_input": "What is the hs code for BARCROFT TM AL HYD GEL LV13, USP (BHN BAKU OBAT) COA 102113125, SAMPLE NO COMMERCIAL VALUE", "output": "28183000"}, {"text_input": "What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 199196", "output": "29332900"}, {"text_input": "What is the hs code for PARSOL ZX (BHN BAKU KOSMETIK) COA 201008012, SAMPLE NO COMMERCIAL VALUE", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040021, SAMPLE NO COMMERCIAL VALUE", "output": "29420000"}, {"text_input": "What is the hs code for ESOMEPRAZOLE MAGNESIUM USP (BHN BAKU OBAT) COA ESM/2111567", "output": "29333990"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP34021,MTP34021", "output": "28363000"}, {"text_input": "What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340323,B340328,B340342", "output": "29419000"}, {"text_input": "What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334786,B334790,B334791", "output": "29419000"}, {"text_input": "What is the hs code for PROPYPHENAZONE (ST) (BHN BAKU OBAT UTK PEWARNA TABLET) COA 2010190", "output": "29331100"}, {"text_input": "What is the hs code for DEXAMETHASONE BP2010/USP41 (BHN BAKU OBAT) COA NED220101", "output": "29372200"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP31121,MTP32121", "output": "28363000"}, {"text_input": "What is the hs code for SUCRALOSE (BHN BAKU OBAT) COA 21082101", "output": "29321400"}, {"text_input": "What is the hs code for DICLAZURIL (BHN BAKU PAKAN HEWAN) COA 210601-1", "output": "29339990"}, {"text_input": "What is the hs code for DL-TARTARIC ACID (BHN BAKU MAKANAN) COA RS01565", "output": "29181200"}, {"text_input": "What is the hs code for TRIMETHOPRIM (BHN BAKU PAKAN HEWAN) COA A-20112111049", "output": "29335990"}, {"text_input": "What is the hs code for L-MALIC ACID (BHN BAKU MAKANAN) COA CS11986", "output": "29181900"}, {"text_input": "What is the hs code for CROSPOVIDONE XL-10 (BHN BAKU OBAT) COA PP211114XL-10", "output": "39059990"}, {"text_input": "What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA MLAH0741021", "output": "29341000"}, {"text_input": "What is the hs code for SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202112-006", "output": "35040000"}, {"text_input": "What is the hs code for MAGNESIUM CARBONATE, EXTRA LIGHT (BHN BAKU MAKANAN) COA 3103621,3107043,3109372-01,3106064", "output": "28369990"}, {"text_input": "What is the hs code for SODIUM CARBONATE IPH (BHN BAKU SUPPLEMEN) COA DOC3312121,DOC3152121", "output": "28363000"}, {"text_input": "What is the hs code for ROSUVASTATIN CALSIUM (BHN BAKU OBAT) COA M325269", "output": "29359000"}, {"text_input": "What is the hs code for RANITIDINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA RHP 061 12 21; RHP 062 12 21", "output": "29321900"}, {"text_input": "What is the hs code for SODIUM VALPROATE (BAHAN BAKU OBAT) COA 455931 (V6812)", "output": "29159090"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN545806", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN545797", "output": "35051010"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1314223", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1314223", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1287225", "output": "38210090"}, {"text_input": "What is the hs code for VC ASCORBIC ACID REGULAR (BHN BAKU SUPLEMEN) COA HPD2111135,HPD2112002", "output": "29362700"}, {"text_input": "What is the hs code for VC ASCORBIC ACID DC 97 PCT (BHN BAKU SUPLEMEN) COA HPG2111004,HPG2111005", "output": "29362700"}, {"text_input": "What is the hs code for VC ASCORBIC ACID REGULAR (BHN BAKU SUPLEMEN) COA HPB2111233", "output": "29362700"}, {"text_input": "What is the hs code for PIROXICAM (BAHAN BAKU OBAT ) COA PRX2021008M", "output": "29349990"}, {"text_input": "What is the hs code for PHENYLEPHRINE HCL USP (BHN BAKU OBAT) COA 2-IL-D-1441221,2-IL-D-1451221,2-IL-D-1461221", "output": "29225090"}, {"text_input": "What is the hs code for MAGNESIUM CARBONATE, HEAVY (BHN BAKU SUPLEMEN) COA 1104215,1104545,1104717", "output": "28369990"}, {"text_input": "What is the hs code for SELOHVITA C (BHN BAKU OBAT) COA 3105469", "output": "28429010"}, {"text_input": "What is the hs code for POTASSIUM L-ASPARTATE 0,5 HYDRATE (BHN BAKU OBAT) COA 3097136", "output": "29224900"}, {"text_input": "What is the hs code for SODIUM GLYCEROPHOSPHATE (BHN BAKU OBAT) COA 3084920", "output": "29199000"}, {"text_input": "What is the hs code for MAGNESIUM OXIDE, LIGHT, POWDER (BHN BAKU OBAT) COA 1104624", "output": "25199010"}, {"text_input": "What is the hs code for SELOHVITA C (BHN BAKU OBAT) COA 3109781", "output": "28429010"}, {"text_input": "What is the hs code for MAGNESIUM CARBONATE, HEAVY (BHN BAKU OBAT) COA 3109046", "output": "28369990"}, {"text_input": "What is the hs code for FERRIC PYROPHOSPHATE 24 - 26 PCT FE (BHN BAKU OBAT) COA 3101624", "output": "28353990"}, {"text_input": "What is the hs code for MAGNESIUM CARBONATE, HEAVY (BHN BAKU OBAT) COA 3103805-1,3109046,1104215", "output": "28369990"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT21120037", "output": "29362100"}, {"text_input": "What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA EDS/CB0210B", "output": "29349990"}, {"text_input": "What is the hs code for OPADRY 200 BROWN (BHN BAKU PEWARNA TABLET) COA SH653550", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH653549", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH652992", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH653058", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH652936", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH652937", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH652938", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH652939", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH652940", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH652984", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH653800", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH653446", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II CLEAR (BHN BAKU PEWARNA TABLET) COA SH653270", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY RED (BHN BAKU PEWARNA TABLET) COA SH652943", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH652985", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II BLUE (BHN BAKU PEWARNA TABLET) COA SH652991", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH652944", "output": "38249999"}, {"text_input": "What is the hs code for PIGMENT BLEND BROWN (BHN BAKU PEWARNA TABLET) COA SH652983", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY GREEN (BHN BAKU PEWARNA TABLET) COA SH652945", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH652990", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH652939", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-021781", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1211208", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-131791", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE 1 PCT SOLUTION (BHN BAKU KOSMETIK) COA HASC-141341", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 120821", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-051501", "output": "13021950"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-050211", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-032861", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-011151", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011851", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-173011", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 120821", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-061911", "output": "13021950"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20211130", "output": "17029019"}, {"text_input": "What is the hs code for PERMETHRIN (PHARMA GRADE) BHN BAKU OBAT COA 215046012", "output": "29163990"}, {"text_input": "What is the hs code for ABSORAGE (BAHAN BAKU KOSMETIK) COA 212642", "output": "13021990"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 212953", "output": "38249999"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 212631", "output": "13021990"}, {"text_input": "What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 211752", "output": "13021990"}, {"text_input": "What is the hs code for ACNE BUSTERS (BHN BAKU KOSMETIK) COA 212711", "output": "38249999"}, {"text_input": "What is the hs code for ACNE BUSTERS (BHN BAKU KOSMETIK) COA 212711", "output": "38249999"}, {"text_input": "What is the hs code for ACNE BUSTERS (BHN BAKU KOSMETIK) COA 210386", "output": "38249999"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 212953", "output": "38249999"}, {"text_input": "What is the hs code for ROSE HIPS LIQUID B (BHN BAKU KOSMETIK) COA 211392", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210802", "output": "13021990"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO210904", "output": "38249999"}, {"text_input": "What is the hs code for CHAMOMILIA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO210603", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS211004", "output": "38249999"}, {"text_input": "What is the hs code for HONEY OILY EXTRACT (BHN BAKU KOSMETIK) COA MIE200101-H", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210802", "output": "13021990"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO210904", "output": "38249999"}, {"text_input": "What is the hs code for CHAMOMILIA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO210603", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS211004", "output": "38249999"}, {"text_input": "What is the hs code for SEABUCKTHORN HYDROGLYCOLIC EXTRACT(BHN BAKU KOSMETIK) COA HIR210101-B", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA GINSENG PHYTELENE EG 209", "output": "13021990"}, {"text_input": "What is the hs code for EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) COA 1576221", "output": "38249999"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113603", "output": "29339990"}, {"text_input": "What is the hs code for FIXABLE VIABILITY STAIN 510 100UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0345532", "output": "38210090"}, {"text_input": "What is the hs code for HU IFN-GMA BV421 B27 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1110349", "output": "38210090"}, {"text_input": "What is the hs code for HU IL-2 PE MQ1-17H12 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1180913", "output": "38210090"}, {"text_input": "What is the hs code for HU IL-4 APC 8D4-8 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1083846,1173686", "output": "38210090"}, {"text_input": "What is the hs code for HU CD8 APC-CY7 SK1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1221667", "output": "38210090"}, {"text_input": "What is the hs code for HU CD3 FITC HIT3A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0328919", "output": "38210090"}, {"text_input": "What is the hs code for CYTOFIX/CYTOPERM SOLN KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1215119", "output": "38210090"}, {"text_input": "What is the hs code for HU CD28 NALE CD28.2 500UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1050152,1050153", "output": "38210090"}, {"text_input": "What is the hs code for HU TH1/TH2/TH17 CBA KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1232545,1232692", "output": "38210090"}, {"text_input": "What is the hs code for CD4 PERCP-CY5.5 SK3 RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1294299", "output": "38210090"}, {"text_input": "What is the hs code for BD CST BEADS KIT 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 12948", "output": "38210090"}, {"text_input": "What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK) COA LDC44921T", "output": "27101990"}, {"text_input": "What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) COA 112080", "output": "38249999"}, {"text_input": "What is the hs code for KSG-15 (16KG) (BHN BAKU KOSMETIK) COA 111529", "output": "38249999"}, {"text_input": "What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 111170", "output": "38249999"}, {"text_input": "What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) COA 111266,111267", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) COA 1574774,1575273", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 720 CAN 10 KG (BHN BAKU KOSMETIK) COA 1573611,1575272", "output": "38249999"}, {"text_input": "What is the hs code for MONOCALCIUM PHOSPHATE FEED GRADE MICROGRANULAR (BHN BAKU PAKAN TERNAK) COA 202111010125", "output": "28352600"}, {"text_input": "What is the hs code for HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2510921", "output": "29391900"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP21124133 S/D XP21124138", "output": "29211900"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP21123082 S/D XP21123087", "output": "29211900"}, {"text_input": "What is the hs code for JOJOBA OIL VIRGIN LOW ODOUR (BHN BAKU KOSMETIK) COA 158779", "output": "15159011"}, {"text_input": "What is the hs code for DENDRICLEAR (TM) (BHN BAKU KOSMETIK) COA 834019745M", "output": "39139090"}, {"text_input": "What is the hs code for AMISOL TRIO (TM) (BHN BAKU KOSMETIK) COA 2100014", "output": "38249999"}, {"text_input": "What is the hs code for CAPIXYL (TM) (BHN BAKU KOSMETIK) COA 830019573M", "output": "38249999"}, {"text_input": "What is the hs code for CAPIXYL (TM) (BHN BAKU KOSMETIK) COA 830019573M", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5 PCT CLEAR (BHN BAKU KOSMETIK) COA 785019762M", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5 PCT CLEAR (BHN BAKU KOSMETIK) COA 785019762M", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL (TM) (BHN BAKU KOSMETIK) COA 2125202", "output": "38249999"}, {"text_input": "What is the hs code for TYROSTAT (TM) 11 (BHN BAKU KOSMETIK) COA 784029189M", "output": "39139090"}, {"text_input": "What is the hs code for WORLEE ALOE PURE BALANCE IF 200X FD (BAHAN BAKU KOSMETIK) COA 512070", "output": "13021990"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB191121", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB191121", "output": "39123900"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B261121", "output": "39123900"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B261121", "output": "39123900"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 29491221,29511221,29541221,29561221,.....", "output": "29359000"}, {"text_input": "What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-211211", "output": "29061300"}, {"text_input": "What is the hs code for CALAMINE , POWDER, BP 2021 (BHN BAKU SUPLEMEN) COA 3106872", "output": "28369990"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) SJG", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA SLI", "output": "38249999"}, {"text_input": "What is the hs code for POTASSIUM IODIDE AND CARRIER (BHN BAKU OBAT) COA 3108569", "output": "28276000"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA ROA275217,ROA275211,ROA272216", "output": "28363000"}, {"text_input": "What is the hs code for LEUCOCYANIDINS (BHN BAKU SUPLEMEN) COA 1104/7, SAMPLE NO COMMERCIAL INVOICE", "output": "13021950"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040019,0221040059", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050133,0321050134,0321050136,0321050137,0321050138", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210021,0708210022,0708210023", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS5840321", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0921020002", "output": "29420000"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1273554", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1273553", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1273553", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1273554", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1309612", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1309612", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG L&P80 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 1285558,1313328", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1123223", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0219127", "output": "38210090"}, {"text_input": "What is the hs code for VIAL E COLI O ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0094884", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1313171", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE B12 INOCULUM BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1195933", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1244192", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1273553", "output": "38210090"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1182099", "output": "38210090"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1182099", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE FOLIC AOAC MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1133929", "output": "38210090"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1182099", "output": "38210090"}, {"text_input": "What is the hs code for TSA TM WLP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1327989", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA PENGEMBANGAN MIKROORGANISME) BATCH 1335274", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1335298", "output": "38210090"}, {"text_input": "What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-002-Y", "output": "13021990"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL METHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D011L3OL01", "output": "39123900"}, {"text_input": "What is the hs code for FD&C YELLOW #6/SUNSET YELLOW FCF.... (BHN BAKU PEWARNA TABLET) COA WP839962:BA7341", "output": "32151900"}, {"text_input": "What is the hs code for FD&C YELLOW #5/TARTRAZINE AL36PCT - 39PCT.... (BHN BAKU PEWARNA TABLET) COA WP844301:BA9667", "output": "32151900"}, {"text_input": "What is the hs code for FD&C YELLOW #5/TARTRAZINE AL 36PCT - 39PCT... (BHN BAKU PEWARNA TABLET) COA WP833410:BA4890", "output": "32151900"}, {"text_input": "What is the hs code for ERYTHROSINE AL 38PCT - 42PCT... (BHN BAKU PEWARNA TABLET) COA WP835192:1", "output": "32151900"}, {"text_input": "What is the hs code for FD&C RED #40/ALLURA RED AC AL 38PCT- 42PCT... (BHN BAKU PEWARNA TABLET) COA WP841246:BA8625", "output": "32151900"}, {"text_input": "What is the hs code for D&C YELLOW #10 AL 15PCT - 20PCT... (BHN BAKU PEWARNA TABLET) COA WP844755:BA9949", "output": "32151900"}, {"text_input": "What is the hs code for FD&C YELLOW #6/SUNSET YELLOW FCF... (BHN BAKU PEWARNA TABLET) COA WP848263:BB2196", "output": "32151900"}, {"text_input": "What is the hs code for EXTRAPONE (R) LICORICE GWP (BHN BAKU KOSMETIK) COA 10300017", "output": "13021950"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2103661117", "output": "29372900"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D011L3OL01", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL A15 PREMIUM LV METHYLCELLULOSE... (BHN BAKU PEWARNA TABLET) COA D180L6S021", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180K61001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180L51022", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E15 PREMIUM LV HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D011K5SL02", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D011L3OL01", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D180L2Q002", "output": "39123900"}, {"text_input": "What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 21E1309", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 21E1607", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE A PELLETS (BHN BAKU OBAT) COA 21E4308", "output": "28399000"}, {"text_input": "What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK) COA 8705000", "output": "38249999"}, {"text_input": "What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1228035", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1215964", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1215964", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2355402", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2305552", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2305552", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1082038", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1082038", "output": "38210090"}, {"text_input": "What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0175474", "output": "38210090"}, {"text_input": "What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1153097", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1046610", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1046610", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1046610", "output": "38210090"}, {"text_input": "What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0216774", "output": "38210090"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY PREGELATINIZED.... (BHN BAKU PEWARNA TABLET) COA IN545319", "output": "35051010"}, {"text_input": "What is the hs code for LEVOFLOXACIN HEMIHYDRATE (FREE ALKALINE) (BHN BAKU OBAT) COA C008-2111603", "output": "29349990"}, {"text_input": "What is the hs code for LINCOMYCIN HYDROCHLORIDE (BHN BAKU OBAT) COA 2107002", "output": "29419000"}, {"text_input": "What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-201107", "output": "29397900"}, {"text_input": "What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340331,B340336,B340337", "output": "29419000"}, {"text_input": "What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M535067,M535069 S/D M535072,M535074 ,M535075", "output": "29411019"}, {"text_input": "What is the hs code for HYDROCORTISONE ACETATE EP7/USP42 (BHN BAKU OBAT) COA NEHAC211203", "output": "29372200"}, {"text_input": "What is the hs code for DEXAMETHASONE (BHN BAKU OBAT) COA NED220107,NED220110,NED211113", "output": "29372200"}, {"text_input": "What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE (BHN BAKU OBAT) COA NEDNA211007", "output": "29372200"}, {"text_input": "What is the hs code for PARACETAMOL USP (BHN BAKU OBAT) COA 2210005,2210009,2210010,2151953", "output": "29242930"}, {"text_input": "What is the hs code for TSPL-30-ID (BHN BAKU KOSMETIK) COA", "output": "38249999"}, {"text_input": "What is the hs code for VITAMIN PREMIX MILK POWDER FOR ADULTS (BHN BAKU MAKANAN) COA XW92111022", "output": "21069059"}, {"text_input": "What is the hs code for MINERAL PREMIX MILK POWDER FOR ADULTS V2 (BHN BAKU MAKANAN) COA XW92111092", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21060146,UT21070149", "output": "29362900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11210902,QZ11210903", "output": "29362500"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3 PCT (BHN BAKU SUPPLEMEN) COA WB21060056", "output": "29362300"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ10713265", "output": "29362200"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21070149", "output": "29362900"}, {"text_input": "What is the hs code for B-CAROTENE 30 PCT FS (BHN BAKU MAKANAN) COA UE02104027,UE02105040,UE02105042", "output": "32041900"}, {"text_input": "What is the hs code for STAY-C (R) 50(BHN BAKU KOSMETIK) COA UE02101013", "output": "29362700"}, {"text_input": "What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0921020016,0921020022", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040083", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0421040061", "output": "29420000"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21100362", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21100362", "output": "29362800"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060047,0521060058", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060020", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL ZX (BHN BAKU KOSMETIK) COA 190927012", "output": "29420000"}, {"text_input": "What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA", "output": "21012020"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA303217,ROA305212,ROA300212,....", "output": "28363000"}, {"text_input": "What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0060661", "output": "38249999"}, {"text_input": "What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 211897,213035", "output": "13021990"}, {"text_input": "What is the hs code for BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1229957", "output": "38210090"}, {"text_input": "What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1272545", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1314313", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE CLED AGAR BBL (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1299286", "output": "38210090"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1061650", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1131505", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1257220", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1173496", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1188089", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1D19654", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1188932", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1188091", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1222962", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1007102", "output": "38210090"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1071063", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1145029", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1071109", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALT EXTRACT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1138882", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MICRO INOCULUM BROTH 500 G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1075951", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MIL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283882", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 5 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1236415", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ISP MEDIUM 4 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1133635", "output": "38210090"}, {"text_input": "What is the hs code for VIAL UNIVERSAL VIRAL TRANSPORT(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH N10157500,N10347800", "output": "38210090"}, {"text_input": "What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1278413", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1242041", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1244312,1272570", "output": "38210090"}, {"text_input": "What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B03D284M,B01D301M", "output": "38210090"}, {"text_input": "What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1272545", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1327503", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1278675,82", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1306190", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1201174", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283868", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1173666", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1068161,1257917", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1201798", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1173496", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1188089", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1048461", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1187601", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1019654", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1188932", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1144373", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0322946", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1201174", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1201798", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1019654", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1188932", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1327503", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1292440", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1215037", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1155513,....", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EOSIN METHYLENE BLUE AG HHT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1223549", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1229997", "output": "38210090"}, {"text_input": "What is the hs code for BOTLE LYSINE DECARBOXYLASE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1096987", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9337678", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1187914", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0350960", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE WL DIFFERENTIAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1188436", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1061373", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01D341M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1312204", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M ENDO BROTH MF 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0282594", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1159790", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1111035", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1279386,1181266,1102066", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1314313,....", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1319643", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE STANDARD METHODS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1244342", "output": "38210090"}, {"text_input": "What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP32021,MTP34621", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA EXCIPIENT 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN)COA MTP32121,SAMPLE NO VALUE", "output": "28363000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-070921", "output": "38249999"}, {"text_input": "What is the hs code for MIRASIL CM5 L (BHN BAKU KOSMETIK) COA 2202WKQ215", "output": "29319049"}, {"text_input": "What is the hs code for OPADRY ORANGE (BHN BAKU PEWARNA TABLET) COA GA700396", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA GA700397", "output": "38249999"}, {"text_input": "What is the hs code for TABCOAT TC WHITE (BHN BAKU PEWARNA TABLET) COA GA700398", "output": "32151900"}, {"text_input": "What is the hs code for CEFTAZIDIME BUFFERED (BHN BAKU OBAT) COA A200200", "output": "29419000"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040019,0221040059", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050133,0321050134,0321050136,0321050137,0321050138", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210021,0708210022,0708210023", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS5840321", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0921020002", "output": "29420000"}, {"text_input": "What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105714621", "output": "17021100"}, {"text_input": "What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104314021", "output": "17021100"}, {"text_input": "What is the hs code for MICROBIO M3D AUTOSCANNER EN (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH AS0149", "output": "38210090"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM REGULAR GRADE(BHN BAKU OBAT) COA 21121929,21121930,21121934,21121935", "output": "29331900"}, {"text_input": "What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED (BHN BAKU PAKAN HEWAN) COA MTP05221,MTP00122", "output": "28363000"}, {"text_input": "What is the hs code for MONOPOT PHOS MKP FG 25K BG (PRAYPHOS MKP FG) (BHN BAKU KOSMETIK) COA 21-244-01,21-148-01", "output": "29420000"}, {"text_input": "What is the hs code for PRAYPHOS DKP FG 25KG BG (BHN BAKU KOSMETIK) COA 2116831,2025931", "output": "28352400"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS211004", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS211004", "output": "38249999"}, {"text_input": "What is the hs code for SEABUCKTHORN HYDROGLYCOLIC EXTRACT(BHN BAKU KOSMETIK) COA HIR210101-B", "output": "13021990"}, {"text_input": "What is the hs code for HEBELYS (BHN BAKU KOSMETIK) COA SPHC210402-Z100", "output": "38249999"}, {"text_input": "What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 12-03-21,19-03-21,17-09-21,03-09-21,01-07-21,....", "output": "38029090"}, {"text_input": "What is the hs code for PHENOXY ETHANOL PR (BHN BAKU KOSMETIK) COA 744267,744112", "output": "29094900"}, {"text_input": "What is the hs code for COOLACT 10 (BHN BAKU KOSMETIK) COA T008444", "output": "29094900"}, {"text_input": "What is the hs code for AVEMIX DUAL (BHN PAKAN TERNAK) COA 0000012738, SAMPLE NO COMMERCIAL VALUE", "output": "35079000"}, {"text_input": "What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 210415", "output": "13021990"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 210618", "output": "13021990"}, {"text_input": "What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 210918", "output": "13021990"}, {"text_input": "What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 211111", "output": "29061900"}, {"text_input": "What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 211010", "output": "13021990"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 210618", "output": "13021990"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 210803,211014", "output": "13021990"}, {"text_input": "What is the hs code for ACNE BUSTERS (BHN BAKU KOSMETIK) COA 212711", "output": "38249999"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 212953", "output": "38249999"}, {"text_input": "What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 212202", "output": "13021990"}, {"text_input": "What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 211808", "output": "13021990"}, {"text_input": "What is the hs code for PEACH LEAF LIQUID B (BHN BAKU KOSMETIK) COA 212954", "output": "13021990"}, {"text_input": "What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 211752", "output": "13021990"}, {"text_input": "What is the hs code for ALTHEA LIQUID (BHN BAKU KOSMETIK) COA 212339", "output": "13021990"}, {"text_input": "What is the hs code for BIO-PGA SOLUTION HB (BHN BAKU KOSMETIK) COA 212278", "output": "39139090"}, {"text_input": "What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 211349", "output": "13021990"}, {"text_input": "What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 202079", "output": "13021990"}, {"text_input": "What is the hs code for OPALUX MAROON (BHN BAKU PEWARNA TABLET) COA DT724198", "output": "32151900"}, {"text_input": "What is the hs code for OPASPRAY YELLOW (BHN BAKU PEWARNA TABLET) COA DT724192", "output": "32151900"}, {"text_input": "What is the hs code for OPACODE BLACK (BHN BAKU PEWARNA TABLET) COA DT724193", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH654510", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH652982", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH653768", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH653768", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH652981", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH652978", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH652994", "output": "38249999"}, {"text_input": "What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK) COA 8714500", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-070921", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND APRICOT EXTRACT (BHN BAKU KOSMETIK) COA PAS-010501", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-072081,HOXB-082821", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND JEJU TANGERINE EXTRACT (BHN BAKU KOSMETIK) COA GTUP-T-011971", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011851", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-032721", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE 1 PCT SOLUTION (BHN BAKU KOSMETIK) COA HASC-14134", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 123021", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-061911", "output": "13021950"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND CACTUS EXTRACT (BHN BAKU KOSMETIK) COA CAB-052921", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-032861", "output": "13021990"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL ... (BHN BAKU PEWARNA TABLET) COA D180L52021", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E4M PREMIUM HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180L21012", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180KCM022", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180K61001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL ... (BHN BAKU PEWARNA TABLET) COA D180L4S022", "output": "39123900"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 FOOD OIL (BHN BAKU MAKANAN) COA TS00018693", "output": "29362500"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT21090031", "output": "29362900"}, {"text_input": "What is the hs code for B-CAROTENE 10 PCT CWS (BHN BAKU SUPPLEMEN) COA UT21050015", "output": "32041900"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20201101", "output": "29362800"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12111013", "output": "29362900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ10413604", "output": "29362500"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ10612206,UQ10312088", "output": "29362200"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU SUPPLEMEN) COA UT21020206", "output": "29362100"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ10312088", "output": "29362200"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ10910762", "output": "29362300"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPPLEMEN) COA TL02107035,TL02109430,TL02110597", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT21061096,UT21061097", "output": "29362100"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT20040088,UT20050089", "output": "29362400"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ10612206", "output": "29362200"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT20050089", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21070149", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000201105,0000201106", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000201106", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000201106", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050385,0321050386,0321050388,0321050389,0321050390", "output": "29420000"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000201106,0000201107", "output": "29362900"}, {"text_input": "What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF21092005", "output": "29420000"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21100362,UT21110383", "output": "29362800"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP33621", "output": "28363000"}, {"text_input": "What is the hs code for VC CALCIUM ASCORBATE DC (BHN BAKU SUPLEMEN) COA HPT2106002", "output": "29362700"}, {"text_input": "What is the hs code for AQUACOAT CPD-30 CELLULOSE .... (BHN BAKU PEWARNA TABLET) COA 2173804237", "output": "39123900"}, {"text_input": "What is the hs code for SENTRY POLYOX WSR 303 LEO NF ... (BHN BAKU PEWARNA TABLET) COA D682L6MRR4", "output": "39123900"}, {"text_input": "What is the hs code for SENTRY POLYOX WSR 303 LEO NF ... (BHN BAKU PEWARNA TABLET) COA D682L3TRR5", "output": "39123900"}, {"text_input": "What is the hs code for AQUACOAT CPD-30 CELLULOSE ... (BHN BAKU PEWARNA TABLET) COA 2174048104", "output": "39123900"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU OBAT) COA 20211130", "output": "17029019"}, {"text_input": "What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP33621", "output": "28363000"}, {"text_input": "What is the hs code for MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50428", "output": "29061100"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH655356", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH654040", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH653656", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH649250", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH653776", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH653607", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH654249", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH653768", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH653067", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH653801", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH653549", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BLUE (BHN BAKU PEWARNA TABLET) COA SH652991", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH653825", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II PURPLE (BHN BAKU PEWARNA TABLET) COA SH653836", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH653779", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH653826", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II CLEAR (BHN BAKU PEWARNA TABLET) COA SH653827", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH653780", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB II BROWN (BHN BAKU PEWARNA TABLET) COA SH653835", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH652510", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH653838", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH653705", "output": "38249999"}, {"text_input": "What is the hs code for PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 061521/007043", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH655098", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH655303", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH654419", "output": "38249999"}, {"text_input": "What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU UTK PAKAN TERNAK) COA 202100644", "output": "28183000"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN546043", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN546048", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN546044", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN546047", "output": "35051010"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113692", "output": "29339990"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113692", "output": "29339990"}, {"text_input": "What is the hs code for COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPLEMEN) COA TL02112175", "output": "29362700"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB191121", "output": "39123900"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B241221", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB191121", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LG090122", "output": "39123900"}, {"text_input": "What is the hs code for PEARL ESSENCES 35031MJ (BHN BAKU KOSMETIK) COA D1390252", "output": "32061910"}, {"text_input": "What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWDER FORM CATCOL C135(L) GRADE(B.BAKU KOSMETIK) COA 090/22", "output": "38249999"}, {"text_input": "What is the hs code for CALCIUM CARBONATE DC TYPE CS90 PHARMA (BHN BAKU SUPPLEMEN) COA 202100243,202100236", "output": "28365010"}, {"text_input": "What is the hs code for MAGNESIUM HYDROXYDE MS90 PHARMA (BHN BAKU SUPPLEMEN) COA 202100545", "output": "28161000"}, {"text_input": "What is the hs code for GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 21T0112100", "output": "13021950"}, {"text_input": "What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 22122021", "output": "25081000"}, {"text_input": "What is the hs code for MONENDOX 200 BMP (BHN BAKU UTK PAKAN TERNAK) COA 2112202", "output": "29419000"}, {"text_input": "What is the hs code for OPALUX TAN (BHN BAKU PEWARNA TABLET) COA DT724789", "output": "32151900"}, {"text_input": "What is the hs code for OPASPRAY YELLOW (BHN BAKU PEWARNA TABLET) COA DT724790", "output": "32151900"}, {"text_input": "What is the hs code for OPASPRAY YELLOW (BHN BAKU PEWARNA TABLET) COA DT724811", "output": "32151900"}, {"text_input": "What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET) COA DT724830", "output": "32151900"}, {"text_input": "What is the hs code for OPAGLOS WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET) COA DT723634", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY TF WHITE (BHN BAKU PEWARNA TABLET) COA DT724822", "output": "32151900"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/01/020122", "output": "29420000"}, {"text_input": "What is the hs code for CROSCARMELLOSE SODIUM USP-NF (BHN BAKU OBAT) COA ACRMC/12/181221,211221,261221,271221,091221", "output": "39129090"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE BP (BHN BAKU OBAT) COA ASGP/12/261221,271221,161221", "output": "29420000"}, {"text_input": "What is the hs code for MAGNESIUM CHLORIDE 6-HYDRATE, CRYST. (BHN BAKU OBAT) COA 3101386", "output": "28273100"}, {"text_input": "What is the hs code for XANTHAN FFPC (BHN BAKU OBAT) COA 2551113", "output": "39139090"}, {"text_input": "What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 702018037K", "output": "38249999"}, {"text_input": "What is the hs code for ALDAVINE (TM) 5X (BHN BAKU KOSMETIK) COA 799039730M", "output": "38249999"}, {"text_input": "What is the hs code for AMISOL TRIO (TM) (BHN BAKU KOSMETIK) COA 2100014", "output": "38249999"}, {"text_input": "What is the hs code for CAPIXYL (TM) (BHN BAKU KOSMETIK) COA 830019573M", "output": "38249999"}, {"text_input": "What is the hs code for CAPIXYL (TM) (BHN BAKU KOSMETIK) COA 830019573M", "output": "38249999"}, {"text_input": "What is the hs code for CHRONOLINE (TM) (BHN BAKU KOSMETIK) COA 212000", "output": "39139090"}, {"text_input": "What is the hs code for CW-5C 5 PCT CLEAR (BHN BAKU KOSMETIK) COA 785019762M", "output": "38249999"}, {"text_input": "What is the hs code for LANABLUE (TM) PARABEN FREE (BHN BAKU KOSMETIK) COA 788029635M", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL (TM) (BHN BAKU KOSMETIK) COA 2125201", "output": "38249999"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019761M", "output": "38249999"}, {"text_input": "What is the hs code for ROSALITY (TM) (BHN BAKU KOSMETIK) COA 2110201", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5 PCT CLEAR (BHN BAKU KOSMETIK) COA 785019762M", "output": "38249999"}, {"text_input": "What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1271142", "output": "38210090"}, {"text_input": "What is the hs code for TRIPOTASSIUM CITRATE 1-HYDRATE, CRYST.,PH.EUR.10 ED.USP43 (BHN BAKU OBAT) COA 3112151", "output": "29181400"}, {"text_input": "What is the hs code for SERENOA REPENS PURIFIED EXT (BHN BAKU SUPLEMEN) COA 21S0078000", "output": "13021950"}, {"text_input": "What is the hs code for P.GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPLEMEN) COA 21S0265500", "output": "13021990"}, {"text_input": "What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 20S0326000", "output": "13021950"}, {"text_input": "What is the hs code for ECHINACEA ANG.DRY PURIF.EX (BHN BAKU SUPLEMEN) COA 21S0155200", "output": "13021990"}, {"text_input": "What is the hs code for P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 21S0231200", "output": "13021990"}, {"text_input": "What is the hs code for PHASEOLUS VULGARIS DRY EXTRACT (BHN BAKU SUPLEMEN) COA 21S0215200", "output": "13021950"}, {"text_input": "What is the hs code for PHASEOLUS VULGARIS DRY EXTRACT (BHN BAKU SUPLEMEN) COA 21S0215200, SAMPLE NO COMMERCIAL VALUE", "output": "13021950"}, {"text_input": "What is the hs code for CINNARIZINE (BHN BAKU OBAT) COA 021K039", "output": "29335990"}, {"text_input": "What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT21110015", "output": "29362100"}, {"text_input": "What is the hs code for GENIVIDA (TM) TG (BHN BAKU SUPPLEMEN) COA UT21100001", "output": "29329990"}, {"text_input": "What is the hs code for MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT21060027", "output": "29362500"}, {"text_input": "What is the hs code for MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT21060027,UT21060028", "output": "29362500"}, {"text_input": "What is the hs code for MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT21060028,UT21060029", "output": "29362500"}, {"text_input": "What is the hs code for MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT21060029", "output": "29362500"}, {"text_input": "What is the hs code for MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT21060029", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT21120037,UT21120038", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT21120038", "output": "29362100"}, {"text_input": "What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02103041,UE02103042,UE02103043", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ11016107,UQ11016108,UQ11016109", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU MAKANAN) COA UT21110213,UT21110214", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU MAKANAN) COA UT21110213,UT21110214,UT21110215", "output": "29362100"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT21050047", "output": "29362800"}, {"text_input": "What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) COA 201267", "output": "38249999"}, {"text_input": "What is the hs code for MIRANOL ULTRA C-32 MB 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP201002MB", "output": "34021990"}, {"text_input": "What is the hs code for GELOIL SC BF (BAHAN BAKU OBAT) COA 188249", "output": "28399000"}, {"text_input": "What is the hs code for EMULIUM MELLIFERA MB (BHN BAKU KOSMETIK) COA 187493", "output": "28399000"}, {"text_input": "What is the hs code for NABUMETONE USP (BAHAN BAKU OBAT) COA H-0690421", "output": "29145000"}, {"text_input": "What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 211224052", "output": "38249999"}, {"text_input": "What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) COA 201195", "output": "38249999"}, {"text_input": "What is the hs code for KSG-210 (16KG) (BHN BAKU KOSMETIK) COA 107050", "output": "38249999"}, {"text_input": "What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) COA 112896", "output": "38249999"}, {"text_input": "What is the hs code for IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S191/21", "output": "38029090"}, {"text_input": "What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 11015,11020", "output": "38029090"}, {"text_input": "What is the hs code for WATERMELON HERBASOL (R) EXTRACT PG UNPRESERVED (BHN BAKU KOSMETIK) COA 121117", "output": "13021990"}, {"text_input": "What is the hs code for MIRANOL ULTRA C-32 MB 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP201002MB", "output": "34021990"}, {"text_input": "What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102102045", "output": "28183000"}, {"text_input": "What is the hs code for APIFILCAR (BHN BAKU OBAT) COA 183222", "output": "28399000"}, {"text_input": "What is the hs code for GELUCIRE 44/14 BF (BHN BAKU OBAT) COA 186547", "output": "28399000"}, {"text_input": "What is the hs code for TEFOSE 63 BF (BHN BAKU OBAT) COA 185821", "output": "28399000"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 01/21GL4", "output": "28399000"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 01/21GL4, SAMPLE NO COMMERCIAL VALUE", "output": "28399000"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40\u00b0 BRIX) (BHN BAKU KOSMETIK) COA 01/21GL4", "output": "28399000"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40\u00b0 BRIX) (BHN BAKU KOSMETIK) COA 01/21GL4, SAMPLE NO COMMERCIAL VALUE", "output": "28399000"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT KIWI CSB (BHN BAKU KOSMETIK) COA 01/20GAAK", "output": "28399000"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT KIWI ECH (BHN BAKU KOSMETIK) COA 01/20GAAK, SAMPLE NO COMMERCIAL VALUE", "output": "28399000"}, {"text_input": "What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO BP (BHN BAKU KOSMETIK) COA 187350", "output": "28399000"}, {"text_input": "What is the hs code for TEFOSE 63 BF (BHN BAKU OBAT) COA 185821", "output": "28399000"}, {"text_input": "What is the hs code for AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 157743", "output": "15159011"}, {"text_input": "What is the hs code for EXTRAPONE (R) GINSENG (BHN BAKU KOSMETIK) COA 10300045", "output": "13021940"}, {"text_input": "What is the hs code for NEO EXTRAPONE (R) LEMON (BHN BAKU KOSMETIK) COA 10300017", "output": "13021950"}, {"text_input": "What is the hs code for EXTRAPONE (R) PEACH (BHN BAKU KOSMETIK) COA 10300035", "output": "13021950"}, {"text_input": "What is the hs code for EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300057,10300058", "output": "13021950"}, {"text_input": "What is the hs code for SODIUM ACID PYROPHOSPHATE FOOD GRADE(BHN BAKU MAKANAN) COA 09220120", "output": "28353990"}, {"text_input": "What is the hs code for ORANGE EXTRACT (BHN BAKU KOSMETIK) COA 21120453", "output": "13021950"}, {"text_input": "What is the hs code for PRICKLY PEAR WATER DISTILLATE (BHN BAKU KOSMETIK) COA 21090619", "output": "33019090"}, {"text_input": "What is the hs code for GINKGO LEAVES EXTRACT (BHN BAKU KOSMETIK) COA 21120513", "output": "13021950"}, {"text_input": "What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052201", "output": "47063000"}, {"text_input": "What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052201", "output": "47063000"}, {"text_input": "What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-0781221", "output": "29334910"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP22014074,XP22014075,XP22014076,XP22014077", "output": "29211900"}, {"text_input": "What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340330,B340351", "output": "29419000"}, {"text_input": "What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334793,B334795", "output": "29419000"}, {"text_input": "What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1071109,1257805", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1111125", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0283759", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1103620", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1131505", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1019654", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1188932", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1188091", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1272847", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1236408", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1257857", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1081518", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1159422", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1222962", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1229880", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1048445", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1327503", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1215026", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1138027", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1088540,1243568", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1306190", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1133939", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1132546", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1243568", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1285540", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1222962", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1278356", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME) BATCH 1188091", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1215026", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1341761", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1215026", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1236393", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1145029", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1257917", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1145029", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1132546", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1257220", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1306190", "output": "38210090"}, {"text_input": "What is the hs code for L GLUTATHIONE REDUCED (BHN BAKU MAKANAN) COA B211173", "output": "29309090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2355402", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1082038", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1082038", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1165061", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASAMINO ACIDS EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1082049", "output": "38210090"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000201106,0000201107", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU KOSMETIK) COA UT21020206", "output": "29362100"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060032", "output": "29420000"}, {"text_input": "What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92112233", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0921020022", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060032", "output": "29420000"}, {"text_input": "What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02101013,UE02102024", "output": "29362700"}, {"text_input": "What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0921020022", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0721010030", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050390,0321050394,0321050395", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050395,0321050396", "output": "29420000"}, {"text_input": "What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00731034", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040062,0221040083", "output": "29420000"}, {"text_input": "What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02010816,TL02102803", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL ZX (BHN BAKU KOSMETIK) COA 190927012", "output": "29420000"}, {"text_input": "What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 2103114", "output": "38249999"}, {"text_input": "What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829019674N", "output": "38249999"}, {"text_input": "What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830011006M", "output": "38249999"}, {"text_input": "What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 211965", "output": "39139090"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2125203", "output": "38249999"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019761M", "output": "38249999"}, {"text_input": "What is the hs code for DEFENSCALP TM PF (BHN BAKU KOSMETIK) COA 785089070M", "output": "38249999"}, {"text_input": "What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 2103114", "output": "38249999"}, {"text_input": "What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830011006M", "output": "38249999"}, {"text_input": "What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 211965", "output": "39139090"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2125201", "output": "38249999"}, {"text_input": "What is the hs code for PROGELINE TM (BHN BAKU KOSMETIK) COA 203149R", "output": "39139090"}, {"text_input": "What is the hs code for ROSALITY TM (BHN BAKU KOSMETIK) COA 2110201", "output": "38249999"}, {"text_input": "What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029189M", "output": "39139090"}, {"text_input": "What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829019674N", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-070921,SFP-N-011112", "output": "38249999"}, {"text_input": "What is the hs code for CATECHINS TEAVIGO 1 KG (BHN BAKU KOSMETIK) COA 109101", "output": "21012020"}, {"text_input": "What is the hs code for SORBITOL SOLUTION 70 PCT CRYSTALLINE (BHN BAKU KOSMETIK) COA 2122P579", "output": "29054400"}, {"text_input": "What is the hs code for IONOL (R) CP (BHN BAKU KOSMETIK) COA 01115721", "output": "29071900"}, {"text_input": "What is the hs code for HU IL-2 PE MQ1-17H12 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1180913", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1313171", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LETHEEN BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1074476", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1313328", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1063145", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1341497,1341499", "output": "38210090"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1182099", "output": "38210090"}, {"text_input": "What is the hs code for STAIN BUFFER FBS 500ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0301684", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1201851", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1123223", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1126127", "output": "38210090"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB21080247", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500 AF (BHN BAKU SUPLEMEN) COA WB21070034,WB21070043", "output": "29362100"}, {"text_input": "What is the hs code for NONIVAMIDE (SYNTHETIC CAPSAICIN) (BHN BAKU KOSMETIK) COA 20220109", "output": "29241990"}, {"text_input": "What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA EDS/CC0090B", "output": "29349990"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20220111", "output": "17029019"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20220111", "output": "17029019"}, {"text_input": "What is the hs code for MANGANESE (II)-SULFATE 1-HYDRATE ( BHN BAKU OBAT) COA 3109952", "output": "29181600"}, {"text_input": "What is the hs code for SODIUM ACETATE ANHYDROUS (BHN BAKU SUPPLEMEN) COA 3109952", "output": "29152910"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0053000", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2 PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0095200", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2 PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0095300", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2 PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0108900", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2 PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0109000", "output": "13021990"}, {"text_input": "What is the hs code for PERMETHRIN (PHARMA GRADE) BHN BAKU OBAT COA PMT/016/2021", "output": "29163990"}, {"text_input": "What is the hs code for KETOPROFEN (BHN BAKU OBAT) COA 199282", "output": "29183000"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/01/050122,070122,080122,090122,100122", "output": "29420000"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO220101", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) COA ANTS210201", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS220101", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO210802", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220101", "output": "13021990"}, {"text_input": "What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM220101-PGH", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM210602-PGH", "output": "38249999"}, {"text_input": "What is the hs code for WITCH HAZEL ORGANIC DISTILLATE 1:10 (SB) (BHN BAKU KOSMETIK) COA HAVD220101-BIO", "output": "38249999"}, {"text_input": "What is the hs code for LOTUS FROM VIETNAM ORGANIC OILY EXTRACT (BHN BAKU KOSMETIK) COA NEN220101-HBIO", "output": "38249999"}, {"text_input": "What is the hs code for MIAMI SCG(S) (BHN BAKU KOSMETIK) COA 22012455,22012555", "output": "34021190"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA GAJ", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS EK-118 (IN) (BHN BAKU KOSMETIK) COA GAW", "output": "38249999"}, {"text_input": "What is the hs code for LIDOCAINE BASE (BHN BAKU OBAT) COA 198951", "output": "29242990"}, {"text_input": "What is the hs code for LIDOCAINE HCL (BHN BAKU OBAT) COA 198439", "output": "29242990"}, {"text_input": "What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) COA 7766043", "output": "38249999"}, {"text_input": "What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA F00271UP", "output": "29053200"}, {"text_input": "What is the hs code for MATCHA ( BHN BAKU KOSMETIK) COA CSP 21010 EOU", "output": "38249999"}, {"text_input": "What is the hs code for PHENOXY ETHANOL PR (BHN BAKU KOSMETIK) COA 748640,747924", "output": "29094900"}, {"text_input": "What is the hs code for ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH655369", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH654377", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB MAROON (BHN BAKU PEWARNA TABLET) COA SH654378", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB GREY (BHN BAKU PEWARNA TABLET) COA SH654379", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH653955", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH654380", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH654381", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH654944", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH654945", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH653834", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH654382", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH654423", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH654383", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH654384", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB YELLOW (BHN BAKU PEWARNA TABLET) COA SH654385", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH654419", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH654412", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH654386", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH654387", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH654388", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH654421", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH654422", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH654424", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY PINK (BHN BAKU PEWARNA TABLET) COA SH654390", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH654413", "output": "39061090"}, {"text_input": "What is the hs code for PIGMENT BLEND BROWN (BHN BAKU PEWARNA TABLET) COA SH654414", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH654415", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH654391", "output": "38249999"}, {"text_input": "What is the hs code for PIGMENT BLEND GREEN (BHN BAKU PEWARNA TABLET) COA SH654416", "output": "32151900"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH653834", "output": "39061090"}, {"text_input": "What is the hs code for FD&C YELLOW #6/SUNSET YELLOW .... (BHN BAKU PEWARNA TABLET) COA WP850543:BB2569", "output": "32151900"}, {"text_input": "What is the hs code for FD&C YELLOW #5/TARTRAZINE AL ... (BHN BAKU PEWARNA TABLET) COA WP844301:BA9666", "output": "32151900"}, {"text_input": "What is the hs code for D&C YELLOW #10 AL 15 PCT - 20 PCT... (BHN BAKU PEWARNA TABLET) COA WP844757:BB0004", "output": "32151900"}, {"text_input": "What is the hs code for D&C YELLOW #10 AL 15 PCT - 20 PCT (BHN BAKU PEWARNA TABLET) COA WP844757:BB0004", "output": "32151900"}, {"text_input": "What is the hs code for ERYTHROSINE AL 38 PCT - 42 PCT (BHN BAKU PEWARNA TABLET) COA WP844563:1", "output": "32151900"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH654410", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH654941", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH654943", "output": "38249999"}, {"text_input": "What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 212686", "output": "13021990"}, {"text_input": "What is the hs code for BURGEON-UP (HS) (BAHAN BAKU KOSMETIK) COA 220332", "output": "13021990"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 213064", "output": "38249999"}, {"text_input": "What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102102045,102102048", "output": "28183000"}, {"text_input": "What is the hs code for OMEPRAZOLE SODIUM STERILE (BAHAN BAKU OBAT) COA SI/OPZ/00050122,00060122,00070122,00080122", "output": "29333990"}, {"text_input": "What is the hs code for SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 2108502980", "output": "29322090"}, {"text_input": "What is the hs code for ANTIOXIDANT PREMIX FOR GUMMY (BHN BAKU MAKANAN) COA XW92201201", "output": "21069059"}, {"text_input": "What is the hs code for VIUSID VET POWDER @1 KG (PAKAN IKAN BERBENTUK BUBUK) COA X-3", "output": "23099090"}, {"text_input": "What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) (BHN BAKU OBAT) COA 4454086968", "output": "39139090"}, {"text_input": "What is the hs code for CEFTRIAXONE SODIUM STERILE USP (BHN BAKU OBAT) COA B200300", "output": "29419000"}, {"text_input": "What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK) COA LDC2622T", "output": "27101990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-050211", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE (MMW) (BHN BAKU KOSMETIK) COA CHP1220208", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK) COA CPG-020612", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 120821,012022", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 011922", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-010322", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND GREEN TEA SEED OIL (BHN BAKU KOSMETIK) COA CSSO-022701", "output": "13021950"}, {"text_input": "What is the hs code for MONOPROPYLENE GLYCOL (BHN BAKU KOSMETIK) COA PG(S)220116", "output": "29053200"}, {"text_input": "What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1271142", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01D322M,B01D344M", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B04D349M", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B04D349M", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER DMACA INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02D274M", "output": "38210090"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB21120305", "output": "29362100"}, {"text_input": "What is the hs code for IVY DRY HYDR EXTR 10PCT HPLC (BAHAN BAKU SUPLEMEN) COA 21B0077400", "output": "13021990"}, {"text_input": "What is the hs code for VALERIAN D.H.E> 0.8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 21B0128700", "output": "13021990"}, {"text_input": "What is the hs code for VALERIAN D.H.E> 0.8PCT VAL.AC (BAHAN BAKU SUPLEMEN) COA 21B0128700", "output": "13021990"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180LAV001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180LB4002", "output": "39123900"}, {"text_input": "What is the hs code for SENTRY POLYOX WSR 303 LEO NF (DUPONT/IFF) BHN BAKU PEWARNA TABLET) COA D682L7ERR3", "output": "39123900"}, {"text_input": "What is the hs code for HPA PURE SENSITIVE HALAL P116 13 (BHN BAKU KOSMETIK) COA 3256356", "output": "33029000"}, {"text_input": "What is the hs code for PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3264337", "output": "33029000"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS220101", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220101", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220101", "output": "13021990"}, {"text_input": "What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM220101-PGH", "output": "38249999"}, {"text_input": "What is the hs code for WITCH HAZEL ORGANIC DISTILLATE 1:10 (BHN BAKU KOSMETIK) COA HAVD220101-BIO", "output": "38249999"}, {"text_input": "What is the hs code for HEBELYS (BHN BAKU KOSMETIK) COA SPHC210301-Z100", "output": "38249999"}, {"text_input": "What is the hs code for INCA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK) COA II211214-AI-D-BIO", "output": "38249999"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA211204", "output": "38249999"}, {"text_input": "What is the hs code for SAFFLOWER REFINED OIL (BHN BAKU KOSMETIK) COA CARHR211109-DW", "output": "38249999"}, {"text_input": "What is the hs code for CHAMOMILLE COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO210603", "output": "38249999"}, {"text_input": "What is the hs code for CHAMOMILLE COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO220202", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220101", "output": "13021990"}, {"text_input": "What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM220101-PGH", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO220101", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO220202", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO220202", "output": "38249999"}, {"text_input": "What is the hs code for OPACODE S-1-12052 (BHN BAKU PEWARNA TABLET) COA TKL60936, SAMPLE NO COMMERCIAL VALUE", "output": "32151900"}, {"text_input": "What is the hs code for OPACODE S-1-277001 BLACK (BHN BAKU PEWARNA TABLET) COA TKL61044, SAMPLE NO COMMERCIAL VALUE", "output": "32151900"}, {"text_input": "What is the hs code for METRONIDAZOLE BENZOATE EP (BHN BAKU OBAT) COA MBO/12010064", "output": "29332900"}, {"text_input": "What is the hs code for DL-TARTARIC ACID (BHN BAKU MAKANAN) COA RS01566", "output": "29181200"}, {"text_input": "What is the hs code for TITANIUM DIOXIDE 3100 (BHN BAKU MAKANAN) COA 2201216", "output": "32061110"}, {"text_input": "What is the hs code for CROPOVIDONE XL (BHN BAKU OBAT) COA PP220125XL", "output": "39059990"}, {"text_input": "What is the hs code for POVIDONE K-30 (BHN BAKU OBAT) COA PK30-220120F33", "output": "39059990"}, {"text_input": "What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105714621", "output": "17021100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT21070034,UT22010039", "output": "29362100"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02201488", "output": "29362700"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02201001", "output": "32041900"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPPLEMEN) COA UT21120028", "output": "32041900"}, {"text_input": "What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT21100013", "output": "29420000"}, {"text_input": "What is the hs code for OPTISHARP NAT. ZEA. 14PCT SAFF (BHN BAKU SUPPLEMEN) COA 2111101944", "output": "32041900"}, {"text_input": "What is the hs code for SYN(R)-AKE (BHN BAKU KOSMETIK) COA UE02112512", "output": "29420000"}, {"text_input": "What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ10917008", "output": "29420000"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP01322", "output": "28363000"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 2AX2202018", "output": "29181400"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH655220", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH655220", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA SH655209", "output": "38249999"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB21120305", "output": "29362100"}, {"text_input": "What is the hs code for KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 20/05/2021", "output": "25070000"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA357213,ROA355216,ROA272216,...", "output": "28363000"}, {"text_input": "What is the hs code for SODIUM ASCORBATE 99PCT TG (BHN BAKU SUPLEMEN) COA WB22010568,WB22010571", "output": "29362700"}, {"text_input": "What is the hs code for METHISOPRINOL (BHN BAKU OBAT) COA MTP220031", "output": "29349990"}, {"text_input": "What is the hs code for LEVOFLOXACIN HEMIHYDRATE USP (BHN BAKU OBAT) COA LF20090029,LF20110044", "output": "29349990"}, {"text_input": "What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M -31.0 PCT (BHN BAKU OBAT) COA 102129053", "output": "28161000"}, {"text_input": "What is the hs code for OPADRY AMB II CLEAR (BHN BAKU PEWARNA TABLET) COA SH655212", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656054", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656031", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656055", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656057", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II YELLOW (BHN BAKU PEWARNA TABLET) COA SH656043", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY SGR RED (BHN BAKU PEWARNA TABLET) COA GA703502", "output": "38249999"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPPLEMEN) COA UT22010003", "output": "29362800"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT21070181", "output": "29362400"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11211022", "output": "29362500"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12111013", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN E 50 PCT CWS/S (BHN BAKU MAKANAN) COA UE02110272", "output": "29362800"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12111013", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12111013", "output": "29362900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11211022,QZ11211024", "output": "29362500"}, {"text_input": "What is the hs code for DRY VITAMIN E 50 PCT CWS/S (BHN BAKU SUPLEMEN) COA UT21080042", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPLEMEN) COA UT21090088", "output": "29362800"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPLEMEN) COA UQ10910764,UQ10910765", "output": "29362300"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPLEMEN) COA TL02108764", "output": "29362400"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPLEMEN) COA OP12111013", "output": "29362900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ11113682", "output": "29362500"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3 PCT (BHN BAKU SUPLEMEN) COA WB21050065", "output": "29362500"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ10212048", "output": "29362200"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU SUPLEMEN) COA UT21030210", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 10 PCT CWS (BHN BAKU SUPLEMEN) COA UT21100054", "output": "32041900"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ10212048", "output": "29362200"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT21050015,UT20120055", "output": "32041900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ11113682", "output": "29362500"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPLEMEN) COA UEB2103027", "output": "29362300"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPLEMEN) COA UQ10913312", "output": "29362200"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPLEMEN) COA UT21100054", "output": "32041900"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPLEMEN) COA TL02110668", "output": "29362700"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3 PCT (BHN BAKU SUPLEMEN) COA WB21050082,WB00519051", "output": "29362200"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPLEMEN) COA UT21110243", "output": "29362400"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3 PCT (BHN BAKU SUPLEMEN) COA WB21060056", "output": "29362300"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPLEMEN) COA UT21090031", "output": "29362900"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL02111128", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL02111128", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL02111128", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPLEMEN) COA TL02111128", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN B12 0.1 PCT WS (BHN BAKU MAKANAN) COA UT21070014", "output": "29362600"}, {"text_input": "What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000199646", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000200423", "output": "29362900"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02109787,TL02108768,TL02108771", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21070150", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21070150", "output": "29362900"}, {"text_input": "What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92112345", "output": "21069059"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU MAKANAN) COA WB21060056", "output": "29362300"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3 PCT (BHN BAKU MAKANAN) COA WB21050080,WB21050082", "output": "29362200"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02109104", "output": "29362400"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21110383", "output": "29362800"}, {"text_input": "What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02103036,UE02103039", "output": "29362700"}, {"text_input": "What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES2109599", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040083", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050398,0321050399", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210027,0708210037,0708210038,0708210039,0708210047,...", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001624174", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060001", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS2100821", "output": "29420000"}, {"text_input": "What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02102803,TL02106807", "output": "29362400"}, {"text_input": "What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02106807", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0421040061", "output": "29420000"}, {"text_input": "What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0038741", "output": "29362500"}, {"text_input": "What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0038741", "output": "29362500"}, {"text_input": "What is the hs code for METHYLCOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/1121053", "output": "29362600"}, {"text_input": "What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBNB220092", "output": "29221990"}, {"text_input": "What is the hs code for MAPROTILINE HCL (BHN BAKU OBAT) COA 2150003373", "output": "29214900"}, {"text_input": "What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) COA 321CAA0017", "output": "38249999"}, {"text_input": "What is the hs code for JAGUAR HP 105 SGI (BHN BAKU KOSMETIK) COA H2110217D", "output": "38249999"}, {"text_input": "What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 201172", "output": "38249999"}, {"text_input": "What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) COA 202268", "output": "38249999"}, {"text_input": "What is the hs code for KSG-15 (16KG) (BHN BAKU KOSMETIK) COA 112540", "output": "38249999"}, {"text_input": "What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 201172", "output": "38249999"}, {"text_input": "What is the hs code for KSG-15 (16KG) (BHN BAKU KOSMETIK) COA 112542", "output": "38249999"}, {"text_input": "What is the hs code for MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL220214,MCCPOL220217", "output": "29094900"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 14 PREMIUM ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D184K5S021", "output": "39123900"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 14 PREMIUM ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D184K5S021", "output": "39123900"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SJG", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SJG,SHF", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA GAK", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WS (BHN BAKU KOSMETIK) COA GAG", "output": "38249999"}, {"text_input": "What is the hs code for OPACODE BLACK (BHN BAKU PEWARNA TABLET) COA DT724193", "output": "32151900"}, {"text_input": "What is the hs code for NUTRAFINISH TIO2 FREE YELLOW (BHN BAKU PEWARNA TABLET) COA DT725355", "output": "38249999"}, {"text_input": "What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 22100033,22100038", "output": "29221990"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPLEMEN) COA MTP01322", "output": "28363000"}, {"text_input": "What is the hs code for BICAR Z 0/50 SODIUM BICARBONATE FOR ANIMAL FEED (BHN BAKU PAKAN TERNAK) COA MTP00622", "output": "28363000"}, {"text_input": "What is the hs code for SERENOA REPENS PURIFIED EXT (BHN BAKU SUPLEMEN) COA 21S0178200", "output": "13021950"}, {"text_input": "What is the hs code for CURCUMA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 22S0007005", "output": "13021950"}, {"text_input": "What is the hs code for GREEN TEA DRY DEC.EX./PHOSPHOL (BHN BAKU SUPLEMEN) COA 19S0269705", "output": "13021950"}, {"text_input": "What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU KOSMETIK) COA 21S0135500", "output": "13021950"}, {"text_input": "What is the hs code for DEFERASIROX (BHN BAKU OBAT) COA DF20122005,DF20122006", "output": "29339990"}, {"text_input": "What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE02202002", "output": "29362100"}, {"text_input": "What is the hs code for OPTISHARP NAT. ZEA 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA EW21065009", "output": "32041900"}, {"text_input": "What is the hs code for FLORAGLO(R) LUTEIN 20PCT SAF (BHN BAKU SUPLEMEN) COA UE02112037", "output": "32030010"}, {"text_input": "What is the hs code for CAROCARE NAT. BC 20PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA EW22012005", "output": "32041900"}, {"text_input": "What is the hs code for FLORAGLO (R) LUTEIN 20 PCT SAF (BHN BAKU SUPLEMEN) COA UE02112037", "output": "32030010"}, {"text_input": "What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPLEMEN) COA UT21120058,UT22020059", "output": "29362100"}, {"text_input": "What is the hs code for BETAMETHASONE VALERATE USP (BHN BAKU OBAT) COA APL/BV/01022/A-22", "output": "29372200"}, {"text_input": "What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 212642", "output": "13021990"}, {"text_input": "What is the hs code for ACNE BUSTERS (BHN BAKU KOSMETIK) COA 213040,220167", "output": "38249999"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 212631", "output": "13021990"}, {"text_input": "What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 212713", "output": "13021990"}, {"text_input": "What is the hs code for DOKUDAMI LIQUID B (BHN BAKU KOSMETIK) COA 212754", "output": "13021990"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 220149", "output": "38249999"}, {"text_input": "What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 212713", "output": "13021990"}, {"text_input": "What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 212202", "output": "13021990"}, {"text_input": "What is the hs code for ACNE BUSTERS (BHN BAKU KOSMETIK) COA 220167,220394", "output": "38249999"}, {"text_input": "What is the hs code for PARACETAMOL USP (BHN BAKU OBAT) COA 202112094A,202112095A,202112096A", "output": "29242930"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122101487", "output": "28363000"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 14 PREMIUM ETHYLCELLULOSE (BHN BAKU PEWARNA TABLET) COA D184K5S021", "output": "39123900"}, {"text_input": "What is the hs code for PRECIROL ATO 5 CAR (BHN BAKU OBAT) COA 187267", "output": "28399000"}, {"text_input": "What is the hs code for COMPRITOL 888 ATO CAR (BHN BAKU OBAT) COA 187660", "output": "28399000"}, {"text_input": "What is the hs code for GELUCIRE 48/16 PELLETS CAR (BHN BAKU OBAT) COA 185000", "output": "28399000"}, {"text_input": "What is the hs code for CETYL PALMITATE PELLETS CAR (BHN BAKU OBAT) COA 185624", "output": "28399000"}, {"text_input": "What is the hs code for EMULCIRE 61 WL 2659 CAR (BHN BAKU OBAT) COA 187386", "output": "28399000"}, {"text_input": "What is the hs code for COMPRITOL 888 PELLETS CAR (BHN BAKU OBAT) COA 21E2404", "output": "28399000"}, {"text_input": "What is the hs code for FD&C YELLOW 6/SUNSET YELLOW .... (BHN BAKU PEWARNA TABLET) COA WP848265:BB2299", "output": "32151900"}, {"text_input": "What is the hs code for FD&C YELLOW 5/TARTRAZINE AL ... (BHN BAKU PEWARNA TABLET) COA WP844301:BA9667", "output": "32151900"}, {"text_input": "What is the hs code for D&C YELLOW 10 AL 15 PCT - 20 PCT... (BHN BAKU PEWARNA TABLET) COA WP844757:BB0004", "output": "32151900"}, {"text_input": "What is the hs code for FD&C BLUE 2/INDIGO CARMINE AL... (BHN BAKU PEWARNA TABLET) COA WP847583:BB1665", "output": "32151900"}, {"text_input": "What is the hs code for METHOCEL E15 PREMIUM LV HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D011K7KL01", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D011L4SL02", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL A15 PREMIUM LV METHYLCELLULOSE... (BHN BAKU PEWARNA TABLET) COA D180L6S021", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL A15 PREMIUM LV METHYLCELLULOSE...(BHN BAKU PEWARNA TABLET) COA D180L6S021", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL A15 PREMIUM LV METHYLCELLULOSE... (BHN BAKU PEWARNA TABLET) COA D180L4I022", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180K61001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL (BHN BAKU PEWARNA TABLET) COA D011L4SL02", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180L96001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180KBO002", "output": "39123900"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 03850222,03870222,03900222,03920222,....", "output": "29359000"}, {"text_input": "What is the hs code for MATCHA ( BHN BAKU KOSMETIK) COA CSP 21012 EOU", "output": "38249999"}, {"text_input": "What is the hs code for COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-2107125", "output": "29146200"}, {"text_input": "What is the hs code for PRAYPHOS DKP FG 25K BG (BHN BAKU KOSMETIK) COA 2134631", "output": "28352400"}, {"text_input": "What is the hs code for MONOPOT PHOS MKP FG 25K BG (BHN BAKU KOSMETIK) COA 22-004-01", "output": "29420000"}, {"text_input": "What is the hs code for PREDNISOLONE USP42 (BHN BAKU OBAT) COA XPL220203", "output": "29372100"}, {"text_input": "What is the hs code for PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M598110,M598112", "output": "29411019"}, {"text_input": "What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M535251 S/D M535252,M535255 S/D M535262,...", "output": "29411019"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT21100378", "output": "29362800"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ11113366", "output": "29362200"}, {"text_input": "What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW92112204", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02102011", "output": "29362900"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02109790", "output": "29362400"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT21100378", "output": "29362800"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB21050065", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02102011", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000200423", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT21100211", "output": "29362400"}, {"text_input": "What is the hs code for PX 204005 (BHN BAKU MAKANAN) COA XW92202066", "output": "21069059"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPPLEMEN) COA UT21090088", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPPLEMEN) COA UT21090088", "output": "29362800"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2103027", "output": "29362300"}, {"text_input": "What is the hs code for MINERAL PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92202061", "output": "21069059"}, {"text_input": "What is the hs code for MINERAL PREMIX HBS08022019 (BHN BAKU MAKANAN) COA XW92202068", "output": "21069059"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000201728,0000201729", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000201729", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000201341,0000201726,0000201728", "output": "29362900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21100378", "output": "29362800"}, {"text_input": "What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF21092006", "output": "29420000"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20211111,20211203", "output": "17029019"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02111078", "output": "32041900"}, {"text_input": "What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT21100013", "output": "29420000"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL02112207,TL02112215,TL02112226,TL02112234", "output": "29362700"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02111077", "output": "32041900"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPPLEMEN) COA UT21070071,UT21070072,UT21070076", "output": "29362800"}, {"text_input": "What is the hs code for COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPPLEMEN) COA TL02112175", "output": "29362700"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (POST BORDER) COA UT21060056", "output": "29362800"}, {"text_input": "What is the hs code for LIFE'S DHA S35-O100 (BHN BAKU SUPLEMEN) COA VY00383114", "output": "29362500"}, {"text_input": "What is the hs code for LIFE'SDHA(TM) S35-O300 (BHN BAKU SUPLEMEN) COA VY00434705", "output": "29362500"}, {"text_input": "What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 211059200", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)COA 1103638,1271809", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1250282", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1235731", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1264648", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1271813", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR W/MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0063506", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1320085", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 9337678", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0062865", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR NOBLE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1223649", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1187914", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1181376,1243543", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SODIUM DESOXYCHOLATE 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1110014", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TODD HEWITT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1285594", "output": "38210090"}, {"text_input": "What is the hs code for GASPAK EZ STANDARD INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH7365056010", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1312204", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ISP MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1319645", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1357833", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1159422", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1285540", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1229957", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M-PA-C AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1306276", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M-PA-C AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1306276", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2010438", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2011124", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0343102,1257917", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1341759", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1222962", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1173666", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0286569", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1250282", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500 G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1235731,1349644", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1349557", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1320239,1357833", "output": "38210090"}, {"text_input": "What is the hs code for LOOPS INOCULATING 10/TUBE 10 MICROLITER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2102599", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POLYSORBATE 80 100G 1 EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 1340021", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1278356", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01E012M", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 1355318", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1356186", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B04D349M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SELENITE CYSTINE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1081607", "output": "38210090"}, {"text_input": "What is the hs code for PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M598155", "output": "29411019"}, {"text_input": "What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M535317,M535340,M535341,M535360,M535362,...", "output": "29411019"}, {"text_input": "What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU PAKAN TERNAK) COA 202100643", "output": "28183000"}, {"text_input": "What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU PAKAN TERNAK) COA 202100644", "output": "28183000"}, {"text_input": "What is the hs code for SORBITOL SOLUTION 70 PCT CRYSTALLINE (BHN BAKU KOSMETIK) COA 2122P654", "output": "29054400"}, {"text_input": "What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-220212", "output": "29061300"}, {"text_input": "What is the hs code for PHENOXY ETHANOL PR (BHN BAKU KOSMETIK) COA 748640", "output": "29094900"}, {"text_input": "What is the hs code for GALAXY 610 EHS MB (ETHYLENE GLYCOL DISTEARATE) (BHN BAKU KOSMETIK) COA 748872", "output": "34049090"}, {"text_input": "What is the hs code for ACRYPOL 980 (20KG) (BAHAN BAKU KOSMETIK) COA 11521062,1151063,11521064", "output": "39069099"}, {"text_input": "What is the hs code for KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 170821,010821,200521", "output": "25070000"}, {"text_input": "What is the hs code for EMULIUM MELLIFERA MB CAR (BHN BAKU KOSMETIK) COA 187898", "output": "28399000"}, {"text_input": "What is the hs code for EMULIUM MELLIFERA MB CAR (BHN BAKU KOSMETIK) COA 187898", "output": "28399000"}, {"text_input": "What is the hs code for LABRAFIL M 1944 CS BF (BHN BAKU SUPPLEMEN) COA 187197", "output": "28399000"}, {"text_input": "What is the hs code for TEFOSE 63 BF (BHN BAKU SUPPLEMEN) COA 185821", "output": "28399000"}, {"text_input": "What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512137", "output": "47069200"}, {"text_input": "What is the hs code for MEG-3 3020 EE P OIL (BHN BAKU SUPPLEMEN) COA TS00018481", "output": "29362500"}, {"text_input": "What is the hs code for GUAIFENESIN USP 42 (B. BAKU OBAT) COA GGE-2201019 S/D GGE-2201023,GGE-2202024 S/D GGE-2202032", "output": "29094900"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-020422", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-173011,OHA-022122", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ALOE EXTRACT (BHN BAKU KOSMETIK) COA AAL-CR-061901", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND DM 3 COMPLEX (BHN BAKU KOSMETIK) COA ANFE-011401", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-051201", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-042001", "output": "29224900"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND CACTUS EXTRACT (BHN BAKU KOSMETIK) COA CAB-052921", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-082821", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 011922", "output": "28331900"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND TEA TREE EXTRACT (BHN BAKU KOSMETIK) COA MASL-031381", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (B) (BHN BAKU KOSMETIK) COA AMIBD-011012", "output": "29224900"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK) COA NMSP-D-010612", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SENAS (BHN BAKU KOSMETIK) COA NASB-031281,NASB-011122", "output": "21022090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 012022", "output": "28331900"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 011922", "output": "28331900"}, {"text_input": "What is the hs code for ROSUVASTATIN CALSIUM (BHN BAKU OBAT) COA M325218", "output": "29359000"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB21090600,WB21100603", "output": "29362100"}, {"text_input": "What is the hs code for TSPL-30-ID (1KG) (BHN BAKU KOSMETIK) COA 106015,202016", "output": "38249999"}, {"text_input": "What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP01522,MTP01322", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP01422", "output": "28363000"}, {"text_input": "What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102202002", "output": "28183000"}, {"text_input": "What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102102059,102202002", "output": "28183000"}, {"text_input": "What is the hs code for FERROUS GLUCONATE, POWDER, USP 43 (BHN BAKU SUPLEMEN) COA 3112011", "output": "29181600"}, {"text_input": "What is the hs code for ZINC SULFATE 1-HYDRATE, POWDER, USP 43 (BHN BAKU SUPLEMEN) COA 3109231", "output": "28332920"}, {"text_input": "What is the hs code for FERROUS SULFATE, DRIED, POWDER, USP 43 (BHN BAKU SUPLEMEN) COA 3110130,3110345", "output": "28332920"}, {"text_input": "What is the hs code for TRIPOTASSIUM CITRATE 1-HYDRATE (BHN BAKU SUPLEMEN) COA 3112473", "output": "29181400"}, {"text_input": "What is the hs code for MAGNESIUM OXIDE, LIGHT, POWDER, BP 2021 (BHN BAKU SUPLEMEN) COA 3102783-3", "output": "25199010"}, {"text_input": "What is the hs code for ZINC SULFATE 1-HYDRATE, POWDER, USP 43 (BHN BAKU SUPLEMEN) COA 3111493", "output": "28332920"}, {"text_input": "What is the hs code for ZINC SULFATE 1-HYDRATE, POWDER, USP 43 (BHN BAKU SUPLEMEN) COA 3111493", "output": "28332920"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH655370", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH655257", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH654941", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH655239", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH655203", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH655195", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH655471", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH655205", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH655373", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH655314", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA SH655207", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY QX WHITE (BHN BAKU PEWARNA TABLET) COA SH655099", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH655221", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH655211", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH655211", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH655197", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II CLEAR (BHN BAKU PEWARNA TABLET) COA SH655212", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH655198", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH655199", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH655213", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH655267", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB ORANGE (BHN BAKU PEWARNA TABLET) COA SH655214", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II BROWN (BHN BAKU PEWARNA TABLET) COA SH655231", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH655230", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH655216", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH655200", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH655201", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE BROWN (BHN BAKU PEWARNA TABLET) COA SH655205", "output": "39061090"}, {"text_input": "What is the hs code for NABUMETONE USP (BAHAN BAKU OBAT) COA H-0070122", "output": "29145000"}, {"text_input": "What is the hs code for MIRANOL ULTRA C-32 MB 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP111689MB", "output": "34021990"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1341497,1341499", "output": "38210090"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1182099", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1309681", "output": "38210090"}, {"text_input": "What is the hs code for HU CD3 FITC HIT3A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2019528", "output": "38210090"}, {"text_input": "What is the hs code for HU TH1/TH2/TH17 CBA KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1342605", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1200457,...", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AG L&P 80 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1313328", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1309681,1341499,..", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1063138", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1153205", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0128385", "output": "38210090"}, {"text_input": "What is the hs code for VIAL TTC SOLUTION 1PCT 1X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1315600", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2417191", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1165061", "output": "38210090"}, {"text_input": "What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0216774", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1228035", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1215964", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2417191", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2305552", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1165061", "output": "38210090"}, {"text_input": "What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1153097", "output": "38210090"}, {"text_input": "What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1153097", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1046610", "output": "38210090"}, {"text_input": "What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) COA 321CAA0018", "output": "38249999"}, {"text_input": "What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 27-08-21,23-08-21,25-08-21,27-09-21,26-08-21,...", "output": "38029090"}, {"text_input": "What is the hs code for BETATAB 20PCT (BHN BAKU SUPLEMEN) COA UT21120028", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPLEMEN) COA UT22020063", "output": "29362100"}, {"text_input": "What is the hs code for COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPLEMEN) COA TL02201494", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22020040", "output": "29362100"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA353215,ROA352213,ROA350216,ROA...", "output": "28363000"}, {"text_input": "What is the hs code for SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202202-025", "output": "35040000"}, {"text_input": "What is the hs code for POMEGRANATE OF ACORES HYDROGLYCERINED EXTRACT (BHN BAKU KOSMETIK) COA PUGA220102-GL", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK) COA EG209-220201", "output": "13021990"}, {"text_input": "What is the hs code for KELCOGEL CG-HA [E] (BAHAN BAKU KOSMETIK) COA 1C8420A", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 CAN 10KG (BHN BAKU KOSMETIK) COA 1577257,1577808", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 CAN 10KG (BHN BAKU KOSMETIK) COA 1577808", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 100 CAN 10 KG (BHN BAKU KOSMETIK) COA 1570899,1570948", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 712 CAN 10KG (BHN BAKU KOSMETIK) COA 1577056", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 CAN 10KG (BHN BAKU KOSMETIK) COA 1576482", "output": "38249999"}, {"text_input": "What is the hs code for SENSIDIN DO CAN 10KG (BHN BAKU KOSMETIK) COA 1572632", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 720 CAN 10KG (BHN BAKU KOSMETIK) COA 1576441", "output": "38249999"}, {"text_input": "What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M-31.0PCT (BHN BAKU OBAT) COA 102129053", "output": "28161000"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN546300", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN546298", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN546299", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN546284", "output": "35051010"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH656773", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH656545", "output": "39061090"}, {"text_input": "What is the hs code for TRISODIUMCITRATE DIHYDRATE FINE GRANULAR (BHN BAKU MAKANAN) COA UJ201", "output": "29181400"}, {"text_input": "What is the hs code for PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 080321/007122", "output": "38249999"}, {"text_input": "What is the hs code for 985-L-MENTHOL CRYSTALS INDIAN NATURAL (BHN BAKU KOSMETIK) COA NFPL/MEN/21/021", "output": "29061100"}, {"text_input": "What is the hs code for STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN545484", "output": "35051010"}, {"text_input": "What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M-31.0PCT (BHN BAKU OBAT) COA 102129049", "output": "28161000"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 02/21GL4", "output": "28399000"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 02/21GL4, SAMPLE NO COMMERCIAL VALUE", "output": "28399000"}, {"text_input": "What is the hs code for FERROUS GLUCONATE, POWDER, USP 43 (BHN BAKU SUPLEMEN) COA 3089085", "output": "29181600"}, {"text_input": "What is the hs code for FERROUS GLUCONATE, POWDER, USP 43 (BHN BAKU SUPLEMEN) COA 3114276", "output": "29181600"}, {"text_input": "What is the hs code for PEARL ESSENCES 35031MJ (BHN BAKU KOSMETIK) COA D2010841", "output": "32061910"}, {"text_input": "What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2022021502", "output": "21012020"}, {"text_input": "What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2022021502", "output": "21012020"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT22010002", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN PREMIX 103093 - A (BHN BAKU MAKANAN) COA XW92202067", "output": "21069059"}, {"text_input": "What is the hs code for PX TRS1 WITHOUT K1 (BHN BAKU MAKANAN) COA XW92202075", "output": "21069059"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12111015,OP12111016", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12111015", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT21100060,UT21100067", "output": "29362800"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPPLEMEN) COA UQ11113356", "output": "29362200"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT21100037", "output": "29362100"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2103027,UEB2103028,UEB2103030,...", "output": "29362300"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPPLEMEN) COA UQ11113356", "output": "29362200"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT21100037", "output": "29362100"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2103031,UEB2103032,UEB2103029,...", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN PREMIX MENGNIU UHT MILK (POST BORDER) COA XW92202044", "output": "21069059"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ11010766", "output": "29362300"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT21100378", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT21100037", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT21090027", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT21100058", "output": "32041900"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT21100058", "output": "32041900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12111016", "output": "29362900"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPPLEMEN) COA TL02111883", "output": "29362700"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02109791", "output": "29362400"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB21050065", "output": "29362500"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21110243", "output": "29362400"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21110243", "output": "29362400"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ11113684", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT21100151", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT21100151", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT21070022", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040009", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040009", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040009", "output": "29362900"}, {"text_input": "What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92202076", "output": "21069059"}, {"text_input": "What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92202079", "output": "21069059"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ11113356", "output": "29362200"}, {"text_input": "What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92202077", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN PREMIX MENGNIU UHT MILK (POST BORDER) COA XW92202044", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN PREMIX MENGNIU UHT MILK (BHN BAKU MAKANAN) COA XW92202294", "output": "21069059"}, {"text_input": "What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050410,0321050411,0321050412,0321050414,0321050604,...", "output": "29420000"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02109104", "output": "29362400"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU KOSMETIK) COA QZ11211025", "output": "29362500"}, {"text_input": "What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00734475", "output": "29420000"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02106017", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02106017", "output": "29362900"}, {"text_input": "What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0038741", "output": "29362500"}, {"text_input": "What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0921020021", "output": "29420000"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02109104", "output": "29362400"}, {"text_input": "What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02103039", "output": "29362700"}, {"text_input": "What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050606,0321050607,0321050608,0321050609,0321050610,...", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0921020021,0921020022", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210031,0708210049,0708210050,0708210051,0708210052,...", "output": "29420000"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21110383", "output": "29362800"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180LB6003", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180LB4002", "output": "39123900"}, {"text_input": "What is the hs code for FENTACARE 2231 EF 25KG PAPER BOX (BHN BAKU KOSMETIK )COA ZH22B1205,ZH22B2408", "output": "34029019"}, {"text_input": "What is the hs code for SUNTHEANINE (L-THEANINE) (BHN BAKU MAKANAN) COA 111082", "output": "13021950"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180LBS00A", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180LBR00C", "output": "39123900"}, {"text_input": "What is the hs code for MIRASIL CM5 L (BHN BAKU KOSMETIK) COA 2208WKQA15", "output": "29319049"}, {"text_input": "What is the hs code for DEXAMETHASONE ACETATE ANHYDROUS MICRONISED PH.EUR.USP (BHN BAKU OBAT) COA 2104333520", "output": "29372200"}, {"text_input": "What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-0150222,S-A-0160222,S-A-0190222", "output": "29334910"}, {"text_input": "What is the hs code for TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA S7227", "output": "29225090"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS220101", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS220202", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220101", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220302", "output": "13021990"}, {"text_input": "What is the hs code for WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK) COA EG138-210901", "output": "38249999"}, {"text_input": "What is the hs code for ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (SB) (BHN BAKU KOSMETIK) COA ROSD220101-BIO", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM220101-PGH", "output": "38249999"}, {"text_input": "What is the hs code for RICE MILK AQUEOUS EXTRACT (SB) (BHN BAKU KOSMETIK) COA ORSL210101-AQ", "output": "38249999"}, {"text_input": "What is the hs code for PAPAIN POWDER (BHN BAKU KOSMETIK) COA PAP220101-GC2", "output": "38249999"}, {"text_input": "What is the hs code for ACTIPONE (R) GINGER JUICE (ORGANIC) GW (BHN BAKU KOSMETIK) COA 10300017", "output": "13021950"}, {"text_input": "What is the hs code for EXTRAPONE (R) MANGO B (BHN BAKU KOSMETIK) COA 10300039", "output": "13021950"}, {"text_input": "What is the hs code for ACTIPONE (R) WHITE TEA GW (BHN BAKU KOSMETIK) COA 10300049", "output": "13021950"}, {"text_input": "What is the hs code for GRANULAC 230 (BHN BAKU OBAT) COA L101875221", "output": "17021100"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2417191", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1229742", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0343138", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1046607", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0265643", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 0300725", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1071038", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1071038", "output": "38210090"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP01322", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP04222,MTP03222", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP04222,MTP03222, SAMPLE....", "output": "28363000"}, {"text_input": "What is the hs code for SODIUM FEREDETATE, POWDER, BP2021 (BHN BAKU OBAT) COA 3111933", "output": "29224900"}, {"text_input": "What is the hs code for OMEPRAZOLE SODIUM STERILE (BAHAN BAKU OBAT) COA SI/OPZ/00090222,00100222,00110222,00120222", "output": "29333990"}, {"text_input": "What is the hs code for SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0147800", "output": "13021950"}, {"text_input": "What is the hs code for SILYMARIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0131900", "output": "13021950"}, {"text_input": "What is the hs code for BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 21S0317200", "output": "13021990"}, {"text_input": "What is the hs code for BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 21S0279100", "output": "13021990"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP22013208,XP22013209,XP22013210,XP22013211", "output": "29211900"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH655876", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH655877", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH655913", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH655878", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH655328", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH656174", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH655910", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH656509", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PINK (BHN BAKU PEWARNA TABLET) COA SH655899", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH655908", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY TF WHITE (BHN BAKU PEWARNA TABLET) COA SH656377", "output": "38249999"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP05122", "output": "28363000"}, {"text_input": "What is the hs code for BICAR FOOD 27/50 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP06122", "output": "28363000"}, {"text_input": "What is the hs code for OPADRY ORANGE (BHN BAKU PEWARNA TABLET) COA GA703499", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY SGR TRANSLUCENT (BHN BAKU PEWARNA TABLET) COA GA703500", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY SGR CLEAR (BHN BAKU PEWARNA TABLET) COA GA703722", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY SGR RED (BHN BAKU PEWARNA TABLET) COA GA703502", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY SGR RED (BHN BAKU PEWARNA TABLET) COA GA704687", "output": "38249999"}, {"text_input": "What is the hs code for SKINECTURA TM (BHN BAKU KOSMETIK) COA 220222", "output": "13021990"}, {"text_input": "What is the hs code for OILESS CITY TM (BHN BAKU KOSMETIK) COA 211115", "output": "13021990"}, {"text_input": "What is the hs code for OILESS CITY TM (BHN BAKU KOSMETIK) COA 211115", "output": "13021990"}, {"text_input": "What is the hs code for MELAFRESH TM 96 (BHN BAKU KOSMETIK) COA 220201", "output": "29061900"}, {"text_input": "What is the hs code for OILESS CITY TM (BHN BAKU KOSMETIK) COA 211115", "output": "13021990"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 211014", "output": "13021990"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB22020312", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB22020312", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB21080247", "output": "29362800"}, {"text_input": "What is the hs code for NORIT SX SUPER E 153 (BHN BAKU KOSMETIK) COA 5195734", "output": "38021010"}, {"text_input": "What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02201616", "output": "29362700"}, {"text_input": "What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) COA 203110", "output": "38249999"}, {"text_input": "What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) COA 202269", "output": "38249999"}, {"text_input": "What is the hs code for KSG-210 (16KG) (BHN BAKU KOSMETIK) COA 109111", "output": "38249999"}, {"text_input": "What is the hs code for VC SODIUM ASCORBATE REGULAR (BHN BAKU MAKANAN) COA HPN2202018,HPN2202048,HPN2202076,HPN...", "output": "29362700"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02201001", "output": "32041900"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02201001,UE02201002", "output": "32041900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22010039", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU MAKANAN) COA UT21110215 S/D UT21110218", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPPLEMEN) COA UT21100062", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT21120058", "output": "29362100"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 2AX2203012", "output": "29181400"}, {"text_input": "What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT21110016", "output": "29362100"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02201460", "output": "29362700"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02201001", "output": "32041900"}, {"text_input": "What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT21100013", "output": "29420000"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT22011138,UT22011140,UT22011141,..", "output": "29362100"}, {"text_input": "What is the hs code for OPADRY AMB II CLEAR (BHN BAKU PEWARNA TABLET) COA SH655212", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656171", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656163", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656165", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656167", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656168", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656166", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656169", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656170", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE PURPLE (BHN BAKU PEWARNA TABLET) COA SH656173", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH655883", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH656174", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH655908", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH656175", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE ORANGE (BHN BAKU PEWARNA TABLET) COA SH656176", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH656177", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II BLACK (BHN BAKU PEWARNA TABLET) COA SH656178", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH656181", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II PURPLE (BHN BAKU PEWARNA TABLET) COA SH656179", "output": "38249999"}, {"text_input": "What is the hs code for CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/03/140322", "output": "39123100"}, {"text_input": "What is the hs code for CAFFEINE BP/EP/USP (BHN BAKU OBAT) COA 2203314,2203322 S/D 2203325,2203331,2203332,2203341", "output": "29393000"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE SOD SUC FOR INJ (LYOPHILISED STERILE BULK) (BHN BAKU OBAT) COA MNS0222003", "output": "29372900"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE SOD SUC FOR INJ (LYOPHILISED STERILE BULK) (BHN BAKU OBAT) COA MNS0222003", "output": "29372900"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE SOD SUC FOR INJ (LYOPHILISED STERILE BULK) (BHN BAKU OBAT) COA MNS0222003", "output": "29372900"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE SOD SUC FOR INJ (LYOPHILISED STERILE BULK) (BHN BAKU OBAT) COA MNS0222003", "output": "29372900"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE SOD SUC FOR INJ (LYOPHILISED STERILE BULK) (BHN BAKU OBAT) COA MNS0222003", "output": "29372900"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2011820", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2011820", "output": "38210090"}, {"text_input": "What is the hs code for LIPEX (R) BASSOL C VEGETABLE OIL (BHN BAKU KOSMETIK) COA 0002477552", "output": "15162049"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-051711", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-031691", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-010322", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSFAC-011791", "output": "13021950"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-022791", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ROSEMARY EXTRACT (BHN BAKU KOSMETIK) COA RSL-031211", "output": "13021950"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-061911,010722,0022322", "output": "13021950"}, {"text_input": "What is the hs code for ASTABIO AR10 (ASTAXANTHIN OIL 10PCT) (BHN BAKU OBAT) COA 2108041", "output": "32030010"}, {"text_input": "What is the hs code for KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 020221,170821,140921", "output": "25070000"}, {"text_input": "What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M535438,M535439,M535440,M535442,M535443,M535448", "output": "29411019"}, {"text_input": "What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340361,B340362,B340363", "output": "29419000"}, {"text_input": "What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334804,B334805,B334806", "output": "29419000"}, {"text_input": "What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340356,B340357,B340358", "output": "29419000"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH656330", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH656717", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785019821N", "output": "38249999"}, {"text_input": "What is the hs code for PRO-LIPO TM NEO (BHN BAKU KOSMETIK) COA 2131002", "output": "38249999"}, {"text_input": "What is the hs code for ROSALITY TM (BHN BAKU KOSMETIK) COA 2110201", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785019821N", "output": "38249999"}, {"text_input": "What is the hs code for GREYVERSE TM (BHN BAKU KOSMETIK) COA 833011021N", "output": "39139090"}, {"text_input": "What is the hs code for MELANOSTATINE TM 5 BG (50PPM) (BHN BAKU KOSMETIK) COA 213801", "output": "38249999"}, {"text_input": "What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 2103114", "output": "38249999"}, {"text_input": "What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019729N", "output": "38249999"}, {"text_input": "What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019447N", "output": "38249999"}, {"text_input": "What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 212000", "output": "39139090"}, {"text_input": "What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 213799", "output": "39139090"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2125201", "output": "38249999"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019761M", "output": "38249999"}, {"text_input": "What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829019674N", "output": "39139090"}, {"text_input": "What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829019674N", "output": "39139090"}, {"text_input": "What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019447N", "output": "38249999"}, {"text_input": "What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 213799", "output": "39139090"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785019821N", "output": "38249999"}, {"text_input": "What is the hs code for GREYVERSE TM (BHN BAKU KOSMETIK) COA 833011021N", "output": "39139090"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019761M", "output": "38249999"}, {"text_input": "What is the hs code for SILIGEL TM (BHN BAKU KOSMETIK) COA 2134602", "output": "38249999"}, {"text_input": "What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799039730M", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785019821N", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2125203", "output": "38249999"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019761M", "output": "38249999"}, {"text_input": "What is the hs code for MINIPORYL TM (BHN BAKU KOSMETIK) COA 832019764M", "output": "38249999"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113862", "output": "29339990"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113862", "output": "29339990"}, {"text_input": "What is the hs code for VIT MIN MIX IMS FB APAC STDP IMM (BHN BAKU MAKANAN) COA XW92202040", "output": "21069059"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT21100378,UT21110397", "output": "29362800"}, {"text_input": "What is the hs code for B-CAROTENE 1PCT CWS/M (POST BORDER) COA UT21100029", "output": "32041900"}, {"text_input": "What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000200424", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ11010766,UQ20110508", "output": "29362300"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ11212414,UQ10312088,UQ10212050", "output": "29362200"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB21060056", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02102011", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT21120005", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060075,0521060071", "output": "29420000"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT21120005", "output": "29362900"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPPLEMEN) COA UQ11113361", "output": "29362200"}, {"text_input": "What is the hs code for RIBOFLAVIN 5-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2105052", "output": "29362300"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060071", "output": "29420000"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT21070022,UT21070023", "output": "29362600"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ11212414", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ11113356", "output": "29362200"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12111039", "output": "29362900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11211026", "output": "29362500"}, {"text_input": "What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ11017014", "output": "29420000"}, {"text_input": "What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPPLEMEN) COA UQ11209528", "output": "29362300"}, {"text_input": "What is the hs code for GENIVIDA(TM) TG (BHN BAKU SUPPLEMEN) COA UT21100002", "output": "29329990"}, {"text_input": "What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT FS (BHN BAKU SUPPLEMEN) COA UE02110004", "output": "29420000"}, {"text_input": "What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0061802", "output": "38249999"}, {"text_input": "What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0061807", "output": "38249999"}, {"text_input": "What is the hs code for MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HA01908,HA02004", "output": "34024990"}, {"text_input": "What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 21290088", "output": "30039000"}, {"text_input": "What is the hs code for ACETAMINOPHEN (PARACETAMOL) (BHN BAKU OBAT) COA 202203010A,202203011A", "output": "29242930"}, {"text_input": "What is the hs code for CROPOVIDONE XL (BHN BAKU OBAT) COA PP220304XL", "output": "39059990"}, {"text_input": "What is the hs code for POVIDONE K-30 (BHN BAKU OBAT) COA PK30-220222F11", "output": "39059990"}, {"text_input": "What is the hs code for ACETAMINOPHEN (PARACETAMOL) (BHN BAKU OBAT) COA 202203011A,202203012A,202203013A", "output": "29242930"}, {"text_input": "What is the hs code for MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL220318,MCCPOL220321", "output": "29094900"}, {"text_input": "What is the hs code for PALMEROL 1698 CETYL ALCOHOL/MB,PASTILE (BHN BAKU KOSMETIK) COA 1H0042A", "output": "29051700"}, {"text_input": "What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102169014,102169017", "output": "28161000"}, {"text_input": "What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102169017", "output": "28161000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201529,122201530", "output": "28363000"}, {"text_input": "What is the hs code for GLICLAZIDE (BHN BAKU OBAT) COA 2240000046", "output": "29359000"}, {"text_input": "What is the hs code for PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M598201,M598202", "output": "29411019"}, {"text_input": "What is the hs code for PALONOSETRON HCL (BHN BAKU OBAT) COA A100200", "output": "29337900"}, {"text_input": "What is the hs code for FERROUS GLUCONATE, FINE GRAN., ACC. TO PT MI QUALITY (BHN BAKU SUPLEMEN) COA 3107780", "output": "29181600"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2103681184", "output": "29372900"}, {"text_input": "What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512148", "output": "47069200"}, {"text_input": "What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512148", "output": "47069200"}, {"text_input": "What is the hs code for VC ASCORBIC ACID REGULAR (BHN BAKU MAKANAN) COA HPB2202015", "output": "29362700"}, {"text_input": "What is the hs code for GALAXY 610 EHS MB (ETHYLENE GLYCOL DISTEARATE) (BHN BAKU KOSMETIK) COA 748872", "output": "34049090"}, {"text_input": "What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 17022022", "output": "25081000"}, {"text_input": "What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 21022022", "output": "25081000"}, {"text_input": "What is the hs code for HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2510122", "output": "29397900"}, {"text_input": "What is the hs code for BETAMETHASONE VALERATE USP 43 (BHN BAKU OBAT) COA APL/BV/01021/A-22", "output": "29372200"}, {"text_input": "What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-001-Z", "output": "13021990"}, {"text_input": "What is the hs code for PROCATEROL HCL HEMIHYDRATE MICRONIZED (BHN BAKU OBAT) COA 8601219M1", "output": "29337900"}, {"text_input": "What is the hs code for COPPER SULFATE, POWDER, PH.EUR.10.ED (BHN BAKU SUPLEMEN) COA 3104245-01", "output": "28332500"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/03/050322,ASG/03/050322-1,ASG/03/060322-1", "output": "29420000"}, {"text_input": "What is the hs code for CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/03/110322,ACMC/03/120322", "output": "39123100"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE BP (BHN BAKU OBAT) COA ASGP/03/140322,ASGP/03/150322", "output": "29420000"}, {"text_input": "What is the hs code for MAGNESIUM CHLORIDE 6-HYDRATE, CRYST. (BHN BAKU KOSMETIK) COA 3105684", "output": "28273100"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220302", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-220201", "output": "13021990"}, {"text_input": "What is the hs code for HIBISCUS ORGANIC OILY EXTRACT (SUNFLOWER) (BHN BAKU KOSMETIK) COA HIST210101-HBIO", "output": "38249999"}, {"text_input": "What is the hs code for ROSE OILY EXTRACT (BHN BAKU KOSMETIK) COA ROS210904-H", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-220201", "output": "13021990"}, {"text_input": "What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) COA OLVH2203R1-ENBIO", "output": "38249999"}, {"text_input": "What is the hs code for SEABUCKTHRON HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HIR210101-B", "output": "13021990"}, {"text_input": "What is the hs code for CAPSULAC (R) 60 (BHN BAKU OBAT) COA L100410322", "output": "17021100"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D011L4SL02", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180L7R001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180L96001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180L3B021", "output": "39123900"}, {"text_input": "What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102123023", "output": "28161000"}, {"text_input": "What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102102056", "output": "28183000"}, {"text_input": "What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102123023, SAMPLE NO COMMERCIAL..", "output": "28161000"}, {"text_input": "What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102123023", "output": "28161000"}, {"text_input": "What is the hs code for BARCROFT TM AL HYD GEL LV13, USP (BHN BAKU OBAT) COA 102113155", "output": "28183000"}, {"text_input": "What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102123023, SAMPLE NO COMMERCIAL..", "output": "28161000"}, {"text_input": "What is the hs code for BARCROFT TM AL HYD GEL LV13, USP (BHN BAKU OBAT) COA 102113155, SAMPLE NO COMMERCIAL VALUE", "output": "28183000"}, {"text_input": "What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M535460,M535469,M535477,M535481,M535482,M535483", "output": "29411019"}, {"text_input": "What is the hs code for BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 22S0056800", "output": "13021990"}, {"text_input": "What is the hs code for SILYMARIN ETHANOLIC/HF (BHN BAKU SUPLEMEN) COA 21S0222804", "output": "13021950"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 INF OIL (BHN BAKU SUPPLEMEN) COA TS00019152", "output": "29362500"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201530,122201531", "output": "28363000"}, {"text_input": "What is the hs code for HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2510122", "output": "29397900"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB191121", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB240122", "output": "39123900"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B241221", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LG090122", "output": "39123900"}, {"text_input": "What is the hs code for ACTIPONE (R) CAMU CAMU ET (BHN BAKU KOSMETIK) COA 10300028", "output": "13021950"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG220218,MCVG220303", "output": "29362700"}, {"text_input": "What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102169017", "output": "28161000"}, {"text_input": "What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET) COA DT727767", "output": "32151990"}, {"text_input": "What is the hs code for NG 5 PCT-1,2 PROPYLENGLYCOLE 95% (BAHAN BAKU OBAT) COA", "output": "30039000"}, {"text_input": "What is the hs code for AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 157743", "output": "15159011"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02106017", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02106017", "output": "29362900"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02110124", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060071", "output": "29420000"}, {"text_input": "What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02106807", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040020", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210059,0708210060,0708210061,0708210062,0708210074", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS3821121", "output": "29420000"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000202398", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92203274", "output": "21069059"}, {"text_input": "What is the hs code for MINERAL PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92203318,XW92203319,XW92203320", "output": "21069059"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-010322,BAG-023132", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-040732", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-032721", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 012022", "output": "28331900"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND TEA TREE EXTRACT (BHN BAKU KOSMETIK) COA MASL-031381", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-022322", "output": "13021950"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-022432", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND GREEN TEA SEED OIL (BHN BAKU KOSMETIK) COA CSSO-022701", "output": "13021950"}, {"text_input": "What is the hs code for IONOL (R) CP (BHN BAKU KOSMETIK) COA 01146120", "output": "29071900"}, {"text_input": "What is the hs code for NYSTATIN POWDER ROW GRADE (BHN BAKU OBAT) COA C114613,C114619", "output": "29419000"}, {"text_input": "What is the hs code for NYSTATIN MICRONIZED (BHN BAKU OBAT) COA C131921", "output": "29419000"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 01720122,03730222,06940322,06950322,06960322,06970322,...", "output": "29359000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201528,122201529", "output": "28363000"}, {"text_input": "What is the hs code for PROPYPHENAZONE (CEP) (BHN BAKU OBAT UTK PEWARNA TABLET) COA 2111209", "output": "29331100"}, {"text_input": "What is the hs code for GENIVIDA(TM) TG (POST BORDER) COA UT21100002,UT21100003", "output": "29329900"}, {"text_input": "What is the hs code for VITAMIN B12 1PCT SD (POST BORDER) COA UT22010002", "output": "29362600"}, {"text_input": "What is the hs code for FRUITFLOW II SD (POST BORDER) COA 21T0102200", "output": "29362900"}, {"text_input": "What is the hs code for VIT. A PALM. 1.0 M + VIT. D3 100'000 (BHN BAKU MAKANAN) COA UT22020137", "output": "29362100"}, {"text_input": "What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22020003", "output": "29362500"}, {"text_input": "What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ20217001", "output": "29420000"}, {"text_input": "What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02202875", "output": "29362700"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA023222,ROA023222", "output": "28363000"}, {"text_input": "What is the hs code for AMITOSE R (BHN BAKU KOSMETIK) COA GAH", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SJG", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA SJG,GCH", "output": "38249999"}, {"text_input": "What is the hs code for PHARMACEUTICAL CASTOR OIL E.P (BHN BAKU KOSMETIK) COA 0000041663", "output": "15152919"}, {"text_input": "What is the hs code for KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 08-05-21,06-03-21", "output": "25070000"}, {"text_input": "What is the hs code for KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 14-09-21", "output": "25070000"}, {"text_input": "What is the hs code for KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 08-05-21,14-09-21", "output": "25070000"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21060148", "output": "29362900"}, {"text_input": "What is the hs code for PX 103070 C (POST BORDER) COA XW92203351,XW92203352", "output": "21069059"}, {"text_input": "What is the hs code for PX 103070 C (POST BORDER) COA XW92203352,XW92203353", "output": "21069059"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ20210550", "output": "29362300"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02106017", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02106017", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02106017,UE02106021", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02106021", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02106021", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (POST BORDER) COA UT22010002", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (POST BORDER) COA UT22010002", "output": "29362600"}, {"text_input": "What is the hs code for VP DN03 (POST BORDER) COA XW92202353", "output": "21069059"}, {"text_input": "What is the hs code for CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/03/010422", "output": "39123100"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 220149", "output": "38249999"}, {"text_input": "What is the hs code for ACNE BUSTERS (BHN BAKU KOSMETIK) COA 220394", "output": "38249999"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 220149", "output": "38249999"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 220049", "output": "13021990"}, {"text_input": "What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 220070", "output": "13021990"}, {"text_input": "What is the hs code for CINDERELLACARE (BHN BAKU KOSMETIK) COA 212652", "output": "13021990"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 220049", "output": "13021990"}, {"text_input": "What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 220070", "output": "13021990"}, {"text_input": "What is the hs code for COMFREY LIQUID B (BHN BAKU KOSMETIK) COA 212834", "output": "13021990"}, {"text_input": "What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 212686", "output": "13021990"}, {"text_input": "What is the hs code for KOMENUKA LIQUID BK (BHN BAKU KOSMETIK) COA 212233", "output": "13021990"}, {"text_input": "What is the hs code for PLURESSENCE LEMON 5001 BA (BHN BAKU OBAT) COA 795507", "output": "28399000"}, {"text_input": "What is the hs code for GOTU KOLA EXTRACT (BHN BAKU KOSMETIK) COA 22010386", "output": "13021950"}, {"text_input": "What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000078876", "output": "29309090"}, {"text_input": "What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 1806763070", "output": "29362600"}, {"text_input": "What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 1806763070", "output": "29362600"}, {"text_input": "What is the hs code for KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 14-09-21", "output": "25070000"}, {"text_input": "What is the hs code for PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 080321/007122", "output": "38249999"}, {"text_input": "What is the hs code for EXTRAPONE (R) SEA EXTRACTS N (BHN BAKU KOSMETIK) COA 10300034", "output": "13021950"}, {"text_input": "What is the hs code for EXTRAPONE (R) GINSENG (BHN BAKU KOSMETIK) COA 10300046", "output": "13021940"}, {"text_input": "What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWDER FORM CATCOL C135(L) GRADE(B.BAKU KOSMETIK) COA 287/22", "output": "38249999"}, {"text_input": "What is the hs code for CALCIUM STEARATE POWDER, PH.EUR.10.ED. (BHN BAKU SUPPLEMEN) COA 3097553", "output": "38249999"}, {"text_input": "What is the hs code for TRISODIUM CITRATE ANHYDROUS CRYST. POWDER, USP 43 (BHN BAKU SUPPLEMEN) COA 3106312", "output": "29181590"}, {"text_input": "What is the hs code for SODIUM SELENITE IN CARRIER (BHN BAKU SUPPLEMEN) COA 3106230", "output": "28429010"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM REGULAR GRADE(BHN BAKU OBAT) COA 21121935,2203294,2203297,2203300", "output": "29331900"}, {"text_input": "What is the hs code for COSME-PHYTAMI LOTUS FL 5KG(BAHAN BAKU KOSMETIK) COA AM093819", "output": "13021950"}, {"text_input": "What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052201,G05052209", "output": "47063000"}, {"text_input": "What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 2104303177", "output": "29372200"}, {"text_input": "What is the hs code for CENTELLA ASIATICA/PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 20S0317200", "output": "13021950"}, {"text_input": "What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 21S0135500", "output": "13021950"}, {"text_input": "What is the hs code for SERENOA REPENS PURIFIED EXT (BHN BAKU SUPLEMEN) COA 21S0178200", "output": "13021950"}, {"text_input": "What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 21S0135500", "output": "13021950"}, {"text_input": "What is the hs code for MIRTOGENOL (R) (BHN BAKU SUPLEMEN) COA 21S0272800", "output": "13021950"}, {"text_input": "What is the hs code for JAGUAR HP 105 SGI (BHN BAKU KOSMETIK) COA H2110217D", "output": "38249999"}, {"text_input": "What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 211115", "output": "13021990"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 211014", "output": "13021990"}, {"text_input": "What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 210918", "output": "13021990"}, {"text_input": "What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 211115", "output": "13021990"}, {"text_input": "What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 220202,220304", "output": "13021990"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 211014", "output": "13021990"}, {"text_input": "What is the hs code for WILDPLUM HARVEST TM AF (BHN BAKU KOSMETIK) COA 211018", "output": "13021990"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 220211", "output": "13021990"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 211014", "output": "13021990"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02111128", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT21121131,UT21121132,UT21121133", "output": "29362100"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPPLEMEN) COA UQ10913303", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPPLEMEN) COA UQ10913303", "output": "29362200"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT21100054", "output": "32041800"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT21100054", "output": "32041800"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT21100038", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT21100054", "output": "32041800"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02111128", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02111128", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT22010006", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT22010006", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT22010004,UT22020066", "output": "29362800"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ10913303", "output": "29362200"}, {"text_input": "What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF21167003", "output": "29420000"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02106021", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02106021", "output": "29362900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21110396", "output": "29362800"}, {"text_input": "What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050616,0321050617,0321050620,0321050652", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL ZX (BHN BAKU KOSMETIK) COA 191002012", "output": "29420000"}, {"text_input": "What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00735148,VE00735366", "output": "29420000"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000202399,0000202400", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT22011134", "output": "29362100"}, {"text_input": "What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA F00451UG", "output": "29053200"}, {"text_input": "What is the hs code for AHCC-PROFESSIONAL-FG (BHN BAKUOBAT) COA 203FM01", "output": "21069099"}, {"text_input": "What is the hs code for SODIUM ACETATE ANHYDROUS (BHN BAKU SUPPLEMEN) COA 3099001", "output": "29152910"}, {"text_input": "What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) COA 7766047", "output": "38249999"}, {"text_input": "What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M-31.0PCT (BHN BAKU OBAT) COA 102229001", "output": "28161000"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT KIWI CSB (BHN BAKU OBAT) COA 02/19GAAK", "output": "28399000"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT KIWI ECH (BHN BAKU OBAT) COA 02/19GAAK, SAMPLE NO COMMERCIAL VALUE", "output": "28399000"}, {"text_input": "What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO BP (BHN BAKU OBAT) COA 187350", "output": "28399000"}, {"text_input": "What is the hs code for PRECIROL ATO 5 CAR (BHN BAKU OBAT) COA 188256", "output": "28399000"}, {"text_input": "What is the hs code for LABRAFIL M 1944 CS BF (BHN BAKU OBAT) COA 189209", "output": "28399000"}, {"text_input": "What is the hs code for GELUCIRE 48/16 PELLETS CAR (BHN BAKU OBAT) COA 185000", "output": "28399000"}, {"text_input": "What is the hs code for PRECIFAC 95-3 CAR (BHN BAKU OBAT) COA 186318", "output": "28399000"}, {"text_input": "What is the hs code for PRECIROL ATO 5 CAR (BHN BAKU OBAT) COA 188256", "output": "28399000"}, {"text_input": "What is the hs code for FD&C YELLOW #6/SUNSET YELLOW FCF AL 38PCT-42PCT(BHN BAKU PEWARNA TABLET) COA WP848268:BB2464", "output": "32151990"}, {"text_input": "What is the hs code for D&C YELLOW #10 AL 15PCT - 20PCT... (BHN BAKU PEWARNA TABLET) COA WP853297:BB4378", "output": "32151990"}, {"text_input": "What is the hs code for ERYTHROSINE AL 38PCT-42PCT... (BHN BAKU PEWARNA TABLET) COA WP844565:1", "output": "32151990"}, {"text_input": "What is the hs code for FD&C RED #40/ALLURA RED AC AL 38PCT- 42PCT... (BHN BAKU PEWARNA TABLET) COA WP841245:BA8627", "output": "32151990"}, {"text_input": "What is the hs code for ERYTHROSINE AL 38PCT-42PCT... (BHN BAKU PEWARNA TABLET) COA WP844564:1", "output": "32151990"}, {"text_input": "What is the hs code for BOTTLE UREA AGAR BASE BBL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2005602", "output": "38210090"}, {"text_input": "What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1279231", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1201851,...", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1243619", "output": "38210090"}, {"text_input": "What is the hs code for VIAL E COIL H ANTISERUM H7 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0212196", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTISERUM FACTORS 4&5 GRP B (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0142756", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1175752", "output": "38210090"}, {"text_input": "What is the hs code for VIAL E COLI O ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0094884", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2004399", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOBACILLLI MRS BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1264636", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2033988,..", "output": "38210090"}, {"text_input": "What is the hs code for SORBITOL SPECIAL TM MDF 85 (POST BORDER) COA 122201598", "output": "29054400"}, {"text_input": "What is the hs code for BICAR FOOD 27/50 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP07722", "output": "28363000"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02E048M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1229930", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 11108772", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1242774", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MUELLER HINTON AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1181403", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1111035", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1159790", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1312204", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1221531,1", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2011054", "output": "38210090"}, {"text_input": "What is the hs code for BOTLE LYSINE DECARBOXYLASE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1096987", "output": "38210090"}, {"text_input": "What is the hs code for LOOPS INOCULATING 10/TUBE 1 MICROLITER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2125885", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1257929", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1159463,2059", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1307340", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE WL DIFFERENTIAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1188436", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2040220", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0315100", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2028749", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2038179", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2038654", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1173666", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0048007,2011820", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1229880", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1173733", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0286569", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2024545", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0322946", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1349644", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA U/PENGEMBANGAN MIKROORGANISME)BATCH 2033988", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1222962", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2028035", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2024545", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1272026", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1285606", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1320580", "output": "38210090"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1071063,.", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1319484,1348587", "output": "38210090"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1310563,.", "output": "38210090"}, {"text_input": "What is the hs code for KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1348749", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1173666", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2038183", "output": "38210090"}, {"text_input": "What is the hs code for OPACODE WHITE (BHN BAKU PEWARNA TABLET) COA WP854882", "output": "32151990"}, {"text_input": "What is the hs code for OPACODE GOLD (BHN BAKU PEWARNA TABLET) COA WP854940", "output": "32151990"}, {"text_input": "What is the hs code for HYDROCORTISONE ACETATE EP/USP (BHN BAKU OBAT) COA NEHAC211104", "output": "29372200"}, {"text_input": "What is the hs code for DEXAMETHASONE BP/USP (BHN BAKU OBAT) COA NED220303,NED220401,NED220305,NED220402,NED220411,...", "output": "29372200"}, {"text_input": "What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK) COA 2203EF9011,2203EF9012", "output": "29224900"}, {"text_input": "What is the hs code for ETHAMBUTOL (BHN BAKU OBAT) COA N2006634,N2009595 S/D N2009599,N2009675 S/D N2009679", "output": "29221910"}, {"text_input": "What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 2209970478", "output": "29362600"}, {"text_input": "What is the hs code for METRONIDAZOLE BENZOATE EP (BHN BAKU OBAT) COA MBO/12030146", "output": "29332900"}, {"text_input": "What is the hs code for HYDROSOLUBLE LIVER EXTRACT POWDER HALAL (BHN BAKU OBAT) COA 270122FIP", "output": "29332900"}, {"text_input": "What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC6D YRPN19...(ALAT KESEHATAN)COA 6D19100L0408", "output": "30061010"}, {"text_input": "What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC HI RHINO.(ALAT KESEHATAN) COA HR1938L0408", "output": "30061010"}, {"text_input": "What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC HI RHINO.. (ALAT KESEHATAN) COA HR1960L0408", "output": "30061010"}, {"text_input": "What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW DC DUAL... (ALAT KESEHATAN) COA DA21110N0408", "output": "30061010"}, {"text_input": "What is the hs code for MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50438", "output": "29061100"}, {"text_input": "What is the hs code for SERASENSE SF 2 (BAHAN BAKU KOSMETIK) COA SA20328116", "output": "29319049"}, {"text_input": "What is the hs code for SUPPOCIRE AM PELLETS (BHN BAKU OBAT) COA 22E0409", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 21E4906", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 21E5003", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE BM PELLETS (BHN BAKU OBAT) COA 21E2708", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE BS2X PELLETS (BHN BAKU OBAT) COA 21E2906", "output": "28399000"}, {"text_input": "What is the hs code for LANSOPRAZOLE PELLETS 8.5PCT (BHN BAKU OBAT) COA LP0222C005", "output": "30039000"}, {"text_input": "What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET) COA DT729243", "output": "32151990"}, {"text_input": "What is the hs code for OPACODE BLACK (BHN BAKU PEWARNA TABLET) COA DT729904", "output": "32151990"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA JP517393", "output": "38249999"}, {"text_input": "What is the hs code for BOSWELLIA SERRATA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 21T0118000", "output": "13021950"}, {"text_input": "What is the hs code for AZITHROMYCIN (BHN BAKU OBAT) COA 129-210925-1", "output": "29419000"}, {"text_input": "What is the hs code for BETAMETHASONE VALERATE (BHN BAKU OBAT) COA X21-220302", "output": "29372200"}, {"text_input": "What is the hs code for CEFOTAXIME SODIUM (BHN BAKU OBAT) COA 3042203044", "output": "29419000"}, {"text_input": "What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334809,B334813", "output": "29419000"}, {"text_input": "What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340366,B340367", "output": "29419000"}, {"text_input": "What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334810,B334811,B334812", "output": "29419000"}, {"text_input": "What is the hs code for SOYA LECITHIN (BHN BAKU MAKANAN) COA TY2220103-7", "output": "29232011"}, {"text_input": "What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1263533", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1263533", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1263533", "output": "38210090"}, {"text_input": "What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1014859", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASAMINO ACIDS EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1082049", "output": "38210090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE (MMW) (BHN BAKU KOSMETIK) COA CHP1220405", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-040732", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 012022", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-022322", "output": "13021950"}, {"text_input": "What is the hs code for DNACTIVE (DNA-NA) (BHN BAKU KOSMETIK) COA DNANA-21236", "output": "29349910"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT22020012,UT22020013,UT22020020", "output": "29362800"}, {"text_input": "What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE02202001", "output": "29362100"}, {"text_input": "What is the hs code for MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22020003", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPPLEMEN) COA UT22020063", "output": "29362100"}, {"text_input": "What is the hs code for MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22020003", "output": "29362500"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02201012", "output": "32041800"}, {"text_input": "What is the hs code for MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22020003", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT22031160", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU SUPPLEMEN) COA UT22030042,UT22030043", "output": "29362100"}, {"text_input": "What is the hs code for FLORAGLO(R) LUTEIN 20 PCT SAF (POST BORDER) COA UE02203001", "output": "32030010"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS PH (POST BORDER) COA UT21120003", "output": "29362900"}, {"text_input": "What is the hs code for BETATAB 20PCT S (POST BORDER) COA UT22020009", "output": "32041800"}, {"text_input": "What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (POST BORDER) COA UT22010102", "output": "29362100"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN546605", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN546644", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN546643", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 PARTIALLY (BHN BAKU PEWARNA TABLET) COA IN546642", "output": "35051010"}, {"text_input": "What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) (BHN BAKU OBAT) COA 4454086972", "output": "39139090"}, {"text_input": "What is the hs code for BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 22S0074500", "output": "13021990"}, {"text_input": "What is the hs code for BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 22S0074500", "output": "13021990"}, {"text_input": "What is the hs code for C47-051 SUNCROMA TITANIUM DIOXIDE (BHN BAKU KOSMETIK) COA D0XT06", "output": "32061110"}, {"text_input": "What is the hs code for ADSORB AFLA (BHN BAKU UNTUK PAKAN TERNAK) COA 262,263", "output": "25081000"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040051, SAMPLE NO COMMERCIAL VALUE", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL ZX (BHN BAKU KOSMETIK) COA 201008012, SAMPLE NO COMMERCIAL VALUE", "output": "29420000"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 21B010900", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0138900", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0139000", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 21B0139100", "output": "13021990"}, {"text_input": "What is the hs code for BENTONITE (MINERAL UNTUK SUPLEMEN HEWAN) COA 25022022", "output": "25081000"}, {"text_input": "What is the hs code for SORBITOL SOLUTION 70 PCT CRYSTALLINE (BHN BAKU KOSMETIK) COA 2223P027", "output": "29054400"}, {"text_input": "What is the hs code for TEFOSE 63 BF (BHN BAKU SUPPLEMEN) COA 188933", "output": "28399000"}, {"text_input": "What is the hs code for DL-TARTARIC ACID (BHN BAKU OBAT) COA RS01573", "output": "29181200"}, {"text_input": "What is the hs code for L-MALIC ACID (BHN BAKU OBAT) COA CS12061", "output": "29181900"}, {"text_input": "What is the hs code for N-ACETYL-L-CYSTEINE (BHN BAKU OBAT) COA C103-202201837,202203833,202203834,202203835,202203836", "output": "29309090"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA AG/03/080322,ASG/04/040422", "output": "29420000"}, {"text_input": "What is the hs code for CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/04/020422,030422,040422", "output": "39123100"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE BP (BHN BAKU OBAT) COA ASGP/03/240322,250322,230322", "output": "29420000"}, {"text_input": "What is the hs code for POTASSIUM GLYCEROPHOSPHATE SOLUTION (BHN BAKU SUPPLEMEN) COA 3115072", "output": "29199000"}, {"text_input": "What is the hs code for MIRASIL D-DML LV A2 (BHN BAKU KOSMETIK) COA 2214HK10XA", "output": "39100090"}, {"text_input": "What is the hs code for MIRASIL CM5 L (BHN BAKU KOSMETIK) COA 2215WKQ415", "output": "29319049"}, {"text_input": "What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000078604", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000078605", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H105 83 PCT (BHN BAKU KOSMETIK) COA 0000078606", "output": "29309090"}, {"text_input": "What is the hs code for PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) COA PH07130622", "output": "38249999"}, {"text_input": "What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000078459", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000078460", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000078461", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H105 83 PCT (BHN BAKU KOSMETIK) COA 0000078462, SAMPLE NO COMMERCIAL VALUE", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H103 43 PCT (BHN BAKU KOSMETIK) COA 0000078463, SAMPLE NO COMMERCIAL VALUE", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H100 99 PCT (BHN BAKU KOSMETIK) COA 0000078464, SAMPLE NO COMMERCIAL VALUE", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H101 71 PCT (BHN BAKU KOSMETIK) COA 0000078465, SAMPLE NO COMMERCIAL VALUE", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H100 80 PCT (BHN BAKU KOSMETIK) COA 0000078466, SAMPLE NO COMMERCIAL VALUE", "output": "29309090"}, {"text_input": "What is the hs code for LIPOID S 67 F (BHN BAKU SUPPLEMEN) COA 576200-2220039", "output": "29232011"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM (BHN OBAT TERNAK) COA 2204450", "output": "29331900"}, {"text_input": "What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 22100160", "output": "29395900"}, {"text_input": "What is the hs code for PURIMOX POWDER (BHN BAKU OBAT) COA M485930,M485931", "output": "29411019"}, {"text_input": "What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M535626 S/D M535631", "output": "29411019"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPLEMEN) COA WB21120254", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB22020313", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPLEMEN) COA WB22020313", "output": "29362100"}, {"text_input": "What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-220201", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220302", "output": "13021990"}, {"text_input": "What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) COA PX773-210503-GS", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785019980N", "output": "38249999"}, {"text_input": "What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 702019449N", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2125201", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2133703", "output": "38249999"}, {"text_input": "What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 702019449N", "output": "38249999"}, {"text_input": "What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 2115314", "output": "38249999"}, {"text_input": "What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829019674N", "output": "29224900"}, {"text_input": "What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019763N", "output": "38249999"}, {"text_input": "What is the hs code for DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834011019N", "output": "29224900"}, {"text_input": "What is the hs code for GREYVERSE TM (BHN BAKU KOSMETIK) COA 833011021N", "output": "29224900"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019761M", "output": "38249999"}, {"text_input": "What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019447N", "output": "38249999"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019761M", "output": "38249999"}, {"text_input": "What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029946N", "output": "13021950"}, {"text_input": "What is the hs code for JAGUAR C 162 CARDBOARD BOX 25 KG (BHN BAKU KOSMETIK) COA MJAC22011B", "output": "38249999"}, {"text_input": "What is the hs code for COPPER(II) GLUCONATE, FINE POWDER, USP 43 (BHN BAKU SUPPLEMEN) COA 3112564", "output": "29181600"}, {"text_input": "What is the hs code for ZINC OXIDE, POWDER, PH.EUR.10.ED. (BHN BAKU SUPPLEMEN) COA 3112821", "output": "28170010"}, {"text_input": "What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-0450422", "output": "29334910"}, {"text_input": "What is the hs code for CAFFEINE BP/EP/USP/CEP (BHN BAKU OBAT) COA 2203504,2203508 S/D 2203510,2203513,2204548 S/D 49", "output": "29393000"}, {"text_input": "What is the hs code for CAFFEINE BP/EP/USP/CEP (BHN BAKU OBAT) COA 2203326, 2204563", "output": "29393000"}, {"text_input": "What is the hs code for CAFFEINE BP/EP/USP/CEP (BHN BAKU OBAT) COA 2204550,2204556,2204562", "output": "29393000"}, {"text_input": "What is the hs code for ACYCLOVIR MICRONIZED (BHN BAKU OBAT) COA 22100099", "output": "29335990"}, {"text_input": "What is the hs code for COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPPLEMEN) COA TL02201494", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ20116011,UQ20116015", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22020041", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU MAKANAN) COA UT22030220,UT22030221", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22020040,UT22020041", "output": "29362100"}, {"text_input": "What is the hs code for RIBOFLAVIN TABLET GRADE (BHN BAKU SUPPLEMEN) COA UQ11209528", "output": "29362300"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02201544", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT22020060", "output": "29362100"}, {"text_input": "What is the hs code for COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPPLEMEN) COA TL02201494", "output": "29362700"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02201002", "output": "32041800"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB150322", "output": "39123900"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B020322", "output": "39123900"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B020322", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LG120422", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB150322", "output": "39123900"}, {"text_input": "What is the hs code for MIAMI SCG(S) (BHN BAKU KOSMETIK) COA 22040855", "output": "34023990"}, {"text_input": "What is the hs code for BOTTLE TERGITOL 4 XLT4 SUPPLEMENT 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH SLCM0515", "output": "38210090"}, {"text_input": "What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2013578", "output": "38210090"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA GDN", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA GCH", "output": "38249999"}, {"text_input": "What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA SKM", "output": "38249999"}, {"text_input": "What is the hs code for PROTESIL KR-30(BHN BAKU KOSMETIK) COA GDC", "output": "38249999"}, {"text_input": "What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 199244", "output": "29332900"}, {"text_input": "What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 199625", "output": "29332900"}, {"text_input": "What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 199220", "output": "29332900"}, {"text_input": "What is the hs code for CATECHINS TEAVIGO 4 KG (BHN BAKU KOSMETIK) COA 203021", "output": "21012020"}, {"text_input": "What is the hs code for CATECHINS TEAVIGO 1 KG (BHN BAKU KOSMETIK) COA 203021", "output": "21012020"}, {"text_input": "What is the hs code for CONFECTIONERY INK CI-28827 WHITE (BHN BAKU PEWARNA TABLET) COA TKL61838, SAMPLE NO COMMERCIAL..", "output": "32061910"}, {"text_input": "What is the hs code for SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 22B0024800", "output": "13021950"}, {"text_input": "What is the hs code for VALERIAN DRY HYDR. EXTR. (BAHAN BAKU SUPLEMEN) COA 21B0128800", "output": "13021990"}, {"text_input": "What is the hs code for SILYMARIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 21B0131900", "output": "13021950"}, {"text_input": "What is the hs code for KETOPROFEN (BHN BAKU OBAT) COA 199331", "output": "29183000"}, {"text_input": "What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 203173", "output": "38249999"}, {"text_input": "What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) COA 203271", "output": "38249999"}, {"text_input": "What is the hs code for KSP-100 (10KG) )BHN BAKU KOSMETIK) COA 203918", "output": "38249999"}, {"text_input": "What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) COA 203271", "output": "38249999"}, {"text_input": "What is the hs code for KSG-710 (16KG) BHN BAKU KOSMETIK) COA 112480", "output": "38249999"}, {"text_input": "What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 203173", "output": "38249999"}, {"text_input": "What is the hs code for NEO EXTRAPONE (R) LEMON (BHN BAKU KOSMETIK) COA 10300017", "output": "13021950"}, {"text_input": "What is the hs code for EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300021", "output": "13021950"}, {"text_input": "What is the hs code for ACTIPONE(R) WHITE TEA GW (BHN BAKU KOSMETIK) COA 10300050", "output": "13021950"}, {"text_input": "What is the hs code for EXTRAPONE (R) WILD BERRIES(BHN BAKU KOSMETIK) COA 10300035", "output": "13021950"}, {"text_input": "What is the hs code for OPADRY AMB MAROON (BHN BAKU PEWARNA TABLET) COA SH656804", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH656545", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH656171", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH652415", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II ORANGE (BHN BAKU PEWARNA TABLET) COA SH656807", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH656329", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY KB WHITE (BHN BAKU PEWARNA TABLET) COA SH656175", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH656330", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH656567", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH656835", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II BROWN (BHN BAKU PEWARNA TABLET) COA SH656820", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH656842", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH656832", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE YELLOW (BHN BAKU PEWARNA TABLET) COA SH656816", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH652415", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB II ORANGE (BHN BAKU PEWARNA TABLET) COA SH656836", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II WHITE (BHN BAKU PEWARNA TABLET) COA SH657554", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB WHITE (BHN BAKU PEWARNA TABLET) COA SH656182", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH657562", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II YELLOW (BHN BAKU PEWARNA TABLET) COA SH657555", "output": "38249999"}, {"text_input": "What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000078886", "output": "29309090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-011732", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-021781", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-021421", "output": "13021950"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SENAS (BHN BAKU KOSMETIK) COA NASB-01112", "output": "21022090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 011922", "output": "28331900"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK), COA HMVBD-022322,HMVBD-030742", "output": "13021950"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-031691", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK)COA GSC-K-020971", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-182822", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 012022", "output": "28331900"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 042122", "output": "28331900"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK), COA HMVBD-030742", "output": "13021950"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND OLIGO-HA 1PCT SOLUTION (BHN BAKU KOSMETIK) COA HCPP-021842", "output": "39139090"}, {"text_input": "What is the hs code for SORBITOL SOLUTION 70 PCT CRYSTALLINE (BHN BAKU KOSMETIK) COA 2223P053", "output": "29054400"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180L7R001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180L4S022", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180K34002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E5 PREMIUM LV HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D011LBML01", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E5 PREMIUM LV HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D011LBKL03", "output": "39123900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT22020066", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN PREMIX 103047 - D (BHN BAKU MAKANAN) COA XW92204005", "output": "21069059"}, {"text_input": "What is the hs code for MINERAL PREMIX FOR MILK POWDER (BHN BAKU MAKANAN) COA XW92204006", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92203292", "output": "21069059"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12111039", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12111039", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12111039", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT21120005", "output": "29362900"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPPLEMEN) COA TL02111923", "output": "29362700"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT22020066", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT22010004", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT22010004", "output": "29362800"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ20210551", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU SUPPLEMEN) COA UT22010219", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU SUPPLEMEN) COA UT22010219", "output": "29362100"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB21050065", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU SUPPLEMEN) COA UT22010219", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02102013", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN 5-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2107088,UEB2107089", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN 5-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2107089,UEB2105056", "output": "29362300"}, {"text_input": "What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92203249,XW92203250", "output": "21069059"}, {"text_input": "What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92204160", "output": "29420000"}, {"text_input": "What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02106807,TL02109811", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.0 MIU/G(TOCO) (BHN BAKU KOSMETIK) COA UT21030210", "output": "29362100"}, {"text_input": "What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92204160", "output": "29420000"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT21070076", "output": "29362800"}, {"text_input": "What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0063101", "output": "38249999"}, {"text_input": "What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0063344", "output": "38249999"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 220691", "output": "38249999"}, {"text_input": "What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 220943", "output": "38249999"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 220691", "output": "38249999"}, {"text_input": "What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 220943", "output": "38249999"}, {"text_input": "What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 220495", "output": "13021990"}, {"text_input": "What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 220332,220991", "output": "13021990"}, {"text_input": "What is the hs code for ROSE HIPS LIQUID B (BHN BAKU KOSMETIK) COA 220534", "output": "13021990"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 220564", "output": "13021990"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 220564", "output": "13021990"}, {"text_input": "What is the hs code for HIBAMATA LIQUID (BHN BAKU KOSMETIK) COA 212385", "output": "13021990"}, {"text_input": "What is the hs code for COMFREY LIQUID B (BHN BAKU KOSMETIK) COA 212834", "output": "13021990"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 220691", "output": "38249999"}, {"text_input": "What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 220704", "output": "13021990"}, {"text_input": "What is the hs code for AP GRIT G 40-60 (BHN BAKU KOSMETIK) COA 220103", "output": "38249999"}, {"text_input": "What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 220665", "output": "29329900"}, {"text_input": "What is the hs code for MIRANOL ULTRA C-32 MB 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP204230MB", "output": "34024990"}, {"text_input": "What is the hs code for MIRANOL ULTRA C-32 MB 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP204230MB", "output": "34024990"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG220318,MCVG220325", "output": "29362700"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH656982", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH659121", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH657259", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II RED (BHN BAKU PEWARNA TABLET) COA SH659124", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE II BROWN (BHN BAKU PEWARNA TABLET) COA SH657552", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY AMB II RED (BHN BAKU PEWARNA TABLET) COA SH657566", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY AMB II PURPLE (BHN BAKU PEWARNA TABLET) COA SH657567", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY WHITE (BHN BAKU PEWARNA TABLET) COA SH657652", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH656981", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH656982", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH656806", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH659123", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH659123", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH659127", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH659122", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH656806", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH656806", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II CLEAR (BHN BAKU PEWARNA TABLET) COA SH659127", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY CLEAR (BHN BAKU PEWARNA TABLET) COA SH658106", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA SH649540", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA SH659121", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY 200 WHITE (BHN BAKU PEWARNA TABLET) COA SH659122", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE II WHITE (BHN BAKU PEWARNA TABLET) COA SH656806", "output": "39061090"}, {"text_input": "What is the hs code for PANTOPRAZOLE SODIUM (STERILE) BAHAN BAKU OBAT SI/PPZ/00230222", "output": "29333990"}, {"text_input": "What is the hs code for ESOMEPRAZOLE SODIUM STERILE (BAHAN BAKU OBAT) COA SI/EPZ/00010222", "output": "29333990"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113906", "output": "29339990"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M113906", "output": "29339990"}, {"text_input": "What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-0480422,S-A-0490422", "output": "29334910"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 FOOD OIL (BHN BAKU MAKANAN) COA TS00019390", "output": "29362500"}, {"text_input": "What is the hs code for BICAR FOOD 27/50 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP11222,MTP11122", "output": "28363000"}, {"text_input": "What is the hs code for DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2204001", "output": "28352510"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP10322", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP07122", "output": "28363000"}, {"text_input": "What is the hs code for OPACODE WHITE (BHN BAKU PEWARNA TABLET) COA WP856284", "output": "32151990"}, {"text_input": "What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK) COA 8924100", "output": "38249999"}, {"text_input": "What is the hs code for CITICOLINE SODIUM (BHN BAKU OBAT) COA 220202", "output": "29349990"}, {"text_input": "What is the hs code for RANITIDINE HCL USP (BAHAN BAKU OBAT) COA RH 258 04 22", "output": "29321900"}, {"text_input": "What is the hs code for METHYLCOBALAMINE JP (BAHAN BAKU OBAT) COA SLL/MC/0322009,SLL/MC/0222007", "output": "29362600"}, {"text_input": "What is the hs code for DOCUSATE SODIUM (BHN BAKU OBAT) COA SD1061029", "output": "29171900"}, {"text_input": "What is the hs code for ISDN 25PCT-LACTOSE 450 75PCT DILUTED (BHN BAKU OBAT) COA 2204853", "output": "29329900"}, {"text_input": "What is the hs code for NG 5 PCT-1,2 PROPYLENGLYCOLE 95PCT (BAHAN BAKU OBAT) COA 2204752", "output": "30039000"}, {"text_input": "What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 2209970478", "output": "29362600"}, {"text_input": "What is the hs code for FERROUS GLUCONATE, POWDER, USP 43 (BHN BAKU SUPLEMEN) COA 3114276", "output": "29181600"}, {"text_input": "What is the hs code for FERROUS GLUCONATE, POWDER, USP 43 (BHN BAKU SUPLEMEN) COA 3114276", "output": "29181600"}, {"text_input": "What is the hs code for MAGNESIUM OXIDE, LIGHT, POWDER, BP 2021 (BHN BAKU SUPLEMEN) COA 1100366-4", "output": "25199010"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1341759,2004477", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1334236", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1256652", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKIROORGANISME) BATCH 2011054", "output": "38210090"}, {"text_input": "What is the hs code for PAIL BACTO AGAR 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1327553", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR NOBLE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1223649", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MR-VP MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1263575", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1040332", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1133939", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1061373", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0315100", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1229930", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SIMMONS CITRATE AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2011054", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM WITH MUG 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1356308", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1133939", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500 G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1349644", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1312204", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2103597", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN...(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1333996,1348587,2034944", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1350021", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1176317,2028749", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2011124", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2040220", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1215037", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2038654", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1236408", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1319633", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1188089", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1201174", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1363655", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1264670", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1349644", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B04D195M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1236408", "output": "38210090"}, {"text_input": "What is the hs code for MICROBIOM3D TOP BOARD FOR SPOT COOLER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)", "output": "38210090"}, {"text_input": "What is the hs code for PLATE STERILE RODAC... (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1310563,1316464,1340967", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2053895", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2038183", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2060056", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2047738", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1341761", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1327368", "output": "38210090"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100 MESH(BHN BAKU SUPLEMEN) COA 1AX2205508", "output": "29181400"}, {"text_input": "What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2022021502", "output": "21012020"}, {"text_input": "What is the hs code for FD&C YELLOW 5/TARTRAZINE AL... (BHN BAKU PEWARNA TABLET) COA WP852899:BB4036", "output": "32151990"}, {"text_input": "What is the hs code for ERYTHROSINE AL 38PCT-42PCT... (BHN BAKU PEWARNA TABLET) COA WP844565:1", "output": "32151990"}, {"text_input": "What is the hs code for D&C YELLOW 10 AL 15PCT - 20PCT... (BHN BAKU PEWARNA TABLET) COA WP853299:BB4498", "output": "32151990"}, {"text_input": "What is the hs code for ERYTHROSINE AL 38PCT-42PCT... (BHN BAKU PEWARNA TABLET) COA WP844565:1", "output": "32151990"}, {"text_input": "What is the hs code for D&C YELLOW 10 AL 15PCT - 20PCT... (BHN BAKU PEWARNA TABLET) COA WP844760:BB0003", "output": "32151990"}, {"text_input": "What is the hs code for FD&C BLUE 2/INDIGO CARMINE AL... (BHN BAKU PEWARNA TABLET) COA WP847582:BB1664", "output": "32151990"}, {"text_input": "What is the hs code for FD&C YELLOW 6/SUNSET YELLOW... (BHN BAKU PEWARNA TABLET) COA WP848266:BB2369", "output": "32151990"}, {"text_input": "What is the hs code for ERYTHROSINE AL 38PCT-42PCT... (BHN BAKU PEWARNA TABLET) COA WP844563:1", "output": "32151990"}, {"text_input": "What is the hs code for FD&C YELLOW 5/TARTRAZINE AL... (BHN BAKU PEWARNA TABLET) COA WP852915:BB4112", "output": "32151990"}, {"text_input": "What is the hs code for FD&C RED 40/ALLURA RED AC AL... (BHN BAKU PEWARNA TABLET) COA WP852270:BB3528", "output": "32151990"}, {"text_input": "What is the hs code for OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA GA708010", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA GA708009", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE WHITE (BHN BAKU PEWARNA TABLET) COA GA707632", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY II GREEN (BHN BAKU PEWARNA TABLET) COA GA708009", "output": "38249999"}, {"text_input": "What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP08822", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP10422", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP03722", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP08322", "output": "28363000"}, {"text_input": "What is the hs code for STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN546116", "output": "35051010"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA064226,ROA063223,ROA064226,ROA...", "output": "28363000"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA065224,ROA064226,ROA064223", "output": "28363000"}, {"text_input": "What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340368, B340369,B340370", "output": "29419000"}, {"text_input": "What is the hs code for KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 211021", "output": "25070000"}, {"text_input": "What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU UTK PAKAN TERNAK) COA 202200065", "output": "28183000"}, {"text_input": "What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 2209970478,2209980571", "output": "29362600"}, {"text_input": "What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-220422", "output": "29061300"}, {"text_input": "What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-220422", "output": "29061300"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT22020066", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN PREMIX 103093 - A (BHN BAKU MAKANAN) COA XW92204008", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN PREMIX FOR MILK POWDER (BHN BAKU MAKANAN) COA XW92204007", "output": "21069059"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12111039,OP12112022", "output": "29362900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11220302", "output": "29362500"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT22010019", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT22010002", "output": "29362600"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT22010019", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT22010002", "output": "29362600"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPPLEMEN) COA UQ11213382", "output": "29362200"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT22010002", "output": "29362600"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT21120023", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ20110510", "output": "29362300"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ11213700", "output": "29362500"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ11213700", "output": "29362500"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT21100058", "output": "32041800"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT21120069", "output": "32041800"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02111128", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040009", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040009", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000201737", "output": "29362900"}, {"text_input": "What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0038741", "output": "29362500"}, {"text_input": "What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00748404", "output": "29420000"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02112145", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0922020007", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040020", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060086", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050930,0321050931", "output": "29420000"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT21100232", "output": "29362400"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21110243", "output": "29362400"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21110243", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT21120005", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT21110243", "output": "29362400"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12112022", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12112022", "output": "29362900"}, {"text_input": "What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02103044", "output": "29362700"}, {"text_input": "What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0922020007", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060001", "output": "29420000"}, {"text_input": "What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02102024,UE02102026", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22030042,UT22030043", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS PH (BHN BAKU SUPPLEMEN) COA UT21120003", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT22031157 S/D UT22031161", "output": "29362100"}, {"text_input": "What is the hs code for OPADRY AMB BROWN (BHN BAKU PEWARNA TABLET) COA GA708010", "output": "38249999"}, {"text_input": "What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET) COA DT730060", "output": "32151990"}, {"text_input": "What is the hs code for OPALUX RED (BHN BAKU PEWARNA TABLET) COA DT730061", "output": "32151990"}, {"text_input": "What is the hs code for OPACODE BLACK (BHN BAKU PEWARNA TABLET) COA DT730062", "output": "32151990"}, {"text_input": "What is the hs code for OPATINT RED (BHN BAKU PEWARNA TABLET) COA DT730063", "output": "32151990"}, {"text_input": "What is the hs code for XANTHAN FFPC (BHN BAKU OBAT) COA 83676701", "output": "39139090"}, {"text_input": "What is the hs code for PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) COA PH06150622,PH09160122", "output": "38249999"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2103661117", "output": "29372900"}, {"text_input": "What is the hs code for FRUITFLOW II SD (BHN BAKU SUPPLEMEN) COA 21T0102200", "output": "29362900"}, {"text_input": "What is the hs code for DEXCHLORPHENIRAMINE MALEATE USP (BHN BAKU OBAT) COA SLL/DC/0522011", "output": "29333990"}, {"text_input": "What is the hs code for AQUACOAT CPD-30 CELLULOSE... (BHN BAKU PEWARNA TABLET) COA 2174048104", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E15 PREMIUM LV... (BHN BAKU PEWARNA TABLET) COA D011LCGL01", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV... (BHN BAKU PEWARNA TABLET) COA D011L9UL01", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR... (BHN BAKU PEWARNA TABLET) COA D180L96001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV... (BHN BAKU PEWARNA TABLET) COA D011L9LL03", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E15 PREMIUM LV... (BHN BAKU PEWARNA TABLET) COA D011K7KL01", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM CR... (BHN BAKU PEWARNA TABLET) COA D180K61001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL A15 PREMIUM LV... (BHN BAKU PEWARNA TABLET) COA D180L7E022", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100 PREMIUM LVCR... (BHN BAKU PEWARNA TABLET) COA D180L3B021", "output": "39123900"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 10 PREMIUM... (BHN BAKU PEWARNA TABLET) COA D184L7P021", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E4M PREMIUM... (BHN BAKU PEWARNA TABLET) COA D180LAT021", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR... (BHN BAKU PEWARNA TABLET) COA D180L52021", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E4M PREMIUM... (BHN BAKU PEWARNA TABLET) COA D180LAT021", "output": "39123900"}, {"text_input": "What is the hs code for PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 101821/007264", "output": "38249999"}, {"text_input": "What is the hs code for FENTACARE 2231 EF 25KG PAPER BOX (BHN BAKU KOSMETIK ) COA ZH22D2201,ZH22E1003", "output": "34029019"}, {"text_input": "What is the hs code for MONOPROPYLENE GLYCOL (BHN BAKU KOSMETIK) COA PG(S)220424", "output": "29053200"}, {"text_input": "What is the hs code for PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3280873", "output": "33029000"}, {"text_input": "What is the hs code for PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3302358", "output": "33029000"}, {"text_input": "What is the hs code for HPA82 PURE SENSITIVE (BHN BAKU KOSMETIK) COA 3302683", "output": "33029000"}, {"text_input": "What is the hs code for PROPYPHENAZONE (CEP) (BHN BAKU OBAT UNTUK PEWARNA TABLET) COA 2111209", "output": "29331100"}, {"text_input": "What is the hs code for HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2510222", "output": "29397900"}, {"text_input": "What is the hs code for VC CALCIUM ASCORBATE DC (BHN BAKU SUPPLEMEN) COA HPT2202005", "output": "29362700"}, {"text_input": "What is the hs code for ASTABIO AR10 (ASTAXANTHIN OIL 10PCT) (BHN BAKU OBAT) COA 2108041,2205101", "output": "32030010"}, {"text_input": "What is the hs code for CINNARIZINE (BHN BAKU OBAT) COA 022C011", "output": "29335990"}, {"text_input": "What is the hs code for GLIBENCLAMIDE (BHN BAKU OBAT) COA 22GLB020", "output": "29359000"}, {"text_input": "What is the hs code for NYSTATIN POWDER ROW GRADE (BHN BAKU OBAT) COA C131972", "output": "29419000"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20220503", "output": "17029019"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 220211", "output": "13021990"}, {"text_input": "What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 211115", "output": "13021990"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 220402", "output": "13021990"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 220211", "output": "13021990"}, {"text_input": "What is the hs code for CENTELLA ASIATICA EXTRACT 95PCT ( BHN BAKU KOSMETIK) COA GKP 22019 EOU", "output": "13021950"}, {"text_input": "What is the hs code for AMITOSE R (BHN BAKU KOSMETIK) COA GCI", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA GCH", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA GEA", "output": "38249999"}, {"text_input": "What is the hs code for SODIUM ASCORBATE 99PCT TG (BHN BAKU SUPPLEMEN) COA WB22030580,WB22030584", "output": "29362700"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB21120254", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB21120254", "output": "29362800"}, {"text_input": "What is the hs code for ZINC SULFATE 1-HYDRATE, POWDER,USP43 (BHN BAKU OBAT) COA 3111759", "output": "28332920"}, {"text_input": "What is the hs code for FERROUS SULFATE DRIED,POWDER,USP43 (BHN BAKU OBAT) COA 3110345", "output": "28332920"}, {"text_input": "What is the hs code for SODIUM SELENITE IN CARRIER (BHN BAKU SUPPLEMEN) COA 3106230", "output": "28429010"}, {"text_input": "What is the hs code for ZINC OXIDE, POWDER, PH.EUR.10ED (BHN BAKU SUPPLEMEN) COA 3112821", "output": "28170010"}, {"text_input": "What is the hs code for POTASSIUM L-ASPARTATE 0,5-HYDRATE (BHN BAKU OBAT) COA 3033229-2", "output": "29224900"}, {"text_input": "What is the hs code for BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 22S0112800", "output": "13021990"}, {"text_input": "What is the hs code for BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 22S0112800", "output": "13021990"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131... (BHN BAKU PEWARNA TABLET) COA GA707093", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03Z59026 CLEAR (BHN BAKU PEWARNA TABLET) COA GA707094", "output": "38249999"}, {"text_input": "What is the hs code for 8552-507-K05 LIPEX (R) 512 VEGETABLE OIL (BHN BAKU KOSMETIK) COA 0002518009", "output": "15162049"}, {"text_input": "What is the hs code for 8552-507-K05 LIPEX (R) 512 VEGETABLE OIL (BHN BAKU KOSMETIK) COA 0002518009", "output": "15162049"}, {"text_input": "What is the hs code for 8552-507-K05 LIPEX (R) 512 VEGETABLE OIL (BHN BAKU KOSMETIK) COA 0002518009", "output": "15162049"}, {"text_input": "What is the hs code for IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S766/21/A", "output": "38029090"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2027288", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1063138", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1344136", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2060591", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0219127", "output": "38210090"}, {"text_input": "What is the hs code for VIAL E COLL O ANTISERUM O157 SEROL TEST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0094884", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2047688", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOBACILLI AGAR AOAC 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2032081", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1229938,1243897", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2047688", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B04E067M", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER DMACA INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01E025M", "output": "38210090"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN546460", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN546459", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN546091", "output": "35051010"}, {"text_input": "What is the hs code for GLICLAZIDE (BHN BAKU OBAT) COA 2240000894", "output": "29359000"}, {"text_input": "What is the hs code for GLICLAZIDE (BHN BAKU OBAT) COA 2240001150", "output": "29359000"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G630022... (BHN BAKU PEWARNA TABLET) COA SH658672", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY II WHITE (BHN BAKU PEWARNA TABLET) COA GA706793", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 940 CAN 10 KG (BHN BAKU KOSMETIK) COA 1573139", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 720 CAN 10 KG (BHN BAKU KOSMETIK) COA 1581472", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 940 CAN 10 KG (BHN BAKU KOSMETIK) COA 1573139", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA PA 40 CAN 10 KG (BHN BAKU KOSMETIK) COA 1579165", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 830 CAN 10 KG (BHN BAKU KOSMETIK) COA 1581540", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) COA 1579348", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) COA 1580987", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) COA 1581749", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) COA 1581949", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 720 CAN 10 KG (BHN BAKU KOSMETIK) COA 1581474", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) COA 1578645", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) COA 1580173", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) COA 1580173", "output": "38249999"}, {"text_input": "What is the hs code for FENTACARE 2231 EF 25KG PAPER BOX (BHN BAKU KOSMETIK ) COA ZH22E1003,ZH22E1806", "output": "34029019"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-032422", "output": "38249999"}, {"text_input": "What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ20217003", "output": "29420000"}, {"text_input": "What is the hs code for SYN(R)-AKE (BHN BAKU KOSMETIK) COA UE02204005", "output": "29420000"}, {"text_input": "What is the hs code for METHOCEL (R) ID34538P (BHN BAKU PEWARNA TABLET) COA D011LCRL01", "output": "39123900"}, {"text_input": "What is the hs code for RIVAROXABAN EP (BHN BAKU OBAT) COA BAN500122,BAN500222", "output": "29349990"}, {"text_input": "What is the hs code for CYPROHEPTADINE HCL (BHN BAKU OBAT) COA CYP/04221009", "output": "29333990"}, {"text_input": "What is the hs code for MIRASIL DM5 L (BHN BAKU KOSMETIK) COA 2216FH3415", "output": "39100090"}, {"text_input": "What is the hs code for MIRASIL D-DML LV A2 (BHN BAKU KOSMETIK) COA 2215HK03XA", "output": "39100090"}, {"text_input": "What is the hs code for MIRASIL DM5 L (BHN BAKU KOSMETIK) COA 2216FH3415", "output": "39100090"}, {"text_input": "What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052217", "output": "47063000"}, {"text_input": "What is the hs code for SODIUM CARBONATE IPH (BHN BAKU SUPPLEMEN) COA DOC1222221", "output": "28363000"}, {"text_input": "What is the hs code for PERMETHRIN (PHARMA GRADE) (BHN BAKU OBAT) COA 225046004,22504605,225046006,225046006", "output": "29163990"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 10760522,10770522,10780522,10930522,...", "output": "29359000"}, {"text_input": "What is the hs code for TRIMETHOPRIM MICRONISED BP (BHN BAKU OBAT) COA TMP22050351,TMP22050354,TMP22040311", "output": "29335990"}, {"text_input": "What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334819,B334820,B334822,B334824,B334825,B334828", "output": "29419000"}, {"text_input": "What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052217", "output": "47063000"}, {"text_input": "What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 19-10-21,29-09-21,30-09-21, 20-10-21", "output": "38029090"}, {"text_input": "What is the hs code for COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-2110148", "output": "29146200"}, {"text_input": "What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 221092", "output": "38249999"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 221256", "output": "38249999"}, {"text_input": "What is the hs code for DOKUDAMI LIQUID B (BHN BAKU KOSMETIK) COA 221082", "output": "13021990"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 221034", "output": "13021990"}, {"text_input": "What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 220991,221275", "output": "13021990"}, {"text_input": "What is the hs code for ALPINIAWHITE (BHN BAKU KOSMETIK) COA 220567", "output": "13021990"}, {"text_input": "What is the hs code for EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300059 S/D 10300061", "output": "13021950"}, {"text_input": "What is the hs code for DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2204001", "output": "28352510"}, {"text_input": "What is the hs code for VITAMIN PREMIX FOR FERMENTED MILK (BHN BAKU MAKANAN) COA XW92205018", "output": "21069059"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT22020066", "output": "29362800"}, {"text_input": "What is the hs code for B-CAROTENE 1PCT CWS/M (BHN BAKU MAKANAN) COA UT21120038", "output": "32041800"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02111132", "output": "29362400"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU SUPPLEMEN) COA UQ10913316", "output": "29362200"}, {"text_input": "What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92204312", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (POST BORDER) COA UT22010002", "output": "29362600"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02111132", "output": "29362400"}, {"text_input": "What is the hs code for NIACINAMIDE PC (POST BORDER) COA 0000203938,0000203940", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000203940", "output": "29362900"}, {"text_input": "What is the hs code for DL-PANTHENOL 50 L (BHN BAKU KOSMETIK) COA TL02108642", "output": "29362400"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000203940,0000203941", "output": "29362900"}, {"text_input": "What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92204461", "output": "29420000"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21110403", "output": "29362800"}, {"text_input": "What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS3851121", "output": "29420000"}, {"text_input": "What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC211108", "output": "29420000"}, {"text_input": "What is the hs code for SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202205-015", "output": "35040000"}, {"text_input": "What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK) COA LDC19222T", "output": "27101990"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20220509", "output": "17029019"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977 WHITE(BHN BAKU PEWARNA TABLET) COA GA709224", "output": "38249999"}, {"text_input": "What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769011334N", "output": "29224900"}, {"text_input": "What is the hs code for SWT-7 TM H (BHN BAKU KOSMETIK) COA 2207403", "output": "38249999"}, {"text_input": "What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 2115314", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2125203", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2133701", "output": "38249999"}, {"text_input": "What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 702019449N", "output": "38249999"}, {"text_input": "What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019447N", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785019980N", "output": "38249999"}, {"text_input": "What is the hs code for DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834019745M", "output": "29224900"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2133701", "output": "38249999"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019877N", "output": "38249999"}, {"text_input": "What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) COA 2103116", "output": "38249999"}, {"text_input": "What is the hs code for PROGELINE TM (BHN BAKU KOSMETIK) COA 820059881M", "output": "29224900"}, {"text_input": "What is the hs code for ROSALITY TM (BHN BAKU KOSMETIK) COA 2116601", "output": "38249999"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122101486", "output": "28363000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122101486", "output": "28363000"}, {"text_input": "What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPPLEMEN) COA WB22010760", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPPLEMEN) COA WB22010760", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPPLEMEN) COA WB22010760", "output": "29362800"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT GRANULATION (BHN BAKU SUPPLEMEN) COA WB21109021", "output": "29362700"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20220201", "output": "29362800"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20220201", "output": "29362800"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT GRANULATION (BHN BAKU SUPPLEMEN) COA WB21109021", "output": "29362700"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22010616", "output": "29362100"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2088865", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2012153,...", "output": "38210090"}, {"text_input": "What is the hs code for KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2063446", "output": "38210090"}, {"text_input": "What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2049503", "output": "38210090"}, {"text_input": "What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2113510", "output": "38210090"}, {"text_input": "What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 211059200", "output": "38210090"}, {"text_input": "What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2055028", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2104107", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2104107", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1357822", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1223658", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2103597", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1236551", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2034944", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1103620", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1132546", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2004477", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC/NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2046145,...", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1159790", "output": "38210090"}, {"text_input": "What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2049503", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2115964", "output": "38210090"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG220429", "output": "29362700"}, {"text_input": "What is the hs code for L GLUTATHIONE REDUCED (BHN BAKU KOSMETIK) COA B220162", "output": "29309090"}, {"text_input": "What is the hs code for CO ENZYME Q10 (BHN BAKU KOSMETIK) COA 51-2205129", "output": "29146200"}, {"text_input": "What is the hs code for VC ASCORBIC ACID REGULAR (BHN BAKU MAKANAN) COA HPB2204045", "output": "29362700"}, {"text_input": "What is the hs code for SAVONOL 16 (BAHAN BAKU KOSMETIK) COA LDC20622T", "output": "27101990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-042001,021152", "output": "29224900"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-060821", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-021421", "output": "13021950"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-182822", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE 1PCT SOLUTION (BHN BAKU KOSMETIK) COA HASC-402921,070252", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 011922,051222", "output": "28331900"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-030742", "output": "13021950"}, {"text_input": "What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2104978", "output": "38210090"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2034559", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 2068623,2068628,...", "output": "38210090"}, {"text_input": "What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2067406", "output": "38210090"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2034559", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 2046133,2062781,...", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2066217", "output": "38210090"}, {"text_input": "What is the hs code for VIAL ISOVITALEX ENRICHMENT 10ML 5 EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2060136", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0128385", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SHIGELLA ANTIS POLY C1 LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2039015", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SHIGELLA ANTIS POLY D LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1084825", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0219127", "output": "38210090"}, {"text_input": "What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2067406", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 1175752", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1279394", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1243456", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1349828", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 2053886", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LETHEEN BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1229938", "output": "38210090"}, {"text_input": "What is the hs code for AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 157743", "output": "15159011"}, {"text_input": "What is the hs code for ARGAN OIL COLD PRESSED ORGANIC (BHN BAKU KOSMETIK) COA 159541", "output": "29362500"}, {"text_input": "What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 220495", "output": "13021990"}, {"text_input": "What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102202004", "output": "28183000"}, {"text_input": "What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBNE220260", "output": "29221990"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ20113505", "output": "29362500"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22010021", "output": "29362400"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ11212414", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ11212414,UQ11212434", "output": "29362200"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT21120005", "output": "29362900"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02111132", "output": "29362400"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20220101", "output": "29362800"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20220101", "output": "29362800"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20220101", "output": "29362800"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20220101", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT22010019", "output": "29362800"}, {"text_input": "What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000201738", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12112022,OP12202018", "output": "29362900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11220304", "output": "29362500"}, {"text_input": "What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE02202001", "output": "29362100"}, {"text_input": "What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000201738", "output": "29362900"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02201004", "output": "29362400"}, {"text_input": "What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00756456", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0922020007,0922020008", "output": "29420000"}, {"text_input": "What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0040349", "output": "29362500"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02201004", "output": "29362400"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000203943,0000203944", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040020", "output": "29420000"}, {"text_input": "What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02103044,UE02103050,UE02103051", "output": "29362700"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02106017", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050932,0321050933", "output": "29420000"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT22030006", "output": "32030010"}, {"text_input": "What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22020003", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT22020060", "output": "29362100"}, {"text_input": "What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22020003", "output": "29362500"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS PH (BHN BAKU SUPPLEMEN) COA UT21120003", "output": "29362900"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPPLEMEN) COA UT22020009", "output": "32041800"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT21110032", "output": "32030010"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT22030006", "output": "32030010"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT22030006", "output": "32030010"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02202020", "output": "32041800"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPPLEMEN) COA UT22030035", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22030043", "output": "29362100"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT21080083,UT21090085", "output": "29362800"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP10322", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP10322", "output": "28363000"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM REGULAR GRADE (BHN BAKU OBAT) COA 2204450,2205674 S/D 2205676", "output": "29331900"}, {"text_input": "What is the hs code for LABRAFIL M 1944 CS BF (BHN BAKU OBAT) COA 189637", "output": "28399000"}, {"text_input": "What is the hs code for LACTOFIL MOIST (BHN BAKU OBAT) COA Z13360024", "output": "28399000"}, {"text_input": "What is the hs code for CAPSULAC (R) 60 (BHN BAKU OBAT) COA L100411022", "output": "17021100"}, {"text_input": "What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103860722", "output": "17021100"}, {"text_input": "What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104311722", "output": "17021100"}, {"text_input": "What is the hs code for FLOWLAC (R) 100H (BHN BAKU OBAT) COA L105812121", "output": "17021100"}, {"text_input": "What is the hs code for SORBOLAC (R) 400 (BHN BAKU OBAT) COA L103844721", "output": "17021100"}, {"text_input": "What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK) COA 2206EF7112", "output": "29224900"}, {"text_input": "What is the hs code for OMEPRAZOLE PELLETS -8,5PCT (BHN BAKU OBAT) COA OP8.5/121605121", "output": "30039000"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20220525", "output": "17029019"}, {"text_input": "What is the hs code for HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2510322", "output": "29397900"}, {"text_input": "What is the hs code for SODIUM ACID PYROPHOSPHATE FOOD GRADE (BHN BAKU MAKANAN) COA 0922010", "output": "28353990"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT KIWI CSB (BHN BAKU OBAT) COA 02/19GAAK", "output": "28399000"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT KIWI ECH (BHN BAKU OBAT) COA 02/19GAAK, SAMPLE NO COMMERCIAL VALUE", "output": "28399000"}, {"text_input": "What is the hs code for EMULIUM MELLIFERA MB (BHN BAKU OBAT) COA 189793", "output": "28399000"}, {"text_input": "What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU OBAT) COA 187350", "output": "28399000"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU OBAT) COA 01/22GL4", "output": "28399000"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU OBAT) COA 01/22GL4, SAMPLE NO COMMERCIAL VALUE", "output": "28399000"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT KIWI CSB (BHN BAKU OBAT) COA 02/19GAAK", "output": "28399000"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT KIWI ECH (BHN BAKU OBAT) COA 02/19GAAK, SAMPLE NO COMMERCIAL VALUE", "output": "28399000"}, {"text_input": "What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) COA 220429092", "output": "38249999"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA094223,ROA092224,ROA091227", "output": "28363000"}, {"text_input": "What is the hs code for METHOCEL (R) ID2865 (BHN BAKU PEWARNA TABLET) COA D180M2P001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL (R) ID2865 (BHN BAKU PEWARNA TABLET) COA D180M2M002", "output": "39123900"}, {"text_input": "What is the hs code for GRANULAC 200 H (BHN BAKU OBAT) COA L105711822", "output": "17021100"}, {"text_input": "What is the hs code for GRANULAC 200 H (BHN BAKU OBAT) COA L105711822", "output": "17021100"}, {"text_input": "What is the hs code for POLYOX (R) WATER SOLUBLERESINS ID166227... (BHN BAKU PEWARNA TABLET) COA 2534163994", "output": "39123900"}, {"text_input": "What is the hs code for LORATADINE USP (BHN BAKU OBAT) COA BLRD/2205013-M", "output": "29333990"}, {"text_input": "What is the hs code for BETAMETHASONE VALERATE USP 43 (BHN BAKU OBAT) COA APL/BV/01112/E-22", "output": "29372200"}, {"text_input": "What is the hs code for BETAMETHASONE VALERATE USP 43 (BHN BAKU OBAT) COA APL/BV/01112/E-22", "output": "29372200"}, {"text_input": "What is the hs code for KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0020122", "output": "29339990"}, {"text_input": "What is the hs code for SODIUM ACETATE ANHYDROUS POWDER, USP 43 (BHN BAKU SUPPLEMEN) COA 3109954", "output": "29152910"}, {"text_input": "What is the hs code for FERROUS SULFATE 7-HYDRATE, CRYST. (BHN BAKU MAKANAN) COA 3114122", "output": "28332920"}, {"text_input": "What is the hs code for FERROUS SULFATE 7-HYDRATE, CRYST. (BHN BAKU MAKANAN) COA 3114122", "output": "28332920"}, {"text_input": "What is the hs code for TRIMETHOPRIM MICRONISED BP (BHN BAKU OBAT) COA TMP22040311", "output": "29335990"}, {"text_input": "What is the hs code for ADSORB AFLA (BHN BAKU UNTUK PAKAN TERNAK) COA 280", "output": "25081000"}, {"text_input": "What is the hs code for BARCROFT TM 0501 AL HYD PDR (BHN BAKU SUPPLEMEN) COA 102160002", "output": "28183000"}, {"text_input": "What is the hs code for KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 21-10-21", "output": "25070000"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21100152", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21100151,UT21100152", "output": "29362900"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL02111132", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL02111132", "output": "29362400"}, {"text_input": "What is the hs code for MINERAL PREMIX MILK POWDER FOR ADULTS V2 (BHN BAKU MAKANAN) COA XW92204459", "output": "21069059"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT21100232,UT21100233", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT21100151", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040043", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040043", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P1E02QA000", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0722010011", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001643582", "output": "29420000"}, {"text_input": "What is the hs code for CEFOTAXIME SODIUM EP (BHN BAKU OBAT) COA B200800", "output": "29419000"}, {"text_input": "What is the hs code for ROSUVASTATIN CALSIUM (BHN BAKU OBAT) COA RVM0860322", "output": "29359000"}, {"text_input": "What is the hs code for BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2060378", "output": "38210090"}, {"text_input": "What is the hs code for ACARBOSE (BHN BAKU SUPPLEMEN) COA ACAP21080D,ACAP21081B", "output": "29329900"}, {"text_input": "What is the hs code for SUCRALOSE (BHN BAKU OBAT) COA 22041302", "output": "29321400"}, {"text_input": "What is the hs code for REFINED GRAPESEED OIL (BHN BAKU KOSMETIK) COA B2200126", "output": "15152919"}, {"text_input": "What is the hs code for REFINED SWEET ALMOND OIL EU PH (BHN BAKU KOSMETIK) COA B2200125", "output": "15152919"}, {"text_input": "What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2022051306", "output": "21012020"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201531,122201846", "output": "28363000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201846,122201847", "output": "28363000"}, {"text_input": "What is the hs code for SILIGEL TM (BHN BAKU KOSMETIK) COA 2210001", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785011118N", "output": "38249999"}, {"text_input": "What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) COA 2111716", "output": "38249999"}, {"text_input": "What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019729N", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785011118N", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2133701", "output": "38249999"}, {"text_input": "What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 702019449N", "output": "38249999"}, {"text_input": "What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 2127414", "output": "38249999"}, {"text_input": "What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830019919N", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785011295N", "output": "38249999"}, {"text_input": "What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029946N", "output": "13021990"}, {"text_input": "What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-003-Z", "output": "13021990"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977... (BHN BAKU PEWARNA TABLET) COA SH660275", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977... (BHN BAKU PEWARNA TABLET) COA SH660275", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359... (BHN BAKU PEWARNA TABLET) COA SH658164", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650023...(BHN BAKU PEWARNA TABLET) COA SH658094", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K14834... (BHN BAKU PEWARNA TABLET) COA SH658096", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILMCOATING SYSTEM YS-1-7040... (BHN BAKU PEWARNA TABLET) COA SH657795", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLICENTERIC SYSTEM 93A62337...(BHN BAKU PEWARNA TABLET) COA SH658162", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F32371... (BHN BAKU PEWARNA TABLET) COA SH658168", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229... (BHN BAKU PEWARNA TABLET) COA SH658229", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55015 RED(BHN BAKU PEWARNA TABLET) COA SH658172", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014.. (BHN BAKU PEWARNA TABLET) COA SH658170", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K540033...(BHN BAKU PEWARNA TABLET) COA SH658174", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B22239... (BHN BAKU PEWARNA TABLET) COA SH658100", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011...(BHN BAKU PEWARNA TABLET) COA SH658171", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B82443...(BHN BAKU PEWARNA TABLET) COA SH658101", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILMCOATING SYSTEM YS-1-19025-A... (BHN BAKU PEWARNA TABLET) COA SH657560", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) COA SH659474", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-22-17515..(BHN BAKU PEWARNA TABLET) COA SH658927", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229... (BHN BAKU PEWARNA TABLET) COA SH659474", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) QX QUICK AND FLEXIBLEFILM COATING SYSTEM... (BHN BAKU PEWARNA TABLET) COA SH657556", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET) COA SH658712", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86674... (BHN BAKU PEWARNA TABLET) COA SH657564", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-22-17515..(BHN BAKU PEWARNA TABLET) COA SH658927", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A62337..(BHN BAKU PEWARNA TABLET) COA SH658960", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET) COA SH658961", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET) COA SH659788", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-22-7719...(BHN BAKU PEWARNA TABLET) COA SH657476", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650018...(BHN BAKU PEWARNA TABLET) COA SH659125", "output": "38249999"}, {"text_input": "What is the hs code for PIROXICAM (BAHAN BAKU OBAT) COA PRX2022002M", "output": "29349990"}, {"text_input": "What is the hs code for CANDESARTAN CILEXETIL (BAHAN BAKU OBAT ) COA 5668-21-148", "output": "29339990"}, {"text_input": "What is the hs code for IRBESARTAN (BAHAN BAKU OBAT ) COA C5637-21-060", "output": "29332900"}, {"text_input": "What is the hs code for MEROPENEM TRIHYDRATE WITH SODIUM CARBONATE STERILE (BHN BAKU OBAT ) COA S0820220115", "output": "30032000"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G5122.. (BHN BAKU PEWARNA TABLET) COA GA709228", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING... (BHN BAKU PEWARNA TABLET) COA GA708838", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977... (BHN BAKU PEWARNA TABLET) COA GA709224", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 02F52182... (BHN BAKU PEWARNA TABLET) COA GA709237", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O6317...(BHN BAKU PEWARNA TABLET) COA GA709233", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86512... (BHN BAKU PEWARNA TABLET) COA GA709232", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET) COA 80W86629", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G54002 PINK (BHN BAKU PEWARNA TABLET) COA GA709227", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B84893 PINK (BHN BAKU PEWARNA TABLET) COA GA708298", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B28796 WHITE (BHN BAKU PEWARNA TABLET) COA GA708889", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A... (BHN BAKU PEWARNA TABLET) COA GA708954", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G52990... (BHN BAKU PEWARNA TABLET) COA GA709236", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G54002... (BHN BAKU PEWARNA TABLET) COA GA709227", "output": "38249999"}, {"text_input": "What is the hs code for PIGMENT BLEND (R) PB-665012 BROWN (BHN BAKU PEWARNA TABLET) COA GA709225", "output": "32151990"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G66945... (BHN BAKU PEWARNA TABLET) COA GA709226", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G52696... (BHN BAKU PEWARNA TABLET) COA GA709131", "output": "38249999"}, {"text_input": "What is the hs code for PIGMENT BLEND (R) PB-52366 YELLOW (BHN BAKU PEWARNA TABLET) COA GA709235", "output": "32151990"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G62544... (BHN BAKU PEWARNA TABLET) COA GA709230", "output": "38249999"}, {"text_input": "What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 20325,20408,20429", "output": "38029090"}, {"text_input": "What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340355,B340381,B340382", "output": "29419000"}, {"text_input": "What is the hs code for SILYBIN /PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 22B0044700", "output": "13021950"}, {"text_input": "What is the hs code for VALERIAN DRY HYDR. EXTR. (BAHAN BAKU SUPLEMEN) COA 21B0129000", "output": "13021990"}, {"text_input": "What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102202007", "output": "28183000"}, {"text_input": "What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M-31,0PCT (BHN BAKU OBAT) COA 102229009,102229010", "output": "28161000"}, {"text_input": "What is the hs code for OPTISHARP (ZEAXANTHIN) 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT19060003", "output": "32041800"}, {"text_input": "What is the hs code for GENIVIDA(TM) TG (BHN BAKU SUPPLEMEN) COA UT21100003,UT21100004", "output": "29329900"}, {"text_input": "What is the hs code for MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA HA02900,HA02430", "output": "34024990"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA GCH", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA GEB", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS KR-30(BHN BAKU KOSMETIK) COA GDD", "output": "38249999"}, {"text_input": "What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA GBN", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS SILK-1000 (BHN BAKU KOSMETIK) COA GDH", "output": "38249999"}, {"text_input": "What is the hs code for GELLAN GUM (GELLANEER LAF) (BHN BAKU MAKANAN) COA 2205L0465", "output": "39139090"}, {"text_input": "What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1251471", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1251471", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASAMINO ACIDS TECHNICAL 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1207006", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2024471", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2352582", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2352583", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2352583", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1071038", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1071038", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1071038", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2034964", "output": "38210090"}, {"text_input": "What is the hs code for NATURAL SOURCE MIXED TOCOPHEROLS (BHN BAKU KOSMETIK) COA 220505M001", "output": "29362800"}, {"text_input": "What is the hs code for DOCUSATE SODIUM (BHN BAKU OBAT) COA SD1061131", "output": "29171900"}, {"text_input": "What is the hs code for EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) COA 1579834", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) COA 1580986", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) COA 1583570", "output": "38249999"}, {"text_input": "What is the hs code for L-CARNITINE (EP GRADE)(BHN BAKU KOSMETIK)COA 10100120220173", "output": "29239000"}, {"text_input": "What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102202007,102202008", "output": "28183000"}, {"text_input": "What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M -31.0PCT (BHN BAKU OBAT) COA 102229016,102229019", "output": "28161000"}, {"text_input": "What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102202008,102202009", "output": "28183000"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51469..(BHN BAKU PEWARNA TABLET) COA SH660357", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51469...(BHN BAKU PEWARNA TABLET) COA SH660356", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) COA SH658738", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18509..(BHN BAKU PEWARNA TABLET) COA SH660367", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751... (BHN BAKU PEWARNA TABLET) COA SH657921", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55410 RED(BHN BAKU PEWARNA TABLET) COA SH658713", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001...(BHN BAKU PEWARNA TABLET) COA SH658676", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G60929... (BHN BAKU PEWARNA TABLET) COA SH658706", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET) COA SH658712", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014...(BHN BAKU PEWARNA TABLET) COA SH658705", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-7027... (BHN BAKU PEWARNA TABLET) COA SH658988", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-7027...(BHN BAKU PEWARNA TABLET) COA SH660320", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O63173..(BHN BAKU PEWARNA TABLET) COA SH658843", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650023..(BHN BAKU PEWARNA TABLET) COA SH658809", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET) COA SH658810", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359..(BHN BAKU PEWARNA TABLET) COA SH660384", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18509..(BHN BAKU PEWARNA TABLET) COA SH660366", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A... (BHN BAKU PEWARNA TABLET) COA SH656823", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751... (BHN BAKU PEWARNA TABLET) COA SH660641", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F48105 .. (BHN BAKU PEWARNA TABLET) COA SH660642", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011.. (BHN BAKU PEWARNA TABLET) COA SH659019", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM... (BHN BAKU PEWARNA TABLET) COA SH659103", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET) COA SH660394", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUSMOISTURE BARRIER COATING.. (BHN BAKU PEWARNA TABLET) COA SH660395", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUSMOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET) COA SH660393", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359...(BHN BAKU PEWARNA TABLET) COA SH660383", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359..(BHN BAKU PEWARNA TABLET) COA SH660382", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359..(BHN BAKU PEWARNA TABLET) COA SH660381", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977..(BHN BAKU PEWARNA TABLET) COA SH658868", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM... (BHN BAKU PEWARNA TABLET) COA SH658806", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G65197... (BHN BAKU PEWARNA TABLET) COA SH658807", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977.. (BHN BAKU PEWARNA TABLET) COA SH660276", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011.. (BHN BAKU PEWARNA TABLET) COA SH658520", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G63147.. (BHN BAKU PEWARNA TABLET) COA SH658521", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE.. (BHN BAKU PEWARNA TABLET) COA SH658563", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001.. (BHN BAKU PEWARNA TABLET) COA SH658522", "output": "38249999"}, {"text_input": "What is the hs code for PIGMENT BLEND (R) PB-21158 GREEN (BHN BAKU PEWARNA TABLET) COA SH660559", "output": "32151990"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55384 RED(BHN BAKU PEWARNA TABLET) COA SH658551", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 02K19253.. (BHN BAKU PEWARNA TABLET) COA SH658552", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B84929.. (BHN BAKU PEWARNA TABLET) COA SH658553", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G63147.. (BHN BAKU PEWARNA TABLET) COA SH658521", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G63147.. (BHN BAKU PEWARNA TABLET) COA SH658521", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G63147.. (BHN BAKU PEWARNA TABLET) COA SH658521", "output": "38249999"}, {"text_input": "What is the hs code for FERRIC HYDROXIDE POLYMALTOSE COMPLEX POWDER (BHN BAKU SUPPLEMEN) COA 3116347", "output": "29400000"}, {"text_input": "What is the hs code for DICLOFENAC POTASSIUM BP 2022 (BHN BAKU OBAT) COA DFK/12040099 S/D 12040100", "output": "29224900"}, {"text_input": "What is the hs code for DICLOFENAC SODIUM USP 44 (BHN BAKU OBAT) COA DFS/12030110, 12050182 S/D 12050187", "output": "29224900"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND APRICOT EXTRACT (BHN BAKU KOSMETIK)COA PAS-011352", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 2022D1282", "output": "28331900"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND PEACH EXTRACT (BHN BAKU KOSMETIK)COA PEA-020381", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND CACTUS EXTRACT (BHN BAKU KOSMETIK) COA CAB-052921", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-020971", "output": "13021990"}, {"text_input": "What is the hs code for KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-051201", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 2022D1282", "output": "28331900"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-030742,HMVBD-041052", "output": "13021950"}, {"text_input": "What is the hs code for ARBUTIN (BHN BAKU KOSMETIK) COA ARP-012642", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-BLACK PEARL POWDER (BHN BAKU KOSMETIK) COA PDEG-021181", "output": "38249999"}, {"text_input": "What is the hs code for BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1220607", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER(BHN BAKU KOSMETIK) COA MUP-021421", "output": "13021950"}, {"text_input": "What is the hs code for SENAS (BHN BAKU KOSMETIK) COA NASB-011122", "output": "21022090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA 2022D1282", "output": "28331900"}, {"text_input": "What is the hs code for PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3319471", "output": "33029000"}, {"text_input": "What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA LC 013-22-801", "output": "17021100"}, {"text_input": "What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2022051306", "output": "21012020"}, {"text_input": "What is the hs code for CLOTRIMAZOLE MICRONIZED (BHN BAKU OBAT ) COA 202205100104", "output": "29332900"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM (BHN BAKU OBAT) COA M113961", "output": "29339990"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/05/140522,150522,160522,190522,200522", "output": "29420000"}, {"text_input": "What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU OBAT) COA 22E0807", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE AM PELLETS (BHN BAKU OBAT) COA 22E1205", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE BM PELLETS (BHN BAKU OBAT) COA 21E2708", "output": "28399000"}, {"text_input": "What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105711822", "output": "17021100"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11220330", "output": "29362500"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ20210554", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ20210554,UQ20310593", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ20310593", "output": "29362300"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02201004", "output": "29362400"}, {"text_input": "What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92205167,XW92205169", "output": "21069059"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 221256", "output": "38249999"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 220149", "output": "38249999"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 221111", "output": "13021990"}, {"text_input": "What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 221085", "output": "13021990"}, {"text_input": "What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 220495", "output": "13021990"}, {"text_input": "What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 221092", "output": "38249999"}, {"text_input": "What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 220079", "output": "13021990"}, {"text_input": "What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 220495", "output": "13021990"}, {"text_input": "What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 220154", "output": "13021990"}, {"text_input": "What is the hs code for JAGUAR HP 105 SGI 25KG CARDBOARD CARTON (BHN BAKU KOSMETIK) COA H2202023C", "output": "38249999"}, {"text_input": "What is the hs code for NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 21LNC0612SQ047", "output": "27101990"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU SUPPLEMEN) COA 122201847", "output": "28363000"}, {"text_input": "What is the hs code for VITASMOOTH (R) 041 (BHN BAKU SUPPLEMEN) COA 122201660", "output": "28365010"}, {"text_input": "What is the hs code for PHARMABURST (R) 500 (BHN BAKU SUPPLEMEN) COA 122101232", "output": "21069099"}, {"text_input": "What is the hs code for SORBITOL SPECIAL TM MDF 85 (BHN BAKU SUPPLEMEN) COA 122201598", "output": "29054400"}, {"text_input": "What is the hs code for PHARMABURST (R) C1 (BHN BAKU SUPPLEMEN) COA 122201576", "output": "21069099"}, {"text_input": "What is the hs code for SORBITOL SPECIAL TM MDF 85 (BHN BAKU SUPPLEMEN) COA 122201598", "output": "29054400"}, {"text_input": "What is the hs code for AQUACOAT ECD-30 ETHYLCELLULOSE... (BHN BAKU PEWARNA TABLET) COA 2173903592", "output": "39123900"}, {"text_input": "What is the hs code for AQUACOAT CPD-30 CELLULOSE... (BHN BAKU PEWARNA TABLET) COA 2174048787", "output": "39123900"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE... (BHN BAKU PEWARNA TABLET) COA SH658813", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE... (BHN BAKU PEWARNA TABLET) COA SH658814", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) KB LOW VISCOSITY FILM COATING SYSTEM... (BHN BAKU PEWARNA TABLET) COA SH658847", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET) COA SH659788", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O665... (BHN BAKU PEWARNA TABLET) COA SH658848", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-22-1751.. (BHN BAKU PEWARNA TABLET) COA SH658820", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229... (BHN BAKU PEWARNA TABLET) COA SH660681", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O92157... (BHN BAKU PEWARNA TABLET) COA SH658875", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A6233...(BHN BAKU PEWARNA TABLET) COA SH658851", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229... (BHN BAKU PEWARNA TABLET) COA SH660681", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 21K58794... (BHN BAKU PEWARNA TABLET) COA SH658823", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE... (BHN BAKU PEWARNA TABLET) COA SH658871", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K580000.. (BHN BAKU PEWARNA TABLET) COA SH658873", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-2136... (BHN BAKU PEWARNA TABLET) COA SH658825", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G65003...(BHN BAKU PEWARNA TABLET) COA SH658826", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F15789... (BHN BAKU PEWARNA TABLET) COA SH659101", "output": "38249999"}, {"text_input": "What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA 0000079486", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA 0000079487", "output": "29309090"}, {"text_input": "What is the hs code for HYDROCORTISONE ACETATE EP/USP (BHN BAKU OBAT) COA NEHAC220301", "output": "29372200"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE EP/USP (BHN BAKU OBAT) COA NMP220411", "output": "29372900"}, {"text_input": "What is the hs code for PREDNISONE USP (BHN BAKU OBAT) COA NPD211103,NPD220310", "output": "29372100"}, {"text_input": "What is the hs code for CINNARIZINE BP/EP (BAHAN BAKU OBAT) COA CIN/06221075", "output": "29315990"}, {"text_input": "What is the hs code for RANITIDINE HYDROCHLORIDE USP (BAHAN BAKU OBAT) COA RH4970622", "output": "29321900"}, {"text_input": "What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ20317006", "output": "29420000"}, {"text_input": "What is the hs code for ALUMINIUM HYDROXIDE ACETATE POWDER (BHN BAKU SUPPLEMEN) COA 3119107", "output": "29152990"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2203901903", "output": "29372900"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2203901903", "output": "29372900"}, {"text_input": "What is the hs code for 985-L-MENTHOL CRYSTALS INDIAN NATURAL (BHN BAKU KOSMETIK) COA NFPL.MEN.21.004", "output": "29061100"}, {"text_input": "What is the hs code for TRISODIUMCITRATE DIHYDRATE FINE GRANULAR (BHN BAKU SUPPLEMEN) COA UJ217", "output": "29181400"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201847,122201848", "output": "28363000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201848", "output": "28363000"}, {"text_input": "What is the hs code for EMULIUM MELLIFERA MB CAR (BHN BAKU KOSMETIK) COA 190160", "output": "28399000"}, {"text_input": "What is the hs code for EMULIUM MELLIFERA MB CAR (BHN BAKU KOSMETIK) COA 190223", "output": "28399000"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP22064032,XP22064033,XP22064034,XP22064035", "output": "29211900"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA LC013-22-801", "output": "17021100"}, {"text_input": "What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-220423", "output": "29061300"}, {"text_input": "What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP16122", "output": "28363000"}, {"text_input": "What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWDER FORM CATCOL C135(L) GRADE(B.BAKU KOSMETIK) COA 462/22", "output": "38249999"}, {"text_input": "What is the hs code for 1,3-BUTYLENE GLYCOL, COSMETIC QUALITY(BHN BAKU KOSMETIK) COA P0622314CC", "output": "29053200"}, {"text_input": "What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) COA 7766050", "output": "38249999"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B090522", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB290522", "output": "39123900"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B090522", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB290522", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LG120422", "output": "39123900"}, {"text_input": "What is the hs code for DEXAMETHASONE (BHN BAKU OBAT) COA NED220602,NED220603,NED220604", "output": "29372200"}, {"text_input": "What is the hs code for AESTHEFILL V200 (POLYLACTIC ACID) COA AF220506", "output": "90189090"}, {"text_input": "What is the hs code for AESTHEFILL V200 (POLYLACTIC ACID) COA AF220506, SAMPLE NO COMMERCIAL VALUE", "output": "90189090"}, {"text_input": "What is the hs code for SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202206-020", "output": "35040000"}, {"text_input": "What is the hs code for VC CALCIUM ASCORBATE DC (BHN BAKU SUPPLEMEN) COA HPT2202005", "output": "29362700"}, {"text_input": "What is the hs code for JOJOBA OIL VIRGIN LOW ODOUR (BHN BAKU KOSMETIK) COA 159827", "output": "15159011"}, {"text_input": "What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 2210030697", "output": "29362600"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO220202", "output": "38249999"}, {"text_input": "What is the hs code for WITCH HAZEL ORGANIC DISTILLATE 1:10 (BHN BAKU KOSMETIK) COA HAVD220605-BIO", "output": "38249999"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO220202", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) COA ANTS220301", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK) COA EG209-220602", "output": "13021990"}, {"text_input": "What is the hs code for HORSECHESNUT PHYTELENE EG 402 (BHN BAKU KOSMETIK) COA EG042-220101", "output": "38249999"}, {"text_input": "What is the hs code for GREENSIL (BHN BAKU KOSMETIK) COA GS220401-I", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS220202", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220302", "output": "13021990"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS220202", "output": "38249999"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO220202", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) COA ANTS220301", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS220202", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220302", "output": "13021990"}, {"text_input": "What is the hs code for GREENSIL (BHN BAKU KOSMETIK) COA GS220401-I", "output": "38249999"}, {"text_input": "What is the hs code for HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIE220401", "output": "13021990"}, {"text_input": "What is the hs code for HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIE220602", "output": "13021990"}, {"text_input": "What is the hs code for KIGELINE (BHN BAKU KOSMETIK) COA KAF220402-B", "output": "38249999"}, {"text_input": "What is the hs code for ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (BHN BAKU KOSMETIK) COA ROSD220202-BIO", "output": "38249999"}, {"text_input": "What is the hs code for KALE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA BOV2206R1", "output": "38249999"}, {"text_input": "What is the hs code for TAMANOL BIO IL (BHN BAKU KOSMETIK) COA CIN210701-ALMBIO", "output": "38249999"}, {"text_input": "What is the hs code for MIRASIL CM5 L (BHN BAKU KOSMETIK) COA 2226WKQ615", "output": "29319049"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D011L9UL01", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180K61001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180M1S001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180L3B021", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180K61001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180L51022", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D180K61001", "output": "39123900"}, {"text_input": "What is the hs code for STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN546900", "output": "35051010"}, {"text_input": "What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) COA 1581270", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) COA 1583382", "output": "38249999"}, {"text_input": "What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 220202", "output": "13021990"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 220211", "output": "13021990"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02202018", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040020", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0922020004", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040020", "output": "29420000"}, {"text_input": "What is the hs code for DL-PANTHENOL 50 L (BHN BAKU KOSMETIK) COA TL02109649", "output": "29362400"}, {"text_input": "What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92205383", "output": "29420000"}, {"text_input": "What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0040349", "output": "29362500"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040043", "output": "29420000"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT21070076,UT21090088,UT22010002", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT21120414,UT22020065", "output": "29362800"}, {"text_input": "What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001643582", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS3851121", "output": "29420000"}, {"text_input": "What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02109811", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050963 S/D 0321050968,0321050986,0321050994,0321050995", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060001", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0922020004", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321050995,0321051168,0321051169", "output": "29420000"}, {"text_input": "What is the hs code for PURIDROX COMPACTED CEFADROXIL (BHN BAKU OBAT) COA B340382,B340384,B340386", "output": "29419000"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP16122", "output": "28363000"}, {"text_input": "What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA 21100709,21100710", "output": "29391900"}, {"text_input": "What is the hs code for HEXYLENE GLYCOL (BHN BAKU KOSMETIK) COA 20040103", "output": "29053900"}, {"text_input": "What is the hs code for FENTACARE 1631 25 MB 200KG PLAS DR (BHN BAKU KOSMETIK ) COA ZH22E1602M,ZH22F1803M", "output": "29239000"}, {"text_input": "What is the hs code for OPAGLOS (R) TABLET CORESEALANT PRODUCT OPAGLOS... (BHN BAKU PEWARNA TABLET) COA DT732553", "output": "32151990"}, {"text_input": "What is the hs code for OPATINT (R) CONCENTRATED COLOR DISPERSION G-50659 BLUE (BHN BAKU PEWARNA TABLET) COA DT732525", "output": "32151990"}, {"text_input": "What is the hs code for OPATINT (R) CONCENTRATED COLOR DISPERSION G-12021.. (BHN BAKU PEWARNA TABLET) COA DT732526", "output": "32151990"}, {"text_input": "What is the hs code for OPACODE (R) MONOGRAMMING INK S-1-277001 BLACK (BHN BAKU PEWARNA TABLET) COA DT733199", "output": "32151990"}, {"text_input": "What is the hs code for OPALUX (R) OPAQUE COLOR COATING CONCENTRATE... (BHN BAKU PEWARNA TABLET) COA DT733258", "output": "32151990"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP16122", "output": "28363000"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM (BHN BAKU OBAT) COA M113962", "output": "29339990"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM (BHN BAKU OBAT) COA M113961", "output": "29339990"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977... (BHN BAKU PEWARNA TABLET) COA GA709377", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET) COA GA709938", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229... (BHN BAKU PEWARNA TABLET) COA GA709864", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55015... (BHN BAKU PEWARNA TABLET) COA GA709942", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC... (BHN BAKU PEWARNA TABLET) COA GA709958", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET) COA GA709939", "output": "38249999"}, {"text_input": "What is the hs code for SERASENSE SF CM5 (BAHAN BAKU SUPLEMEN) COA SA20616032,SA20616033", "output": "39100090"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330... (BHN BAKU SUPLEMEN) COA 2AX2206040,2AX2207003", "output": "29181400"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA173223", "output": "28363000"}, {"text_input": "What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) COA 321CAA0023", "output": "38249999"}, {"text_input": "What is the hs code for COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-2206128", "output": "29146200"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2004477", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2046556", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1188932", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1272847", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1229930", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02E073M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 1357822", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEMOGLOBIN FREEZE DRIED 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2046463", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIADIS MSRV 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2097356", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1133939", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2038852", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE YEAST CARBON BASE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1348724", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1307340", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02E073M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1264672", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2060432", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2067201", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ENTEROCOCCOSEL AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2082306", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2060510", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE PHOSPHATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2053882", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2060544", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2124239", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2124239", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2038654", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2004477", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 1173733", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2034944", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1334236", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALT EXTRACT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2059951", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 153552", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1096987", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTONE GLUCOSE EXT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2060588", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE YEAST CARBON BASE 100 G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1348724", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1307340", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02E073M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE OF BASAL MEDIUM 500GR(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1223658", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1216783", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2028750", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE CHROMAGAR CANDIDA 500GM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2032975", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2031326", "output": "38210090"}, {"text_input": "What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2118764", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M-PA-C AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2066339", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2124239", "output": "38210090"}, {"text_input": "What is the hs code for TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2130569", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01E013M", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL ENTERIC /NONFERMENTER ID (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2068621,..", "output": "38210090"}, {"text_input": "What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052209,G05052217", "output": "47063000"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C YELLOW ...(BHN BAKU PEWARNA TABLET) COA WP848266:BB2368", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C YELLOW...(BHN BAKU PEWARNA TABLET) COA WP848266:BB2368", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5396 ERYTHROSINE ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP844565:1", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5177 FD&C YELLOW...(BHN BAKU PEWARNA TABLET) COA WP852905:BB3911", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5627 FD&C BLUE...(BHN BAKU PEWARNA TABLET) COA WP855382:BB5688", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT (R) 6010 D&C YELLOW...(BHN BAKU PEWARNA TABLET) COA WP853294:BB4295", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5406 FD&C RED...(BHN BAKU PEWARNA TABLET) COA WP851883:BB3825", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT (R) 6010 D&C YELLOW...(BHN BAKU PEWARNA TABLET) COA WP853294:BB4295", "output": "32151990"}, {"text_input": "What is the hs code for PHTHALAVIN (R) ENTERIC COATING POLYMER...(BHN BAKU PEWARNA TABLET) COA WP853883", "output": "39059990"}, {"text_input": "What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830011016N", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785011118N", "output": "38249999"}, {"text_input": "What is the hs code for HELIOGEL TM (BHN BAKU KOSMETIK) COA 2133001", "output": "38249999"}, {"text_input": "What is the hs code for HELIOGEL TM (BHN BAKU KOSMETIK) COA 2201402", "output": "38249999"}, {"text_input": "What is the hs code for LANABLUE TM PARABEN FREE (BHN BAKU KOSMETIK) COA 788021070N", "output": "38249999"}, {"text_input": "What is the hs code for LANACHRYS 2B PF (BHN BAKU KOSMETIK) COA 793059577N", "output": "38249999"}, {"text_input": "What is the hs code for DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834011019N", "output": "29224900"}, {"text_input": "What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 702019449N", "output": "38249999"}, {"text_input": "What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799039934N", "output": "38249999"}, {"text_input": "What is the hs code for BOREALINE (R) AURORA (BHN BAKU KOSMETIK) COA BX1220017", "output": "38249999"}, {"text_input": "What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 213916", "output": "29224900"}, {"text_input": "What is the hs code for DEFENSCALP TM (BHN BAKU KOSMETIK) COA 785071018N", "output": "38249999"}, {"text_input": "What is the hs code for ECOGEL TM (BHN BAKU KOSMETIK) COA 2207101", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2133703", "output": "38249999"}, {"text_input": "What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029946N", "output": "13021990"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000203944,0000203945,0000203950", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000203950,0000203951", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000203950", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210126 S/D 0708210129", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040017", "output": "29420000"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000203951,0000204555,0000204556", "output": "29362900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT22040131", "output": "29362800"}, {"text_input": "What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0722010011", "output": "29420000"}, {"text_input": "What is the hs code for VITAMIN PREMIX MILK POWDER FOR ADULTS (BHN BAKU MAKANAN) COA XW92206118", "output": "21069059"}, {"text_input": "What is the hs code for MINERAL PREMIX MILK POWDER FOR ADULTS V2 (BHN BAKU MAKANAN) COA XW92206119,XW92206120", "output": "21069059"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02112843", "output": "29362400"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02112843", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI22040013", "output": "29362900"}, {"text_input": "What is the hs code for FERROUS GLUCONATE, POWDER, USP 43 (BHN BAKU SUPPLEMEN) COA 3118317", "output": "29181600"}, {"text_input": "What is the hs code for COPPER(II) GLUCONATE, FINE POWDER, USP 43 (BHN BAKU SUPPLEMEN) COA 3112568", "output": "29181600"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA158227,ROA157227", "output": "28363000"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA161227,ROA164226", "output": "28363000"}, {"text_input": "What is the hs code for TUBE EGG YOLK ENRICHMENT50PCT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2103717", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SHIGELLA ANTIS POLY A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0198678", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2109248", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1279394", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2095202", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2104103", "output": "38210090"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2034559,..", "output": "38210090"}, {"text_input": "What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2101523", "output": "38210090"}, {"text_input": "What is the hs code for HU NAIVE/MEM T CELL PANEL 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2049693", "output": "38210090"}, {"text_input": "What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2101523", "output": "38210090"}, {"text_input": "What is the hs code for HU IL-4 APC 8D4-8 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1173686", "output": "38210090"}, {"text_input": "What is the hs code for HU CD8 APC-CY7 SK1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2087793", "output": "38210090"}, {"text_input": "What is the hs code for HU CD3 FITC HIT3A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2019528", "output": "38210090"}, {"text_input": "What is the hs code for CYTOFIX/CYTOPER SOLN KIT (MEDIA TUK PENGEMBANGAN MIKRO ORGANISME), BATCH 2004703", "output": "38210090"}, {"text_input": "What is the hs code for HU CD28 NALE CD28.2 500UG (MEDIA TUK PENGEMBANGAN MIKRO ORGANISME), BATCH 1256634", "output": "38210090"}, {"text_input": "What is the hs code for STAIN BUFFER FBS 500ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1308379", "output": "38210090"}, {"text_input": "What is the hs code for KIT CRYSTAL GP ID EXPORT ONLY (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2088418", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SHIGELLA ANTIS POLY C2 LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1308737", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SHIGELLA ANTIS POLY B LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1217555", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SHIGELLA ANTIS POLY C LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2021558", "output": "38210090"}, {"text_input": "What is the hs code for MS CD4 PERCP-CY.5 SK3 RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1294299", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0219127", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2060591", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2109248", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B04E067M,B05E111M", "output": "38210090"}, {"text_input": "What is the hs code for SODIUM CARBONATE IPH (BHN BAKU SUPPLEMEN) COA DOC1572221", "output": "28363000"}, {"text_input": "What is the hs code for ZINC SULFATE 1-HYDRATE, CRYST., PH.EUR.10.ED (BHN BAKU OBAT) COA 3117179", "output": "28332920"}, {"text_input": "What is the hs code for SORBITOL SOLUTION 70 PCT CRYSTALLINE (BHN BAKU KOSMETIK) COA 2223P191", "output": "29054400"}, {"text_input": "What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 2210030697", "output": "29362600"}, {"text_input": "What is the hs code for MIRASIL CM5 L (BHN BAKU KOSMETIK) COA 2227WKQ115", "output": "29319049"}, {"text_input": "What is the hs code for HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2520422", "output": "29397900"}, {"text_input": "What is the hs code for PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) COA PH12160222", "output": "38249999"}, {"text_input": "What is the hs code for ESOMEPRAZOLE MAGNESIUM TRIHYDRATE (BAHAN BAKU OBAT) COA B900100", "output": "29333990"}, {"text_input": "What is the hs code for BARCROFT TM 0501 AL HYD PDR (BHN BAKU SUPPLEMEN) COA 102160002", "output": "28183000"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2203901903", "output": "29372900"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG220527,MCVG220607", "output": "29362700"}, {"text_input": "What is the hs code for ISOFLAVONES 150 BDF - 10KG (BHN BAKU KOSMETIK) COA 0663878", "output": "38249999"}, {"text_input": "What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 220665,221726", "output": "29329900"}, {"text_input": "What is the hs code for ALPINIAWHITE (BHN BAKU KOSMETIK) COA 221080", "output": "13021990"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS (BHN BAKU SUPLEMEN) COA 3AX2206021,3AX2206018", "output": "29181400"}, {"text_input": "What is the hs code for MAGNESIUM CARBONATE, EXTRA LIGHT, POWDER (BHN BAKU OBAT) COA 3118231", "output": "28369990"}, {"text_input": "What is the hs code for NICLOSAMIDE ANHYDROUS (BHN BAKU PAKAN HEWAN) COA 20220310,20220308,", "output": "29242990"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL02202021", "output": "29362400"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22010021", "output": "29362400"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22010021", "output": "29362400"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12202018", "output": "29362900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11220326", "output": "29362500"}, {"text_input": "What is the hs code for V003400 (POST BORDER) COA XW92206283", "output": "21069059"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11220331,QZ11220332", "output": "29362500"}, {"text_input": "What is the hs code for MINERAL PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92205553,XW92205554,XW92205555", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92205552", "output": "21069059"}, {"text_input": "What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92206283,XW92206284", "output": "21069059"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060087", "output": "29420000"}, {"text_input": "What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00765702", "output": "29420000"}, {"text_input": "What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00765702", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321051227 S/D 0321051231", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060087", "output": "29420000"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02202021", "output": "29362400"}, {"text_input": "What is the hs code for ACTIPONE(R) WHITE TEA GW (BHN BAKU KOSMETIK) COA 10300051", "output": "13021950"}, {"text_input": "What is the hs code for EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300022", "output": "13021950"}, {"text_input": "What is the hs code for LOTUS FROM VIETNAM ORGANIC OILY EXTRACT (BHN BAKU KOSMETIK) COA NEN220503-HBIO", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM220602-PGH", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM220602-PGH", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220302", "output": "13021990"}, {"text_input": "What is the hs code for COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) COA ANTS220301", "output": "38249999"}, {"text_input": "What is the hs code for DULSE PHYTELENE EG 745 (BHN BAKU KOSMETIK) COA EG745-211003-GS-B", "output": "38249999"}, {"text_input": "What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA VIV211201-BGBIO", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM220101-PGH", "output": "38249999"}, {"text_input": "What is the hs code for PROPOLIS HYDROGLYCERINED EXTRACT 80 (BHN BAKU KOSMETIK) COA PRO211103-GL80", "output": "29420000"}, {"text_input": "What is the hs code for WITCH HAZEL ORGANIC DISTILLATE 1:10 (SB) (BHN BAKU KOSMETIK) COA HAVD220605-BIO", "output": "38249999"}, {"text_input": "What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) COA 205274", "output": "38249999"}, {"text_input": "What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 207176", "output": "38249999"}, {"text_input": "What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 207176", "output": "38249999"}, {"text_input": "What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) COA 206276", "output": "38249999"}, {"text_input": "What is the hs code for IRON GLYCINATE (BHN BAKU UTK PAKAN TERNAK) COA 62142", "output": "29224900"}, {"text_input": "What is the hs code for MANGANESE GLYCINATE (BHN BAKU UTK PAKAN TERNAK) COA 62143", "output": "29224900"}, {"text_input": "What is the hs code for ZINC GLYCINATE (BHN BAKU UTK PAKAN TERNAK) COA 62140", "output": "29224900"}, {"text_input": "What is the hs code for MEG-3 30 N-3 INF OIL (BHN BAKU SUPPLEMEN) COA TS00019942", "output": "29362500"}, {"text_input": "What is the hs code for KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 21-12-21,22-12-21", "output": "25070000"}, {"text_input": "What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340388,B340389,B340397", "output": "29419000"}, {"text_input": "What is the hs code for FERROUS SULFATE, DRIED, POWDER, USP43 (BHN BAKU OBAT) COA 3116119", "output": "28332920"}, {"text_input": "What is the hs code for FERRIC PYROPHOSPHATE,24-26PCT FE POWDER,FCC12 (BHN BAKU MAKANAN) COA 3117765", "output": "28353990"}, {"text_input": "What is the hs code for ZINC BISGLYCINATE POWDER,FOR THE USE IN FOOD SUPPLEMENTS (BHN BAKU SUPLEMEN) COA 3116220", "output": "29224900"}, {"text_input": "What is the hs code for KETOPROFEN (BHN BAKU OBAT) COA 200597", "output": "29183000"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02203028", "output": "32041800"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPPLEMEN) COA UT22020009", "output": "32041800"}, {"text_input": "What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22020011", "output": "29362500"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPPLEMEN) COA UT22020009", "output": "32041800"}, {"text_input": "What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22020011", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPPLEMEN) COA UT22040064", "output": "29362100"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPPLEMEN) COA UT22020009", "output": "32041800"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPPLEMEN) COA UT22020009", "output": "32041800"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPPLEMEN) COA UT22040064", "output": "29362100"}, {"text_input": "What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT22020015", "output": "29362500"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPPLEMEN) COA UT22020009", "output": "32041800"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE TYPE 100 (BHN BAKU SUPPLEMEN) COA UT22040064", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02203036,UE02205050", "output": "32041800"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT21090085", "output": "29362800"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN547191", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN547192", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN547193", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN547194", "output": "35051010"}, {"text_input": "What is the hs code for MIRASIL DM5 L (BHN BAKU KOSMETIK) COA 2224FF2615,2222FF2515", "output": "39100090"}, {"text_input": "What is the hs code for MIRASIL D-DML LV A2 (BHN BAKU KOSMETIK) COA 2226HK07XA,2226HK06XA,2226HK01XA", "output": "39100090"}, {"text_input": "What is the hs code for DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2206001", "output": "28352510"}, {"text_input": "What is the hs code for MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50467", "output": "29061100"}, {"text_input": "What is the hs code for KETOROLAC TROMETHAMINE (BHN BAKU OBAT) COA KM0210622", "output": "29339990"}, {"text_input": "What is the hs code for MOXIFLOXACIN HYDROCHLORIDE (BHN BAKU OBAT) COA MP0070921", "output": "29334990"}, {"text_input": "What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-002-Z,JUVE-004-Z", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK)COA CHP1220607", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (VLMW) (BHN BAKU KOSMETIK)COA CHP2220620", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK)COA GSC-K-050921", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK)COA OSLP-070172", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK)COA HMVBD-041052", "output": "13021950"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND NANOMOIST-D (BHN BAKU KOSMETIK)COA NMSP-D-010612", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND GLA-40 (BHN BAKU KOSMETIK) COA GLCP-020252", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK)COA CPG-142832", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND TEA TREE EXTRACT (BHN BAKU KOSMETIK)COA MASL-042221", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK)COA AACN-021152", "output": "29224900"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK)COA GSC-K-050921", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK)COA OSLP-070172", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK)COA BHA-050411", "output": "38249999"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP22063331 S/D XP22063334", "output": "29211900"}, {"text_input": "What is the hs code for MAGNESIUM L-HYDROGENASPARTATE 2-HYDRATE (BHN BAKU OBAT) COA 3117361", "output": "29224900"}, {"text_input": "What is the hs code for AQUACOAT ECD-30 ETHYLCELLULOSE... (BHN BAKU PEWARNA TABLET) COA 2174083830", "output": "39123900"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA LC 014-22-801", "output": "17021100"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA LC014-22-801", "output": "17021100"}, {"text_input": "What is the hs code for TRIMETHOPRIM MICRONISED BP (BHN BAKU OBAT) COA TMP22070503", "output": "29335990"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02202021", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT21120005", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02102013", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000202239", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02202148", "output": "29362800"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA QZ11220332", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN MINERAL PREMIX FOR BISCUIT (BHN BAKU MAKANAN) COA XW92206071", "output": "21069059"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02202146", "output": "29362800"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ20412084", "output": "29362200"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT22050094", "output": "29362400"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT21120073", "output": "32041800"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT22050094", "output": "29362400"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ20412083", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ20412083", "output": "29362200"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000205201,0000205217", "output": "29362900"}, {"text_input": "What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0040349", "output": "29362500"}, {"text_input": "What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0040349", "output": "29362500"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA GCH,GGI", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA GGI", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS SILK-1000 (BHN BAKU KOSMETIK) COA GFI", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA GFC", "output": "38249999"}, {"text_input": "What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA GDA", "output": "38249999"}, {"text_input": "What is the hs code for PARSOL ZX (BHN BAKU KOSMETIK) COA 200212012, SAMPLE NO COMMERCIAL VALUE", "output": "29420000"}, {"text_input": "What is the hs code for HU CD45RA BV510 HI100 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1292082", "output": "38210090"}, {"text_input": "What is the hs code for HU IFN-GMA BV421 B27 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1303289", "output": "38210090"}, {"text_input": "What is the hs code for HU IL-2 PE MQ1-17H12 100TST (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1271086", "output": "38210090"}, {"text_input": "What is the hs code for HU IL-4 APC 8D4-8 50TST (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2059272", "output": "38210090"}, {"text_input": "What is the hs code for CD4 PERCP-CY5.5 SK3 RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2038970", "output": "38210090"}, {"text_input": "What is the hs code for HU CD45RA BV510 HI100 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1292082", "output": "38210090"}, {"text_input": "What is the hs code for THIOCARE (R) H101 71 PCT (BHN BAKU KOSMETIK) COA 0000079481", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000079482", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000079483", "output": "29309090"}, {"text_input": "What is the hs code for FERROUS FUMARATE (BHN BAKU OBAT) COA 2022/175", "output": "29171900"}, {"text_input": "What is the hs code for DESONIDE MICRONIZED (BHN BAKU OBAT) COA NB3339M,NC0506M", "output": "29372900"}, {"text_input": "What is the hs code for TRIAMCINOLONE ACETONIDE MICRONIZED (BHN BAKU OBAT) COA NC1602M", "output": "29372200"}, {"text_input": "What is the hs code for TRIPROLIDINE HCL USP (BHN BAKU OBAT) COA 2-KI-0011120", "output": "29333990"}, {"text_input": "What is the hs code for METOCLOPRAMIDE HYDROCHLORIDE USP (BHN BAKU OBAT) COA 22007MARII", "output": "29242990"}, {"text_input": "What is the hs code for METHYLCOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/0622017", "output": "29362600"}, {"text_input": "What is the hs code for HEXYLENE GLYCOL (BHN BAKU KOSMETIK) COA 20040108", "output": "29053900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180M3N002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180M3O001", "output": "39123900"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18509...(BHN BAKU PEWARNA TABLET) COA SH66145", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O6650...(BHN BAKU PEWARNA TABLET) COA SH661414", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O63000..(BHN BAKU PEWARNA TABLET) COA SH661408", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751.. (BHN BAKU PEWARNA TABLET) COA SH661409", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET) COA SH661424", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51469... (BHN BAKU PEWARNA TABLET) COA SH661423", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55410 RED(BHN BAKU PEWARNA TABLET) COA SH661427", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55410 RED(BHN BAKU PEWARNA TABLET) COA SH661428", "output": "38249999"}, {"text_input": "What is the hs code for SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202207-010,", "output": "35040000"}, {"text_input": "What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF (BHN BAKU SUPPLEMEN) COA UE02206017", "output": "32030010"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02205051", "output": "32041800"}, {"text_input": "What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ20217004", "output": "29420000"}, {"text_input": "What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ20317007", "output": "29420000"}, {"text_input": "What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ20217004", "output": "29420000"}, {"text_input": "What is the hs code for BACTO MALT EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1103512", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PEPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2053079", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1263533", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2352583", "output": "38210090"}, {"text_input": "What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1285442", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2034964", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2034964", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2034963", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1075037", "output": "38210090"}, {"text_input": "What is the hs code for CD SUPREME FSM 500GR EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2400756", "output": "38210090"}, {"text_input": "What is the hs code for KF-54HV (18KG) (BHN BAKU KOSMETIK) COA 207044", "output": "38249999"}, {"text_input": "What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) COA 206151", "output": "38249999"}, {"text_input": "What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) COA 206276", "output": "38249999"}, {"text_input": "What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) COA 206277", "output": "38249999"}, {"text_input": "What is the hs code for KSG-210 (16KG) (BHN BAKU KOSMETIK) COA 204248", "output": "38249999"}, {"text_input": "What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) COA 207233", "output": "38249999"}, {"text_input": "What is the hs code for SWERTIANIN-P (BHN BAKU KOSMETIK) COA 220433", "output": "13021990"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229... (BHN BAKU PEWARNA TABLET) COA GA713132", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229... (BHN BAKU PEWARNA TABLET) COA GA713132", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE... (BHN BAKU PEWARNA TABLET) COA GA713432", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751... (BHN BAKU PEWARNA TABLET) COA GA713473", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751... (BHN BAKU PEWARNA TABLET) COA GA713473", "output": "38249999"}, {"text_input": "What is the hs code for LIPOID S 20 (BHN BAKU SUPPLEMEN) COA 572000-2220140", "output": "29232011"}, {"text_input": "What is the hs code for MIAMI SCG(S) (BHN BAKU KOSMETIK) COA 220712A5,220723A5", "output": "34023990"}, {"text_input": "What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 200881", "output": "29332900"}, {"text_input": "What is the hs code for IMWITOR (R) GMIS (BAHAN BAKU KOSMETIK) COA 202085,203087", "output": "38249999"}, {"text_input": "What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA MLAH0280522", "output": "29341000"}, {"text_input": "What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 21290063", "output": "30039000"}, {"text_input": "What is the hs code for DEFENSCALP TM PF (BHN BAKU KOSMETIK) COA 785081244N", "output": "38249999"}, {"text_input": "What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) COA 702019449N", "output": "38249999"}, {"text_input": "What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799031197N", "output": "38249999"}, {"text_input": "What is the hs code for DEFENSCALP TM PF (BHN BAKU KOSMETIK) COA 785081244N", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2133701", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2133702", "output": "38249999"}, {"text_input": "What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029946N", "output": "13021990"}, {"text_input": "What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829011015N", "output": "29224900"}, {"text_input": "What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799031197N", "output": "38249999"}, {"text_input": "What is the hs code for AL HYD WET GEL VAC 20 (BHN PAKAN HEWAN TERNAK) COA 202200130,202200109", "output": "28183000"}, {"text_input": "What is the hs code for RUGENER DREIKRONEN HEILKREIDE 25K (BHN BAKU KOSMETIK) COA 6102125400", "output": "25090000"}, {"text_input": "What is the hs code for SPD-Z5 (1KG) (BHN BAKU KOSMETIK) COA 110695", "output": "38249999"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02203640,TL02203641", "output": "29362400"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ20310597,UQ20410642", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI22040013", "output": "29362900"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ20412084", "output": "29362200"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT22010154", "output": "29362900"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20220303", "output": "29362800"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ20310597", "output": "29362300"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL02202021", "output": "29362400"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT22050094", "output": "29362400"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ11213382,UQ11213383", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ11213383", "output": "29362200"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000204551,0000204552,0000205217,0000205397", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321051231 S/D 0321051233", "output": "29420000"}, {"text_input": "What is the hs code for DL-PANTHENOL 50 L (BHN BAKU KOSMETIK) COA TL02109649", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02204031", "output": "29362400"}, {"text_input": "What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00765703", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0420040043", "output": "29420000"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02201004", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060088", "output": "29420000"}, {"text_input": "What is the hs code for D-PANTHENOL (POST BORDER) COA TL02201004,TL02202021,TL02204031", "output": "29362400"}, {"text_input": "What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF21239005", "output": "29420000"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (POST BORDER) COA UT22040131", "output": "29362800"}, {"text_input": "What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF21239005", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321051233 S/D 0321051235", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS3851121,HS5840222", "output": "29420000"}, {"text_input": "What is the hs code for STAY-C (R) 50 (POST BORDER) COA UE02201006,UE02202012", "output": "29362700"}, {"text_input": "What is the hs code for CATECHINS TEAVIGO 4 KG (BHN BAKU KOSMETIK) COA 207201", "output": "21012020"}, {"text_input": "What is the hs code for ML0974-SE0980 CUSTOM BLENDING VEGETABLES BLEND A (BHN BAKU OBAT) COAL-12712", "output": "13021950"}, {"text_input": "What is the hs code for LIDOCAINE BASE (BHN BAKU OBAT) COA 200181", "output": "29242990"}, {"text_input": "What is the hs code for LIDOCAINE HCL (BHN BAKU OBAT) COA 200304", "output": "29242990"}, {"text_input": "What is the hs code for HEXYLENE GLYCOL (BHN BAKU KOSMETIK) COA 20040115", "output": "29053900"}, {"text_input": "What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 26-10-21147,11-01-22,25-10-21", "output": "38029090"}, {"text_input": "What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000079834", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000079835", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000079836", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H105 83 PCT (BHN BAKU KOSMETIK) COA 0000079837", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H105 83 PCT (BHN BAKU KOSMETIK) COA 0000079838,SAMPLE NO COMMERCIAL VALUE", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H103 43 PCT (BHN BAKU KOSMETIK) COA 0000079839, SAMPLE NO COMMERCIAL VALUE", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H100 99 PCT (BHN BAKU KOSMETIK) COA 0000079840, SAMPLE NO COMMERCIAL VALUE", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H101 71 PCT (BHN BAKU KOSMETIK) COA 0000079841, SAMPLE NO COMMERCIAL VALUE", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H100L 80 PCT (BHN BAKU KOSMETIK) COA 0000079842, SAMPLE NO COMMERCIAL VALUE", "output": "29309090"}, {"text_input": "What is the hs code for ISDN 10PCT IN NACL (DISPERSION) (BHN BAKU OBAT) COA 2208915", "output": "30039000"}, {"text_input": "What is the hs code for SODIUM VALPROATE (BAHAN BAKU OBAT) COA 457306(968)", "output": "29159090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2104103", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2053886", "output": "38210090"}, {"text_input": "What is the hs code for VIAL ISOVITALEX ENRICHMENT 2ML 5EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2081927,....", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2060591", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0219127", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2109248", "output": "38210090"}, {"text_input": "What is the hs code for HU IFN-GMA BV421 B27 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1303289", "output": "38210090"}, {"text_input": "What is the hs code for HU IL-2 PE MQ1-17H12 100TST (MEDIA UTK (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1271086", "output": "38210090"}, {"text_input": "What is the hs code for HU CD8 APC-CY7 SK1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2087793", "output": "38210090"}, {"text_input": "What is the hs code for HU CD3 FITC HIT3A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2019528", "output": "38210090"}, {"text_input": "What is the hs code for HU CD28 NALE CD28.2 500NG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1256634", "output": "38210090"}, {"text_input": "What is the hs code for HU CD45RA BV510 HI100 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH1292082", "output": "38210090"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02205050", "output": "32041800"}, {"text_input": "What is the hs code for MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT22020015", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT22051179", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT22051179,UT22051180", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02205050,UE02205051", "output": "32041800"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT22050004", "output": "32041800"}, {"text_input": "What is the hs code for MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT22020015", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22030043,UT22030044", "output": "29362100"}, {"text_input": "What is the hs code for COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPPLEMEN) COA TL02205693", "output": "29362700"}, {"text_input": "What is the hs code for GENIVIDA(TM) TG (BHN BAKU SUPPLEMEN) COA UT21100003,UT21100004", "output": "29329900"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK)COA OHA-082572", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND GLA-40 (BHN BAKU KOSMETIK) COA GLCP-030172", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK)COA CHP1220719", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND JEJU TANGERINE EXTRACT (BHN BAKU KOSMETIK) COA GTUP-T-033052", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK)COA MUP-021421", "output": "13021950"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SENAS (BHN BAKU KOSMETIK)COA NASB-011122", "output": "21022090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK)COA HMVBD-041052", "output": "13021950"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP20022", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP17822,MTP17122", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP18522", "output": "28363000"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1348303", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR NOBLE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2074166", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2165877", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LEGIONELLA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 0112510", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLT4 AGAR BASE 500 G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCHA. 1216783", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SODIUM DESOXYCHOLATE 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1279594", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2060506", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2088727", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2095371", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2082495", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TODD HEWITT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2060551", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MIDDLEBROOK 7H10 BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2046511", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DNASE TEST AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1236633", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 8 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2090369", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M ENDO BROTH MF 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2068110", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0314278", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2143788", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2172773", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1306233", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2083009", "output": "38210090"}, {"text_input": "What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2123997", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1348303", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1224924", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2053778", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2143788", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1292710", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 2096996", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1350021", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2011124", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2067201", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2104097", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR NOBLE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2074166", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2104107", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1188089", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2067270", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2026294", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2088708", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2047633", "output": "38210090"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1347249", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2066085", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2038654", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2067270", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1319633,.", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1188089", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1272665", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0350990,2060316", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1285556", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500 G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1349644,2038183,...", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2117655", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2088865", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2038654", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2103834", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1236443", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2123358", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BILE SALTS NO 3 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1243829", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ CAMPY CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2055003", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 2152330", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2088277", "output": "38210090"}, {"text_input": "What is the hs code for LOOPS INOCULATING 10/TUBE 1 MICROLITER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2128977", "output": "38210090"}, {"text_input": "What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2124082", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2158967", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 2152330", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2158967", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 2152330,217...", "output": "38210090"}, {"text_input": "What is the hs code for PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 120621/007343,080321/007122", "output": "38249999"}, {"text_input": "What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2022051306", "output": "21012020"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201892,122201893", "output": "28363000"}, {"text_input": "What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) COA WP860741", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) COA WP860742", "output": "38249999"}, {"text_input": "What is the hs code for SUPPOCIRE NA PELLETS CAR (BHN BAKU SUPPLEMEN) COA 22E1907", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE NA PELLETS CAR (BHN BAKU SUPPLEMEN) COA 22E2009", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE A PELLETS CAR (BHN BAKU SUPPLEMEN) COA 22E0607", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE BM PELLETS CAR (BHN BAKU SUPPLEMEN) COA 21E5008", "output": "28399000"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 02F52182...(BHN BAKU PEWARNA TABLET) COA GA711622", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA710197", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA710197", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B54445 PINK (BHN BAKU PEWARNA TABLET) COA GA710198", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) KB LOW VISCOSITY FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA710199", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) COA 80W68912", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G62343...(BHN BAKU PEWARNA TABLET) COA GA711593", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A...(BHN BAKU PEWARNA TABLET) COA GA712174", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131...(BHN BAKU PEWARNA TABLET) COA GA710557", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA711948", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA711948", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03Z59026...(BHN BAKU PEWARNA TABLET) COA GA710559", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA711693", "output": "39061090"}, {"text_input": "What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340392,B340393", "output": "29419000"}, {"text_input": "What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334826,B334832", "output": "29419000"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M114027", "output": "29339990"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M114027", "output": "29339990"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP20022,MTP18722", "output": "28363000"}, {"text_input": "What is the hs code for BACTO PEPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2053079", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PEPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2053079", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1263533", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2352582", "output": "38210090"}, {"text_input": "What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1285442", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1075037", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1075037", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1251471", "output": "38210090"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5287 FD&CYELLOW 6/SUN ...(BHN BAKU PEWARNA TABLET) COA WP848267:BB2370", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5177 FD&CYELLOW #5/TAR ...(BHN BAKU PEWARNA TABLET) COA WP844300:BA9551", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5396 ERYTHROSINE ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP844563", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT (R) 6010 D&CYELLOW 10 ALUMIN...(BHN BAKU PEWARNA TABLET) COA WP853290:BB4289", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5287 FD&CYELLOW 6/SUN...(BHN BAKU PEWARNA TABLET) COA WP848267:BB2370", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5627 FD&CBLUE 2/INDIGO...(BHN BAKU PEWARNA TABLET) COA WP855383:BB5689", "output": "32151990"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS220703", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS220202", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) COA CHS220703", "output": "38249999"}, {"text_input": "What is the hs code for LICORICE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) COA GLG220701-BGBIO", "output": "38249999"}, {"text_input": "What is the hs code for LICORICE ORGANIC OILY EXTRACT (SUNFLOWER OIL) (BHN BAKU KOSMETIK) COA GLGT2207R1-HBIO", "output": "38249999"}, {"text_input": "What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU SUPPLEMEN) COA 102202009,102202024", "output": "28183000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201849,122201850", "output": "28363000"}, {"text_input": "What is the hs code for MIRANOL ULTRA C-32 MB 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP207392MB", "output": "34024990"}, {"text_input": "What is the hs code for NABUMETONE USP (BAHAN BAKU OBAT) COA H-0080122", "output": "29145000"}, {"text_input": "What is the hs code for VC SODIUM ASCORBATE REGULAR (BHN BAKU MAKANAN) COA HPN2203170,HPN2204158,HPN2204163 S/D HPN2204", "output": "29362700"}, {"text_input": "What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 220202", "output": "13021990"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 220402", "output": "13021990"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 220211", "output": "13021990"}, {"text_input": "What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 220215", "output": "13021990"}, {"text_input": "What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 220202", "output": "13021990"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA711754", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA713159", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA711755", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA712222", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA712223", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER...(BHN BAKU PEWARNA TABLET) COA GA711819", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA712218", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51469...(BHN BAKU PEWARNA TABLET) COA GA712219", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55410...(BHN BAKU PEWARNA TABLET) COA GA712220", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA711008", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA711008", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B62323...(BHN BAKU PEWARNA TABLET) COA GA713030", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359..(BHN BAKU PEWARNA TABLET) COA GA711560", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359...(BHN BAKU PEWARNA TABLET) COA GA711560", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001...(BHN BAKU PEWARNA TABLET) COA GA711029", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O92157..(BHN BAKU PEWARNA TABLET) COA GA711030", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O92157...(BHN BAKU PEWARNA TABLET) COA GA711030", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA711008", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA711008", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA711751", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001...(BHN BAKU PEWARNA TABLET) COA SH661839", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) COA SH661840", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE BARRIER ...(BHN BAKU PEWARNA TABLET) COA SH661848", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA SH661849", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA SH661847", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA SH661846", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) COA SH661841", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA SH661842", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) COA SH661845", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-22-7719...(BHN BAKU PEWARNA TABLET) COA SH661838", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-7027...(BHN BAKU PEWARNA TABLET) COA SH661843", "output": "38249999"}, {"text_input": "What is the hs code for ETORIXOCIB (BHN BAKU OBAT) COA ETC-P/22004", "output": "29333990"}, {"text_input": "What is the hs code for FENTACARE 2231 EF 25KG PAPER BOX (BHN BAKU KOSMETIK ) COA ZH22G2402,ZH22G2602", "output": "34029019"}, {"text_input": "What is the hs code for FERROUS SULFATE, DRIED, POWDER, USP43 (BHN BAKU MAKANAN) COA 3107512", "output": "28332920"}, {"text_input": "What is the hs code for SODIUM FEREDETATE, POWDER, BP 2021 (BHN BAKU SUPPLEMEN) COA 3119807", "output": "29224900"}, {"text_input": "What is the hs code for SODIUM SELENITE IN CARRIER (BHN BAKU MAKANAN) COA 3106231", "output": "28429010"}, {"text_input": "What is the hs code for HYDROCORTISONE ACETATE EP/USP (BHN BAKU OBAT) COA NEHAC220410", "output": "29372100"}, {"text_input": "What is the hs code for PREDNISOLONE BP/USP (BHN BAKU OBAT) COA NPL220207", "output": "29372100"}, {"text_input": "What is the hs code for BISOPROLOL FUMARATE USP(BAHAN BAKU OBAT)COA LT-OBFA/003/21-22", "output": "29221990"}, {"text_input": "What is the hs code for HU CCR7 (CD197) PE-CY7 2-L1-A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2161787", "output": "38210090"}, {"text_input": "What is the hs code for VIAL TTC SOLUTION 1 PCT 1X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2137380", "output": "38210090"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55041...(BHN BAKU PEWARNA TABLET) COA GA714430", "output": "38249999"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (POST BORDER) COA UT21120073", "output": "32041800"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11220332", "output": "29362500"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT22050024", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU MAKANAN) COA UT22030003", "output": "29362900"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT21120073", "output": "32041800"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02202021", "output": "29362400"}, {"text_input": "What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92207064,XW92207065", "output": "21069059"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040056", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040056,0222040076", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040012,0222040043,0222040074", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210129,0708210130,0708210138,0708210140,0708210141", "output": "29420000"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O66912..(BHN BAKU PEWARNA TABLET) COA GA714514", "output": "39061090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2097342", "output": "38210090"}, {"text_input": "What is the hs code for SODIUM CARBONATE IPH (BHN BAKU SUPPLEMEN) COA DOC1852221", "output": "28363000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201849", "output": "28363000"}, {"text_input": "What is the hs code for MATCHA ( BHN BAKU KOSMETIK) COA CSP 22003 EOU", "output": "38249999"}, {"text_input": "What is the hs code for NIACINAMIDE USP (NIACINAMIDE USP/EP) (BHN BAKU KOSMETIK)COA 22-23/NMD(P)/00117 S/D 00125", "output": "29362900"}, {"text_input": "What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0066373", "output": "38249999"}, {"text_input": "What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0066375", "output": "38249999"}, {"text_input": "What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0067079", "output": "38249999"}, {"text_input": "What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0067672", "output": "38249999"}, {"text_input": "What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0067675", "output": "38249999"}, {"text_input": "What is the hs code for MANNITOL POWDER USP/EP-MANNO (BHN BAKU SUPPLEMEN) COA 302205034", "output": "29054300"}, {"text_input": "What is the hs code for CEFOTAXIME SODIUM (BAHAN BAKU OBAT ) COA3042203058", "output": "29419000"}, {"text_input": "What is the hs code for LISINOPRIL DIHYDRATE USP (BAHAN BAKU OBAT ) COA C5170-22-146", "output": "29339990"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM REGULAR GRADE (BHN BAKU OBAT) COA 2206751,2206820,2206823,2206863", "output": "29331900"}, {"text_input": "What is the hs code for IBUPROFEN (BHN BAKU OBAT) COA 22067333", "output": "29163990"}, {"text_input": "What is the hs code for PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M598406,M598407,M598414,M598415", "output": "29411019"}, {"text_input": "What is the hs code for LINAGLIPTIN (BHN BAKU OBAT) COA LG0140622", "output": "29332900"}, {"text_input": "What is the hs code for ETORIXOCIB (BHN BAKU OBAT) COA ETC-P/22004", "output": "29333990"}, {"text_input": "What is the hs code for ACRYPOL 980 (20KG) (BAHAN BAKU KOSMETIK) COA 11522009,11522010,11522011", "output": "39069099"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/07/100722-1,170722,180722,190722", "output": "29420000"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE BP (BHN BAKU OBAT) COA ASGP/07/150722,170722", "output": "29420000"}, {"text_input": "What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-1280822,S-A-1290822", "output": "29334910"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) COA WP858555", "output": "38249999"}, {"text_input": "What is the hs code for PX TRS1 WITHOUT K1 (BHN BAKU MAKANAN) COA XW92207129", "output": "21069059"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02204194", "output": "29362800"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060087", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL ZX (BHN BAKU KOSMETIK) COA 191002012", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060087", "output": "29420000"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22030098", "output": "29362800"}, {"text_input": "What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P1F03QA000", "output": "29420000"}, {"text_input": "What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92207238", "output": "29420000"}, {"text_input": "What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92207239", "output": "29420000"}, {"text_input": "What is the hs code for JAGUAR C 162 SGI CARDBOARD BOX 25 KG (BHN BAKU KOSMETIK) COA MJAC22171B", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM HYDROGEN SULFITE (BHN BAKU KOSMETIK) COA M8B115", "output": "28321000"}, {"text_input": "What is the hs code for CEFOTAXIME SODIUM STERILE USP (BAHAN BAKU OBAT) COA B200200,B200300", "output": "29419000"}, {"text_input": "What is the hs code for DIACEREIN EP (BHN BAKU OBAT) COA DCE/40020722", "output": "29189900"}, {"text_input": "What is the hs code for ASTABIO AR10 (ASTAXANTHIN OIL 10PCT) (BHN BAKU OBAT) COA 2205101", "output": "32030010"}, {"text_input": "What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-004-Z", "output": "13021990"}, {"text_input": "What is the hs code for SOYA LECITHIN (POST BORDER) COA TY2220712-16", "output": "29232011"}, {"text_input": "What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02206506", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE, TYPE 100 (BHN BAKU SUPPLEMEN) COA UT22040064", "output": "29362100"}, {"text_input": "What is the hs code for FRUITFLOW II SD (BHN BAKU SUPPLEMEN) COA 22T0027700,22T0027800", "output": "29362900"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02203641", "output": "29362400"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ20412085", "output": "29362200"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02203641", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02202021,TL02204039", "output": "29362400"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ20412085", "output": "29362200"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02204039", "output": "29362400"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02203641", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0922020029", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0922020029", "output": "29420000"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000205403", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000205403,0000205404", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000205404", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000205404,0000205405", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000205405", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0321051238,0321051239", "output": "29420000"}, {"text_input": "What is the hs code for CETIRIZINE HYDROCHLORIDE (BHN BAKU OBAT) COA 21038CZ6RII", "output": "29315990"}, {"text_input": "What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340395,B340396,B340398", "output": "29419000"}, {"text_input": "What is the hs code for TRISODIUMCITRATE DIHYDRATE FINE GRANULAR (BHN BAKU SUPPLEMEN) COA UJ224", "output": "29181400"}, {"text_input": "What is the hs code for CENTELLA ASIATICA EXTRACT 95PCT ( BHN BAKU KOSMETIK) COA GKP 22068 EOU", "output": "13021950"}, {"text_input": "What is the hs code for 8552-507-K05 LIPEX 512 VEGETABLE OIL (BHN BAKU KOSMETIK) COA 0002530077", "output": "15162049"}, {"text_input": "What is the hs code for MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 608-1,609-1", "output": "34024990"}, {"text_input": "What is the hs code for FERROUS GLUCONATE,POWDER,USP 43 (BHN BAKU OBAT) COA 3118067", "output": "29181600"}, {"text_input": "What is the hs code for FERROUS FUMARATE, FINE POWDER (BHN BAKU OBAT) COA 3119505", "output": "29171900"}, {"text_input": "What is the hs code for SODIUM FEREDETATE,POWDER,BP 2021 (BHN BAKU OBAT) COA 3119499", "output": "29224900"}, {"text_input": "What is the hs code for DIPOTASSIUM PHOSPHATE POWDER (BHN BAKU OBAT) COA 3117153,3117154", "output": "28352400"}, {"text_input": "What is the hs code for SELOHVITA C (BHN BAKU OBAT) COA 3117740", "output": "28429010"}, {"text_input": "What is the hs code for MAGNESIUM L-HYDROGENASPARTATE 2-HYDRATE (BHN BAKU OBAT) COA 3117277", "output": "29224900"}, {"text_input": "What is the hs code for FERROUS GLUCONATE HYDRATE, POWDER, PH.EUR.10.ED (BHN BAKU OBAT) COA 3119329", "output": "29181600"}, {"text_input": "What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052225", "output": "47063000"}, {"text_input": "What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052225", "output": "47063000"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG220729", "output": "29362700"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA GFC", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA GGI", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA GGI", "output": "38249999"}, {"text_input": "What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA GDA", "output": "38249999"}, {"text_input": "What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA GDA", "output": "38249999"}, {"text_input": "What is the hs code for SORBOLAC (R) 400 (BHN BAKU OBAT) COA L103840822", "output": "17021100"}, {"text_input": "What is the hs code for DANDRILYS (BHN BAKU KOSMETIK) COA DAN220602-Z", "output": "38249999"}, {"text_input": "What is the hs code for INCA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK) COA II220806-AI-D-BIO", "output": "38249999"}, {"text_input": "What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-210503-GS", "output": "38249999"}, {"text_input": "What is the hs code for WITCH HAZEL ORGANIC DISTILLATE 1:10 (SB) (BHN BAKU KOSMETIK) COA HAVD220706-BIO", "output": "38249999"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK)COA MAC-CO220202", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK)COA EG543-220702", "output": "38249999"}, {"text_input": "What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK)COA PX773-210503-GS", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) COA CFM220602-PGH", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220803", "output": "13021990"}, {"text_input": "What is the hs code for JAGUAR HP 105 SGI 25KG CARDBOARD CARTON (BHN BAKU KOSMETIK) COA H2205090H", "output": "38249999"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20220501", "output": "29362800"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT GRANULATION (BHN BAKU SUPPLEMEN) COA WB22019030", "output": "29362700"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22010622", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22010633,WB22010634", "output": "29362100"}, {"text_input": "What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU SUPPLEMEN) COA 102202024,102202025", "output": "28183000"}, {"text_input": "What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M -31.0PCT (BHN BAKU SUPPLEMEN) COA 102229022", "output": "28161000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201893,122201894", "output": "28363000"}, {"text_input": "What is the hs code for PHARMABURST (R) C1 (BHN BAKU OBAT) COA 122201577", "output": "21069099"}, {"text_input": "What is the hs code for VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 122201660", "output": "28365010"}, {"text_input": "What is the hs code for PHARMABURST (R) 500 (BHN BAKU OBAT) COA 122201691", "output": "21069099"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201850", "output": "28363000"}, {"text_input": "What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) COA 208161", "output": "38249999"}, {"text_input": "What is the hs code for KF-6017(17KG) (BHN BAKU KOSMETIK) COA 207177", "output": "38249999"}, {"text_input": "What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) COA 208280", "output": "38249999"}, {"text_input": "What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) COA 208280", "output": "38249999"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP21122", "output": "28363000"}, {"text_input": "What is the hs code for PROCATEROL HCL HEMIHYDRATE MICRONIZED (BHN BAKU OBAT) COA 8600119M1", "output": "29337900"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A18597..(BHN BAKU PEWARNA TABLET) COA GA714888", "output": "39061090"}, {"text_input": "What is the hs code for DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2208001", "output": "28352510"}, {"text_input": "What is the hs code for BIOCELLACT CHAMOMILLA BD (BHN BAKU KOSMETIK) COA 212370", "output": "13021990"}, {"text_input": "What is the hs code for DERMAVEIL (BHN BAKU KOSMETIK) COA 221122", "output": "13021990"}, {"text_input": "What is the hs code for YUZU CERAMIDE B (BHN BAKU KOSMETIK) COA 221416", "output": "13021990"}, {"text_input": "What is the hs code for DOKUDAMI LIQUID B (BHN BAKU KOSMETIK) COA 221082", "output": "13021990"}, {"text_input": "What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 221769", "output": "13021990"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2138670", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2067255", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 1349557", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2088708", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2123358", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2026294", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2097346", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2103834", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2046187", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1188089", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1236443,2005526", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2060544", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ CAMPY CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2055003", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2138670", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MYP AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2208037", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D-MANNITOL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2179301", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2104133", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2104109", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GLYCEROL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2173051", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2173788", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M-PA-C AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2179375", "output": "38210090"}, {"text_input": "What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2118793", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2145135", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M-PA-C AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2179375", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2097346", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE KF STREPTOCOCCUS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2214351", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1229930", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2074843", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1216783", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 5 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1236415", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2053778", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2082495", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE YEAST CARBON BASE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2137773", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALONATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1307340", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1188089", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2117655", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 2034966", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD AGAR MODIFIED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2060412", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B04E123M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2053778", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0245118", "output": "38210090"}, {"text_input": "What is the hs code for PAIL R2A AGAR 2KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1243543", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR W/MUG 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2088655", "output": "38210090"}, {"text_input": "What is the hs code for LIPOID PPL-600 (BHN BAKU SUPPLEMEN) COA 577200-2210231", "output": "29232011"}, {"text_input": "What is the hs code for METHOCEL E15 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D011M2NL03", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464164938", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL A15 PREMIUM LV METHYLCELLULOSE...(BHN BAKU PEWARNA TABLET) COA D180L7E022", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180M27003", "output": "39123900"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA712347", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA713836", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA712349", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA713827", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) COA GA713777", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA712351", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G54002..(BHN BAKU PEWARNA TABLET) COA GA712352", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) COA GA713970", "output": "38249999"}, {"text_input": "What is the hs code for PIGMENT BLEND (R) PB-665012 BROWN (BHN BAKU PEWARNA TABLET) COA GA713767", "output": "32151990"}, {"text_input": "What is the hs code for OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA712353", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA713990", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA712354", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA713768", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA713768", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA714475", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA713867", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA712355", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA GA714154", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA713764", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA GA713988", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA713989", "output": "38249999"}, {"text_input": "What is the hs code for PIGMENT BLEND (R) PB-52153 YELLOW (BHN BAKU PEWARNA TABLET) COA GA714028", "output": "32151990"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM ...(BHN BAKU PEWARNA TABLET) COA GA712357", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA714427", "output": "38249999"}, {"text_input": "What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE02202003", "output": "29362100"}, {"text_input": "What is the hs code for ANTIOXIDANT PREMIX FOR GUMMY (BHN BAKU MAKANAN) COA XW92208221", "output": "21069059"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0521060087,0522060048", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060048", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060048", "output": "29420000"}, {"text_input": "What is the hs code for PREGABALIN (BHN BAKU OBAT) COA PU3310921", "output": "29224900"}, {"text_input": "What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBNH220342", "output": "29221990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND COMPAREX (BHN BAKU KOSMETIK) COA COEX-041301", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND TEA TREE EXTRACT (BHN BAKU KOSMETIK) COA MASL-042221", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1220803", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-041052", "output": "13021950"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND TUMERIC ROOT EXTRACT (BHN BAKU KOSMETIK) COA WRGC-011682", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND CUCURBITA EXTRACT (BHN BAKU KOSMETIK) COA CMB-013042", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-050411", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND CACTUS EXTRACT (BHN BAKU KOSMETIK) COA CAB-012752", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-023132", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSFAC-011982", "output": "13021950"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-050921", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-012322", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND NEWAPLE (BHN BAKU KOSMETIK) COA NWPB-032421", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SENAS (POST BORDER) COA NASB-01112", "output": "21022090"}, {"text_input": "What is the hs code for FERROUS SULFATE, DRIED, POWDER, USP43 (BHN BAKU OBAT) COA 3115661", "output": "28332920"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPPLEMEN) COA WB22030330", "output": "29362100"}, {"text_input": "What is the hs code for CYTOFIX/CYTOPERM SOLN KIT (MEDIA TUK PENGEMBANGAN MIKRO ORGANISME), BATCH 2010108", "output": "38210090"}, {"text_input": "What is the hs code for HU TH1/TH2/TH17 CBA KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1344320", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2111967", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0128385", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1049084", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2066217", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2046564", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2095202,...", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1231987,..", "output": "38210090"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2097025", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2109248", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2104127", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SHIGELLA ANTIS POLY A1 LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2161354", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2104127", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2104103", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2053886", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2167252", "output": "38210090"}, {"text_input": "What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT 10X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2174091", "output": "38210090"}, {"text_input": "What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT 10X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2174091", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2104127", "output": "38210090"}, {"text_input": "What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 2204114", "output": "38249999"}, {"text_input": "What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830011016N", "output": "38249999"}, {"text_input": "What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830011016N", "output": "38249999"}, {"text_input": "What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 213916", "output": "29224900"}, {"text_input": "What is the hs code for DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834011326N", "output": "29224900"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2133702", "output": "38249999"}, {"text_input": "What is the hs code for KETOROLAC TROMETHAMOL/TROMETHAMINE (BHN BAKU OBAT) COA 22100269", "output": "29339990"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20220823", "output": "17029019"}, {"text_input": "What is the hs code for OXOMEMAZINE HYDROCHLORIDE (BHN BAKU OBAT) COA HXHCPQ001", "output": "29343000"}, {"text_input": "What is the hs code for OPACODE (R) MONOGRAMMING INK S-1-180000 WHITE (BHN BAKU PEWARNA TABLET) COA WP861109", "output": "32151990"}, {"text_input": "What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF (BHN BAKU SUPPLEMEN) COA UE02206017", "output": "32030010"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT22050011", "output": "32030010"}, {"text_input": "What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 220202", "output": "13021990"}, {"text_input": "What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 220202", "output": "13021990"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 220211,220402", "output": "13021990"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 220402", "output": "13021990"}, {"text_input": "What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 220215", "output": "13021990"}, {"text_input": "What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 220215", "output": "13021990"}, {"text_input": "What is the hs code for OPADRY (R) TF TITANIUM FREE MOISTURE BARRIER FILM..(BHN BAKU PEWARNA TABLET) COA GA716003", "output": "38249999"}, {"text_input": "What is the hs code for TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA S7257", "output": "29225090"}, {"text_input": "What is the hs code for SILYMARIN (BHN BAKU SUPLEMEN) COA 22S0033304", "output": "13021950"}, {"text_input": "What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 21S0191800", "output": "13021950"}, {"text_input": "What is the hs code for CENTELLA ASIATICA/PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 22S0097300", "output": "13021950"}, {"text_input": "What is the hs code for P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 21S0232100", "output": "13021990"}, {"text_input": "What is the hs code for BILBERRY (V. MYRTILLUS) ET EX 36PCT (BHN BAKU SUPLEMEN) COA 22S0183902", "output": "13021990"}, {"text_input": "What is the hs code for BILBERRY (V. MYRTILLUS) ET EX 36PCT (BHN BAKU SUPLEMEN) COA 22S0183902", "output": "13021990"}, {"text_input": "What is the hs code for BILBERRY (V. MYRTILLUS) ET EX 36PCT (BHN BAKU SUPLEMEN) COA 22S0183902", "output": "13021990"}, {"text_input": "What is the hs code for SILYMARIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 22B0054100", "output": "13021950"}, {"text_input": "What is the hs code for BUTCHERBROOM DRY HYDR EX.9-11 (BHN BAKU SUPLEMEN) COA 21B0051000", "output": "13021990"}, {"text_input": "What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA 0000080129", "output": "29309090"}, {"text_input": "What is the hs code for EUXYL K 720 CAN 10 KG (BHN BAKU KOSMETIK) COA 1584891", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) COA 1582604", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 903 CAN 10 KG (BHN BAKU KOSMETIK) COA 1581875", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 940 CAN 10 KG (BHN BAKU KOSMETIK) COA 1576588", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) COA 1586325", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) COA 1583461,1583499", "output": "38249999"}, {"text_input": "What is the hs code for SENSIDIN DO CAN 10 KG (BHN BAKU KOSMETIK) COA 1579588", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) COA 1584708", "output": "38249999"}, {"text_input": "What is the hs code for NEO EXTRAPONE (R) LEMON (BHN BAKU KOSMETIK) COA 10300019", "output": "13021950"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11220402", "output": "29362500"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02201482", "output": "29362700"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02201012,UE02201013", "output": "32041800"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040074", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060048", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040074", "output": "29420000"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02205054", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0421040082", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0922020031", "output": "29420000"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02205054", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060048", "output": "29420000"}, {"text_input": "What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0040349", "output": "29362500"}, {"text_input": "What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0922020031", "output": "29420000"}, {"text_input": "What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00765707,VE00766186", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P1F07QA000", "output": "29420000"}, {"text_input": "What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES2110623", "output": "29420000"}, {"text_input": "What is the hs code for PREMIX VITAMIN MINERAL CP (POST BORDER) COA XW92208088", "output": "21069059"}, {"text_input": "What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122201977", "output": "29054300"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) COA GA714382", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) COA GA714751", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G52990...(BHN BAKU PEWARNA TABLET) COA GA714383", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA708748", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131...(BHN BAKU PEWARNA TABLET) COA GA714385", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B84893...(BHN BAKU PEWARNA TABLET) COA GA714858", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) TF TITANIUM FREE MOISTURE BARRIER FILM...(BHN BAKU PEWARNA TABLET) COA GA714942", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G61097...(BHN BAKU PEWARNA TABLET) COA GA714612", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A18597..(BHN BAKU PEWARNA TABLET) COA GA714888", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A18597..(BHN BAKU PEWARNA TABLET) COA GA714888", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019...(BHN BAKU PEWARNA TABLET) COA GA714388", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) COA GA714751", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55041 ...(BHN BAKU PEWARNA TABLET) COA GA714430", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA GA715186", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G63147...(BHN BAKU PEWARNA TABLET) COA GA714947", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) EZ EASY SWALLOW FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA714763", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G57708...(BHN BAKU PEWARNA TABLET) COA GA713924", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014...(BHN BAKU PEWARNA TABLET) COA GA713990", "output": "38249999"}, {"text_input": "What is the hs code for PIGMENT BLEND (R) PB-66511 BROWN (BHN BAKU PEWARNA TABLET) COA GA715002", "output": "32151990"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A62337..(BHN BAKU PEWARNA TABLET) COA GA714953", "output": "39061090"}, {"text_input": "What is the hs code for ESOMEPRAZOLE MAGNESIUM USP (BHN BAKU OBAT) COA ESM/2208305", "output": "29333990"}, {"text_input": "What is the hs code for OPALUX (R) OPAQUE COLOR COATING CONCENTRATE AS-R-... (BHN BAKU PEWARNA TABLET) COA DT735075", "output": "32151990"}, {"text_input": "What is the hs code for OPACODE (R) MONOGRAMMING INK S-1-277001 BLACK (BHN BAKU PEWARNA TABLET) COA DT734633", "output": "32151990"}, {"text_input": "What is the hs code for OPALUX (R) OPAQUE COLOR COATING CONCENTRATE AS-1537 PINK (BHN BAKU PEWARNA TABLET) COA DT735076", "output": "32151990"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLYPREGELATINIZED MAIZE...(BHN BAKU PEWARNA TABLET) COA IN547410", "output": "35051010"}, {"text_input": "What is the hs code for SODIUM ACID PYROPHOSPHATE FOOD GRADE (BHN BAKU MAKANAN) COA 09220715", "output": "28353990"}, {"text_input": "What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105713322", "output": "17021100"}, {"text_input": "What is the hs code for CAPSULAC (R) 60 (BHN BAKU OBAT) COA L100412722", "output": "17021100"}, {"text_input": "What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104313222", "output": "17021100"}, {"text_input": "What is the hs code for VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 122201661", "output": "28365010"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN547853", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN547966", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN547860", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN547855", "output": "35051010"}, {"text_input": "What is the hs code for VIT MIN MENGNIU UHT MILK V5 (BHN BAKU MAKANAN) COA XW92208569", "output": "21069059"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ20510674", "output": "29362300"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22030063", "output": "29362400"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT22010007", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT22010007", "output": "29362800"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210142,0708210144,0708210145,0708210146", "output": "29420000"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000205405,0000205406", "output": "29362900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22050200", "output": "29362800"}, {"text_input": "What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS5860322,HS5870322", "output": "29420000"}, {"text_input": "What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02109811", "output": "29362400"}, {"text_input": "What is the hs code for NYSTATIN MICRONIZED (BHN BAKU OBAT) COA C132093", "output": "29419000"}, {"text_input": "What is the hs code for FLUOROMETHOLONE MICRONISED USP BP JP (BHN BAKU OBAT) COA 2201540844", "output": "29372200"}, {"text_input": "What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) COA 208162", "output": "38249999"}, {"text_input": "What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 207177", "output": "38249999"}, {"text_input": "What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) COA 208280,208281", "output": "38249999"}, {"text_input": "What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) COA 208280", "output": "38249999"}, {"text_input": "What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) COA 207942", "output": "38249999"}, {"text_input": "What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) COA 208244", "output": "38249999"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP24122", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA EXCIPIENT 0/13...(BHN BAKU SUPPLEMEN) COA MTP10222,MTP17022,MTP16022, SAMPLE NO...", "output": "28363000"}, {"text_input": "What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000080185", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000080186", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H105 83 PCT (BHN BAKU KOSMETIK) COA 0000080187", "output": "29309090"}, {"text_input": "What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA 20220816", "output": "17023010"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS (BHN BAKU SUPLEMEN) COA 3AX2209012,1AX2208512", "output": "29181400"}, {"text_input": "What is the hs code for WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK) COA EG138-210901", "output": "38249999"}, {"text_input": "What is the hs code for WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK) COA EG138-220801", "output": "38249999"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO220202", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) COA EG543-220702", "output": "38249999"}, {"text_input": "What is the hs code for WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK) COA EG138-220801", "output": "38249999"}, {"text_input": "What is the hs code for ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (SB) (BHN BAKU KOSMETIK) COA ROSD220603-BIO", "output": "38249999"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2203641990", "output": "29372900"}, {"text_input": "What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE EP/USP (BHN BAKU OBAT) COA NEDNA220811", "output": "29372200"}, {"text_input": "What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 20701,20712,20727", "output": "38029090"}, {"text_input": "What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA MLAH0310622", "output": "29341000"}, {"text_input": "What is the hs code for LIGHT MAGNESIUM CARBONATE (BHN BAKU MAKANAN) COA 3122338", "output": "28369990"}, {"text_input": "What is the hs code for TRIPOTASSIUM CITRATE 1-HYDRATE, CRYST.,PH.EUR.10 ED.USP43 (BHN BAKU OBAT) COA 3122359", "output": "29181400"}, {"text_input": "What is the hs code for COPPER SULFATE, POWDER, PH.EUR.10.ED. (BHN BAKU OBAT) COA 3111010", "output": "28332500"}, {"text_input": "What is the hs code for CHOLINE L-BITARTRATE (BAHAN BAKU OBAT) COA 3025593", "output": "29231000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202002,122202003", "output": "28363000"}, {"text_input": "What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA715083", "output": "39061090"}, {"text_input": "What is the hs code for CITRIC ACID MONOHYDRATE (CAM) GRANULAR 8-40 MESH E330 (BHN BAKU KOSMETIK) COA 1MT2105030", "output": "29181400"}, {"text_input": "What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) COA 7766052", "output": "38249999"}, {"text_input": "What is the hs code for PALMEROL 1498 MYRISTYL ALCOHOL/MB (BHN BAKU KOSMETIK) COA 1A02022", "output": "29051900"}, {"text_input": "What is the hs code for IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA 477/22", "output": "38029090"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB060722", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB060722", "output": "39123900"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B290622", "output": "39123900"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B290622", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LG120822", "output": "39123900"}, {"text_input": "What is the hs code for BILBERRY (V. MYRTILLUS) ET EX 36PCT (BHN BAKU SUPLEMEN) COA 22S0208500", "output": "13021990"}, {"text_input": "What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 22100448,22100449", "output": "29221990"}, {"text_input": "What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340399,B340401,B340419", "output": "29419000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201850,122201851", "output": "28363000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201851", "output": "28363000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202003,122202017", "output": "28363000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202015,122202016", "output": "28363000"}, {"text_input": "What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512148,G02512236", "output": "47069200"}, {"text_input": "What is the hs code for NONIVAMIDE (SYNTHETIC CAPSAICIN) (BHN BAKU KOSMETIK) COA 20220905", "output": "29241990"}, {"text_input": "What is the hs code for CEFOTAXIME SODIUM (BHN BAKU OBAT) COA 3042203058", "output": "29419000"}, {"text_input": "What is the hs code for ESCITALOPRAM OXALATE (BHN BAKU OBAT) COA 5689-21-013", "output": "29329900"}, {"text_input": "What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-220705", "output": "29397900"}, {"text_input": "What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) COA 321CAA0023", "output": "38249999"}, {"text_input": "What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA F02921UG", "output": "29053200"}, {"text_input": "What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-005-Z", "output": "13021990"}, {"text_input": "What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-005-Z", "output": "13021990"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL02205481", "output": "29362700"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02202020,UE02203029", "output": "32041800"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ20410652", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN 5-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2111125 S/D UEB2111127", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN PREMIX MILK POWDER FOR ADULTS (BHN BAKU MAKANAN) COA XW92208037", "output": "21069059"}, {"text_input": "What is the hs code for STAY-C (R) 50 (POST BORDER) COA UE02201002,UE02202011", "output": "29362700"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060043,0522060042", "output": "29420000"}, {"text_input": "What is the hs code for MANGANESE(II)-SULFATE 1-HYDRATE (BHN BAKU OBAT) COA 3122126", "output": "29181600"}, {"text_input": "What is the hs code for COPPER SULFATE, POWDER, PH.EUR.10.ED (BHN BAKU OBAT) COA 3104245-01, SAMPLE NO COMMERCIAL VALUE", "output": "28332500"}, {"text_input": "What is the hs code for POTASSIUM IODIDE AND CARRIER (BHN BAKU OBAT) COA 3117712, SAMPLE NO COMMERCIAL VALUE", "output": "28276000"}, {"text_input": "What is the hs code for VIT. A PALM. 1.0 M + VIT. D3 100'000 (BHN BAKU MAKANAN) COA UT22040146", "output": "29362100"}, {"text_input": "What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02208531", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN B12 CRYST FOOD GRADE (BHN BAKU KOSMETIK) COA 012203015", "output": "29362600"}, {"text_input": "What is the hs code for BACTO PEPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2173492", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1280083", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1280083", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2420322", "output": "38210090"}, {"text_input": "What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2094440", "output": "38210090"}, {"text_input": "What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1285442", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1075037", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1075037", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1075037", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1110920", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1110920", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1110920", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1110920", "output": "38210090"}, {"text_input": "What is the hs code for ERDOSTEINE (BAHAN BAKU OBAT) COA EDS/CC1190B", "output": "29349990"}, {"text_input": "What is the hs code for LABRAFIL M 1944 CS (BHN BAKU SUPPLEMEN) COA 190659", "output": "28399000"}, {"text_input": "What is the hs code for TEFOSE 63 BF (BHN BAKU SUPPLEMEN) COA 190648", "output": "28399000"}, {"text_input": "What is the hs code for TEFOSE 63 BF (BHN BAKU SUPPLEMEN) COA 190657", "output": "28399000"}, {"text_input": "What is the hs code for TRANSCUTOL P BF (BHN BAKU SUPPLEMEN) COA 190825", "output": "28399000"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40 BRIX) CSB (BHN BAKU KOSMETIK) COA 01/22GL4", "output": "28399000"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40 BRIX) CSB (BHN BAKU KOSMETIK) COA 01/22GL4, SAMPLE NO COMMERCIAL VALUE", "output": "28399000"}, {"text_input": "What is the hs code for CETYL PALMITATE PELLETS CAR (BHN BAKU SUPPLEMEN) COA 186578", "output": "28399000"}, {"text_input": "What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO BP (BHN BAKU KOSMETIK) COA 189962", "output": "28399000"}, {"text_input": "What is the hs code for MONOPROPYLENE GLYCOL (BHN BAKU KOSMETIK) COA PG(S)220813", "output": "29053200"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) COA GA716714", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) COA GA716702", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-7003...(BHN BAKU PEWARNA TABLET) COA GA716404", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55041 RED (BHN BAKU PEWARNA TABLET) COA GA716161", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA GA716335", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K580000...(BHN BAKU PEWARNA TABLET) COA GA716542", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA716394", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014...(BHN BAKU PEWARNA TABLET) COA GA716261", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620041...(BHN BAKU PEWARNA TABLET) COA GA716262", "output": "38249999"}, {"text_input": "What is the hs code for PIGMENT BLEND (R) PB-52366 YELLOW (BHN BAKU PEWARNA TABLET) COA GA714306", "output": "32151990"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A...(BHN BAKU PEWARNA TABLET) COA GA714974", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 85G620014...(BHN BAKU PEWARNA TABLET) COA GA715069", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F19250...(BHN BAKU PEWARNA TABLET) COA GA715260", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE BARRIER...(BHN BAKU PEWARNA TABLET) COA GA716335", "output": "38249999"}, {"text_input": "What is the hs code for METHYLCOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/0822025,SLL/MC/0822025", "output": "29362600"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA M4D120", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA M4D120,M9G127", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA M9G127", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA M9G127", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND COMPAREX (BHN BAKU KOSMETIK) COA COEX-013082", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012682", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND DM 3 COMPLEX (BHN BAKU KOSMETIK) COA ANFE-010292", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-040572", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012682", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012682", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND FERMENTED KOREAN SOYBEAN SOLUTION (BHN BAKU KOSMETIK) COA TWAW-012692", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-112092", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA M9G127", "output": "28321000"}, {"text_input": "What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-220912", "output": "29061300"}, {"text_input": "What is the hs code for L-GLUTAMIC ACID (FCC GRADE) PURITY 99PCT UP (BHN BAKU MAKANAN) COA 1000094531/220908", "output": "29224900"}, {"text_input": "What is the hs code for HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2520822", "output": "29397900"}, {"text_input": "What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02208530", "output": "29362700"}, {"text_input": "What is the hs code for CLOPIDOGREL BISULFATE USP 44 (BHN BAKU OBAT) COA CLOPI/12060196", "output": "29349990"}, {"text_input": "What is the hs code for GREEN TEA FAIRTRADE DISTILLATE (BHN BAKU KOSMETIK) COA 22070268", "output": "38249999"}, {"text_input": "What is the hs code for MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL220912,MCCPOL220915", "output": "29094900"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG220901", "output": "29362700"}, {"text_input": "What is the hs code for PROMOIS SILK-1000 (BHN BAKU KOSMETIK) COA GFI", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA GFC", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA GGI", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA GGI", "output": "38249999"}, {"text_input": "What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA GDB", "output": "38249999"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA220901", "output": "38249999"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HEA220901", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) COA EG543-220702", "output": "38249999"}, {"text_input": "What is the hs code for UNIMER U-151 (BHN BAKU KOSMETIK) COA VO00005211", "output": "39059990"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464151491", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464151491", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180K9G001", "output": "39123900"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA GA717458", "output": "38249999"}, {"text_input": "What is the hs code for ESOMEPRAZOLE SODIUM STERILE (BAHAN BAKU OBAT) COA SI/EPZ/00050722", "output": "29333990"}, {"text_input": "What is the hs code for PANTOPRAZOLE SODIUM (STERILE) BAHAN BAKU OBAT SI/PPZ/00890822", "output": "29333990"}, {"text_input": "What is the hs code for CETYL PALMITATE PELLETS CAR (BHN BAKU OBAT) COA 191445", "output": "28399000"}, {"text_input": "What is the hs code for PRECIROL ATO 5 CAR (BHN BAKU OBAT) COA 190960", "output": "28399000"}, {"text_input": "What is the hs code for LACTOFIL MOIST CAR (BHN BAKU OBAT) COA Z13360024", "output": "28399000"}, {"text_input": "What is the hs code for CHRONO CHARDY (BHN BAKU KOSMETIK) COA 220039", "output": "13021990"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 221569", "output": "13021990"}, {"text_input": "What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 221479", "output": "13021990"}, {"text_input": "What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 221726,222375", "output": "29329900"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN547845", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN547842", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN547854", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN547849", "output": "35051010"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180K9G001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA D011LBLL03", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E4M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180M26011", "output": "39123900"}, {"text_input": "What is the hs code for C47-051 SUNCROMA TITANIUM DIOXIDE (BHN BAKU KOSMETIK) COA D0XT06", "output": "32061110"}, {"text_input": "What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA 2210060792", "output": "29362600"}, {"text_input": "What is the hs code for SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA L202209-018", "output": "35040000"}, {"text_input": "What is the hs code for MINERAL PREMIX MILK POWDER FOR ADULTS V2 (BHN BAKU MAKANAN) COA XW92208575,XW92208576", "output": "21069059"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11220701,QZ11220706", "output": "29362500"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12204016", "output": "29362900"}, {"text_input": "What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00766186", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010078", "output": "29420000"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000205406,0000205407", "output": "29362900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22050186", "output": "29362800"}, {"text_input": "What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001670395", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0922020031", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0421040082", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS5870322", "output": "29420000"}, {"text_input": "What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF22165008", "output": "29420000"}, {"text_input": "What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0040349", "output": "29362500"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22050186", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22050200", "output": "29362800"}, {"text_input": "What is the hs code for NUTRASWEETM NATURAL (BHN BAKU MAKANAN) COA MAM2209181", "output": "29389000"}, {"text_input": "What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP20722,MTP20622", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP21922", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA API HIGH PURITY 0/13... (BHN BAKU SUPPLEMEN) COA MTP08422,MTP18422, SAMPLE NO COMM", "output": "28363000"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22080652,WB22080655", "output": "29362100"}, {"text_input": "What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799031197N", "output": "38249999"}, {"text_input": "What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829011471N", "output": "29224900"}, {"text_input": "What is the hs code for BIOPHILIC TM H MB (BHN BAKU KOSMETIK) COA 2206902", "output": "38249999"}, {"text_input": "What is the hs code for GREYVERSE TM (BHN BAKU KOSMETIK) COA 833011270N", "output": "29224900"}, {"text_input": "What is the hs code for HELIOFEEL TM 22 MB (BHN BAKU KOSMETIK) COA 2131301", "output": "38249999"}, {"text_input": "What is the hs code for LANABLUE TM PARABEN FREE (BHN BAKU KOSMETIK) COA 788021070N", "output": "38249999"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019877N", "output": "38249999"}, {"text_input": "What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029946N", "output": "13021990"}, {"text_input": "What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829011471N", "output": "29224900"}, {"text_input": "What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) COA 830011026N", "output": "38249999"}, {"text_input": "What is the hs code for DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834011326N", "output": "29224900"}, {"text_input": "What is the hs code for EXO-P TM (BHN BAKU KOSMETIK) COA 715031272N", "output": "38249999"}, {"text_input": "What is the hs code for LANACHRYS 2B PF (PRESERVATIVE-3379305-P1K (BHN BAKU KOSMETIK) COA 793051022N", "output": "38249999"}, {"text_input": "What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029946N", "output": "13021990"}, {"text_input": "What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029946N", "output": "13021990"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122201894,122202015", "output": "28363000"}, {"text_input": "What is the hs code for LIGHT MAGNESIUM CARBONATE POWDER, BP 2021 (BHN BAKU OBAT) COA 3122338", "output": "28369990"}, {"text_input": "What is the hs code for KP-561P (16KG) (BHN BAKU KOSMETIK) COA 209151", "output": "38249999"}, {"text_input": "What is the hs code for KP-561P (16KG) (BHN BAKU KOSMETIK) COA 209151", "output": "38249999"}, {"text_input": "What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) COA 209248", "output": "38249999"}, {"text_input": "What is the hs code for KF-54HV (18KG) (BHN BAKU KOSMETIK) COA 209046", "output": "38249999"}, {"text_input": "What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 208179", "output": "38249999"}, {"text_input": "What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) COA 208280", "output": "38249999"}, {"text_input": "What is the hs code for KP-561P (16KG) (BHN BAKU KOSMETIK) COA 209151", "output": "38249999"}, {"text_input": "What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) COA 209250", "output": "38249999"}, {"text_input": "What is the hs code for VITAMIN E (BHN BAKU KOSMETIK) COA 201202206204", "output": "29362800"}, {"text_input": "What is the hs code for BOTTLE PHENOL RED LACTOSE BR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2215070", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2228563", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 2221937", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2061186", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2081022", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2158101", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2137560", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1215037", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2157420", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2067255", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1257857", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2158101", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2143804", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2158101", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALT EXTRACT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1229957", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2145565", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ CAMPY CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2173803", "output": "38210090"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1340967,.", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2066085", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2038654", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1350021", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2034966", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2046617,...", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2074958,2172773", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1272665,...", "output": "38210090"}, {"text_input": "What is the hs code for TSA TM WLP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2199934", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BIGGY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1166930", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MOTILITY TEST MEDIUM BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2067250", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LYSINE DECARBOXYLASE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2104109", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MICRO INOCULUM BROTH 500 G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1075951", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 9337678", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE CLED AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2214292", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1348303", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1216783", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2088727", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MICRO ASSAY CULTURE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335689", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRAIN HEART INFUSION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2217600", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE YEAST CARBON BASE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2137773", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE OF BASAL MEDIUM 500GR(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1223658", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1264672", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 2179372", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1350021", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2034966", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2074156", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1188089,2214259", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2143794", "output": "38210090"}, {"text_input": "What is the hs code for METHOCEL E5 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2444151392", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464186398", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL A15 PREMIUM LV METHYLCELLULOSE...(BHN BAKU PEWARNA TABLET) COA D180M11022", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL A15 PREMIUM LV METHYLCELLULOSE...(BHN BAKU PEWARNA TABLET) COA D180L7E022", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL A15 PREMIUM LV METHYLCELLULOSE...(BHN BAKU PEWARNA TABLET) COA D180L6S021", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL A15 PREMIUM LV METHYLCELLULOSE...(BHN BAKU PEWARNA TABLET) COA D180LCO021", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL A15 PREMIUM LV METHYLCELLULOSE...(BHN BAKU PEWARNA TABLET) COA D180M11022", "output": "39123900"}, {"text_input": "What is the hs code for BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2192310", "output": "38210090"}, {"text_input": "What is the hs code for DEXTROSE MONOHYDRATE (BHN BAKU MAKANAN) COA 20220905", "output": "17023010"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP22084116,XP22084117", "output": "29211900"}, {"text_input": "What is the hs code for BARCROFT TM AL HYD GEL LV13, USP (BHN BAKU OBAT) COA 102213046", "output": "28183000"}, {"text_input": "What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102269002,102269005", "output": "28161000"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2192755,..", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2188687", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2214155", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1049084", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2090208,...", "output": "38210090"}, {"text_input": "What is the hs code for VIAL ISOVITALEX ENRICHMENT 2ML 5EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2157015", "output": "38210090"}, {"text_input": "What is the hs code for VIAL E COLI H ANTISERUM H7 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2125032", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2111967", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2076212", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1344136", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SHIGELLA ANTIS POLY A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2125067", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1049084", "output": "38210090"}, {"text_input": "What is the hs code for VIAL E COLI O ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2125078", "output": "38210090"}, {"text_input": "What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2152411", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2109248", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2104127", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2139402", "output": "38210090"}, {"text_input": "What is the hs code for HU TGF BTA1 CBA FLEX SET B6 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2109995", "output": "38210090"}, {"text_input": "What is the hs code for HU IL-8 CBA FLEX SET A9 100TST (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 1295314", "output": "38210090"}, {"text_input": "What is the hs code for HU G-CSF CBA FLEX SET C8 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2168172", "output": "38210090"}, {"text_input": "What is the hs code for HU ANGIOGENIN CBA FLEX SET C4 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2007957", "output": "38210090"}, {"text_input": "What is the hs code for HU BASIC FGF CBA FLEX SET C5 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1253781", "output": "38210090"}, {"text_input": "What is the hs code for HU IL-10 CBA FLEX SET B7 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1165999", "output": "38210090"}, {"text_input": "What is the hs code for HU IL-6 CBA FLEX SET A7 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1337708", "output": "38210090"}, {"text_input": "What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052234", "output": "47063000"}, {"text_input": "What is the hs code for EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300062,10300063", "output": "13021950"}, {"text_input": "What is the hs code for EXTRAPONE (R) CUCUMBER GW (BHN BAKU KOSMETIK) COA 10300025", "output": "38249999"}, {"text_input": "What is the hs code for EXTRAPONE (R) SEA EXTRACTS N (BHN BAKU KOSMETIK) COA 10300036", "output": "13021950"}, {"text_input": "What is the hs code for EXTRAPONE (R) GINSENG (BHN BAKU KOSMETIK) COA 10300047", "output": "13021940"}, {"text_input": "What is the hs code for ACTIPONE (R) WHITE TEA GW (BHN BAKU KOSMETIK) COA 10300051", "output": "13021950"}, {"text_input": "What is the hs code for PARSOL SHIELD (BHN BAKU MAKANAN) COA 0822010200", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0722010027", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010231,0822010232", "output": "29420000"}, {"text_input": "What is the hs code for D-PANTHENOL 75 L (POST BORDER) COA TL02204312", "output": "29362400"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22050200", "output": "29362800"}, {"text_input": "What is the hs code for PREMIX VMP JELLY (BHN BAKU MAKANAN) COA XW92208641", "output": "21069059"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02206013", "output": "29362900"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ20712237", "output": "29362200"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02207333", "output": "29362800"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT22020005", "output": "32041800"}, {"text_input": "What is the hs code for NIACINAMIDE FCC (POST BORDER) COA 0000206956", "output": "29362900"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (POST BORDER) COA UQ20712237", "output": "29362200"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE02206013", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02206013", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02206013", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (POST BORDER) COA UT22030003", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02206013", "output": "29362900"}, {"text_input": "What is the hs code for MAGNESIUM CARBONATE, HEAVY POWDER, PH.EUR.10.ED... (POST BORDER) COA 3119795", "output": "28369990"}, {"text_input": "What is the hs code for CALCIUM ACETATE CALCIUM ACETATE (BHN BAKU OBAT) COA 3114759", "output": "29152990"}, {"text_input": "What is the hs code for ZINC SULFATE 1-HYDRATE POWDER, USP 43, FCC 12 (BHN BAKU OBAT) COA 3080021, SAMPLE NO COMMERCIAL", "output": "28332920"}, {"text_input": "What is the hs code for ZINC CITRATE POWDER, USP 43 (BHN BAKU OBAT) COA , 3108752 SAMPLE NO COMMERCIAL VALUE", "output": "29181590"}, {"text_input": "What is the hs code for OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA708748", "output": "38249999"}, {"text_input": "What is the hs code for PHENYTOIN SODIUM (BHN BAKU OBAT) COA 22100475", "output": "29329900"}, {"text_input": "What is the hs code for DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2209001", "output": "28352510"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-021152,AACN-041992", "output": "29224900"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-040572", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012682,BHA-020192", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-021421", "output": "13021950"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA M9G127", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-072721", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1220921", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) COA MSEEC-012792", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-041052", "output": "13021950"}, {"text_input": "What is the hs code for NOMEGESTROL ACETATE (BHN BAKU OBAT) COA NB1923", "output": "29372300"}, {"text_input": "What is the hs code for BUDESONIDE MICRONIZED (BHN BAKU OBAT) COA NB2835M", "output": "29372900"}, {"text_input": "What is the hs code for LAKE PIGMENT (R) 5396 ERYTHROSINE ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP844565:1", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT (R) 6010 D&C YELLOW 10 ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP853290:BB4288", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5177 FD&C YELLOW 5/TARTRA...(BHN BAKU PEWARNA TABLET) COA WP852908:BB3942", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C YELLOW 6/SUNSET...(BHN BAKU PEWARNA TABLET) COA WP855960:BB6383", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5177 FD&C YELLOW 5/TARTRA...(BHN BAKU PEWARNA TABLET) COA WP852908:BB3942", "output": "32151990"}, {"text_input": "What is the hs code for PHTHALAVIN (R) ENTERIC COATING POLYMER 2138 CLEAR (BHN BAKU PEWARNA TABLET) COA WP858828", "output": "39059990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C YELLOW 6/SUNSET...(BHN BAKU PEWARNA TABLET) COA WP855960:BB6383", "output": "32151990"}, {"text_input": "What is the hs code for MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT22060017", "output": "29362500"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS PH (BHN BAKU SUPPLEMEN) COA UT22040004", "output": "29362900"}, {"text_input": "What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE02202010", "output": "29362100"}, {"text_input": "What is the hs code for MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT22060017", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT22060104", "output": "29362100"}, {"text_input": "What is the hs code for GENIVIDA(TM) TG (BHN BAKU SUPPLEMEN) COA UT21100004", "output": "29329900"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE, TYPE 100 (BHN BAKU SUPPLEMEN) COA UT22040064", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT22040062", "output": "29362100"}, {"text_input": "What is the hs code for OMEPRAZOLE PELLETS -8,5PCT (BHN BAKU OBAT) COA OP-0916 09 22 S/D OP-0921 09 22", "output": "30039000"}, {"text_input": "What is the hs code for AQUACOAT ECD-30 ETHYLCELLULOSE... (BHN BAKU PEWARNA TABLET) COA 2174151144", "output": "39123900"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) COA GA717086", "output": "38249999"}, {"text_input": "What is the hs code for PIGMENT BLEND (R) PB-21158 GREEN (BHN BAKU PEWARNA TABLET) COA GA717506", "output": "32151990"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86674...(BHN BAKU PEWARNA TABLET) COA GA717088", "output": "38249999"}, {"text_input": "What is the hs code for PIGMENT BLEND (R) PB-665012 BROWN (BHN BAKU PEWARNA TABLET) COA GA717507", "output": "32151990"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC AQUEOUS ACRYLIC ENTERIC... (BHN BAKU PEWARNA TABLET) COA GA714750", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC AQUEOUS ACRYLIC ENTERIC... (BHN BAKU PEWARNA TABLET) COA GA718189", "output": "39061090"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 22B0056100", "output": "13021990"}, {"text_input": "What is the hs code for NUTRASWEETM NATURAL (BHN BAKU MAKANAN) COA MAM2209233", "output": "29389000"}, {"text_input": "What is the hs code for PRAYPHOS DKP FG 25K BG (BHN BAKU KOSMETIK) COA 2223032", "output": "28352400"}, {"text_input": "What is the hs code for MONOPOT PHOS MKP FG 25K BG (BHN BAKU KOSMETIK) COA 22-160-01", "output": "29420000"}, {"text_input": "What is the hs code for BACTO PEPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2173492", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1280083", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2420322", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484077", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH2420322", "output": "38210090"}, {"text_input": "What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1285442", "output": "38210090"}, {"text_input": "What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2173480", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1110920", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1110920", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1110920", "output": "38210090"}, {"text_input": "What is the hs code for CORTISONE ACETATE MICRONISED PH.EUR JP (BHN BAKU SUPPLEMEN) COA 2101024053", "output": "29372900"}, {"text_input": "What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340406,B340407", "output": "29419000"}, {"text_input": "What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334843,B334844", "output": "29419000"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU SUPLEMEN) COA UJ234,UJ235", "output": "29181400"}, {"text_input": "What is the hs code for JAGUAR HP 105 SGI 25KG CARDBOARD CARTON (BHN BAKU KOSMETIK) COA H2205090H", "output": "38249999"}, {"text_input": "What is the hs code for SORBITOL SOLUTION 70 PCT CRYSTALLINE (BHN BAKU KOSMETIK) COA 2223P379", "output": "29054400"}, {"text_input": "What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) COA 210284", "output": "38249999"}, {"text_input": "What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) COA 209949", "output": "38249999"}, {"text_input": "What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) COA 210254", "output": "38249999"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA158227,ROA135226,ROA178227,ROA..", "output": "28363000"}, {"text_input": "What is the hs code for BROMPHENIRAMINE MALEATE USP43 (BHN BAKU OBAT) COA G2210K005", "output": "29333990"}, {"text_input": "What is the hs code for 985-L-MENTHOL CRYSTALS INDIAN NATURAL (BHN BAKU KOSMETIK) COA NFPL-MEN-21-022", "output": "29061100"}, {"text_input": "What is the hs code for ACTIPONE (R) CAMU CAMU ET (BHN BAKU KOSMETIK) COA 10300030", "output": "13021950"}, {"text_input": "What is the hs code for METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/12090505", "output": "29332900"}, {"text_input": "What is the hs code for SODIUM VALPROATE (BAHAN BAKU OBAT) COA 456740,456741", "output": "29159090"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM II COMPLETE FILM...(BHN BAKU PEWARNA TABLET) COA GA718212", "output": "38249999"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP22094319,XP22094320", "output": "29211900"}, {"text_input": "What is the hs code for GLICLAZIDE (BHN BAKE OBAT) COA 2240001697", "output": "29359000"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040031", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040031", "output": "29420000"}, {"text_input": "What is the hs code for MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 2008-1, 2336-1", "output": "34024990"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22050221", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500 AF (BHN BAKU SUPPLEMEN) COA WB21120056", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500 AF (BHN BAKU SUPPLEMEN) COA WB21120054", "output": "29362100"}, {"text_input": "What is the hs code for MATCHA ( BHN BAKU KOSMETIK) COA CSP 22006 EOU", "output": "38249999"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202004,122202089", "output": "28363000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202004,122202017", "output": "28363000"}, {"text_input": "What is the hs code for PIPERONYL BUTOXIDE (BHN BAKU UTK PAKAN TERNAK) COA 20220921", "output": "29329900"}, {"text_input": "What is the hs code for PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) COA PH03190622,PH04190622,PH05190722", "output": "38249999"}, {"text_input": "What is the hs code for DOPAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 22100464", "output": "29222900"}, {"text_input": "What is the hs code for VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 122201661", "output": "28365010"}, {"text_input": "What is the hs code for PHARMABURST (R) 500 (BHN BAKU OBAT) COA 122201695", "output": "21069099"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0221040021,0221040027, SAMPLE NO COMMERCIAL VALUE", "output": "29420000"}, {"text_input": "What is the hs code for PIROXICAM (BAHAN BAKU OBAT) COA PRX2022006M", "output": "29349990"}, {"text_input": "What is the hs code for LIDOCAINE BASE (BHN BAKU OBAT) COA 200219", "output": "29242990"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22080642", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22080641,WB22080644,WB22080645", "output": "29362100"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20220701", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPPLEMEN) COA WB22030328", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPPLEMEN) COA WB22030328", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPPLEMEN) COA WB22030328", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22010634,WB22080638,WB22080643", "output": "29362100"}, {"text_input": "What is the hs code for PERMETHRIN PHARMA GRADE (BHN BAKU OBAT) COA 225046016", "output": "29163990"}, {"text_input": "What is the hs code for PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3354848", "output": "33029000"}, {"text_input": "What is the hs code for MAGNESIUM CHLORIDE 6-HYDRATE, CRYST, USP 43 (BHN BAKU KOSMETIK) COA 3105684", "output": "28273100"}, {"text_input": "What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 22100446,22100449", "output": "29221990"}, {"text_input": "What is the hs code for AHCC-PROFESSIONAL-FG (BHN BAKU OBAT) COA 209FM01", "output": "21069099"}, {"text_input": "What is the hs code for PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PI22020009", "output": "29349920"}, {"text_input": "What is the hs code for DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2209001", "output": "28352510"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP25722", "output": "28363000"}, {"text_input": "What is the hs code for CATECHINS TEAVIGO 4 KG (BHN BAKU KOSMETIK) COA 210111", "output": "21012020"}, {"text_input": "What is the hs code for CEFTIZOXIME SODIUM (BHN BAKU OBAT) COA A300100", "output": "29419000"}, {"text_input": "What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA B100200", "output": "29419000"}, {"text_input": "What is the hs code for BAYPURE CX 100 SOLID G 25K BAG (BHN BAKU KOSMETIK) COA CHASMZ0076", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) COA 1586166", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 720 CAN 10 KG (BHN BAKU KOSMETIK) COA 1584891", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) COA 1583793", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 903 CAN 10 KG (BHN BAKU KOSMETIK) COA 1581875", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) COA 1587197,1586619", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) COA 1584779", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 10 CAN 10 KG (BHN BAKU KOSMETIK) COA 1580238", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) COA 1586811", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) COA 1584779,1584813", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) COA 1586811", "output": "38249999"}, {"text_input": "What is the hs code for SENSIDIN DO CAN 10 KG (BHN BAKU KOSMETIK) COA 1581131", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 903 CAN 10 KG (BHN BAKU KOSMETIK) COA 1581876", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) COA 1586166", "output": "38249999"}, {"text_input": "What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2022051306", "output": "21012020"}, {"text_input": "What is the hs code for BETAGUARD - 20 LIT (BHN BAKU PAKAN TERNAK) COA 22092808", "output": "30049099"}, {"text_input": "What is the hs code for BETA-Q 1 LIT (BHN BAKU PAKAN TERNAK) COA 22091188", "output": "30049099"}, {"text_input": "What is the hs code for BETA-Q 20 LIT (BHN BAKU PAKAN TERNAK) COA 22091187", "output": "30049099"}, {"text_input": "What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512236", "output": "47069200"}, {"text_input": "What is the hs code for PANTOPRAZOLE SODIUM (STERILE) (BAHAN BAKU OBAT) COA SI/PPZ/01151022", "output": "29333990"}, {"text_input": "What is the hs code for NORIT SX SUPER E 153 (BHN BAKU KOSMETIK) COA 5254097", "output": "38021010"}, {"text_input": "What is the hs code for MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50480", "output": "29061100"}, {"text_input": "What is the hs code for PAPER FIBER DRUM (14 X 22) (REPLACEMENT DRUMS)", "output": "48192000"}, {"text_input": "What is the hs code for SILDENAFIL CITRATE USP (BHN BAKU OBAT) COA SLC 063 10 22", "output": "29335990"}, {"text_input": "What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512236", "output": "47069200"}, {"text_input": "What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052231,G05052234,G05052237", "output": "47063000"}, {"text_input": "What is the hs code for VACC. MYRT./PINUS PIN. DRY EX. (BHN BAKU SUPLEMEN) COA 22S0159100", "output": "13021950"}, {"text_input": "What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 21S0191800", "output": "13021950"}, {"text_input": "What is the hs code for VACCINIUM MYSTILLUS DRY EX. (BHN BAKU SUPLEMEN) COA 21S0314800", "output": "13021990"}, {"text_input": "What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334835,B334837,B334838", "output": "29419000"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) COA SH663016", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-22-7719...(BHN BAKU PEWARNA TABLET) COA SH663015", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE BARRIER...(BHN BAKU PEWARNA TABLET) COA SH663014", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC... (BHN BAKU PEWARNA TABLET) COA GA718788", "output": "39061090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA M9G127", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-062692", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-030962", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011702", "output": "13021950"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-671782", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA M9G127", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-022122", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-041052", "output": "13021950"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1220921", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-013092", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-062692", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-671782", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-050502", "output": "13021950"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-041992,AACN-051702", "output": "29224900"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-061302", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-671782", "output": "13021990"}, {"text_input": "What is the hs code for TRIAMCINOLONE ACETONIDE MICRONIZED (BHN BAKU OBAT) COA NC1624M", "output": "29372200"}, {"text_input": "What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) COA 208165", "output": "38249999"}, {"text_input": "What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) COA 209281", "output": "38249999"}, {"text_input": "What is the hs code for VITAMIN MINERAL PREMIX - JELLY POWDER V2 (BHN BAKU MAKANAN) COA XW92210015", "output": "21069059"}, {"text_input": "What is the hs code for NUTRASWEETM NATURAL (BHN BAKU MAKANAN) COA MAM2209262", "output": "29389000"}, {"text_input": "What is the hs code for HERBAL EXTRACTS (GARCINIA CAMBOGIA 60 PCT CA-K SALT) (BAHAN BAKU KOSMETIK) COA FGC2104003", "output": "13021990"}, {"text_input": "What is the hs code for AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 158635", "output": "15159011"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB050922", "output": "39123900"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B011022", "output": "39123900"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B011022", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB050922", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LG120822", "output": "39123900"}, {"text_input": "What is the hs code for OPASPRAY (R) OPAQUE COLOR CONCENTRATE FOR FILM...(BHN BAKU PEWARNA TABLET) COA DT736535", "output": "32151990"}, {"text_input": "What is the hs code for OPALUX (R) OPAQUE COLOR COATING CONCENTRATE AS-R-...(BHN BAKU PEWARNA TABLET) COA DT737694", "output": "32151990"}, {"text_input": "What is the hs code for OPALUX (R) OPAQUE COLOR COATING CONCENTRATE AS-R-...(BHN BAKU PEWARNA TABLET) COA DT737695", "output": "32151990"}, {"text_input": "What is the hs code for OPAGLOS (R) TABLET CORE SEALANT PRODUCT OPAGLOS...(BHN BAKU PEWARNA TABLET) COA DT737551", "output": "32151990"}, {"text_input": "What is the hs code for OPALUX (R) OPAQUE COLOR COATING CONCENTRATE AS-F-...(BHN BAKU PEWARNA TABLET) COA DT737696", "output": "32151990"}, {"text_input": "What is the hs code for OPASPRAY (R) OPAQUE COLOR CONCENTRATE FOR FILM...(BHN BAKU PEWARNA TABLET) COA DT737697", "output": "32151990"}, {"text_input": "What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105714022", "output": "17021100"}, {"text_input": "What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103863822", "output": "17021100"}, {"text_input": "What is the hs code for CAPSULAC (R) 60 (BHN BAKU OBAT) COA L100413522", "output": "17021100"}, {"text_input": "What is the hs code for CELLACTOSE (R) 80 (BHN BAKU OBAT) COA L100463622", "output": "17021100"}, {"text_input": "What is the hs code for NIACINAMIDE USP (NIACINAMIDE USP/EP) (BHN BAKU KOSMETIK)COA 22-23/NMD(P)/00152 S/D 00153,...", "output": "29362900"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20221009", "output": "17029019"}, {"text_input": "What is the hs code for TRIMETHOPRIM MICRONISED BP (BHN BAKU OBAT) COA TMP22100765", "output": "29335990"}, {"text_input": "What is the hs code for KAHLWAX 2442L (BHN BAKU KOSMETIK) COA F2227043-001", "output": "15211000"}, {"text_input": "What is the hs code for KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2272144", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2217638", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE STARCH AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2271472", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2235469", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2236789", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH 2229232,...", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2215995", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2067201", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2046556", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2123358", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2157420", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2158082", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2067270", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2047633", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2097346,2104107", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2172773", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 2074829", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2137560", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2269108", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2271288", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2138670", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2137560", "output": "38210090"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180JCV004", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180KBQ002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180K3O001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464151502", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180K13003", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180K24002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180KBO002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E4M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180M2A011", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180L1V022", "output": "39123900"}, {"text_input": "What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU PAKAN HEWAN) COA 202200275", "output": "28183000"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2097025", "output": "38210090"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2097025", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2046564", "output": "38210090"}, {"text_input": "What is the hs code for HU VEGF CBA FLEX SET B8 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2077187", "output": "38210090"}, {"text_input": "What is the hs code for DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2209001", "output": "28352510"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G610004... (BHN BAKU PEWARNA TABLET) COA GA718201", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131.. (BHN BAKU PEWARNA TABLET) COA GA718202", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86674... (BHN BAKU PEWARNA TABLET) COA GA718203", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE.. (BHN BAKU PEWARNA TABLET) COA GA718577", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 33G28435... (BHN BAKU PEWARNA TABLET) COA GA718204", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K84823... (BHN BAKU PEWARNA TABLET) COA GA718212", "output": "38249999"}, {"text_input": "What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) COA 2204114", "output": "38249999"}, {"text_input": "What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 213925", "output": "29224900"}, {"text_input": "What is the hs code for MELANOSTATINE TM 5 BG (50PPM) (BHN BAKU KOSMETIK) COA 220986", "output": "38249999"}, {"text_input": "What is the hs code for MINIPORYL TM (BHN BAKU KOSMETIK) COA 832011274N", "output": "38249999"}, {"text_input": "What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029946N", "output": "13021990"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2133701", "output": "38249999"}, {"text_input": "What is the hs code for PRICKLY PEAR WATER DISTILLATE (BHN BAKU KOSMETIK) COA 22090252", "output": "33019090"}, {"text_input": "What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000207171", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT22010155", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22030064", "output": "29362400"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB21050211,WB21050212", "output": "29362900"}, {"text_input": "What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT22030222", "output": "29362100"}, {"text_input": "What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92210013,XW92210014", "output": "21069059"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB21050086,WB21050088", "output": "29362200"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB21050088", "output": "29362200"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB21050088", "output": "29362200"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12204017", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB21050088", "output": "29362200"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02205054", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02205054", "output": "29362400"}, {"text_input": "What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00781370,VE00781371", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060046", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0722010027", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL (R) HS(BHN BAKU KOSMETIK) COA HS5870322", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060046", "output": "29420000"}, {"text_input": "What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF22165008", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010232", "output": "29420000"}, {"text_input": "What is the hs code for DL-PANTHENOL 50 L (BHN BAKU KOSMETIK) COA TL02110653", "output": "29362400"}, {"text_input": "What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT22010219", "output": "29362100"}, {"text_input": "What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010232", "output": "29420000"}, {"text_input": "What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0040349", "output": "29362500"}, {"text_input": "What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02109811", "output": "29362400"}, {"text_input": "What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE EP/USP (BHN BAKU OBAT HEWAN) COA NEDNA220813,NEDNA220811", "output": "29372200"}, {"text_input": "What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102223007", "output": "28161000"}, {"text_input": "What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102223005,102223007", "output": "28161000"}, {"text_input": "What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102269006", "output": "28161000"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP22104590 S/DXP 22104593", "output": "29211900"}, {"text_input": "What is the hs code for CAFFEINE BP/EP/USP (BHN BAKU OBAT) COA 22101854,22101864,22101865,22101871,22101877,...", "output": "29393000"}, {"text_input": "What is the hs code for PEARL ESSENCES 35031MJ FLONAC ML 10 C 35031 (BHN BAKU KOSMETIK) COA D2310125", "output": "32061910"}, {"text_input": "What is the hs code for PEARL ESSENCES 35031MJ FLONAC ML 10 C 35051 (BHN BAKU KOSMETIK) COA D2420059", "output": "32061910"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220803", "output": "13021990"}, {"text_input": "What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) COA OLVH220903-ENBIO", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) COA EG543-220702", "output": "38249999"}, {"text_input": "What is the hs code for SAFFLOWER REFINED OIL (BHN BAKU KOSMETIK) COA CARHR220805-DW", "output": "38249999"}, {"text_input": "What is the hs code for SEABUCKTHRON HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HIR220801-B", "output": "13021990"}, {"text_input": "What is the hs code for CLOBETASOL PROPIONATE USP MICRONISED (BHN BAKU OBAT) COA APL/CLP/06061/I-22", "output": "29372200"}, {"text_input": "What is the hs code for AEROSIL(R) R 972 (BHN BAKU KOSMETIK) COA 132041170", "output": "38249999"}, {"text_input": "What is the hs code for BIOBENEFITY (BHN BAKU KOSMETIK) COA 222021", "output": "13021990"}, {"text_input": "What is the hs code for CINDERELLACARE (BHN BAKU KOSMETIK) COA 221565", "output": "13021990"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 221612,222019", "output": "38249999"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 221569", "output": "13021990"}, {"text_input": "What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 222375", "output": "29329900"}, {"text_input": "What is the hs code for ROSE HIPS LIQUID B (BHN BAKU KOSMETIK) COA 221686", "output": "13021990"}, {"text_input": "What is the hs code for BETAMETHASONE VALERATE USP (BHN BAKU OBAT) COA APL/BV/06027/E-2", "output": "29372200"}, {"text_input": "What is the hs code for BETAMETHASONE VALERATE USP (BHN BAKU OBAT) COA APL/BV/01210/I-22", "output": "29372200"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A62337... (BHN BAKU PEWARNA TABLET) COA GA718269", "output": "39061090"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7MIU/G (BHN BAKU KOSMETIK) COA", "output": "29362100"}, {"text_input": "What is the hs code for DL-ALPHA-TOCOPHEROL (BHN BAKU KOSMETIK) COA 01220708ES", "output": "29362800"}, {"text_input": "What is the hs code for AVICEL CL 611 NF (POST BORDER) COA 2174108901", "output": "39129090"}, {"text_input": "What is the hs code for GRANULAC (R) 200H (BHN BAKU OBAT) COA L105713322", "output": "17021100"}, {"text_input": "What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA LC033-22-801", "output": "17021100"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA QZ11220816 S/D QZ11220818", "output": "29362500"}, {"text_input": "What is the hs code for CLOMIPHENE CITRATE USP/EP (BHN BAKU OBAT ) COA 202210040084,202210040085", "output": "29221990"}, {"text_input": "What is the hs code for CLOMIPHENE CITRATE USP/EP (BHN BAKU OBAT ) COA 202210040085", "output": "29221990"}, {"text_input": "What is the hs code for PROMOIS EK-118(IN) (BHN BAKU KOSMETIK) COA GFA", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS EU-118(IS) (BHN BAKU KOSMETIK) COA GFJ", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WK-F (BHN BAKU KOSMETIK) COA GJH", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA GGI", "output": "38249999"}, {"text_input": "What is the hs code for AMITOSE HGA (BHN BAKU KOSMETIK) COA GFH", "output": "13021990"}, {"text_input": "What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA GGD", "output": "38249999"}, {"text_input": "What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA GJG", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS S-CAQ (BHN BAKU KOSMETIK) COA GGB", "output": "38249999"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100MESH (BHN BAKU SUPLEMEN) COA 2AX2210017,2AX2210013", "output": "29181400"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20220701", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB22080257", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB22080257", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPPLEMEN) COA WB22030330", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPPLEMEN) COA WB22030330", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB21120254, WB22080257", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22080642,WB22080651,WB22080655", "output": "29362100"}, {"text_input": "What is the hs code for FERROUS GLUCONATE, POWDER, USP 43 (POST BORDER) COA 3118317", "output": "29181600"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (POST BORDER) COA ROA177227,ROA158227,ROA136227,ROA178227,..", "output": "28363000"}, {"text_input": "What is the hs code for CROSCARMELLOSE SODIUM USP-NF (BHN BAKU OBAT) COA ACRMC/10/231022,ACRMC/10/211022", "output": "39129090"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464151544", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180IAL002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180I6P002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180I5J002", "output": "39123900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT22030156", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT22030156", "output": "29362900"}, {"text_input": "What is the hs code for MIN PREMIX FOR TODDLER PORRIDGE (BHN BAKU MAKANAN) COA XW92209159", "output": "21069059"}, {"text_input": "What is the hs code for VIT MIN PREMIX FOR TODDLER PORRIDGE (BHN BAKU MAKANAN) COA XW92209158", "output": "21069059"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22050068", "output": "29362500"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22030063,UT22030064", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02204039", "output": "29362400"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20220303", "output": "29362800"}, {"text_input": "What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC211108", "output": "29420000"}, {"text_input": "What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92208654", "output": "29420000"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22090304", "output": "29362800"}, {"text_input": "What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 220604", "output": "13021990"}, {"text_input": "What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 220821", "output": "29061900"}, {"text_input": "What is the hs code for OILESS' CITY TM (BHN BAKU KOSMETIK) COA 220304", "output": "13021990"}, {"text_input": "What is the hs code for OILESS' CITY TM (BHN BAKU KOSMETIK) COA 220614", "output": "13021990"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 220601", "output": "13021990"}, {"text_input": "What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 220513", "output": "33012990"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG221014,MCVG221021", "output": "29362700"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA LC034-22-801", "output": "17021100"}, {"text_input": "What is the hs code for NEO EXTRAPONE (R) LEMON (BHN BAKU KOSMETIK) COA 10300019,10300020", "output": "13021950"}, {"text_input": "What is the hs code for EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300063", "output": "13021950"}, {"text_input": "What is the hs code for EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300023,10300024", "output": "13021950"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE ...(BHN BAKU PEWARNA TABLET) COA SH663543", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE ...(BHN BAKU PEWARNA TABLET) COA SH663542", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE ...(BHN BAKU PEWARNA TABLET) COA SH663541", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE ...(BHN BAKU PEWARNA TABLET) COA SH663540", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE ...(BHN BAKU PEWARNA TABLET) COA SH663548", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE ...(BHN BAKU PEWARNA TABLET) COA SH663546", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE ...(BHN BAKU PEWARNA TABLET) COA SH663550", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE ...(BHN BAKU PEWARNA TABLET) COA SH663547", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE ...(BHN BAKU PEWARNA TABLET) COA SH663549", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359...(BHN BAKU PEWARNA TABLET) COA SH662957", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) COA SH662946", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA SH663539", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA SH663544", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA SH663538", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA SH662949", "output": "38249999"}, {"text_input": "What is the hs code for SOFTISAN (R) PG2 C10 (BAHAN BAKU KOSMETIK) COA 2-00016670", "output": "38249999"}, {"text_input": "What is the hs code for REFINED GRAPESEED OIL (BHN BAKU KOSMETIK) COA B2200220", "output": "15152919"}, {"text_input": "What is the hs code for OPACODE S-1-277005 BLACK (BHN BAKU PEWARNA TABLET) COA TKL65118, SAMPLE NO COMMERCIAL VALUE", "output": "32151990"}, {"text_input": "What is the hs code for OPACODE S-1-180000 WHITE (BHN BAKU PEWARNA TABLET) COA TKL65161, SAMPLE NO COMMERCIAL VALUE", "output": "32151990"}, {"text_input": "What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC220304", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040121", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040121", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040121", "output": "29420000"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB21060059", "output": "29362300"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359...(BHN BAKU PEWARNA TABLET) COA GA719393", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O63173...(BHN BAKU PEWARNA TABLET) COA GA716923", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O620011...(BHN BAKU PEWARNA TABLET) COA GA716924", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O600001...(BHN BAKU PEWARNA TABLET) COA GA716925", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G65197...(BHN BAKU PEWARNA TABLET) COA GA719649", "output": "38249999"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT KIWI CSB (BHN BAKU KOSMETIK) COA 02/19GAAK", "output": "28399000"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT KIWI CSB (BHN BAKU KOSMETIK) COA 02/19GAAK, SAMPLE NO COMMERCIAL VALUE", "output": "28399000"}, {"text_input": "What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT FS (BHN BAKU SUPPLEMEN) COA UE02204002", "output": "29420000"}, {"text_input": "What is the hs code for COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-2207110", "output": "29146200"}, {"text_input": "What is the hs code for LIPOID S 20 (BHN BAKU SUPPLEMEN) COA 572000-2220141", "output": "29232011"}, {"text_input": "What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA720094", "output": "39061090"}, {"text_input": "What is the hs code for LORATADINE USP (BHN BAKU OBAT) COA BLRD/2205013-M", "output": "29333990"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22050223", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22060062", "output": "29362300"}, {"text_input": "What is the hs code for SWERTIANIN-P (BHN BAKU KOSMETIK) COA 222065", "output": "13021990"}, {"text_input": "What is the hs code for NABUMETONE USP (BAHAN BAKU OBAT) COA H-2121022", "output": "29145000"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22010628,WB22010629", "output": "29362100"}, {"text_input": "What is the hs code for UNIMER U-151 (BHN BAKU KOSMETIK) COA VE00794757", "output": "39059990"}, {"text_input": "What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK) COA 2209EF2313", "output": "29224900"}, {"text_input": "What is the hs code for ORANGE EXTRACT (BHN BAKU KOSMETIK) COA 22090406", "output": "13021950"}, {"text_input": "What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512242", "output": "47069200"}, {"text_input": "What is the hs code for CITRIC ACID MONOHYDRATE (CAM) GRANULAR 8-40 MESH E330 (BHN BAKU KOSMETIK) COA 1MT2108085", "output": "29181400"}, {"text_input": "What is the hs code for SODIUM FEREDETATE, POWDER, BP 2021 (BHN BAKU SUPPLEMEN) COA 3119807", "output": "29224900"}, {"text_input": "What is the hs code for MATCHA ( BHN BAKU KOSMETIK) COA CSP 22008 EOU", "output": "38249999"}, {"text_input": "What is the hs code for EMULCIRE 61 WL 2659 CAR (BHN BAKU OBAT) COA 191440", "output": "28399000"}, {"text_input": "What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512242,G02512245", "output": "47069200"}, {"text_input": "What is the hs code for VALSARTAN USP (BHN BAKU OBAT) COA 2-PXO-D-1550822", "output": "29332900"}, {"text_input": "What is the hs code for SENSIVA SC 80 CAN 10KG (BHN BAKU KOSMETIK) COA 16502829", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019...(BHN BAKU PEWARNA TABLET) COA GA720789", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-28849...(BHN BAKU PEWARNA TABLET) COA GA720742", "output": "38249999"}, {"text_input": "What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) COA 0014696771", "output": "38249999"}, {"text_input": "What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829011471N, POST BORDER", "output": "29224900"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) COA 785011245N", "output": "38249999"}, {"text_input": "What is the hs code for EXO-P TM (BHN BAKU KOSMETIK) COA 715031367N", "output": "38249999"}, {"text_input": "What is the hs code for INST'TIGHT TM C (BHN BAKU KOSMETIK) COA 2222601", "output": "38249999"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) COA 782019877N", "output": "38249999"}, {"text_input": "What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) COA 2204216", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2216102", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2216101", "output": "38249999"}, {"text_input": "What is the hs code for IONOL CP (BHN BAKU KOSMETIK) COA 01116722", "output": "29071900"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA LC035-22-801", "output": "17021100"}, {"text_input": "What is the hs code for METHYLCOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/1122046 POST BORDER", "output": "29362600"}, {"text_input": "What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2022102105", "output": "21012020"}, {"text_input": "What is the hs code for DEXTROSE MONOHYDRATE (POST BORDER) COA 20221103", "output": "17023010"}, {"text_input": "What is the hs code for CETIRIZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA 21020CZ6RII", "output": "29315990"}, {"text_input": "What is the hs code for GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 22T0094900", "output": "13021950"}, {"text_input": "What is the hs code for CEFTAZIDIME BUFFERED (BHN BAKU OBAT) COA B20010M", "output": "29419000"}, {"text_input": "What is the hs code for PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) COA 011722/007400", "output": "38249999"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464247240", "output": "39123900"}, {"text_input": "What is the hs code for BACTO PEPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2179379", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PEPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2179379", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTONE 500GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1280082, SAMPLE NO COMMER", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 0335766, SA", "output": "38210090"}, {"text_input": "What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2094434", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1034870", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1280120", "output": "38210090"}, {"text_input": "What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBNL220433", "output": "29221990"}, {"text_input": "What is the hs code for AQUACOAT ECD-30 ETHYLCELLULOSE AQUEOUS... (BHN BAKU PEWARNA TABLET) COA 2174180059", "output": "39123900"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-020592,APB-R-032412", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-020192", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-013092,GSC-K-022802", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) COA MSEEC-012792,021812", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND PF CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSSBD-012392", "output": "13021950"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND CACTUS EXTRACT (BHN BAKU KOSMETIK) COA CAB-021782", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-061302", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND PF CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSSBD-012392", "output": "13021950"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-020192", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-051612", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-062692", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-072821", "output": "13021990"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG221014,MCVG221021", "output": "29362700"}, {"text_input": "What is the hs code for DROPPER INDOLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01E249M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GRAM DECOLORIZER 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2234644", "output": "38210090"}, {"text_input": "What is the hs code for PROTEIN TRANSPORT INHIBITOR SOLN 0.7 ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1266065-A", "output": "38210090"}, {"text_input": "What is the hs code for BARCROFT TM AL HYD GEL LV13, USP (BHN BAKU OBAT) COA 102213117", "output": "28183000"}, {"text_input": "What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102223007", "output": "28161000"}, {"text_input": "What is the hs code for BARCROFT TM AL HYD GEL LV13, USP (BHN BAKU OBAT) COA 102213117, SAMPLE NO COMMERCIAL VALUE", "output": "28183000"}, {"text_input": "What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE FLOGEL 30 (BHN BAKU OBAT) COA 102223007, SAMPLE NO COMMERCIAL V", "output": "28161000"}, {"text_input": "What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102202031", "output": "28183000"}, {"text_input": "What is the hs code for OPADRY (R) TF TITANIUM FREE FORMULATED FILM COATING...(BHN BAKU PEWARNA TABLET) COA GA721099", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86512...(BHN BAKU PEWARNA TABLET) COA GA721259", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG DRY EXTR. 2PCT COLOR (BHN BAKU SUPLEMEN) COA 22B0095700", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR. 2PCT COLOR (BHN BAKU SUPLEMEN) COA 22B0095800", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR. 2PCT COLOR (BHN BAKU SUPLEMEN) COA 22B0095900", "output": "13021990"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (POST BORDER) COA ROA180224,ROA181226,ROA152223,ROA..", "output": "28363000"}, {"text_input": "What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) COA 209955", "output": "38249999"}, {"text_input": "What is the hs code for KSP-101 (15KG) (BHN BAKU KOSMETIK) COA 210452", "output": "38249999"}, {"text_input": "What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) COA 211285", "output": "38249999"}, {"text_input": "What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) COA 210283", "output": "38249999"}, {"text_input": "What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 221776", "output": "38249999"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) COA 222019", "output": "38249999"}, {"text_input": "What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 221964", "output": "13021990"}, {"text_input": "What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 222022", "output": "13021990"}, {"text_input": "What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) COA 221776", "output": "38249999"}, {"text_input": "What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 221024700", "output": "38210090"}, {"text_input": "What is the hs code for LOOPS INOCULATING 10/TUBE 10 MICROLITER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2213629", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2145565", "output": "38210090"}, {"text_input": "What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2145184", "output": "38210090"}, {"text_input": "What is the hs code for KIT PHOENIXSPEC CALIBRATOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2272144", "output": "38210090"}, {"text_input": "What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B01E231M", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2173800", "output": "38210090"}, {"text_input": "What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2145184,2173810", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2145565", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2096824", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2215005", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2228563", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2215005", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 2096824", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DUBOS BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2242444", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2025213", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2143687", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2158030", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DIFCO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2215005", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1350021", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 2034966", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2060432", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2138670", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2158082", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2097346", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2103834", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1236551", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2172773", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2074156", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 1188089", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2081022", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2005526", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2026334", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1272665", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2143794", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2060544", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2096824", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PHOSPHATE BUFFER PH 7.2 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2026405", "output": "38210090"}, {"text_input": "What is the hs code for GASPAK EZ LARGE INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7377933010", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2088571", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PHENOL RED BROTH BASE BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2082386", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2074843", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1348303", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 2143333", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1216783", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NITRATE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2066240", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2038852", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME, BATCH 2053778", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2217600", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2096996", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B03E123M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1223658", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1285575", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M TGE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2201315", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA U/PENGEMBANGAN MIKROORGANISME)BATCH 2271288", "output": "38210090"}, {"text_input": "What is the hs code for TSA TM WLP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2256693", "output": "38210090"}, {"text_input": "What is the hs code for MS IFN-GMA BV421 XMG1.2 50 UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2017882", "output": "38210090"}, {"text_input": "What is the hs code for MS IL-2 PE JES6-5H4 25UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1327945", "output": "38210090"}, {"text_input": "What is the hs code for CYTOFIX/CYTOPERM W/GOLGIPLUG KIT 250TST (MEDIA TUK PENGEMBANGAN MIKRO ORGANISME), BATCH 2038275", "output": "38210090"}, {"text_input": "What is the hs code for MS IL-4 CBA FLEX SET A7 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2006414", "output": "38210090"}, {"text_input": "What is the hs code for MS TNF CBA FLEX SET C8 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1333598", "output": "38210090"}, {"text_input": "What is the hs code for MS IL-12 P70 CBA FLEX SET D7 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1319797", "output": "38210090"}, {"text_input": "What is the hs code for MS IL-1 BTA CBA FLEX SET E5 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2006406", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2139402", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2027288", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SUPPLEMENT C 6X5ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2244350", "output": "38210090"}, {"text_input": "What is the hs code for VIAL ISOVILATEX ENRICHMENT 10ML 5 EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2157017", "output": "38210090"}, {"text_input": "What is the hs code for VIAL E COLI H ANTISERUM H7 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2125032", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2139402", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2027288", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1344136", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE B12 INOCULUM BROTH 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2066217", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 2048722", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2109069,2109074,221370", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2090212", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2222775", "output": "38210090"}, {"text_input": "What is the hs code for TUBE EGG YOLK ENRICHMENT 50PCT 10X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2222767", "output": "38210090"}, {"text_input": "What is the hs code for MS/RAT SOLBI PTEIN CBA BUF KIT 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2228705", "output": "38210090"}, {"text_input": "What is the hs code for MS TH1/TH2/TH17 CBA KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2124880,2140304", "output": "38210090"}, {"text_input": "What is the hs code for MS IL-5 CBA FLEX SET A6 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2042517", "output": "38210090"}, {"text_input": "What is the hs code for GOLGIPLUG PROTEIN TRNSP INHB 1ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1277727", "output": "38210090"}, {"text_input": "What is the hs code for MS CD8A APC-CY7 53-6.7 25UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1203390", "output": "38210090"}, {"text_input": "What is the hs code for MS IL-4 APC 11B11 25UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2038855", "output": "38210090"}, {"text_input": "What is the hs code for MS CD4 PERCP-CY5.5 RM4-5 25UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2175343", "output": "38210090"}, {"text_input": "What is the hs code for MS CD3E FITC 145-2C11 500UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2004469", "output": "38210090"}, {"text_input": "What is the hs code for BARCROFT TM 0325 DRIED AL HYD GEL USP (BHN BAKU OBAT) COA 102258010", "output": "28183000"}, {"text_input": "What is the hs code for BARCROFT TM 5100 CG MG HYD PDR USP (BHN BAKU OBAT) COA 102264003 S/D 102264005", "output": "28161000"}, {"text_input": "What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340415 S/D B340417", "output": "29419000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202091,122202092", "output": "28363000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202090,122202091", "output": "28363000"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A18597...(BHN BAKU PEWARNA TABLET) COA SH664425", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A18597 ...(BHN BAKU PEWARNA TABLET) COA SH664426", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) COA SH664424", "output": "38249999"}, {"text_input": "What is the hs code for LIGHT MAGNESIUM CARBONATE POWDER, BP 2021 (BHN BAKU OBAT) COA 3121984-02", "output": "28369990"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02205675", "output": "29362400"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02205675", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT22070041", "output": "29362100"}, {"text_input": "What is the hs code for VIT PREMIX FOR CHEESE BLOCK CHEDDAR (BHN BAKU MAKANAN) COA XW92210418", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN PREMIX 103047 - D (BHN BAKU MAKANAN) COA XW92210412", "output": "21069059"}, {"text_input": "What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW92210413,XW92210414", "output": "21069059"}, {"text_input": "What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE02202010", "output": "29362100"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02205675", "output": "29362400"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02205675", "output": "29362400"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02205675", "output": "29362400"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02205675", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02205054", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010233", "output": "29420000"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02205054", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010233", "output": "29420000"}, {"text_input": "What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF22165008,UF22101004", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040101", "output": "29420000"}, {"text_input": "What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 10-03-22,11-03-22,15-03-22,04-05-22", "output": "38029090"}, {"text_input": "What is the hs code for KAOLIN SUPREME LOREAL DECONTAM(BHN BAKU KOSMETIK) COA 22-12-21", "output": "25070000"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP26622", "output": "28363000"}, {"text_input": "What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) COA 799031522N", "output": "38249999"}, {"text_input": "What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829011551N", "output": "29224900"}, {"text_input": "What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) 830011473N", "output": "38249999"}, {"text_input": "What is the hs code for LANACHRYS 2B PF (PRESERVATIVE-3379305-P1K (BHN BAKU KOSMETIK) COA 793051022N", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2133701", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) COA 2133703", "output": "38249999"}, {"text_input": "What is the hs code for MDI COMPLEX TM (BHN BAKU KOSMETIK) COA 782011450N", "output": "38249999"}, {"text_input": "What is the hs code for MDI COMPLEX TM (BHN BAKU KOSMETIK) COA 782019877N", "output": "38249999"}, {"text_input": "What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829011471N", "output": "29224900"}, {"text_input": "What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 213916", "output": "29224900"}, {"text_input": "What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 222030", "output": "29224900"}, {"text_input": "What is the hs code for LANACHRYS 2B PF (PRESERVATIVE-3379305-P1K (BHN BAKU KOSMETIK) COA 793051022N", "output": "38249999"}, {"text_input": "What is the hs code for MINIPORYL TM (BHN BAKU KOSMETIK) COA 832011373N", "output": "38249999"}, {"text_input": "What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029946N", "output": "13021990"}, {"text_input": "What is the hs code for GREYVERSE TM (BHN BAKU KOSMETIK) COA 833011412N", "output": "29224900"}, {"text_input": "What is the hs code for WATERMELON HERBASOL (R) EXTRACT PG UNPRESERVED (BHN BAKU KOSMETIK) COA 122856", "output": "13021990"}, {"text_input": "What is the hs code for SODIUM ACETATE ANHYDROUS POWDER, USP 43 (BHN BAKU OBAT) COA 3122451", "output": "29152910"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20221105", "output": "17029019"}, {"text_input": "What is the hs code for FENTACARE 2231 EF 25KG PAPER BOX (BHN BAKU KOSMETIK ) COA ZH22J2401,ZH22K1606", "output": "34029019"}, {"text_input": "What is the hs code for MIRANOL C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 3972-1", "output": "34024990"}, {"text_input": "What is the hs code for PRAYPHOS DKP FG 25K BG (BHN BAKU KOSMETIK) COA 2223032 (POST BORDER)", "output": "28352400"}, {"text_input": "What is the hs code for PRAYPHOS MKP FG 25K BG (BHN BAKU KOSMETIK) COA 22-182-01", "output": "29420000"}, {"text_input": "What is the hs code for SORBITOL (BHN BAKU KOSMETIK) COA 22110501,22110601", "output": "29054400"}, {"text_input": "What is the hs code for SPECWHITE VCE (BHN BAKU KOSMETIK) COA 20221111,20221112", "output": "29362700"}, {"text_input": "What is the hs code for MFSORB 101 (BHN BAKU KOSMETIK) COA SUL-20220601,SUL-20220902", "output": "29147900"}, {"text_input": "What is the hs code for GF-B331 (BHN BAKU KOSMETIK) COA 2022111003", "output": "35051090"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100MESH (BHN BAKU SUPLEMEN) COA 3AX2211016,3AX2211019", "output": "29181400"}, {"text_input": "What is the hs code for EXTRAPONE (R) WILD BERRIES (BHN BAKU KOSMETIK) COA 10300038,10300039", "output": "13021950"}, {"text_input": "What is the hs code for EXTRAPONE (R) MANGO B (BHN BAKU KOSMETIK) COA 10300043", "output": "13021950"}, {"text_input": "What is the hs code for EXTRAPONE (R) PEACH (BHN BAKU KOSMETIK) COA 10300037", "output": "13021950"}, {"text_input": "What is the hs code for PHYTOCONCENTROLE (R) CAMOMILE (BHN BAKU KOSMETIK) COA 10300049", "output": "13021950"}, {"text_input": "What is the hs code for OPACODE WB NS-78-17821 BLACK (BHN BAKU PEWARNA TABLET) COA TKL65031,SAMPLE NO COMMERCIAL VALUE", "output": "32151990"}, {"text_input": "What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0922020032", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040101", "output": "29420000"}, {"text_input": "What is the hs code for D-BIOTIN (POST BORDER) COA UE02206013", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02206013", "output": "29362900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11220820", "output": "29362500"}, {"text_input": "What is the hs code for MINERAL PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92210422", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92210421", "output": "21069059"}, {"text_input": "What is the hs code for D-BIOTIN (POST BORDER) COA UE02206013", "output": "29362900"}, {"text_input": "What is the hs code for ANTIOXIDANT PREMIX FOR GUMMY (BHN BAKU MAKANAN) COA XW92210415", "output": "21069059"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22050068", "output": "29362500"}, {"text_input": "What is the hs code for ARGAN OIL COLD PRESSED ORGANIC (BHN BAKU KOSMETIK) COA 161124", "output": "29362500"}, {"text_input": "What is the hs code for POTASSIUM L-ASPARTATE 0.5-HYDRATE CRYST. POWDER, PH.EUR.10.ED. (BHN BAKU OBAT) COA 3097136", "output": "29224900"}, {"text_input": "What is the hs code for MAGNESIUM L-HYDROGENASPARTATE 2-HYDRATE (BHN BAKU OBAT) COA 3108440-02", "output": "29224900"}, {"text_input": "What is the hs code for FERROUS GLUCONATE, POWDER, PH.EUR.10.ED. (BHN BAKU OBAT) COA 3093987", "output": "29181600"}, {"text_input": "What is the hs code for CALCIUM STEARATE POWDER, PH.EUR.10.ED., NF 38, VEGETABLE (BHN BAKU OBAT) COA 3119702", "output": "38249999"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02207058", "output": "32041800"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT22050003", "output": "32041800"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02209089", "output": "29362400"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02205053,UE02205058", "output": "32041800"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02208704", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA UT22070041", "output": "29362100"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02208704", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22080653", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22080653,WB22080656", "output": "29362100"}, {"text_input": "What is the hs code for EUXYL K 940 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 720 CAN 10 KG (BHN BAKU KOSMETIK) CAS 65-85-0", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 10 CAN 10 KG (BHN BAKU KOSMETIK) CAS 1117-86-8", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 80 CAN 10KG (BHN BAKU KOSMETIK) CAS 1117-86-8", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) CAS 122-99-6", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6", "output": "38249999"}, {"text_input": "What is the hs code for CHITOSAN (BHN BAKU SUPPLEMEN) COA HK-C22092202", "output": "39139090"}, {"text_input": "What is the hs code for ONDANSETRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA AOND-22010", "output": "29332900"}, {"text_input": "What is the hs code for MC-GLUCAN (BHN BAKU KOSMETIK) COA MCGL220926,MCGL221121", "output": "39139090"}, {"text_input": "What is the hs code for LIFE'SDHA(TM) S35-O300 (BHN BAKU SUPPLEMEN) COA VY00486413", "output": "29362500"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA 85804762", "output": "29362700"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-151812", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-051612", "output": "38249999"}, {"text_input": "What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2022102105", "output": "21012020"}, {"text_input": "What is the hs code for FRK PMX MENTARI 1.0 (BHN BAKU MAKANAN) COA 2022111402", "output": "21069091"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 INF OIL (BHN BAKU SUPPLEMEN) COA TS00021125", "output": "29362500"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 INF OIL (BHN BAKU SUPPLEMEN) COA TS00021125", "output": "29362500"}, {"text_input": "What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 22100570", "output": "29221990"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM REGULAR GRADE (BHN BAKU OBAT) COA 2206908", "output": "29331900"}, {"text_input": "What is the hs code for THEOPHYLLINE BP/EP (BHN BAKU OBAT) COA 22186", "output": "29395900"}, {"text_input": "What is the hs code for GREEN TEA FAIRTRADE DISTILLATE (BHN BAKU KOSMETIK) COA 22090299", "output": "38249999"}, {"text_input": "What is the hs code for COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-2207107", "output": "29146200"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) COA MAC-CO221203", "output": "38249999"}, {"text_input": "What is the hs code for ARGAN VIRGIN COLD PRESSED DEODORIZED ORGANIC OIL XNE112 (BHN BAKU KOSMETIK) COA ARHVD221105-SI", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) COA ANTS220803", "output": "38249999"}, {"text_input": "What is the hs code for ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (BHN BAKU KOSMETIK) COA ROSD220904-BIO", "output": "38249999"}, {"text_input": "What is the hs code for SODIUM CARBONATE IPH (BHN BAKU SUPPLEMEN) COA DOC3112221,DOC3192221", "output": "28363000"}, {"text_input": "What is the hs code for OPAGLOS 6000 WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET) COA DT728046,SAMPLE NO COMMERCIAL VALUE", "output": "32151990"}, {"text_input": "What is the hs code for BILBERRY (V. MYRTILLUS) ET EX 36PCT (POST BORDER) COA 22S0302800", "output": "13021990"}, {"text_input": "What is the hs code for PERMETHRIN (PHARMA GRADE) (BHN BAKU OBAT) COA 225046013,225046019,225046020", "output": "29163990"}, {"text_input": "What is the hs code for CARBAZOCHROME SODIUM SULFONATE ORAL G (BHN BAKU OBAT)COA AC21010/21021", "output": "29339990"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ21016119 S/D UQ21016121", "output": "29362700"}, {"text_input": "What is the hs code for FLORAGLO(R) LUTEIN 20 PCT SAF (BHN BAKU SUPPLEMEN) COA UE02206017", "output": "32030010"}, {"text_input": "What is the hs code for FRUITFLOW II SD (POST BORDER) COA 22T0027900", "output": "29362900"}, {"text_input": "What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512245,G02512246", "output": "47069200"}, {"text_input": "What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512236,G02512242,G02512246", "output": "47069200"}, {"text_input": "What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 22100569,22100570", "output": "29221990"}, {"text_input": "What is the hs code for MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL221024,MCCPOL221027,MCCPOL221031", "output": "29094900"}, {"text_input": "What is the hs code for HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2511122", "output": "29397900"}, {"text_input": "What is the hs code for METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/12110606", "output": "29332900"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22060063", "output": "29362300"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202092,122202093", "output": "28363000"}, {"text_input": "What is the hs code for BARCROFT TM MG HYD PASTE USP TYPE M -31.0% (BHN BAKU OBAT) COA 102229042", "output": "28161000"}, {"text_input": "What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA P-66", "output": "29397900"}, {"text_input": "What is the hs code for 4-HYDROXYACETOPHENONE (BHN BAKU MAKANAN) COA COA 202211303", "output": "29145000"}, {"text_input": "What is the hs code for LABRAFIL M 1944 CS (BHN BAKU OBAT) COA 191824", "output": "28399000"}, {"text_input": "What is the hs code for TEFOSE 63 BF (BHN BAKU OBAT) COA 192275", "output": "28399000"}, {"text_input": "What is the hs code for GELOT 64 CAR (BHN BAKU OBAT) COA 191239", "output": "28399000"}, {"text_input": "What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK) COA 2210EF4912", "output": "29224900"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20221127", "output": "17029019"}, {"text_input": "What is the hs code for BICAR FOOD 27/50 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP15122", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP31522,MTP30022,MTP29122,SAMP", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP30122,MTP24122,MTP26622,SAMP", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP26622,MTP26622", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP29122", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP31422", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP21822,MTP28322", "output": "28363000"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-30-18037...(BHN BAKU PEWARNA TABLET) COA SH661605", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA SH663398", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019...(BHN BAKU PEWARNA TABLET) COA SH663374", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING..(BHN BAKU PEWARNA TABLET) COA SH663375", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29038...(BHN BAKU PEWARNA TABLET) COA SH663377", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) COA SH663376", "output": "38249999"}, {"text_input": "What is the hs code for SORBITOL SPECIAL (R) MDF 85 (BHN BAKU SUPPLEMEN) COA M21036", "output": "29054400"}, {"text_input": "What is the hs code for VC ASCORBIC ACID REGULAR (BHN BAKU MAKANAN) COA HPB2207142,HPD2207068,HPD2210001", "output": "29362700"}, {"text_input": "What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA719615", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA721256", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA721256", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359... (BHN BAKU PEWARNA TABLET) COA GA719393", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) COA GA719637", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03Z59026...(BHN BAKU PEWARNA TABLET) COA GA718214", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019...(BHN BAKU PEWARNA TABLET) COA GA720789", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA GA721492", "output": "38249999"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22080657", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22080657", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22110660,WB22110661,WB22110664", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22110664,WB22110665", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT21040008", "output": "29362600"}, {"text_input": "What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334848,B334850,B334855", "output": "29419000"}, {"text_input": "What is the hs code for SILVERION 2400 (BHN BAKU KOSMETIK) COA 20-10174", "output": "38249999"}, {"text_input": "What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU PAKAN HEWAN) COA 202200315", "output": "28183000"}, {"text_input": "What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA F12211UG", "output": "29053200"}, {"text_input": "What is the hs code for STERNFINE 100 N (BHN BAKU MAKANAN) COA TY2220712-16", "output": "29232011"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU SUPLEMEN) COA UJ239,UJ240", "output": "29181400"}, {"text_input": "What is the hs code for FERRIC PYROPHOSPHATE,24PCT - 26PCT FE POWDER,FCC12 (BHN BAKU OBAT) COA 3117751", "output": "28353990"}, {"text_input": "What is the hs code for ALUMINIUM HYDROXIDE ACETATE POWDER (BHN BAKU OBAT) COA 3118740", "output": "29152990"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) COA SH663695", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-7027...(BHN BAKU PEWARNA TABLET) COA SH663705", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-22-7719...(BHN BAKU PEWARNA TABLET) COA SH663696", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COMPLETE FILM... (BHN BAKU PEWARNA TABLET) COA GA722232", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) COA GA721644", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) COA GA721721", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) KB LOW VISCOSITY FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA721426", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A...(BHN BAKU PEWARNA TABLET) COA GA721996", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751... (BHN BAKU PEWARNA TABLET) COA GA721427", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03Z59026...(BHN BAKU PEWARNA TABLET) COA GA721428", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G52990...(BHN BAKU PEWARNA TABLET) COA GA721429", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) COA GA721294", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K14834 ...(BHN BAKU PEWARNA TABLET) COA GA721578", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G54002...(BHN BAKU PEWARNA TABLET) COA GA720639", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC... (BHN BAKU PEWARNA TABLET) COA GA721527", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC... (BHN BAKU PEWARNA TABLET) COA GA722130", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC... (BHN BAKU PEWARNA TABLET) COA GA722130", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001... (BHN BAKU PEWARNA TABLET) COA GA722077", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA GA722119", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G630013...(BHN BAKU PEWARNA TABLET) COA GA721547", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86674...(BHN BAKU PEWARNA TABLET) COA GA720635", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019...(BHN BAKU PEWARNA TABLET) COA GA721435", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019...(BHN BAKU PEWARNA TABLET) COA GA721435", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) COA GA721914", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) COA GA721915", "output": "38249999"}, {"text_input": "What is the hs code for DL-TARTARIC ACID (POST BORDER) COA", "output": "29181200"}, {"text_input": "What is the hs code for CROSPOVIDONE XL (BHN BAKU SUPPLEMEN) COA", "output": "39059990"}, {"text_input": "What is the hs code for TITANIUM DIOXIDE 3100 (BHN BAKU MAKANAN) COA 2212201", "output": "32061110"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20221207", "output": "17029019"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7MIU/G (BHN BAKU KOSMETIK) COA 0422070010", "output": "29362100"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2203923528", "output": "29372900"}, {"text_input": "What is the hs code for TRICALCIUM CITRATE 4-HYDRATE POWDER (BHN BAKU OBAT) COA 3123567", "output": "29181590"}, {"text_input": "What is the hs code for FERROUS GLUCONATE, POWDER, USP 43 (BHN BAKU OBAT) COA 3123981", "output": "29181600"}, {"text_input": "What is the hs code for TRIPOTASSIUM CITRATE 1-HYDRATE, CRYST... (BHN BAKU OBAT) COA 3117975", "output": "29181400"}, {"text_input": "What is the hs code for FERRIC PYROPHOSPHATE,24PCT - 26PCT FE POWDER,FCC12 (BHN BAKU MAKANAN) COA 3124836", "output": "28353990"}, {"text_input": "What is the hs code for SODIUM GLYCEROPHOSPHATE, CRYST, .... (BHN BAKU OBAT) COA 3084920", "output": "29199000"}, {"text_input": "What is the hs code for MAGNESIUM CARBONATE, HEAVY, POWDER... (BHN BAKU OBAT) COA 3119795,3120833,3122196", "output": "28369990"}, {"text_input": "What is the hs code for DIPOTASSIUM PHOSPHATE POWDER (BHN BAKU MAKANAN) COA 3117154,3119969", "output": "28352400"}, {"text_input": "What is the hs code for CALCIUM ACETATE, POWDER, PURITY... (BHN BAKU OBAT) COA 3118699", "output": "29152990"}, {"text_input": "What is the hs code for FERROUS GLUCONATE, POWDER, USP 43 (BHN BAKU OBAT) COA 3123981", "output": "29181600"}, {"text_input": "What is the hs code for POTASSIUM L-ASPARTATE 0,5-HYDRATE (BHN BAKU OBAT) COA3097136", "output": "29224900"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359... (BHN BAKU PEWARNA TABLET) COA GA720624", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359... (BHN BAKU PEWARNA TABLET) COA GA720625", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O63173... (BHN BAKU PEWARNA TABLET) COA GA722329", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O63173... (BHN BAKU PEWARNA TABLET) COA GA722328", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O600001...(BHN BAKU PEWARNA TABLET) COA GA720626", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) COA GA721147", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC... (BHN BAKU PEWARNA TABLET) COA GA720628", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18509... (BHN BAKU PEWARNA TABLET) COA GA720784", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING SYSTEM 3...(BHN BAKU PEWARNA TABLET) COA GA719436", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) .II COMPLETE FILM COATING SYSTEM 85G86512...(BHN BAKU PEWARNA TABLET) COA GA721259", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G62343...(BHN BAKU PEWARNA TABLET) COA GA720632", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC... (BHN BAKU PEWARNA TABLET) COA GA721527", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G65197...(BHN BAKU PEWARNA TABLET) COA GA720633", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-25008...(BHN BAKU PEWARNA TABLET) COA GA721105", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) COA GA722191", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F48105 ...(BHN BAKU PEWARNA TABLET) COA GA721978", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014...(BHN BAKU PEWARNA TABLET) COA GA720634", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 02F52182...(BHN BAKU PEWARNA TABLET) COA GA721974", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B28796 ...(BHN BAKU PEWARNA TABLET) COA GA720988", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM OY-GM-7305...(BHN BAKU PEWARNA TABLET) COA GA721975", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86674...(BHN BAKU PEWARNA TABLET) COA GA720635", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K580000...(BHN BAKU PEWARNA TABLET) COA GA720636", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A18597...(BHN BAKU PEWARNA TABLET) COA GA720637", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A18597...(BHN BAKU PEWARNA TABLET) COA GA720637", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) COA 03K19229", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) TF TITANIUM FREE FORMULATED FILM COATING...(BHN BAKU PEWARNA TABLET) COA GA721994", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G54002...(BHN BAKU PEWARNA TABLET) COA GA720639", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-111422", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-111422", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIOCTP-500 (BHN BAKU KOSMETIK) COA BOPN-032762", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1221201", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011702", "output": "13021950"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA MAK110", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-051612", "output": "38249999"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG221202", "output": "29362700"}, {"text_input": "What is the hs code for STARTAB (R) DIRECTLY COMPRESSIBLE STARCH 4001 (BHN BAKU PEWARNA TABLET) COA WP864468", "output": "35051010"}, {"text_input": "What is the hs code for ETORIXOCIB IHS (BHN BAKU OBAT) COA ETC-PM/22001", "output": "29333990"}, {"text_input": "What is the hs code for BETAMETHASONE VALERATE USP (BHN BAKU OBAT) COA APL/BV/01210/I-22", "output": "29372200"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-051612", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-051612", "output": "38249999"}, {"text_input": "What is the hs code for LIPOID PPL-600 (BHN BAKU SUPPLEMEN) COA 577200-2220234 (POST BORDER)", "output": "29232011"}, {"text_input": "What is the hs code for TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA T7290", "output": "29225090"}, {"text_input": "What is the hs code for TRAMADOL HYDROCHLORIDE (BHN BAKU OBAT) COA T7361", "output": "29225090"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202097,122202098", "output": "28363000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202098", "output": "28363000"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 20B680004...(BHN BAKU PEWARNA TABLET) COA GA722734", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85A540003 ...(BHN BAKU PEWARNA TABLET) COA GA722733", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC... (BHN BAKU PEWARNA TABLET) COA GA722732", "output": "39061090"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20220802,XH20220903", "output": "29362800"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20220903", "output": "29362800"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464246821", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2444185823", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180L8P002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180L1V022", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464246821", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464244126", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464239749", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464247240", "output": "39123900"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 14 PREMIUM ETHYLCELLULOSE... (BHN BAKU PEWARNA TABLET) COA D184M2P021", "output": "39123900"}, {"text_input": "What is the hs code for PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) COA PH02460522,PH03460522,PH04460622,PH05", "output": "38249999"}, {"text_input": "What is the hs code for VIAL LEGIONELLA AGAR ENRICHMENT 6X5ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2271514", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2103714,...", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MICROBIAL CONTENT TEST AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2304828", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2139402", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2027288", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SUPPLEMENT C 6X5ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2271516", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2326948", "output": "38210090"}, {"text_input": "What is the hs code for HU IFN-GMA BV421 B27 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2139388", "output": "38210090"}, {"text_input": "What is the hs code for HU IL-2 PE MQ1-17H12 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2048047", "output": "38210090"}, {"text_input": "What is the hs code for (HU IL-4 APC 8D4-8 50TST MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2227896", "output": "38210090"}, {"text_input": "What is the hs code for HU CD8 APC-CY7 SK1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2203655", "output": "38210090"}, {"text_input": "What is the hs code for HU CD3 FITC HIT3A 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2039630", "output": "38210090"}, {"text_input": "What is the hs code for CYTOFIX/CYTOPERM SOLN KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2137667", "output": "38210090"}, {"text_input": "What is the hs code for HU CD28 NALE CD28.2 500UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1256637,1256638", "output": "38210090"}, {"text_input": "What is the hs code for STAIN BUFFER FBS 500ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2118763", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SUPPLEMENT C 6X5ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2271516", "output": "38210090"}, {"text_input": "What is the hs code for CYTOFIX FIXATION BUFFER 100ML (MEDIA TUK PENGEMBANGAN MIKRO ORGANISME), BATCH 2096593", "output": "38210090"}, {"text_input": "What is the hs code for VIAL ISOVILATEX ENRICHMENT 10ML 5 EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2299651", "output": "38210090"}, {"text_input": "What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP C (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2224441", "output": "38210090"}, {"text_input": "What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP W135 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1092251", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2111967", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2076212", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1344136", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SHIGELLA ANTIS POLY A1 LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2161354", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SHIGELLA ANTIS POLY A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2125067", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2196280", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2214155", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 2048722", "output": "38210090"}, {"text_input": "What is the hs code for BD CST BEADS KIT 50 TESTS (MEDIA TUK PENGEMBANGAN MIKRO ORGANISME), BATCH 66511", "output": "38210090"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL02205485,TL02205489", "output": "29362700"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11220820", "output": "29362500"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12204017", "output": "29362900"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (POST BORDER) COA TL02208718", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN MINERAL PREMIX - JELLY POWDER V2 (POST BORDER) COA XW92211273", "output": "21069059"}, {"text_input": "What is the hs code for PX 103070 C (POST BORDER) COA XW92211023,XW92211024", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT22060162", "output": "29362900"}, {"text_input": "What is the hs code for RONOXAN A (POST BORDER) COA UE02209012", "output": "29362100"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (POST BORDER) COA TL02208718", "output": "29362400"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000206223", "output": "29362900"}, {"text_input": "What is the hs code for STAY-C (R) 50 (POST BORDER) COA UE02202011,UE02202017", "output": "29362700"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210151,0708210152", "output": "29420000"}, {"text_input": "What is the hs code for STAY-C (R) 50 (POST BORDER) COA UE02202017", "output": "29362700"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060037", "output": "29420000"}, {"text_input": "What is the hs code for ARGAN OIL (POST BORDER) COA AVD0040349", "output": "29362500"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22090305", "output": "29362800"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040042", "output": "29420000"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02206013", "output": "29362900"}, {"text_input": "What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02109811 (POST BORDER)", "output": "29362400"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000206223,0000206943", "output": "29362900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22090305", "output": "29362800"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN548484", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN548561", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN548560", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN548562", "output": "35051010"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5396 ERYTHROSINE ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP860976:1", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5406 FD&C RED 40/ALLURA RED..(BHN BAKU PEWARNA TABLET) COA WP852267:BB3529", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5177 FD&C YELLOW 5/... (BHN BAKU PEWARNA TABLET) COA WP852899:BB4037", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5625 FD&C BLUE 2/INDIGO.. (BHN BAKU PEWARNA TABLET) COA WP855372:BB5346", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT (R) 6010 D&C YELLOW 10 ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP853301:BB4517", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT (R) 6010 D&C YELLOW 10 ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP853298:BB4442", "output": "32151990"}, {"text_input": "What is the hs code for EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300026", "output": "13021950"}, {"text_input": "What is the hs code for ACTIPONE (R) WHITE TEA GW (BHN BAKU KOSMETIK) COA 10300052", "output": "13021950"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 24021222,24041222,24051222,24061222,24071222,23811222", "output": "29359000"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 15470722,15500722,15520722,15530722", "output": "29359000"}, {"text_input": "What is the hs code for SODIUM ACID PYROPHOSPHATE FOOD GRADE (BHN BAKU MAKANAN) COA 9221124", "output": "28353990"}, {"text_input": "What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) (BHN BAKU OBAT) COA 4454103081,4454104286", "output": "39139090"}, {"text_input": "What is the hs code for KETROLAC TROMETHAMINE USP (BHN BAKU OBAT) COA KM0240622", "output": "29339990"}, {"text_input": "What is the hs code for FERRIC HYDROXIDE POLYMALTOSE COMPLEX POWDER (BHN BAKU SUPPLEMEN) COA 3127023", "output": "29400000"}, {"text_input": "What is the hs code for MIRASIL DM5 L (BHN BAKU KOSMETIK) COA 2236FH3615,2221FF2615", "output": "39100090"}, {"text_input": "What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) COA 321CAA0023", "output": "38249999"}, {"text_input": "What is the hs code for MEG-3 30 N-3 INF OIL (BHN BAKU SUPPLEMEN) COA TS00020873", "output": "29362500"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F32371...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B82443...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 57-50-1", "output": "38249999"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11221040", "output": "29362500"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12204017", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ20610703", "output": "29362300"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040124", "output": "29420000"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02208072 (POST BORDER)", "output": "29362400"}, {"text_input": "What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02202017 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00790949", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010248,0822010268", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS0810522", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P1G24QA000", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001674321", "output": "29420000"}, {"text_input": "What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02202017 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0922020032", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010248", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040104", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060036", "output": "29420000"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02208069", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02208069,TL02208072", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0722010087", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010268,0822010357", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0722010087", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040104", "output": "29420000"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22090305", "output": "29362800"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060064", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0722010087,0722010083", "output": "29420000"}, {"text_input": "What is the hs code for HYDROCORTISONE ACETATE EP/USP (BHN BAKU OBAT) COA NEHAC220711,NEHAC220607", "output": "29372100"}, {"text_input": "What is the hs code for PREDNISOLONE BP/USP (BHN BAKU OBAT) COA XPL221008", "output": "29372100"}, {"text_input": "What is the hs code for PREDNISONE USP (BHN BAKU OBAT) COA NPD221113,NPD221015", "output": "29372100"}, {"text_input": "What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334841,B334851 S/D B334853", "output": "29419000"}, {"text_input": "What is the hs code for SODIUM ACID PYROPHOSPHATE FOOD GRADE (BHN BAKU MAKANAN) COA 9230105", "output": "28353990"}, {"text_input": "What is the hs code for CELLOSIZE TM TEXTURE F4M HYDROXYPROPYL... (BHN BAKU KOSMETIK) COA F410L5ED32", "output": "39123900"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE ...(BHN BAKU PEWARNA TABLET) COA GA724004", "output": "38249999"}, {"text_input": "What is the hs code for AZITHROMYCIN (BAHAN BAKU OBAT) COA 129-220530-1", "output": "29419000"}, {"text_input": "What is the hs code for GRANISETRON HYDROCHLORIDE (BAHAN BAKU OBAT) COA 323-220901", "output": "29397900"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA GLJ", "output": "38249999"}, {"text_input": "What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) COA GIE", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS EK-118(IN) (BHN BAKU KOSMETIK) COA GLB", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) COA GGI", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) COA GLI", "output": "38249999"}, {"text_input": "What is the hs code for MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50488", "output": "29061100"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP34222 (POST BORDER)", "output": "28363000"}, {"text_input": "What is the hs code for GRANISETRON HCL EP (BHN BAKU OBAT) COA GRH/121007", "output": "29397900"}, {"text_input": "What is the hs code for MIRASIL DM5 L (BHN BAKU KOSMETIK) COA 2245FH3115", "output": "39100090"}, {"text_input": "What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-221226", "output": "29061300"}, {"text_input": "What is the hs code for PYRAZINAMIDE EP/USP (BHN BAKU OBAT) COA WHOPZ 077 K 22 S/D WHOPZ 085 K 22,WHOPZR 037 E 22, ...", "output": "29339990"}, {"text_input": "What is the hs code for BUDESONIDE MICRONIZED (BHN BAKU OBAT) COA NB3038M", "output": "29372900"}, {"text_input": "What is the hs code for DESONIDE MICRONIZED (BHN BAKU OBAT) COA NC3328M", "output": "29372900"}, {"text_input": "What is the hs code for MAGNESIUM L-HYDROGENASPARTATE 2-HYDRATE (BHN BAKU OBAT) COA 3125910", "output": "29224900"}, {"text_input": "What is the hs code for IBUPROFEN 40 MICRONS (BHN BAKU OBAT) COA 4050-4826", "output": "29163990"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB141122", "output": "39123900"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B011022", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB141122", "output": "39123900"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B011022", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LG120822", "output": "39123900"}, {"text_input": "What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWDER... (B.BAKU KOSMETIK) COA 057/23,058/23", "output": "38249999"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6", "output": "38249999"}, {"text_input": "What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6", "output": "38249999"}, {"text_input": "What is the hs code for RICE MILK AQUEOUS EXTRACT (SB) (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for OPAGLOS (R) TABLET CORE SEALANT PRODUCT OPAGLOS... (BHN BAKU PEWARNA TABLET) COA DT739208", "output": "32151990"}, {"text_input": "What is the hs code for OPACODE (R) MONOGRAMMING INK S-1-277001 BLACK (BHN BAKU PEWARNA TABLET) COA DT739223", "output": "32151990"}, {"text_input": "What is the hs code for GUAIFENESIN USP 43 (B. BAKU OBAT) COA GGE-2211240 S/D GGE-2211242,GGE-2212254 S/D GGE-2212264", "output": "29094900"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/12/171222,181222,191222,221222,231222", "output": "29420000"}, {"text_input": "What is the hs code for PANTOPRAZOLE SODIUM (STERILE) (BAHAN BAKU OBAT) COA SI/PPZ/01561222", "output": "29333990"}, {"text_input": "What is the hs code for CETIRIZINE DIHYDROCHLORIDE BP (BHN BAKU OBAT) COA SLL/CTR/0922058", "output": "29335990"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2270946", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2208259", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2214270", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2208259", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2270946", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2116784", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2213688", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2236789", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2116784", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2109792,2172755", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2179372", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1306233,2104098", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2011124", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1236551", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2297695", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2311059", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1279274", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE CHROMAGAR CANDIDA 500GM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2123851", "output": "38210090"}, {"text_input": "What is the hs code for PAIL DIFCO AGAR 10KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2334650", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SHIGELLA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2293018", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2304673", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SODIUM DESOXYCHOLATE 100G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1279594", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2088727", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GLYCEROL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2252027", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2060510", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2217638", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2053778", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2217600", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2179358", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TODD HEWITT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2060551", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2235469", "output": "38210090"}, {"text_input": "What is the hs code for GASPAK EZ STANDARD INCUBATION CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH7384802010", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2094035", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2046556,217937", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2053111", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2228563", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1236551", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2215654", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2229544", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2269108", "output": "38210090"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 65X15MM STYLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2111375", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2215995", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 9 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2074156", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1188089,2214259", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1285556", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2298866,230", "output": "38210090"}, {"text_input": "What is the hs code for TSA TM WLP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2291682", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 2293892", "output": "38210090"}, {"text_input": "What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2214224", "output": "38210090"}, {"text_input": "What is the hs code for CULTURESWAB PLUS AMLES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 221024700", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2173796", "output": "38210090"}, {"text_input": "What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC YRPN19-8...(ALAT KESEHATAN)COA 6D19100L0106", "output": "30061010"}, {"text_input": "What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC YRPN19-10...(ALAT KESEHATAN)COA HR1938L0106", "output": "30061010"}, {"text_input": "What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC YRPN19-100..(ALAT KESEHATAN)COA HR1960L0106", "output": "30061010"}, {"text_input": "What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC YRPN19-1...(ALAT KESEHATAN)COA HL19100L0106", "output": "30061010"}, {"text_input": "What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC YRDN-FE-...(ALAT KESEHATAN)COA DA21420N0106", "output": "30061010"}, {"text_input": "What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 221769", "output": "13021990"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 221964", "output": "13021990"}, {"text_input": "What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 222375", "output": "29329900"}, {"text_input": "What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 220387", "output": "13021990"}, {"text_input": "What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for CLAIRJU (BHN BAKU KOSMETIK) COA 221795", "output": "13021990"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 221904", "output": "13021990"}, {"text_input": "What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 221964", "output": "13021990"}, {"text_input": "What is the hs code for DOKUDAMI LIQUID B (BHN BAKU KOSMETIK) COA 222276", "output": "13021990"}, {"text_input": "What is the hs code for CHRONO CHARDY (BHN BAKU KOSMETIK) COA 222292", "output": "13021990"}, {"text_input": "What is the hs code for CYPROHEPTADINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA BCYPH/2212089", "output": "29333990"}, {"text_input": "What is the hs code for CALAMINE, POWDER, BP 2023 (BHN BAKU SUPLEMEN) COA 3127863 (POST BORDER)", "output": "28369990"}, {"text_input": "What is the hs code for NYSTATIN POWDER ROW GRADE (BHN BAKU OBAT) COA C114701", "output": "29419000"}, {"text_input": "What is the hs code for NYSTATIN MICRONIZED (BHN BAKU OBAT) COA C132223", "output": "29419000"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 22B0095600", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 22B0095900", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 22B0096000", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 22B0096100", "output": "13021990"}, {"text_input": "What is the hs code for ISDN 10PCT IN NACL (DISPERSION) (BHN BAKU OBAT) COA 2214400", "output": "30039000"}, {"text_input": "What is the hs code for BOSWELLIA SERRATA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 36BWP0090", "output": "13021950"}, {"text_input": "What is the hs code for NG 5 PCT-1,2 PROPYLENGLYCOLE 95PCT (BAHAN BAKU OBAT) COA 2213201", "output": "30039000"}, {"text_input": "What is the hs code for KSG-210 (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9", "output": "38249999"}, {"text_input": "What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9", "output": "38249999"}, {"text_input": "What is the hs code for KSG-210 (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9", "output": "38249999"}, {"text_input": "What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9", "output": "38249999"}, {"text_input": "What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9", "output": "38249999"}, {"text_input": "What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4", "output": "38249999"}, {"text_input": "What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9", "output": "38249999"}, {"text_input": "What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) CAS 68937-54-2", "output": "38249999"}, {"text_input": "What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9", "output": "38249999"}, {"text_input": "What is the hs code for BICAR PHARMA 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA ROA199224,ROA199224,ROA200226", "output": "28363000"}, {"text_input": "What is the hs code for OPACODE (R) MONOGRAMMING INK S-1-180000 WHITE (BHN BAKU PEWARNA TABLET) COA WP865510", "output": "32151990"}, {"text_input": "What is the hs code for DEXAMETHASONE BP/USP (BHN BAKU OBAT) COA NED230107", "output": "29372200"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (POST BORDER) COA ROA199224,ROA199224,ROA186227,ROA...", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE(BHN BAKU SUPPLEMEN) COA MTP33822,MTP33922 (POST BORDER)", "output": "28363000"}, {"text_input": "What is the hs code for LYNESTRENOL BP (BHN BAKU OBAT) COA LNZ/922002", "output": "29372300"}, {"text_input": "What is the hs code for STERNFINE 100 N (BHN BAKU MAKANAN) COA N51-3109152", "output": "29232011"}, {"text_input": "What is the hs code for FLOWLAC (R) 100 H (BHN BAKU OBAT) COAL105814522", "output": "17021100"}, {"text_input": "What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104314322", "output": "17021100"}, {"text_input": "What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103864422", "output": "17021100"}, {"text_input": "What is the hs code for PHENYLEPHRINE HCL USP (BHN BAKU OBAT) COA 2-IL-D-2481222 S/D 2-IL-D-2501222", "output": "29225090"}, {"text_input": "What is the hs code for COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-2207107 (POST BORDER)", "output": "29146200"}, {"text_input": "What is the hs code for COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-2208128 (POST BORDER)", "output": "29146200"}, {"text_input": "What is the hs code for BARCROFT TM AL HYD GEL VISCO-9, USP (BHN BAKU OBAT) COA 102202046", "output": "28183000"}, {"text_input": "What is the hs code for RAJOL WP80/BDF LIGHT LIQUID PARAFFIN-BP/LIGHT MINERAL OIL... (BHN BAKU KOSMETIK) COA 1000230001", "output": "27101990"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/12/241222", "output": "29420000"}, {"text_input": "What is the hs code for CROSCARMELLOSE SODIUM USP-NF (BHN BAKU OBAT) COA ACRMC/12/281222 S/D ACRMC/12/301222", "output": "39129090"}, {"text_input": "What is the hs code for CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/01/060123,070123,160123", "output": "39123100"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASGP/12/191222,201222,201122", "output": "29420000"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3 PCT (BHN BAKU SUPPLEMEN) COA WB21050216 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HCL 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22050068 (POST BORDER)", "output": "29362500"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060064", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060064", "output": "29420000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND CUCURBITA EXTRACT (BHN BAKU KOSMETIK) COA CMB-013042", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-070122", "output": "13021950"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA MAK114", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-062102", "output": "13021950"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-BLACK PEARL POWDER (BHN BAKU KOSMETIK) CAS 73049-73-7", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20221227", "output": "17029019"}, {"text_input": "What is the hs code for SYN(R)-AKE (BHN BAKU KOSMETIK) COA UE02210016", "output": "29420000"}, {"text_input": "What is the hs code for SYN(R)-AKE (BHN BAKU KOSMETIK) COA UE02210016", "output": "29420000"}, {"text_input": "What is the hs code for VEEGUM K 20K BG (BHN BAKU KOSMETIK) COA 2021472831", "output": "25081000"}, {"text_input": "What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-0130123", "output": "29334910"}, {"text_input": "What is the hs code for AMBROXOL HYDROCHLORIDE BP(BHN BAKU OBAT) COA AMB E18 080 0123,AMB E18 081 0123", "output": "29221990"}, {"text_input": "What is the hs code for PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3386233", "output": "33029000"}, {"text_input": "What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC211119,PC211217", "output": "29420000"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12204017 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT22090031", "output": "29362900"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02208718 (POST BORDER)", "output": "29362400"}, {"text_input": "What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92212044,XW92212045", "output": "21069059"}, {"text_input": "What is the hs code for PX 103070 - C3 (BHN BAKU MAKANAN) COA XW92212051,XW92212052", "output": "21069059"}, {"text_input": "What is the hs code for EUXYL K 712 CAN 10 KG (BHN BAKU KOSMETIK) CAS 24634-61-5", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 903 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 940 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) CAS 122-99-6", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6", "output": "38249999"}, {"text_input": "What is the hs code for SENSIDIN DO CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9", "output": "38249999"}, {"text_input": "What is the hs code for SUPPOCIRE AM PELLETS CAR (BHN BAKU SUPPLEMEN) COA 22E2708", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE BM PELLETS CAR (BHN BAKU SUPPLEMEN) COA 22E2205", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE A PELLETS CAR (BHN BAKU SUPPLEMEN) COA 22E2405", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE NA PELLETS CAR (BHN BAKU SUPPLEMEN) COA 22E3707", "output": "28399000"}, {"text_input": "What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 200925", "output": "29332900"}, {"text_input": "What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 200925", "output": "29332900"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ21016113", "output": "29362700"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2202017,UEB2202020,UEB2202021,UEB220", "output": "29362300"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22070137", "output": "29362400"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2444202128", "output": "39123900"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED MAIZE... (BHN BAKU PEWARNA TABLET) COA IN548444", "output": "35051010"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180K34002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180L48006", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464207156", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180M2D001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464207191", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464207192", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E5 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2444151392", "output": "39123900"}, {"text_input": "What is the hs code for CAFFEINE BP/EP/USP (BHN BAKU OBAT) COA 22101854,22101864,22101865,22101871,22101877,...", "output": "29393000"}, {"text_input": "What is the hs code for CAFFEINE BP/EP/USP (BHN BAKU OBAT) COA 22122383,22122392,22122393,22122409,... (POST BORDER)", "output": "29393000"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG221230", "output": "29362700"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP23014454", "output": "29211900"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2444202128", "output": "39123900"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED MAIZE... (BHN BAKU PEWARNA TABLET) COA IN548444", "output": "35051010"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180K34002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180L48006", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464207156", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180M2D001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464207191", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464207192", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E5 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2444151392", "output": "39123900"}, {"text_input": "What is the hs code for HEXETIDINE (BHN BAKU OBAT) COA FG22202170", "output": "29335990"}, {"text_input": "What is the hs code for BARCROFT TM 0501 AL HYD POWDER (BHN BAKU OBAT) COA 102260001", "output": "28183000"}, {"text_input": "What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU OBAT) COA 102269006", "output": "28161000"}, {"text_input": "What is the hs code for PROCATEROL HCL HEMIHYDRATE MICRONIZED (BHN BAKU OBAT) COA 86032621M1", "output": "29337900"}, {"text_input": "What is the hs code for PHARMABURST (R) C1 (BHN BAKU OBAT) COA 122202337", "output": "21069099"}, {"text_input": "What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) CAS 1119-97-7", "output": "38249999"}, {"text_input": "What is the hs code for CATECHINS TEAVIGO 1 KG (BHN BAKU KOSMETIK) COA 211081", "output": "21012020"}, {"text_input": "What is the hs code for SENTRY POLYOX WSR 303 LEO NF (DUPONT/IFF) BHN BAKU PEWARNA TABLET) COA 2534296408", "output": "39123900"}, {"text_input": "What is the hs code for VITAMIN B12 0.1 PCT WS (BHN BAKU MAKANAN) COA UT21040008 (POST BORDER)", "output": "29362600"}, {"text_input": "What is the hs code for HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2511222", "output": "29397900"}, {"text_input": "What is the hs code for TRISODIUMCITRATE DIHYDRATE FINE GRANULAR (BHN BAKU SUPPLEMEN) COA UJ247", "output": "29181400"}, {"text_input": "What is the hs code for POTASSIUM IODIDE AND CARRIER (BHN BAKU SUPLEMEN) COA 3123496", "output": "28276000"}, {"text_input": "What is the hs code for SELOHVITA C (BHN BAKU SUPLEMEN) COA 3126191", "output": "28429010"}, {"text_input": "What is the hs code for NYSTATIN MICRONIZED (BHN BAKU OBAT) COA C132247", "output": "29419000"}, {"text_input": "What is the hs code for HYDROQUINONE USP (BHN BAKU SUPPLEMEN) COA APL/A/HQE/22029", "output": "29072200"}, {"text_input": "What is the hs code for FERRIC PYROPHOSPHATE, APPROX. 25PCT FE... (BHN BAKU OBAT) COA 3101720", "output": "28353990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-051702", "output": "29224900"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND JEJU TANGERINE EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-022802", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-782692", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-062122", "output": "29224900"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-011713", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-06292", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-061302,070522", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND TEA TREE EXTRACT (BHN BAKU KOSMETIK) COA MASL-011402", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-022802", "output": "13021990"}, {"text_input": "What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-005-Z", "output": "13021990"}, {"text_input": "What is the hs code for EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300064,10300065", "output": "13021950"}, {"text_input": "What is the hs code for EXTRAPONE (R) GINSENG (BHN BAKU KOSMETIK) COA 10300048", "output": "13021940"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 220601", "output": "13021990"}, {"text_input": "What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 220604", "output": "13021990"}, {"text_input": "What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 220604", "output": "13021990"}, {"text_input": "What is the hs code for OILESS' CITY TM (BHN BAKU KOSMETIK) COA 220304", "output": "13021990"}, {"text_input": "What is the hs code for OILESS' CITY TM (BHN BAKU KOSMETIK) COA 220614", "output": "13021990"}, {"text_input": "What is the hs code for PANTOPRAZOLE SODIUM (STERILE) (BAHAN BAKU OBAT) COA SI/PPZ/00050123", "output": "29333990"}, {"text_input": "What is the hs code for CEFOTAXIME SODIUM (BAHAN BAKU OBAT ) COA 3042208026", "output": "29419000"}, {"text_input": "What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92212229,XW92212230 (POST BORDER)", "output": "21069059"}, {"text_input": "What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC220713", "output": "29420000"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000207862", "output": "29362900"}, {"text_input": "What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02109811", "output": "29362400"}, {"text_input": "What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1251471", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1251471", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1251471", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1251471", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1251471", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2032032", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2032032", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2032032", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2441197", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2441197", "output": "38210090"}, {"text_input": "What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 25-03-22,26-03-22,28-03-22", "output": "38029090"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB141122", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB141122", "output": "39123900"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B251122", "output": "39123900"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B251122", "output": "39123900"}, {"text_input": "What is the hs code for TRIMETHOPRIM MICRONISED BP (BHN BAKU OBAT) COA TMPM22120001", "output": "29335990"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN548830", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN548846", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN548829", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY.... (BHN BAKU PEWARNA TABLET) COA IN548831", "output": "35051010"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20221002,XH20221003 (POST BORDER)", "output": "29362800"}, {"text_input": "What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 221275", "output": "13021990"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for DOKUDAMI LIQUID B (BHN BAKU KOSMETIK) COA 222276", "output": "13021990"}, {"text_input": "What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 221964", "output": "13021990"}, {"text_input": "What is the hs code for KOMENUKA LIQUID BK (BHN BAKU KOSMETIK) COA 230245", "output": "13021990"}, {"text_input": "What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 222803", "output": "13021990"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for REFINED COCONUT OIL - L (BHN BAKU KOSMETIK) COA 0002625750", "output": "15131990"}, {"text_input": "What is the hs code for RADIA 8526 LINSEED STANDOIL 60 P (BHN BAKU KOSMETIK) COA EM69220724", "output": "15180039"}, {"text_input": "What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA MLAH0040123", "output": "29341000"}, {"text_input": "What is the hs code for KETOPROFEN (BHN BAKU OBAT) COA 202112", "output": "29183000"}, {"text_input": "What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA LC043-22-801", "output": "17021100"}, {"text_input": "What is the hs code for DURALAC H (BHN BAKU OBAT) COA L046-22-805", "output": "17021100"}, {"text_input": "What is the hs code for STERNFINE 100 N (BHN BAKU MAKANAN) COA N50-3131016", "output": "29232011"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5177 FD&C YELLOW 5/TARTRA...(BHN BAKU PEWARNA TABLET) COA WP861773:BB9112", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT (R) 6010 D&C YELLOW 10 ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP864266:BC1291", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5406 FD&C RED 40/ALLURA RED...(BHN BAKU PEWARNA TABLET) COA WP851884:BB3827", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT (R) 6010 D&C YELLOW 10 ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP864266:BC1291", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C YELLOW 6/SUNSET...(BHN BAKU PEWARNA TABLET) COA WP862652:BC0373", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5177 FD&C YELLOW 5/TARTRA...(BHN BAKU PEWARNA TABLET) COA WP861770:BB9108", "output": "32151990"}, {"text_input": "What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) CAS 50-70-4", "output": "38249999"}, {"text_input": "What is the hs code for AMISOL TM 4135 (BHN BAKU KOSMETIK) CAS 8002-43-5", "output": "38249999"}, {"text_input": "What is the hs code for CAPIXYL (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for DEFENSCALP TM PF (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for ECOGEL (BHN BAKU KOSMETIK) CAS 85711-58-6", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL (BHN BAKU KOSMETIK) CAS 85711-58-6", "output": "38249999"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for MELANOSTATINE TM 5 BG (50PPM) (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for INST'TIGHT TM (BHN BAKU KOSMETIK) CAS 56-81-5", "output": "38249999"}, {"text_input": "What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) CAS 50-70-4", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829011551N", "output": "29224900"}, {"text_input": "What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 213925", "output": "29224900"}, {"text_input": "What is the hs code for DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834011557N", "output": "29224900"}, {"text_input": "What is the hs code for PROGELINE TM (BHN BAKU KOSMETIK) COA 221447", "output": "29224900"}, {"text_input": "What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 785081368N", "output": "13021990"}, {"text_input": "What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 222035", "output": "29224900"}, {"text_input": "What is the hs code for MAGNESIUM CHLORIDE 6-HYDRATE, CRYST... (BHN BAKU KOSMETIK) COA 3118772", "output": "28273100"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1230104", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1230104", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1230104", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-013013S", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N1C103", "output": "28321000"}, {"text_input": "What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW92212060,XW92212061", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN PREMIX 103093 - A (BHN BAKU MAKANAN) COA XW92212030", "output": "21069059"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ20912367", "output": "29362200"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02208069", "output": "29362400"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20220101,XH20220801", "output": "29362800"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT22060028", "output": "32041800"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02208072 (POST BORDER)", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02208072 (POST BORDER)", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS1150622", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0722010071", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040104", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0322020036,0322020037", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040104", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P1G24QA000", "output": "29420000"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22090305 (POST BORDER)", "output": "29362800"}, {"text_input": "What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0722010083", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 5000 (BHN BAKU KOSMETIK) COA 0708210153,0708210154,0708210158", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040042,0222040121", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0722010083", "output": "29420000"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22090307 (POST BORDER)", "output": "29362800"}, {"text_input": "What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0041495 (POST BORDER)", "output": "29362500"}, {"text_input": "What is the hs code for DL-PANTHENOL 50 L (BHN BAKU KOSMETIK) COA TL02211634 (POST BORDER)", "output": "29362400"}, {"text_input": "What is the hs code for FLOWLAC (R) 100 (BHN BAKU OBAT) COA L101500323", "output": "17021100"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751... (BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O665000...(BHN BAKU PEWARNA TABLET) COA GA724514", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359 ...(BHN BAKU PEWARNA TABLET) COA GA724516", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for PIGMENT BLEND (R) PB-665012 BROWN...(BHN BAKU PEWARNA TABLET) COA GA724603", "output": "32151990"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G65197...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007...(BHN BAKU PEWARNA TABLET) COA GA724518", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 151-21-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K14834...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G62343...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51156...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G630022...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM II COMPLETE FILM...(BHN BAKU PEWARNA TABLET) CAS", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) KB LOW VISCOSITY FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA724604", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03Z59026...(BHN BAKU PEWARNA TABLET) CAS", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA723104", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F19250...(BHN BAKU PEWARNA TABLET) CAS", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA723104", "output": "39061090"}, {"text_input": "What is the hs code for CINNARIZINE (BHN BAKU OBAT) COA CIN2301001", "output": "29335990"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP23014472,XP23014473 S/D XP23014475", "output": "29211900"}, {"text_input": "What is the hs code for DOCUSATE SODIUM (BHN BAKU OBAT) COA DSW3003", "output": "29171900"}, {"text_input": "What is the hs code for FAIR FOR LIFE REFINED SHEA (BHN BAKU KOSMETIK) COA 0000044366", "output": "15159011"}, {"text_input": "What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 189962", "output": "28399000"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 57-50-1", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G63147...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA723096", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86512...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620041...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51226...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55041...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G640054...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86674...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA723104", "output": "39061090"}, {"text_input": "What is the hs code for SEABUCKTHRON HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HIR220801-B", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK) COA EG209-220602", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG PHYTELENE EG209 (BHN BAKU KOSMETIK) COA EG209-220602", "output": "13021990"}, {"text_input": "What is the hs code for SEABUCKTHRON HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HIR220801-B", "output": "13021990"}, {"text_input": "What is the hs code for POVIDONE K-30 (BHN BAKU OBAT) COA PK30-230207F21", "output": "39059990"}, {"text_input": "What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104310223", "output": "17021100"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE, TYPE 100 (BHN BAKU SUPPLEMEN) COA UT22040064,UT22040065", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT22080063", "output": "29362100"}, {"text_input": "What is the hs code for GENIVIDA(TM) TG (BHN BAKU SUPPLEMEN) COA UT21100004", "output": "29329900"}, {"text_input": "What is the hs code for COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPPLEMEN) COA TL02210552", "output": "29362700"}, {"text_input": "What is the hs code for CAROCARE NAT. BC 20PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA EW22112023", "output": "32041800"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6", "output": "38249999"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for DL-TARTARIC ACID (BHN BAKU MAKANAN) COA RS01623.RS01624", "output": "29181200"}, {"text_input": "What is the hs code for CROSPOVIDONE XL (BHN BAKU SUPPLEMEN) COA PP230115XL", "output": "39059990"}, {"text_input": "What is the hs code for ACETAMINOPHEN (PARACETAMOL) (BHN BAKU SUPPLEMEN) COA 202302008A,202302009A", "output": "29242930"}, {"text_input": "What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2217756", "output": "38210090"}, {"text_input": "What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2300340", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2173796", "output": "38210090"}, {"text_input": "What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B04E347M", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2174795", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2334621", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2265467", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2313348", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2304673", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2201317", "output": "38210090"}, {"text_input": "What is the hs code for GASPAK EZ STANDARD INCUBATION CONT...(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 7384802010", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DECARBOXYLASE MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1159968", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BORDET GENGOU AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2137558", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2265467", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2172775,23111", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2143687", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2208259", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2207023", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2228563", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2047633", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2116784", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2213688", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 2074829", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2214259", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2005526", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1285556", "output": "38210090"}, {"text_input": "What is the hs code for SODIUM CARBONATE IPH (BHN BAKU SUPPLEMEN) COA DOC3462221", "output": "28363000"}, {"text_input": "What is the hs code for ESOMEPRAZOLE PELLETS 22,5PCT MUPS (BHN BAKU OBAT) COA EO2222C045", "output": "30039000"}, {"text_input": "What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464237382", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E15 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2444195957", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464259775", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180L1V022", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E50 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D011K5QL02", "output": "39123900"}, {"text_input": "What is the hs code for GRANISETRON HCL EP (BHN BAKU OBAT) COA GRH/121008", "output": "29397900"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55132...(BHN BAKU PEWARNA TABLET) CAS 14807-96-6", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 57-50-1", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F19250...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for BOTTLE GRAM SAFRANIN 250ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2300327", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TERGITOL 4 XLT4 SUPPLEMENT 100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH SLCM0515", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SELENITE CYSTINE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2228836", "output": "38210090"}, {"text_input": "What is the hs code for VALERIAN DRY HYDR. EXTR. (BAHAN BAKU SUPLEMEN) COA 22B0083300", "output": "13021990"}, {"text_input": "What is the hs code for CENTELLA ASIATICA/PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 22S0097300", "output": "13021950"}, {"text_input": "What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 21S0191800", "output": "13021950"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/01/200123 S/D 210123,230123 S/D 250123", "output": "29420000"}, {"text_input": "What is the hs code for 985-L-MENTHOL CRYSTALS INDIAN NATURAL (BHN BAKU KOSMETIK) COA H2-114-L-21-22", "output": "29061100"}, {"text_input": "What is the hs code for 985-L-MENTHOL CRYSTALS INDIAN NATURAL (BHN BAKU KOSMETIK) COA H2-132/L/21-22", "output": "29061100"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000208204 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02208072 (POST BORDER)", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02208072 (POST BORDER)", "output": "29362400"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT22060028", "output": "32041800"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12211009", "output": "29362900"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ20612201", "output": "29362200"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02208069", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT22060163", "output": "29362900"}, {"text_input": "What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE02209014 (POST BORDER)", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT22070008", "output": "29362900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11221040 (POST BORDER)", "output": "29362500"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12211009 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ21013603", "output": "29362500"}, {"text_input": "What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP C (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2224441", "output": "38210090"}, {"text_input": "What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP W135 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1092251", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2027288", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2139402", "output": "38210090"}, {"text_input": "What is the hs code for MS IL-4 APC 11B11 25UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2038855", "output": "38210090"}, {"text_input": "What is the hs code for ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2123411", "output": "38210090"}, {"text_input": "What is the hs code for MS CD28 NE/LE 37.51 2MG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 0225887", "output": "38210090"}, {"text_input": "What is the hs code for HU IL-1BTA CBA FLEX SET B4 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2336631", "output": "38210090"}, {"text_input": "What is the hs code for HU TNF CBA FLEX SET D9 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2118450", "output": "38210090"}, {"text_input": "What is the hs code for BD CST BEADS KIT 50 TESTS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 66511", "output": "38210090"}, {"text_input": "What is the hs code for PROPIDIUM IODINE STAINING SOLUTION 2ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1354798", "output": "38210090"}, {"text_input": "What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2284811", "output": "38210090"}, {"text_input": "What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP C (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2224441", "output": "38210090"}, {"text_input": "What is the hs code for CD4 PERCP-CY5.5 SK3 RUO/GMP (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2283513", "output": "38210090"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2322461", "output": "38210090"}, {"text_input": "What is the hs code for MC-GLUCAN (BHN BAKU KOSMETIK) COA MCGL220926,MCGL221121", "output": "39139090"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WK-F (BHN BAKU KOSMETIK) CAS 69430-36-0", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WK-GB (BHN BAKU KOSMETIK) CAS 69430-36-0", "output": "38249999"}, {"text_input": "What is the hs code for AMITOSE HGA (BHN BAKU KOSMETIK) COA LAJ", "output": "13021990"}, {"text_input": "What is the hs code for FERRIC HYDROXIDE POLYMALTOSE COMPLEX POWDER (BHN BAKU SUPPLEMEN) COA 3127023", "output": "29400000"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP26622", "output": "28363000"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP01323,MTP01123,MTP00923", "output": "28363000"}, {"text_input": "What is the hs code for FENTACARE 1631 25 MB 200KG PLAS DR (BHN BAKU KOSMETIK ) COA ZH23B0611M", "output": "29239000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202242", "output": "28363000"}, {"text_input": "What is the hs code for MANNOGEM (R) EZ MANNITOL USP/EP (BHN BAKU OBAT) COA 122202354", "output": "29054300"}, {"text_input": "What is the hs code for VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 122202271", "output": "28365010"}, {"text_input": "What is the hs code for PHARMABURST (R) 500 (BHN BAKU OBAT) COA 122202332", "output": "21069099"}, {"text_input": "What is the hs code for PHARMABURST (R) C1 (BHN BAKU OBAT) COA 122202339", "output": "21069099"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202099,122202242", "output": "28363000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202098,122202099", "output": "28363000"}, {"text_input": "What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2023010602 (POST BORDER)", "output": "21012020"}, {"text_input": "What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2023010602 (POST BORDER)", "output": "21012020"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for L-CARNITINE (EP GRADE)(BHN BAKU KOSMETIK) COA 10100120220702", "output": "29239000"}, {"text_input": "What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) CAS 233683-84-6", "output": "38249999"}, {"text_input": "What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 221634", "output": "13021990"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA725523", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA725479", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86512...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA726365", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001..(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F19250...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA725484", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA725820", "output": "39061090"}, {"text_input": "What is the hs code for MACKAM C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 6192-1", "output": "34024990"}, {"text_input": "What is the hs code for LORATADINE USP (BHN BAKU OBAT) COA BLRD/2211083", "output": "29333990"}, {"text_input": "What is the hs code for BISOPROLOL FUMARATE USP (BHN BAKU OBAT) COA LT-OBFM/004/22-23", "output": "29221990"}, {"text_input": "What is the hs code for METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/13020086", "output": "29332900"}, {"text_input": "What is the hs code for XANTHAN 80 (PHARMACEUTICAL GRADE) (BHN BAKU OBAT) COA 4454104286", "output": "39139090"}, {"text_input": "What is the hs code for CETIRIZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA 22027CZ6RIIX", "output": "29335990"}, {"text_input": "What is the hs code for RUGENER DREIKRONEN HEILKREIDE 25K (BHN BAKU KOSMETIK) COA 2062225200", "output": "25090000"}, {"text_input": "What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 2204370974", "output": "29372200"}, {"text_input": "What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 2204370974, SAMPLE NO COMMERCIAL", "output": "29372200"}, {"text_input": "What is the hs code for EUXYL K 120 CAN 10 KG (BHN BAKU KOSMETIK) CAS 55965-84-9", "output": "38249999"}, {"text_input": "What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) CAS 8002-43-5", "output": "38249999"}, {"text_input": "What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829011471N", "output": "29224900"}, {"text_input": "What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829011551N", "output": "29224900"}, {"text_input": "What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for ABYSSINE TM PF PRESERVATIVE-FREE(BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829011551N", "output": "29224900"}, {"text_input": "What is the hs code for BOREALINE PROTECT (BHN BAKU KOSMETIK) COA AM096136", "output": "13021990"}, {"text_input": "What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 213916", "output": "29224900"}, {"text_input": "What is the hs code for GREYVERSE TM (BHN BAKU KOSMETIK) COA 833011664P", "output": "29224900"}, {"text_input": "What is the hs code for LANABLUE TM PARABEN FREE (BHN BAKU KOSMETIK) CAS 50-70-4", "output": "38249999"}, {"text_input": "What is the hs code for NEUTRAZEN TM (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for ADIPOFILL'IN TM (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) CAS 50-70-4", "output": "38249999"}, {"text_input": "What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 213925", "output": "29224900"}, {"text_input": "What is the hs code for DEFENSCALP TM (BHN BAKU KOSMETIK) COA 785071370N", "output": "13021990"}, {"text_input": "What is the hs code for ECOGEL TM (BHN BAKU KOSMETIK) CAS 85711-58-6", "output": "38249999"}, {"text_input": "What is the hs code for LANACHRYS 2B PF (PRESERVATIVE- (BHN BAKU KOSMETIK) CAS7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for PROGELINE TM (BHN BAKU KOSMETIK) COA 221196", "output": "29224900"}, {"text_input": "What is the hs code for HYDROCORTISONE ACETATE EP/USP (BHN BAKU OBAT) COA NEHAC220902", "output": "29372200"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE USP (BHN BAKU OBAT) COA NMP221102", "output": "29372900"}, {"text_input": "What is the hs code for PREDNISONE USP (BHN BAKU OBAT) COA NPD221201", "output": "29372100"}, {"text_input": "What is the hs code for DEXAMETHASONE BP/USP (BHN BAKU OBAT) COA NED230112,NED230111", "output": "29372200"}, {"text_input": "What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02301572,TL02301573", "output": "29362700"}, {"text_input": "What is the hs code for PARACETAMOL USP (BHN BAKU OBAT) COA 2350408,2350422,2310226,2310233", "output": "29242930"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20221003", "output": "29362800"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20221003", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22110672,WB22110673", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB22110668 S/D WB22110670,WB22110672", "output": "29362100"}, {"text_input": "What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02211554", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ21116134 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT22090024,UT22090025", "output": "29362500"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02210752", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (BHN BAKU SUPPLEMEN) COA UT22061195,UT22061196", "output": "29362100"}, {"text_input": "What is the hs code for CM0100DSM (BHN BAKU MAKANAN) COA XW92301261", "output": "21069059"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11221040,QZ11221041", "output": "29362500"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12211009", "output": "29362900"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02208072,TL02209079 (POST BORDER)", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040104", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040104", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060069", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P1G27QA000", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010360", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060069", "output": "29420000"}, {"text_input": "What is the hs code for COENZYME Q10 (BHN BAKU KOSMETIK) COA 51-2208175 (POST BORDER)", "output": "29146200"}, {"text_input": "What is the hs code for MICRO CRYSTALLINE CELLULOSE USP (BHN BAKU SUPPLEMEN) COA 60230125,60230126", "output": "39129090"}, {"text_input": "What is the hs code for MICRO CRYSTALLINE CELLULOSE USP (BHN BAKU SUPPLEMEN) COA 70230121,70230122,70230123", "output": "39129090"}, {"text_input": "What is the hs code for MICRO CRYSTALLINE CELLULOSE USP (BHN BAKU SUPPLEMEN) COA 80230129", "output": "39129090"}, {"text_input": "What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA 23100045", "output": "29391900"}, {"text_input": "What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA 23100047", "output": "29391900"}, {"text_input": "What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF (BHN BAKU SUPPLEMEN) COA UE02206017", "output": "32030010"}, {"text_input": "What is the hs code for NICARDIPINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA S117A222005", "output": "29333990"}, {"text_input": "What is the hs code for AMITOSE HGA (BHN BAKU KOSMETIK) COA GKN", "output": "13021990"}, {"text_input": "What is the hs code for AMITOSE HGA (BHN BAKU KOSMETIK) COA LAB", "output": "13021990"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS EU-118(IS) (BHN BAKU KOSMETIK) CAS 111174-63-1", "output": "38249999"}, {"text_input": "What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) CAS 638164-47-3", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7", "output": "38249999"}, {"text_input": "What is the hs code for PROTIBOND TG-AK (BHN BAKU MAKANAN) COA AK22113003", "output": "21069091"}, {"text_input": "What is the hs code for SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 2208682676", "output": "29322090"}, {"text_input": "What is the hs code for STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN548723", "output": "35051010"}, {"text_input": "What is the hs code for XW30794366 - PREMIX ADE (BHN BAKU MAKANAN) COA E220004206", "output": "21069059"}, {"text_input": "What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9", "output": "38249999"}, {"text_input": "What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334872,B334874,B334876", "output": "29419000"}, {"text_input": "What is the hs code for OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 57-50-1", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G54002...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G54002...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F19250...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86674...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F20440...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G62600...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F650026...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-8855...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for NG 5 PCT-1,2 PROPYLENGLYCOLE 95PCT (BAHAN BAKU OBAT) COA 2300669", "output": "30039000"}, {"text_input": "What is the hs code for CATECHINS TEAVIGO 1 KG (BHN BAKU KOSMETIK) COA 211081", "output": "21012020"}, {"text_input": "What is the hs code for DS-CERAMIDE Y3S (BHN BAKU KOSMETIK) COA CSKI06", "output": "29241990"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20230209", "output": "17029019"}, {"text_input": "What is the hs code for AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 160645", "output": "15159011"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (B) (BHN BAKU KOSMETIK) COA AMIBD-022513", "output": "29224900"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-023013 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-062692 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-040812 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-022023", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-910112 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA MAK114", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-070122", "output": "13021950"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-062122", "output": "29224900"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND PINK PLANKTON EXTRACT (HD) (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-020192 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SNAIL SECRETION FILTRATE (BHN BAKU KOSMETIK) COA SAFW-013013 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-070122", "output": "13021950"}, {"text_input": "What is the hs code for ACRYPOL 980 (20KG) (BAHAN BAKU KOSMETIK) COA 11522051 S/D 11522053", "output": "39069099"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP01723 (POST BORDER)", "output": "28363000"}, {"text_input": "What is the hs code for FERRIC PYROPHOSPHATE,24PCT - 26PCT FE POWDER,FCC12 (BHN BAKU MAKANAN) COA 3124834,3124835", "output": "28353990"}, {"text_input": "What is the hs code for DIPOTASSIUM PHOSPHATE POWDER (BHN BAKU MAKANAN) COA 3124916", "output": "28352400"}, {"text_input": "What is the hs code for FERROUS FUMARATE, FINE POWDER (BHN BAKU MAKANAN) COA 3112517 (POST BORDER)", "output": "29171900"}, {"text_input": "What is the hs code for FERROUS SULFATE, DRIED, POWDER, USP43 (BHN BAKU MAKANAN) COA 3107512", "output": "28332920"}, {"text_input": "What is the hs code for DESONIDE MICRONIZED (BHN BAKU OBAT) COA NC3328M", "output": "29372900"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT... (BHN BAKU OBAT) COA NC3110", "output": "29372900"}, {"text_input": "What is the hs code for GRANISETRON HYDROCHLORIDE (BAHAN BAKU OBAT) COA 323-230104", "output": "29397900"}, {"text_input": "What is the hs code for CEFOTAXIME SODIUM (BAHAN BAKU OBAT) COA 3042208026", "output": "29419000"}, {"text_input": "What is the hs code for KETOROLAC TROMETHAMOL/TROMETHAMINE (BHN BAKU OBAT) COA 21100390", "output": "29339990"}, {"text_input": "What is the hs code for POMEGRANATE OF ACORES HYDROGLYCERINED ...(BHN BAKU KOSMETIK) COA PUGA221210-GL (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIE220602 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for ZORYALYS (BHN BAKU KOSMETIK) CAS 73398-61-5", "output": "38249999"}, {"text_input": "What is the hs code for HEBELYS (BHN BAKU KOSMETIK) CAS 504-63-2", "output": "38249999"}, {"text_input": "What is the hs code for LOTUS FROM VIETNAM ORGANIC OILY EXTRACT (BHN BAKU KOSMETIK) CAS 73398-61-5", "output": "38249999"}, {"text_input": "What is the hs code for PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3405014", "output": "33029000"}, {"text_input": "What is the hs code for NAI-WHITE A (BHN BAKU KOSMETIK) COA 2210B28102", "output": "32061110"}, {"text_input": "What is the hs code for DL-ALPHA-TOCOPHEROL (BHN BAKU KOSMETIK) COA 01221213ES (POST BORDER)", "output": "29362800"}, {"text_input": "What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010361", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS1160622", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0322020784 S/D 0322020786,0322021116", "output": "29420000"}, {"text_input": "What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES2209782", "output": "29420000"}, {"text_input": "What is the hs code for PX TRS1 WITHOUT K1 (BHN BAKU MAKANAN) COA XW92301260 (POST BORDER)", "output": "21069059"}, {"text_input": "What is the hs code for ANTIOXIDANT PREMIX FOR GUMMY (BHN BAKU MAKANAN) COA XW92301262 (POST BORDER)", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT22051191 (POST BORDER)", "output": "29362100"}, {"text_input": "What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 221275", "output": "13021990"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 222448", "output": "13021990"}, {"text_input": "What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 222516", "output": "13021990"}, {"text_input": "What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 222980", "output": "13021990"}, {"text_input": "What is the hs code for YUZU CERAMIDE B (BHN BAKU KOSMETIK) COA 230116", "output": "13021990"}, {"text_input": "What is the hs code for ROSE HIPS LIQUID B (BHN BAKU KOSMETIK) COA 221686", "output": "13021990"}, {"text_input": "What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 220892", "output": "13021990"}, {"text_input": "What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 060522", "output": "25070000"}, {"text_input": "What is the hs code for VALERIAN DRY HYDR. EXTR. (BAHAN BAKU SUPLEMEN) COA 22B0083300 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for VALERIAN DRY HYDR. EXTR. (BAHAN BAKU SUPLEMEN) COA 22B0083300", "output": "13021990"}, {"text_input": "What is the hs code for PASSION FLOWER D.H.E 4PCT (BAHAN BAKU SUPLEMEN) COA 22B0076600 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for HAWTHORN DRY HYDR. EXTR (BHN BAKU SUPLEMEN) COA 20B0127300 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for CALCIUM CARBONATE DC TYPE CS90 PHARMA (BHN BAKU SUPPLEMEN) COA 202200303", "output": "28365010"}, {"text_input": "What is the hs code for BETAMETHASONE VALERATE USP 43 (BHN BAKU OBAT) COA APL/BV/01029/A-23", "output": "29372200"}, {"text_input": "What is the hs code for BETAMETHASONE VALERATE USP 43 (BHN BAKU OBAT) COA APL/BV/01029/A-23", "output": "29372200"}, {"text_input": "What is the hs code for PARSOL ZX (BHN BAKU KOSMETIK) COA 201019032, SAMPLE NO COMMERCIAL VALUE", "output": "29420000"}, {"text_input": "What is the hs code for ACETAMINOPHEN (PARACETAMOL) (BHN BAKU OBAT) COA 202302096A,202302097A", "output": "29242930"}, {"text_input": "What is the hs code for ALBENDAZOLE USP (BHN BAKU OBAT TERNAK) COA 2260223, 2270223, 2290223, 2300223, 2310223, 2320223", "output": "29339990"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP23024195,XP23024197,XP23024196,XP23024198", "output": "29211900"}, {"text_input": "What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 220807 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for OILESS' CITY TM (BHN BAKU KOSMETIK) COA 220304 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 220806 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 221110 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for TAZMAN PEPPER TM AF (BHN BAKU KOSMETIK) COA 220624 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 221126", "output": "29061900"}, {"text_input": "What is the hs code for PROPYPHENAZONE (CEP) (BHN BAKU OBAT UNTUK PEWARNA TABLET) COA 2210246", "output": "29331100"}, {"text_input": "What is the hs code for ACETAMINOPHEN (PARACETAMOL) (BHN BAKU OBAT) COA 202302094A,202302095A", "output": "29242930"}, {"text_input": "What is the hs code for POVIDONE K 30 (BHN BAKU OBAT) COA PK30-230216F21", "output": "39059990"}, {"text_input": "What is the hs code for PRAYPHOS MKP FG 25K BG (BHN BAKU KOSMETIK) COA 22-280-01", "output": "29420000"}, {"text_input": "What is the hs code for FENTACARE 2231 EF 25KG PAPER BOX (BHN BAKU KOSMETIK ) COA ZH23B2101,ZH23B2501", "output": "34029019"}, {"text_input": "What is the hs code for GF-B331 (BHN BAKU KOSMETIK) COA 20230224001", "output": "35051090"}, {"text_input": "What is the hs code for SPECWHITE VCE (BHN BAKU KOSMETIK) COA 20221105 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for MACKAM C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 5915-1,3170-1", "output": "34024990"}, {"text_input": "What is the hs code for EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300027", "output": "13021950"}, {"text_input": "What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ21217019", "output": "29420000"}, {"text_input": "What is the hs code for VITAMIN B12 CRYST FOOD GRADE (BHN BAKU KOSMETIK) COA 012206086 (POST BORDER)", "output": "29362600"}, {"text_input": "What is the hs code for VIT. A PALM. 1.0 M + VIT. D3 100'000 (BHN BAKU MAKANAN) COA UT22120157,UT22120158", "output": "29362100"}, {"text_input": "What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22110028", "output": "29362500"}, {"text_input": "What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B03F024M", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2174795", "output": "38210090"}, {"text_input": "What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2173810,2173817,.", "output": "38210090"}, {"text_input": "What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2334298", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2179372", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2215995", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2026294", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2172755", "output": "38210090"}, {"text_input": "What is the hs code for D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2104098", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 2034966", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2313348", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2207023", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2011124", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2123842", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2047633", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 2074829", "output": "38210090"}, {"text_input": "What is the hs code for ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2214259", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2081022", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2005526", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1272665,21580", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1285556", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 2304648", "output": "38210090"}, {"text_input": "What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2217756,2221477", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1350021", "output": "38210090"}, {"text_input": "What is the hs code for TSA TM WLP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2341397", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TM W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3031264", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2364106", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B03F024M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GRAM IODINE STABILIZED 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2335326", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GRAM IODINE STABILIZED 250ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2335326", "output": "38210090"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40 BRIX) CSB (BHN BAKU KOSMETIK) COA 01/22GL4", "output": "28399000"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40 BRIX) ECH (BHN BAKU KOSMETIK) COA 01/22GL4, SAMPLE NO COMMERCIAL VALUE", "output": "28399000"}, {"text_input": "What is the hs code for OPACODE (R) MONOGRAMMING INK S-1-180000 WHITE (BHN BAKU PEWARNA TABLET) COA WP867034", "output": "32151990"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-28849...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for STARTAB (R) DIRECTLY COMPRESSIBLE STARCH 4001 (BHN BAKU PEWARNA TABLET) COA WP864467", "output": "35051010"}, {"text_input": "What is the hs code for STARTAB (R) DIRECTLY COMPRESSIBLE STARCH 4001 (BHN BAKU PEWARNA TABLET) COA WP865752", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C YELLOW 6/SUNSET...(BHN BAKU PEWARNA TABLET) COA WP855961:BB6473", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5177 FD&C YELLOW 5/TARTRAZ...(BHN BAKU PEWARNA TABLET) COA WP852907:BB3944", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5396 ERYTHROSINE ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP860977:1", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5406 FD&C RED 40/ALLURA RE...(BHN BAKU PEWARNA TABLET) COA WP851879:BB3365", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5627 FD&C BLUE 2/INDIGO CA...(BHN BAKU PEWARNA TABLET) COA WP862708:BB9467", "output": "32151990"}, {"text_input": "What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA G00361UG", "output": "29053200"}, {"text_input": "What is the hs code for VIAL ISOVITALEX ENRICHMENT 10ML 5 EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2349228", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2111967", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2244735", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1344136", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2322505", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOBACILLLI MRS BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2315617", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2326948", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2132015", "output": "38210090"}, {"text_input": "What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP A (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2342259", "output": "38210090"}, {"text_input": "What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP C (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2224441", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEMOGLOBIN SOL 2PCT 100ML 10EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2179007", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPLLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2264446", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEMOGLOBIN SOL 2PCT 100ML 10EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2179007", "output": "38210090"}, {"text_input": "What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP A (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2342259", "output": "38210090"}, {"text_input": "What is the hs code for VIAL PENICILLINASE 10000000 KU/ML 1EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2354356", "output": "38210090"}, {"text_input": "What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP A (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2342259", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH...(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2104103,3033582", "output": "38210090"}, {"text_input": "What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP A (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2342259", "output": "38210090"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA237227,ROA200227 (POST BORDER)", "output": "28363000"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100MESH (BHN BAKU SUPLEMEN) COA 6AX2302022", "output": "29181400"}, {"text_input": "What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for OLIVE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220803 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-220602 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6", "output": "38249999"}, {"text_input": "What is the hs code for WITCH HAZEL ORGANIC DISTILLATE 1:10 (SB) (BHN BAKU KOSMETIK) CAS 84696-19-5", "output": "38249999"}, {"text_input": "What is the hs code for GRAPE SEED ORGANIC OIL C00031 (BHN BAKU KOSMETIK) CAS 8024-22-4", "output": "38249999"}, {"text_input": "What is the hs code for DIENOGEST MICRONIZED (BHN BAKU OBAT) COA NC2093M", "output": "29372300"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100MESH (BHN BAKU SUPLEMEN) COA 2AX2302014", "output": "29181400"}, {"text_input": "What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) CAS 1119-97-7", "output": "38249999"}, {"text_input": "What is the hs code for SILVERION 2400 (BHN BAKU KOSMETIK) CAS 77-92-9", "output": "38249999"}, {"text_input": "What is the hs code for CYPROHEPTADINE HCL BP/PH. EUR. (BHN BAKU OBAT) COA CYP/02231004", "output": "29333990"}, {"text_input": "What is the hs code for METHYLCOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/0123001 (POST BORDER)", "output": "29362600"}, {"text_input": "What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBNB230058", "output": "29221990"}, {"text_input": "What is the hs code for BOTTLE GRAM SAFRANIN 250ML (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2215284", "output": "38210090"}, {"text_input": "What is the hs code for FERROUS GLUCONATE FINE GRAN.... (BHN BAKU SUPPLEMEN) COA 3127778 (POST BORDER)", "output": "29181600"}, {"text_input": "What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPPLEMEN) COA WB22080772 (POST BORDER)", "output": "29362800"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O600001...(BHN BAKU PEWARNA TABLET) COA GA726673", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03F82532...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 20C59060...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA727133", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007...(BHN BAKU PEWARNA TABLET) COA GA726673", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 88A520024", "output": "38249999"}, {"text_input": "What is the hs code for ETHAMBUTOL (BHN BAKU OBAT) COA N3131826 S/D N3131829,N3133401 S/D N3133406", "output": "29221910"}, {"text_input": "What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334873,B334867,B334875", "output": "29419000"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464288167", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464186395", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464207195", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180L8N001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2444185823", "output": "39123900"}, {"text_input": "What is the hs code for APIFILCAR (BHN BAKU SUPPLEMEN) COA 190714", "output": "28399000"}, {"text_input": "What is the hs code for CETYL PALMITATE PELLETSCAR (BHN BAKU SUPPLEMEN) COA 192063", "output": "28399000"}, {"text_input": "What is the hs code for PRECIROL ATO 5 (BHN BAKU SUPPLEMEN) COA 193319", "output": "28399000"}, {"text_input": "What is the hs code for PRECIFAC 95-3 (BHN BAKU SUPPLEMEN) COA 192853", "output": "28399000"}, {"text_input": "What is the hs code for LABRASOL BF (BHN BAKU SUPPLEMEN) COA 191345", "output": "28399000"}, {"text_input": "What is the hs code for FERROUS GLUCONATE FINE GRAN.... (BHN BAKU SUPPLEMEN) COA 3127778 (POST BORDER)", "output": "29181600"}, {"text_input": "What is the hs code for PARSOL (R) HS(BHN BAKU KOSMETIK) COA HS1150622,HS1160622", "output": "29420000"}, {"text_input": "What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02202018,UE02202019", "output": "29362700"}, {"text_input": "What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02202019,UE02210027", "output": "29362700"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040006", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0722010083", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040104", "output": "29420000"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000208205,00002082056 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22100325 (POST BORDER)", "output": "29362800"}, {"text_input": "What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02109811,TL02112813 (POST BORDER)", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040104", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL ZX (BHN BAKU KOSMETIK) COA 200206012", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040124", "output": "29420000"}, {"text_input": "What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02202009 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020001", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020001,0923020002", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020001", "output": "29420000"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT22100092 (POST BORDER)", "output": "29362800"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT22060028", "output": "32041800"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02208069,TL02209090", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT22100033", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT22061192", "output": "29362100"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12211009", "output": "29362900"}, {"text_input": "What is the hs code for BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 22S0329502 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU KOSMETIK) COA 21S0191800", "output": "13021950"}, {"text_input": "What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 21S0191800", "output": "13021950"}, {"text_input": "What is the hs code for VACCINIUM MYRTILLUS DRY EX. (BHN BAKU SUPLEMEN) COA 21S0314800 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for PREDNISOLONE USP2022 (BHN BAKU OBAT) COA XPL221002", "output": "29372100"}, {"text_input": "What is the hs code for PREDNISOLONE (BHN BAKU OBAT) COA XPL221002, SAMPLE NO COMMERCIAL VALUE", "output": "29372100"}, {"text_input": "What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2270988", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2417191", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2448264", "output": "38210090"}, {"text_input": "What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2173480", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 0335766", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1110920", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2031316", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2031316", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2031316", "output": "38210090"}, {"text_input": "What is the hs code for CD SUPREME FPM 500GR EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2558581", "output": "38210090"}, {"text_input": "What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2094434", "output": "38210090"}, {"text_input": "What is the hs code for MIRASIL DM350 A2 (BHN BAKU KOSMETIK) COA 2307WKW215", "output": "39100090"}, {"text_input": "What is the hs code for OPACODE S-1-11068 GREEN (BHN BAKU PEWARNA TABLET) COA TKL67128,SAMPLE NO COMMERCIAL VALUE", "output": "32151990"}, {"text_input": "What is the hs code for SYN(R)-AKE (BHN BAKU KOSMETIK) COA UE02210016", "output": "29420000"}, {"text_input": "What is the hs code for GENIVIDA(TM) TG (BHN BAKU SUPPLEMEN) COA UT21100004 (POST BORDER)", "output": "29329900"}, {"text_input": "What is the hs code for GENIVIDA(TM) TG (BHN BAKU SUPPLEMEN) COA UT21100004 (POST BORDER)", "output": "29329900"}, {"text_input": "What is the hs code for COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPPLEMEN) COA TL02301182", "output": "29362700"}, {"text_input": "What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22110029", "output": "29362500"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT22120029 (POST BORDER)", "output": "32030010"}, {"text_input": "What is the hs code for PHTHALAVIN (R) ENTERIC COATING POLYMER 2138 CLEAR (BHN BAKU PEWARNA TABLET) COA WP865541", "output": "39059990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C YELLOW 6/SUNSET... (BHN BAKU PEWARNA TABLET) COA WP831240:BA3592", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT (R) 6010 D&C YELLOW 10... (BHN BAKU PEWARNA TABLET) COA WP853308:BB4662", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT (R) 6010 D&C YELLOW 10.. (BHN BAKU PEWARNA TABLET) COA WP864266:BC1291", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C YELLOW 6/...(BHN BAKU PEWARNA TABLET) COA WP862652:BC0373", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5517 FD&C BLUE 1/...(BHN BAKU PEWARNA TABLET) COA WP855129:BB5151", "output": "32151990"}, {"text_input": "What is the hs code for COPPER(II) GLUCONATE, FINE POWDER, USP 43 (BHN BAKU SUPPLEMEN) COA 3126579 (POST BORDER)", "output": "29181600"}, {"text_input": "What is the hs code for COPPER(II) GLUCONATE, FINE POWDER, USP 43 (BHN BAKU SUPPLEMEN) COA 3112568 (POST BORDER)", "output": "29181600"}, {"text_input": "What is the hs code for TAPIOKA STARCH NATURAL 25KG BAG (BHN BAKU KOSMETIK) CAS 9005-25-8", "output": "38249999"}, {"text_input": "What is the hs code for PEARL ESSENCES 35178MJ (BHN BAKU KOSMETIK) COA D3080428", "output": "32061910"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02210438", "output": "29362800"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ20916090,UQ20916091 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for MIN PREMIX LTP 6-12 MONTHS (BHN BAKU MAKANAN) COA XW92302320 (POST BORDER)", "output": "21069059"}, {"text_input": "What is the hs code for MIN PREMIX LTP 1-3 YEARS (BHN BAKU MAKANAN) COA XW92302319 (POST BORDER)", "output": "21069059"}, {"text_input": "What is the hs code for CHOLINE CA FE PREMIX LTP MATERNAL (BHN BAKU MAKANAN) COA XW92302321 (POST BORDER)", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT22061192", "output": "29362100"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL02207948,TL02208199", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN MINERAL PREMIX - JELLY POWDER V2 (BHN BAKU MAKANAN) COA XW92302315 (POST BORDER)", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT22070164,UT22070165", "output": "29362900"}, {"text_input": "What is the hs code for VIT MIN PREMIX LTP 6-12 MONTHS (BHN BAKU MAKANAN) COA XW92302318 (POST BORDER)", "output": "21069059"}, {"text_input": "What is the hs code for VIT MIN PREMIX LTP 1-3 YEARS (BHN BAKU MAKANAN) COA XW92302316 (POST BORDER)", "output": "21069059"}, {"text_input": "What is the hs code for VIT MIN PREMIX LTP MATERNAL (BHN BAKU MAKANAN) COA XW92302317 (POST BORDER)", "output": "21069059"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ20912328", "output": "29362200"}, {"text_input": "What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000209967,0000209968", "output": "29362900"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL02209090", "output": "29362400"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU SUPPLEMEN) COA UT22060028 (POST BORDER)", "output": "32041800"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02208069", "output": "29362400"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12211021", "output": "29362900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ21013603", "output": "29362500"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ20912354", "output": "29362200"}, {"text_input": "What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00798962", "output": "29420000"}, {"text_input": "What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00798962,VE00798963", "output": "29420000"}, {"text_input": "What is the hs code for DL-PANTHENOL 50 L (BHN BAKU KOSMETIK) COA TL02211634 (POST BORDER)", "output": "29362400"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000208206,0000208207 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02205054,TL02209090", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02209079", "output": "29362400"}, {"text_input": "What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00798963", "output": "29420000"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB240123", "output": "39123900"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B120123", "output": "39123900"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B120123", "output": "39123900"}, {"text_input": "What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 060522", "output": "25070000"}, {"text_input": "What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-230202 (POST BORDER)", "output": "29061300"}, {"text_input": "What is the hs code for AMLODIPINE BESILATE BP/EP (BHN BAKU OBAT) COA AMB/004/02/23, AMB/005/02/23", "output": "29333990"}, {"text_input": "What is the hs code for OMEPRAZOLE PELLETS 8,5PCT W/W (BHN BAKU OBAT) COA OP-1845 02 23 S/D OP-1850 02 23", "output": "30039000"}, {"text_input": "What is the hs code for GUAIFENESIN USP 43 (B. BAKU OBAT) COA GGE-2301004 S/D GGE-2302017", "output": "29094900"}, {"text_input": "What is the hs code for VACCINIUM MYRTILLUS DRY EX. (BHN BAKU SUPLEMEN) COA 21S0314800 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU KOSMETIK) COA 22S0183200", "output": "13021950"}, {"text_input": "What is the hs code for CENTELLA ASIATICA/PHOSPHOLIPID (BHN BAKU KOSMETIK) COA 22S0097300", "output": "13021950"}, {"text_input": "What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23B0001600", "output": "13021950"}, {"text_input": "What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23B0001700", "output": "13021950"}, {"text_input": "What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23B0001800", "output": "13021950"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22050071 (POST BORDER)", "output": "29362500"}, {"text_input": "What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02301582 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02301582,TL02302583 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for SYN(R)-AKE (BHN BAKU KOSMETIK) COA UE02210014", "output": "29420000"}, {"text_input": "What is the hs code for KF-54HV (18KG) (BHN BAKU KOSMETIK) CAS 68083-14-7", "output": "38249999"}, {"text_input": "What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9", "output": "38249999"}, {"text_input": "What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) CAS 68937-54-2", "output": "38249999"}, {"text_input": "What is the hs code for KP-561P (16KG) (BHN BAKU KOSMETIK) CAS 329236-76-2", "output": "38249999"}, {"text_input": "What is the hs code for KSG-210 (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9", "output": "38249999"}, {"text_input": "What is the hs code for KSG-710 (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9", "output": "38249999"}, {"text_input": "What is the hs code for ISOFLAVONES 150 BDF (BHN BAKU KOSMETIK) CAS 84776-91-0", "output": "38249999"}, {"text_input": "What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) CAS 8002-43-5", "output": "38249999"}, {"text_input": "What is the hs code for TYROSTAT TM 09 (BHN BAKU KOSMETIK) COA 784011715P (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for ABYSSINE TM PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for ABYSSINE TM PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for SILIGEL TM (BHN BAKU KOSMETIK) CAS 11138-66-2", "output": "38249999"}, {"text_input": "What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for LANACHRYS 2B PF (PRESERVATIVE- (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784021665N (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829011551N (POST BORDER)", "output": "29224900"}, {"text_input": "What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for LIPOID PPL-600 (BHN BAKU SUPPLEMEN) COA 577200-2220234 (POST BORDER)", "output": "29232011"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG230224 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN E (BHN BAKU KOSMETIK) COA 201202301207 (POST BORDER)", "output": "29362800"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM...(BHN BAKU MAKANAN) COA ROA239223,ROA203226,ROA245224,...(POST BORDER)", "output": "28363000"}, {"text_input": "What is the hs code for VIT PREMIX FOR CHEESE BLOCK CHEDDAR (BHN BAKU MAKANAN) COA XW92302188 (POST BORDER)", "output": "21069059"}, {"text_input": "What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02210027,UE02210029 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060101,0522060103", "output": "29420000"}, {"text_input": "What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02210029 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060103", "output": "29420000"}, {"text_input": "What is the hs code for VC CALCIUM ASCORBATE DC (BHN BAKU SUPPLEMEN) COA HPT2302021 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for VC CALCIUM ASCORBATE DC (BHN BAKU SUPPLEMEN) COA HPT2302021 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) CAS 1332-09-8", "output": "38249999"}, {"text_input": "What is the hs code for SORBITOL SOLUTION 70 PCT CRYSTALLINE (BHN BAKU KOSMETIK) COA 2223P707", "output": "29054400"}, {"text_input": "What is the hs code for LIGHT MAGNESIUM CARBONATE POWDER, BP 2021 (BHN BAKU MAKANAN) COA 3121984-02", "output": "28369990"}, {"text_input": "What is the hs code for FERROUS SULFATE, DRIED, POWDER, USP43 (BHN BAKU SUPPLEMEN) COA 3116763", "output": "28332920"}, {"text_input": "What is the hs code for DIPOTASSIUM PHOSPHATE POWDER (BHN BAKU MAKANAN) COA 3124916", "output": "28352400"}, {"text_input": "What is the hs code for POTASSIUM L-ASPARTATE 0,5-HYDRATE (BHN BAKU SUPPLEMEN) COA 3097137", "output": "29224900"}, {"text_input": "What is the hs code for TRICALCIUM CITRATE 4-HYDRATE POWDER (BHN BAKU OBAT) COA 3127724", "output": "29181590"}, {"text_input": "What is the hs code for FERROUS LACTATE 2-HYDRATE, POWDER (BHN BAKU MAKANAN) COA 3122394", "output": "29181200"}, {"text_input": "What is the hs code for FERROUS GLUCONATE, POWDER, USP 43 (BHN BAKU SUPPLEMEN) COA 3127991", "output": "29181600"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN549332", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN549333", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN549335", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN549334", "output": "35051010"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS", "output": "38249999"}, {"text_input": "What is the hs code for PEARL ESSENCES 35178MJ (BHN BAKU KOSMETIK) COA D3080428", "output": "32061910"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-042033 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-012023 (POST BORDER)", "output": "29224900"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-012723", "output": "13021950"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP2230227", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIOCTP-500 (BHN BAKU KOSMETIK) COA BOPN-052822 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (B) (BHN BAKU KOSMETIK) COA AMIBD-022513 (POST BORDER)", "output": "29224900"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-012023,062122 (POST BORDER)", "output": "29224900"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-042033 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1230309", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-070522 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011702", "output": "13021950"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N28115", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-012723,070122", "output": "13021950"}, {"text_input": "What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA NC1457M", "output": "29372200"}, {"text_input": "What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-005-Z (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for DOWSIL 9041 SIL ELAST BLEND (BHN BAKU KOSMETIK) COA H052M9F033", "output": "39100020"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA DRY VITAMIN A ACETATE 325 CWS/A", "output": "29362100"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20221003", "output": "29362800"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20221003", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPPLEMEN) COA WB22080772", "output": "29362800"}, {"text_input": "What is the hs code for BARCROFT TM MAGNESIUM HYDROXIDE USP-5300 (BHN BAKU SUPPLEMEN) COA 102369001", "output": "28161000"}, {"text_input": "What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4", "output": "38249999"}, {"text_input": "What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9", "output": "38249999"}, {"text_input": "What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9", "output": "38249999"}, {"text_input": "What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9", "output": "38249999"}, {"text_input": "What is the hs code for SPECWHITE VCE (BHN BAKU KOSMETIK) COA 20221105,20230203 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for GF-B331 (BHN BAKU KOSMETIK) COA 20230224001", "output": "35051090"}, {"text_input": "What is the hs code for DOPAMINE HCL (BHN BAKU OBAT) COA 23100084", "output": "29222900"}, {"text_input": "What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 23100075", "output": "29221990"}, {"text_input": "What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 23100076", "output": "29221990"}, {"text_input": "What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 23100076", "output": "29221990"}, {"text_input": "What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-0740323", "output": "29334910"}, {"text_input": "What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWDER... (B.BAKU KOSMETIK) CAS 65497-29-2", "output": "38249999"}, {"text_input": "What is the hs code for CITRIC ACID MONOHYDRATE (CAM) GRANULAR 8-40 MESH E330 (BHN BAKU KOSMETIK) COA 6MT2212013", "output": "29181400"}, {"text_input": "What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323020044", "output": "29420000"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ20912328,UQ20912329", "output": "29362200"}, {"text_input": "What is the hs code for MINERAL PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92302150,XW92302151", "output": "21069059"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ21210857 (POST BORDER", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2201009", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT22061192(POST BORDER)", "output": "29362100"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ21210857 (POST BORDER)", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN PREMIX FOR POWDER DRINK (BHN BAKU MAKANAN) COA XW92302149 (POST BORDER)", "output": "21069059"}, {"text_input": "What is the hs code for VIT-MIN PEDIATRIC NUTRITION PREMIX 1 (BHN BAKU MAKANAN) COA XW92303002 (POST BORDER)", "output": "21069059"}, {"text_input": "What is the hs code for VIT-MIN PEDIATRIC NUTRITION PREMIX 2 (BHN BAKU MAKANAN) COA XW92303003 (POST BORDER)", "output": "21069059"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ21210857 (POST BORDER)", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT22080166 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02210029,UE02211038 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211038,UE02211041 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for 2VIT PREMIX BEAUPLEX H0501 (BHN BAKU KOSMETIK) COA XW92302152", "output": "29420000"}, {"text_input": "What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES2209782", "output": "29420000"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPPLEMEN) COA UT22090037 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22060063 (POST BORDER)", "output": "29362300"}, {"text_input": "What is the hs code for FERROUS GLUCONATE HYDRATE, POWDER... (BHN BAKU SUPPLEMEN) COA 3123925 (POST BORDER)", "output": "29181600"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA728050", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O665000...(BHN BAKU PEWARNA TABLET) COA GA728052", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86512...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007...(BHN BAKU PEWARNA TABLET) COA GA728054", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86674...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 02F52182...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A62337...(BHN BAKU PEWARNA TABLET) COA GA728264", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) KB LOW VISCOSITY FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 151-21-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86674...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G54002...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA727607", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA727607", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B82443...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0", "output": "38249999"}, {"text_input": "What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) CAS 638164-47-3", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS SILK-1000 (BHN BAKU KOSMETIK) CAS 96690-41-4", "output": "38249999"}, {"text_input": "What is the hs code for AMITOSE HGA (BHN BAKU KOSMETIK) COA LAA (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for FLOWLAC (R) 100 (BHN BAKU OBAT) COA L101500823", "output": "17021100"}, {"text_input": "What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104310523", "output": "17021100"}, {"text_input": "What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103860823", "output": "17021100"}, {"text_input": "What is the hs code for CAPSULAC (R) 60 (BHN BAKU OBAT) COA L100410423", "output": "17021100"}, {"text_input": "What is the hs code for MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103154322", "output": "17021100"}, {"text_input": "What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 222516 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 230453", "output": "29329900"}, {"text_input": "What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 221275 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 222274 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 222516 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for BIO-PGA SOLUTION HB (BHN BAKU KOSMETIK) COA 222624", "output": "39139090"}, {"text_input": "What is the hs code for CHRONO CHARDY (BHN BAKU KOSMETIK) COA 222667 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 221252 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for GABAPENTIN (USP) (BHN BAKU OBAT) COA CGBU230112", "output": "29224900"}, {"text_input": "What is the hs code for BUDESONIDE MICRONIZED (BHN BAKU OBAT) COA NB3038M", "output": "29372900"}, {"text_input": "What is the hs code for DESONIDE MICRONIZED (BHN BAKU OBAT) COA NC3328M", "output": "29372900"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE USP (BAHAN BAKU OBAT) COA ASG/03/020323", "output": "29420000"}, {"text_input": "What is the hs code for CROSCARMELLOSE SODIUM USP-NF (BHN BAKU OBAT) COA ACRMC/03/020323 S/D 060323", "output": "39129090"}, {"text_input": "What is the hs code for CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/03/020323", "output": "39123100"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE BP (BAHAN BAKU OBAT) COA ASGP/02/190223,ASGP/02/050223", "output": "29420000"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE USP (BAHAN BAKU OBAT) COA ASG/03/030323,040323,040323-1,050323,050323-1", "output": "29420000"}, {"text_input": "What is the hs code for WORLEE ALOE PURE BALANCE IF 200X FD (BAHAN BAKU KOSMETIK) COA 512251 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for OPAGLOS 6000 WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET) COA DT736523,SAMPLE NO COMMERCIAL VALUE", "output": "32151990"}, {"text_input": "What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT22090105 (POST BORDER)", "output": "29362100"}, {"text_input": "What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22110028 (POST BORDER)", "output": "29362500"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02209078 (POST BORDER)", "output": "32041800"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22070048 (POST BORDER)", "output": "29362100"}, {"text_input": "What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22110028 (POST BORDER)", "output": "29362500"}, {"text_input": "What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT22110029 (POST BORDER)", "output": "29362500"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT22120006 (POST BORDER)", "output": "32041800"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02209079,UE02209080 (POST BORDER)", "output": "32041800"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22060047 (POST BORDER)", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT22111211 S/D UT22111213 (POST BOR", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22070048 (POST BORDER)", "output": "29362100"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ30110523,UQ30110524", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT22111213,UT22111214", "output": "29362100"}, {"text_input": "What is the hs code for MEG-3(TM) 10 N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT22090027 S/D UT22110029", "output": "29362500"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU MAKANAN) COA UT22100026", "output": "32041800"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT22120029", "output": "32030010"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT22120029", "output": "32030010"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU SUPPLEMEN) COA UT23010007", "output": "29362800"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202405,122202406", "output": "28363000"}, {"text_input": "What is the hs code for CLOBETASOL PROPIONATE USP MICRONISED (BHN BAKU OBAT) COA APL/CLP/01054/B-2", "output": "29372200"}, {"text_input": "What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 23100120", "output": "29395900"}, {"text_input": "What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 23100121", "output": "29395900"}, {"text_input": "What is the hs code for FERROUS FUMARATE (BHN BAKU OBAT) COA 2023/33", "output": "29171900"}, {"text_input": "What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA LC002-23-801", "output": "17021100"}, {"text_input": "What is the hs code for DURALAC H (BHN BAKU OBAT) COA LC045-22-805", "output": "17021100"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT KIWI CSB (BHN BAKU KOSMETIK) COA 02/19GAAK", "output": "28399000"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT KIWI ECH (BHN BAKU KOSMETIK) COA 02/19GAAK, SAMPLE NO COMMERCIAL VALUE", "output": "28399000"}, {"text_input": "What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO BP (BHN BAKU KOSMETIK) COA 192311", "output": "28399000"}, {"text_input": "What is the hs code for CORTISONE ACETATE MICRONISED PH.EUR JP (BHN BAKU SUPPLEMEN) COA 2301060512", "output": "29372900"}, {"text_input": "What is the hs code for HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2530323", "output": "29397900"}, {"text_input": "What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA B100400", "output": "29419000"}, {"text_input": "What is the hs code for CEFTAZIDIME BUFFERED (BHN BAKU OBAT) COA B20070M", "output": "29419000"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG230303 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for L-GLUTAMIC ACID (FCC GRADE) PURITY... (BHN BAKU MAKANAN) COA 1000104173/230327 (POST BORDER)", "output": "29224900"}, {"text_input": "What is the hs code for COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPPLEMEN) COA TL02301358 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT22120030 (POST BORDER)", "output": "32030010"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT22100036 (POST BORDER)", "output": "29362600"}, {"text_input": "What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 3072748", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 3172748", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2269098", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2228563", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2339387", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MR-VP MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3045918", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2104098", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 1 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2228563", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2143804", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2143687", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2066423", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 2034966", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2188691", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2313348", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2207189", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2123842", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2047633", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2103834", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2235469", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 1264670,..", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2158081", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2269093", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MOTILITY TEST MEDIUM BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2067250", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2096996", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MYP AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 220803", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1292710", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M TGE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2201315", "output": "38210090"}, {"text_input": "What is the hs code for CULTURESWAB PLUS AMLES W/O CHARC SINGLE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 221603900", "output": "38210090"}, {"text_input": "What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2208003,2231719,.", "output": "38210090"}, {"text_input": "What is the hs code for MIAMI SCG(S) (BHN BAKU KOSMETIK) COA MWC2300431", "output": "34023990"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2139402", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3032477", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3032477", "output": "38210090"}, {"text_input": "What is the hs code for CYTOFIX/CYTOPERM SOLN KIT (MEDIA TUK PENGEMBANGAN MIKRO ORGANISME) BATCH 2242794,2242817", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2139402", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2300555", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2060591", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL H ANTISERUM C 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1140112", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SHIGELLA ANTIS POLY A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2125067", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2322505", "output": "38210090"}, {"text_input": "What is the hs code for VIAL E COLI O ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2125078", "output": "38210090"}, {"text_input": "What is the hs code for VIAL TTC SOLUTION 1 PCT 1X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2363660", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2244351", "output": "38210090"}, {"text_input": "What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP W135 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1092251", "output": "38210090"}, {"text_input": "What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9", "output": "38249999"}, {"text_input": "What is the hs code for SUNOBEL HMS (HOMOSALATE(OTC)) (BHN BAKU KOSMETIK) COA 0423040028", "output": "29182300"}, {"text_input": "What is the hs code for SUNOBEL OS (OCTYL SALICYLATE(OTC)) (BHN BAKU KOSMETIK) COA 0723010019", "output": "29182300"}, {"text_input": "What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323020044", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P1G27QA000", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001677950", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323020044,0323020046,0323020047", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010524,0822010525", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020002", "output": "29420000"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02206017 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22060202 (POST BORDER)", "output": "29362800"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02206017 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040104", "output": "29420000"}, {"text_input": "What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES2209782", "output": "29420000"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22060202,UT23010001 (POST BORDER)", "output": "29362800"}, {"text_input": "What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC220713", "output": "29420000"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02206015 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22060063 (POST BORDER)", "output": "29362300"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22060063 (POST BORDER)", "output": "29362300"}, {"text_input": "What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW92303092,XW92303093 (POST BORDER)", "output": "21069059"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP12211021 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000209474,0000209599 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211041 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02112813 (POST BORDER)", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN PREMIX FOR MARGARINE MY15-0027 (BHN BAKU MAKANAN) COA MY62303210 (POST BORDER)", "output": "21069059"}, {"text_input": "What is the hs code for NABUMETONE USP (BAHAN BAKU OBAT) COA H-2501222", "output": "29145000"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for INCA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK) CAS 68956-68-3", "output": "38249999"}, {"text_input": "What is the hs code for SEABUCKTHRON HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HIR220801-B (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220803 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIE220602 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) CAS 8001-25-0", "output": "38249999"}, {"text_input": "What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP03023 (POST BORDER)", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP01423 (POST BORDER)", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM.. (BHN BAKU SUPPLEMEN) COA MTP03123,... , SAMPLE..., (POST BORDER)", "output": "28363000"}, {"text_input": "What is the hs code for LIPOID PPL-600 (BHN BAKU SUPPLEMEN) COA 577200-2230235 (POST BORDER)", "output": "29232011"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP23034137 S/D XP23034140", "output": "29211900"}, {"text_input": "What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2032032", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2270988", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTONE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1341564", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2441197", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1110920", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1110920", "output": "38210090"}, {"text_input": "What is the hs code for ZINC GLUCONATE POWDER USP 43 (BHN BAKU OBAT) COA 3131555 (POST BORDER)", "output": "29181600"}, {"text_input": "What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 80 CAN 10KG (BHN BAKU KOSMETIK) CAS 1117-86-8", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 712 CAN 10 KG (BHN BAKU KOSMETIK) CAS 65-85-0", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 903 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) CAS 122-99-6", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 10 CAN 10 KG (BHN BAKU KOSMETIK) CAS 1117-86-8", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9", "output": "38249999"}, {"text_input": "What is the hs code for NIACINAMIDE USP (NIACINAMIDE USP/EP) (BHN BAKU KOSMETIK)COA 22-23/NMD[P]/00366 S/D 00373", "output": "29362900"}, {"text_input": "What is the hs code for SETACIN 103/SPEZIAL OR NP - RSPO - MB (BHN BAKU KOSMETIK) COA 804", "output": "34023990"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464343755", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464343755", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464186398", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464343755", "output": "39123900"}, {"text_input": "What is the hs code for TRISODIUMCITRATE DIHYDRATE FINE GRANULAR (BHN BAKU SUPPLEMEN) COA UJ251,UJ252", "output": "29181400"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU SUPLEMEN) COA UJ248", "output": "29181400"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS FINE GRANULAR 51N (BHN BAKU SUPLEMEN) COA UJ248", "output": "29181400"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT22121222,UT23011226", "output": "29362100"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30216022", "output": "29362700"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL02211943", "output": "29362700"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT23020021", "output": "29362800"}, {"text_input": "What is the hs code for PRO-LIPO TM NEO (BHN BAKU KOSMETIK) CAS 504-63-2", "output": "38249999"}, {"text_input": "What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829011771P", "output": "29224900"}, {"text_input": "What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) CAS 50-70-4", "output": "38249999"}, {"text_input": "What is the hs code for AMISOL TM 4135 (BHN BAKU KOSMETIK) CAS 8002-43-5", "output": "38249999"}, {"text_input": "What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769011334N", "output": "29224900"}, {"text_input": "What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769011397N", "output": "29224900"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834011557N", "output": "29224900"}, {"text_input": "What is the hs code for GREYVERSE TM (BHN BAKU KOSMETIK) COA 833011664P", "output": "29224900"}, {"text_input": "What is the hs code for LANABLUE TM PARABEN FREE (BHN BAKU KOSMETIK) CAS 50-70-4", "output": "38249999"}, {"text_input": "What is the hs code for LANACHRYS 2B PF (PRESERVATIVE) (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for MELANOSTATINE TM 5 BG (50PPM) (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for PROGELINE TM (BHN BAKU KOSMETIK) COA 213920", "output": "29224900"}, {"text_input": "What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784021665N", "output": "13021990"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) CAS 8002-43-5", "output": "38249999"}, {"text_input": "What is the hs code for DL-ALPHA-TOCOPHEROL (BHN BAKU KOSMETIK) COA 01230107ES", "output": "29362800"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O665000...(BHN BAKU PEWARNA TABLET) COA GA728878", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007...(BHN BAKU PEWARNA TABLET) COA GA728879", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O92157...(BHN BAKU PEWARNA TABLET) COA GA728880", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359.. (BHN BAKU PEWARNA TABLET) COA GA728915", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O620011...(BHN BAKU PEWARNA TABLET) COA GA728916", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B84893...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B54445...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B28796...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G62544...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 02F54189...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 02F52182...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51156...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A18597...(BHN BAKU PEWARNA TABLET) COA GA728923", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A18597...(BHN BAKU PEWARNA TABLET) COA GA728923", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A62337...(BHN BAKU PEWARNA TABLET) COA GA728973", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-6708...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M536854 S/D ,M536856,M536877,M536878", "output": "29411019"}, {"text_input": "What is the hs code for PURIMOX POWDER (BHN BAKU OBAT) COA M486456", "output": "29411019"}, {"text_input": "What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M536878,M536879,M536881,M536882", "output": "29411019"}, {"text_input": "What is the hs code for PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M598846,M599016,M599017,M599024", "output": "29411019"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220803", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-220602", "output": "13021990"}, {"text_input": "What is the hs code for KIGELINE (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6", "output": "38249999"}, {"text_input": "What is the hs code for PHYTELENE COMPLEX EGX 773 (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for WITCH HAZEL PHYTELENE EG 138 (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for SEABUCKTHRON HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA HIR220801-B", "output": "13021990"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40 BRIX) CSB (BHN BAKU KOSMETIK) COA 02/22GL4", "output": "28399000"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40 BRIX) ECH (B.BAKU KOSMETIK) COA 02/22GL4, SAMPLE NO COMMERCIAL VALUE", "output": "28399000"}, {"text_input": "What is the hs code for EMULIUM MELLIFERA MB (BHN BAKU KOSMETIK) COA 194235", "output": "28399000"}, {"text_input": "What is the hs code for FENTACARE 1631 25 MB 200KG PLAS DR (BHN BAKU KOSMETIK ) COA ZH23B2505M,ZH23C2303M", "output": "29239000"}, {"text_input": "What is the hs code for IMERCARE (R) VELLUTO (BHN BAKU KOSMETIK) COA L763690", "output": "38029090"}, {"text_input": "What is the hs code for CELLOSIZE TM TEXTURE F4M HYDROXYPROPYL... (BHN BAKU KOSMETIK) COA F410M46D31", "output": "39123900"}, {"text_input": "What is the hs code for SERASENSE SF 2 (BAHAN BAKU SUPLEMEN) COA SA30316012,SA30316018,SA30316020,SA30316021", "output": "39100090"}, {"text_input": "What is the hs code for 4-HYDROXYACETOPHENONE (BHN BAKU KOSMETIK) COA 202303022", "output": "29145000"}, {"text_input": "What is the hs code for VALERIAN DRY HYDR. EXTR. (BAHAN BAKU SUPLEMEN) COA 22B0109000", "output": "13021990"}, {"text_input": "What is the hs code for SILYMARIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23B0010200", "output": "13021990"}, {"text_input": "What is the hs code for ONDANSETRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA AOND-23003", "output": "29332900"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202406,122202407", "output": "28363000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202407,122302511", "output": "28363000"}, {"text_input": "What is the hs code for SUNFIBER AG (BHN BAKU MAKANAN) COA 212311", "output": "13021950"}, {"text_input": "What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) CAS 233683-84-6", "output": "38249999"}, {"text_input": "What is the hs code for FENTACARE 2231 EF 25KG PAPER BOX (BHN BAKU KOSMETIK ) COA ZH23B1102,ZH23D1001", "output": "34029019"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB22080265 (POST BORDER)", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPPLEMEN) COA WB23030781 (POST BORDER)", "output": "29362800"}, {"text_input": "What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02303309 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for SYN(R)-AKE (BHN BAKU KOSMETIK) COA UE02210014", "output": "29420000"}, {"text_input": "What is the hs code for ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2205101 (POST BORDER)", "output": "32030010"}, {"text_input": "What is the hs code for DS-CERAMIDE Y3S (BHN BAKU KOSMETIK) COA CSKI06", "output": "29241990"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100MESH (BHN BAKU SUPLEMEN) COA 6AX2303063", "output": "29181400"}, {"text_input": "What is the hs code for PANTOPRAZOLE SODIUM (STERILE) (BAHAN BAKU OBAT) COA SI/PPZ/00320323,SI/PPZ/00350323", "output": "29333990"}, {"text_input": "What is the hs code for IRBESARTAN (BAHAN BAKU OBAT ) COA C5415-22-026", "output": "29332900"}, {"text_input": "What is the hs code for PYRAZINAMIDE EP/USP (BHN BAKU OBAT) COA WHOPZ 004 D 23 S/D WHOPZ 014 D 23", "output": "29339990"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE USP (BAHAN BAKU OBAT) COA ASG/03/300323,ASG/04/060423 S/D 090423", "output": "29420000"}, {"text_input": "What is the hs code for PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3426790 (POST BORDER)", "output": "33029000"}, {"text_input": "What is the hs code for PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3428591 (POST BORDER)", "output": "33029000"}, {"text_input": "What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 22290043", "output": "30039000"}, {"text_input": "What is the hs code for VC SODIUM ASCORBATE REGULAR (BHN BAKU SUPPLEMEN) COA HPN2303154 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512245,G0251303", "output": "47069200"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE... (BHN BAKU KOSMETIK) COA CHP1230309 (POST BORDER)", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-022802,012333 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-031333 (POST BORDER)", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-012723", "output": "13021950"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA MAK114", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE... (BHN BAKU KOSMETIK) COA CHP1230309 (POST BORDER)", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012333 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011702", "output": "13021950"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-043133 (POST BORDER)", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N28115", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-070522 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-020192 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N28115", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND TEA TREE EXTRACT (BHN BAKU KOSMETIK) COA MASL-010933 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for FLOWLAC (R) 100 (BHN BAKU OBAT) COA L101500823 (POST BORDER)", "output": "17021100"}, {"text_input": "What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104311323 (POST BORDER)", "output": "17021100"}, {"text_input": "What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) CAS 8002-43-5", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for ECOGEL TM (BHN BAKU KOSMETIK) CAS 85711-58-6", "output": "38249999"}, {"text_input": "What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784021665N (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) TF TIO2 FREE MOISTURE BARRIER FILM...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) TF TIO2 FREE MOISTURE BARRIER FILM...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O620011...(BHN BAKU PEWARNA TABLET) COA GA729764", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) KB LOW VISCOSITY FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 151-21-3", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359...(BHN BAKU PEWARNA TABLET) COA GA729689", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G54002...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-22-17515...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55015...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55041..(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229... (BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for NAI-WHITE A (BHN BAKU KOSMETIK) COA C221012AA", "output": "32061190"}, {"text_input": "What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-0940423", "output": "29334910"}, {"text_input": "What is the hs code for CHOLINE CHLORIDE 60 PCT (BHN BAKU PAKAN HEWAN) CAS 67-48-1", "output": "38249999"}, {"text_input": "What is the hs code for IMERCARE (R) VELLUTO (BHN BAKU KOSMETIK) COA L763690", "output": "38029090"}, {"text_input": "What is the hs code for MIRASIL DM5 L (BHN BAKU KOSMETIK) COA 2312FF2415", "output": "39100090"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG230331 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for PRAYPHOS DKP FG 25K BG (BHN BAKU KOSMETIK) COA 2223032", "output": "28352400"}, {"text_input": "What is the hs code for PRAYPHOS MKP FG 25K BG (BHN BAKU KOSMETIK) COA 0009E", "output": "29420000"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5CT SD (BHN BAKU SUPPLEMEN) COA UT22070008 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22120257 (POST BORDER)", "output": "29362400"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ21213653 (POST BORDER)", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN PREMIX MILK POWDER FOR ADULTS (BHN BAKU MAKANAN) COA XW92303074 (POST BORDER)", "output": "21069059"}, {"text_input": "What is the hs code for MINERAL PREMIX MILK POWDER FOR ADULTS V2 (BHN BAKU MAKANAN) COA XW92303075,XW92303076 (POST BOR", "output": "21069059"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ21210864 (POST BORDER)", "output": "29362300"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11221041 (POST BORDER)", "output": "29362500"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12211021,OP12301007 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT22110042 (POST BORDER)", "output": "29362100"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22120257 (POST BORDER)", "output": "29362400"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22060064 (POST BORDER)", "output": "29362300"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU MAKANAN) COA UT22070008 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL02208214 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL02211116 (POST BORDER)", "output": "29362400"}, {"text_input": "What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000209969 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0723010013", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P2B06QA000", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040006", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060078", "output": "29420000"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU KOSMETIK) COA UT22120257 (POST BORDER)", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040006", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0723010013", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS1170622", "output": "29420000"}, {"text_input": "What is the hs code for IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S145/23,S191/21,S181/22,S600/22", "output": "38029090"}, {"text_input": "What is the hs code for ETHAMBUTOL (BHN BAKU OBAT) COA N3142156 S/D N3142158, N3142257 S/D N3142259", "output": "29221910"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202098,122202099", "output": "28363000"}, {"text_input": "What is the hs code for EFFERSODA (R) 12 (BHN BAKU OBAT) COA 122202099,122202242", "output": "28363000"}, {"text_input": "What is the hs code for LIGHT MAGNESIUM CARBONATE POWDER, BP 2021 (BHN BAKU MAKANAN) COA 3121984-02", "output": "28369990"}, {"text_input": "What is the hs code for FERROUS SULFATE, DRIED, POWDER, USP43 (BHN BAKU SUPPLEMEN) COA 3116763", "output": "28332920"}, {"text_input": "What is the hs code for DIPOTASSIUM PHOSPHATE POWDER (BHN BAKU MAKANAN) COA 3124916", "output": "28352400"}, {"text_input": "What is the hs code for POTASSIUM L-ASPARTATE 0,5-HYDRATE (BHN BAKU SUPPLEMEN) COA 3097137", "output": "29224900"}, {"text_input": "What is the hs code for TRICALCIUM CITRATE 4-HYDRATE POWDER (BHN BAKU OBAT) COA 3127724", "output": "29181590"}, {"text_input": "What is the hs code for FERROUS LACTATE 2-HYDRATE, POWDER (BHN BAKU MAKANAN) COA 3122394", "output": "29181200"}, {"text_input": "What is the hs code for FERROUS GLUCONATE, POWDER, USP 43 (BHN BAKU SUPPLEMEN) COA 3127991", "output": "29181600"}, {"text_input": "What is the hs code for VACC.MYRT./PINUS PIN. DRY (BHN BAKU SUPPLEMEN) COA 22S0290300", "output": "13021950"}, {"text_input": "What is the hs code for ECHINACEA ANG.DRY PURIF.EX. (BHN BAKU SUPLEMEN) COA 21S0155200 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for POTASSIUM IODIDE AND CARRIER (BHN BAKU OBAT) COA 3131168", "output": "28276000"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F19250...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2023020105 (POST BORDER)", "output": "21012020"}, {"text_input": "What is the hs code for RANITIDINE HYDROCHLORIDE USP (BAHAN BAKU OBAT) COA RH 115 02 23", "output": "29321900"}, {"text_input": "What is the hs code for PANTOPRAZOLE SODIUM USP (BHN BAKU OBAT) COA PS0581221", "output": "29333990"}, {"text_input": "What is the hs code for VITAMIN E (BHN BAKU KOSMETIK) COA 201202302204 (POST BORDER)", "output": "29362800"}, {"text_input": "What is the hs code for IONOL CP (BHN BAKU KOSMETIK) COA 01117322 (POST BORDER)", "output": "29071900"}, {"text_input": "What is the hs code for CEFTAZIDIME BUFFERED (BHN BAKU OBAT) COA B20090M", "output": "29419000"}, {"text_input": "What is the hs code for AMPICILLIN SODIUM (STERILE) BP (BHN BAKU OBAT) COA SI/AMP/00100323", "output": "29411020"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM...(BHN BAKU MAKANAN) COA ROA041237,ROA042233,ROA038234,... (POST BORDER)", "output": "28363000"}, {"text_input": "What is the hs code for COOLACT 10 (BHN BAKU KOSMETIK) COA T008800", "output": "29094900"}, {"text_input": "What is the hs code for POTASSIUM IODIDE FCC (BHN BAKU OBAT UTK PAKAN TERNAK) COA KID/E/2223/012, KID/E/2324/001", "output": "28276000"}, {"text_input": "What is the hs code for GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 22T0095000 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 22290043", "output": "30039000"}, {"text_input": "What is the hs code for PANTOPRAZOLE SODIUM USP (BHN BAKU OBAT) COA PS0581221", "output": "29333990"}, {"text_input": "What is the hs code for HERBAL EXTRACTS (GARCINIA CAMBOGIA 60 PCT CA-K SALT) (BHN BAKU KOSMETIK) COA FGC2210003 (POST B", "output": "13021990"}, {"text_input": "What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU UTK PAKAN TERNAK) COA 202300029", "output": "28183000"}, {"text_input": "What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 230312", "output": "29061900"}, {"text_input": "What is the hs code for OILESS' CITY TM (BHN BAKU KOSMETIK) COA (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for OILESS' CITY TM (BHN BAKU KOSMETIK) COA (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for WILDPLUM HARVEST TM AF (BHN BAKU KOSMETIK) COA (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 221110 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA (POST BORDER)", "output": "33012990"}, {"text_input": "What is the hs code for PROMOIS EU-118(IS) (BHN BAKU KOSMETIK) CAS 111174-63-1", "output": "38249999"}, {"text_input": "What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) CAS 638164-47-3", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS SILK-1000 (BHN BAKU KOSMETIK) CAS 96690-41-4", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0", "output": "38249999"}, {"text_input": "What is the hs code for MAGNESIUM HYDROXYDE MS90 PHARMA (BHN BAKU OBAT) COA 202300122", "output": "28161000"}, {"text_input": "What is the hs code for CALCIUM CARBONATE DC TYPE CS90 PHARMA (BHN BAKU OBAT) COA 202300072", "output": "28365010"}, {"text_input": "What is the hs code for MAGNESIUM HYDROXYDE MS90 PHARMA (BHN BAKU OBAT) COA 202300122", "output": "28161000"}, {"text_input": "What is the hs code for DEXTROSE ANHYDROUS (BHN BAKU OBAT UTK PAKAN TERNAK) COA XWA230405", "output": "17023010"}, {"text_input": "What is the hs code for MATCHA (BHN BAKU KOSMETIK) CAS 84650-60-2", "output": "38249999"}, {"text_input": "What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M536998 S/D M537003", "output": "29411019"}, {"text_input": "What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M536996,M536998", "output": "29411019"}, {"text_input": "What is the hs code for CROSPOVIDONE XL (BHN BAKU SUPPLEMEN) COA PP230402XL", "output": "39059990"}, {"text_input": "What is the hs code for FIBRE DRUM, PRICE AND AMOUNT ARE FOR CUSTOM ONLY", "output": "48192000"}, {"text_input": "What is the hs code for EMULIUM MELLIFERA MB (BHN BAKU KOSMETIK) COA HF-1220064", "output": "28399000"}, {"text_input": "What is the hs code for GELUCIRE 44/14 (BHN BAKU SUPPLEMEN) COA 190294", "output": "28399000"}, {"text_input": "What is the hs code for LABRAFIL M 1944 CS BF (BHN BAKU SUPPLEMEN) COA 193517", "output": "28399000"}, {"text_input": "What is the hs code for TEFOSE 63 BF (BHN BAKU SUPPLEMEN) COA 193853", "output": "28399000"}, {"text_input": "What is the hs code for EMULCIRE 61 WL 2659 (BHN BAKU SUPPLEMEN) COA 193520", "output": "28399000"}, {"text_input": "What is the hs code for GELOIL SC (BHN BAKU SUPPLEMEN) COA 194704", "output": "28399000"}, {"text_input": "What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 192311", "output": "28399000"}, {"text_input": "What is the hs code for PRECIROL ATO 5 (BHN BAKU SUPPLEMEN) COA 194467", "output": "28399000"}, {"text_input": "What is the hs code for CETYL PALMITATE PELLETSCAR (BHN BAKU SUPPLEMEN) COA 192063", "output": "28399000"}, {"text_input": "What is the hs code for GELUCIRE 48/16 PELLETS (BHN BAKU SUPPLEMEN) COA 185000", "output": "28399000"}, {"text_input": "What is the hs code for COMPRITOL 888 ATO (BHN BAKU SUPPLEMEN) COA 195007", "output": "28399000"}, {"text_input": "What is the hs code for CETYL PALMITATE PELLETSCAR (BHN BAKU SUPPLEMEN) COA 192063", "output": "28399000"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12301007 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ21213653 (POST BORDER)", "output": "29362500"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ20912354 (POST BORDER)", "output": "29362200"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22120257 (POST BORDER)", "output": "29362400"}, {"text_input": "What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000209969 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02301057 (POST BORDER)", "output": "29362800"}, {"text_input": "What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000209969 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT22090038", "output": "29362900"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ20912354 (POST BORDER)", "output": "29362200"}, {"text_input": "What is the hs code for PREMIX VMP JELLY (BHN BAKU MAKANAN) COA XW92303188 (POST BORDER)", "output": "21069059"}, {"text_input": "What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000210457 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN PREMIX FOR FERMENTED MILK (BHN BAKU MAKANAN) COA XW92303214 (POST BORDER)", "output": "21069059"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2204104535", "output": "29372900"}, {"text_input": "What is the hs code for BETAMETHASONE BP/USP (BHN BAKU OBAT) COA XBE230103", "output": "29372200"}, {"text_input": "What is the hs code for PREDNISONE USP (BHN BAKU OBAT) COA NPD221001,NPD230102", "output": "29372100"}, {"text_input": "What is the hs code for DEXAMETHASONE BP/USP (BHN BAKU OBAT) COA NED230403,NED230404", "output": "29372200"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILLIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3079261", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILLIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3079261", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2334621", "output": "38210090"}, {"text_input": "What is the hs code for PLATE STERILE RODAC EMPTY 65X15 MM STYLE(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2111375,2", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MICRO INOCULUM BROTH 500 G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1075951", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MICRO ASSAY CULTURE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0335689", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M ENDO BROTH MF 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2068110", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2271456", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2143788", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2291792", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D-MANNITOL 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2229527", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3055274", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA U/PENGEMBANGAN MIKROORGANISME)BATCH 3052767", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2277799", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2151941", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2263336", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE CHROMAGAR CANDIDA 500GM (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2123851", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2165877", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTONE GLUCOSE EXT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH. 2060588", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2088727", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 5 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1236415", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2217638", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2053778", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE WL DIFFERENTIAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2123844", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TODD HEWITT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2060551", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH B01E335M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2117655", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1285575", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD AGAR MODIFIED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2060412", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE YPD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2305146", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1292710", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2271456", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2311158", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BLOOD AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2067204", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TSB CASEIN MED 500G ( MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 2143687,2256092", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2158117", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DIFCO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2312054,3004839", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1350021", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2034966", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2207189", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2011124", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2123842", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2143788", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2271446", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2005526,2200729", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1285556", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2152796", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GRAM CRYSTAL VIOLET 250ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 3031453", "output": "38210090"}, {"text_input": "What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3075347", "output": "38210090"}, {"text_input": "What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3075347", "output": "38210090"}, {"text_input": "What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3075347", "output": "38210090"}, {"text_input": "What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3075347", "output": "38210090"}, {"text_input": "What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3075347", "output": "38210090"}, {"text_input": "What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3075347", "output": "38210090"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN549556", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN549553", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN549559", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN549558", "output": "35051010"}, {"text_input": "What is the hs code for MACKAM C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 8776-1", "output": "34024990"}, {"text_input": "What is the hs code for ACTIPONE (R) CAMU CAMU GW (BHN BAKU KOSMETIK) COA 10300019", "output": "13021950"}, {"text_input": "What is the hs code for EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300066", "output": "13021950"}, {"text_input": "What is the hs code for IVY DRY HYDR EXTR 10PCT HPLC (BHN BAKU SUPLEMEN) COA 22B0092500", "output": "13021990"}, {"text_input": "What is the hs code for MIAMI SCG(S) (BHN BAKU KOSMETIK) COA MWC2300511", "output": "34023990"}, {"text_input": "What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 30214,30302,30308", "output": "38029090"}, {"text_input": "What is the hs code for REFINED COCONUT OIL - L (BHN BAKU KOSMETIK) COA 0002640007", "output": "15131990"}, {"text_input": "What is the hs code for LAKE PIGMENT (R) 6010 D&C YELLOW 10 ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP853299:BB4499", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5396 ERYTHROSINE ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP860977:1", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5406 FD&C RED 40... (BHN BAKU PEWARNA TABLET) COA WP857248:BB7542", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT (R) 6010 D&C YELLOW 10 ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP853307:BB4660", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C YELLOW 6/SUNSET...(BHN BAKU PEWARNA TABLET) COA WP862658:BC0557", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5517 FD&C BLUE 1/BRILLIANT...(BHN BAKU PEWARNA TABLET) COA WP860651:BB8658", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5627 FD&C BLUE 2/INDIGO...(BHN BAKU PEWARNA TABLET) COA WP863102:BC1252", "output": "32151990"}, {"text_input": "What is the hs code for MAGNESIUM HYDROXYDE MS90 PHARMA (BHN BAKU OBAT) COA 202300122", "output": "28161000"}, {"text_input": "What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) CAS 1119-97-7", "output": "38249999"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20230101 (POST BORDER)", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB23030694 S/D WB23030696 (POST BORDER)", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB23030694 (POST BORDER)", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB23030698 S/D WB23030700 (POST BORDER)", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB22080265 (POST BORDER)", "output": "29362800"}, {"text_input": "What is the hs code for FAIR FOR LIFE REFINED SHEA (BHN BAKU KOSMETIK) COA 0000045896", "output": "15159011"}, {"text_input": "What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9", "output": "38249999"}, {"text_input": "What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) CAS 68937-54-2", "output": "38249999"}, {"text_input": "What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9", "output": "38249999"}, {"text_input": "What is the hs code for KP-561P (16KG) (BHN BAKU KOSMETIK) CAS 329236-76-2", "output": "38249999"}, {"text_input": "What is the hs code for KSG-210 (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9", "output": "38249999"}, {"text_input": "What is the hs code for KSP-101 (15KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6", "output": "38249999"}, {"text_input": "What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9", "output": "38249999"}, {"text_input": "What is the hs code for MC-GLUCAN (BHN BAKU KOSMETIK) COA MCGL230427", "output": "39139090"}, {"text_input": "What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-001-A (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for BOTTLE MICROBIAL CONTENT TEST AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2347732", "output": "38210090"}, {"text_input": "What is the hs code for PROPIDIUM IODINE STAINING SOLUTION 2ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1354798", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1344136", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL H ANTISERUM B 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1364584", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL H ANTISERUM C 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1140112", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS GRP B FLR 1/4/5/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1217576", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTISERUM GRP C1 FTR 6/7 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2244880", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIAUTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2322452", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2279321", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3038435", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2279321", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3093476", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3076458", "output": "38210090"}, {"text_input": "What is the hs code for HYCHECK FOR TOTAL COUNT 10/PK (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 23020301", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3006876", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL H ANTISERUM B 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1364584", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3076458", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3006876", "output": "38210090"}, {"text_input": "What is the hs code for OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 57-50-1", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K84823...(BHN BAKU PEWARNA TABLET) CAS 64044-51-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-38956...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B82443...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) ENTERIC COATING SYSTEM 94O190003...(BHN BAKU PEWARNA TABLET) CAS 25086-15-1", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 151-21-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620023...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B84893...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for AQUACOAT ECD-30 ETHYLCELLULOSE AQUEOUS... (BHN BAKU PEWARNA TABLET) COA 2174151144", "output": "39123900"}, {"text_input": "What is the hs code for AQUACOAT ECD-30 ETHYLCELLULOSE AQUEOUS... (BHN BAKU PEWARNA TABLET) COA 2174260754", "output": "39123900"}, {"text_input": "What is the hs code for SODIUM CARBONATE IPH (BHN BAKU SUPPLEMEN) COA DOC1002321,DOC0862321", "output": "28363000"}, {"text_input": "What is the hs code for ARTESUNATE (STERILE) IP (BHN BAKU OBAT) COA SI/BARS/0010123", "output": "29329900"}, {"text_input": "What is the hs code for OMEPRAZOLE SODIUM STERILE (BHN BAKU OBAT) COA SI/OPZ/00251222", "output": "29333990"}, {"text_input": "What is the hs code for CINNARIZINE BP/EP (BHN BAKU OBAT) COA CIN2304020", "output": "29335990"}, {"text_input": "What is the hs code for VC ASCORBIC ACID REGULAR (BHN BAKU MAKANAN) COA HPB2303210,HPB2303217 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for VC ASCORBIC ACID REGULAR (BHN BAKU MAKANAN) COA HPB2303233 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0003600", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23BB0003700", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23BB0003800", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23BB0003900", "output": "13021990"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT23020002,UT23020003 (POST BORDER)", "output": "29362600"}, {"text_input": "What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF (BHN BAKU SUPPLEMEN) COA UE02302003", "output": "32030010"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30216029,UQ30216030", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30216030 S/D UQ30216032", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02303308", "output": "29362700"}, {"text_input": "What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT23020001", "output": "29362100"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT23020023", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT23020003 (POST BORDER)", "output": "29362600"}, {"text_input": "What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02303308,TL02303309", "output": "29362700"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT23020023", "output": "29362800"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02301001 S/D UE02301003", "output": "32041800"}, {"text_input": "What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2270988", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2484059", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2441197", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2441197", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2461100", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1110920", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1124396", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1124396", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2031316", "output": "38210090"}, {"text_input": "What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2094434", "output": "38210090"}, {"text_input": "What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2314938", "output": "38210090"}, {"text_input": "What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2314938", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2011614", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TC LACTALBUMIN HY DROLYSATE EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2346604", "output": "38210090"}, {"text_input": "What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2314938", "output": "38210090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND OXYGEN WATER (L) (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIOCTP-500 (BHN BAKU KOSMETIK) COA BOPN-052822,021743 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-040812 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND PF CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSSBD-011143", "output": "13021950"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SENAS (BHN BAKU KOSMETIK) COA NASB-032912", "output": "21022090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N28115", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-071343 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012423 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1230406", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N4O107", "output": "28321000"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101851323", "output": "17021100"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101851323", "output": "17021100"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP23044147,XP230440148", "output": "29211900"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55041... (BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G630022...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 21K58794... (BHN BAKU PEWARNA TABLET) CAS", "output": "38249999"}, {"text_input": "What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512303,G02512310", "output": "47069200"}, {"text_input": "What is the hs code for MIRASIL DM5 L (BHN BAKU KOSMETIK) COA 2312FF2415", "output": "39100090"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG230414", "output": "29362700"}, {"text_input": "What is the hs code for DRIED ALUMINUM HYDROXIDE, SORBITOL BLEND BARCROFT TM 0501 (BHN BAKU OBAT) COA 102360002", "output": "28183000"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT22040081(POST BORDER)", "output": "29362400"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT23010001 (POST BORDER)", "output": "29362800"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ20912354 (POST BORDER)", "output": "29362200"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT22110042 (POST BORDER)", "output": "29362100"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT22040081 (POST BORDER)", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL 75 L (BHN BAKU KOSMETIK) COA TL02210333 (POST BORDER)", "output": "29362400"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22110352 (POST BORDER)", "output": "29362800"}, {"text_input": "What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010528", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010528", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0822010528", "output": "29420000"}, {"text_input": "What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211042 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020002,0923020003", "output": "29420000"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000209965,0000209966 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6", "output": "38249999"}, {"text_input": "What is the hs code for HEBELYS (BHN BAKU KOSMETIK) CAS 504-63-2", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO220803", "output": "13021990"}, {"text_input": "What is the hs code for JOB\u2019S TEARS HYDROGLYCOLIC EXTRACT (BG) (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230501", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230501", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230501", "output": "13021990"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6", "output": "38249999"}, {"text_input": "What is the hs code for WITCH HAZEL ORGANIC DISTILLATE 1:10 (SB) (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (BHN BAKU KOSMETIK) CAS 90106-38-0", "output": "38249999"}, {"text_input": "What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4", "output": "38249999"}, {"text_input": "What is the hs code for SPECWHITE VCE (BHN BAKU KOSMETIK) COA 20230304 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for GF-B331 (BHN BAKU KOSMETIK) COA 20230410002", "output": "35051090"}, {"text_input": "What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-230214 (POST BORDER)", "output": "29061300"}, {"text_input": "What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 230464 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 230386 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 222900 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 222516,222677 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 230453 (POST BORDER)", "output": "29329900"}, {"text_input": "What is the hs code for BIO-PGA SOLUTION HB (BHN BAKU KOSMETIK) COA 230184", "output": "39139090"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02303830 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02303830 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02303830 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for PYRAZINAMIDE EP (BHN BAKU OBAT) COA WHOPZ 029 D 23 S/D WHOPZ 029 D 23", "output": "29339990"}, {"text_input": "What is the hs code for DOPAMINE HCL (BHN BAKU OBAT) COA 23100086", "output": "29222900"}, {"text_input": "What is the hs code for CENTELLA ASIATICA/PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 22S0097300", "output": "13021990"}, {"text_input": "What is the hs code for VACC.MYRT./PINUS PIN. DRY (BHN BAKU SUPPLEMEN) COA 22S0290300", "output": "13021990"}, {"text_input": "What is the hs code for CURCUMA PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 23S0012605", "output": "13021990"}, {"text_input": "What is the hs code for METHOCEL E15 PREMIUM LV HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2444208486", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2444185823", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E50 PREMIUM LV HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA D011L9HL02", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464207191", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL A15 PREMIUM LV METHYLCELLULOSE..(BHN BAKU PEWARNA TABLET) COA D180M11022", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL A15 PREMIUM LV METHYLCELLULOSE..(BHN BAKU PEWARNA TABLET) COA 2464205144", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL A15 PREMIUM LV METHYLCELLULOSE...(BHN BAKU PEWARNA TABLET) COA D180M11022", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL A15 PREMIUM LV METHYLCELLULOSE..(BHN BAKU PEWARNA TABLET) COA 2464274694", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL A15 PREMIUM LV METHYLCELLULOSE...(BHN BAKU PEWARNA TABLET) COA 2464205135", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E50 PREMIUM LV HYDROXYPROPYL....(BHN BAKU PEWARNA TABLET) COA D011M3CL02", "output": "39123900"}, {"text_input": "What is the hs code for OPACODE (R) MONOGRAMMING INK S-1-180000 ... (BHN BAKU PEWARNA TABLET) COA WP869360", "output": "32151990"}, {"text_input": "What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA MLAH0130323,MLAH0170323", "output": "29341000"}, {"text_input": "What is the hs code for SENSIDIN DO CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9", "output": "38249999"}, {"text_input": "What is the hs code for PHARMAKAOLIN B 860 X (BHN BAKU KOSMETIK) COA 15.12.21", "output": "25070000"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M114079", "output": "29339990"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM CRYSTALLINE (BHN BAKU OBAT) COA M114170", "output": "29339990"}, {"text_input": "What is the hs code for CAFFEINE BP/EP/USP (BHN BAKU OBAT) COA 2303629,2303630,2303649,2304771,2304779,2304780 (POST B", "output": "29393000"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359...(BHN BAKU PEWARNA TABLET) COA GA730515", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O63173...(BHN BAKU PEWARNA TABLET) COA GA731387", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA731075", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA731075", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620041...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03A690090...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG230421 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92304304,XW92304305 (POST BORDER)", "output": "21069059"}, {"text_input": "What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92304305,XW92304306 (POST BORDER)", "output": "21069059"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02301608 (POST BORDER)", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT23010170 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3 PCT (BHN BAKU SUPPLEMEN) COA WB22050228,WB22050229 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30201014 (POST BORDER)", "output": "29362500"}, {"text_input": "What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92304303,XW92304304 (POST BORDER)", "output": "21069059"}, {"text_input": "What is the hs code for PX TRS1 WITHOUT K1 (BHN BAKU MAKANAN) COA XW92303374 (POST BORDER)", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN PREMIX FOR MARGARINE SG15-0027 (BHN BAKU MAKANAN) COA XW92304417 (POST BORDER)", "output": "21069059"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040127", "output": "29420000"}, {"text_input": "What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0041495 (POST BORDER)", "output": "29362500"}, {"text_input": "What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323020370,0323020371", "output": "29420000"}, {"text_input": "What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF23013003", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001696243", "output": "29420000"}, {"text_input": "What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211042 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060078,0522060107", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060069", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060107", "output": "29420000"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22110352 (POST BORDER)", "output": "29362800"}, {"text_input": "What is the hs code for PARSOL TX, (BHN BAKU KOSMETIK) COA P2B06QA000", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL EHT (BHN BAKU KOSMETIK) COA 1323020173", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P2B06QA000", "output": "29420000"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000209966 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0222040127,0223040040", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0723010022", "output": "29420000"}, {"text_input": "What is the hs code for MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50509", "output": "29061100"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B120123", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB240323", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB240323", "output": "39123900"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B120123", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LG260323", "output": "39123900"}, {"text_input": "What is the hs code for DICALCIUM PHOSPHATE FEED GRADE (BHN BAKU PAKAN TERNAK) COA TB2305001", "output": "28352510"}, {"text_input": "What is the hs code for NUTRALIPIDS TYPE HY (BHN BAKU KOSMETIK) COA 3116300127", "output": "15179090"}, {"text_input": "What is the hs code for OPTISHARP NAT. ZEA. 14PCT SAFF. (BHN BAKU SUPPLEMEN) COA 2303101940", "output": "32041800"}, {"text_input": "What is the hs code for ERDOSTEINE IH (BAHAN BAKU OBAT) COA EDSF230014 (POST BORDER)", "output": "29349990"}, {"text_input": "What is the hs code for ERDOSTEINE IH (BAHAN BAKU OBAT) COA EDSF230014 (POST BORDER)", "output": "29349990"}, {"text_input": "What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 23100080", "output": "29221990"}, {"text_input": "What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 23100109", "output": "29221990"}, {"text_input": "What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 23100110", "output": "29221990"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100MESH (BHN BAKU SUPLEMEN) COA 6AX2304047,6AX2304048", "output": "29181400"}, {"text_input": "What is the hs code for LIPOID S 67 F (BHN BAKU SUPPLEMEN) COA 576200-2230040", "output": "29232011"}, {"text_input": "What is the hs code for DL-ALPHA-TOCOPHEROL (BHN BAKU KOSMETIK) COA 01230107ES", "output": "29362800"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL02211116 (POST BORDER)", "output": "29362400"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12301007 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12301007 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT23010170 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000210457 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ21210865 (POST BORDER)", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT22100034 (POST BORDER)", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT23010170 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02212492 (POST BORDER)", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02212492,UE02301044 (POST BORDER)", "output": "29362800"}, {"text_input": "What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0041495 (POST BORDER)", "output": "29362500"}, {"text_input": "What is the hs code for D-PANTHENOL 50 L (BHN BAKU KOSMETIK) COA TL02211634,TL02212644 (POST BORDER)", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02210111,TL02211116 (POST BORDER)", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL 75 L (BHN BAKU KOSMETIK) COA TL02210334 (POST BORDER)", "output": "29362400"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000209966,0000209971 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323020371", "output": "29420000"}, {"text_input": "What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF23013003", "output": "29420000"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02206017 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02112813 (POST BORDER)", "output": "29362400"}, {"text_input": "What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211042 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323020371 S/D 0323020373", "output": "29420000"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000209971 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060107", "output": "29420000"}, {"text_input": "What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3094598", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3094598", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MR VP BROTH 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 3045918", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2334621", "output": "38210090"}, {"text_input": "What is the hs code for PAIL DIFCO AGAR 10KG (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3004841", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD AGAR MODIFIED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2060412", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE YPD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2305146", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3039541", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2343200", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3039541", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3013742", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIADIS MSRV 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3107304", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2343200", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2117655", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3052527", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2271456", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3086104", "output": "38210090"}, {"text_input": "What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2362182", "output": "38210090"}, {"text_input": "What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for AMBROXOL HYDROCHLORIDE PH.EUR. (BHN BAKU OBAT) COA VBND230125", "output": "29221990"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22060046,UT22060047 (POST BORDER)", "output": "29362100"}, {"text_input": "What is the hs code for OPAGLOS (R) TABLET CORE SEALANT PRODUCT OPAGLOS... (BHN BAKU PEWARNA TABLET) COA DT745507", "output": "32151990"}, {"text_input": "What is the hs code for OPATINT (R) CONCENTRATED COLOR DISPERSION G-55286... (BHN BAKU PEWARNA TABLET) COA DT745803", "output": "32151990"}, {"text_input": "What is the hs code for OPATINT (R) CONCENTRATED COLOR DISPERSION G-50659...(BHN BAKU PEWARNA TABLET) COA DT745806", "output": "32151990"}, {"text_input": "What is the hs code for GARLIC EXTRACT ALLICIN 1PCT POWDER (BHN BAKU OBAT) COA 230403C106601", "output": "13021950"}, {"text_input": "What is the hs code for PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) CAS 1332-09-8", "output": "38249999"}, {"text_input": "What is the hs code for CANADIAN WILLOWHERB TM 5C PF (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) CAS 50-70-4", "output": "38249999"}, {"text_input": "What is the hs code for LANABLUE TM PARABEN FREE (BHN BAKU KOSMETIK) CAS 50-70-4", "output": "38249999"}, {"text_input": "What is the hs code for MELANOSTATINE TM 5 BG (50PPM) (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784021665N (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784021777P (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for ISDN 10PCT IN NACL (DISPERSION) (BHN BAKU OBAT) COA 2305377", "output": "30039000"}, {"text_input": "What is the hs code for MIRASIL DM350 A2 (BHN BAKU KOSMETIK) COA 2313WKW615,2319WKW315", "output": "39100090"}, {"text_input": "What is the hs code for MANNITOL USP/EP (BHN BAKU OBAT) COA 122302963,122302964", "output": "29054300"}, {"text_input": "What is the hs code for PHARMABURST (R) 500 (BHN BAKU OBAT) COA 122302870", "output": "21069099"}, {"text_input": "What is the hs code for PHARMABURST (R) C1 (BHN BAKU OBAT) COA 122202340", "output": "21069099"}, {"text_input": "What is the hs code for EFFERSODA (R) 20 (BHN BAKU SUPPLEMEN) COA 122302511", "output": "28363000"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA076233,ROA074235,ROA076233,ROA....", "output": "28363000"}, {"text_input": "What is the hs code for OPAGLOS 6000 WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET) COA DT736523,SAMPLE NO COMMERCIAL VALUE", "output": "32151990"}, {"text_input": "What is the hs code for WASTAR TM LAVENDER (BHN BAKU KOSMETIK) CAS 90063-37-9", "output": "38249999"}, {"text_input": "What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464161453", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464151591", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464161453", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E4M PREMIUM HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464213620", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464207195", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100 PREMIUM LV HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464292878", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA D180L8P002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464207191", "output": "39123900"}, {"text_input": "What is the hs code for BUDESONIDE MICRONIZED (BHN BAKU OBAT) COA NB3038M", "output": "29372900"}, {"text_input": "What is the hs code for BOSWELLIA SERRATA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 22T0031000", "output": "13021990"}, {"text_input": "What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9", "output": "38249999"}, {"text_input": "What is the hs code for KP-578 (16KG) (BHN BAKU KOSMETIK) CAS 1802167-80-1", "output": "38249999"}, {"text_input": "What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9", "output": "38249999"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3006876,30", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3104591", "output": "38210090"}, {"text_input": "What is the hs code for BILBERRY(V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPPLEMEN) COA 23S0052203 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for BUTCHERBROOM DRY HYDR EX 9-11PCT (BHN BAKU SUPLEMEN) COA 22B0070500 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23B0027400 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23B0027500 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for DS-CERAMIDE Y3S (BHN BAKU KOSMETIK) COA CSLD04", "output": "29241990"}, {"text_input": "What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 23100265", "output": "29395900"}, {"text_input": "What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 23100268", "output": "29395900"}, {"text_input": "What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 23100270", "output": "29395900"}, {"text_input": "What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 23100270", "output": "29395900"}, {"text_input": "What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 23100271", "output": "29395900"}, {"text_input": "What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 23100265", "output": "29395900"}, {"text_input": "What is the hs code for PREDNISONE USP (BHN BAKU OBAT) COA NPD230505", "output": "29372100"}, {"text_input": "What is the hs code for DEXAMETHASONE CEP (BHN BAKU OBAT) COA NUD230301", "output": "29372200"}, {"text_input": "What is the hs code for DEXAMETHASONE CEP (BHN BAKU OBAT) COA NUD230301, SAMPLE NO COMMERCIAL VALUE", "output": "29372200"}, {"text_input": "What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) CAS 7631-86-9", "output": "38249999"}, {"text_input": "What is the hs code for WORLEE ALOE PURE BALANCE IF 200X FD (BAHAN BAKU KOSMETIK) COA 512290 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for NONIVAMIDE (SYNTHETIC CAPSAICIN) (BHN BAKU KOSMETIK) COA 20230417", "output": "29241990"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060104", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0723010030", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0723010030", "output": "29420000"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000210451,0000211245 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211042 S/D UE02211044 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02211116 (POST BORDER)", "output": "29362400"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22110352 (POST BORDER)", "output": "29362800"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000211245 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211042 S/D UE02211044 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22110352 (POST BORDER)", "output": "29362800"}, {"text_input": "What is the hs code for PARSOL ZX (BHN BAKU KOSMETIK) COA 200206012", "output": "29420000"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT22100034,UT22100036 (POST BORDER)", "output": "29362600"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02211116 (POST BORDER)", "output": "29362400"}, {"text_input": "What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92303403 (POST BORDER)", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN PREMIX 103047 - D (BHN BAKU MAKANAN) COA XW92304310 (POST BORDER)", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN MINERAL PREMIX - JELLY POWDER V2 (BHN BAKU MAKANAN) COA XW92304312 S/D XW92304313 (POST", "output": "21069059"}, {"text_input": "What is the hs code for V 427502 (BHN BAKU MAKANAN) COA XW92304311 (POST BORDER)", "output": "21069059"}, {"text_input": "What is the hs code for DWI-BI (BHN BAKU MAKANAN) COA XW92305001, XW92305002 (POST BORDER)", "output": "21069059"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12301007 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20220801 (POST BORDER)", "output": "29362800"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ112211023 (POST BORDER)", "output": "29362500"}, {"text_input": "What is the hs code for DEXTROSE ANHYDROUS (BHN BAKU OBAT UTK PAKAN TERNAK) COA XWA230509", "output": "17023010"}, {"text_input": "What is the hs code for OPTISHARP NAT. ZEA 5PCT CWS/S-TG (BHN BAKU MAKANAN) COA EW23035003 (POST BORDER)", "output": "32041800"}, {"text_input": "What is the hs code for OPTISHARP NAT. ZEA 5PCT CWS/S-TG (BHN BAKU MAKANAN) COA EW23035003 (POST BORDER)", "output": "32041800"}, {"text_input": "What is the hs code for OPTISHARP NAT. ZEA 5PCT CWS/S-TG (BHN BAKU MAKANAN) COA EW23035003 (POST BORDER)", "output": "32041800"}, {"text_input": "What is the hs code for DRIED ALUMINUM HYDROXIDE GEL USP (BHN BAKU OBAT) COA 102358001", "output": "28183000"}, {"text_input": "What is the hs code for GUAIFENESIN USP (B. BAKU OBAT) COA GGE-2302024 S/D GGE-2302030, GGE-2303031 S/D GGE-2303037", "output": "29094900"}, {"text_input": "What is the hs code for VIT. A PALM. 1.0 M + VIT. D3 100'000 (BHN BAKU MAKANAN) COA UT22120164 (POST BORDER)", "output": "29362100"}, {"text_input": "What is the hs code for STERNFINE 100 N (BHN BAKU MAKANAN) COA N51-3515064 (POST BORDER)", "output": "29232011"}, {"text_input": "What is the hs code for EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300029", "output": "13021950"}, {"text_input": "What is the hs code for NEO EXTRAPONE (R) LEMON (BHN BAKU KOSMETIK) COA 10300021", "output": "13021950"}, {"text_input": "What is the hs code for PHYTOCONCENTROLE (R) CAMOMILE (BHN BAKU KOSMETIK) COA 10300051", "output": "13021950"}, {"text_input": "What is the hs code for ACTIPONE (R) WHITE TEA GW (BHN BAKU KOSMETIK) COA 10300053", "output": "13021950"}, {"text_input": "What is the hs code for HYDROLITE (R) 6 (BHN BAKU KOSMETIK) COA 10301086", "output": "29053900"}, {"text_input": "What is the hs code for NORIT SX SUPER E 153 (BHN BAKU KOSMETIK) COA 5358323", "output": "38021010"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG230428 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for OPADRY (R) TF TIO2 FREE MOISTURE BARRIER FILM... (BHN BAKU PEWARNA TABLET) CAS 9004-64-2", "output": "38249999"}, {"text_input": "What is the hs code for NUTRAFINISH (R) TIO2 FREE MOISTURE BARRIER FILM...(BHN BAKU PEWARNA TABLET) CAS 9004-64-2", "output": "38249999"}, {"text_input": "What is the hs code for NUTRAFINISH (R) TIO2 FREE COATING 176U210026 GREEN... (BHN BAKU PEWARNA TABLET) CAS 471-34-1", "output": "38249999"}, {"text_input": "What is the hs code for METHOCEL E4M PREMIUM CR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA 2464213548", "output": "39123900"}, {"text_input": "What is the hs code for SUGLETS (R) SUGAR SPHERES PF006... (BHN BAKU PEWARNA TABLET) COA ST519552", "output": "32151990"}, {"text_input": "What is the hs code for CHONDROITIN SULFATE - A ORAL (BHN BAKU OBAT) COA 070422CSA (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 220513 (POST BORDER)", "output": "33012990"}, {"text_input": "What is the hs code for MANUKA HONEY EXTRACT GL (WATSON) (BHN BAKU KOSMETIK) COA 230408", "output": "38249999"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN549775", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN549816", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN549769", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN549616", "output": "35051010"}, {"text_input": "What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC211108", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020003", "output": "29420000"}, {"text_input": "What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA P-78", "output": "29397900"}, {"text_input": "What is the hs code for PARACETAMOL USP43 (BHN BAKU PAKAN HEWAN) COA 2310578,2351000,2351034", "output": "29242930"}, {"text_input": "What is the hs code for PANTOPRAZOLE SODIUM (STERILE) (BAHAN BAKU OBAT) COA SI/PPZ/00750523", "output": "29333990"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM REGULAR GRADE (BHN BAKU OBAT) COA 2304665, 2304668 S/D 2304670", "output": "29331900"}, {"text_input": "What is the hs code for PREGABALIN (BHN BAKU OBAT) COA PU1110423", "output": "29224900"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA731971", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007...(BHN BAKU PEWARNA TABLET) COA GA731972", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G62343...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K580000...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 21K58794...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G65197...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A62337...(BHN BAKU PEWARNA TABLET) COA GA732113", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A62337...(BHN BAKU PEWARNA TABLET) COA GA732113", "output": "39061090"}, {"text_input": "What is the hs code for PIGMENT BLEND (R) PB-66511 BROWN (BHN BAKU PEWARNA TABLET) COA GA731979", "output": "32151990"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O92157...(BHN BAKU PEWARNA TABLET) COA GA731976", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650018...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019..(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for DRIED ALUMINUM HYDROXIDE GEL USP (BHN BAKU OBAT) COA 102358001", "output": "28183000"}, {"text_input": "What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2023050501 (POST BORDER)", "output": "21012020"}, {"text_input": "What is the hs code for PROMOIS S-CAQ (BHN BAKU KOSMETIK) CAS 169590-74-3", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0", "output": "38249999"}, {"text_input": "What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) CAS 638164-47-3", "output": "38249999"}, {"text_input": "What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) CAS 638164-47-3", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 100 CAN 10 KG (BHN BAKU KOSMETIK) CAS 55965-84-9", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 830 CAN 10 KG (BHN BAKU KOSMETIK) CAS 55965-84-9", "output": "38249999"}, {"text_input": "What is the hs code for SENSIDIN DO CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9", "output": "38249999"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP11623,MTP11623 (POST BORDE", "output": "28363000"}, {"text_input": "What is the hs code for RUGENER DREIKRONEN HEILKREIDE 25K (BHN BAKU KOSMETIK) COA 6012325400", "output": "25090000"}, {"text_input": "What is the hs code for SUGLETS (R) SUGAR SPHERES PF006... (BHN BAKU PEWARNA TABLET) COA ST519552", "output": "32151990"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA076233,ROA074235,ROA076233,ROA....", "output": "28363000"}, {"text_input": "What is the hs code for FLUNARIZINE DIHYDROCHLORIDE BP ( BAHAN BAKU OBAT ) COA FLU/04231003", "output": "29335990"}, {"text_input": "What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334877 S/D B334879", "output": "29419000"}, {"text_input": "What is the hs code for METHOCEL K100 PREMIUM HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464331338", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100 PREMIUM HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464340948", "output": "39123900"}, {"text_input": "What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP13223 (POST BORDER)", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP09623 (POST BORDER)", "output": "28363000"}, {"text_input": "What is the hs code for PRAYPHOS MKP FG 25K BG (BHN BAKU KOSMETIK) COA 22-280-01", "output": "29420000"}, {"text_input": "What is the hs code for NIACINAMIDE USP (NIACINAMIDE USP/EP) (BHN BAKU KOSMETIK) COA 23-24/NMD[P]/00061S/D 00065", "output": "29362900"}, {"text_input": "What is the hs code for OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 57-50-1", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55089..(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ20912357,UQ20912367,UQ20912368 (POST BORDER)", "output": "29362200"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT22100176 (POST BORDER)", "output": "29362400"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3 PCT (BHN BAKU SUPLEMEN) COA WB22050068, WB22050071 (POST", "output": "29362500"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPLEMEN) COA UQ20912369 (POST BORDER)", "output": "29362200"}, {"text_input": "What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS0800523, HS0810523", "output": "29420000"}, {"text_input": "What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0041495 (POST BORDER)", "output": "29362500"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT22070070 (POST BORDER)", "output": "29362800"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30316053 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02302017 (POST BORDER)", "output": "32041800"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22060046 S/D UT22060048 (POST BORDE", "output": "29362100"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL02303830,TL02304900 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT23030026 (POST BORDER)", "output": "29362800"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP23044768,XP23044769", "output": "29211900"}, {"text_input": "What is the hs code for PIROXICAM (BAHAN BAKU OBAT ) COA PRX2023001M (POST BORDER)", "output": "29349990"}, {"text_input": "What is the hs code for CARBAZOCHROME SODIUM SULFONATE ORAL G (BHN BAKU OBAT)COA AC21010/21021,AC21101/21107", "output": "29339990"}, {"text_input": "What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340457", "output": "29419000"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100MESH (BHN BAKU SUPLEMEN) COA 3AX2305001", "output": "29181400"}, {"text_input": "What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829011771P (POST BORDER)", "output": "29224900"}, {"text_input": "What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 769011334N (POST BORDER)", "output": "29224900"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for EXO-P TM (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784021777P (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) CAS 50-70-4", "output": "38249999"}, {"text_input": "What is the hs code for LANACHRYS 2B PF (PRESERVATIVE (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for TYROSTAT TM 11 (BHN BAKU KOSMETIK) COA 784029946N (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for CELLOSIZE TM TEXTURE F4M HYDROXYPROPYL... (BHN BAKU KOSMETIK) COA F410M46D31", "output": "39123900"}, {"text_input": "What is the hs code for JOJOBA OIL VIRGIN LOW ODOUR (BHN BAKU KOSMETIK) COA 162763", "output": "15159011"}, {"text_input": "What is the hs code for STARCAP SUPERIOR FLOW MAIZE STARCH (BHN BAKU PEWARNA TABLET) COA IN548730", "output": "35051010"}, {"text_input": "What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU KOSMETIK) COA 23E1202", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU KOSMETIK) COA 23E1205", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU KOSMETIK) COA 21E0801", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU KOSMETIK) COA 23E1207", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU KOSMETIK) COA 23E1603", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE BM PELLETS (BHN BAKU KOSMETIK) COA 22E4302", "output": "28399000"}, {"text_input": "What is the hs code for MIRANOL ULTRA C-32 MB 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP305236MB", "output": "34024990"}, {"text_input": "What is the hs code for FAIR FOR LIFE REFINED SHEA (BHN BAKU KOSMETIK) COA 0000046155", "output": "15159011"}, {"text_input": "What is the hs code for DRIED ALUMINUM HYDROXIDE (BHN BAKU OBAT) COA 102360002", "output": "28183000"}, {"text_input": "What is the hs code for FLOWER ACIDS (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512310,G02512317", "output": "47069200"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG- CO230501 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-230501 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for PHYTELENE COMPLEXE EGX 773 (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for HEBELYS (BHN BAKU KOSMETIK) CAS 504-63-2", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6", "output": "38249999"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 INF OIL (BHN BAKU SUPPLEMEN) COA TS00022014 (POST BORDER)", "output": "29362500"}, {"text_input": "What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2271456", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1097873", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 3072748", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2362152", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3004799", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2263336", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MIL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 0283882", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 2143333", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2304673,3040504", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2088727", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE KF STREPTOCOCCUS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2214351", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3052527", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2201317", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2291792", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LEVINE EMB AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2160342", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2158117", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2172755", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2066423", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2067241", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2104098", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2188691,2293109", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2207189", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2011124", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2214270", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 3039541", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2265467", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 2074829", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2236789", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2229544", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1285556", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1285556", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2269093", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2152796", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA U/PENGEMBANGAN MIKROORGANISME)BATCH 3094174", "output": "38210090"}, {"text_input": "What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B02F053M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2123842,....", "output": "38210090"}, {"text_input": "What is the hs code for LEUCOCYANIDINS (BHN BAKU SUPPLEMEN) COA 928/34, SAMPLE NO COMMERCIAL VALUE", "output": "13021950"}, {"text_input": "What is the hs code for MICONAZOLE NITRATE (BHN BAKU OBAT ) COA H20230301", "output": "29332900"}, {"text_input": "What is the hs code for GRANISETRON HYDROCHLORIDE (BHN BAKU OBAT) COA 323-230301", "output": "29397900"}, {"text_input": "What is the hs code for LISINOPRIL DIHYDRATE USP (BAHAN BAKU OBAT ) COA C5170-23-042R", "output": "29339990"}, {"text_input": "What is the hs code for MICONAZOLE NITRATE (BHN BAKU OBAT ) COA H20230301", "output": "29332900"}, {"text_input": "What is the hs code for ADEPLUMP (BHN BAKU KOSMETIK) COA 230139 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 230849 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 222900 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 230464 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 230386 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 222516 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 230453 (POST BORDER)", "output": "29329900"}, {"text_input": "What is the hs code for YUZU CERAMIDE B (BHN BAKU KOSMETIK) COA 230294 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for EMALEX OD-16 (BHN BAKU KOSMETIK) COA OD-16665", "output": "34024210"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT23020002 (POST BORDER)", "output": "29362600"}, {"text_input": "What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT23030002 (POST BORDER)", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT23020002 (POST BORDER)", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT23020003 (POST BORDER)", "output": "29362600"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02302016 (POST BORDER)", "output": "32041800"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT23031233,UT23031234 (POST BORDER)", "output": "29362100"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL02303830 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02303830 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00820740", "output": "29420000"}, {"text_input": "What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT23030003,UT23030004 (POST BORDER)", "output": "29362500"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT23030089 (POST BORDER)", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT22070008 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT22070008 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT22070008 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0041495 (POST BORDER)", "output": "29362500"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000211841 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020003", "output": "29420000"}, {"text_input": "What is the hs code for SURELEASE (R) ETHYLCELLULOSE DISPERSION TYPE B NF E-7... (BHN BAKU PEWARNA TABLET) COA IN549961", "output": "32151990"}, {"text_input": "What is the hs code for METHOCEL K100 PREMIUM LV DC2 HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA 24641866", "output": "39123900"}, {"text_input": "What is the hs code for LIPOID PPL-600 (BHN BAKU SUPPLEMEN) COA 577200-2230235 (POST BORDER)", "output": "29232011"}, {"text_input": "What is the hs code for NOMEGESTROL ACETATE (BHN BAKU OBAT) COA ND1116", "output": "29372300"}, {"text_input": "What is the hs code for PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PI22030014", "output": "29349920"}, {"text_input": "What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU SUPPLEMEN) COA 23E0309", "output": "28399000"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101851923", "output": "17021100"}, {"text_input": "What is the hs code for NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 23LNC0321SQ375", "output": "27101990"}, {"text_input": "What is the hs code for KETOPROFEN (BHN BAKU OBAT) COA 203201", "output": "29183000"}, {"text_input": "What is the hs code for KETOPROFEN (BHN BAKU OBAT) COA 203201", "output": "29183000"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55089...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for CETRIMIDE CETRIMIDE GEN (BHN BAKU KOSMETIK) CAS 1119-97-7", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SNAIL SECRETION FILTRA (BHN BAKU KOSMETIK) COA SAFW-031553 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1230504 (POST BORDER)", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-FRGE PLUS (BHN BAKU KOSMETIK) COA CFRK-042812 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SENAS (BHN BAKU KOSMETIK) COA NASB-032912 (POST BORDER)", "output": "21022090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-020443,030353", "output": "13021950"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND PINK PLANKTON EXTRACT (HD) (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND CUCURBITA EXTRACT (BHN BAKU KOSMETIK) COA CMB-011913 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-020963 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-041013 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA MAK114", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N4O107", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-020443", "output": "13021950"}, {"text_input": "What is the hs code for VC ASCORBIC ACID DC 97PCT (BHN BAKU SUPPLEMEN) COA HPG2302001 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for BOREALINE R PROTECT (BHN BAKU KOSMETIK) COA AM096136 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for LECIGEL (BHN BAKU KOSMETIK) CAS 37350-42-8", "output": "38249999"}, {"text_input": "What is the hs code for DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834011557N (POST BORDER)", "output": "29224900"}, {"text_input": "What is the hs code for SELOHVITA C (BHN BAKU OBAT) COA 3131996", "output": "28429010"}, {"text_input": "What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010098", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040040", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0723010030", "output": "29420000"}, {"text_input": "What is the hs code for STAY C (R) 50 (BHN BAKU KOSMETIK) COA UE02211125 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060106,0523060007", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P2C09QA000", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010098", "output": "29420000"}, {"text_input": "What is the hs code for STAY C (R) 50 (BHN BAKU KOSMETIK) COA UE02202022 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for WORLEE ALOE PURE BALANCE IF 200X FD (BAHAN BAKU KOSMETIK) COA 512385 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for GELOT 64 (BHN BAKU SUPPLEMEN) COA 193923", "output": "28399000"}, {"text_input": "What is the hs code for TRANSCUTOL P (BHN BAKU SUPPLEMEN) COA 194348", "output": "28399000"}, {"text_input": "What is the hs code for COMPRITOL 888 ATO (BHN BAKU SUPPLEMEN) COA 195027", "output": "28399000"}, {"text_input": "What is the hs code for LABRAFIL M 1944 CS BF (BHN BAKU SUPPLEMEN) COA 195185", "output": "28399000"}, {"text_input": "What is the hs code for EMULIUM MELLIFERA MB (BHN BAKU KOSMETIK) COA 195131", "output": "28399000"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22050239,WB22050240 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for SIMETHICONE (BHN BAKU OBAT) COA 22075", "output": "30039000"}, {"text_input": "What is the hs code for MAGNESIUM HYDROXIDE USP (BHN BAKU OBAT) COA 102369001,102369005", "output": "28161000"}, {"text_input": "What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA G01641UG", "output": "29053200"}, {"text_input": "What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) COA 0078436", "output": "38249999"}, {"text_input": "What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) CAS 233683-84-6", "output": "38249999"}, {"text_input": "What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) CAS 7631-86-9", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51469...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) KB LOW VISCOSITY FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 151-21-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G57708...(BHN BAKU PEWARNA TABLET) CAS 12227-89-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B84893...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 02F52182...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F19250...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for NYSTATIN MICRONIZED (BHN BAKU OBAT) COA C132333", "output": "29419000"}, {"text_input": "What is the hs code for MICRO CRYSTALLINE CELLULOSE USP, ACCEL 102 (BHN BAKU SUPPLEMEN) COA D104230369 (POST BORDER)", "output": "39129090"}, {"text_input": "What is the hs code for MICRO CRYSTALLINE CELLULOSE USP, ACCEL 102 (BHN BAKU SUPPLEMEN) COA D104230370 (POST BORDER)", "output": "39129090"}, {"text_input": "What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9", "output": "38249999"}, {"text_input": "What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9", "output": "38249999"}, {"text_input": "What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) CAS 68937-54-2", "output": "38249999"}, {"text_input": "What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9", "output": "38249999"}, {"text_input": "What is the hs code for KP-561P (16KG) (BHN BAKU KOSMETIK) CAS 329236-76-2", "output": "38249999"}, {"text_input": "What is the hs code for KSG-15 (16KG) (BHN BAKU KOSMETIK) CAS 541-02-6", "output": "38249999"}, {"text_input": "What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9", "output": "38249999"}, {"text_input": "What is the hs code for TRIMAGNESIUM DICITRATE, ANHYDROUS..(BHN BAKU MAKANAN) COA 3131353 S/D 31313536", "output": "29181590"}, {"text_input": "What is the hs code for PEARL ESSENCES 35178MJ (BHN BAKU KOSMETIK) COA D3230092", "output": "32061910"}, {"text_input": "What is the hs code for 4-HYDROXYACETOPHENONE (BHN BAKU KOSMETIK) COA 202305001", "output": "29145000"}, {"text_input": "What is the hs code for CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) COA 304271 (POST BORDER)", "output": "21012020"}, {"text_input": "What is the hs code for FLORAGLO (R) LUTEIN 20 PCT SAF (BHN BAKU SUPPLEMEN) COA UE02304021 (POST BORDER)", "output": "32030010"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT23040009 (POST BORDER)", "output": "32030010"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE, TYPE 100 (BHN BAKU SUPPLEMEN) COA UT23030066 (POST BORDER)", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN B12 CRYST FOOD GRADE (BHN BAKU KOSMETIK) COA 012303107 (POST BORDER)", "output": "29362600"}, {"text_input": "What is the hs code for SYN(R)-AKE (BHN BAKU KOSMETIK) COA UE02210016", "output": "29420000"}, {"text_input": "What is the hs code for BISOPROLOL FUMARATE USP (BHN BAKU OBAT) COA LT-OBFA/002/22-23", "output": "29221990"}, {"text_input": "What is the hs code for LIPOID S 20 (BHN BAKU SUPPLEMEN) COA 572000-2220141", "output": "29232011"}, {"text_input": "What is the hs code for FERROUS GLUCONATE (BHN BAKU OBAT) COA 3127061 (POST BORDER)", "output": "29181600"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE USP (BHN BAKU OBAT) COA ASG/04/220423 S/D 240423", "output": "29420000"}, {"text_input": "What is the hs code for CROSCARMELLOSE SODIUM USP-NF (BHN BAKU OBAT) COA ACRMC/05/020523, 060523, 070523 (POST BORDER)", "output": "39129090"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE BP (BHN BAKU OBAT) COA ASGP/05/140523 S/D 150523", "output": "29420000"}, {"text_input": "What is the hs code for DL-ALPHA-TOCOPHEROL (BHN BAKU KOSMETIK) COA 01230502ES (POST BORDER)", "output": "29362800"}, {"text_input": "What is the hs code for SALBUTAMOL SULFATE BP (BHN BAKU OBAT) COA 023E067 (POST BORDER)", "output": "29225090"}, {"text_input": "What is the hs code for PROCATEROL HCL HEMIHYDRATE MICRONIZED (BHN BAKU OBAT) COA 86032721M1", "output": "29337900"}, {"text_input": "What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340465 S/D B340467", "output": "29419000"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE USP (BAHAN BAKU OBAT) COA ASG/05/180523,ASG/04/240423", "output": "29420000"}, {"text_input": "What is the hs code for CROSCARMELLOSE SODIUM USP-NF (BHN BAKU OBAT) COA ACRMC/05/310523", "output": "39129090"}, {"text_input": "What is the hs code for CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ACMC/06/050623,060623", "output": "39123100"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE BP (BAHAN BAKU OBAT) COA ASGP/05/270523,290523,300523", "output": "29420000"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP23064006,XP23064007", "output": "29211900"}, {"text_input": "What is the hs code for CALCIUM PROPIONATE 20 KG (BHN BAKU PAKAN TERNAK) COA 23031708 S/D 23031758", "output": "29155000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5", "output": "38249999"}, {"text_input": "What is the hs code for BACTO PROTEOSE PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2031316", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2270988", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2179381", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2484059", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2461100", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1124396", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1124396", "output": "38210090"}, {"text_input": "What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2094434", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1124396", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2484059", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASAMINO ACIDS EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2208138", "output": "38210090"}, {"text_input": "What is the hs code for UCARE POLYMER JR-125 PC 68.04K KNN (BHN BAKU KOSMETIK) COA D632M5OMBC", "output": "39123900"}, {"text_input": "What is the hs code for MIEL ACACIA HONGRIE IONISE 20 (BHN BAKU KOSMETIK) COA 20384 (POST BORDER)", "output": "17029099"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA100233,ROA095236,ROA.(POST BORDER)", "output": "28363000"}, {"text_input": "What is the hs code for PURIDROX (R) COMPACTED CEFADROXIL (BHN BAKU OBAT) COA B340484,B340490,B340491", "output": "29419000"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG230526,MCVG230519 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA100234,ROA100233,... (POST BORDER)", "output": "28363000"}, {"text_input": "What is the hs code for MAGNESIUM CARBONATE, HEAVY, POWDER... (BHN BAKU OBAT) COA 3122196 (POST BORDER)", "output": "28369990"}, {"text_input": "What is the hs code for DIPOTASSIUM PHOSPHATE POWDER (BHN BAKU MAKANAN) COA 3128287,3131441 (POST BORDER)", "output": "28352400"}, {"text_input": "What is the hs code for SELOHVITA C (BHN BAKU OBAT) COA 3129181", "output": "28429010"}, {"text_input": "What is the hs code for TRIPOTASSIUM CITRATE 1-HYDRATE, CRYST... (BHN BAKU OBAT) COA 3133037", "output": "29181400"}, {"text_input": "What is the hs code for MAGNESIUM OXIDE, LIGHT, POWDER, BP 2023 (BHN BAKU SUPLEMEN) COA 3131441", "output": "25199010"}, {"text_input": "What is the hs code for FERROUS GLUCONATE, POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3131114 (POST BORDER)", "output": "29181600"}, {"text_input": "What is the hs code for FERROUS SULFATE, DRIED, POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3116763", "output": "28332920"}, {"text_input": "What is the hs code for SELOHVITA C (BHN BAKU OBAT) COA 3129178", "output": "28429010"}, {"text_input": "What is the hs code for FERROUS SULFATE, DRIED, POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3128451", "output": "28332920"}, {"text_input": "What is the hs code for POTASSIUM L-ASPARTATE 0,5-HYDRATE...(BHN BAKU OBAT) COA 3097137", "output": "29224900"}, {"text_input": "What is the hs code for CALCIUM ACETATE,POWDER,PURITY ACC (BHN BAKU SUPLEMEN) COA 3118785", "output": "29152990"}, {"text_input": "What is the hs code for SODIUM FEREDETATE, POWDER, BP 2023 (BHN BAKU SUPPLEMEN) COA 311934 (POST BORDER)", "output": "29224900"}, {"text_input": "What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA ND1417M", "output": "29372200"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT23010011,UT23010028 (POST BORDER)", "output": "29362800"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12302031 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2207086 (POST BORDER)", "output": "29362300"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ20912369 (POST BORDER)", "output": "29362200"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02103502 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22120262 (POST BORDER)", "output": "29362400"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02206017 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW92305340,XW92305339 (POST BORDER)", "output": "21069059"}, {"text_input": "What is the hs code for B-CAROTENE 1PCT CWS/M (BHN BAKU MAKANAN) COA UT22040024 (POST BORDER)", "output": "32041800"}, {"text_input": "What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC230402", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010362", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010362", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010362", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323020530,0323020532", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323020532", "output": "29420000"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02211116 (POST BORDER)", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060069", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040104", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060108", "output": "29420000"}, {"text_input": "What is the hs code for SILYBIN/PHOSPHOLIPIDS (BAHAN BAKU SUPPLEMENT) COA 23B0046600 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2204084413", "output": "29372900"}, {"text_input": "What is the hs code for SPECWHITE VCE (BHN BAKU KOSMETIK) COA 20230501,20230502 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for POTASSIUM L-ASPARTATE 0.5-HYDRATE (BHN BAKU OBAT) COA 3097137 (POST BORDER)", "output": "29224900"}, {"text_input": "What is the hs code for SODIUM CALCIUM EDETATE (BHN BAKU OBAT) COA 3112656 (POST BORDER)", "output": "29224900"}, {"text_input": "What is the hs code for ZINC GLUCONATE POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3131245 (POST BORDER)", "output": "29181600"}, {"text_input": "What is the hs code for STERNFINE 100 N (BHN BAKU MAKANAN) COA N51-3615085 (POST BORDER)", "output": "29232011"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101852123", "output": "17021100"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP16923,MTP17023 (POST BORD", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA API HIGH PURITY 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP14823 (POST BO", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA API HIGH PURITY 0/13... (BHN BAKU SUPPLEMEN) COA MTP12623, SAMPLE NO (POST BORDER)", "output": "28363000"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for SEABUCKTHORN HYDROGLYCOLIC EXTRACT (BG) (BHN BAKU KOSMETIK) COA HIR230501-B (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIEP230601-B (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for KIGELINE (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for SEABUCKTHORN HYDROGLYCOLIC EXTRACT (BG) (BHN BAKU KOSMETIK) COA HIR230501-B (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3438022 (POST BORDER)", "output": "33029000"}, {"text_input": "What is the hs code for ONDANSETRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA 23OS002", "output": "29332900"}, {"text_input": "What is the hs code for SETACIN 103/SPEZIAL OR NP - RSPO - MB (BHN BAKU KOSMETIK) COA 3569", "output": "34023990"}, {"text_input": "What is the hs code for REFINED GRAPESEED OIL (BHN BAKU KOSMETIK) COA B2300016", "output": "15152919"}, {"text_input": "What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-230613 (POST BORDER)", "output": "29061300"}, {"text_input": "What is the hs code for SODIUM VALPROATE (BAHAN BAKU OBAT) COA 458272,458380", "output": "29159090"}, {"text_input": "What is the hs code for DEXTROSE ANHYDROUS (BHN BAKU OBAT UTK PAKAN TERNAK) COA XWA230621", "output": "17023010"}, {"text_input": "What is the hs code for CITRIC ACID MONOHYDRATE GRANULAR (BHN BAKU SUPLEMEN) COA UJ312", "output": "29181400"}, {"text_input": "What is the hs code for FERROUS FUMARATE (BHN BAKU OBAT) COA 2023/100", "output": "29171900"}, {"text_input": "What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 201024", "output": "29332900"}, {"text_input": "What is the hs code for ESCIN (BHN BAKU KOSMETIK) COA CP00000481", "output": "13021950"}, {"text_input": "What is the hs code for LEUCOSELECT PHYTOSOME (BHN BAKU KOSMETIK) CAS 84929-27-1", "output": "38249999"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 02/19GAAK", "output": "28399000"}, {"text_input": "What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 192311", "output": "28399000"}, {"text_input": "What is the hs code for ACTICIRE MB BF (BHN BAKU KOSMETIK) COA 195723", "output": "28399000"}, {"text_input": "What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334892,B334894,B334895", "output": "29419000"}, {"text_input": "What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334895 S/D B334898", "output": "29419000"}, {"text_input": "What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340467 S/D B340470", "output": "29419000"}, {"text_input": "What is the hs code for KETOROLAC TROMETAMOL / TROMETHAMINE (BHN BAKU OBAT) COA 23100187", "output": "29339990"}, {"text_input": "What is the hs code for TAPIOKA STER (BHN BAKU KOSMETIK) CAS 9005-25-8", "output": "38249999"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG230602 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for LEVAMISOLE HYDROCHLORIDE (BHN BAKU OBAT UTK PAKAN TERNAK) COA LV22366", "output": "29349990"}, {"text_input": "What is the hs code for ALBENDAZOLE (BHN BAKU OBAT UTK PAKAN TERNAK) COA 20230402", "output": "29339990"}, {"text_input": "What is the hs code for AMPROLIUM HCL (BHN BAKU OBAT UTK PAKAN TERNAK) COA 20230405", "output": "29335990"}, {"text_input": "What is the hs code for CROSPOVIDONE XL (BHN BAKU SUPPLEMEN) COA PP230424XL", "output": "39059990"}, {"text_input": "What is the hs code for DEXAMETHASONE BP2010/USP42 (BHN BAKU OBAT) COA NED230508, NED230519,NED230520", "output": "29372200"}, {"text_input": "What is the hs code for HYDROCORTISONE ACETATE EP7/USP42 (BHN BAKU OBAT) COA NEHAC230606", "output": "29372200"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE USP2022 (BHN BAKU OBAT) COA NMP221102", "output": "29372900"}, {"text_input": "What is the hs code for PREDNISONE USP2022 (BHN BAKU OBAT) COA NPD 221018, NPD 230615", "output": "29372100"}, {"text_input": "What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9", "output": "38249999"}, {"text_input": "What is the hs code for 8552-507-K05 LIPEX 512 VEGETABLE OIL (BHN BAKU KOSMETIK) COA 0002640615", "output": "15162049"}, {"text_input": "What is the hs code for SUNBELLIN (BHN BAKU KOSMETIK) COA F210-2303044 S/D F210-2303046", "output": "29339990"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP23064091,XP23064092", "output": "29211900"}, {"text_input": "What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA MLAH0180323", "output": "29341000"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 FOOD OIL (BHN BAKU MAKANAN) COA TS00021856,TS00022239 (POST BORDER)", "output": "29362500"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 FOOD OIL (BHN BAKU MAKANAN) COA TS00021856,TS00022239 (POST BORDER) SAMPLE.....", "output": "29362500"}, {"text_input": "What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2023050501 (POST BORDER)", "output": "21012020"}, {"text_input": "What is the hs code for BIOPHILIC TM H MB (BHN BAKU KOSMETIK) CAS 68855-56-1", "output": "38249999"}, {"text_input": "What is the hs code for DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834011557N (POST BORDER)", "output": "29224900"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) CAS 37350-42-8", "output": "38249999"}, {"text_input": "What is the hs code for ROSALITY TM (BHN BAKU KOSMETIK) CAS 5343-92-0", "output": "38249999"}, {"text_input": "What is the hs code for WASTAR TM LAVENDER (BHN BAKU KOSMETIK) CAS 90063-37-9", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) CAS 37350-42-8", "output": "38249999"}, {"text_input": "What is the hs code for BOREALINE R PROTECT (BHN BAKU KOSMETIK) COA AM094500 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for FENTACARE 2231 EF 25KG PAPER BOX (BHN BAKU KOSMETIK ) COA ZH23E1401,ZH23E2002,ZH23F0405", "output": "34029019"}, {"text_input": "What is the hs code for MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL230608,MCCPOL230619", "output": "29094900"}, {"text_input": "What is the hs code for KF-54HV (18KG) (BHN BAKU KOSMETIK) CAS 68083-14-7", "output": "38249999"}, {"text_input": "What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6", "output": "38249999"}, {"text_input": "What is the hs code for KSP-101 (15KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6", "output": "38249999"}, {"text_input": "What is the hs code for KF-6017(17KG) (BHN BAKU KOSMETIK) CAS 68937-54-2", "output": "38249999"}, {"text_input": "What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9", "output": "38249999"}, {"text_input": "What is the hs code for KP-561P (16KG) (BHN BAKU KOSMETIK) CAS 329236-76-2", "output": "38249999"}, {"text_input": "What is the hs code for KSG-210 (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9", "output": "38249999"}, {"text_input": "What is the hs code for KSP-101 (15KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6", "output": "38249999"}, {"text_input": "What is the hs code for SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202306-028", "output": "35040000"}, {"text_input": "What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS1380523,HS1390623,HS1430623", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS1430623", "output": "29420000"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22120265 (POST BORDER)", "output": "29362400"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11221104 (POST BORDER)", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT23010170 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT23010170 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT23030089 (POST BORDER)", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02303106 (POST BORDER)", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT22090039 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU SUPPLEMEN) COA 23E2002", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU SUPPLEMEN) COA 23E1603", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE BM PELLETS (BHN BAKU SUPPLEMEN) COA 22E4808", "output": "28399000"}, {"text_input": "What is the hs code for FLUOROMETHOLONE MICRONISED USP BP JP (BHN BAKU OBAT) COA 2201584198", "output": "29372200"}, {"text_input": "What is the hs code for PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA PG0350522", "output": "29349920"}, {"text_input": "What is the hs code for NAPROXEN SODIUM USP (BHN BAKU OBAT) COA 2-SN-0970523", "output": "29189900"}, {"text_input": "What is the hs code for ORANGE EXTRACT (BHN BAKU KOSMETIK) COA 23050123", "output": "13021950"}, {"text_input": "What is the hs code for GINKGO LEAVES EXTRACT (BHN BAKU KOSMETIK) COA 23050109", "output": "13021950"}, {"text_input": "What is the hs code for PRICKLY PEAR WATER DISTILLATE (BHN BAKU KOSMETIK) COA 23060203", "output": "33019090"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G60929...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP16023 (POST BORD", "output": "28363000"}, {"text_input": "What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWDER... (B.BAKU KOSMETIK) CAS 65497-29-2", "output": "38249999"}, {"text_input": "What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 27-10-22,24-01-23,20-01-23", "output": "38029090"}, {"text_input": "What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-1750623", "output": "29334910"}, {"text_input": "What is the hs code for PANTOPRAZOLE SODIUM (STERILE) (BAHAN BAKU OBAT) COA SI/PPZ/01210623", "output": "29333990"}, {"text_input": "What is the hs code for ESOMEPRAZOLE SODIUM (STERILE) (BHN BAKU OBAT) COA SI/EPZ/00100623", "output": "29333990"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101851923", "output": "17021100"}, {"text_input": "What is the hs code for METHOCEL K100 CR PREMIUM HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464346607", "output": "39123900"}, {"text_input": "What is the hs code for EDIBLE BOVINE GELATINE 180/20 (BHN BAKU OBAT ) COA 5002301267", "output": "35030049"}, {"text_input": "What is the hs code for SENTRY POLYOX WSR 1105 LEO NF..(BHN BAKU PEWARNA TABLET) COA 2534432764", "output": "39123900"}, {"text_input": "What is the hs code for SENTRY POLYOX WSR N750 LEO NF..(BHN BAKU PEWARNA TABLET) COA D682L77RJ2", "output": "39123900"}, {"text_input": "What is the hs code for AMITOSE R (BHN BAKU KOSMETIK) COA LEC (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS EK-118(IN) (BHN BAKU KOSMETIK) CAS 59219-71-5", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7", "output": "38249999"}, {"text_input": "What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 231297 (POST BORDER)", "output": "29329900"}, {"text_input": "What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 222274 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) CAS", "output": "38249999"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for CLAIRJU (BHN BAKU KOSMETIK) COA 222073 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 230849 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 230386 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 222677 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for ROSE HIPS LIQUID B (BHN BAKU KOSMETIK) COA 231036 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for BIOBENEFITY (BHN BAKU KOSMETIK) COA 230679 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0003900", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0005100", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0005200", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0012000", "output": "13021990"}, {"text_input": "What is the hs code for PEARL ESSENCES 35178MJ (BHN BAKU KOSMETIK) COA D3240363", "output": "32061910"}, {"text_input": "What is the hs code for AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 162893", "output": "15159011"}, {"text_input": "What is the hs code for EXTRAPONE (R) MANGO B (BHN BAKU KOSMETIK) COA 10300045,10300046", "output": "13021950"}, {"text_input": "What is the hs code for EXTRAPONE (R) WILD BERRIES (BHN BAKU KOSMETIK) COA 10300041", "output": "13021950"}, {"text_input": "What is the hs code for ABYSSINE TM PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) CAS 50-70-4", "output": "38249999"}, {"text_input": "What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829011771P (POST BORDER)", "output": "29224900"}, {"text_input": "What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829011886P (POST BORDER)", "output": "29224900"}, {"text_input": "What is the hs code for PROGELINE TM (BHN BAKU KOSMETIK) COA 221196 (POST BORDER)", "output": "29224900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP12302031 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID BHN BAKU KOSMETIK)) COA UT22120263 (POST BORDER)", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL 75 L (BHN BAKU KOSMETIK) COA TL02210334 (POST BORDER)", "output": "29362400"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22110361 (POST BORDER)", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22110361 (POST BORDER)", "output": "29362800"}, {"text_input": "What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323020533,0323020534 (POST BORDER)", "output": "29420000"}, {"text_input": "What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF23003008 (POST BORDER)", "output": "29420000"}, {"text_input": "What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211125,UE02211046 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23010028 (POST BORDER)", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE, TYPE 100 (BHN BAKU SUPPLEMEN) COA UT23030066 (POST BORDER)", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT23041237 S/D UT23041239 (POST", "output": "29362100"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30416076,UQ30416077 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30416077", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30416077", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30316063", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30316063, UQ30316064", "output": "29362700"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL02303607 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for FERROUS GLUCONATE, POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3127991 (POST BORDER)", "output": "29181600"}, {"text_input": "What is the hs code for POTASSIUM IODIDE AND CARRIER (BHN BAKU OBAT) COA 3126908 (POST BORDER)", "output": "28276000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-072763 (POST BORDER)", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIOCTP-500 (BHN BAKU KOSMETIK) COA BOPN-021743 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012423 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-020963 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011702", "output": "13021950"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA MAK114", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-030353", "output": "13021950"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-032412,052922 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012423 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP2230607 (POST BO", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-072763 (POST BORDER)", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N4O107", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N4O107", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-011713 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT EXTRACT (BHN BAKU KOSMETIK) COA MUB-040812 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIOCTP-500 (BHN BAKU KOSMETIK) COA BOPN-021743 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) CAS 233683-84-6", "output": "38249999"}, {"text_input": "What is the hs code for DEXTROSE ANHYDROUS (BHN BAKU OBAT UTK PAKAN TERNAK) COA XWA230621", "output": "17023010"}, {"text_input": "What is the hs code for CYPROTERONE ACETATE MICRONIZED (BHN BAKU OBAT) COA ND0688M", "output": "29372900"}, {"text_input": "What is the hs code for MOXIFLOXACIN HYDROCHLORIDE (BHN BAKU OBAT) COA MP0040523", "output": "29334990"}, {"text_input": "What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340488,B340489", "output": "29419000"}, {"text_input": "What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334898,B334899", "output": "29419000"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620023...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-22-17515...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-30-18037...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G52990...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55015...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620041...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A18597...(BHN BAKU PEWARNA TABLET) COA GA734387", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A18597...(BHN BAKU PEWARNA TABLET) COA GA734387", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 151-21-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G64786...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G640054...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) ENTERIC COATING SYSTEM 94O520141...(BHN BAKU PEWARNA TABLET) CAS 25086-15-1", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA734408", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O66912...(BHN BAKU PEWARNA TABLET) COA GA734409", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-19025-A..(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for LEUCOCYANIDINS (BHN BAKU SUPPLEMEN) COA 1104/7, SAMPLE NO COMMERCIAL VALUE", "output": "13021950"}, {"text_input": "What is the hs code for LEUCOCYANIDINS (BHN BAKU SUPPLEMEN) COA 928/34, SAMPLE NO COMMERCIAL VALUE", "output": "13021950"}, {"text_input": "What is the hs code for MIRASIL DM5 L (BHN BAKU KOSMETIK) COA 2312FF2415", "output": "39100090"}, {"text_input": "What is the hs code for MACKAM C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 10004-1", "output": "34024990"}, {"text_input": "What is the hs code for CEFOTAXIME SODIUM (BAHAN BAKU OBAT) COA 3042305024", "output": "29419000"}, {"text_input": "What is the hs code for VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 122202271", "output": "28365010"}, {"text_input": "What is the hs code for FLOWLAC (R) 100 (BHN BAKU OBAT) COA L101502123", "output": "17021100"}, {"text_input": "What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104312123", "output": "17021100"}, {"text_input": "What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103861823", "output": "17021100"}, {"text_input": "What is the hs code for CELLACTOSE (R) 80 (BHN BAKU OBAT) COA L100460523", "output": "17021100"}, {"text_input": "What is the hs code for MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103150723", "output": "17021100"}, {"text_input": "What is the hs code for OPALUX (R) OPAQUE COLOR COATING CONCENTRATE AS-R-...(BHN BAKU PEWARNA TABLET) COA DT748101", "output": "32151990"}, {"text_input": "What is the hs code for OPASPRAY (R) OPAQUE COLOR CONCENTRATE FOR FILM...(BHN BAKU PEWARNA TABLET) COA DT748103", "output": "32151990"}, {"text_input": "What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340471 S/D B340473", "output": "29419000"}, {"text_input": "What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPPLEMEN) COA WB23030781 (POST BORDER)", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB22080266 (POST BORDER)", "output": "29362800"}, {"text_input": "What is the hs code for STERNFINE 100 N (BHN BAKU MAKANAN) COA N51-3623086 (POST BORDER)", "output": "29232011"}, {"text_input": "What is the hs code for FLORAGLO (R) LUTEIN 20 PCT SAF (BHN BAKU SUPPLEMEN) COA UE02304021 (POST BORDER)", "output": "32030010"}, {"text_input": "What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ21217019", "output": "29420000"}, {"text_input": "What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 220513", "output": "33012990"}, {"text_input": "What is the hs code for OILESS' CITY TM (BHN BAKU KOSMETIK) COA 220304", "output": "13021990"}, {"text_input": "What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 230312", "output": "29061900"}, {"text_input": "What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 220513", "output": "33012990"}, {"text_input": "What is the hs code for PHTHALAVIN (R) ENTERIC COATING POLYMER 2138 CLEAR (BHN BAKU PEWARNA TABLET) COA WP865595", "output": "39059990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5406 FD&C RED...(BHN BAKU PEWARNA TABLET) COA WP857243:BB7480", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT (R) 6010 D&CYELLOW 10 ALUMIN...(BHN BAKU PEWARNA TABLET) COA WP864266:BC1291", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C YELLOW 6/SUNSET...(BHN BAKU PEWARNA TABLET) COA WP868324:BC3385", "output": "32151990"}, {"text_input": "What is the hs code for CENTELLA ASIATICA EXTRACT 95 PCT (BHN BAKU KOSMETIK) COA GKP 23067 EOU", "output": "13021950"}, {"text_input": "What is the hs code for MATCHA (BHN BAKU KOSMETIK) CAS 84650-60-2", "output": "38249999"}, {"text_input": "What is the hs code for DL-ALPHA-TOCOPHEROL (BHN BAKU KOSMETIK) COA 01230507ES", "output": "29362800"}, {"text_input": "What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6", "output": "38249999"}, {"text_input": "What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9", "output": "38249999"}, {"text_input": "What is the hs code for KSG-15 (16KG) (BHN BAKU KOSMETIK) CAS 541-02-6", "output": "38249999"}, {"text_input": "What is the hs code for PX 103070-C3 (BHN BAKU MAKANAN) COA XW92305351,XW92305352 (POST BORDER)", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN PREMIX FOR MARGARINE SG15-0027 (BHN BAKU MAKANAN) COA XW92306023 (POST BORDER)", "output": "21069059"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT23010005 (POST BORDER)", "output": "32041800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02303109 (POST BORDER)", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02303109,UE02303129 (POST BORDER)", "output": "29362800"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2111132,UEB2111133,... (POST BORDER)", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT23020003 (POST BORDER)", "output": "29362600"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT23020001 (POST BORDER)", "output": "29362100"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12302031 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12302031 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11221105 (POST BORDER)", "output": "29362500"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000212577 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010365", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010365", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010365", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010365", "output": "29420000"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED MAIZE STARCH...(BHN BAKU PEWARNA TABLET) COA IN549806", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED MAIZE STARCH...(BHN BAKU PEWARNA TABLET) COA IN549767", "output": "35051010"}, {"text_input": "What is the hs code for DESONIDE MICRONIZED (BHN BAKU OBAT) COA NC3328M", "output": "29372900"}, {"text_input": "What is the hs code for CLONIDINE HCL (BHN BAKU OBAT) COA 194081", "output": "29332900"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA 2023F1147", "output": "28321000"}, {"text_input": "What is the hs code for ROSE OILY EXTRACT (BHN BAKU KOSMETIK) CAS 65381-09-1", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for SEABUCKTHORN HYDROGLYCOLIC EXTRACT (BG) (BHN BAKU KOSMETIK) COA HIR230501-B (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for RICE MILK AQUEOUS EXTRACT (SB) (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA735339", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) KB LOW VISCOSITY FILM COATING SYSTEM..(BHN BAKU PEWARNA TABLET) CAS 151-21-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G63147...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86512...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K580000...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G60929...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for NYSTATIN POWDER ROW GRADE (BHN BAKU OBAT) COA C114726", "output": "29419000"}, {"text_input": "What is the hs code for MAGNESIUM SULFATE DIHYDRATE...(BHN BAKU SUPPLEMEN) COA 3132117", "output": "28332100"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT23020002 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT23020002", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040040", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060108", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020003,0923020023,0923020025", "output": "29420000"}, {"text_input": "What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-1870723", "output": "29334910"}, {"text_input": "What is the hs code for PERMETHRIN 25:75 EP (BHN BAKU OBAT) COA PMT/010/2023", "output": "29162000"}, {"text_input": "What is the hs code for OPALUX (R) OPAQUE COLOR COATING CONCENTRATE AS-R-...(BHN BAKU PEWARNA TABLET) COA DT748791", "output": "32151990"}, {"text_input": "What is the hs code for OPACODE (R) MONOGRAMMING INK S-1-277001 BLACK (BHN BAKU PEWARNA TABLET) COA DT748789", "output": "32151990"}, {"text_input": "What is the hs code for OPACODE (R) MONOGRAMMING INK A-R-8032 RED (BHN BAKU PEWARNA TABLET) COA DT748790", "output": "32151990"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT23040010 (POST BORDER)", "output": "32030010"}, {"text_input": "What is the hs code for OPTISHARP NAT. ZEA 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA EW23065005", "output": "32041800"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20230302 (POST BORDER)", "output": "29362800"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3079261", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3079261", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3079261", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3079261", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRAIN HEART INFUSION BBL 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1159375", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MUELLER HINTON II AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2293662", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2263336", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2334621", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2053778", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION BROTH 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2179358", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2117655", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH 3145004", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA U/PENGEMBANGAN MIKROORGANISME)BATCH 3094405", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2311158", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2270340,2305239", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2256092", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DIFCO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3040509", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2339387", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 21403834,2269127", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2213688", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 2074829", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 3004794", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2081022", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1285556", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2269093", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2291752", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2263336", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MYP AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2276880", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MITIS SALIVARIUS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2038855", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01E343M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M-PA-C AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3114659", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TETRATHIONATE BROTH BASE 500G(MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 3096414", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2271456", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE KF STREPTOCOCCUS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2214351", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3040515", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 2 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3004802", "output": "38210090"}, {"text_input": "What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3030476", "output": "38210090"}, {"text_input": "What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) CAS 233683-84-6", "output": "38249999"}, {"text_input": "What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3094622", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3094622", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3094622", "output": "38210090"}, {"text_input": "What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP Y 1ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2349773", "output": "38210090"}, {"text_input": "What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP Y 1ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2349773", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3061959", "output": "38210090"}, {"text_input": "What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP Y 1ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2349773", "output": "38210090"}, {"text_input": "What is the hs code for VIAL N MENINGITIDIS ANTISERUM GRP W135 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2349778", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MICROBIAL CONTENT TEST AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3072210", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1344136", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SHIGELLA ANTIS POLY A1 LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2161354", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SHIGELLA ANTIS POLY C2 LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2230296", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2363671", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SHIGELLA ANTIS POLY B LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2322617", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SHIGELLA ANTIS POLY C LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2069165", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SHIGELLA ANTIS POLY D LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2224553", "output": "38210090"}, {"text_input": "What is the hs code for VIAL E COLI O ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2125078", "output": "38210090"}, {"text_input": "What is the hs code for VIAL POLYMYXIN B ANTIMICROBIC P (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3019035", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PANTOTHENATE ASSAY MED 100G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 3093476", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOBACILLLI MRS BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3004891", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOBACILLLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3039438", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3054289,....", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2060591", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEMOGLOBIN SOL 2PCT 100ML 10EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3018256", "output": "38210090"}, {"text_input": "What is the hs code for VIAL ANTIMICROBIC K 6X10ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3061956", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D/E NEUTRALIZING BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 3121809", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3061959,.", "output": "38210090"}, {"text_input": "What is the hs code for MAGNESIUM BISGLYCINATE POWDER (BHN BAKU SUPPLEMEN) COA 3130167 (POST BORDER)", "output": "29224900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT23041240,UT23041241", "output": "29362100"}, {"text_input": "What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02304001,TL02304013,TL02305296, (POST", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30416083 S/D UQ30416085 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT23040008,UT23040009", "output": "29362600"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT EM YELLOW (BHN BAKU MAKANAN) COA UT23040001", "output": "32041800"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02305037", "output": "32041800"}, {"text_input": "What is the hs code for ACETAMINOPHEN (PARACETAMOL) (BHN BAKU OBAT) COA 202306088A,202306089A", "output": "29242930"}, {"text_input": "What is the hs code for PARACETAMOL USP43 (BHN BAKU OBAT) COA 2351466,2351480,2310855,2310863", "output": "29242930"}, {"text_input": "What is the hs code for EFFERSODA (R) 20 (BHN BAKU SUPPLEMEN) COA 122302620,122302933", "output": "28363000"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 12200723,12210723,12220723,12240723 S/D 12260723,12280723", "output": "29359000"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 11620723,11930723,12230723", "output": "29359000"}, {"text_input": "What is the hs code for REFINED COCONUT OIL - L (BHN BAKU KOSMETIK) COA 0002640007 (POST BORDER)", "output": "15131990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-052922,011373 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND PEACH EXTRACT (BHN BAKU KOSMETIK) COA PEA-032822 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N4O107", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-020963 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012423 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012423 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for ZINC CITRATE, POWDER, USP-NF 2023 (BHN BAKU SUPPLEMEN) COA 3131855-02", "output": "29181590"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K120033...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM..(BHN BAKU PEWARNA TABLET) CAS 57-50-1", "output": "38249999"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20230619", "output": "17029019"}, {"text_input": "What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0041495 (POST BORDER)", "output": "29362500"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02211116 (POST BORDER)", "output": "29362400"}, {"text_input": "What is the hs code for DL-PANTHENOL 50 L (BHN BAKU KOSMETIK) COA TL02212644 (POST BORDER)", "output": "29362400"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000212579,0000213111 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22110361 (POST BORDER)", "output": "29362800"}, {"text_input": "What is the hs code for PERMETHRIN PHARMA GRADE (BHN BAKU OBAT) COA 235046006", "output": "29162000"}, {"text_input": "What is the hs code for MIRASIL DM350 A2 (BHN BAKU KOSMETIK) COA 2330WKW215", "output": "39100090"}, {"text_input": "What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP19423 (POST BORDER)", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP17123 (POST BORDER)", "output": "28363000"}, {"text_input": "What is the hs code for CALAMINE, POWDER, BP 2023 (BHN BAKU SUPPLEMEN) COA 3130806 (POST BORDER)", "output": "28369990"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE USP (BAHAN BAKU OBAT) COA ASG/05/260523,270523,290523,...", "output": "29420000"}, {"text_input": "What is the hs code for GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 23T0043200 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) CAS 1119-97-7", "output": "38249999"}, {"text_input": "What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) CAS 1119-97-7", "output": "38249999"}, {"text_input": "What is the hs code for ADEPLUMP (BHN BAKU KOSMETIK) COA 230139 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 230849 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 222900 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 230464 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 230386 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 222516 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for YUZU CERAMIDE B (BHN BAKU KOSMETIK) COA 230294 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for EMALEX OD-16 (BHN BAKU KOSMETIK) COA OD-16665", "output": "34024210"}, {"text_input": "What is the hs code for GELUCIRE 44/14 (BHN BAKU SUPPLEMEN) COA 195856", "output": "28399000"}, {"text_input": "What is the hs code for ORIGINAL EXTRACT KIWI (BHN BAKU KOSMETIK) COA 01/22GAAK", "output": "28399000"}, {"text_input": "What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 192311", "output": "28399000"}, {"text_input": "What is the hs code for EMULCIRE 61 WL 2659 (BHN BAKU SUPPLEMEN) COA 195020", "output": "28399000"}, {"text_input": "What is the hs code for COMPRITOL 888 ATO (BHN BAKU SUPPLEMEN) COA 195342", "output": "28399000"}, {"text_input": "What is the hs code for ACTICIRE MB BF (BHN BAKU KOSMETIK) COA 195723", "output": "28399000"}, {"text_input": "What is the hs code for XANTHAN 80 (BAHAN BAKU OBAT) COA 4454325408", "output": "39139090"}, {"text_input": "What is the hs code for JAGUAR C162 SGI (BHN BAKU KOSMETIK) CAS 71329-50-5", "output": "38249999"}, {"text_input": "What is the hs code for METHOCEL K100 CR PREMIUM HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464397261", "output": "39123900"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G630022...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22110361 (POST BORDER)", "output": "29362800"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP12305023 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010444", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010443,0823010444", "output": "29420000"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000213261 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02112813,TL02211812 (POST BORDER)", "output": "29362400"}, {"text_input": "What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT22060225 (POST BORDER)", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02304147 (POST BORDER)", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT23010170 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ30210559 (POST BORDER)", "output": "29362300"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ30210559 (POST BORDER)", "output": "29362300"}, {"text_input": "What is the hs code for MAGNESIUM CHLORIDE 6-HYDRATE, CRYST, USP 43 (BHN BAKU KOSMETIK) COA 3130542", "output": "28273100"}, {"text_input": "What is the hs code for DL-TARTARIC ACID (BHN BAKU MAKANAN) COA RS015RS0166566", "output": "29181200"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for 985-L-MENTHOL CRYSTALS INDIAN NATURAL (BHN BAKU KOSMETIK) COA H2-095/L/22-23", "output": "29061100"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0", "output": "38249999"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7M IU/G (BHN BAKU KOSMETIK) COA 0423060011", "output": "29362100"}, {"text_input": "What is the hs code for CITICOLINE SODIUM (BHN BAKU OBAT) COA 230220", "output": "29349990"}, {"text_input": "What is the hs code for GLUCOSAMINE SULFATE 2KCL (BHN BAKU OBAT) COA JSTK230722", "output": "29329900"}, {"text_input": "What is the hs code for ALUMINIUM HYDROXIDE ACETATE POWDER (BHN BAKU OBAT) COA 3133329", "output": "29152990"}, {"text_input": "What is the hs code for NG 5 PCT-1,2 PROPYLENGLYCOLE 95PCT (BAHAN BAKU OBAT) COA 2307839", "output": "30039000"}, {"text_input": "What is the hs code for SUNBELLIN (BHN BAKU KOSMETIK) COA F210-2303049, 2303053 S/D 2303056", "output": "29339990"}, {"text_input": "What is the hs code for ADENOSINE(L) (BHN BAKU KOSMETIK) COA C01202302001L S/D C01202302004L", "output": "29349990"}, {"text_input": "What is the hs code for SPECWHITE 05 (BHN BAKU KOSMETIK) COA 20221118", "output": "29222900"}, {"text_input": "What is the hs code for PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) CAS 5743-47-5", "output": "38249999"}, {"text_input": "What is the hs code for BEE PANDA HONEY (BHN BAKU KOSMETIK) CAS 8028-66-8", "output": "38249999"}, {"text_input": "What is the hs code for LYOPHILIZED ROYAL JELLY POWDER (BHN BAKU KOSMETIK) CAS 8031-67-2", "output": "38249999"}, {"text_input": "What is the hs code for TWEEN 80 PHARMA-LQ-(SG) (BHN BAKU KOSMETIK) COA 54408", "output": "34024290"}, {"text_input": "What is the hs code for CALCIUM CARBONATE DC TYPE CS90 PHARMA (BHN BAKU OBAT) COA 202300090", "output": "28365010"}, {"text_input": "What is the hs code for SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 2308861414", "output": "29322090"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230501;", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230501;", "output": "13021990"}, {"text_input": "What is the hs code for INCA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK) CAS 68956-68-3", "output": "38249999"}, {"text_input": "What is the hs code for ARGAN VIRGIN COLD PRESSED DEODORISED ORGANIC OIL XNE112(B.BAKU KOSMETIK) CAS 299184-75-1", "output": "38249999"}, {"text_input": "What is the hs code for OLIVE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for LOTUS FROM VIETNAM ORGANIC OILY EXTRACT (BHN BAKU KOSMETIK) CAS 73398-61-5", "output": "38249999"}, {"text_input": "What is the hs code for PHTHALAVIN (R) ENTERIC COATING POLYMER 2138 CLEAR (BHN BAKU PEWARNA TABLET) COA WP871770", "output": "39059990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C YELLOW #6/SUNSET... (BHN BAKU PEWARNA TABLET) COA WP862649:BC0368", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT (R) 6010 D&C YELLOW #10 ALUMINUM... (BHN BAKU PEWARNA TABLET) COA WP864266:BC1291", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5177 FD&C YELLOW #5/... (BHN BAKU PEWARNA TABLET) COA WP861770:BB9108", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5396 ERYTHROSINE ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP860976:1", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5627 FD&C BLUE #2/INDIGO... (BHN BAKU PEWARNA TABLET) COA WP862709:BB9470", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5517 FD&C BLUE #1/BRILLIANT.. (BHN BAKU PEWARNA TABLET) COA WP866727:BC4487", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C YELLOW #6/SUNSET.. (BHN BAKU PEWARNA TABLET) COA WP868324:BC3385", "output": "32151990"}, {"text_input": "What is the hs code for ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2302281", "output": "32030010"}, {"text_input": "What is the hs code for DEXTROSE ANHYDROUS (BHN BAKU OBAT UTK PAKAN TERNAK) COA XWA230723", "output": "17023010"}, {"text_input": "What is the hs code for IONOL CP (BHN BAKU KOSMETIK) COA 01106523", "output": "29071900"}, {"text_input": "What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2023062101 (POST BORDER)", "output": "21012020"}, {"text_input": "What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA LC020-23-801 (POST BORDER)", "output": "17021100"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 5 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2322284", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3094598", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3059508", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BIGGY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2208599", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2334621", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2201317", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3096196", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 3114639", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISMNE) BATCH 3096316", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3045915", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3040515", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 5 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2322284", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2343459", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3094598", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2067241,3096321", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2265467", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2081022", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1285556", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2297695", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2305095", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2269108", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3079261", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2143788", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2179358", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2271456", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE KF STREPTOCOCCUS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2214351", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 8 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3005734", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3004799", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE OF BASAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1223658", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE STARCH AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2271472", "output": "38210090"}, {"text_input": "What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3116919", "output": "38210090"}, {"text_input": "What is the hs code for OPTISHARP NAT. ZEA. 14PCT SAFF. (BHN BAKU SUPPLEMEN) COA 2306101041 (POST BORDER)", "output": "32041800"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB22080266 (POST BORDER)", "output": "29362800"}, {"text_input": "What is the hs code for SODIUM ASCORBATE 99PCT TG (BHN BAKU SUPPLEMEN) COA WB22080500 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for METHOCEL E15 PREMIUM LV HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2444208486", "output": "39123900"}, {"text_input": "What is the hs code for METHOCELA 15 PREMIUM LV METHYLCELLULOSE..(BHN BAKU PEWARNA TABLET) COA 2464275134", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100 PREMIUM LV HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464292878", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA D180LCO001", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464186396", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2444185823", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL..(BHN BAKU PEWARNA TABLET) COA 2464207167", "output": "39123900"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O600001...(BHN BAKU PEWARNA TABLET) COA GA736376", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G610004...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) SGR RAPID SUGA FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 57-50-1", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE ...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-22-17515...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007...(BHN BAKU PEWARNA TABLET) COA GA736380", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 86G600000...(BHN BAKU PEWARNA TABLET) CAS 9004-64-2", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650018...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 20A680000...(BHN BAKU PEWARNA TABLET) CAS 9004-64-2", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A62337...(BHN BAKU PEWARNA TABLET) COA GA736697", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A62337...(BHN BAKU PEWARNA TABLET) COA GA736697", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F17438...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55041...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2300555", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3094622,3187811", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE UREA BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2060591", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2363671", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3039438", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3187811", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE B12 ASSAY MEDIUM USP 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3187811", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2027288", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MICROBIAL CONTENT TEST AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3172210", "output": "38210090"}, {"text_input": "What is the hs code for SODIUM CARBONATE IPH (BHN BAKU SUPPLEMEN) COA DOC1842321", "output": "28363000"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20230201 (POST BORDER)", "output": "29362800"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ30210558,UQ30210559 (POST BORDER)", "output": "29362300"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12305024 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT23010028 (POST BORDER)", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02103502 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU KOSMETIK) COA UT22120263,UT22120265 (POST BORDER)", "output": "29362400"}, {"text_input": "What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC230503", "output": "29420000"}, {"text_input": "What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211039 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211039 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC230503", "output": "29420000"}, {"text_input": "What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211039 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02211812 (POST BORDER)", "output": "29362400"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02206017 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000213269 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for DIFCO BEEF EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2084515", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 3114540", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 3114540", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 3114524", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 3114524", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 2242551,REPLACEMENT 35729", "output": "38210090"}, {"text_input": "What is the hs code for CD SUPREME FPM 500GR EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2558581", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2528862", "output": "38210090"}, {"text_input": "What is the hs code for ADIPOFILL'IN TM (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) CAS 37350-42-8", "output": "38249999"}, {"text_input": "What is the hs code for ROSALITY TM (BHN BAKU KOSMETIK) CAS 5343-92-0", "output": "38249999"}, {"text_input": "What is the hs code for WASTAR TM PINK BERRY (BHN BAKU KOSMETIK) CAS 9050-36-6", "output": "38249999"}, {"text_input": "What is the hs code for WASTAR TM LAVENDER (BHN BAKU KOSMETIK) CAS 90063-37-9", "output": "38249999"}, {"text_input": "What is the hs code for ECOGEL TM (BHN BAKU KOSMETIK) CAS 85711-58-6", "output": "38249999"}, {"text_input": "What is the hs code for EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300029,10300030", "output": "13021950"}, {"text_input": "What is the hs code for NEO EXTRAPONE (R) LEMON (BHN BAKU KOSMETIK) COA 10300023", "output": "13021950"}, {"text_input": "What is the hs code for ACTIPONE (R) GINGER JUICE (ORGANIC) GW (BHN BAKU KOSMETIK) COA 10300023", "output": "13021950"}, {"text_input": "What is the hs code for AL HYD WET GEL VAC 20 (BHN BAKU UTK PAKAN TERNAK) COA 202300162,202300154", "output": "28183000"}, {"text_input": "What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 720 CAN 10 KG (BHN BAKU KOSMETIK) CAS 65-85-0", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 940 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) CAS 122-99-6", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6", "output": "38249999"}, {"text_input": "What is the hs code for SENSIDIN DO CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9", "output": "38249999"}, {"text_input": "What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 27-10-22,24-01-23,20-01-23", "output": "38029090"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20230201 (POST BORDER)", "output": "29362800"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ30210558,UQ30210559 (POST BORDER)", "output": "29362300"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12305024 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT23010028 (POST BORDER)", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02103502 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU KOSMETIK) COA UT22120263,UT22120265 (POST BORDER)", "output": "29362400"}, {"text_input": "What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC230503", "output": "29420000"}, {"text_input": "What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211039 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211039 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC230503", "output": "29420000"}, {"text_input": "What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211039 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02211812 (POST BORDER)", "output": "29362400"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02206017 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000213269 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN PREMIX 704023 (BHN BAKU MAKANAN) COA XW92307039 (POST BORDER)", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040011 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for DWI-BI (BHN BAKU MAKANAN) COA XW92306388 (POST BORDER)", "output": "21069059"}, {"text_input": "What is the hs code for VIT MIN PREMIX FOR TODDLER PORRIDGE (BHN BAKU MAKANAN) COA XW92307205 (POST BORDER)", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040011 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02103502 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040011 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for MIN PREMIX FOR TODDLER PORRIDGE (BHN BAKU MAKANAN) COA XW92307203, XW92307204 (POST BORDER)", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040011 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12305024 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ30210560 (POST BORDER)", "output": "29362300"}, {"text_input": "What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010447", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020023", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001696245", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020023,0923020025", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020025", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0523060007", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0523060007", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323020534", "output": "29420000"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) CAS 50-70-4", "output": "38249999"}, {"text_input": "What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 222035 (POST BORDER)", "output": "29224900"}, {"text_input": "What is the hs code for GREYVERSE TM (BHN BAKU KOSMETIK) COA GREYVERSE (POST BORDER)", "output": "29224900"}, {"text_input": "What is the hs code for MELANOSTATINE TM 5 BG (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for MINIPORYL TM (BHN BAKU KOSMETIK) CAS", "output": "38249999"}, {"text_input": "What is the hs code for LIGHT MAGNESIUM CARBONATE POWDER, BP 2023 (BHN BAKU MAKANAN) COA 3133184", "output": "28369990"}, {"text_input": "What is the hs code for PIPERAZINE CITRATE BP ( BHN BAKU OBAT HEWAN ) COA PCT/E/2324/065", "output": "29397900"}, {"text_input": "What is the hs code for MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-011702", "output": "13021950"}, {"text_input": "What is the hs code for ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-011373 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-011713,022073 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for BIOCTP-500 (BHN BAKU KOSMETIK) COA BOPN-021743 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-052873 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for SODIUM BISULFITE (BHN BAKU KOSMETIK) COA MAK114", "output": "28321000"}, {"text_input": "What is the hs code for SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N4O107", "output": "28321000"}, {"text_input": "What is the hs code for CACTUS EXTRACT (BHN BAKU KOSMETIK) COA CAB-030883 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for HOCOX (BHN BAKU KOSMETIK) COA HOXB-020963 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for TEA TREE EXTRACT (BHN BAKU KOSMETIK) COA MASL-010933 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-092743 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for TURMERIC ROOT EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for BIO-OSLP (BHN BAKU KOSMETIK) COA BOPN-021743 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9", "output": "38249999"}, {"text_input": "What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) CAS 68937-54-2", "output": "38249999"}, {"text_input": "What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9", "output": "38249999"}, {"text_input": "What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9", "output": "38249999"}, {"text_input": "What is the hs code for KF-54HV (18KG) (BHN BAKU KOSMETIK) CAS 68083-14-7", "output": "38249999"}, {"text_input": "What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9", "output": "38249999"}, {"text_input": "What is the hs code for KSG-210 (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9", "output": "38249999"}, {"text_input": "What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4", "output": "38249999"}, {"text_input": "What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) CAS 68937-54-2", "output": "38249999"}, {"text_input": "What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) CAS 68937-54-2", "output": "38249999"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20230707", "output": "17029019"}, {"text_input": "What is the hs code for MIAMI SCG(S) (BHN BAKU KOSMETIK) COA MWC2301048", "output": "34023990"}, {"text_input": "What is the hs code for MACKAM C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 11382-1", "output": "34024990"}, {"text_input": "What is the hs code for EDTA 4NA (BHN BAKU KOSMETIK) COA 20221107,20230714 (POST BORDER)", "output": "29224900"}, {"text_input": "What is the hs code for MAGNESIUM SULFATE DIHYDRATE, POWDER... (BHN BAKU OBAT) COA 3133614 (POST BORDER)", "output": "28332100"}, {"text_input": "What is the hs code for PREDNISOLONE BP2022/USP2022 (BHN BAKU OBAT) COA XPL221002", "output": "29372100"}, {"text_input": "What is the hs code for DEXAMETHASONE BP2010/USP42 (BHN BAKU OBAT) COA NED230203,NED230204,NED230523", "output": "29372200"}, {"text_input": "What is the hs code for HYDROCORTISONE ACETATE EP7/USP42 (BHN BAKU OBAT) COA NEHAC230613", "output": "29372200"}, {"text_input": "What is the hs code for FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU OBAT) COA 3131408", "output": "28332920"}, {"text_input": "What is the hs code for ZINC SULFATE 1-HYDRATE, POWDER,USP43 (BHN BAKU OBAT) COA 3124302", "output": "28332920"}, {"text_input": "What is the hs code for MAGNESIUM OXIDE, LIGHT, POWDER, ...(BHN BAKU OBAT) COA 3130559-02", "output": "25199010"}, {"text_input": "What is the hs code for GENIVIDA (BHN BAKU SUPPLEMEN) COA A002190223 (POST BORDER)", "output": "29329900"}, {"text_input": "What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF (BHN BAKU SUPPLEMEN) COA UE02304021 (POST BORDER)", "output": "32030010"}, {"text_input": "What is the hs code for OPTISHARP NAT. ZEA 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA EW23065008 (POST BORDER)", "output": "32041800"}, {"text_input": "What is the hs code for COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPPLEMEN) COA TL02306331 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT FS (BHN BAKU SUPPLEMEN) COA UE02301003", "output": "29420000"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE USP (BAHAN BAKU OBAT) COA ASG/07/190723,210723,220723", "output": "29420000"}, {"text_input": "What is the hs code for CROSCARMELLOSE SODIUM USP-NF (BHN BAKU OBAT) COA ACRMC/07/100723,1207232,1407232 (POST BORDER)", "output": "39129090"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE BP (BAHAN BAKU OBAT) COA ASGP/07/230723,240723", "output": "29420000"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2210099,UEB2210100 (POST BORDER)", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT23041243,UT23041244 (POST BORDER)", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT23040014 (POST BORDER)", "output": "29362600"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30416089,UQ30416090 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL02304968 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for SODIUM ACID PYROPHOSPHATE FOOD GRADE (BHN BAKU MAKANAN) COA 9230802", "output": "28353990"}, {"text_input": "What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK) COA 2307EF3013 (POST BORDER)", "output": "29224900"}, {"text_input": "What is the hs code for HYDROSELLA TM (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 230612 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 230507 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for IMERCARE (R) VELLUTO (BHN BAKU KOSMETIK) COA L763690", "output": "38029090"}, {"text_input": "What is the hs code for BEE PANDA HONEY (BHN BAKU KOSMETIK) CAS 8028-66-8", "output": "38249999"}, {"text_input": "What is the hs code for LYOPHILIZED ROYAL JELLY POWDER (BHN BAKU KOSMETIK) CAS 8031-67-2", "output": "38249999"}, {"text_input": "What is the hs code for NICARDIPINE HYDROCHLORIDE USP (BHN BAKU OBAT) COA S117A23002", "output": "29333990"}, {"text_input": "What is the hs code for IBUPROFEN 40 MICRONS (BHN BAKU OBAT) COA 4050-5000", "output": "29163990"}, {"text_input": "What is the hs code for SODIUM ACETATE ANHYDROUS POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3122829", "output": "29152910"}, {"text_input": "What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000082442", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H105 83 PCT (BHN BAKU KOSMETIK) COA 0000082443", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000082444", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA 0000082445", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H105 83 PCT (BHN BAKU KOSMETIK) COA 0000082446, SAMPLE NO COMMERCIAL VALUE", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H103 43 PCT (BHN BAKU KOSMETIK) COA 0000082447, SAMPLE NO COMMERCIAL VALUE", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000082448, SAMPLE NO COMMERCIAL VALUE", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000082449, SAMPLE NO COMMERCIAL VALUE", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA 0000082450, SAMPLE NO COMMERCIAL VALUE", "output": "29309090"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550373", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550394", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550393", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550391", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550401", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550402", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550399", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550398", "output": "35051010"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O620011...(BHN BAKU PEWARNA TABLET) COA GA737249", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751 ...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007...(BHN BAKU PEWARNA TABLET) COA GA737252", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G63147...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B28796...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 02F52182...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K580000...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA737318", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650018...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650023...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650032...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30112044 (POST BORDER)", "output": "29362200"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT22090039 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT22090039 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for ANTIOXIDANT PREMIX FOR GUMMY (BHN BAKU MAKANAN) COA XW92307317,XW92307318 (POST BORDER)", "output": "21069059"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02303660 (POST BORDER)", "output": "29362400"}, {"text_input": "What is the hs code for VIT PREMIX FOR CHEESE BLOCK CHEDDAR (BHN BAKU MAKANAN) COA XW92307174 (POST BORDER)", "output": "21069059"}, {"text_input": "What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW92307170,XW92307171 (POST BORDER)", "output": "21069059"}, {"text_input": "What is the hs code for PX 103070 - C3 (BHN BAKU MAKANAN) COA XW92307172,XW92307173 (POST BORDER)", "output": "21069059"}, {"text_input": "What is the hs code for PREMIX ADE (BHN BAKU MAKANAN) COA XW92307319 (POST BORDER)", "output": "21069059"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230302 (POST BORDER)", "output": "29362500"}, {"text_input": "What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010449,0823010450", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010448", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010448,0823010449", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010449", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010449", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010449", "output": "29420000"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT23030032 (POST BORDER)", "output": "29362800"}, {"text_input": "What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0041495 (POST BORDER)", "output": "29362500"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02304060 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for CAROCARE NAT. BC 20PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA EW23042006 (POST BORDER)", "output": "32041800"}, {"text_input": "What is the hs code for SODIUM ASCORBATE PH (BHN BAKU SUPPLEMEN) COA TL02303687 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP22523 (POST BORDER)", "output": "28363000"}, {"text_input": "What is the hs code for MICRO CRYSTALLINE CELLULOSE USP, ACCEL 102 (BHN BAKU SUPPLEMEN) COA D108230674", "output": "39129090"}, {"text_input": "What is the hs code for MICRO CRYSTALLINE CELLULOSE USP, ACCEL 102 (BHN BAKU SUPPLEMEN) COA D108230675", "output": "39129090"}, {"text_input": "What is the hs code for VITAMIN E (BHN BAKU KOSMETIK) COA 201202306201 (POST BORDER)", "output": "29362800"}, {"text_input": "What is the hs code for CHOLINE L-BITARTRATE (BAHAN BAKU OBAT) COA 3027697,3027698 (POST BORDER)", "output": "29231000"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB23040706", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB23040706", "output": "29362100"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20230302", "output": "29362800"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20230302", "output": "29362800"}, {"text_input": "What is the hs code for GRANISETRON HCL EP (BHN BAKU OBAT) COA GRH/123004", "output": "29397900"}, {"text_input": "What is the hs code for VC CALCIUM ASCORBATE DC (BHN BAKU SUPPLEMEN) COA HPT2303001 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for L-LYSINE HCL (BHN BAKU OBAT) COA 2312270827 (POST BORDER)", "output": "29224100"}, {"text_input": "What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA G02831UG", "output": "29053200"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB050623", "output": "39123900"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B070523", "output": "39123900"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B070523", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB050623", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LC300523", "output": "39123900"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-FRGE PLUS (BHN BAKU KOSMETIK) COA CFRK-010223 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012423 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-020883 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1230809", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK)COA CHP1230809", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012333 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-052873 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-100983", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA MAK114", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND TEA TREE EXTRACT (BHN BAKU KOSMETIK) COA MASL-021553 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for PROTIBOND TG-AK (BHN BAKU MAKANAN) COA AK23080906 (POST BORDER)", "output": "21069091"}, {"text_input": "What is the hs code for PROTIBOND TG-GW (BHN BAKU MAKANAN) COA GW23071303 (POST BORDER)", "output": "21069091"}, {"text_input": "What is the hs code for VITAMIN PREMIX MILK POWDER FOR ADULTS (BHN BAKU MAKANAN) COA XW92307206 (POST BORDER)", "output": "21069059"}, {"text_input": "What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00821682,VE00821684,VE00825823", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040069", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040069", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040069", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL ZX (BHN BAKU KOSMETIK) COA 200206012", "output": "29420000"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000213857 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for AQUACERAMIDE-RC (BHN BAKU KOSMETIK) COA 231003 (POST BORDER)", "output": "33019090"}, {"text_input": "What is the hs code for BIO-PGA SOLUTION HB (BHN BAKU KOSMETIK) COA 230913 (POST BORDER)", "output": "39139090"}, {"text_input": "What is the hs code for CHRONO CHARDY (BHN BAKU KOSMETIK) COA 230665 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for CLAIR BLANCHE-III (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 231297 (POST BORDER)", "output": "29329900"}, {"text_input": "What is the hs code for KOMENUKA LIQUID BK (BHN BAKU KOSMETIK) COA 230709 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 231079 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for YUZU CERAMIDE B (BHN BAKU KOSMETIK) COA 230782 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 231297 (POST BORDER)", "output": "29329900"}, {"text_input": "What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 230386 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 231297 (POST BORDER)", "output": "29329900"}, {"text_input": "What is the hs code for YUZU CERAMIDE B (BHN BAKU KOSMETIK) COA 230782 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for BIO-PGA SOLUTION HB (BHN BAKU KOSMETIK) COA 230913 (POST BORDER)", "output": "39139090"}, {"text_input": "What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 230743 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG230602 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9", "output": "38249999"}, {"text_input": "What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4", "output": "38249999"}, {"text_input": "What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9", "output": "38249999"}, {"text_input": "What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6", "output": "38249999"}, {"text_input": "What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9", "output": "38249999"}, {"text_input": "What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6", "output": "38249999"}, {"text_input": "What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9", "output": "38249999"}, {"text_input": "What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) CAS 68937-54-2", "output": "38249999"}, {"text_input": "What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4", "output": "38249999"}, {"text_input": "What is the hs code for KSG-210 (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9", "output": "38249999"}, {"text_input": "What is the hs code for KF-54HV (18KG) (BHN BAKU KOSMETIK) CAS 68083-14-7", "output": "38249999"}, {"text_input": "What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9", "output": "38249999"}, {"text_input": "What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4", "output": "38249999"}, {"text_input": "What is the hs code for TRANSCUTOL P (BHN BAKU SUPPLEMEN) COA 195100", "output": "28399000"}, {"text_input": "What is the hs code for TEFOSE 63 (BHN BAKU SUPPLEMEN) COA 195196", "output": "28399000"}, {"text_input": "What is the hs code for TEFOSE 63 (BHN BAKU SUPPLEMEN) COA 195877", "output": "28399000"}, {"text_input": "What is the hs code for GELUCIRE 48/16 PELLETS (BHN BAKU SUPPLEMEN) COA 185000", "output": "28399000"}, {"text_input": "What is the hs code for RIVAROXABAN EP (BHN BAKU OBAT) COA BAN600123", "output": "29349990"}, {"text_input": "What is the hs code for OMEPRAZOLE PELLETS 8,5PCT W/W (BHN BAKU OBAT) COA", "output": "30039000"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007...(BHN BAKU PEWARNA TABLET) COA GA738809", "output": "39061090"}, {"text_input": "What is the hs code for OPASPRAY (R) OPAQUE COLOR CONCENTRATE FOR FILM...(BHN BAKU PEWARNA TABLET) COA DT745737", "output": "32151990"}, {"text_input": "What is the hs code for OPAGLOS (R) TABLET CORE SEALANT PRODUCT OPAGLOS... (BHN BAKU PEWARNA TABLET) COA DT748608", "output": "32151990"}, {"text_input": "What is the hs code for EDTA 4NA (BHN BAKU KOSMETIK) COA 20230714", "output": "29224900"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230802", "output": "13021990"}, {"text_input": "What is the hs code for THIN AND DULL HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230802", "output": "13021990"}, {"text_input": "What is the hs code for ZORYALYS (BHN BAKU KOSMETIK) CAS 73398-61-5", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE USP (BAHAN BAKU OBAT) COA ASG/07/230723,250723,220723", "output": "29420000"}, {"text_input": "What is the hs code for CROSCARMELLOSE SODIUM USP-NF (BHN BAKU OBAT) COA ACRMC/07/160723,170723,200723", "output": "39129090"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE BP (BAHAN BAKU OBAT) COA ASGP/07/260723,240723", "output": "29420000"}, {"text_input": "What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-2200823,2220823", "output": "29334910"}, {"text_input": "What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-230807 (POST BORDER)", "output": "29061300"}, {"text_input": "What is the hs code for COPPER SULFATE, POWDER, PH.EUR.11.ED. (BHN BAKU SUPPLEMEN) COA 3131021", "output": "28332500"}, {"text_input": "What is the hs code for NYSTATIN POWDER ROW GRADE (BHN BAKU OBAT) COA C114761", "output": "29419000"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100MESH (BHN BAKU SUPLEMEN) COA 6AX2308033", "output": "29181400"}, {"text_input": "What is the hs code for CALCIUM PROPIONATE 20 KG (BHN BAKU PAKAN TERNAK) COA 23080065 S/D 23080303", "output": "29155000"}, {"text_input": "What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBNG230224", "output": "29221990"}, {"text_input": "What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464161453", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464259779", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464288266", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464259779", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464207191", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464207196", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464207191", "output": "39123900"}, {"text_input": "What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA LC024-23-801", "output": "17021100"}, {"text_input": "What is the hs code for CYPROHEPTADINE HCL BP/PH. EUR. (BHN BAKU OBAT) COA CYP/05231009", "output": "29333990"}, {"text_input": "What is the hs code for ESOMEPRAZOLE SODIUM STERILE (BHN BAKU OBAT) COA SI/EPZ/00130723", "output": "29333990"}, {"text_input": "What is the hs code for NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 23LNC0430SQ397", "output": "27101990"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) CAS 37350-42-8", "output": "38249999"}, {"text_input": "What is the hs code for PRO-LIPO TM NEO (BHN BAKU KOSMETIK) CAS 504-63-2", "output": "38249999"}, {"text_input": "What is the hs code for SILIGEL TM (BHN BAKU KOSMETIK) CAS 11138-66-2", "output": "38249999"}, {"text_input": "What is the hs code for ECOGEL TM (BHN BAKU KOSMETIK) CAS 85711-58-6", "output": "38249999"}, {"text_input": "What is the hs code for SENTRY POLYOX WSR 1105 LEO...(BHN BAKU PEWARNA TABLET) COA 2744291066", "output": "39123900"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000213857", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000213858, 0000213859", "output": "29362900"}, {"text_input": "What is the hs code for CALCIUM CARBONATE, HEAVY, POWDER... (BHN BAKU SUPPLEMEN) COA 3104884", "output": "25174100"}, {"text_input": "What is the hs code for VC ASCORBIC ACID DC 97PCT (BHN BAKU SUPPLEMEN) COA HPG2302013 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for GUAIFENESIN USP (B. BAKU OBAT) COA GGE-2305055 S/D GGE-2308068", "output": "29094900"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 15330823,15630823,15650823,15670823,15680823,15700823", "output": "29359000"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 15310823,15620823,15640823,15660823", "output": "29359000"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM ...(BHN BAKU PEWARNA TABLET) COA GA738162", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING..(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B84893...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K580000..(BHN BAKU PEWARNA TABLET)CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B28796...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING..(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) EZ EASY SWALLOW EZ EASY SWALLOW..(BHN BAKU PEWARNA TABLET) CAS 9050-36-6", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02305047 (POST BORDER)", "output": "32041800"}, {"text_input": "What is the hs code for 1,3-BUTYLENE GLYCOL, COSMETIC QUALITY(BHN BAKU KOSMETIK) COA P0623626CC", "output": "29053200"}, {"text_input": "What is the hs code for DEXTROSE ANHYDROUS (BHN BAKU OBAT UTK PAKAN TERNAK) COA XWA230808", "output": "17023010"}, {"text_input": "What is the hs code for CLOTRIMAZOLE MICRONIZED (BHN BAKU OBAT ) COA 202306090013,202306140054", "output": "29332900"}, {"text_input": "What is the hs code for CLAIR BLANCHE-III (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 230849 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 222677, 230975 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for PEACH LEAF LIQUID B (BHN BAKU KOSMETIK) COA 231435 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for CHRONO CHARDY (BHN BAKU KOSMETIK) COA 230665 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for AMITOSE R (BHN BAKU KOSMETIK) COA LFD (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0", "output": "38249999"}, {"text_input": "What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) CAS 638164-47-3", "output": "38249999"}, {"text_input": "What is the hs code for MACKAM C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 11382-1,10302-1", "output": "34024990"}, {"text_input": "What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052326,G05052331", "output": "47063000"}, {"text_input": "What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052326,G05052331", "output": "47063000"}, {"text_input": "What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23B0068300 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23B0046900 (POST BORDER)", "output": "13021990"}, {"text_input": "What is the hs code for DRIED ALUMINUM HYDROXIDE GEL USP (BHN BAKU OBAT) COA 102358002,102358003", "output": "28183000"}, {"text_input": "What is the hs code for OMEPRAZOLE PELLETS -8,5PCT (BHN BAKU OBAT) COA OP8.5/121604923", "output": "30039000"}, {"text_input": "What is the hs code for MC-GLUCAN (BHN BAKU KOSMETIK) COA MCGL230807", "output": "39139090"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX TIRED LEGS (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230802", "output": "13021990"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for SENSIDIN PURE CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9", "output": "38249999"}, {"text_input": "What is the hs code for SENSIDIN PURE CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9", "output": "38249999"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT LYOPHIZED (BHN BAKU OBAT) COA ND1670", "output": "29372900"}, {"text_input": "What is the hs code for ETORIXOCIB (BHN BAKU OBAT) COA ETC-PM/23001", "output": "29333990"}, {"text_input": "What is the hs code for MANNITOL USP/EP (BHN BAKU OBAT) COA 122303007,122303235", "output": "29054300"}, {"text_input": "What is the hs code for VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 122302553", "output": "28365010"}, {"text_input": "What is the hs code for PHARMABURST (R) C1 (BHN BAKU OBAT) COA 122302946", "output": "21069099"}, {"text_input": "What is the hs code for PHARMABURST (R) 500 (BHN BAKU OBAT) COA 122302870", "output": "21069099"}, {"text_input": "What is the hs code for MAGNESIUM HYDROXIDE USP BARCROFT TM 5300 (BHN BAKU OBAT) COA 102369009", "output": "28161000"}, {"text_input": "What is the hs code for DRIED ALUMINUM HYDROXIDE, SORBITOL BLEND BARCROFT TM 0501 (BHN BAKU OBAT) COA 102360002", "output": "28183000"}, {"text_input": "What is the hs code for ALUMINUM HYDROXIDE GEL USP BARCROFT TM LV13(BHN BAKU OBAT) COA 102313051", "output": "28183000"}, {"text_input": "What is the hs code for SUPPOCIRE A PELLETS (BHN BAKU SUPPLEMEN) COA 22E0702", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE A PELLETS (BHN BAKU SUPPLEMEN) COA 22E2003", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE BM PELLETS (BHN BAKU SUPPLEMEN) COA 21E2708", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE BM PELLETS (BHN BAKU SUPPLEMEN) COA 23E2304", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU SUPPLEMEN) COA 23E2210", "output": "28399000"}, {"text_input": "What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ30617014", "output": "29420000"}, {"text_input": "What is the hs code for VITAMIN B12 CRYST FOOD GRADE (BHN BAKU KOSMETIK) COA 012303107", "output": "29362600"}, {"text_input": "What is the hs code for SYN(R)-AKE (BHN BAKU KOSMETIK) COA UE02303002", "output": "29420000"}, {"text_input": "What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) CAS 7631-86-9", "output": "38249999"}, {"text_input": "What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3168376", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3168382", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TETRATHIONATE BR BASE HAJNA 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3158214", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3030339", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2066423", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2313348", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)COA 3096242", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DESOXYCHOLATE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3039541", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2339387,2339390", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 19 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3096482", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 3096196", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2236789", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2143794", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2269093", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2297791", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2305095", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE CHROMAGAR CANDIDA 500GM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2325559", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 4 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2313875", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2088727", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2217638", "output": "38210090"}, {"text_input": "What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3107977,3107986", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2298727", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 2291792", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3072748", "output": "38210090"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT23040025", "output": "29362600"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT23060012", "output": "29362900"}, {"text_input": "What is the hs code for B-CAROTENE 1PCT CWS/M (BHN BAKU MAKANAN) COA UT23020002", "output": "32041800"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02304060", "output": "29362700"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT23040010", "output": "32030010"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE, TYPE 100 (BHN BAKU SUPPLEMEN) COA UT23070067", "output": "29362100"}, {"text_input": "What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02307644", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02306444, TL02307644", "output": "29362700"}, {"text_input": "What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) CAS 68937-54-2", "output": "38249999"}, {"text_input": "What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9", "output": "38249999"}, {"text_input": "What is the hs code for KP-578 (16KG) (BHN BAKU KOSMETIK) CAS 1802167-80-1", "output": "38249999"}, {"text_input": "What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6", "output": "38249999"}, {"text_input": "What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9", "output": "38249999"}, {"text_input": "What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9", "output": "38249999"}, {"text_input": "What is the hs code for KF-7312K (18KG) (BHN BAKU KOSMETIK) CAS 56275-01-5", "output": "38249999"}, {"text_input": "What is the hs code for KF-54HV (18KG) (BHN BAKU KOSMETIK) CAS 68083-14-7", "output": "38249999"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2444314878", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA D180LCP002", "output": "39123900"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 20 PREMIUM...(BHN BAKU PEWARNA TABLET) COA D184L9F021", "output": "39123900"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 20 PREMIUM...(BHN BAKU PEWARNA TABLET) COA D184L57021", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E4M PREMIUM HYDROXYPROPYL...(BHN BAKU PEWARNA TABLET) COA 2464213628", "output": "39123900"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101852623", "output": "17021100"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT22090039 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ30112044 (POST BORDER)", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ30112045 (POST BORDER)", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ30112045 (POST BORDER)", "output": "29362200"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ30112045 (POST BORDER)", "output": "29362200"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12305024 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT23030096 (POST BORDER)", "output": "29362400"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02206017 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22120267 (POST BORDER)", "output": "29362400"}, {"text_input": "What is the hs code for MINERAL PREMIX MILK POWDER FOR ADULTS V2 (BHN BAKU MAKANAN) COA XW92307199,XW.... (POST BORDER)", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN B12 0.1 PCT WS (BHN BAKU SUPPLEMEN) COA UT23020003 (POST BORDER)", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202012 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02301212 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22120267 (POST BORDER)", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202012 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3138445", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3138445", "output": "38210090"}, {"text_input": "What is the hs code for VIAL ISOVITALEX ENRICHMENT 10ML 5 EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3191540", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTISERUM POLY B LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1245637", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2363671", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE B12 INOCULUM BROTH 100G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3074932", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 3191081", "output": "38210090"}, {"text_input": "What is the hs code for VIAL ISOVITALEX ENRICHMENT 10ML 5 EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3191540", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS OGAWA 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3138445", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS POLY 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1344136", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 3131935", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3171742", "output": "38210090"}, {"text_input": "What is the hs code for HU TNF CBA FLEX SET D9 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2266983", "output": "38210090"}, {"text_input": "What is the hs code for HU IL-1BTA CBA FLEX SET B4 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3160249", "output": "38210090"}, {"text_input": "What is the hs code for HU VEGF CBA FLEX SET B8 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3054677", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3171742", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3067796", "output": "38210090"}, {"text_input": "What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3110438", "output": "38210090"}, {"text_input": "What is the hs code for KIT GRAM STAIN STABILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3110438", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SELENITE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3067796", "output": "38210090"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51469...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007.. (BHN BAKU PEWARNA TABLET) COA GA738937", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001...(BHN BAKU PEWARNA TABLET)CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650023...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA738989", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G52990...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G65197...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 02F52182...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F48105...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 151-21-3", "output": "38249999"}, {"text_input": "What is the hs code for NAI-WHITE A (BHN BAKU KOSMETIK) COA 2307C10103", "output": "32061110"}, {"text_input": "What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 23290044", "output": "30039000"}, {"text_input": "What is the hs code for REDIVIVO (R) (LYCOPENE) 10PCT FS (BHN BAKU SUPPLEMEN) COA UE02301001", "output": "29420000"}, {"text_input": "What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) CAS 1119-97-7", "output": "38249999"}, {"text_input": "What is the hs code for RANITIDINE HYDROCHLORIDE USP (DC GRADE) (BHN BAKU OBAT) COA RH6050823", "output": "29321900"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING..(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019..(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-30-18037..(BHN BAKU PEWARNA TABLET) CAS 64044-51-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-19025-A..(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20230829", "output": "17029019"}, {"text_input": "What is the hs code for LAKE PIGMENT (R) 6010 D&C ...(BHN BAKU PEWARNA TABLET) COA WP864274:BC1443", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5396...(BHN BAKU PEWARNA TABLET) COA WP864274:BC14", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT (R) 6010 D&C ...(BHN BAKU PEWARNA TABLET) COA WP870801:BC5567", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5396...(BHN BAKU PEWARNA TABLET) COA WP860976:1", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5627 FD&C...(BHN BAKU PEWARNA TABLET) COA WP863100:BC2860", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5517 FD&C...(BHN BAKU PEWARNA TABLET) COA WP866727:BC4487", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5406 FD&C...(BHN BAKU PEWARNA TABLET) COA WP866896:BC2990", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5517 FD&C...(BHN BAKU PEWARNA TABLET) COA WP865812:BC2276", "output": "32151990"}, {"text_input": "What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWDER... (B.BAKU KOSMETIK) CAS 65497-29-2", "output": "38249999"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT22090040 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230502 (POST BORDER)", "output": "29362500"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230502 (POST BORDER)", "output": "29362500"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12305024 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230502 (POST BORDER)", "output": "29362500"}, {"text_input": "What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020025,0923020035", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040069", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040069", "output": "29420000"}, {"text_input": "What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02211812 (POST BORDER)", "output": "29362400"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT22120378 (POST BORDER)", "output": "29362800"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02206017 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211039 (POST BORDER)", "output": "29362700"}, {"text_input": "What is the hs code for OPACODE S-1-290000 CLEAR (BHN BAKU PEWARNA TABLET) COA TKL69417,SAMPLE NO COMMERCIAL VALUE", "output": "32151990"}, {"text_input": "What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) CAS 7631-86-9", "output": "38249999"}, {"text_input": "What is the hs code for PRAVASTATIN SODIUM (BHN BAKU OBAT) COA PV202210109", "output": "29181900"}, {"text_input": "What is the hs code for LINCOMYCIN HYDROCHLORIDE (BHN BAKU OBAT) COA 2305007", "output": "29419000"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7M IU/G (BHN BAKU KOSMETIK) COA 0423060013", "output": "29362100"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-012023,AACN-020193", "output": "29224900"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-022073", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1230831", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-020493", "output": "13021950"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N94107", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-011373", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N7L103", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-020193", "output": "29224900"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-011373", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ASTRIN-AG (BHN BAKU KOSMETIK) COA BAG-022073", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND CUCURBITA EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-012423", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-020963,040593", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-020493", "output": "13021950"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-131993", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N94107", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-040493", "output": "13021950"}, {"text_input": "What is the hs code for BISOPROLOL FUMARATE USP (BHN BAKU OBAT) COA LT-OBFA/003/22-23", "output": "29221990"}, {"text_input": "What is the hs code for GREEN TEA DRY DEC.EX ./PHOSPHOL (BHN BAKU SUPLEMEN) COA 23S0183400", "output": "13021990"}, {"text_input": "What is the hs code for P. GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPPLEMEN) COA 21S0265500", "output": "13021990"}, {"text_input": "What is the hs code for P. GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPPLEMEN) COA 23S0178700", "output": "13021990"}, {"text_input": "What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP22323 (POST BORDER)", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP21923 (POST BORDER)", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP11423,SAMPLE (POST BORDER)", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA HD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP25223 (POST BORDER)", "output": "28363000"}, {"text_input": "What is the hs code for ESOMEPRAZOLE SODIUM STERILE (BHN BAKU OBAT) COA SI/EPZ/00160923", "output": "29333990"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30616137,UQ30616138,UQ30616143,UQ30616144", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02306333", "output": "29362700"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPPLEMEN) COA UT22120044", "output": "32041800"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT22040044,UT22040045", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02305047,UE02305048", "output": "32041800"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30616138,UQ30616139", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30616131,UQ30616132,UQ30616144", "output": "29362700"}, {"text_input": "What is the hs code for ASCORBYL PALMITATE (BHN BAKU MAKANAN) COA UQ30616129,UQ30616131", "output": "29362700"}, {"text_input": "What is the hs code for NABUMETON USP (BHN BAKU OBAT) COA H-1130623", "output": "29145000"}, {"text_input": "What is the hs code for LIFE'SDHA(TM) S35-O300 (BHN BAKU SUPPLEMEN) COA VY00519402", "output": "29362500"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP25723", "output": "28363000"}, {"text_input": "What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2311108", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2201322", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2528862", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3114524", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3114524", "output": "38210090"}, {"text_input": "What is the hs code for DIFCO BEEF EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2084515", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PROTEOSE PEPTONE NO.3 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1088610", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PROTEOSE PEPTONE NO.3 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 1088610", "output": "38210090"}, {"text_input": "What is the hs code for BEEF EXTRACT POWDER EACH EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2308027", "output": "38210090"}, {"text_input": "What is the hs code for DIFCO TRYPTONE 454G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2208158", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3114524", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3114524", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3114524", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3114540", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASAMINO ACIDS EACH EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2208138", "output": "38210090"}, {"text_input": "What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 231090", "output": "13021990"}, {"text_input": "What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 231331", "output": "13021990"}, {"text_input": "What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 230386", "output": "13021990"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 231297", "output": "29329900"}, {"text_input": "What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 230975", "output": "13021990"}, {"text_input": "What is the hs code for COMFREY LIQUID B (BHN BAKU KOSMETIK) COA 230823", "output": "13021990"}, {"text_input": "What is the hs code for PRAYPHOS DKP FG 25K BG (BHN BAKU KOSMETIK) COA 2301731", "output": "28352400"}, {"text_input": "What is the hs code for PRAYPHOS MKP FG 25K BG (BHN BAKU KOSMETIK) COA 23-048-01", "output": "29420000"}, {"text_input": "What is the hs code for OPAGLOS 6000 WHITE/OFF-WHITE (BHN BAKU PEWARNA TABLET) COA DT739887,SAMPLE NO COMMERCIAL VALUE", "output": "32151990"}, {"text_input": "What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010454", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020035", "output": "29420000"}, {"text_input": "What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF23003008", "output": "29420000"}, {"text_input": "What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02211812", "output": "29362400"}, {"text_input": "What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES2210804,ES2212812", "output": "29420000"}, {"text_input": "What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92307450 S/D XW92307452", "output": "21069059"}, {"text_input": "What is the hs code for PURILEX POWDER (BHN BAKU OBAT) COA B424984", "output": "29419000"}, {"text_input": "What is the hs code for PURILEX COMPACTED (BHN BAKU OBAT) COA B428639", "output": "29419000"}, {"text_input": "What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA ND2275M", "output": "29372200"}, {"text_input": "What is the hs code for ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2302281", "output": "32030010"}, {"text_input": "What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA LC 026-23-801", "output": "17021100"}, {"text_input": "What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA LC 026-23-801", "output": "17021100"}, {"text_input": "What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 23100475,23100476", "output": "29395900"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-230501", "output": "13021990"}, {"text_input": "What is the hs code for INCA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK) CAS 68956-68-3", "output": "38249999"}, {"text_input": "What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) CAS 8001-25-0", "output": "38249999"}, {"text_input": "What is the hs code for SEABUCKTHORN HYDROGLYCOLIC EXTRACT(BHN BAKU KOSMETIK) COA HIR230501-B", "output": "13021990"}, {"text_input": "What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for WITCH HAZEL PHYTELENE EG138 (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for VIT-MIN PREMIX MILK POWDER FOR PEDIATRIC (BHN BAKU MAKANAN) COA XW92308122", "output": "21069059"}, {"text_input": "What is the hs code for MINERAL PREMIX MILK POWDER FOR PEDIATRIC (BHN BAKU MAKANAN) COA XW92308121", "output": "21069059"}, {"text_input": "What is the hs code for VIT MIN PRX TABURIN TYPE ENKAPSULASI (BHN BAKU SUPPLEMEN) COA MY62309087", "output": "21069059"}, {"text_input": "What is the hs code for ZINCIDONE 25KG (BHN BAKU KOSMETIK) CAS 15454-75-8", "output": "38249999"}, {"text_input": "What is the hs code for COPPER SULFATE, POWDER, PH.EUR.11.ED. (BHN BAKU SUPLEMEN) COA 3131021", "output": "28332500"}, {"text_input": "What is the hs code for KF-6017 (17KG) (J) (BHN BAKU KOSMETIK) CAS 68937-54-2", "output": "38249999"}, {"text_input": "What is the hs code for KF-6017 (17KG) (J) (BHN BAKU KOSMETIK) CAS 68937-54-2", "output": "38249999"}, {"text_input": "What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4", "output": "38249999"}, {"text_input": "What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9", "output": "38249999"}, {"text_input": "What is the hs code for KSG-210 (16KG) (BHN BAKU KOSMETIK) CAS KSG-210 (16KG)", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O66912...(BHN BAKU PEWARNA TABLET) COA GA739804", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18509...(BHN BAKU PEWARNA TABLET) COA GA739769", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G63147...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58923...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-19025-A...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM GA739772...(BHN BAKU PEWARNA TABLET)CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 151-21-3", "output": "38249999"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2304161921", "output": "29372900"}, {"text_input": "What is the hs code for FLOWLAC (R) 100 (BHN BAKU OBAT) COA L101502823", "output": "17021100"}, {"text_input": "What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104313423", "output": "17021100"}, {"text_input": "What is the hs code for CELLACTOSE (R) 80 (BHN BAKU OBAT) COA L100463223", "output": "17021100"}, {"text_input": "What is the hs code for MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103152023", "output": "17021100"}, {"text_input": "What is the hs code for PIROXICAM MICRONIZED (BHN BAKU OBAT) COA PRX2023007M", "output": "29349990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0012000", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0012100", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0020900", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0055600", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0055700", "output": "13021990"}, {"text_input": "What is the hs code for FERROUS SULFATE 7-HYDRATE, CRYST.,... (BHN BAKU MAKANAN) COA 3137170", "output": "28332920"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000214491", "output": "29362900"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 230802", "output": "13021990"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 230507", "output": "13021990"}, {"text_input": "What is the hs code for FLOWER ACIDS (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for REFINED COCONUT OIL - L (BHN BAKU KOSMETIK) COA 0002712094", "output": "15131990"}, {"text_input": "What is the hs code for BROMHEXINE HYDROCHLORIDE EP (BHN BAKU OBAT) COA ORX/BRH/2305057", "output": "29215900"}, {"text_input": "What is the hs code for CAFFEINE BP/EP/USP (BHN BAKU OBAT) COA 23081511,23081514,23081520,23081530,23081538,23081542", "output": "29393000"}, {"text_input": "What is the hs code for CELLACTOSE (R) 80 (BHN BAKU OBAT) COA L100463223", "output": "17021100"}, {"text_input": "What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 2308029T", "output": "39100020"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT GRANULATION (BHN BAKU SUPPLEMEN) COA WB22119066", "output": "29362700"}, {"text_input": "What is the hs code for VIT MIN PRX TABURIN TYPE ENKAPSULASI (BHN BAKU SUPPLEMEN) COA MY62309088,MY62309089", "output": "21069059"}, {"text_input": "What is the hs code for MEG-3 30 N-3 INF OIL (BHN BAKU SUPPLEMEN) COA TS00022446", "output": "29362500"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B28796..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B640047...(BHN BAKU PEWARNA TABLET)CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA 8MT2308142", "output": "30032000"}, {"text_input": "What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP27223,MTP03023", "output": "28363000"}, {"text_input": "What is the hs code for OMEPRAZOLE PELLETS 8.5PCT W/W ( BHN BAKU OBAT) COA OP-07270923,07280923,07290923", "output": "30039000"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE USP (BAHAN BAKU OBAT) COA JCBA0003 S/D JCBA0006", "output": "29420000"}, {"text_input": "What is the hs code for CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA JCDA0005,JCDA0006", "output": "39123100"}, {"text_input": "What is the hs code for ABYSSINE (TM) PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for DEFENSCALP TM PF (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for EXO-P TM (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for LANACHRYS 2B PF (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for LYSOFIX TM LIQUID (BHN BAKU KOSMETIK) COA 222079", "output": "13021990"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for PROGELINE TM (BHN BAKU KOSMETIK) COA 222048", "output": "29224900"}, {"text_input": "What is the hs code for STARTAB (R) DIRECTLY COMPRESSIBLE STARCH 4001 (BHN BAKU PEWARNA TABLET) COA WP873593", "output": "35051010"}, {"text_input": "What is the hs code for NOSCAPINE PH.EUR (BHN BAKU OBAT) COA NOS23009", "output": "29391900"}, {"text_input": "What is the hs code for PEARL ESSENCES 35178MJ (BHN BAKU KOSMETIK) COA D3350256", "output": "32061910"}, {"text_input": "What is the hs code for PIGMENT BLEND (R) PB-21158 (BHN BAKU PEWARNA TABLET) COA GA741045", "output": "32151990"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET)CAS 57-50-1", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G62544...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G52990...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B54445...(BHN BAKU PEWARNA TABLET)CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for NYSTATIN POWDER ROW GRADE (BHN BAKU OBAT) COA C114759", "output": "29419000"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT23020003", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT23030172", "output": "29362900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT23020046", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT23030172", "output": "29362900"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30112045", "output": "29362200"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT23020003", "output": "29362600"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02305056", "output": "29362400"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT23020046,UT23020059", "output": "29362800"}, {"text_input": "What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000214335", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ30210563", "output": "29362300"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT23010005", "output": "32041800"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23030084,UT23040116", "output": "29362800"}, {"text_input": "What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211039", "output": "29362700"}, {"text_input": "What is the hs code for MACKAM C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 10302-1,11383-1", "output": "34024990"}, {"text_input": "What is the hs code for SENTRY POLYOX WSR 303 LEO NF... (BHN BAKU PEWARNA TABLET) COA 2534501244", "output": "39123900"}, {"text_input": "What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) CAS 8002-43-5", "output": "38249999"}, {"text_input": "What is the hs code for PRO-LIPO TM NEO (BHN BAKU KOSMETIK) CAS 504-63-2", "output": "38249999"}, {"text_input": "What is the hs code for WASTAR TM LAVENDER (BHN BAKU KOSMETIK) CAS 90063-37-9", "output": "38249999"}, {"text_input": "What is the hs code for WASTAR TM PINK BERRY (BHN BAKU KOSMETIK) CAS 9050-36-6", "output": "38249999"}, {"text_input": "What is the hs code for SILIGEL TM (BHN BAKU KOSMETIK) CAS 11138-66-2", "output": "38249999"}, {"text_input": "What is the hs code for ROSALITY TM (BHN BAKU KOSMETIK) CAS 5343-92-0", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) CAS 37350-42-8", "output": "38249999"}, {"text_input": "What is the hs code for VC ASCORBIC ACID DC 97PCT (BHN BAKU SUPPLEMEN) COA HPG2302013", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT23041248,UT23051249", "output": "29362100"}, {"text_input": "What is the hs code for MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50529", "output": "29061100"}, {"text_input": "What is the hs code for DIACEREIN EP (BHN BAKU OBAT) COA DCE/40140623", "output": "29189900"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM (BHN BAKU OBAT) COA M114312", "output": "29339990"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT23050162", "output": "29362800"}, {"text_input": "What is the hs code for VIUSID VET 1 KG (PAKAN IKAN BERBENTUK BUBUK) COA A-1", "output": "23099090"}, {"text_input": "What is the hs code for VIUSID VET 1 KG (PAKAN IKAN BERBENTUK BUBUK) COA A-2", "output": "23099090"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 14 PREMIUM... (BHN BAKU PEWARNA TABLET) COA 2534248998", "output": "39123900"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 10 FP... (BHN BAKU PEWARNA TABLET) COA D184MAV010", "output": "39123900"}, {"text_input": "What is the hs code for DULSE PHYTELENE EG 745 (BHN BAKU KOSMETIK) COA EG745-221102-GS-B", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-230501", "output": "13021990"}, {"text_input": "What is the hs code for INCA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK) CAS 68956-68-3", "output": "38249999"}, {"text_input": "What is the hs code for ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (SB) (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO230804", "output": "13021990"}, {"text_input": "What is the hs code for GREENSIL (BHN BAKU KOSMETIK) CAS 91771-32-3", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) COA ANTS230503", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-BLACK PEARL POWDER (BHN BAKU KOSMETIK) CAS -", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-020883", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1231006", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1231006", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012333", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012333", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND PF CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSSBD-011143", "output": "13021950"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N7L103", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-020883", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND CACTUS EXTRACT (BHN BAKU KOSMETIK) COA CAB-030883", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-012773", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-600403", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND NEWAPLE (BHN BAKU KOSMETIK) COA NWPB-022093", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) COA CLHW-050503", "output": "13021990"}, {"text_input": "What is the hs code for KANEKA Q10 UBIDECARENONE 5KG JP (BHN BAKU KOSMETIK) COA FA01-4737", "output": "29146200"}, {"text_input": "What is the hs code for AMITOSE R (BHN BAKU KOSMETIK) COA LHE", "output": "13021990"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS SILK-1000 (BHN BAKU KOSMETIK) CAS 96690-41-4", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0", "output": "38249999"}, {"text_input": "What is the hs code for SUNBELLIN (BHN BAKU KOSMETIK) COA F210-2305034,F210-2305035", "output": "29339990"}, {"text_input": "What is the hs code for ADENOSINE(L) (BHN BAKU KOSMETIK) COA C01202304006L", "output": "29349990"}, {"text_input": "What is the hs code for MOPD (BHN BAKU KOSMETIK) COA 230815001", "output": "29242990"}, {"text_input": "What is the hs code for GF-B331 (BHN BAKU KOSMETIK) COA 20230905003", "output": "35051090"}, {"text_input": "What is the hs code for DOWSIL 9041 SIL ELAST BLEND (BHN BAKU KOSMETIK) COA H052N46065", "output": "39100020"}, {"text_input": "What is the hs code for SUGLETS (R) SUGAR SPHERES PF006... (BHN BAKU PEWARNA TABLET) COA ST519851", "output": "32151990"}, {"text_input": "What is the hs code for CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) COA 307041", "output": "21012020"}, {"text_input": "What is the hs code for FEBUXOSTAT FORM A (BHN BAKU OBAT) COA C025(T)-22306002", "output": "29341000"}, {"text_input": "What is the hs code for FEBUXOSTAT (WORKING STANDARD) (BHN BAKU OBAT) COA C025(T)-22306002, SAMPLE NO COMMERCIAL...", "output": "29341000"}, {"text_input": "What is the hs code for ESCITALOPRAM OXALATE (BHN BAKU OBAT) COA 5708-22-003", "output": "29329900"}, {"text_input": "What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3094598", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3173770", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3079291", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEMOGLOBIN FREEZE DIED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3173780", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2291792", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3212006", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3219531", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2208223", "output": "38210090"}, {"text_input": "What is the hs code for CULTURESWAB PLUS AMIES W/O CHARC SINGLE(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 230095700", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G(MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2215995,2305239", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2270946", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3158193", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRUCELLA AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2297695", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MALT EXTRACT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2277807", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MR-VP BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3045918", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MOTILITY TEST MEDIUM BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2298713", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2263336", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2343459", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2269108", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2334621", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR NOBLE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2213711", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1273033", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2165877", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIADIS MSRV 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3107304", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PURPLE BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3114621", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2088727", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MICRO ASSAY CULTURE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3158196", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2217600", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRAIN HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3168382", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BORDET GENGOU AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2137558", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3040515", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 12 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3004799", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE YEAST MOLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2264582", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M ENDO AGAR LES 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2117655", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY SORBITOL AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2263334", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2269098", "output": "38210090"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB23070721 S/D WB23070723", "output": "29362100"}, {"text_input": "What is the hs code for NOSCAPINE PH.EUR (BHN BAKU OBAT) COA NOS23006", "output": "29391900"}, {"text_input": "What is the hs code for LIPOID PPL-600 (BHN BAKU SUPPLEMEN) COA 577200-2230236", "output": "29232011"}, {"text_input": "What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA G11031UG", "output": "29053200"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT23030172", "output": "29362900"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT23030172,XH20230503", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN PREMIX MILK POWDER FOR ADULTS (BHN BAKU MAKANAN) COA XW92309093", "output": "21069059"}, {"text_input": "What is the hs code for ICBP MP ASI R (BHN BAKU MAKANAN) COA XW92308233,XW92308234", "output": "21069059"}, {"text_input": "What is the hs code for MINERAL PREMIX MILK POWDER FOR ADULTS V2 (BHN BAKU MAKANAN) COA XW92309094,XW92309095", "output": "21069059"}, {"text_input": "What is the hs code for PARSOL ZX (BHN BAKU KOSMETIK) COA 200206012", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040069,0223040073", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020035", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL(R) HS (BHN BAKU KOSMETIK) COA HS4040923", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL(R) HS (BHN BAKU KOSMETIK) COA HS4040923", "output": "29420000"}, {"text_input": "What is the hs code for PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3485217", "output": "33029000"}, {"text_input": "What is the hs code for VIAL SHIGELLA ANTIS POLY C1 LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3082538", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3194539", "output": "38210090"}, {"text_input": "What is the hs code for DISC TAXO V FACTOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3116006", "output": "38210090"}, {"text_input": "What is the hs code for DISC TAXO X FACTOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3116009", "output": "38210090"}, {"text_input": "What is the hs code for DISC TAXO VX FACTOR 50 DISCS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2277212", "output": "38210090"}, {"text_input": "What is the hs code for HU NAIVE/MEM T CELL PANEL 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2308427", "output": "38210090"}, {"text_input": "What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3256362", "output": "38210090"}, {"text_input": "What is the hs code for MS TH1/TH2/TH17 CBA KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3243113", "output": "38210090"}, {"text_input": "What is the hs code for OPALUX (R) OPAQUE COLOR COATING CONCENTRATE... (BHN BAKU PEWARNA TABLET) COA DT751690", "output": "32151990"}, {"text_input": "What is the hs code for OPACODE (R) MONOGRAMMING INK... (BHN BAKU PEWARNA TABLET) COA DT751221", "output": "32151990"}, {"text_input": "What is the hs code for OPALUX (R) OPAQUE COLOR COATING CONCENTRATE... (BHN BAKU PEWARNA TABLET) COA DT751697", "output": "32151990"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G630022...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977.. (BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O665000...(BHN BAKU PEWARNA TABLET) COA GA740699", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751.. (BHN BAKU PEWARNA TABLET)CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007.. (BHN BAKU PEWARNA TABLET) COA GA740701", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A..(BHN BAKU PEWARNA TABLET)CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for TABCOAT TC (R) FILM COATING PRODUCT TC-GFII... (BHN BAKU PEWARNA TABLET)COA GA740705", "output": "32151900"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O92157.. (BHN BAKU PEWARNA TABLET) COA GA740706", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING.. (BHN BAKU PEWARNA TABLET)CAS 121786-16-1", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 151-21-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 151-21-3", "output": "38249999"}, {"text_input": "What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2311108", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2201322", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2528862", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3114524", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3039818", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3039818", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2528862", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASAMINO ACIDS TECHNICALS 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1308076", "output": "38210090"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101853023", "output": "17021100"}, {"text_input": "What is the hs code for SODIUM FEREDETATE, POWDER, BP2023 (BHN BAKU OBAT) COA 3130632", "output": "29224900"}, {"text_input": "What is the hs code for POTASSIUM L-ASPARTATE 0,5 HYDRATE (BHN BAKU OBAT) COA 3097137", "output": "29224900"}, {"text_input": "What is the hs code for FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU OBAT) COA 3131113", "output": "28332920"}, {"text_input": "What is the hs code for FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU OBAT) COA 3131113", "output": "28332920"}, {"text_input": "What is the hs code for FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU OBAT) COA 3137011", "output": "28332920"}, {"text_input": "What is the hs code for CALENDERS 2024, NO COMMERCIAL VALUE", "output": "49100000"}, {"text_input": "What is the hs code for PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) CAS 1332-09-8", "output": "38249999"}, {"text_input": "What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052339", "output": "47063000"}, {"text_input": "What is the hs code for PROMETHAZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA HPHCPR070", "output": "29343000"}, {"text_input": "What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M537468,M537469,M537573,M537574", "output": "29411019"}, {"text_input": "What is the hs code for DS-CERAMIDE Y3S (BHN BAKU KOSMETIK) COA CSLG17", "output": "29241990"}, {"text_input": "What is the hs code for DS-CERAMIDE Y3S (BHN BAKU KOSMETIK) COA CSLG19", "output": "29241990"}, {"text_input": "What is the hs code for GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 23T0078700", "output": "13021990"}, {"text_input": "What is the hs code for BOSWELLIA SERRATA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 23T0061400", "output": "13021990"}, {"text_input": "What is the hs code for NATURAL SOURCE MIXED TOCOPHEROLS (BHN BAKU KOSMETIK) COA 230907M001", "output": "29362800"}, {"text_input": "What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for BIOBENEFITY (BHN BAKU KOSMETIK) COA 231180", "output": "13021990"}, {"text_input": "What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 230386", "output": "13021990"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for CLAIR BLANCHE-III (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for HAPPICLOV (BHN BAKU KOSMETIK) COA 231266", "output": "13021990"}, {"text_input": "What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 230975", "output": "13021990"}, {"text_input": "What is the hs code for SWERTIANIN-P (BHN BAKU KOSMETIK) COA 231640", "output": "13021990"}, {"text_input": "What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 231090", "output": "13021990"}, {"text_input": "What is the hs code for CLAIRJU (BHN BAKU KOSMETIK) COA 230167", "output": "13021990"}, {"text_input": "What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) CAS 352230-22-9", "output": "38249999"}, {"text_input": "What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4", "output": "38249999"}, {"text_input": "What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9", "output": "38249999"}, {"text_input": "What is the hs code for KSG-15 (16KG) (BHN BAKU KOSMETIK) CAS 541-02-6", "output": "38249999"}, {"text_input": "What is the hs code for EMULCIRE 61 WL 2659 (BHN BAKU SUPPLEMEN) COA 196936", "output": "28399000"}, {"text_input": "What is the hs code for TRANSCUTOL P (BHN BAKU SUPPLEMEN) COA 195556", "output": "28399000"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40\u00b0 BRIX) (BHN BAKU KOSMETIK) COA 02/22GL4", "output": "28399000"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40\u00b0 BRIX) (BHN BAKU KOSMETIK) COA 02/22GL4, SAMPLE NO COMMERCIAL VALUE", "output": "28399000"}, {"text_input": "What is the hs code for APIFIL CAR (BHN BAKU SUPPLEMEN) COA 188262", "output": "28399000"}, {"text_input": "What is the hs code for LABRAFAC LIPOPHILE WL 1349 (BHN BAKU SUPPLEMEN) COA 195981", "output": "28399000"}, {"text_input": "What is the hs code for GELEOL MONO AND DIGLYCERIDES NF (BHN BAKU SUPPLEMEN) COA 23E0304", "output": "28399000"}, {"text_input": "What is the hs code for LABRASOL BF (BHN BAKU SUPPLEMEN) COA 195283", "output": "28399000"}, {"text_input": "What is the hs code for PRECIROL ATO 5 (BHN BAKU SUPPLEMEN) COA 196484", "output": "28399000"}, {"text_input": "What is the hs code for COMPRITOL 888 PELLETS (BHN BAKU SUPPLEMEN) COA 22E4306", "output": "28399000"}, {"text_input": "What is the hs code for COMPRITOL 888 ATO (BHN BAKU SUPPLEMEN) COA 197169", "output": "28399000"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20230801", "output": "29362800"}, {"text_input": "What is the hs code for PROMETHAZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA HPHCPR070", "output": "29343000"}, {"text_input": "What is the hs code for BISOPROLOL FUMARATE USP (BHN BAKU OBAT) COA LT-OBFA/006/23-24", "output": "29221990"}, {"text_input": "What is the hs code for XANTHAN 80 (BAHAN BAKU OBAT) COA 4454309807", "output": "39139090"}, {"text_input": "What is the hs code for ONDANSETRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA 23OS002", "output": "29332900"}, {"text_input": "What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G630022...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 02F54189...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 02F52182...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A..(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-020883", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1231006", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND NEWAPLE (BHN BAKU KOSMETIK) COA NWPB-022093", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SENAS (BHN BAKU KOSMETIK) COA NASB-012593", "output": "21022090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N94107", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N7L103", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-040493", "output": "13021950"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-040493", "output": "13021950"}, {"text_input": "What is the hs code for PANTOPRAZOLE SODIUM (STERILE) (BHN BAKU OBAT) COA SI/PPZ/01891023", "output": "29333990"}, {"text_input": "What is the hs code for VC CALCIUM ASCORBATE DC (BHN BAKU SUPPLEMEN) COA HPT2303001", "output": "29362700"}, {"text_input": "What is the hs code for P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 23S0224200", "output": "13021990"}, {"text_input": "What is the hs code for BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 23S0218001", "output": "13021990"}, {"text_input": "What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 23S0121400", "output": "13021990"}, {"text_input": "What is the hs code for CURCUMINOIDS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 23S0164401", "output": "13021990"}, {"text_input": "What is the hs code for P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 23S0224200", "output": "13021990"}, {"text_input": "What is the hs code for BILBERRY (V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPLEMEN) COA 23S0218001", "output": "13021990"}, {"text_input": "What is the hs code for SILDENAFIL CITRATE USP (BHN BAKU OBAT) COA SLC0570923", "output": "29359000"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 57-50-1", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA740864", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650035...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007...(BHN BAKU PEWARNA TABLET) COA GA740701", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING...(BHN BAKU PEWARNA TABLET)CAS 121786-16-1", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 21K58794..(BHN BAKU PEWARNA TABLET)CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51226...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K580000...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) FX SPECIAL EFFECTS FILM COATING SYSTEM..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT23070049", "output": "29362100"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT23070187", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT23070049", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02305048", "output": "32041800"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT23070016", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT23040015", "output": "29362600"}, {"text_input": "What is the hs code for EUXYL K 100 CAN 10 KG (BHN BAKU KOSMETIK) CAS 55965-84-9", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 940 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) CAS 122-99-6", "output": "38249999"}, {"text_input": "What is the hs code for SENSIDIN DO CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 120 CAN 10 KG (BHN BAKU KOSMETIK) CAS 65-85-0", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6", "output": "38249999"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG230908,MCVG230915,MCVG231005", "output": "29362700"}, {"text_input": "What is the hs code for NICLOSAMIDE ANHYDROUS (BHN BAKU PAKAN HEWAN) COA 20230908", "output": "29242990"}, {"text_input": "What is the hs code for V 427502 (BHN BAKU MAKANAN) COA XW92309278", "output": "21069059"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB23070719 S/D WB23070721", "output": "29362100"}, {"text_input": "What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 05-07-23 S/D 07-07-23,08-09-23 ,10-03-23", "output": "38029090"}, {"text_input": "What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 23-05-22 ,16-05-22 ,24-05-22", "output": "25070000"}, {"text_input": "What is the hs code for XANTHAN 80 (BAHAN BAKU OBAT) COA 4454309807", "output": "39139090"}, {"text_input": "What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010454", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020035", "output": "29420000"}, {"text_input": "What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF23003008", "output": "29420000"}, {"text_input": "What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02211812", "output": "29362400"}, {"text_input": "What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES2210804,ES2212812", "output": "29420000"}, {"text_input": "What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92307450 S/D XW92307452", "output": "21069059"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG230908,MCVG230915,MCVG231005", "output": "29362700"}, {"text_input": "What is the hs code for VIT. A PALM. 1.0 M + VIT. D3 100'000 (BHN BAKU MAKANAN) COA UT23070179,UT23070180", "output": "29362100"}, {"text_input": "What is the hs code for PHTHALAVIN (R) ENTERIC COATING POLYMER 2138 CLEAR (BHN BAKU PEWARNA TABLET) COA WP871784", "output": "39059990"}, {"text_input": "What is the hs code for LAKE PIGMENT (R) 6010 D&C ...(BHN BAKU PEWARNA TABLET) COA WP870800:BC5548", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C...(BHN BAKU PEWARNA TABLET) COA WP868324:BC3385", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5517 FD&C...(BHN BAKU PEWARNA TABLET) COA WP866727:BC4487", "output": "32151990"}, {"text_input": "What is the hs code for PURIDROX (R) COMPACTED (BHN BAKU OBAT) COA B340493,B340494,B340496", "output": "29419000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5", "output": "38249999"}, {"text_input": "What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) CAS 122-99-6", "output": "38249999"}, {"text_input": "What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) CAS 122-99-6", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03F140006..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40\u00b0 BRIX) (BHN BAKU KOSMETIK) COA 02/22GL4", "output": "28399000"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40\u00b0 BRIX) (BHN BAKU KOSMETIK) COA 02/22GL4, SAMPLE NO COMMERCIAL VALUE", "output": "28399000"}, {"text_input": "What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 2310035T", "output": "39100020"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230802", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-231002", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG PHYTELENE EG 209 (BHN BAKU KOSMETIK) COA EG209-231002", "output": "13021990"}, {"text_input": "What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) CAS 8001-25-0", "output": "38249999"}, {"text_input": "What is the hs code for COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPPLEMEN) COA TL02306407", "output": "29362700"}, {"text_input": "What is the hs code for FLORAGLO(R) LUTEIN 20 PCT SAF (BHN BAKU SUPPLEMEN) COA UE02304021", "output": "32030010"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02307060", "output": "32041800"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02307737", "output": "29362700"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPPLEMEN) COA UT23050002", "output": "32041800"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPLEMEN) COA UT23070015", "output": "32030010"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT23050011", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT23060023", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT23040025", "output": "29362600"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT23090058,UT23090063", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT23060014", "output": "29362900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT23050162", "output": "29362800"}, {"text_input": "What is the hs code for VC ASCORBIC ACID DC 97PCT (BHN BAKU SUPPLEMEN) COA HPG2303001", "output": "29362700"}, {"text_input": "What is the hs code for NAPROXEN SODIUM USP (BHN BAKU OBAT) COA 2-SN-1570823", "output": "29189900"}, {"text_input": "What is the hs code for ESOMEPRAZOLE MAGNESIUM TRIHYDRATE (BHN BAKU OBAT) COA C900100", "output": "29333990"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000215220", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000215219 S/D 0000215221", "output": "29362900"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP29323", "output": "28363000"}, {"text_input": "What is the hs code for AMITOSE HGA (BHN BAKU KOSMETIK) COA LIL", "output": "13021990"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7", "output": "38249999"}, {"text_input": "What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) CAS 638164-47-3", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS SILK-1000 (BHN BAKU KOSMETIK) CAS 96690-41-4", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS EK-118(IN) (BHN BAKU KOSMETIK) CAS 59219-71-5", "output": "38249999"}, {"text_input": "What is the hs code for SENSIDIN DO CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9", "output": "38249999"}, {"text_input": "What is the hs code for SENSIDIN PURE CAN 10 KG (BHN BAKU KOSMETIK) CAS 70775-75-6", "output": "38249999"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for BOREALINE PROTECT (BHN BAKU KOSMETIK) COA AM097578", "output": "13021990"}, {"text_input": "What is the hs code for LANACHRYS 2B PF (PRESERVATIVE) (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for PROGELINE TM (BHN BAKU KOSMETIK) COA 222048", "output": "29224900"}, {"text_input": "What is the hs code for ABYSSINE 657 (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for ABYSSINE (TM) PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 231544", "output": "13021990"}, {"text_input": "What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 232178", "output": "13021990"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 230972", "output": "13021990"}, {"text_input": "What is the hs code for HAPPICLOV (BHN BAKU KOSMETIK) COA 231266", "output": "13021990"}, {"text_input": "What is the hs code for EXTRAPONE (R) PEACH (BHN BAKU KOSMETIK) COA 10300039", "output": "13021950"}, {"text_input": "What is the hs code for ACTIPONE (R) CAMU CAMU GW (BHN BAKU KOSMETIK) COA 10300021", "output": "13021950"}, {"text_input": "What is the hs code for VACCINIUM MYRTILLUS DRY EX. (BHN BAKU SUPLEMEN) COA 22S0239900", "output": "13021990"}, {"text_input": "What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 23S0121400", "output": "13021990"}, {"text_input": "What is the hs code for ECHINACEA ANG.DRY PURIF. EX. (BHN BAKU SUPPLEMEN) COA 21S0155200", "output": "13021990"}, {"text_input": "What is the hs code for SODIUM ACID PYROPHOSPHATE FOOD GRADE (BHN BAKU MAKANAN) COA 9231024", "output": "28353990"}, {"text_input": "What is the hs code for GLUCOSAMINE SULFATE POTASSIUM CHLORIDE (BHN BAKU OBAT) COA WA202308007", "output": "29329900"}, {"text_input": "What is the hs code for MOXIFLOXACIN HYDROCHLORIDE EP (BHN BAKU OBAT) COA EL-05/L011/23083,EL-05/L011/23076", "output": "29334990"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101853923", "output": "17021100"}, {"text_input": "What is the hs code for VC ASCORBIC ACID REGULAR (BHN BAKU SUPPLEMEN) COA HPB2305045,HPB2305049", "output": "29362700"}, {"text_input": "What is the hs code for VC ASCORBIC ACID REGULAR (BHN BAKU SUPPLEMEN) COA HPB2305045", "output": "29362700"}, {"text_input": "What is the hs code for VC SODIUM ASCORBATE REGULAR (BHN BAKU SUPPLEMEN) COA HPN2305002", "output": "29362700"}, {"text_input": "What is the hs code for VC ASCORBIC ACID REGULAR (BHN BAKU SUPPLEMEN) COA HPB2305049", "output": "29362700"}, {"text_input": "What is the hs code for METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/13100586", "output": "29332900"}, {"text_input": "What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-231019", "output": "29061300"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550818", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550778", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550800", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550817", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550853", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550797", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550852", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN550851", "output": "35051010"}, {"text_input": "What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 23100533,23100534", "output": "29395900"}, {"text_input": "What is the hs code for MACKAM C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 11384-1", "output": "34024990"}, {"text_input": "What is the hs code for CITRIC ACID MONOHYDRAT BP/EP/U F6000 (BHN BAKU KOSMETIK) COA 84022504", "output": "29181400"}, {"text_input": "What is the hs code for LIDOCAINE BASE (BHN BAKU OBAT) COA 203876", "output": "29242990"}, {"text_input": "What is the hs code for LIDOCAINE HCL (BHN BAKU OBAT) COA 202193", "output": "29242990"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG231006", "output": "29362700"}, {"text_input": "What is the hs code for WASTAR TM PINK BERRY (BHN BAKU KOSMETIK) CAS 9050-36-6", "output": "38249999"}, {"text_input": "What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) CAS 8002-43-5", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) CAS 37350-42-8", "output": "38249999"}, {"text_input": "What is the hs code for ECOSLIM TM (BHN BAKU KOSMETIK) CAS 58-08-2", "output": "38249999"}, {"text_input": "What is the hs code for BOREALINE (R) AURORA (BHN BAKU KOSMETIK) COA BX1220017", "output": "13021990"}, {"text_input": "What is the hs code for OPACODE S-1-8114 BLACK (BHN BAKU PEWARNA TABLET) COA TKL70208,SAMPLE NO COMMERCIAL VALUE", "output": "32151990"}, {"text_input": "What is the hs code for MAGNESIUM ASPARTATE DIHYDRATE,... (BHN BAKU SUPPLEMEN) COA 3118345-04", "output": "29224900"}, {"text_input": "What is the hs code for SODIUM SELENITE IN CARRIER,... (BHN BAKU SUPPLEMEN) COA 3127495", "output": "28429010"}, {"text_input": "What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 23S0121400", "output": "13021990"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101853723", "output": "17021100"}, {"text_input": "What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02211812,TL02211813", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0522060089,0522060090,0523060007,0523060011", "output": "29420000"}, {"text_input": "What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES2301822", "output": "29420000"}, {"text_input": "What is the hs code for PX 103070 - C3 (BHN BAKU MAKANAN) COA XW92309193,XW92309194", "output": "21069059"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ30310571", "output": "29362300"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT23050153", "output": "29362400"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ20512156,UQ20512157", "output": "29362200"}, {"text_input": "What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000214335", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN PREMIX FOR MARGARINE SG15-0027 (BHN BAKU MAKANAN) COA XW92310004", "output": "21069059"}, {"text_input": "What is the hs code for PREMIX VMP JELLY (BHN BAKU MAKANAN) COA XW92310084", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN PREMIX FOR JELLY DRINK V4 (BHN BAKU MAKANAN) COA XW92310085", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040011", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI21040011", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI23030003", "output": "29362900"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING..(BHN BAKU PEWARNA TABLET)CAS9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS 57-50-1", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET)CAS 121786-16-1", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B28796...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620041...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET) CAS", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650018...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) CAS", "output": "38249999"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA 2464438852", "output": "39123900"}, {"text_input": "What is the hs code for PRECIROL ATO 5 (BHN BAKU SUPPLEMEN) COA 197385", "output": "28399000"}, {"text_input": "What is the hs code for GELUCIRE 48/16 PELLETS (BHN BAKU SUPPLEMEN) COA 185000", "output": "28399000"}, {"text_input": "What is the hs code for CARBOWAX SENTRY PEG 1450 (BHN BAKU KOSMETIK) COA D684N4QPB2", "output": "39072990"}, {"text_input": "What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2023102701", "output": "21012020"}, {"text_input": "What is the hs code for SUCRALOSE (BHN BAKU OBAT) COA 23082601", "output": "29321400"}, {"text_input": "What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA 2301420140", "output": "29419000"}, {"text_input": "What is the hs code for CANDESARTAN CILEXETIL (BHN BAKU OBAT) COA 5712-23-078", "output": "29339990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-183003", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-183003", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-183003", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-011373", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1231108", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-052873,060693", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-040593", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND JEJU TANGERINE EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-012773", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SENAS (BHN BAKU KOSMETIK) COA NASB-01259", "output": "21022090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N7L103", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND PF SC-GLUCAN (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND CUCURBITA EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND COLINUS (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for 1,3-BUTYLENE GLYCOL (NATUROBG) (BHN BAKU KOSMETIK) COA BGC/L65/23", "output": "29053200"}, {"text_input": "What is the hs code for TRIBUTYRIN 65PCT 25 KG (BHN BAKU PAKAN TERNAK) COA 20231103", "output": "29156000"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for IRON SUCROSE TYPE II (BHN BAKU OBAT) COA 23290081", "output": "30039000"}, {"text_input": "What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWDER... (B.BAKU KOSMETIK) CAS 65497-29-2", "output": "38249999"}, {"text_input": "What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512326", "output": "47069200"}, {"text_input": "What is the hs code for NONIVAMIDE (SYNTHETIC CAPSAICIN) (BHN BAKU KOSMETIK) COA 20231020", "output": "29241990"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51469..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O600001...(BHN BAKU PEWARNA TABLET) COA GA742434", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA742435", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007...(BHN BAKU PEWARNA TABLET) COA GA742437", "output": "39061090"}, {"text_input": "What is the hs code for TABCOAT TC (R) FILM COATING PRODUCT TC-GFII-1505...(BHN BAKU PEWARNA TABLET) COA GA742438", "output": "32151990"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM OY-GM-7305..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K80814..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B82443..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM Y-1-7000..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) KB LOW VISCOSITY FILM COATING SYSTEM..(BHN BAKU PEWARNA TABLET)CAS 151-21-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3485217", "output": "33029000"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464397264", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464397261", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464397261", "output": "39123900"}, {"text_input": "What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052339", "output": "47063000"}, {"text_input": "What is the hs code for DESONIDE MICRONIZED (BHN BAKU OBAT) COA NC3328M", "output": "29372900"}, {"text_input": "What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4", "output": "38249999"}, {"text_input": "What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9", "output": "38249999"}, {"text_input": "What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9", "output": "38249999"}, {"text_input": "What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6", "output": "38249999"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059", "output": "38210090"}, {"text_input": "What is the hs code for DIFCO BEEF EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2312117", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3100095", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2528862", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3039818", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3039818", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3100095", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3100095", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2201322", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2509110", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3039818", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3114540", "output": "38210090"}, {"text_input": "What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3018648", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2528862", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059", "output": "38210090"}, {"text_input": "What is the hs code for VC CALCIUM ASCORBATE DC (BHN BAKU SUPPLEMEN) COA HPT2303003", "output": "29362700"}, {"text_input": "What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3168376", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 3221348", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2311158", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2343200", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3096321", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE R2A AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3053725", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2236789", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2046206", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MUELLER HILTON AGAR II 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3172757", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SIM MEDIUM BBL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2299810", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ACTINOMYCETES ISOLATION AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2343459", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2269108,3142346", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3206413", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DERMATOPHYTE TEST MED BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3221072", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GLYCEROL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2292718", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2217638", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2053778", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TETRATHIONATE BR BASE HAJNA 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3158214", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3199948", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M TGE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2201315", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MUELLER HILTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3150802", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3137222", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 3221348", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3088713,3173090", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2362156,3088713", "output": "38210090"}, {"text_input": "What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 3186480", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2229527", "output": "38210090"}, {"text_input": "What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3144373", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2291792", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MICRO INOCULUM BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3199057", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3206413", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE CHROMAGAR CANDIDA 500GM (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3223967", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MIDDLEBROOK 7H9 BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2207029", "output": "38210090"}, {"text_input": "What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3144306,3144373", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 11 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 3114639", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2339390", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2143794", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1172869", "output": "38210090"}, {"text_input": "What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA G12101UP", "output": "29053200"}, {"text_input": "What is the hs code for MIRASIL DM5 (BHN BAKU KOSMETIK) COA 2344FF2215", "output": "39100090"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP31623", "output": "28363000"}, {"text_input": "What is the hs code for SUNBELLIN (BHN BAKU KOSMETIK) COA F210-2309040,2309041,2309042", "output": "29339990"}, {"text_input": "What is the hs code for MOPD (BHN BAKU KOSMETIK) COA 230815001,230915001", "output": "29242990"}, {"text_input": "What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW DC YRDN-FE-...(ALAT KESEHATAN)COA DA21420N1027", "output": "30061010"}, {"text_input": "What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW MC YRPN19-12..(ALAT KESEHATAN)COA HL19100L1027", "output": "30061010"}, {"text_input": "What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC YRPN19-105..(ALAT KESEHATAN)COA HR1960L1027", "output": "30061010"}, {"text_input": "What is the hs code for FERRIC HYDROXIDE POLYMALTOSE COMPLEX,... (BHN BAKU SUPPLEMEN) COA 3118698", "output": "29400000"}, {"text_input": "What is the hs code for COPPER(II) GLUCONATE, FINE POWDER, USP-NF 2023,... (BHN BAKU SUPPLEMEN) COA 3137051", "output": "29181600"}, {"text_input": "What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340504,B340506,B340507", "output": "29419000"}, {"text_input": "What is the hs code for CLOMIPHENE CITRATE USP/EP (BHN BAKU OBAT ) COA 202309280060", "output": "29221990"}, {"text_input": "What is the hs code for CLOMIPHENE CITRATE USP/EP (BHN BAKU OBAT ) COA 202309280060", "output": "29221990"}, {"text_input": "What is the hs code for CLOMIPHENE CITRATE USP/EP (BHN BAKU OBAT ) COA 202309280060,202309280061", "output": "29221990"}, {"text_input": "What is the hs code for COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) COA ANTS230804", "output": "13021990"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for DANDRILYS (NAT) (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for OLIVE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6", "output": "38249999"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for SILDENAFIL CITRATE USP (BHN BAKU OBAT) COA SLC0631023", "output": "29359000"}, {"text_input": "What is the hs code for SELOHVITA C (BHN BAKU SUPPLEMEN) COA 3129180,3131996", "output": "28429010"}, {"text_input": "What is the hs code for SILDENAFIL CITRATE USP (BHN BAKU OBAT) COA SLC0721123", "output": "29359000"}, {"text_input": "What is the hs code for ISDN 10PCT IN NACL (DISPERSION) (BHN BAKU OBAT) COA 2311946", "output": "30039000"}, {"text_input": "What is the hs code for ETORIXOCIB (BHN BAKU OBAT) COA ETC-P/23003", "output": "29333990"}, {"text_input": "What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) CAS 122-99-6", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA743067", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K665000..(BHN BAKU PEWARNA TABLET)CAS 1309-37-1", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55015..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A62337..(BHN BAKU PEWARNA TABLET) COA GA743068", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93A62337..(BHN BAKU PEWARNA TABLET) COA GA743068", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K580000..(BHN BAKU PEWARNA TABLET)CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650018..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for STAIN BUFFER FBS 500ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2341228", "output": "38210090"}, {"text_input": "What is the hs code for VIAL E COLI H ANTISERUM H7 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3068676", "output": "38210090"}, {"text_input": "What is the hs code for VIAL E COLI H ANTISERUM H7 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3068676", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3145963", "output": "38210090"}, {"text_input": "What is the hs code for VIAL E COLI H ANTISERUM H7 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3068676", "output": "38210090"}, {"text_input": "What is the hs code for VIAL E COLI ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3166212", "output": "38210090"}, {"text_input": "What is the hs code for VIAL VIBRIO CHOLERAE ANTIS INABA 3MI (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3145963", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BIOTIN ASSAY MEDIUM 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3072777", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2335015", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2027288", "output": "38210090"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3103247", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MICROBIAL CONTENT TEST AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3072210,.", "output": "38210090"}, {"text_input": "What is the hs code for MS IG KPA COMP BEAD SET 6ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2300045", "output": "38210090"}, {"text_input": "What is the hs code for HU SOLBL PLEIN CBA BUF KIT 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3013096,3153966", "output": "38210090"}, {"text_input": "What is the hs code for ENOS ALEXA 647 33/ENOS 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3290230", "output": "38210090"}, {"text_input": "What is the hs code for HU VEGFR-2/CD309 PE 89106 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3145598", "output": "38210090"}, {"text_input": "What is the hs code for HU IL-8 CBA FLEX SET A9 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3093736", "output": "38210090"}, {"text_input": "What is the hs code for HU G-CSF CBA FLEX SET C8 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2168170", "output": "38210090"}, {"text_input": "What is the hs code for HU ANGIOGENIN CBA FLEX SET C4 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2188696", "output": "38210090"}, {"text_input": "What is the hs code for HU BASIC FGF CBA FLEX SET C5 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2066607", "output": "38210090"}, {"text_input": "What is the hs code for HU IL-10 CBA FLEX SET B7 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2199637", "output": "38210090"}, {"text_input": "What is the hs code for HU CD133 FITC W6B3C1 100UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3174018", "output": "38210090"}, {"text_input": "What is the hs code for HU CD45 APC-H7 2D1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2257391,3153488", "output": "38210090"}, {"text_input": "What is the hs code for BD FACSUITE CS&T BEADS 50 TESTS RUO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 63586", "output": "38210090"}, {"text_input": "What is the hs code for SIMULTEST CD4 FITC/CD8 PE SK3/SK1 IVD (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2363537", "output": "38210090"}, {"text_input": "What is the hs code for MS IGG1 KPA ITCL APC MOPC-21 100UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3191634", "output": "38210090"}, {"text_input": "What is the hs code for MS IGG2B KPA ITCL APC 27-35 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3226564", "output": "38210090"}, {"text_input": "What is the hs code for MS IGG1 KPA ITCL FITC MOPC-21 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2234633", "output": "38210090"}, {"text_input": "What is the hs code for HU CD90 FITC 5E10 100UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2320580", "output": "38210090"}, {"text_input": "What is the hs code for HU CD44 APC G44-26 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3041946", "output": "38210090"}, {"text_input": "What is the hs code for HU CD90 APC 5E10 100UG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3116500", "output": "38210090"}, {"text_input": "What is the hs code for HU CD31 FITC WM59 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2188676", "output": "38210090"}, {"text_input": "What is the hs code for HU CD45 FITC HI30 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3124102", "output": "38210090"}, {"text_input": "What is the hs code for HU CD146 FITC P1H12 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1342584", "output": "38210090"}, {"text_input": "What is the hs code for MS IGG1KPA ITCL PE MOPC-21 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2136343", "output": "38210090"}, {"text_input": "What is the hs code for HU CD54 APC HA58 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2168169", "output": "38210090"}, {"text_input": "What is the hs code for HU CD274 APC MIH1 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3242893", "output": "38210090"}, {"text_input": "What is the hs code for HU CD166 PE 3A6 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3003473", "output": "38210090"}, {"text_input": "What is the hs code for HU TGF BTA1 CBA FLEX SET B6 100TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3093742", "output": "38210090"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464456907", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464457070", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464381183", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464453444", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K100M PREMIUM CR HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464456907", "output": "39123900"}, {"text_input": "What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512326,G02512342", "output": "47069200"}, {"text_input": "What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052341", "output": "47063000"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464438852", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464207192", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM CR HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA D180LCP002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464186441", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E3 PREMIUM LV HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA D011L4OL02", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E4M PREMIUM HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464213628", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E5 PREMIUM LV HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2444226862", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2444374837", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464207178", "output": "39123900"}, {"text_input": "What is the hs code for THEOPHYLLINE ANHYDROUS (BHN BAKU OBAT) COA 23238 S/D 23241", "output": "29395900"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM MONOHYDRATE (BHN BAKU OBAT) COA 23081361,23081362,23091413,23091417", "output": "29331900"}, {"text_input": "What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-3021123", "output": "29334910"}, {"text_input": "What is the hs code for MOXIFLOXACIN HYDROCHLORIDE EP (BHN BAKU OBAT) COA EL-05/L011/23091", "output": "29334990"}, {"text_input": "What is the hs code for MECOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/1123052", "output": "29362600"}, {"text_input": "What is the hs code for ZINC BISGLYCINATE.. (BHN BAKU SUPPLEMEN) COA 3138610-01", "output": "29224900"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20231107", "output": "17029019"}, {"text_input": "What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4", "output": "38249999"}, {"text_input": "What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9", "output": "38249999"}, {"text_input": "What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6", "output": "38249999"}, {"text_input": "What is the hs code for KSP-101 (15KG)(BHN BAKU KOSMETIK) CAS 1004791-75-6", "output": "38249999"}, {"text_input": "What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) COA 310294", "output": "39100020"}, {"text_input": "What is the hs code for GELOIL SC (BHN BAKU SUPPLEMEN) COA 197910", "output": "28399000"}, {"text_input": "What is the hs code for GELOT 64 (BHN BAKU SUPPLEMEN) COA 197482", "output": "28399000"}, {"text_input": "What is the hs code for PRECIFAC 95-3 (BHN BAKU SUPPLEMEN) COA 196802", "output": "28399000"}, {"text_input": "What is the hs code for GELOIL SC (BHN BAKU SUPPLEMEN) COA 197910", "output": "28399000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND JMSW ED (BHN BAKU KOSMETIK) COA SBDAE-012263", "output": "25010050"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-020193", "output": "29224900"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1231108", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND PORTULACA EXTRACT (BHN BAKU KOSMETIK) COA NMP-L-600403", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012333", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-040493", "output": "13021950"}, {"text_input": "What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23B0090500", "output": "13021950"}, {"text_input": "What is the hs code for HAWTHORN DRY HYDR. EXTR. (BHN BAKU SUPLEMEN) COA 21B0148600", "output": "13021990"}, {"text_input": "What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23B0090600", "output": "13021950"}, {"text_input": "What is the hs code for SILYBIN/PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23B0090500", "output": "13021950"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7M IU/G (BHN BAKU KOSMETIK) COA 0423060013", "output": "29362100"}, {"text_input": "What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334906 S/D B334908", "output": "29419000"}, {"text_input": "What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 2310035T", "output": "39100020"}, {"text_input": "What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 2310035T", "output": "39100020"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101854223", "output": "17021100"}, {"text_input": "What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M537674 S/D M537677", "output": "29411019"}, {"text_input": "What is the hs code for PURIMOX POWDER (BHN BAKU OBAT) COA M486816,M486817", "output": "29411019"}, {"text_input": "What is the hs code for PURICILIN POWDER (BHN BAKU OBAT) COA M781119,M781120", "output": "29411020"}, {"text_input": "What is the hs code for PURIMOX COMPACTED GRADE P (BHN BAKU OBAT) COA M599294,M599299 S/D M599301", "output": "29411019"}, {"text_input": "What is the hs code for DC CODRIED POWDER AHMH 3535 NG (BHN BAKU SUPPLEMEN) COA 202300242", "output": "28183000"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING SYSTEM..(BHN BAKU PEWARNA TABLET) CAS 121786-16-1", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B62323...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B28796...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B54445...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G64786...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 13K605000...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B84893...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G54078..(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51226..(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G52990...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for METRONIDAZOLE EP (BHN BAKU OBAT) COA MTZ/3050801", "output": "29332900"}, {"text_input": "What is the hs code for CORTISONE ACETATE MICRONISED PH.EUR JP (BHN BAKU SUPPLEMEN) COA 2301084222", "output": "29372900"}, {"text_input": "What is the hs code for L-LYSINE HCL (BHN BAKU OBAT) COA 2312271137", "output": "29224100"}, {"text_input": "What is the hs code for SUCRALOSE (BHN BAKU OBAT) COA 23082601", "output": "29321400"}, {"text_input": "What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 232178,232422", "output": "13021990"}, {"text_input": "What is the hs code for DOKUDAMI LIQUID B (BHN BAKU KOSMETIK) COA 231637", "output": "13021990"}, {"text_input": "What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 231297,232477", "output": "29329900"}, {"text_input": "What is the hs code for BIWA LEAF LIQUID B (BHN BAKU KOSMETIK) COA 017212", "output": "13021990"}, {"text_input": "What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 230975", "output": "13021990"}, {"text_input": "What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 230972", "output": "13021990"}, {"text_input": "What is the hs code for BICAR PHARMA HD 27/50 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP31023", "output": "28363000"}, {"text_input": "What is the hs code for DEXAMETHASONE BP2010/USP42 (BHN BAKU OBAT) COA NED231109,NED231112", "output": "29372200"}, {"text_input": "What is the hs code for PREDNISONE USP2023 (BHN BAKU OBAT) COA NPD231102", "output": "29372100"}, {"text_input": "What is the hs code for BETAMETHASONE BP2020/USP2022 (BHN BAKU OBAT) COA XBE230402", "output": "29372200"}, {"text_input": "What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 2204434803", "output": "29372200"}, {"text_input": "What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 2204434803, SAMPLE NO COMMERCIAL", "output": "29372200"}, {"text_input": "What is the hs code for ERDOSTEINE IH (BAHAN BAKU OBAT) COA EDSF230072", "output": "29349990"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT23050011", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE, TYPE 100 (BHN BAKU SUPPLEMEN) COA UT23070067", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT23090067", "output": "29362100"}, {"text_input": "What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF (BHN BAKU SUPPLEMEN) COA UE02304021", "output": "32030010"}, {"text_input": "What is the hs code for VITAMIN B12 1PCT SD (BHN BAKU SUPPLEMEN) COA UT23070008", "output": "29362600"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) COA HOXB-063013", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (BHN BAKU KOSMETIK) COA AACN-030913", "output": "29224900"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-040493,050493", "output": "13021950"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-040493", "output": "13021950"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1231120", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND JEJU TANGERINE EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND NEWAPLE (BHN BAKU KOSMETIK) COA NWPB-022093", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-192013", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-012773", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012333", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-FRGE PLUS (BHN BAKU KOSMETIK) COA CFRK-042283", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-020883", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-012773", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-020493", "output": "13021950"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND JEJU TANGERINE EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230802", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230803", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230803", "output": "13021990"}, {"text_input": "What is the hs code for PEPPERMINT ORGANIC FROM FRANCE DISTILLATE (SB) (BHN BAKU KOSMETIK) CAS 84082-70-2", "output": "38249999"}, {"text_input": "What is the hs code for ZORYALYS (BHN BAKU KOSMETIK) CAS 73398-61-5", "output": "38249999"}, {"text_input": "What is the hs code for GREENSIL (BHN BAKU KOSMETIK) CAS 91771-32-3", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO230804", "output": "13021990"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for KIGELINE (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340511 S/D B340514", "output": "29419000"}, {"text_input": "What is the hs code for RAJOL WP80/LOREAL LIGHT LIQUID PARAFFIN-BP/LIGHT... (BHN BAKU KOSMETIK) COA 1000230002", "output": "27101990"}, {"text_input": "What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 231006", "output": "33012990"}, {"text_input": "What is the hs code for SKINECTURA TM (BHN BAKU KOSMETIK) COA 230407", "output": "13021990"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 230612", "output": "13021990"}, {"text_input": "What is the hs code for AUSTRALIAN TEA TREE OIL WS (BHN BAKU KOSMETIK) COA 231006", "output": "33012990"}, {"text_input": "What is the hs code for LIME PEARL TM AF (BHN BAKU KOSMETIK) COA 220807", "output": "13021990"}, {"text_input": "What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 230516", "output": "29061900"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 230612", "output": "13021990"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 230802", "output": "13021990"}, {"text_input": "What is the hs code for AMITOSE R (BHN BAKU KOSMETIK) COA LKG", "output": "13021990"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS SILK-1000 (BHN BAKU KOSMETIK) CAS 96690-41-4", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS EU-118(IS) (BHN BAKU KOSMETIK) CAS 111174-63-1", "output": "38249999"}, {"text_input": "What is the hs code for ABYSSINE TM PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) CAS 68425-17-2", "output": "38249999"}, {"text_input": "What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829012074P", "output": "29224900"}, {"text_input": "What is the hs code for BOREALINE PROTECT (BHN BAKU KOSMETIK) COA AM097578", "output": "13021990"}, {"text_input": "What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for CW-5C 5PCT CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for LYSOFIX TM LIQUID (BHN BAKU KOSMETIK) CAS 1448790-48-4", "output": "38249999"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for PROGELINE TM (BHN BAKU KOSMETIK) COA 222048", "output": "29224900"}, {"text_input": "What is the hs code for TYROSTAT TM 11(BHN BAKU KOSMETIK) COA 784022021P", "output": "13021990"}, {"text_input": "What is the hs code for ALDAVINE TM 5X (BHN BAKU KOSMETIK) CAS 68425-17-2", "output": "38249999"}, {"text_input": "What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829012074P", "output": "29224900"}, {"text_input": "What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 222059", "output": "29224900"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) CAS", "output": "38249999"}, {"text_input": "What is the hs code for MINIPORYL TM (BHN BAKU KOSMETIK) CAS", "output": "38249999"}, {"text_input": "What is the hs code for TYROSTAT TM 11(BHN BAKU KOSMETIK) COA 784022021P", "output": "13021990"}, {"text_input": "What is the hs code for PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) CAS 5743-47-5", "output": "38249999"}, {"text_input": "What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-3071123", "output": "29334910"}, {"text_input": "What is the hs code for SENSIVA GO NATURAL CAN 10 KG (BHN BAKU KOSMETIK) CAS 1117-86-8", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9", "output": "38249999"}, {"text_input": "What is the hs code for POTASSIUM IODIDE AND CARRIER.. (BHN BAKU SUPPLEMEN) COA 3131670", "output": "28276000"}, {"text_input": "What is the hs code for GLUCOSAMINE SULFATE 2KCL (BHN BAKU SUPPLEMEN) COA JSTK231205", "output": "29329900"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101854223", "output": "17021100"}, {"text_input": "What is the hs code for CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) COA 307041", "output": "21012020"}, {"text_input": "What is the hs code for WASTAR TM PINK BERRY (BHN BAKU KOSMETIK) CAS 9050-36-6", "output": "38249999"}, {"text_input": "What is the hs code for WASTAR TM LAVENDER (BHN BAKU KOSMETIK) CAS 90063-37-9", "output": "38249999"}, {"text_input": "What is the hs code for SILIGEL TM (BHN BAKU KOSMETIK) CAS 11138-66-2", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) CAS 8002-43-5", "output": "38249999"}, {"text_input": "What is the hs code for ROSALITY TM (BHN BAKU KOSMETIK) CAS 5343-92-0", "output": "38249999"}, {"text_input": "What is the hs code for AMISOL TRIO TM (BHN BAKU KOSMETIK) CAS 8002-43-5", "output": "38249999"}, {"text_input": "What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) CAS 8002-43-5", "output": "38249999"}, {"text_input": "What is the hs code for SILIGEL TM (BHN BAKU KOSMETIK) CAS 11138-66-2", "output": "38249999"}, {"text_input": "What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0046906", "output": "29362500"}, {"text_input": "What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS4851023", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0523060065", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS4851023", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0523060016", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323021071,0323021072", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020052,0923020055", "output": "29420000"}, {"text_input": "What is the hs code for ROCOAT PYRIDOXINE HYDROCHLORIDE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB23050082", "output": "29362500"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02206017", "output": "29362900"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20230503", "output": "29362800"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ30310594,UQ30310597", "output": "29362300"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30112047", "output": "29362200"}, {"text_input": "What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT22070226", "output": "29362100"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22120266", "output": "29362400"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02308753", "output": "29362400"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12305024", "output": "29362900"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02305056", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT22120082", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT23060009", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT23030172", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT22120266", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT23040011", "output": "29362600"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02308753", "output": "29362400"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12305024", "output": "29362900"}, {"text_input": "What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92309310,XW92309311", "output": "21069059"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE02206017", "output": "29362900"}, {"text_input": "What is the hs code for PREMIX ADE (BHN BAKU MAKANAN) COA XW92310216", "output": "21069059"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT23060012", "output": "29362900"}, {"text_input": "What is the hs code for PREMIX ADE (BHN BAKU MAKANAN) COA XW92310316", "output": "21069059"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230509", "output": "29362500"}, {"text_input": "What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340515,B340525,B340527", "output": "29419000"}, {"text_input": "What is the hs code for BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3137940", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3272500", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3088838", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2027288", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3086871", "output": "38210090"}, {"text_input": "What is the hs code for HU CD105 APC 266 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3006776", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2335015", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MICROBIAL CONTENT TEST AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3172759", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3272500", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3081961,308", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2335015", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2027288", "output": "38210090"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3103247", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2271502,3086871", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MICROBIAL CONTENT TEST AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3172759", "output": "38210090"}, {"text_input": "What is the hs code for VIAL ISOVITALEX ENRICHMENT 10ML 5 EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3284473", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL H ANTISERUM G COMPLEX (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3026384", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL H ANTISERUM F 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1308721", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL H ANTISERUM M 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2349775", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL H ANTISERUM P 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1322546", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIAUTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2335855", "output": "38210090"}, {"text_input": "What is the hs code for VIAL E COLI ANTISERUM O157 SEROL TEST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3166212", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS GRP B FTR 1/4/12/27 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2293465", "output": "38210090"}, {"text_input": "What is the hs code for DISC TAXO V FACTOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3212707", "output": "38210090"}, {"text_input": "What is the hs code for DISC TAXO X FACTOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3212733", "output": "38210090"}, {"text_input": "What is the hs code for DISC TAXO VX FACTOR 50 DISCS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3254294", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOBACILLI MRS BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3004891", "output": "38210090"}, {"text_input": "What is the hs code for ANTI-HLA DR FITC L243 (G46-6) RUO/GMP(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3170864", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3290069", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3270453", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE COLUMBIA AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2046206", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MUELLER HINTON II AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3172757", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE REINFORCED CLOSTRIDIAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2143333", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2215654", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE R2A AGAR 2KG (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2270184", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 3221348", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1172869", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LOWENSTEIN MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3094598", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2152796", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1172869", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2311158", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH. 2256092", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2172755", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2270946", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2034966", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3053725", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3086819", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3096242", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3096196", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2074829,2221886", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2158081", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MUELLER HINTON II AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3172757", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3173791", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2088727", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NITRATE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2066240", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2217638", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MYP AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2276880", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1264672", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE YEAST NITROGEN BASE W/O AA 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1223708", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2200729", "output": "38210090"}, {"text_input": "What is the hs code for CALCIUM CARBONATE DC TYPE CS90 PHARMA (BHN BAKU OBAT) COA 202300093", "output": "28365010"}, {"text_input": "What is the hs code for PASSION FLOWER D.H.E 4PCT (BAHAN BAKU SUPLEMEN) COA 23B0096400", "output": "13021990"}, {"text_input": "What is the hs code for PARACETAMOL USP43 (BHN BAKU OBAT) COA 2311230,2311335,2352365,2352594", "output": "29242930"}, {"text_input": "What is the hs code for PARACETAMOL USP43 (BHN BAKU OBAT) COA 2352653,2352672,2352680", "output": "29242930"}, {"text_input": "What is the hs code for KETOROLAC TROMETHAMINE USP (BHN BAKU OBAT) COA KM0150323", "output": "29339990"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101854423", "output": "17021100"}, {"text_input": "What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020055,0923020058", "output": "29420000"}, {"text_input": "What is the hs code for ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2311221", "output": "32030010"}, {"text_input": "What is the hs code for NG 5 PCT-1,2 PROPYLENGLYCOLE 95PCT (BAHAN BAKU OBAT) COA 2313370", "output": "30039000"}, {"text_input": "What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 20236", "output": "29332900"}, {"text_input": "What is the hs code for ONDANSETRON HYDROCHLORIDE USP (BHN BAKU OBAT) COA 23OS004", "output": "29332900"}, {"text_input": "What is the hs code for SORBITOL SPECIAL (R) MDF 85 (BHN BAKU SUPPLEMEN) COA 122303217", "output": "29054400"}, {"text_input": "What is the hs code for DEXTROSE ANHYDROUS (BHN BAKU PAKAN HEWAN) COA XW202311005", "output": "17023010"}, {"text_input": "What is the hs code for CALCIUM PROPIONATE 20 KG (BHN BAKU PAKAN TERNAK) COA 23111884 S/D 23111904, 23112025 S/D ....", "output": "29155000"}, {"text_input": "What is the hs code for BETA-Q 20 LIT (V) (BHN BAKU PAKAN TERNAK) COA 23112013", "output": "30049099"}, {"text_input": "What is the hs code for BETAGUARD 20 LIT (V) (BHN BAKU PAKAN TERNAK) COA 23112355", "output": "30049099"}, {"text_input": "What is the hs code for OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM..(BHN BAKU PEWARNA TABLET)CAS 57-50-1", "output": "38249999"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000215652", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0823010637", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS4851023", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323021073", "output": "29420000"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23040136", "output": "29362800"}, {"text_input": "What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS4851023", "output": "29420000"}, {"text_input": "What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02211813", "output": "29362400"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23020059", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT23090059", "output": "29362800"}, {"text_input": "What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0422040160", "output": "29420000"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT23090059", "output": "29362800"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0523060016,0523060024", "output": "29420000"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU SUPPLEMEN) COA UT23060012", "output": "29362900"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30212055", "output": "29362200"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02301001", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT22120082", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT23060009", "output": "29362900"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPPLEMEN) COA TL02303656", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT23040011", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI23040013 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02206017 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02206017", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI23040013", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI23040013", "output": "29362900"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02303664", "output": "29362400"}, {"text_input": "What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF (BHN BAKU SUPPLEMEN) COA UE02304021", "output": "32030010"}, {"text_input": "What is the hs code for VC ASCORBIC ACID DC 97PCT (BHN BAKU SUPPLEMEN) COA HPG2303001", "output": "29362700"}, {"text_input": "What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 23100624,23100626", "output": "29395900"}, {"text_input": "What is the hs code for BROMHEXINE HYDROCHLORIDE EP (BHN BAKU OBAT) COA ORX/BRH/M/2311004", "output": "29215900"}, {"text_input": "What is the hs code for PREGABALIN (BHN BAKU OBAT) COA PU1110423", "output": "29224900"}, {"text_input": "What is the hs code for ALLOPURINOL USP (BHN BAKU OBAT) COA ALP0011123", "output": "29335990"}, {"text_input": "What is the hs code for PANTOPRAZOLE SODIUM (STERILE) (BHN BAKU OBAT) COA SI/PPZ/02441223", "output": "29333990"}, {"text_input": "What is the hs code for TADALAFIL USP (BHN BAKU OBAT) COA TAD-M/0823044,TAD-M/0923058", "output": "29349990"}, {"text_input": "What is the hs code for VITAMIN E (BHN BAKU KOSMETIK) COA 201202310203", "output": "29362800"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20231123", "output": "17029019"}, {"text_input": "What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) CAS 7631-86-9", "output": "38249999"}, {"text_input": "What is the hs code for 4-HYDROXYACETOPHENONE (BHN BAKU KOSMETIK) COA 202311008", "output": "29145000"}, {"text_input": "What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052346", "output": "47063000"}, {"text_input": "What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052346", "output": "47063000"}, {"text_input": "What is the hs code for SUNBELLIN (BHN BAKU KOSMETIK) COA F210-2310048 S/D 2310050,F210-2311001", "output": "29339990"}, {"text_input": "What is the hs code for ADENOSINE(L) (BHN BAKU KOSMETIK) COA C01202304010L", "output": "29349990"}, {"text_input": "What is the hs code for MOPD (BHN BAKU KOSMETIK) COA 231115001", "output": "29242990"}, {"text_input": "What is the hs code for GF-B331 (BHN BAKU KOSMETIK) COA 20231015004", "output": "35051090"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02305048,UE02307060", "output": "32041800"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02303003", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02303003", "output": "29362900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30501066,UQ30701084 (POST BORDER)", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02303003", "output": "29362900"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT GRANULATION (BHN BAKU SUPPLEMEN) COA WB22049035,WB22049036", "output": "29362700"}, {"text_input": "What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT22070226", "output": "29362100"}, {"text_input": "What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020058", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020058, 0923020059", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020059", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020059", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0523060024,0523060021", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL ZX (BHN BAKU KOSMETIK) COA 200206012", "output": "29420000"}, {"text_input": "What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT22070226", "output": "29362100"}, {"text_input": "What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC230402", "output": "29420000"}, {"text_input": "What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA PC230402", "output": "29420000"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230509 (POST BORDER", "output": "29362500"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT23010005", "output": "32041800"}, {"text_input": "What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000214336 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT23070179 (POST BORDER)", "output": "29362900"}, {"text_input": "What is the hs code for RONOXAN A (BHN BAKU MAKANAN) COA UE02302006", "output": "29362100"}, {"text_input": "What is the hs code for PX 103070 - C3 (BHN BAKU MAKANAN) COA XW92307172,XW92307173", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT23070108", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A ACETATE 1.5 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT23070108", "output": "29362100"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20231207", "output": "17029019"}, {"text_input": "What is the hs code for 1,3-BUTYLENE GLYCOL (NATUROBG) (BHN BAKU KOSMETIK) COA BGC/L73/23", "output": "29053200"}, {"text_input": "What is the hs code for DL ALPHA TOCOPHEROL (BHN BAKU KOSMETIK) COA 01230718ES", "output": "29362800"}, {"text_input": "What is the hs code for SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA L202312-026", "output": "35040000"}, {"text_input": "What is the hs code for MACKAM C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 12874-1", "output": "34024990"}, {"text_input": "What is the hs code for OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM..(BHN BAKU PEWARNA TABLET)CAS 57-50-1", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING ...(BHN BAKU PEWARNA TABLET) CAS 121786-16-1", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA743794", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) KB LOW VISCOSITY FILM COATING SYSTEM..(BHN BAKU PEWARNA TABLET)CAS 151-21-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA744015", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM Y-1-7000..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 21K58794..(BHN BAKU PEWARNA TABLET)CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for PIGMENT BLEND (R) PB-66511 BROWN (BHN BAKU PEWARNA TABLET)COA GA744017", "output": "32151990"}, {"text_input": "What is the hs code for MECOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/1123059", "output": "29362600"}, {"text_input": "What is the hs code for SERASENSE SF 2 (BAHAN BAKU SUPLEMEN) COA SA30327063", "output": "39100090"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA 2304321918", "output": "29372900"}, {"text_input": "What is the hs code for VALERIAN DRY HYDR. EXTR. (BAHAN BAKU SUPLEMEN) COA 23B0028600", "output": "13021990"}, {"text_input": "What is the hs code for VALERIAN DRY HYDR. EXTR. (BAHAN BAKU SUPLEMEN) COA 23B0028700", "output": "13021990"}, {"text_input": "What is the hs code for SILYMARINPHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23B0034200", "output": "13021950"}, {"text_input": "What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92310355,XW92310356", "output": "21069059"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12306007", "output": "29362900"}, {"text_input": "What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00844849,VE00847146,VE00847148", "output": "29420000"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000215652,0000215653", "output": "29362900"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101854523", "output": "17021100"}, {"text_input": "What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334920 S/D B3349202", "output": "29419000"}, {"text_input": "What is the hs code for SUPPOCIRE NA PELLETS (BHN BAKU SUPPLEMEN) COA 23E2303", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE BM PELLETS (BHN BAKU SUPPLEMEN) COA 23E44209", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE AM PELLETS (BHN BAKU SUPPLEMEN) COA 23E1708", "output": "28399000"}, {"text_input": "What is the hs code for SUPPOCIRE A PELLETS (BHN BAKU SUPPLEMEN) COA 23E3406", "output": "28399000"}, {"text_input": "What is the hs code for ALUMINUM HYDROXIDE GEL USP BARCROFT TM LV13 (BHN BAKU SUPPLEMEN) COA 102313075", "output": "28183000"}, {"text_input": "What is the hs code for ALUMINUM HYDROXIDE GEL USP BARCROFT TM LV13 (BHN BAKU SUPPLEMEN) COA 102313075, SAMPLE NO COMME", "output": "28183000"}, {"text_input": "What is the hs code for CROSPOVIDONE XL (BHN BAKU SUPPLEMEN) COA PP230914XL-10", "output": "39059990"}, {"text_input": "What is the hs code for SUCRALOSE (BHN BAKU OBAT) COA 23082601", "output": "29321400"}, {"text_input": "What is the hs code for OXOMEMAZINE HYDROCHLORIDE (BHN BAKU OBAT) COA HXHCPR002", "output": "29343000"}, {"text_input": "What is the hs code for PARACETAMOL USP43 (BHN BAKU OBAT) COA 2352721,2352744,2311574", "output": "29242930"}, {"text_input": "What is the hs code for CARDBOARD DRUM, PRICE FOR CUSTOM ONLY", "output": "48192000"}, {"text_input": "What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334904,B334917,B334919,B334920", "output": "29419000"}, {"text_input": "What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334913,B334914,B334917,B334918", "output": "29419000"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O66912..(BHN BAKU PEWARNA TABLET) COA GA744635", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O630007..(BHN BAKU PEWARNA TABLET) COA GA744610", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650035..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING SYSTEM...(BHN BAKU PEWARNA TABLET)CAS 121786-16-1", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B28796..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620038..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620023..(BHN BAKU PEWARNA TABLET)CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55384..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464438866", "output": "39123900"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 10 PREMIUM.. (BHN BAKU PEWARNA TABLET) COA 2534248988", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464207196", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464438852", "output": "39123900"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB23040706", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB22080266", "output": "29362800"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE USP (BAHAN BAKU OBAT) COA KCBA0029 S/D KCBA0031,JCBA0013", "output": "29420000"}, {"text_input": "What is the hs code for CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA MCDA0020", "output": "39123100"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE BP (BAHAN BAKU OBAT) COA LCAA0045,MCAA0047", "output": "29420000"}, {"text_input": "What is the hs code for PAPAVERINE HYDROCHLORIDE (BHN BAKU OBAT) COA 23100153,23100366", "output": "29391900"}, {"text_input": "What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA 2302420101", "output": "29419000"}, {"text_input": "What is the hs code for VITAMIN PREMIX FOR MARGARINE MY15-0027 (BHN BAKU SUPPLEMEN) COA MY62312067", "output": "21069059"}, {"text_input": "What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) CAS 233683-84-6", "output": "38249999"}, {"text_input": "What is the hs code for B-CAROTENE 1PCT CWS/M (BHN BAKU MAKANAN) COA UT23020005", "output": "32041800"}, {"text_input": "What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 2312043T", "output": "39100020"}, {"text_input": "What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 2312043T", "output": "39100020"}, {"text_input": "What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 2312043T", "output": "39100020"}, {"text_input": "What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 2312043T", "output": "39100020"}, {"text_input": "What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 2312043T", "output": "39100020"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) COA", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA", "output": "13021990"}, {"text_input": "What is the hs code for GREENSIL (BHN BAKU KOSMETIK) CAS 91771-32-3", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6", "output": "38249999"}, {"text_input": "What is the hs code for ROSA DAMASCENA ORGANIC DISTILLATE MOROCCO (SB) (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for OLIVE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for OLIVE HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA", "output": "13021990"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for TAMANOL BIO IL (BHN BAKU KOSMETIK) CAS 68956-68-3", "output": "38249999"}, {"text_input": "What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104314023", "output": "17021100"}, {"text_input": "What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103863623", "output": "17021100"}, {"text_input": "What is the hs code for MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103152523", "output": "17021100"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101854623", "output": "17021100"}, {"text_input": "What is the hs code for GRANULAC (R) 70 (BHN BAKU OBAT) COA L101843823", "output": "17021100"}, {"text_input": "What is the hs code for SODIUM ACID PYROPHOSPHATE FOOD GRADE (BHN BAKU MAKANAN) COA 9231121", "output": "28353990"}, {"text_input": "What is the hs code for SODIUM ACETATE ANHYDROUS POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3122829", "output": "29152910"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS BP2009/E330 30-100MESH (BHN BAKU SUPLEMEN) COA 3AX2311024", "output": "29181400"}, {"text_input": "What is the hs code for AMBROXOL HYDROCHLORIDE (BHN BAKU OBAT) COA VBNM230433", "output": "29221990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5", "output": "38249999"}, {"text_input": "What is the hs code for METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/13120727", "output": "29332900"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for CLAIR BLANCHE-III (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 231857", "output": "13021990"}, {"text_input": "What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 231090", "output": "13021990"}, {"text_input": "What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 231643", "output": "13021990"}, {"text_input": "What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 231278", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-011373", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP2231205", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP2231205", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) COA GSC-K-012333,031823", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-060693", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-012773", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA NAH112", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N7L103", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-050493,072123", "output": "13021950"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-072123", "output": "13021950"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) COA KFB-L-012773", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-OSLP (BHN BAKU KOSMETIK) COA OSLP-110903", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND PF CHERRY BLOSSOM (BHN BAKU KOSMETIK) COA PSSBD-021923", "output": "13021950"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-072123", "output": "13021950"}, {"text_input": "What is the hs code for LEUCOSELECT PHYTOSOME (BHN BAKU KOSMETIK) CAS 84929-27-1", "output": "38249999"}, {"text_input": "What is the hs code for AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 162889", "output": "15159011"}, {"text_input": "What is the hs code for TSPL-30-ID (1KG) (BHN BAKU KOSMETIK) CAS 13475-82-6", "output": "38249999"}, {"text_input": "What is the hs code for MEG-3 2718EE (BHN BAKU SUPPLEMEN) COA TS00021968,TS00022622", "output": "29362500"}, {"text_input": "What is the hs code for MEG-3 2718EE (BHN BAKU SUPPLEMEN) COA TS00021968", "output": "29362500"}, {"text_input": "What is the hs code for DRIED ALUMINUM HYDROXIDE, SORBITOL BLEND BARCROFT TM 0501 (BHN BAKU OBAT) COA 102360004", "output": "28183000"}, {"text_input": "What is the hs code for MAGNESIUM HYDROXIDE USP BARCROFT TM 5300 (BHN BAKU OBAT) COA 102369011,102369012", "output": "28161000"}, {"text_input": "What is the hs code for ROSALITY TM (BHN BAKU KOSMETIK) CAS 5343-92-0", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) CAS 8002-43-5", "output": "38249999"}, {"text_input": "What is the hs code for ECOGEL TM (BHN BAKU KOSMETIK) CAS 85711-58-6", "output": "38249999"}, {"text_input": "What is the hs code for DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834012184P", "output": "38249999"}, {"text_input": "What is the hs code for WASTAR TM LAVENDER (BHN BAKU KOSMETIK) CAS 90063-37-9", "output": "38249999"}, {"text_input": "What is the hs code for PRO-LIPO TM NEO (BHN BAKU KOSMETIK) CAS 504-63-2", "output": "38249999"}, {"text_input": "What is the hs code for PHYTENSO TM (BHN BAKU KOSMETIK) CAS 8002-43-5", "output": "38249999"}, {"text_input": "What is the hs code for ROSALITY TM (BHN BAKU KOSMETIK) CAS 5343-92-0", "output": "38249999"}, {"text_input": "What is the hs code for WASTAR TM PINK BERRY (BHN BAKU KOSMETIK) CAS 9050-36-6", "output": "38249999"}, {"text_input": "What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) COA 312310", "output": "39100020"}, {"text_input": "What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4", "output": "38249999"}, {"text_input": "What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9", "output": "38249999"}, {"text_input": "What is the hs code for KF-6048 (16KG) (BHN BAKU KOSMETIK) CAS 144243-53-8", "output": "38249999"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG231013,MCVG231020", "output": "29362700"}, {"text_input": "What is the hs code for ACB FRUIT MIX OR (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829012074P", "output": "29224900"}, {"text_input": "What is the hs code for CAPIXYL TM (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for LANACHRYS 2B PF (PRESERVATIVE) (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) CAS 37350-42-8", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) CAS 37350-42-8", "output": "38249999"}, {"text_input": "What is the hs code for MDI COMPLEX (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for MELANOSTATINE TM 5 BG (50PPM) (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for TYROSTAT TM 11(BHN BAKU KOSMETIK) COA 784022021P", "output": "13021990"}, {"text_input": "What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-002-A", "output": "13021990"}, {"text_input": "What is the hs code for OPALUX (R) OPAQUE COLOR COATING CONCENTRATE... (BHN BAKU PEWARNA TABLET) COA DT754310", "output": "32151990"}, {"text_input": "What is the hs code for OPAGLOS (R) TABLET CORE SEALANT PRODUCT... (BHN BAKU PEWARNA TABLET) COA TABLET CORE SEALANT PR", "output": "32151990"}, {"text_input": "What is the hs code for NUTRAFINISH (R) TIO2 FREE FILM COATING... (BHN BAKU PEWARNA TABLET) CAS 471-34-1", "output": "38249999"}, {"text_input": "What is the hs code for MINERAL PREMIX MILK POWDER FOR ADULTS V2 (BHN BAKU MAKANAN) COA XW92311281,XW92311282", "output": "21069059"}, {"text_input": "What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW92311249 S/D XW92311251", "output": "21069059"}, {"text_input": "What is the hs code for PX 103070 - C3 (BHN BAKU MAKANAN) COA XW92311295,XW92311294", "output": "21069059"}, {"text_input": "What is the hs code for B-CAROTENE 1PCT CWS/M (BHN BAKU MAKANAN) COA UT23020005", "output": "32041800"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL02301002", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT23060012,UT23060013", "output": "29362900"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02303664", "output": "29362400"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU KOSMETIK) COA UT22120266", "output": "29362400"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP12306007", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL (R) SHIELD (BHN BAKU KOSMETIK) COA 0823010638,0823010639", "output": "29420000"}, {"text_input": "What is the hs code for TILAMAR \u00ae PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA 23D0926831", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL ZX (BHN BAKU KOSMETIK) COA 200206012", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323021190,0323021191", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0923020060", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0423040118", "output": "29420000"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT23100066", "output": "29362800"}, {"text_input": "What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323021191", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323021191,0323021192", "output": "29420000"}, {"text_input": "What is the hs code for DEXAMETHASONE BP2010/USP42 (BHN BAKU OBAT) COA NED231109,NED231112", "output": "29372200"}, {"text_input": "What is the hs code for PREDNISONE USP2023 (BHN BAKU OBAT) COA NPD231102", "output": "29372100"}, {"text_input": "What is the hs code for BETAMETHASONE BP2020/USP2022 (BHN BAKU OBAT) COA XBE230402", "output": "29372200"}, {"text_input": "What is the hs code for CYPROTERONE ACETATE MICRONIZED (BHN BAKU OBAT) COA ND2190M1", "output": "29372900"}, {"text_input": "What is the hs code for ETORIXOCIB (BHN BAKU OBAT) COA ETC-P/23004", "output": "29333990"}, {"text_input": "What is the hs code for DRIED ALUMINUM HYDROXIDE, SORBITOL BLEND BARCROFT TM 0501 (BHN BAKU OBAT) COA 102360004", "output": "28183000"}, {"text_input": "What is the hs code for JAGUAR C162 SGI (BHN BAKU KOSMETIK) CAS 71329-50-5", "output": "38249999"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2528862", "output": "38210090"}, {"text_input": "What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3018648", "output": "38210090"}, {"text_input": "What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2314938", "output": "38210090"}, {"text_input": "What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2314938", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASAMINO ACIDS TECHNICALS 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2137791", "output": "38210090"}, {"text_input": "What is the hs code for AMITOSE R (BHN BAKU KOSMETIK) COA LKG", "output": "13021990"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS SILK-1000 (BHN BAKU KOSMETIK) CAS 96690-41-4", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS EU-118(IS) (BHN BAKU KOSMETIK) CAS 111174-63-1", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7", "output": "38249999"}, {"text_input": "What is the hs code for B-CAROTENE 1PCT CWS/M (BHN BAKU MAKANAN) COA UT23020005", "output": "32041800"}, {"text_input": "What is the hs code for 1,3-BUTYLENE GLYCOL (NATUROBG) (BHN BAKU KOSMETIK) COA BGC/L73/23", "output": "29053200"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0055700", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0064900", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0065000", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0077600", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0077700", "output": "13021990"}, {"text_input": "What is the hs code for SODIUM VALPROATE (BAHAN BAKU OBAT) COA 458724", "output": "29159090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM.. (BHN BAKU PEWARNA TABLET) COA GA745781", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51469.. (BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-22-.. (BHN BAKU PEWARNA TABLET)CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) II AQUEOUS ACRYLIC ENTERIC... (BHN BAKU PEWARNA TABLET) COA GA745867", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING SYSTEM..(BHN BAKU PEWARNA TABLET)CAS 121786-16-1", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 02F52182.. (BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-.. (BHN BAKU PEWARNA TABLET)CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING SYSTEM..(BHN BAKU PEWARNA TABLET)CAS 121786-16-1", "output": "38249999"}, {"text_input": "What is the hs code for PURIMOX COMPACTED GRADE A (BHN BAKU OBAT) COA M537726,M537727,M537746,M537747", "output": "29411019"}, {"text_input": "What is the hs code for PURIMOX POWDER (BHN BAKU OBAT) COA M486903", "output": "29411019"}, {"text_input": "What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 100 CAN 10 KG (BHN BAKU KOSMETIK) CAS 55965-84-9", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 720 CAN 10 KG (BHN BAKU KOSMETIK) CAS 65-85-0", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 940 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9", "output": "38249999"}, {"text_input": "What is the hs code for SENSIDIN DO CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6", "output": "38249999"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN551107", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN551144", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN551135", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN551134", "output": "35051010"}, {"text_input": "What is the hs code for CATECHINS (TEA EXTRACT) SUNPHENON 90LB (BHN BAKU KOSMETIK) COA 208271", "output": "21012020"}, {"text_input": "What is the hs code for CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) COA 307041", "output": "21012020"}, {"text_input": "What is the hs code for EXTRAPONE (R) SEA EXTRACTS N (BHN BAKU KOSMETIK) COA 10300041", "output": "13021950"}, {"text_input": "What is the hs code for EXTRAPONE (R) GINSENG (BHN BAKU KOSMETIK) COA 10300053", "output": "13021950"}, {"text_input": "What is the hs code for PHYTOCONCENTROLE (R) CAMOMILE (BHN BAKU KOSMETIK) COA 10300054", "output": "13021950"}, {"text_input": "What is the hs code for OPADRY (R) TF TIO2 FREE MOISTURE BARRIER FILM..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for PARACETAMOL USP43 (BHN BAKU OBAT) COA 2352884,2352930,2352940", "output": "29242930"}, {"text_input": "What is the hs code for METRONIDAZOLE USP (BHN BAKU OBAT) COA 0182312135,0182312139,0812312146 S/D 0812312148,01823121", "output": "29332900"}, {"text_input": "What is the hs code for BOSWELLIA SERRATA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 23T0081800", "output": "13021950"}, {"text_input": "What is the hs code for GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 23T0078700", "output": "13021950"}, {"text_input": "What is the hs code for STERNFINE 100 N (BHN BAKU MAKANAN) COA N513Z21197", "output": "29232011"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM (BHN BAKU OBAT) COA M114346", "output": "29339990"}, {"text_input": "What is the hs code for LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LG051123", "output": "39123900"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2335015", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOBACILLI MRS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3300589", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3088838,...", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LEPTOSPIRA ENRICHMENT 6X100ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3137940", "output": "38210090"}, {"text_input": "What is the hs code for HU NAIVE/MEM T CELL PANEL 50TST (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3319344", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3194539,..", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS GRP B FTR 1/4/5/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3159721", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE AGAR 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME) BATCH 2305239", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2293166,3096333,..", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2172755,2271424,", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DIFCO AGAR 454G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3242810", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3096321,3212779", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SACCHAROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2208259", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3150804", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3191345,3234562", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2208223", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2236789", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3114643", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3158193", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1172869", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3293058", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGKAN MIKRO ORGANISME)BATCH 3221348", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TODD HEWITT BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2256043", "output": "38210090"}, {"text_input": "What is the hs code for CULTURESWAB STERILE SINGLE SWAB (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2307836,2309035", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2047633", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MYP AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2276880", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE OXFORD MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2095234", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT BROTH 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2053778", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1264672", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3277679", "output": "38210090"}, {"text_input": "What is the hs code for PAIL LB BROTH MILLER LURIA B 2 KG (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2299316", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE YEAST EXT GLUCOSE CHLOR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3158193", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER OXIDASE (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH B01F230M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3137222", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 3168376", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GELATINE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2343200", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SOLUBLE STARCH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3150804", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3228048", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3221374", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3206413", "output": "38210090"}, {"text_input": "What is the hs code for PAIL DIFCO AGAR 10KG(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3262090", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3168382", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PPLO BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3277679", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3150802", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3293443", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3114496", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SALICIN 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 3114297", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS MSRV 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 3107304", "output": "38210090"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20231225", "output": "17029019"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000215653", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000215653,0000216011,0000216232", "output": "29362900"}, {"text_input": "What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT22070226", "output": "29362100"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000216232", "output": "29362900"}, {"text_input": "What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02211813", "output": "29362400"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000216232", "output": "29362900"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU KOSMETIK) COA UT23100066", "output": "29362800"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000216232", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02207101", "output": "29362900"}, {"text_input": "What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT22070226", "output": "29362100"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02207101", "output": "29362900"}, {"text_input": "What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) CAS 1119-97-7", "output": "38249999"}, {"text_input": "What is the hs code for HPA82 PURE SENSITIVE (BHN BAKU KOSMETIK) COA 3524944", "output": "33029000"}, {"text_input": "What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 232422,240154", "output": "13021990"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE (BHN BAKU OBAT) COA 00060124 S/D 00130124", "output": "29359000"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 00150124, 00160124", "output": "29359000"}, {"text_input": "What is the hs code for ESOMEPRAZOLE SODIUM STERILE (BHN BAKU OBAT) COA SI/EPZ/00201223", "output": "29333990"}, {"text_input": "What is the hs code for MOMETASONE FUROATE MICRONIZED (BHN BAKU OBAT) COA NC2023", "output": "29372200"}, {"text_input": "What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA MLAH0491223", "output": "29341000"}, {"text_input": "What is the hs code for TRAMADOL HCL EP/JP (BHN BAKU OBAT) COA T7396,V7457", "output": "29225090"}, {"text_input": "What is the hs code for BISOPROLOL FUMARATE USP (BHN BAKU OBAT) COA LT-OBFA/005/23-24", "output": "29221990"}, {"text_input": "What is the hs code for ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2311221", "output": "32030010"}, {"text_input": "What is the hs code for OPACODE (R) MONOGRAMMING INK S-1-180000 WHITE (BHN BAKU PEWARNA TABLET) COA WP876966", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C YELLOW #6/SUNSET... (BHN BAKU PEWARNA TABLET) COA WP868324:BC3385", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5406 FD&C RED #40/ALLURA R... (BHN BAKU PEWARNA TABLET) COA WP866896:BC2990", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5396 ERYTHROSINE ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP860981:1", "output": "32151990"}, {"text_input": "What is the hs code for STARTAB (R) DIRECTLY COMPRESSIBLE STARCH 4001 (BHN BAKU PEWARNA TABLET) COA WP873593", "output": "35051010"}, {"text_input": "What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) COA 312313", "output": "39100020"}, {"text_input": "What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4", "output": "38249999"}, {"text_input": "What is the hs code for KF-7312K (16KG) (BHN BAKU KOSMETIK) CAS 562705-01-5", "output": "38249999"}, {"text_input": "What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6", "output": "38249999"}, {"text_input": "What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) COA 312311", "output": "39100020"}, {"text_input": "What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4", "output": "38249999"}, {"text_input": "What is the hs code for KSG-210 (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9", "output": "38249999"}, {"text_input": "What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6", "output": "38249999"}, {"text_input": "What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9", "output": "38249999"}, {"text_input": "What is the hs code for CETIRIZINE HYDROCHLORIDE BP (BHN BAKU OBAT) COA 23026CZ6RII", "output": "29335990"}, {"text_input": "What is the hs code for RAJOL WP80/LOREAL LIGHT LIQUID PARAFFIN-BP/LIGHT... (BHN BAKU KOSMETIK) COA 1000240001", "output": "27101990"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS 30-100MESH BP/USP/FCC/E330 (BHN BAKU SUPLEMEN) COA 6AX2312043", "output": "29181400"}, {"text_input": "What is the hs code for CALCIUM CARBONATE VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 122302553", "output": "28365010"}, {"text_input": "What is the hs code for SORBITOL SORBITAN SOLUTION NF SORBITOL SPECIAL(R) MDF 85 (BHN BAKU OBAT) COA 122302891", "output": "29054400"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 20 PREMIUM.. (BHN BAKU PEWARNA TABLET) COA 2534283157", "output": "39123900"}, {"text_input": "What is the hs code for ETHOCEL STANDARD 20 PREMIUM.. (BHN BAKU PEWARNA TABLET) COA 2534283153", "output": "39123900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT23070049,UT23070050", "output": "29362100"}, {"text_input": "What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT23070229", "output": "29362100"}, {"text_input": "What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT23050007", "output": "29362500"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02308791", "output": "29362700"}, {"text_input": "What is the hs code for BETATAB 20% S (BHN BAKU SUPPLEMEN) COA UT23050002", "output": "32041800"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5% CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT23090028", "output": "32030010"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE, TYPE 100 (BHN BAKU SUPPLEMEN) COA UT23070067", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT23090067", "output": "29362100"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20240103", "output": "17029019"}, {"text_input": "What is the hs code for FLUNARIZINE DIHYDROCHLORIDE BP/EP ( BAHAN BAKU OBAT ) COA FLU/11231020", "output": "29335990"}, {"text_input": "What is the hs code for LORATADINE USP (BHN BAKU OBAT) COA BLRD/2308038", "output": "29333990"}, {"text_input": "What is the hs code for LIPOID S 20 (BHN BAKU SUPPLEMEN) COA 572000-2220141", "output": "29232011"}, {"text_input": "What is the hs code for ECCO MILK PROTEIN CRISPS 90 (BHN BAKU MAKANAN) COA 534231", "output": "35040000"}, {"text_input": "What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) CAS 1119-97-7", "output": "38249999"}, {"text_input": "What is the hs code for THEOPHYLLINE ANHYDROUS (BHN BAKU OBAT) COA 23241, 23244 S/D 23246", "output": "29395900"}, {"text_input": "What is the hs code for CAFFEINE (BHN BAKU OBAT) COA 23091737, 23091748, 23091753, 23091757, 23091758, 23091771", "output": "29393000"}, {"text_input": "What is the hs code for ACETAMINOPHEN (PARACETAMOL) (BHN BAKU OBAT) COA 202303022A,202312114A,202312115A", "output": "29242930"}, {"text_input": "What is the hs code for MOXIFLOXACIN HCL USP (BHN BAKU OBAT) COA MOX/23120002", "output": "29334990"}, {"text_input": "What is the hs code for NYSTATIN POWDER ROW GRADE (BHN BAKU OBAT) COA C114777", "output": "29419000"}, {"text_input": "What is the hs code for LIFE'SDHA(TM) S35-O300 (BHN BAKU SUPPLEMEN) COA VY00519605", "output": "29362500"}, {"text_input": "What is the hs code for REGENIGHT TM (BHN BAKU KOSMETIK) COA 230309", "output": "38231990"}, {"text_input": "What is the hs code for SCB MACADAMIA OIL (BHN BAKU KOSMETIK) COA 230409", "output": "15159011"}, {"text_input": "What is the hs code for SKINECTURA TM (BHN BAKU KOSMETIK) COA 231203", "output": "13021990"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 231106", "output": "13021990"}, {"text_input": "What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) CAS 233683-84-6", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING (BHN BAKU PEWARNA TABLET)CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011..(BHN BAKU PEWARNA TABLET)CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G650035..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) KB LOW VISCOSITY FILM COATING SYSTEM..(BHN BAKU PEWARNA TABLET)CAS 151-21-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 21K58794..(BHN BAKU PEWARNA TABLET)CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G60929..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 02F52182..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G86674..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for MACKAM C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 14487-1", "output": "34024990"}, {"text_input": "What is the hs code for MACKAM C2M MW 220KG DRUM (BHN BAKU KOSMETIK) COA 14487-1", "output": "34024990"}, {"text_input": "What is the hs code for AMPHISOL K (BHN BAKU KOSMETIK) COA VE00847148,VE00847149", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL ZX (BHN BAKU KOSMETIK) COA 220512022", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0523060021", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323021405,0323021406", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS4871023,HS4881023", "output": "29420000"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23050162", "output": "29362800"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230510", "output": "29362500"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230510.", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI23040013", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT23070179", "output": "29362900"}, {"text_input": "What is the hs code for PREMIX VMP JELLY (BHN BAKU MAKANAN) COA XW92312018", "output": "21069059"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12306007", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000214336", "output": "29362900"}, {"text_input": "What is the hs code for ALUMINUM HYDROXIDE GEL USP BARCROFT TM VISCO-9 (BHN BAKU SUPPLEMEN) COA 102302046", "output": "28183000"}, {"text_input": "What is the hs code for V2G (BHN BAKU KOSMETIK) COA MCVG231125,MCVG231201,MCVG231208", "output": "29362700"}, {"text_input": "What is the hs code for DOCUSATE SODIUM (BAHAN BAKU OBAT) COA SD2123163", "output": "29171900"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM REGULAR GRADE (BHN BAKU OBAT) COA 23081402,23101696,23101697,23111737", "output": "29331900"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB23070730 S/D WB23070732", "output": "29362100"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20230902", "output": "29362800"}, {"text_input": "What is the hs code for VC SODIUM ASCORBATE REGULAR (BHN BAKU MAKANAN) COA HPN2305093 S/D HPN2305095", "output": "29362700"}, {"text_input": "What is the hs code for DEXTROSE ANHYDROUS (BHN BAKU PAKAN HEWAN) COA XW202401001", "output": "17023010"}, {"text_input": "What is the hs code for SUGLETS (R) SUGAR SPHERES PF006 500/600 (30/35 MESH)... (BHN BAKU PEWARNA TABLET) COA ST519819", "output": "32151990"}, {"text_input": "What is the hs code for NUTRALIPIDS TYPE HY (BHN BAKU KOSMETIK) COA 3506300139", "output": "15179090"}, {"text_input": "What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2311922379", "output": "29362600"}, {"text_input": "What is the hs code for FLOWER ACIDS (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for SUNFIBER AG (BHN BAKU MAKANAN) COA 311241", "output": "13021950"}, {"text_input": "What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2023111002", "output": "21012020"}, {"text_input": "What is the hs code for NAI-WHITE A (BHN BAKU KOSMETIK) COA 2310F02103", "output": "32061110"}, {"text_input": "What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ30617016", "output": "29420000"}, {"text_input": "What is the hs code for VITAMIN B12 CRYST FOOD GRADE (BHN BAKU KOSMETIK) COA 012304002", "output": "29362600"}, {"text_input": "What is the hs code for PARACETAMOL USP43 (BHN BAKU OBAT) COA 235982,2352997,2353000", "output": "29242930"}, {"text_input": "What is the hs code for 4-HYDROXYACETOPHENONE (BHN BAKU KOSMETIK) COA 202312029", "output": "29145000"}, {"text_input": "What is the hs code for SPECWHITE VCE (BHN BAKU KOSMETIK) COA 20230704", "output": "29362700"}, {"text_input": "What is the hs code for MOPD (BHN BAKU KOSMETIK) COA 231115001", "output": "29242990"}, {"text_input": "What is the hs code for MANNITOL USP/EP MANNOGEM(R) EZ SPRAY DRIED (BHN BAKU OBAT) COA 122303426", "output": "29054300"}, {"text_input": "What is the hs code for PHARMABURST (R) C1 (BHN BAKU OBAT) COA 122302947", "output": "21069099"}, {"text_input": "What is the hs code for FRUCTILIANCE (BHN BAKU KOSMETIK) COA PO00041802,PO00043575", "output": "13021990"}, {"text_input": "What is the hs code for L-CARNITINE (EP GRADE)(BHN BAKU KOSMETIK) COA 10100120230248", "output": "29239000"}, {"text_input": "What is the hs code for METHOCEL E15 PREMIUM LV HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2444226864", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464207168", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA D180M1P002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464207161", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464207176", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA D180M23002", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464207167", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464207162", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2444374841", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464207178", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E4M PREMIUM LV HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464299832", "output": "39123900"}, {"text_input": "What is the hs code for KF-54HV (18KG) (BHN BAKU KOSMETIK) COA 401091", "output": "39100020"}, {"text_input": "What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) COA 312314", "output": "39100020"}, {"text_input": "What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9", "output": "38249999"}, {"text_input": "What is the hs code for KSG-210 (16KG) (BHN BAKU KOSMETIK) COA 311674", "output": "38249999"}, {"text_input": "What is the hs code for KSP-101 (15KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6", "output": "38249999"}, {"text_input": "What is the hs code for KSP-300 (1KG) (BHN BAKU KOSMETIK) CAS 9002-92-0", "output": "38249999"}, {"text_input": "What is the hs code for KF-96A-6CS (16KG) (BHN BAKU KOSMETIK) COA 312340", "output": "39100020"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE USP (BAHAN BAKU OBAT) COA LCBA0043 S/D LCBA0046", "output": "29420000"}, {"text_input": "What is the hs code for CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA ADDA0003", "output": "39123100"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE BP (BAHAN BAKU OBAT) COA MCAA0056,MCAA0057", "output": "29420000"}, {"text_input": "What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA 2302420103", "output": "29419000"}, {"text_input": "What is the hs code for CARBAZOCHROME SODIUM SULFONATE ORAL G (BHN BAKU OBAT)COA AC30617/30719", "output": "29339990"}, {"text_input": "What is the hs code for BETAMETHASONE VALERATE USP 43 (BHN BAKU OBAT) COA APL/BV/01009/A-24", "output": "29372200"}, {"text_input": "What is the hs code for DESONIDE MICRONIZED (BHN BAKU OBAT) COA ND1569M", "output": "29372900"}, {"text_input": "What is the hs code for MATCHA (BHN BAKU KOSMETIK) CAS 84650-60-2", "output": "38249999"}, {"text_input": "What is the hs code for PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3512810", "output": "33029000"}, {"text_input": "What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 2401003T", "output": "39100020"}, {"text_input": "What is the hs code for VEGETOL GRAPEFRUIT GR403 HYDRO (BHN BAKU KOSMETIK) COA 196037", "output": "28399000"}, {"text_input": "What is the hs code for LABRASOL BF (BHN BAKU SUPPLEMEN) COA 198718", "output": "28399000"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40\u00b0 BRIX) CSB (BHN BAKU KOSMETIK) COA 01/23GL4", "output": "28399000"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40\u00b0 BRIX) ECH (BHN BAKU KOSMETIK) COA 01/23GL4, SAMPLE NO COMMERCIAL VALUE", "output": "28399000"}, {"text_input": "What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU MAKANAN) COA UT23080012", "output": "29362500"}, {"text_input": "What is the hs code for B-CAROTENE 30% FS (BHN BAKU MAKANAN) COA UE02307069", "output": "32041800"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23040136,UT23070233,UT23080261", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT23100075,UT23100076", "output": "29362800"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT23070187", "output": "29362400"}, {"text_input": "What is the hs code for B-CAROTENE 30% FS (BHN BAKU MAKANAN) COA UE02307069,UE02307070", "output": "32041800"}, {"text_input": "What is the hs code for PIGMENT BLEND (R) PB-21158 GREEN.. (BHN BAKU PEWARNA TABLET) COA GA747541", "output": "32151990"}, {"text_input": "What is the hs code for PIGMENT BLEND (R) PB-21158 GREEN.. (BHN BAKU PEWARNA TABLET) COA GA747541", "output": "32151990"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F19250...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50555", "output": "29061100"}, {"text_input": "What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA 8MT2312144", "output": "30032000"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP JP (BHN BAKU OBAT) COA MTPFP23013", "output": "29372900"}, {"text_input": "What is the hs code for SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202401-016", "output": "35040000"}, {"text_input": "What is the hs code for SELOHVITA C (BHN BAKU SUPPLEMEN) COA 3138622", "output": "28429010"}, {"text_input": "What is the hs code for ZINC SULFATE 1-HYDRATE, POWDER,USP43 (BHN BAKU OBAT) COA 3117412", "output": "28332920"}, {"text_input": "What is the hs code for ZINC SULFATE 1-HYDRATE, POWDER,USP43 (BHN BAKU OBAT) COA 3138160", "output": "28332920"}, {"text_input": "What is the hs code for FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU OBAT) COA 3137011", "output": "28332920"}, {"text_input": "What is the hs code for SODIUM FEREDETATE, POWDER, BP2023 (BHN BAKU OBAT) COA 3130632", "output": "29224900"}, {"text_input": "What is the hs code for POTASSIUM L-ASPARTATE 0,5 HYDRATE (BHN BAKU OBAT) COA 3138689", "output": "29224900"}, {"text_input": "What is the hs code for FERROUS GLUCONATE, POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3139454", "output": "29181600"}, {"text_input": "What is the hs code for FERROUS GLUCONATE, POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3139073", "output": "29181600"}, {"text_input": "What is the hs code for FERROUS FUMARATE, FINE POWDER (BHN BAKU MAKANAN) COA 3133483", "output": "29171900"}, {"text_input": "What is the hs code for SELOHVITA C (BHN BAKU SUPPLEMEN) COA 3139833", "output": "28429010"}, {"text_input": "What is the hs code for TRICALCIUM CITRATE 4-HYDRATE POWDER (BHN BAKU OBAT) COA 3123568", "output": "29181590"}, {"text_input": "What is the hs code for COPPER SULFATE, POWDER, PH.EUR.11.ED. (BHN BAKU SUPLEMEN) COA 3138442", "output": "28332500"}, {"text_input": "What is the hs code for COPPER SULFATE, POWDER, PH.EUR.11.ED. (BHN BAKU SUPLEMEN) COA 3138445", "output": "28332500"}, {"text_input": "What is the hs code for MAGNESIUM SULFATE DRIED, POWDER... (BHN BAKU OBAT) COA 3130180", "output": "28332100"}, {"text_input": "What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 202342", "output": "29332900"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229.. (BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55041...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA GA747651", "output": "39061090"}, {"text_input": "What is the hs code for B-CAROTENE 30% FS (BHN BAKU MAKANAN) COA UE02309072,UE02309073", "output": "32041800"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for CLAIR BLANCHE-III (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for DOKUDAMI LIQUID B (BHN BAKU KOSMETIK) COA 231637", "output": "13021990"}, {"text_input": "What is the hs code for HAPPICLOV (BHN BAKU KOSMETIK) COA 231266", "output": "13021990"}, {"text_input": "What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 232477", "output": "29329900"}, {"text_input": "What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 232091", "output": "13021990"}, {"text_input": "What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 231090", "output": "13021990"}, {"text_input": "What is the hs code for YUZU CERAMIDE B (BHN BAKU KOSMETIK) COA 231178", "output": "13021990"}, {"text_input": "What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 240154", "output": "13021990"}, {"text_input": "What is the hs code for CLAIR BLANCHE-III (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 240029", "output": "13021990"}, {"text_input": "What is the hs code for VEGANPROTEOGLYCAN (BHN BAKU KOSMETIK) COA 231763", "output": "13021990"}, {"text_input": "What is the hs code for 1,3-BUTYLENE GLYCOL, COSMETIC QUALITY(BHN BAKU KOSMETIK) COA P0623927BC", "output": "29053200"}, {"text_input": "What is the hs code for EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300034", "output": "13021950"}, {"text_input": "What is the hs code for CAFFEINE BP/EP/USP/CEP(BHN BAKU OBAT) COA 23081515,23081516,23081544,23081674,23081676,23081683", "output": "29393000"}, {"text_input": "What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512335", "output": "47069200"}, {"text_input": "What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512342,G02512345", "output": "47069200"}, {"text_input": "What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512335", "output": "47069200"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA ROA243234,ROA320237,ROA321234,...", "output": "28363000"}, {"text_input": "What is the hs code for ABYSSINE TM PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829012074P", "output": "29224900"}, {"text_input": "What is the hs code for GREYVERSE TM (BHN BAKU KOSMETIK) COA 833012061P", "output": "29224900"}, {"text_input": "What is the hs code for HELIOGEL TM (BHN BAKU KOSMETIK) CAS 25549-84-2", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) CAS 37350-42-8", "output": "38249999"}, {"text_input": "What is the hs code for PROGELINE TM (BHN BAKU KOSMETIK) COA 820052242P", "output": "29224900"}, {"text_input": "What is the hs code for DRIED ALUMINUM HYDROXIDE, SORBITOL BLEND..(BHN BAKU OBAT) COA 102360003", "output": "28183000"}, {"text_input": "What is the hs code for COENZYM Q10 (FOR COSMETIC USE, FERMENTATIVE) (BHN BAKU KOSMETIK) COA 51-2208176", "output": "29146200"}, {"text_input": "What is the hs code for MIRASIL DM350 A2 (BHN BAKU KOSMETIK) COA 2352WKWB15,2352WKWC15", "output": "39100090"}, {"text_input": "What is the hs code for AMITOSE R (BHN BAKU KOSMETIK) COA LLH", "output": "13021990"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS SILK-1000 (BHN BAKU KOSMETIK) CAS 96690-41-4", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0", "output": "38249999"}, {"text_input": "What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 23100619,23100626,23100670", "output": "29395900"}, {"text_input": "What is the hs code for STARTAB (R) DIRECTLY COMPRESSIBLE STARCH 4001.. (BHN BAKU PEWARNA TABLET) COA WP874103", "output": "35051010"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C YELLOW #6/SUNSET...(BHN BAKU PEWARNA TABLET) COA WP862651:BC0388", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5177 FD&C YELLOW #5/TARTRAZ...(BHN BAKU PEWARNA TABLET) COA WP865817:BC2551", "output": "32151990"}, {"text_input": "What is the hs code for MANNITOL USP/EP MANNOGEM\u00ae EZ SPRAY DRIED (BHN BAKU OBAT) COA 122303427", "output": "29054300"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-100563,112383", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) COA BHA-020883", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1240123", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) COA GTB-060693", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND NEWAPLE (BHN BAKU KOSMETIK) COA NWPB-022093", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND OLIGO-HA (BHN BAKU KOSMETIK) COA OHA-022214", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N94107", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA NB6112", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) CAS 128446-35-5", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) COA APB-R-011373", "output": "13021990"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-020493", "output": "13021950"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) CAS 233683-84-6", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND AMINO ACID COMPLEX (B) (BHN BAKU KOSMETIK) COA AMIBD-082693", "output": "29224900"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-072123", "output": "13021950"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-072123", "output": "13021950"}, {"text_input": "What is the hs code for ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2311221", "output": "32030010"}, {"text_input": "What is the hs code for IMERCARE 230P SCRUB OR (BHN BAKU KOSMETIK) COA 25-10-23", "output": "38029090"}, {"text_input": "What is the hs code for SILVER CITRATE SOLUTION 2500PPM (BHN BAKU KOSMETIK) COA CPS23-0844", "output": "28432900"}, {"text_input": "What is the hs code for LOTUS FROM VIETNAM ORGANIC OILY EXTRACT (BHN BAKU KOSMETIK) CAS 73398-61-5", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6", "output": "38249999"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230803", "output": "13021990"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for INCA INCHI ORGANIC LIPACTIVE WO (BHN BAKU KOSMETIK) CAS 68956-68-3", "output": "38249999"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for HONEY HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) COA MIE230802", "output": "13021990"}, {"text_input": "What is the hs code for BETAHISTINE MESYLATE EP (BHN BAKU OBAT) COA EDBHM23007", "output": "29333990"}, {"text_input": "What is the hs code for PRO-LIPO TM NEO (BHN BAKU KOSMETIK) CAS 504-63-2", "output": "38249999"}, {"text_input": "What is the hs code for DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834012184P", "output": "29224900"}, {"text_input": "What is the hs code for CANADIAN WILLOWHERB TM 5% CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for LANABLUE TM PARABEN FREE (BHN BAKU KOSMETIK) CAS 50-70-4", "output": "38249999"}, {"text_input": "What is the hs code for WASTAR TM LAVENDER (BHN BAKU KOSMETIK) CAS 90063-37-9", "output": "38249999"}, {"text_input": "What is the hs code for CELLOSIZE TM TEXTURE F4M HYDROXYPROPYL... (BHN BAKU KOSMETIK) COA F410LB8D31", "output": "39123900"}, {"text_input": "What is the hs code for MIRANOL ULTRA C-32 MB 200KG PLASTIC DRUM (BHN BAKU KOSMETIK) COA BP401055MB", "output": "34024990"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP24014338,XP24014339", "output": "29211900"}, {"text_input": "What is the hs code for SERASENSE SF 5 (BAHAN BAKU SUPLEMEN) COA SA40122077", "output": "39100090"}, {"text_input": "What is the hs code for GUAIFENESIN USP (B. BAKU OBAT) COA GGE-2308079 S/D GGE- 2308081", "output": "29094900"}, {"text_input": "What is the hs code for MIAMI SCG(S) (BHN BAKU KOSMETIK) COA 240112B5", "output": "34023990"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT23090207", "output": "29362400"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ31012229", "output": "29362200"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT23090207", "output": "29362400"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101855023", "output": "17021100"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101855023", "output": "17021100"}, {"text_input": "What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWDER... (B.BAKU KOSMETIK) CAS 65497-29-2", "output": "38249999"}, {"text_input": "What is the hs code for SODIUM CARBONATE IPH (BHN BAKU SUPPLEMEN) COA DOC3392321,DOC3112321", "output": "28363000"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP12306007", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL (R) SHIELD (BHN BAKU KOSMETIK) COA 0823010640", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0423040118", "output": "29420000"}, {"text_input": "What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0046906", "output": "29362500"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000216273", "output": "29362900"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ30213041", "output": "29362200"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU MAKANAN) COA UE02310380", "output": "29362800"}, {"text_input": "What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW92312069,XW92312070", "output": "21069059"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040127", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0523060065,0523060066,0523060079", "output": "29420000"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12306007,OP12306032", "output": "29362900"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02306076,TL02306077", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT23050013", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT23060177", "output": "29362900"}, {"text_input": "What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT23040228,UT23040229", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU MAKANAN) COA UE02309071", "output": "32041800"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE, TYPE 100 (BHN BAKU SUPPLEMEN) COA UT23110068", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 30PCT FS (BHN BAKU SUPPLEMEN) COA UE02309071", "output": "32041800"}, {"text_input": "What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02308947,TL02308958", "output": "29362700"}, {"text_input": "What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA ND2850M", "output": "29372200"}, {"text_input": "What is the hs code for OPACODE S-1-8114 BLACK (BHN BAKU PEWARNA TABLET) COA TKL71056, SAMPLE NO COMMERCIAL VALUE", "output": "32151990"}, {"text_input": "What is the hs code for SYN(R)-AKE (BHN BAKU KOSMETIK) COA UE02303003", "output": "29420000"}, {"text_input": "What is the hs code for COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPPLEMEN) COA TL02311372", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE, TYPE 100 (BHN BAKU SUPPLEMEN) COA UT23110068", "output": "29362100"}, {"text_input": "What is the hs code for BILBERRY(V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPPLEMEN) COA 23S0292500", "output": "13021990"}, {"text_input": "What is the hs code for BILBERRY(V.MYRTILLUS)ET.EX.36PCT (BHN BAKU SUPPLEMEN) COA 23S0292500", "output": "13021990"}, {"text_input": "What is the hs code for VACCINIUM MYRTILLUS DRY EX. (BHN BAKU SUPLEMEN) COA 23S0078800", "output": "13021990"}, {"text_input": "What is the hs code for SERENOA REPENS PURIFIED EXT (BHN BAKU SUPLEMEN) COA 23S0098600", "output": "13021950"}, {"text_input": "What is the hs code for CENTELLA ASIATICA/PHOSPHOLIP (BHN BAKU SUPLEMEN) COA 22S0097300", "output": "13021950"}, {"text_input": "What is the hs code for P. GINSENG DRY EXTRACT 10PCT COL (BHN BAKU SUPPLEMEN) COA 23S0178700", "output": "13021990"}, {"text_input": "What is the hs code for CURCUMINOIDS PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 23S0164408", "output": "13021950"}, {"text_input": "What is the hs code for VACC.MYRT./PINUS PIN. DRY EX (BHN BAKU SUPLEMEN) COA 23S0129300", "output": "13021990"}, {"text_input": "What is the hs code for SILYMARIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 23B0109100", "output": "13021950"}, {"text_input": "What is the hs code for SILYBIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 23B0106200", "output": "13021950"}, {"text_input": "What is the hs code for SILYBIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 23B0106000", "output": "13021950"}, {"text_input": "What is the hs code for STARTAB (R) DIRECTLY COMPRESSIBLE STARCH 4001.. (BHN BAKU PEWARNA TABLET) COA WP874103", "output": "35051010"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5396 ERYTHROSINE ALUMINUM LAKE...(BHN BAKU PEWARNA TABLET) COA WP860981:1", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5177 FD&C YELLOW #5/TARTRAZ...(BHN BAKU PEWARNA TABLET) COA WP865823:BC3941", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT (R) 6010 D&C YELLOW #10 ALUMINUM ...(BHN BAKU PEWARNA TABLET) COA WP870802:BC5629", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5627 FD&C BLUE #2/INDIGO CA...(BHN BAKU PEWARNA TABLET) COA WP869522:BC4229", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5396 ERYTHROSINE ALUMINUM LAKE...(BHN BAKU PEWARNA TABLET) COA WP860981:1", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C YELLOW #6/SUNSET..(BHN BAKU PEWARNA TABLET) COA WP868324:BC3385", "output": "32151990"}, {"text_input": "What is the hs code for TEFOSE 63 BF (BHN BAKU SUPPLEMEN) COA 198235", "output": "28399000"}, {"text_input": "What is the hs code for LABRAFIL M 1944 CS BF (BHN BAKU SUPPLEMEN) COA 198640", "output": "28399000"}, {"text_input": "What is the hs code for TRANSCUTOL P BF (BHN BAKU SUPPLEMEN) COA 198205", "output": "28399000"}, {"text_input": "What is the hs code for COMPRITOL 888 ATO (BHN BAKU SUPPLEMEN) COA 198506", "output": "28399000"}, {"text_input": "What is the hs code for GELUCIRE 44/14 BF (BHN BAKU SUPPLEMEN) COA 196690", "output": "28399000"}, {"text_input": "What is the hs code for GELOIL SC BF (BHN BAKU SUPPLEMEN) COA 197910", "output": "28399000"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 01/23GL4", "output": "28399000"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40 BRIX) (BHN BAKU KOSMETIK) COA 01/23GL4, SAMPLE NO COMMERCIAL VALUE", "output": "28399000"}, {"text_input": "What is the hs code for JAGUAR HP 105 SGI 25KG CARDBOARD CARTON (BHN BAKU KOSMETIK) CAS 39421-75-5", "output": "38249999"}, {"text_input": "What is the hs code for PARSOL ZX (BHN BAKU KOSMETIK) COA 230210082", "output": "29420000"}, {"text_input": "What is the hs code for PHARMACEUTICAL CASTOR OIL E.P (BHN BAKU KOSMETIK) COA 0000049092,0000049094", "output": "15152919"}, {"text_input": "What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) CAS 122-99-6", "output": "38249999"}, {"text_input": "What is the hs code for MECOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/1223066", "output": "29362600"}, {"text_input": "What is the hs code for LIPOID S 20 (BHN BAKU SUPPLEMEN) COA 572000-2220141", "output": "29232011"}, {"text_input": "What is the hs code for GINKGO BILOBA PHOSPHOLIPID (BHN BAKU SUPLEMEN) COA 23T0078700", "output": "13021950"}, {"text_input": "What is the hs code for COOLACT 10 (BHN BAKU KOSMETIK) COA T009032", "output": "29094900"}, {"text_input": "What is the hs code for VIAL ISOVITALEX ENRICHMENT 10ML 5 EA(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3284473", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3319761", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3319761", "output": "38210090"}, {"text_input": "What is the hs code for VIAL E COIL H ANTISERUM H7 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3068676", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTISERUM POLY A LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2300548", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SHIGELLA ANTIS POLY A1 LYOPHILIZED(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 2335899", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2335855", "output": "38210090"}, {"text_input": "What is the hs code for VIAL E COLI O ANTISERUM O157 SEROL TEST(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3166212", "output": "38210090"}, {"text_input": "What is the hs code for STAIN BUFFER FBS 500ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3289239", "output": "38210090"}, {"text_input": "What is the hs code for HU MESENCHYMAL SC ANALYSIS KIT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3354146", "output": "38210090"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3257251", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3248119", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3227268,3338234", "output": "38210090"}, {"text_input": "What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3200363,3200377,.", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3206413", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3272460", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3079261", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 3303852", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MUELLER HINTON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3107294", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3200342", "output": "38210090"}, {"text_input": "What is the hs code for INDICATOR STRIPS GASPAK DRY ANAEROBIC (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 3275384", "output": "38210090"}, {"text_input": "What is the hs code for INDICATOR GASPAK CO2 (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B03F081M", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ CO2 CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3236876", "output": "38210090"}, {"text_input": "What is the hs code for POUCH GASPAK EZ ANAEROBE SYSTEM (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3236903", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3174570", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VIOLET RED BILE GLUCOSE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2313348", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3234562,3277645", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 3303852", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PLATE COUNT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 2221886", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2229544", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2143794", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2152796", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA TUK PENGEMBANGAN MIKRO ORGANISME), BATCH 3114494", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BACTO TSB CASEIN MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2256092", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA PENGEMBANGAN MIKRO ORGANISME)BATCH 2034966", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LAURYL TRYPTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3228048", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3096242,321", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3137222", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2158081", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3200342", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEMOGLOBIN FREEZE DRIED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3173785", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH. 2104098", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2271480", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3272841", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE WL DIFFERENTIAL MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2123844", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3272460", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1285556", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3277644", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PPLO AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3234601", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3272460", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M ENDO BROTH MF 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3297811", "output": "38210090"}, {"text_input": "What is the hs code for PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) CAS 1332-09-8", "output": "38249999"}, {"text_input": "What is the hs code for PIOGLITAZONE HCL USP (BHN BAKU OBAT) COA P24010008", "output": "29349920"}, {"text_input": "What is the hs code for PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3512810", "output": "33029000"}, {"text_input": "What is the hs code for HPA82 PURE SENSITIVE (BHN BAKU KOSMETIK) COA 3549437", "output": "33029000"}, {"text_input": "What is the hs code for EUXYL K 100 CAN 10 KG (BHN BAKU KOSMETIK) CAS 55965-84-9", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 712 CAN 10 KG (BHN BAKU KOSMETIK) CAS 532-32-1", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 903 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 940 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) CAS 122-99-6", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6", "output": "38249999"}, {"text_input": "What is the hs code for SENSIDIN PURE CAN 10 KG (BHN BAKU KOSMETIK) CAS 70775-75-6", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 CAN 10 KG (BHN BAKU KOSMETIK) CAS 122-99-6", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9", "output": "38249999"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE USP (BAHAN BAKU OBAT) COA LCBA0048,LCBA00489,MCBA0053,MCBA0055,MCBA0056", "output": "29420000"}, {"text_input": "What is the hs code for 1,3-BUTYLENE GLYCOL (NATUROBG) (BHN BAKU KOSMETIK) COA BGC/L08/24", "output": "29053200"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B191023", "output": "39123900"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B191023", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LG0521123", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB191023", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB191023", "output": "39123900"}, {"text_input": "What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) CAS 7631-86-9", "output": "38249999"}, {"text_input": "What is the hs code for MANNITOL POWDER USP/EP-MANNO (BHN BAKU SUPPLEMEN) COA 292312308", "output": "29054300"}, {"text_input": "What is the hs code for NABUMETON USP (BHN BAKU OBAT) COA H-2011123", "output": "29145000"}, {"text_input": "What is the hs code for CLOPIDOGREL BISULFATE USP 45 FORM II (BHN BAKU OBAT) COA CLOPI/13120252", "output": "29349990"}, {"text_input": "What is the hs code for PANTOPRAZOLE SODIUM (STERILE) (BHN BAKU OBAT) COA SI/PPZ/00280124,00300124", "output": "29333990"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O18359 ..(BHN BAKU PEWARNA TABLET)COA GA746921", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM 93O63173...(BHN BAKU PEWARNA TABLET)COA GA747479", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET)COA GA747402", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET)COA GA747539", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 151-21-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET)CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620041..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6", "output": "38249999"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CEA-CO240201", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG COSMELENE (BHN BAKU KOSMETIK) COA PAG-CO230802", "output": "13021990"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) CAS 8001-25-0", "output": "38249999"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for LIGHT MAGNESIUM CARBONATE POWDER, BP 2023 (BHN BAKU MAKANAN) COA 3139411-01", "output": "28369990"}, {"text_input": "What is the hs code for PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) CAS 5743-47-5", "output": "38249999"}, {"text_input": "What is the hs code for SODIUM HYDROXIDE BEADS (CAUSTIC SODA MICROPRILLS) COA 202309140005", "output": "28151100"}, {"text_input": "What is the hs code for DEXTROMETHORPHAN HBR BP/USP (BHN BAKU OBAT) COA S-A-3211223", "output": "29334910"}, {"text_input": "What is the hs code for FERRIC PYROPHOSPHATE,24PCT - 26PCT FE POWDER,FCC13 (BHN BAKU MAKANAN) COA 3139864", "output": "28353990"}, {"text_input": "What is the hs code for FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU MAKANAN) COA 3137150", "output": "28332920"}, {"text_input": "What is the hs code for DIPOTASSIUM PHOSPHATE POWDER... (BHN BAKU MAKANAN) COA 3132294", "output": "28352400"}, {"text_input": "What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 2204524696", "output": "29372200"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 15B120040...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F15789...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-002-A", "output": "13021990"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 230210082", "output": "29420000"}, {"text_input": "What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340499 S/D B340501", "output": "29419000"}, {"text_input": "What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA MLAH0060124", "output": "29341000"}, {"text_input": "What is the hs code for DEXAMETHASONE ACETATE ANHYDROUS MICRONISED PH.EUR.USP (BHN BAKU OBAT) COA 2204524696", "output": "29372200"}, {"text_input": "What is the hs code for ASCORBIC ACID, (BHN BAKU SUPPLEMEN) COA TL02312521", "output": "29362700"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02306011", "output": "29362900"}, {"text_input": "What is the hs code for VIT. A PALM. 1.0 M + VIT. D3 100'000 (BHN BAKU MAKANAN) COA UT23110185", "output": "29362100"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02306007", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT23050015", "output": "29362900"}, {"text_input": "What is the hs code for FLORAGLO (R) LUTEIN 20PCT SAF (BHN BAKU SUPPLEMEN) COA UE02307031", "output": "32030010"}, {"text_input": "What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT24010069", "output": "29362100"}, {"text_input": "What is the hs code for SYN(R)-AKE (BHN BAKU KOSMETIK) COA UE02303004", "output": "29420000"}, {"text_input": "What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ30617015", "output": "29420000"}, {"text_input": "What is the hs code for VITAMIN B12 CRYST FOOD GRADE (BHN BAKU KOSMETIK) COA 012304002", "output": "29362600"}, {"text_input": "What is the hs code for LIFE'SGLA (TM) '10' N-6 OIL (BHN BAKU KOSMETIK) COA 3008002CN", "output": "29362500"}, {"text_input": "What is the hs code for MONOPOTASSIUM PHOSPHATE CP (BHN BAKU KOSMETIK) COA 23122001", "output": "28352400"}, {"text_input": "What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW MC YRPN19-1...(ALAT KESEHATAN)COA HL19100L0129", "output": "30061010"}, {"text_input": "What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC YRPN19-84..(ALAT KESEHATAN)COA 6D19100L0129", "output": "30061010"}, {"text_input": "What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC YRPN19-84-..(ALAT KESEHATAN)COA HR1938L0129", "output": "30061010"}, {"text_input": "What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW CC YRPN19-1...(ALAT KESEHATAN)COA HR1960L0129", "output": "30061010"}, {"text_input": "What is the hs code for STERILE POLYDIOXANONE SUTURE WITH NEEDLE RAINBOW DC YRDN-FE-...(ALAT KESEHATAN)COA DA21110N0129", "output": "30061010"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12306032", "output": "29362900"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT23050162", "output": "29362800"}, {"text_input": "What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000215556", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE FCC (BHN BAKU MAKANAN) COA 0000215556", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12306032", "output": "29362900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230602", "output": "29362500"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230602", "output": "29362500"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT23060009", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT23040011", "output": "29362600"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12306032", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT23060009", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12306032", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT23060177", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02303003", "output": "29362900"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20230503", "output": "29362800"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02308755", "output": "29362400"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ30510662,UQ30510663", "output": "29362300"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02308755", "output": "29362400"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ30510663", "output": "29362300"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU KOSMETIK) COA UT22120266,UT22120267", "output": "29362400"}, {"text_input": "What is the hs code for D-PANTHENOL 75 L (BHN BAKU KOSMETIK) COA TL02210334", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040118", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0924020001", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS4881023", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0723010092", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0523060079", "output": "29420000"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT23071282", "output": "29362100"}, {"text_input": "What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT23070229", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT23050015", "output": "29362900"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ31112266,UQ31112267", "output": "29362200"}, {"text_input": "What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT23080012", "output": "29362500"}, {"text_input": "What is the hs code for BETATAB 20PCT S (BHN BAKU SUPPLEMEN) COA UT23050002", "output": "32041800"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT23090029", "output": "32030010"}, {"text_input": "What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT23110068", "output": "29362100"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT23090207", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT23070050", "output": "29362100"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL02312500", "output": "29362700"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU MAKANAN) COA TL02306396", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU MAKANAN) COA UT23090029", "output": "29362600"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20240209", "output": "17029019"}, {"text_input": "What is the hs code for THEOPHYLLINE ANHYDROUS (BHN BAKU OBAT) COA 23246,23262 S/D 23268", "output": "29395900"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM REGULAR GRADE (BHN BAKU OBAT) COA 23101699,23101700", "output": "29331900"}, {"text_input": "What is the hs code for HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2521023", "output": "29397900"}, {"text_input": "What is the hs code for TRISODIUMCITRATE DIHYDRATE FINE GRANULAR (BHN BAKU SUPPLEMEN) COA UJ406", "output": "29181400"}, {"text_input": "What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK) COA 2402EF1811", "output": "29224900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7M IU/G (BHN BAKU KOSMETIK) COA 0423110010", "output": "29362100"}, {"text_input": "What is the hs code for DL ALPHA TOCOPHEROL (BHN BAKU KOSMETIK) COA 01231104ES", "output": "29362800"}, {"text_input": "What is the hs code for SILYBIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 23B0225800", "output": "13021950"}, {"text_input": "What is the hs code for PASSION FLOWER D.H.E 4PCT (BAHAN BAKU SUPLEMEN) COA 23B0096400", "output": "13021990"}, {"text_input": "What is the hs code for HAWTHORN DRY HYDR. EXTR. (BHN BAKU SUPLEMEN) COA 21B0148600", "output": "13021990"}, {"text_input": "What is the hs code for BUTCHERBROOM DRY HYDR EX 9-11PCT (BHN BAKU SUPLEMEN) COA 23B0036900", "output": "13021990"}, {"text_input": "What is the hs code for ECHINACEA ANG.DRY PURIF. EX. (BHN BAKU SUPPLEMEN) COA 21S0155200", "output": "13021990"}, {"text_input": "What is the hs code for VACCINIUM MYRTILLUS DRY EX. (BHN BAKU SUPLEMEN) COA 23S0078800", "output": "13021990"}, {"text_input": "What is the hs code for GREEN TEA DRY DEC.EX ./PHOSPHOL (BHN BAKU SUPLEMEN) COA 23S0183400", "output": "13021950"}, {"text_input": "What is the hs code for P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 23S0224200", "output": "13021990"}, {"text_input": "What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 23S0196500", "output": "13021990"}, {"text_input": "What is the hs code for SENSIVA PA 20 CAN 10 KG (BHN BAKU KOSMETIK) CAS 60-12-8", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 720 CAN 10 KG (BHN BAKU KOSMETIK) CAS 65-85-0", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 903 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6", "output": "38249999"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101855023", "output": "17021100"}, {"text_input": "What is the hs code for DURALAC (R) H (BHN BAKU OBAT) COA LC 014-23-805, LC 039-23-805", "output": "17021100"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 INF OIL (BHN BAKU SUPPLEMEN) COA TS00023438", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT24010051", "output": "29362100"}, {"text_input": "What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 2304441456", "output": "29372200"}, {"text_input": "What is the hs code for DEXAMETHASONE SODIUM PHOSPHATE PH EUR USP (BHN BAKU OBAT) COA 2304441456, SAMPLE NO COMMERCIAL", "output": "29372200"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS 30-100MESH BP/USP/FCC/E330 (BHN BAKU SUPLEMEN) COA 2AX2402016", "output": "29181400"}, {"text_input": "What is the hs code for OPTISHARP NAT. ZEA. 14PCT SAFF. (BHN BAKU SUPPLEMEN) COA 2309119543", "output": "32041800"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB22080267", "output": "29362800"}, {"text_input": "What is the hs code for OPAGLOS (R) TABLET CORE SEALANT PRODUCT OPAGLOS... (BHN BAKU PEWARNA TABLET) COA DT755956", "output": "32151990"}, {"text_input": "What is the hs code for OPASPRAY (R) OPAQUE COLOR CONCENTRATE FOR FILM...(BHN BAKU PEWARNA TABLET) COA DT756652", "output": "32151990"}, {"text_input": "What is the hs code for MAGNESIUM BISGLYCINATE POWDER... (BHN BAKU SUPPLEMEN) COA 3136971", "output": "29224900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464446250", "output": "39123900"}, {"text_input": "What is the hs code for KF-6017 (17KG) (BHN BAKU KOSMETIK) COA 2401009T", "output": "39100020"}, {"text_input": "What is the hs code for DIPOTASSIUM PHOSPHATE ANHYDROUS CP (BHN BAKU KOSMETIK) COA 23112801", "output": "28352400"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPPLEMEN) COA WB23060369", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN E 75 HP (BHN BAKU SUPPLEMEN) COA WB22080267", "output": "29362800"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP24014350,XP24014351", "output": "29211900"}, {"text_input": "What is the hs code for MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL240207", "output": "29094900"}, {"text_input": "What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 12-05-23, 20-04-23, 21-04-23, 26-04-23, 05-07-23", "output": "38029090"}, {"text_input": "What is the hs code for IMERCARE 230P SCRUB OR (BHN BAKU KOSMETIK) COA 24-10-23 S/D 27-10-23", "output": "38029090"}, {"text_input": "What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 29.06.2022", "output": "25070000"}, {"text_input": "What is the hs code for EFFER-SODA (R) 12 (BHN BAKU OBAT) COA 122302934", "output": "28363000"}, {"text_input": "What is the hs code for EFFER-SODA (R) 12 (BHN BAKU OBAT) COA 122302934,122302935", "output": "28363000"}, {"text_input": "What is the hs code for EFFER-SODA (R) 12 (BHN BAKU OBAT) COA 122302935,122302936,122303469", "output": "28363000"}, {"text_input": "What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92401109,XW92401110", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU MAKANAN) COA UT23060177", "output": "29362900"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT23070039", "output": "32041800"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230601", "output": "29362500"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT23050179", "output": "29362800"}, {"text_input": "What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF23041006", "output": "29420000"}, {"text_input": "What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211039", "output": "29362700"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000216741,0000216742", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL(R) HS (BHN BAKU KOSMETIK) COA HS6441223", "output": "29420000"}, {"text_input": "What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02211813,TL02302802", "output": "29362400"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23050179", "output": "29362800"}, {"text_input": "What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0924020001,0924020002", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL(R) SHIELD (BHN BAKU KOSMETIK) COA 0823010728", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0423040118", "output": "29420000"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23060229", "output": "29362800"}, {"text_input": "What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323021433,0323021434", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0523060065", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323021434,0323021435,0323021464", "output": "29420000"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23060229", "output": "29362800"}, {"text_input": "What is the hs code for ALLANTOIN (BHN BAKU KOSMETIK) COA ES2308902,ES2310918", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL(R) HS (BHN BAKU KOSMETIK) COA HS6441223", "output": "29420000"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02306077", "output": "29362400"}, {"text_input": "What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02302802", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL(R) SHIELD (BHN BAKU KOSMETIK) COA 0823010728", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0523060065", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323021464 ,0323021465", "output": "29420000"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS 30-100MESH BP/USP/FCC/E330 (BHN BAKU SUPLEMEN) COA 6AX2402020", "output": "29181400"}, {"text_input": "What is the hs code for CEFOTAXIME SODIUM STERILE USP (BHN BAKU OBAT) COA D600100", "output": "29419000"}, {"text_input": "What is the hs code for CAFFEINE BP/EP/USP/CEP(BHN BAKU OBAT) COA 23051041,23051060,23051061,23051064 S/D 23051066,....", "output": "29393000"}, {"text_input": "What is the hs code for AMPICILLIN SODIUM (STERILE) BP (BHN BAKU OBAT) COA SI/AMP/000502224", "output": "29411020"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE SODIUM SUCCINATE STERILE BUFFERED 3PCT LYOPHIZED (BHN BAKU OBAT) COA ND0221", "output": "29372900"}, {"text_input": "What is the hs code for MEG-3 DHA INF 10 FOOD OIL (BHN BAKU MAKANAN) COA TS00023068", "output": "29362500"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20240219", "output": "17029019"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP04524", "output": "28363000"}, {"text_input": "What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA 23D0916832", "output": "29420000"}, {"text_input": "What is the hs code for MEG-3 DHA INF 10 FOOD OIL (BHN BAKU MAKANAN) COA TS00023220", "output": "29362500"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT GRANULATION (BHN BAKU SUPPLEMEN) COA WB22119053", "output": "29362700"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for IPRATROPIUM BROMIDE (BHN BAKU OBAT) COA 2350001461", "output": "29397900"}, {"text_input": "What is the hs code for TSPL-30-ID (1KG) (BHN BAKU KOSMETIK) CAS 13475-82-6", "output": "38249999"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 240154", "output": "13021990"}, {"text_input": "What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 232422", "output": "13021990"}, {"text_input": "What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 232371", "output": "13021990"}, {"text_input": "What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 231090", "output": "13021990"}, {"text_input": "What is the hs code for BIOCELLACT CHAMOMILLA BD (BHN BAKU KOSMETIK) COA 231949", "output": "13021990"}, {"text_input": "What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 231643", "output": "13021990"}, {"text_input": "What is the hs code for CLAIR BLANCHE-III (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 231278", "output": "13021990"}, {"text_input": "What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 231761", "output": "13021990"}, {"text_input": "What is the hs code for COATED ASCORBIC ACID, TYPE EC (BHN BAKU SUPPLEMEN) COA TL02311372", "output": "29362700"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI23040013", "output": "29362900"}, {"text_input": "What is the hs code for ASCORBIC ACID ULTRA FINE POWDER (BHN BAKU KOSMETIK) COA TL02312507", "output": "29362700"}, {"text_input": "What is the hs code for CHITOSAN (BHN BAKU SUPPLEMEN) COA HK-C24022602", "output": "39139090"}, {"text_input": "What is the hs code for PANTOPRAZOLE SODIUM (STERILE) (BHN BAKU OBAT) COA SI/PPZ/00540224", "output": "29333990"}, {"text_input": "What is the hs code for KETOROLAC TROMETHAMINE USP (BHN BAKU OBAT) COA KM0150323", "output": "29339990"}, {"text_input": "What is the hs code for SUNBELLIN (BHN BAKU KOSMETIK) COA F210-2311003,2311007, 2311008", "output": "29339990"}, {"text_input": "What is the hs code for SPECWHITE VCE (BHN BAKU KOSMETIK) COA 20230704, 20240108, 20240109", "output": "29362700"}, {"text_input": "What is the hs code for ADENOSINE(L) (BHN BAKU KOSMETIK) COA C01202309003L, C01202311004L", "output": "29349990"}, {"text_input": "What is the hs code for GF-B331 (BHN BAKU KOSMETIK) COA 20240118001", "output": "35051090"}, {"text_input": "What is the hs code for SPECWHITE 05 (BHN BAKU KOSMETIK) COA 20231007", "output": "29222900"}, {"text_input": "What is the hs code for DEXAMETHASONE BP2010/USP42 (BHN BAKU OBAT) COA NED231209,NED240104", "output": "29372200"}, {"text_input": "What is the hs code for PREDNISONE USP2023 (BHN BAKU OBAT) COA NPD231015", "output": "29372100"}, {"text_input": "What is the hs code for BETAMETHASONE BP2022/USP2023 (BHN BAKU OBAT) COA XBE230801", "output": "29372200"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE USP2023 (BHN BAKU OBAT) COA NMP240203", "output": "29372900"}, {"text_input": "What is the hs code for PREDNISOLONE BP2022/USP2023 (BHN BAKU OBAT) COA XPL231103", "output": "29372100"}, {"text_input": "What is the hs code for FERROUS FUMARATE (BHN BAKU OBAT) COA 2024/20", "output": "29171900"}, {"text_input": "What is the hs code for SODIUM ACID PYROPHOSPHATE FOOD GRADE (BHN BAKU MAKANAN) COA 9240220", "output": "28353990"}, {"text_input": "What is the hs code for ECOGEL TM (BHN BAKU KOSMETIK) CAS 85711-58-6", "output": "38249999"}, {"text_input": "What is the hs code for ECOSLIM TM (BHN BAKU KOSMETIK) CAS 58-08-2", "output": "38249999"}, {"text_input": "What is the hs code for LANABLUE TM PARABEN FREE (BHN BAKU KOSMETIK) CAS 50-70-4", "output": "38249999"}, {"text_input": "What is the hs code for LYSOFIX TM LIQUID (BHN BAKU KOSMETIK) CAS 1448790-48-4", "output": "38249999"}, {"text_input": "What is the hs code for DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834012184P", "output": "29224900"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) CAS 37350-42-8", "output": "38249999"}, {"text_input": "What is the hs code for DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834012184P", "output": "29224900"}, {"text_input": "What is the hs code for ECOGEL TM (BHN BAKU KOSMETIK) CAS 85711-58-6", "output": "38249999"}, {"text_input": "What is the hs code for CANADIAN WILLOWHERB TM 5% CLEAR (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for DRY VITAMIN E 50% CWS/S (BHN BAKU SUPPLEMEN) COA UT23050014", "output": "29362800"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30701084", "output": "29362500"}, {"text_input": "What is the hs code for DRY VITAMIN E 50% CWS/S (BHN BAKU SUPPLEMEN) COA UT23050014", "output": "29362800"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12306032", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN B12 0.1% WS (BHN BAKU SUPPLEMEN) COA UT23040011", "output": "29362600"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230601", "output": "29362500"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU KOSMETIK) COA UT23090206", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL\u00ae SHIELD (BHN BAKU KOSMETIK) COA 0823010728, 0823010729", "output": "29420000"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000217252", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000217252", "output": "29362900"}, {"text_input": "What is the hs code for TILAMAR\u00ae PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA 23D1012832", "output": "29420000"}, {"text_input": "What is the hs code for STAY-C\u00ae 50 (BHN BAKU KOSMETIK) COA UE02211046", "output": "29362700"}, {"text_input": "What is the hs code for TILAMAR\u00ae PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA 23D1012832", "output": "29420000"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ30612176", "output": "29362200"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE02306011", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT23060161", "output": "29362400"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230601,QZ11230602", "output": "29362500"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU MAKANAN) COA UE02306011", "output": "29362900"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU MAKANAN) COA TL02307093", "output": "29362400"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU MAKANAN) COA UQ30510671", "output": "29362300"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU MAKANAN) COA TL02308756", "output": "29362400"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ30612176", "output": "29362200"}, {"text_input": "What is the hs code for SUNTHEANINE (L-THEANINE) (BHN BAKU MAKANAN) COA 309107", "output": "13021950"}, {"text_input": "What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2314938", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 2034962", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 0335766", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1046607", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1046610", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1075037", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3039818", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3039818", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3039818", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3114540", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3114540", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3114540", "output": "38210090"}, {"text_input": "What is the hs code for AQUACOAT ECD-30 ETHYLCELLULOSE AQUEOUS... (BHN BAKU PEWARNA TABLET) COA 2174490301", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464438852", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K4M PREMIUM HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464304789", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E15 PREMIUM LV HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2444213820", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2444374841", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E50 PREMIUM LV HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2444321639", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM CR GRADE HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464317909", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2444374841", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E5 PREMIUM LV HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2444388891", "output": "39123900"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 32K180001...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G65197...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G55410...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977..(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G51469...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-30-18037...(BHN BAKU PEWARNA TABLET)CAS 64044-51-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for MAGNESIUM HYDROXIDE PASTE USP BARCROFT... (BHN BAKU OBAT) COA 102329034", "output": "28161000"}, {"text_input": "What is the hs code for CYPROHEPTADINE HYDROCHLORIDE BP/PH. EUR. (BHN BAKU OBAT) COA CYP/01241003", "output": "29333990"}, {"text_input": "What is the hs code for NAI-WHITE A (BHN BAKU KOSMETIK) COA 2401B29102", "output": "32061110"}, {"text_input": "What is the hs code for KSG-15 (16KG) (BHN BAKU KOSMETIK) COA 401653", "output": "39100020"}, {"text_input": "What is the hs code for KF-54HV (18KG) (BHN BAKU KOSMETIK) COA 403095", "output": "39100020"}, {"text_input": "What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) COA 402337", "output": "39100020"}, {"text_input": "What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4", "output": "38249999"}, {"text_input": "What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9", "output": "38249999"}, {"text_input": "What is the hs code for KF-7312K (16KG) (BHN BAKU KOSMETIK) CAS 562705-01-5", "output": "38249999"}, {"text_input": "What is the hs code for KSP-300 (1KG) (BHN BAKU KOSMETIK) CAS 9002-92-0", "output": "38249999"}, {"text_input": "What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9", "output": "38249999"}, {"text_input": "What is the hs code for KSP-300 (1KG) (BHN BAKU KOSMETIK) CAS 9002-92-0", "output": "38249999"}, {"text_input": "What is the hs code for MOMETASONE FUROATE USP MICRONISED (BHN BAKU OBAT) COA APL/MF/06011/B-24", "output": "29372200"}, {"text_input": "What is the hs code for TRICALCIUM CITRATE 4-HYDRATE POWDER (BHN BAKU OBAT) COA 3134800", "output": "29181590"}, {"text_input": "What is the hs code for MAGNESIUM ASPARTATE DIHYDRATE,... (BHN BAKU SUPPLEMEN) COA 3118345-04", "output": "29224900"}, {"text_input": "What is the hs code for KETOPROFEN (BHN BAKU OBAT) COA 204187", "output": "29183000"}, {"text_input": "What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) CAS 7631-86-9", "output": "38249999"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT23061274,UT23061275", "output": "29362100"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02306011", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID FOOD GRADE (BHN BAKU MAKANAN) COA UT23070187", "output": "29362400"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU MAKANAN) COA TL02312521", "output": "29362700"}, {"text_input": "What is the hs code for DL-A-TOCOPHEROL (BHN BAKU MAKANAN) COA UT24010006,UT24010009", "output": "29362800"}, {"text_input": "What is the hs code for STERILE MIXTURE OF MEROPENEM AND SOD.CARBONT. (BHN BAKU OBAT) COA 8MT2401109", "output": "30032000"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE USP (BAHAN BAKU OBAT) COA BDBA0008 S/D BDBA0010", "output": "29420000"}, {"text_input": "What is the hs code for CARBOXYMETHYL CELLULOSE SODIUM USP (BHN BAKU OBAT) COA BDDA0011, BDDA0013", "output": "39123100"}, {"text_input": "What is the hs code for SODIUM STARCH GLYCOLATE BP (BAHAN BAKU OBAT) COA ADAA0016,BDAA0017", "output": "29420000"}, {"text_input": "What is the hs code for SORBITOL SPECIAL (R) MDF 85 (BHN BAKU SUPPLEMEN) COA 122303217", "output": "29054400"}, {"text_input": "What is the hs code for NUTRALIPIDS TYPE HY (BHN BAKU KOSMETIK) COA 436300140", "output": "15179090"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 240154", "output": "13021990"}, {"text_input": "What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 232422", "output": "13021990"}, {"text_input": "What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 232371", "output": "13021990"}, {"text_input": "What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 231090", "output": "13021990"}, {"text_input": "What is the hs code for BIOCELLACT CHAMOMILLA BD (BHN BAKU KOSMETIK) COA 231949", "output": "13021990"}, {"text_input": "What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 231643", "output": "13021990"}, {"text_input": "What is the hs code for CLAIR BLANCHE-III (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for BOTANPI LIQUID B (BHN BAKU KOSMETIK) COA 231278", "output": "13021990"}, {"text_input": "What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 231761", "output": "13021990"}, {"text_input": "What is the hs code for CITICOLINE SODIUM (BHN BAKU OBAT) COA 240201", "output": "29349990"}, {"text_input": "What is the hs code for GLUCOSAMINE SULFATE 2KCL (BHN BAKU OBAT) COA JSTK240218", "output": "29329900"}, {"text_input": "What is the hs code for CEFOTAXIME SODIUM (BHN BAKU OBAT) COA 3042401018", "output": "29419000"}, {"text_input": "What is the hs code for N-ACETYL-L-CYSTEINE (BHN BAKU OBAT) COA C103-202311632", "output": "29309090"}, {"text_input": "What is the hs code for SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202402-029", "output": "35040000"}, {"text_input": "What is the hs code for EXTRAPONE (R) SEA EXTRACTS N (BHN BAKU KOSMETIK) COA 10300041", "output": "13021950"}, {"text_input": "What is the hs code for ACTIPONE (R) WHITE TEA GW (BHN BAKU KOSMETIK) COA 10300055", "output": "13021950"}, {"text_input": "What is the hs code for EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300035", "output": "13021950"}, {"text_input": "What is the hs code for NEO EXTRAPONE (R) LEMON (BHN BAKU KOSMETIK) COA 10300025", "output": "13021950"}, {"text_input": "What is the hs code for PIGMENT BLEND (R) PB-21158 GREEN (BHN BAKU PEWARNA TABLET) COA GA750375", "output": "32151900"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA", "output": "13021950"}, {"text_input": "What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 240102", "output": "13021950"}, {"text_input": "What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 240102", "output": "13021950"}, {"text_input": "What is the hs code for VIAL SAL VI ANTISERUM LYOPHILIZED (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 3194984", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS GROUP D1 FTR 1/9/12 LYO (MEDIAUTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2335855", "output": "38210090"}, {"text_input": "What is the hs code for DISC TAXO V FACTOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3212707", "output": "38210090"}, {"text_input": "What is the hs code for DISC TAXO X FACTOR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3212733", "output": "38210090"}, {"text_input": "What is the hs code for DISC TAXO VX FACTOR 50 DISCS (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3251294", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MYCOPLASMA SUPPLEMENT EM 6X30ML(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3335232,33", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3086871", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL O ANTIS POLY GRP A-I & VI LYO (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3208666", "output": "38210090"}, {"text_input": "What is the hs code for VIAL SAL H ANTIS POLY A-Z 3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 3054163", "output": "38210090"}, {"text_input": "What is the hs code for AVOCADO OIL REFINED DAC (BHN BAKU KOSMETIK) COA 165320", "output": "15159011"}, {"text_input": "What is the hs code for CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) CAS 989-51-5", "output": "38249999"}, {"text_input": "What is the hs code for CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) CAS 989-51-5", "output": "38249999"}, {"text_input": "What is the hs code for CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) CAS 989-51-5", "output": "38249999"}, {"text_input": "What is the hs code for ALUMINUM HYDROXIDE GEL USP.. (BHN BAKU OBAT) COA 102402001", "output": "28183000"}, {"text_input": "What is the hs code for MAGNESIUM HYDROXIDE GEL... (BHN BAKU OBAT) COA 102323013", "output": "28161000"}, {"text_input": "What is the hs code for MAGNESIUM HYDROXIDE GEL... (BHN BAKU OBAT) COA 102323013, SAMPLE NO COMMERCIAL VALUE", "output": "28161000"}, {"text_input": "What is the hs code for BOTTLE D-MANNITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2229527", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MUELLER HILTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3150802", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MR-VP BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3045918", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3277641", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GELATIN 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3277644", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLT4 AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3261353", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2201317", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3114643", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA TUK PENGEMBANGAN MIKRO ORGANISME), BATCH 3114494", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2305063", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2047633", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3355723", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRILLIANT GREEN BILE 2PCT 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME),BATCH 2229544", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE XLD AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2277784", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE CETRIMIDE AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2269093", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 3293059", "output": "38210090"}, {"text_input": "What is the hs code for DROPPER CATALASE REAGENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH B03G008M", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LACTOSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3317803", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEART INFUSION BROTH 500 GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3168382", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2201317", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LEPTOSPIRA MED BASE EMJH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2298727", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TCBS AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2200729", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BAIRD PARKER AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2158081", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3297901,3333720", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LB BROTH MILLER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3303852", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA W LP IC-XT PACK RODAC 100EA(MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3355723", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 4005483", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE DEXTROSE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3300518", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3277641", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MUELLER HILTON II AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3304780", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SALMONELLA SHIGELLA AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME), BATCH 3114504", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2165877", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE UNIVERSAL PREENRICHMENT BROTH 500(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH. 2095248", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRIPLE SUGAR IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3248047", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3272841", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BRAIN HEART INFUSION 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2217600", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MIO MEDIUM 500GR (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3114643", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SFP AGAR BASE 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 1264672", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE LYSINE IRON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2269098", "output": "38210090"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI23040013", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN K1 (BHN BAKU SUPPLEMEN) COA SI23040013", "output": "29362900"}, {"text_input": "What is the hs code for D-A-TOCOPHERYL-ACETATE (BHN BAKU SUPPLEMEN) COA XH20230503,XH20230802", "output": "29362800"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230602", "output": "29362500"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12308016,OP12308017", "output": "29362900"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02308757", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN B12 0.1% WS (BHN BAKU SUPPLEMEN) COA UT23040011", "output": "29362600"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT23100181", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02303003", "output": "29362900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA QZ11230604", "output": "29362500"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30701084", "output": "29362500"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040129", "output": "29420000"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02306011", "output": "29362900"}, {"text_input": "What is the hs code for BEAUPLEX (TM) VH (BHN BAKU KOSMETIK) COA UF23041007", "output": "29420000"}, {"text_input": "What is the hs code for 1,3-BUTYLENE GLYCOL, COSMETIC QUALITY(BHN BAKU KOSMETIK) COA P0623D01BC", "output": "29053200"}, {"text_input": "What is the hs code for ISDN 25PCT-LACTOSE 450 75PCT DILUTED (BHN BAKU OBAT) COA 2401756", "output": "29329900"}, {"text_input": "What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA C900200", "output": "29419000"}, {"text_input": "What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA C900300", "output": "29419000"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C... (BHN BAKU PEWARNA TABLET) COA WP868322:BC3383", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5177 FD&C... (BHN BAKU PEWARNA TABLET) COA WP865813:BC2275", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT (R) 6010 D&C... (BHN BAKU PEWARNA TABLET) COAWP870803:BC5804", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT (R) 6010 D&C... (BHN BAKU PEWARNA TABLET) COAWP870803:BC5804", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5627 FD&C.. (BHN BAKU PEWARNA TABLET) COA WP869522:BC4229", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5177 FD&C... (BHN BAKU PEWARNA TABLET) COA WP865824:BC3945", "output": "32151990"}, {"text_input": "What is the hs code for SCHISANDRA EXTRACT (BHN BAKU OBAT) COA SC03-24030301", "output": "13021950"}, {"text_input": "What is the hs code for RUEGENER DREIKRONEN HEILKREIDE 25K (BHN BAKU KOSMETIK) COA 9082325400", "output": "25090000"}, {"text_input": "What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA LC48-23-804", "output": "17021100"}, {"text_input": "What is the hs code for DURALAC H (BHN BAKU OBAT) COA LC04423-805", "output": "17021100"}, {"text_input": "What is the hs code for COPPER SULFATE, POWDER, PH.EUR.11.ED. (BHN BAKU SUPLEMEN) COA 3138445", "output": "28332500"}, {"text_input": "What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-231221", "output": "29061300"}, {"text_input": "What is the hs code for CROSPOVIDONE XL (BHN BAKU SUPPLEMEN) COA PP231213XL", "output": "39059990"}, {"text_input": "What is the hs code for POVIDONE K-30 (BHN BAKU SUPPLEMEN) COA PK30-240124F32", "output": "39059990"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02312530,TL02312532", "output": "29362700"}, {"text_input": "What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT23080012", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE, TYPE 100 (BHN BAKU SUPPLEMEN) COA UT23110068", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT24010069", "output": "29362100"}, {"text_input": "What is the hs code for RIBOFLAVIN 5'-PHOSPHATE SODIUM (BHN BAKU SUPPLEMEN) COA UEB2303041 S/D UEB2304044", "output": "29362300"}, {"text_input": "What is the hs code for DRY VITAMIN A PALMITATE TYPE 250 CWS/F (BHN BAKU MAKANAN) COA UT23060009", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 30% FS (BHN BAKU MAKANAN) COA UE02402005", "output": "32041800"}, {"text_input": "What is the hs code for ALUMINUM HYDROXIDE GEL USP BARCROFT TM LV13 (BHN BAKU OBAT) COA 102413001", "output": "28183000"}, {"text_input": "What is the hs code for ALUMINUM HYDROXIDE GEL USP BARCROFT TM LV13 (BHN BAKU OBAT) COA 102413001, SAMPLE NO COMMERCIAL", "output": "28183000"}, {"text_input": "What is the hs code for EFFER-SODA (R) 12 (BHN BAKU SUPPLEMEN) COA 122303469,122403677", "output": "28363000"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977.(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING..(BHN BAKU PEWARNA TABLET)CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-22-17515...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING..(BHN BAKU PEWARNA TABLET)CAS 121786-16-1-", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM Y-30-18037..(BHN BAKU PEWARNA TABLET)CAS 64044-51-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620011..(BHN BAKU PEWARNA TABLET)CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229...(BHN BAKU PEWARNA TABLET)CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 02F54189..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F19250..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS EK-118(IN) (BHN BAKU KOSMETIK) CAS 59219-71-5", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WK-F (BHN BAKU KOSMETIK) CAS 69430-36-0", "output": "38249999"}, {"text_input": "What is the hs code for AMITOSE R (BHN BAKU KOSMETIK) COA BBI", "output": "13021950"}, {"text_input": "What is the hs code for VISTANOL GDHR (BHN BAKU KOSMETIK) COA BBI", "output": "39139090"}, {"text_input": "What is the hs code for DL-TARTARIC ACID (BHN BAKU MAKANAN) COA RS01714", "output": "29181200"}, {"text_input": "What is the hs code for DL-MALIC ACID (BHN BAKU MAKANAN) COA FS18338FG", "output": "29181900"}, {"text_input": "What is the hs code for JAGUAR C162 SGI (BHN BAKU KOSMETIK) CAS 71329-50-5", "output": "38249999"}, {"text_input": "What is the hs code for B-CAROTENE 10% EM YELLOW (BHN BAKU MAKANAN) COA UT24020002", "output": "32041800"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT23050015", "output": "29362900"}, {"text_input": "What is the hs code for NEO EXTRAPONE (R) LEMON (BHN BAKU KOSMETIK) COA 10300024,10300025", "output": "13021950"}, {"text_input": "What is the hs code for EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300034", "output": "13021950"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101850124", "output": "17021100"}, {"text_input": "What is the hs code for MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103154523", "output": "17021100"}, {"text_input": "What is the hs code for GRANULAC (R) 70 (BHN BAKU OBAT) COA L101840324", "output": "17021100"}, {"text_input": "What is the hs code for PREMIX TRACE ELEMENTS 751 (BHN BAKU SUPPLEMEN) COA MY62401165", "output": "21069059"}, {"text_input": "What is the hs code for PREMIX TRACE ELEMENTS IF R 125 (BHN BAKU SUPPLEMEN) COA MY62401157", "output": "21069059"}, {"text_input": "What is the hs code for PREMIX VITAMINS FFI 567 (BHN BAKU SUPPLEMEN) COA MY62401156", "output": "21069059"}, {"text_input": "What is the hs code for PREMIX VITAMINS GUM 414 (BHN BAKU SUPPLEMEN) COA MY62401202", "output": "21069059"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT23050014", "output": "29362800"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12308017", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN PREMIX 103093 - A (BHN BAKU MAKANAN) COA XW92402010", "output": "21069059"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3114540", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3158127", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3228039", "output": "38210090"}, {"text_input": "What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2314938", "output": "38210090"}, {"text_input": "What is the hs code for BACTO YEAST EXTRACT 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 2528835", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASAMINO ACIDS TECHNICALS 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2137791", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASAMINO ACIDS TECHNICALS 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2137791", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASAMINO ACIDS TECHNICALS 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2137791", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2775753", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2775753", "output": "38210090"}, {"text_input": "What is the hs code for ERDOSTEINE IH (BAHAN BAKU OBAT) COA EDSF230072", "output": "29349990"}, {"text_input": "What is the hs code for PEARL ESSENCES 35178MJ (BHN BAKU KOSMETIK) COA D3430787", "output": "32061910"}, {"text_input": "What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2023111002", "output": "13021950"}, {"text_input": "What is the hs code for METRONIDAZOLE BENZOATE (BHN BAKU OBAT) COA MBO/14020078", "output": "29332900"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA ROA364234,ROA364236", "output": "28363000"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU KOSMETIK) COA OP12308017", "output": "29362900"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000217252,0000217253", "output": "29362900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30701084", "output": "29362500"}, {"text_input": "What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0046906", "output": "29362500"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23060229", "output": "29362800"}, {"text_input": "What is the hs code for PARSOL (R) HS (BHN BAKU KOSMETIK) COA HS6441223", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL HMS (BHN BAKU KOSMETIK) COA 0423040118,0424040001", "output": "29420000"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02306011", "output": "29362900"}, {"text_input": "What is the hs code for PARSOL SLX (BHN BAKU KOSMETIK) COA 0001711881,0001717748", "output": "29420000"}, {"text_input": "What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02302802", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23060182", "output": "29362800"}, {"text_input": "What is the hs code for VITAMIN PREMIX MILK POWDER FOR ADULTS (BHN BAKU MAKANAN) COA XW92402118", "output": "21069059"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU KOSMETIK) COA UE02306011", "output": "29362900"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02307101", "output": "29362400"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23060182", "output": "29362800"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL (BHN BAKU KOSMETIK) COA UT23100073", "output": "29362800"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02309788", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN B12 0.1% WS (BHN BAKU SUPPLEMEN) COA UT23040011", "output": "29362600"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000217253,0000217254", "output": "29362900"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPPLEMEN) COA TL02306379", "output": "29362700"}, {"text_input": "What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211046", "output": "29362700"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02307106", "output": "29362400"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT23100181", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02303003", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02306011", "output": "29362900"}, {"text_input": "What is the hs code for COLAGENO HIDROLISADO TENDOFORTE(R) B (BHN BAKU MAKANAN), COA H4508111", "output": "35040000"}, {"text_input": "What is the hs code for COLLAGEN HYDROLYSATE VERISOL (R) B (SA) (BHN BAKU MAKANAN), COA H4508569", "output": "35040000"}, {"text_input": "What is the hs code for COLLAGEN HYDROLYSATE FORTIGEL(R) B (SA) (BHN BAKU MAKANAN), COA H4508235", "output": "35040000"}, {"text_input": "What is the hs code for CHRONOLINE TM (BHN BAKU KOSMETIK) COA 233237", "output": "29224900"}, {"text_input": "What is the hs code for GREYVERSE TM (BHN BAKU KOSMETIK) COA 833012061P", "output": "29224900"}, {"text_input": "What is the hs code for PRO-LIPO TM NEO (BHN BAKU KOSMETIK) CAS", "output": "38249999"}, {"text_input": "What is the hs code for PROGELINE TM (BHN BAKU KOSMETIK) COA 820052319R", "output": "29224900"}, {"text_input": "What is the hs code for DL ALPHA TOCOPHEROL (BHN BAKU KOSMETIK) COA 01231104ES", "output": "29362800"}, {"text_input": "What is the hs code for PHARMACEUTICAL CASTOR OIL E.P (BHN BAKU KOSMETIK) COA 0000049094,0000049093", "output": "15152919"}, {"text_input": "What is the hs code for ZINCIDONE 5KG (BHN BAKU KOSMETIK) COA 0092956", "output": "38249999"}, {"text_input": "What is the hs code for RAJOL WP80/LOREAL LIGHT LIQUID PARAFFIN-BP/...(BHN BAKU KOSMETIK) COA 1000240002,1000240003", "output": "27101990"}, {"text_input": "What is the hs code for NEOSSANCE SQUALANE (BHN BAKU KOSMETIK) COA 23LNC0719SQ434", "output": "27101990"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101850324", "output": "17021100"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA ROA363232,ROA362236,ROA004246", "output": "28363000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND MAGNOLIA EXTRACT (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for PREMIX TRACE ELEMENTS 751 (BHN BAKU SUPPLEMEN) COA MY62401165", "output": "21069059"}, {"text_input": "What is the hs code for SULPHAMETHOXAZOLE BP MICRONIZED (BHN BAKU OBAT) COA 04610324,0462034,04630324,0460324,...", "output": "29359000"}, {"text_input": "What is the hs code for FIBER DRUMS (EMPTY DRUMS) NO COMMERCIAL VALUE", "output": "48192000"}, {"text_input": "What is the hs code for CYANOCOBALAMIN VITAMIN B12 CRYSTALLINE (BHN BAKU OBAT) COA 2311952455", "output": "29362600"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM MONOHYDRATE (BHN BAKU OBAT) COA 2403338,2403340,2403342,2403344,2403345", "output": "29331900"}, {"text_input": "What is the hs code for SODIUM FEREDETATE, POWDER, BP2024 (BHN BAKU OBAT) COA 3141248", "output": "29224900"}, {"text_input": "What is the hs code for LISINOPRIL DIHYDRATE USP (BAHAN BAKU OBAT ) COA C5170-23-358", "output": "29339990"}, {"text_input": "What is the hs code for CENTELLA ASIATICA EXTRACT 95 PCT (BHN BAKU KOSMETIK) COA GKP 23174 EOU", "output": "13021990"}, {"text_input": "What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA 0000084160", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000084161", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000084162", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA 0000084163, SAMPLE NO COMMERCIAL VALUE", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000084164, SAMPLE NO COMMERCIAL VALUE", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000084165, SAMPLE NO COMMERCIAL VALUE", "output": "29309090"}, {"text_input": "What is the hs code for CITRIC ACID MONOHYDRATE GRANULAR (BHN BAKU SUPLEMEN) COA UJ307", "output": "29181400"}, {"text_input": "What is the hs code for CITRIC ACID MONOHYDRATE GRANULAR (BHN BAKU SUPLEMEN) COA UJ307", "output": "29181400"}, {"text_input": "What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA LC48-23-801", "output": "17021100"}, {"text_input": "What is the hs code for THEOPHYLLINE ANHYDROUS (BHN BAKU OBAT) COA 24039,24045 S/D 24048,24051 S/D 24061", "output": "29395900"}, {"text_input": "What is the hs code for METAMIZOLE SODIUM REGULAR GRADE (BHN BAKU OBAT) COA 2403334,2403335,2403338", "output": "29331900"}, {"text_input": "What is the hs code for NABUMETON USP (BHN BAKU OBAT) COA H-0020124", "output": "29145000"}, {"text_input": "What is the hs code for FERROUS GLUCONATE FINE GRAN.. (BHN BAKU OBAT) COA 3127778", "output": "29181600"}, {"text_input": "What is the hs code for BROMHEXINE HYDROCHLORIDE EP (BHN BAKU OBAT) COA ORX/BRH/2402022", "output": "29215900"}, {"text_input": "What is the hs code for TRIMETHOPRIM MICRONISED BP (BHN BAKU OBAT) COA TMPM24020015", "output": "29335990"}, {"text_input": "What is the hs code for BEE PANDA HONEY (BHN BAKU KOSMETIK) CAS 8028-66-8", "output": "38249999"}, {"text_input": "What is the hs code for SPECWHITE VCE (BHN BAKU KOSMETIK) COA 20240205", "output": "29362700"}, {"text_input": "What is the hs code for MOPD (BHN BAKU KOSMETIK) COA 231213001", "output": "29242990"}, {"text_input": "What is the hs code for DEXAMETHASONE BP2010/USP42 (BHN BAKU OBAT) COA NED240301,NED240302,NED240303", "output": "29372200"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-7027... (BHN BAKU PEWARNA TABLET)CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58977..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) QX QUICK AND FLEXIBLE FILM COATING SYSTEM..(BHN BAKU PEWARNA TABLET)CAS 121786-16-1", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) KB LOW VISCOSITY FILM COATING..(BHN BAKU PEWARNA TABLET)CAS 151-21-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-19025-A..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G640054...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G620014...(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 02F52182...(BHN BAKU PEWARNA TABLET)CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03B82443..(BHN BAKU PEWARNA TABLET)CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for ACRYL-EZE (R) II OPTIMIZED AQUEOUS ACRYLIC ENTERIC...(BHN BAKU PEWARNA TABLET) COA GA749583", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G62402...(BHN BAKU PEWARNA TABLET)CAS .9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) FX TM SPECIAL EFFECTS FILM COATING...(BHN BAKU PEWARNA TABLET)CAS 9004-32-4", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 DR 200 KG (BHN BAKU KOSMETIK) CAS 70445-33-9", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 100 CAN 10 KG (BHN BAKU KOSMETIK) CAS 55965-84-9", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 720 CAN 10 KG (BHN BAKU KOSMETIK) CAS 65-85-0", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 940 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9", "output": "38249999"}, {"text_input": "What is the hs code for SENSIDIN DO CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6", "output": "38249999"}, {"text_input": "What is the hs code for REFINED COCONUT OIL - L (BHN BAKU KOSMETIK) COA 0002779650", "output": "15131990"}, {"text_input": "What is the hs code for HEXYLENE GLYCOL (BHN BAKU KOSMETIK) COA 2004260321400386", "output": "29053900"}, {"text_input": "What is the hs code for SODIUM SELENITE IN CARRIER,... (BHN BAKU SUPPLEMEN) COA 3140779", "output": "28429010"}, {"text_input": "What is the hs code for COPPER SULFATE, POWDER, PH.EUR.11.ED. (BHN BAKU SUPLEMEN) COA", "output": "28332500"}, {"text_input": "What is the hs code for SODIUM FEREDETATE, POWDER, BP2023 (BHN BAKU OBAT) COA 3141248", "output": "29224900"}, {"text_input": "What is the hs code for MAGNESIUM SULFATE DIHYDRATE, POWDER... (BHN BAKU OBAT) COA 3139778", "output": "28332100"}, {"text_input": "What is the hs code for POTASSIUM L-ASPARTATE 0,5 HYDRATE (BHN BAKU OBAT) COA 3138689", "output": "29224900"}, {"text_input": "What is the hs code for POTASSIUM SULFATE FINE POWDER,... (BHN BAKU SUPPLEMEN) COA 3134552", "output": "31043000"}, {"text_input": "What is the hs code for FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU OBAT) COA 3111674", "output": "28332920"}, {"text_input": "What is the hs code for SENSIDIN DO CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 100 CAN 10 KG (BHN BAKU KOSMETIK) CAS 55965-84-9", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 720 CAN 10 KG (BHN BAKU KOSMETIK) CAS 65-85-0", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL K 900 CAN 10 KG (BHN BAKU KOSMETIK) CAS 100-51-6", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 CAN 10 KG (BHN BAKU KOSMETIK) CAS 70445-33-9", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 IBC 900 KG (BHN BAKU KOSMETIK) CAS 70445-33-9", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 IBC 900 KG (BHN BAKU KOSMETIK) CAS 70445-33-9", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 IBC 900 KG (BHN BAKU KOSMETIK) CAS 70445-33-9", "output": "38249999"}, {"text_input": "What is the hs code for SENSIVA SC 50 IBC 900 KG (BHN BAKU KOSMETIK) CAS 70445-33-9", "output": "38249999"}, {"text_input": "What is the hs code for KF-7312K (16KG) (BHN BAKU KOSMETIK) CAS 562705-01-5", "output": "39100020"}, {"text_input": "What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) COA 403340", "output": "39100020"}, {"text_input": "What is the hs code for KF-54HV (18KG) (BHN BAKU KOSMETIK) COA 404099", "output": "39100020"}, {"text_input": "What is the hs code for KSG-210 (16KG) (BHN BAKU KOSMETIK) CAS 63148-62-9", "output": "38249999"}, {"text_input": "What is the hs code for KSP-300 (1KG) (BHN BAKU KOSMETIK) CAS 9002-92-0", "output": "38249999"}, {"text_input": "What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9", "output": "39100020"}, {"text_input": "What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4", "output": "39100020"}, {"text_input": "What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) COA 404351", "output": "39100020"}, {"text_input": "What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4", "output": "39100020"}, {"text_input": "What is the hs code for KF-6028 (16KG) (BHN BAKU KOSMETIK) CAS 1428746-44-4", "output": "39100020"}, {"text_input": "What is the hs code for KF-56A (18KG) (BHN BAKU KOSMETIK) COA 403348", "output": "39100020"}, {"text_input": "What is the hs code for KSG-15 (16KG) (BHN BAKU KOSMETIK) COA 401653", "output": "39100020"}, {"text_input": "What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340535, B340537, B340538", "output": "29419000"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA SH677386", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA SH677371", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA SH677886", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA SH677390", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA SH677389", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA SH677391", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA SH677393", "output": "39061090"}, {"text_input": "What is the hs code for ACRYL-EZE (R) AQUEOUS ACRYLIC ENTERIC SYSTEM...(BHN BAKU PEWARNA TABLET) COA SH677392", "output": "39061090"}, {"text_input": "What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for CITRIC ACID ANHYDROUS 30-100MESH BP/USP/FCC/E330 (BHN BAKU SUPLEMEN) COA 6AX2403034", "output": "29181400"}, {"text_input": "What is the hs code for CORTISONE ACETATE MICRONISED PH.EUR JP (BHN BAKU SUPPLEMEN) COA 2401070082", "output": "29372900"}, {"text_input": "What is the hs code for FERROUS FUMARATE (BHN BAKU OBAT) COA 2024/52", "output": "29171900"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-072123,011524", "output": "13021950"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-011524", "output": "13021950"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-BLACK PEARL POWDER (BHN BAKU KOSMETIK) CAS 73049-73-7", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-FRGE PLUS (BHN BAKU KOSMETIK) CAS 56-81-5", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND GREEN TEA EXTRACT (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-020493", "output": "13021950"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA NAH112", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP2240321", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ARBUTIN (BHN BAKU KOSMETIK) COA ARP-112383", "output": "29389000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND WITCH HAZEL EXTRACT PF (BHN BAKU KOSMETIK) COA HMVBD-072123", "output": "13021950"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND COLINUS (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP2240321", "output": "39139090"}, {"text_input": "What is the hs code for FERRIC HYDROXIDE POLYMALTOSE COMPLEX.. (BHN BAKU OBAT) COA 3132372", "output": "29400000"}, {"text_input": "What is the hs code for GELUCIRE 44/14 (BHN BAKU SUPPLEMEN) COA 196690", "output": "28399000"}, {"text_input": "What is the hs code for TRANSCUTOL P (BHN BAKU SUPPLEMEN) COA 199835", "output": "28399000"}, {"text_input": "What is the hs code for PRECIFAC 95-3 (BHN BAKU SUPPLEMEN) COA 198752", "output": "28399000"}, {"text_input": "What is the hs code for EMULCIRE 61 WL 2659 (BHN BAKU SUPPLEMEN) COA 198932", "output": "28399000"}, {"text_input": "What is the hs code for PRECIROL ATO 5 (BHN BAKU SUPPLEMEN) COA 198903", "output": "28399000"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30512170", "output": "29362200"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-28849...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for YUZU LEMON EXTRACT (BHN BAKU KOSMETIK) CAS 233683-84-6", "output": "38249999"}, {"text_input": "What is the hs code for MIXED TOCOPHEROLS 95 (BHN BAKU MAKANAN) COA XH20240101", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB23070735 S/D WB23070737", "output": "29362100"}, {"text_input": "What is the hs code for EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300067", "output": "13021950"}, {"text_input": "What is the hs code for EXTRAPONE (R) GINSENG (BHN BAKU KOSMETIK) COA 10300057", "output": "13021940"}, {"text_input": "What is the hs code for EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300035", "output": "13021950"}, {"text_input": "What is the hs code for VITAMIN E (BHN BAKU KOSMETIK) COA 201202312201", "output": "29362800"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP08124", "output": "28363000"}, {"text_input": "What is the hs code for AVOCADO OIL, REFINED NFEU (BHN BAKU KOSMETIK) COA 1000023686", "output": "15159011"}, {"text_input": "What is the hs code for GRAPESEED OIL, REFINED (BHN BAKU KOSMETIK) COA 8010812001", "output": "15152919"}, {"text_input": "What is the hs code for CARBOWAX SENTRY PEG 1450 (BHN BAKU KOSMETIK) COA D684NCSPB2", "output": "39072990"}, {"text_input": "What is the hs code for CARBOWAX SENTRY PEG 1450 (BHN BAKU KOSMETIK) COA D684NCSPB2", "output": "39072990"}, {"text_input": "What is the hs code for ABYSSINE TM PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834012285P", "output": "29224900"}, {"text_input": "What is the hs code for ECOGEL TM (BHN BAKU KOSMETIK) CAS 85711-58-6", "output": "38249999"}, {"text_input": "What is the hs code for DENDRICLEAR TM (BHN BAKU KOSMETIK) COA 834012285P", "output": "29224900"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) CAS 37350-42-8", "output": "38249999"}, {"text_input": "What is the hs code for INST'TIGHT TM (BHN BAKU KOSMETIK) CAS 56-81-5", "output": "38249999"}, {"text_input": "What is the hs code for AMISOL TM 4135 (BHN BAKU KOSMETIK) CAS 8002-43-5", "output": "38249999"}, {"text_input": "What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA LC050-23-801", "output": "17021100"}, {"text_input": "What is the hs code for AMITOSE R (BHN BAKU KOSMETIK) CAS 787607-61-8", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS BLACK PEARL-F (BHN BAKU KOSMETIK) CAS 73049-73-7", "output": "38249999"}, {"text_input": "What is the hs code for PROTESIL LH (BHN BAKU KOSMETIK) CAS 638164-47-3", "output": "38249999"}, {"text_input": "What is the hs code for IMERCARE 230P SCRUB OR (BHN BAKU KOSMETIK) COA 24-10-23", "output": "38029090"}, {"text_input": "What is the hs code for IMERCARE 230P SCRUB OR (BHN BAKU KOSMETIK) COA 28-04-23", "output": "38029090"}, {"text_input": "What is the hs code for VITAMIN PREMIX 103093 - A (BHN BAKU MAKANAN) COA XW92403255", "output": "21069059"}, {"text_input": "What is the hs code for DRY VITAMIN E ACETATE 950 NS (BHN BAKU SUPPLEMEN) COA DRY VITAMIN E ACETATE 950 NS", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 500 B (BHN BAKU SUPPLEMEN) COA WB23060369", "output": "29362100"}, {"text_input": "What is the hs code for OPTISHARP NAT. ZEA. 14PCT SAFF (BHN BAKU SUPPLEMEN) COA 2402107029", "output": "32041800"}, {"text_input": "What is the hs code for 985-L-MENTHOL CRYSTALS INDIAN NATURAL (BHN BAKU KOSMETIK) COA H3-064-L-23-24", "output": "29061100"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for ZORYALYS (BHN BAKU KOSMETIK) CAS 73398-61-5", "output": "38249999"}, {"text_input": "What is the hs code for PEPPERMINT ORGANIC FROM FRANCE DISTILLATE (SB) (BHN BAKU KOSMETIK) CAS 84082-70-2", "output": "38249999"}, {"text_input": "What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for GREENSIL (BHN BAKU KOSMETIK) CAS 91771-32-3", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6", "output": "38249999"}, {"text_input": "What is the hs code for ASCORBIC ACID (BHN BAKU SUPPLEMEN) COA TL02312532", "output": "29362700"}, {"text_input": "What is the hs code for B-CAROTENE 30% FS (BHN BAKU SUPPLEMEN) COA UE02402008", "output": "32041800"}, {"text_input": "What is the hs code for MEG-3(TM) '10' N-3 INF POWDER S/SD (BHN BAKU SUPPLEMEN) COA UT23080012", "output": "29362500"}, {"text_input": "What is the hs code for VITAMIN A WATER-MISCIBLE, TYPE 100 (BHN BAKU SUPPLEMEN) COA UT23110068", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A + D3 WATER-MISCIBLE 100/20 (BHN BAKU SUPPLEMEN) COA UT24010069", "output": "29362100"}, {"text_input": "What is the hs code for B-CAROTENE 30% FS (BHN BAKU SUPPLEMEN) COA UE02402007", "output": "32041800"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE 1.7 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT24011292,UT24011295,UT24021296", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT24020052", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT24020052", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT24020053", "output": "29362100"}, {"text_input": "What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT24030231", "output": "29362100"}, {"text_input": "What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP35823", "output": "28363000"}, {"text_input": "What is the hs code for SILVER CITRATE SOLUTION 2500PPM (BHN BAKU KOSMETIK) COA CPS23-0844", "output": "28432900"}, {"text_input": "What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 240635", "output": "13021950"}, {"text_input": "What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 240154", "output": "13021950"}, {"text_input": "What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 240029", "output": "13021950"}, {"text_input": "What is the hs code for SAKURA EXTRACT B (BHN BAKU KOSMETIK) COA 240312", "output": "13021950"}, {"text_input": "What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for BIOCELLACT CHAMOMILLA BD (BHN BAKU KOSMETIK) COA 231949", "output": "13021950"}, {"text_input": "What is the hs code for MANDARINCLEAR (BHN BAKU KOSMETIK) COA 232371", "output": "13021950"}, {"text_input": "What is the hs code for DOKUDAMI LIQUID B (BHN BAKU KOSMETIK) COA 232229", "output": "13021950"}, {"text_input": "What is the hs code for K2 GLYCYRRHIZINATE (BHN BAKU KOSMETIK) COA 240827", "output": "29329900"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for BURGEON-UP (HS) (BHN BAKU KOSMETIK) COA 240635", "output": "13021950"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 240029", "output": "13021950"}, {"text_input": "What is the hs code for PHYTO COLLAGE B(N) (BHN BAKU KOSMETIK) COA 231090, 240427", "output": "13021950"}, {"text_input": "What is the hs code for MANNITOL USP/EP MANNOGEM (R) EZ SPRAY DRIED (BHN BAKU OBAT) COA 122303512", "output": "29054300"}, {"text_input": "What is the hs code for CALCIUM CARBONATE VITASMOOTH (R) 041 (BHN BAKU OBAT) COA 122302553", "output": "28365010"}, {"text_input": "What is the hs code for PHARMABURST (R) 500 (BHN BAKU OBAT) COA 122403631", "output": "21069099"}, {"text_input": "What is the hs code for VIAL COAG PLASMA RABBIT EDTA 10X3ML (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3257251", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3338234,4016942", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE M-GREEN YEAST AND MOLD BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3272500", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EGG YOLK TELLURITE ENRICHMENT (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3228110,...", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE ANTIBIOTIC MEDIUM 10 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3086871", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MODIFIED LETHEEN BROTH...(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 4058467", "output": "38210090"}, {"text_input": "What is the hs code for OPTIMAT 2550 OR (BHN BAKU KOSMETIK) COA 40209", "output": "38029090"}, {"text_input": "What is the hs code for IMERCARE PHARMA 5T (BHN BAKU KOSMETIK) COA S577/23", "output": "38029090"}, {"text_input": "What is the hs code for OPASPRAY (R) OPAQUE COLOR... (BHN BAKU PEWARNA TABLET) COA DT758575", "output": "32151990"}, {"text_input": "What is the hs code for OPAGLOS (R) TABLET CORE... (BHN BAKU PEWARNA TABLET) COA DT757071", "output": "32151990"}, {"text_input": "What is the hs code for OPALUX (R) OPAQUE COLOR ... (BHN BAKU PEWARNA TABLET) COA DT758576", "output": "32151990"}, {"text_input": "What is the hs code for NUTRAFINISH (R) TIO2 FREE FILM COATING 168U220008...(BHN BAKU PEWARNA TABLET) CAS 9004-64-2", "output": "38249999"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3292368", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3355141", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE KLIGLER IRON AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2297791", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE GC MEDIUM BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3272841,3354352", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2201317", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MIO MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3114643", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SKIM MILK 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3333720", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3345733", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3293058", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MARINE AGAR 2216 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3333597", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTICASE SOY AGAR MOD 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3355141", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE D SORBITOL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3067726", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE YEAST NITROGEN BASE 100G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3249791", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3292368", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE VOGEL JOHNSON AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2201317", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EE BROTH MOSSEL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3300630", "output": "38210090"}, {"text_input": "What is the hs code for SACHET GASPAK EZ ANAEROBE CONTAINER (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3236811", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE AGAR 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3307226", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MANNITOL SALT AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3114494", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE NUTRIENT AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3270388", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3168361", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BUFFERED PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 2034966,207", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE R2A AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3248053", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RAPPAPORT VASSILLIDAS R10 BR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3272837", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE FLUID THIOGLYCOLLATE MED 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3333727", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE EC MEDIUM 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2047633", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTIC SOY AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3010894,3030220", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE SABOURAUD DEXTROSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3040458", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TRYPTOSE BROTH 500G(MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3137222", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE BISMUTH SULFITE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3304802", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE HEKTOEN ENTERIC AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 1285556", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE TAT BROTH BASE 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2152796", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR TECHNICAL 500G (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3293058", "output": "38210090"}, {"text_input": "What is the hs code for PLATE TSA IC-XT MEDIA 90MM LL 100EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME ) BATCH 4005483", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MACCONKEY AGAR BBL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 1172869", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE MUELLER HINTON BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 3150802", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE RVS SOY BROTH 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME ) BATCH 3221348", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE PEPTONE WATER 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2165877", "output": "38210090"}, {"text_input": "What is the hs code for BOTTLE AGAR BACTERIOLOGICAL 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3168361", "output": "38210090"}, {"text_input": "What is the hs code for AMBROXOL HCL EP (BHN BAKU OBAT) COA VBNC240119", "output": "29221990"}, {"text_input": "What is the hs code for PREDNICARBATE (BHN BAKU OBAT) COA PNC 002/0823", "output": "29372900"}, {"text_input": "What is the hs code for PANTOPRAZOLE SODIUM (STERILE) (BHN BAKU OBAT) COA SI/PPZ/00710324", "output": "29333990"}, {"text_input": "What is the hs code for LIPOID S 67 F (BHN BAKU SUPPLEMEN) COA 576200-2240041", "output": "29232011"}, {"text_input": "What is the hs code for SODIUM ACETATE ANHYDROUS POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3141073", "output": "29152910"}, {"text_input": "What is the hs code for ALLOPURINOL USP (BHN BAKU OBAT) COA ALP0011123", "output": "29335990"}, {"text_input": "What is the hs code for N-ACETYL-L-CYSTEINE (BHN BAKU OBAT) COA C103-202404807", "output": "29309090"}, {"text_input": "What is the hs code for AQUACOAT ECD-30 ETHYLCELLULOSE AQUEOUS... (BHN BAKU PEWARNA TABLET) COA 2174520322", "output": "39123900"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA ROA364236,ROA023242", "output": "28363000"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 240304", "output": "13021950"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 240202,240304", "output": "13021950"}, {"text_input": "What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 230516", "output": "29061900"}, {"text_input": "What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 230516", "output": "29061900"}, {"text_input": "What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 240206", "output": "13021950"}, {"text_input": "What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 240206", "output": "13021950"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 240202", "output": "13021950"}, {"text_input": "What is the hs code for COLLAGEN CASING PCS CALIBER 22 MM... (BHN BAKU MAKANAN) COA J0222418T01", "output": "39171090"}, {"text_input": "What is the hs code for COLLAGEN CASING PCS CALIBER 23 MM... (BHN BAKU MAKANAN) COA J23219T01", "output": "39171090"}, {"text_input": "What is the hs code for COLLAGEN CASING PDF CALIBER 19 MM... (BHN BAKU MAKANAN) COA J0192418T07", "output": "39171090"}, {"text_input": "What is the hs code for COLLAGEN CASING PDF CALIBER 20MM... (BHN BAKU MAKANAN) COA J0202418T07", "output": "39171090"}, {"text_input": "What is the hs code for COLLAGEN CASING PDF CALIBER 22 MM... (BHN BAKU MAKANAN) COA J0222419T12", "output": "39171090"}, {"text_input": "What is the hs code for COLLAGEN CASING PDF CALIBER 23 MM ... (BHN BAKU MAKANAN) COA J0232419T12", "output": "39171090"}, {"text_input": "What is the hs code for COLLAGEN CASING PDF CALIBER 24 MM... (BHN BAKU MAKANAN) COA J0242419T12", "output": "39171090"}, {"text_input": "What is the hs code for COLLAGEN CASING PDF CALIBER 25 MM... (BHN BAKU MAKANAN) COA J0252419T07", "output": "39171090"}, {"text_input": "What is the hs code for COLLAGEN CASING PDF CALIBER 26 MM... (BHN BAKU MAKANAN) COA J0263118T07", "output": "39171090"}, {"text_input": "What is the hs code for COLLAGEN CASING PDF CALIBER 27 MM... (BHN BAKU MAKANAN) COA J027418T07", "output": "39171090"}, {"text_input": "What is the hs code for COLLAGEN CASING PDF CALIBER 21 MM... (BHN BAKU MAKANAN) COA J0212418T07", "output": "39171090"}, {"text_input": "What is the hs code for LIDOCAINE BASE (BHN BAKU OBAT) COA 205500", "output": "29242990"}, {"text_input": "What is the hs code for LIDOCAINE HCL (BHN BAKU OBAT) COA 205673", "output": "29242990"}, {"text_input": "What is the hs code for SODIUM VALPROATE (BAHAN BAKU OBAT) COA 459831", "output": "29159090"}, {"text_input": "What is the hs code for PRECIROL ATO 5 (BHN BAKU SUPPLEMEN) COA 199538", "output": "28399000"}, {"text_input": "What is the hs code for GELUCIRE 48/16 PELLETS (BHN BAKU SUPPLEMEN) COA 199069", "output": "28399000"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE PH (BHN BAKU SUPPLEMEN) COA UQ30808107, SAMPLE NO COMMERCIAL VALUE", "output": "29362500"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE PH (BHN BAKU SUPPLEMEN) COA UQ31008120, SAMPLE NO COMMERCIAL VALUE", "output": "29362500"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT23060024, SAMPLE NO COMMERCIAL VALUE", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT23080036, SAMPLE NO COMMERCIAL VALUE", "output": "29362100"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPPLEMEN) COA TL02312506, SAMPLE NO COMMERCIAL VALUE", "output": "29362700"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT23090029, SAMPLE NO COMMERCIAL VALUE", "output": "32030010"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT23090030, SAMPLE NO COMMERCIAL VALUE", "output": "32030010"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20240331", "output": "17029019"}, {"text_input": "What is the hs code for DEXAMETHASONE BP2010/USP42 (BHN BAKU OBAT) COA NED240303,NED240409,NED240411", "output": "29372200"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0077700", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0078000", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0078100", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0010200", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 24B0010300", "output": "13021990"}, {"text_input": "What is the hs code for SILYMARIN/PHOSPHOLIPIDS (BAHAN BAKU SUPLEMEN) COA 24B0009100", "output": "13021950"}, {"text_input": "What is the hs code for MIAMI SCG(S) (BHN BAKU KOSMETIK) COA 240310C5,240322C5", "output": "34023990"}, {"text_input": "What is the hs code for 4-HYDROXYACETOPHENONE (BHN BAKU KOSMETIK) COA 202403014", "output": "29145000"}, {"text_input": "What is the hs code for SERASENSE SF 2 (BAHAN BAKU SUPLEMEN) COA SA40401058", "output": "39100090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ARTEMISIA EXTRACT (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1240325", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND LICORICE EXTRACT (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND MULBERRY ROOT POWDER (BHN BAKU KOSMETIK) COA MUP-020493", "output": "13021950"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA O3M204", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA N94107,NAH112", "output": "28321000"}, {"text_input": "What is the hs code for SODIUM CARBONATE IPH (BHN BAKU SUPPLEMEN) COA DOC0672421", "output": "28363000"}, {"text_input": "What is the hs code for FERRIC PYROPHOSPHATE,24PCT - 26PCT FE POWDER,FCC13 (BHN BAKU MAKANAN) COA 3141813", "output": "28353990"}, {"text_input": "What is the hs code for FERROUS FUMARATE, FINE POWDER (BHN BAKU MAKANAN) COA 3133483", "output": "29171900"}, {"text_input": "What is the hs code for FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU MAKANAN) COA 3139890", "output": "28332920"}, {"text_input": "What is the hs code for FERROUS GLUCONATE, POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3140463", "output": "29181600"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU MAKANAN) COA WB24010741,WB24010755,WB24010756", "output": "29362100"}, {"text_input": "What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3109006", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3228039", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3338149", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASAMINO ACIDS TECHNICALS 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2137791", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 2242551", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3338149", "output": "38210090"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN551682", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN551681", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN551680", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN551663", "output": "35051010"}, {"text_input": "What is the hs code for NIACINAMIDE PC (BHN BAKU KOSMETIK) COA 0000217254,0000217255", "output": "29362900"}, {"text_input": "What is the hs code for V003400 (BHN BAKU MAKANAN) COA XW92402367,XW92402368", "output": "21069059"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT23110041", "output": "29362100"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT23090208", "output": "29362400"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT23090207,UT23090208", "output": "29362400"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT23100028", "output": "32041800"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12308017", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN PREMIX FOR JELLY DRINK V4 (BHN BAKU MAKANAN) COA XW92402208", "output": "21069059"}, {"text_input": "What is the hs code for ANTIOXIDANT PREMIX FOR GUMMY (BHN BAKU MAKANAN) COA XW92403026", "output": "21069059"}, {"text_input": "What is the hs code for PREMIX VITAMIN MINERAL CP (BHN BAKU MAKANAN) COA XW92402207", "output": "21069059"}, {"text_input": "What is the hs code for VITAMIN PREMIX FOR MARGARINE SG15-0027 (BHN BAKU MAKANAN) COA XW92403038", "output": "21069059"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU MAKANAN) COA UT23080260", "output": "29362800"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS/AM (BHN BAKU MAKANAN) COA UT23100027", "output": "29362900"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ31012219", "output": "29362200"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA QZ11230602", "output": "29362500"}, {"text_input": "What is the hs code for ROCOAT NIACINAMIDE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22050237,WB22050239", "output": "29362900"}, {"text_input": "What is the hs code for D-BIOTIN (BHN BAKU SUPPLEMEN) COA UE02306011", "output": "29362900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU MAKANAN) COA UQ30701084", "output": "29362500"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU SUPPLEMEN) COA OP12309011", "output": "29362900"}, {"text_input": "What is the hs code for B-CAROTENE 10PCT CWS (BHN BAKU MAKANAN) COA UT23070039", "output": "32041800"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30512170", "output": "29362200"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT23110041", "output": "29362100"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02309788", "output": "29362400"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ30610689,UQ30610695", "output": "29362300"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30512170", "output": "29362200"}, {"text_input": "What is the hs code for NIACINAMIDE (BHN BAKU MAKANAN) COA OP12309011", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT23070179", "output": "29362900"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30701089", "output": "29362500"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02309788", "output": "29362400"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT23060182", "output": "29362800"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02307101", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT23050014", "output": "29362800"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ30610688", "output": "29362300"}, {"text_input": "What is the hs code for VITAMIN D3 1.0 MIU/G (BHN BAKU SUPPLEMEN) COA UT23060177", "output": "29362900"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT23090206", "output": "29362400"}, {"text_input": "What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT22070226", "output": "29362100"}, {"text_input": "What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT22070226", "output": "29362100"}, {"text_input": "What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU SUPPLEMEN) COA UT22070226", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN B12 0.1PCT WS (BHN BAKU SUPPLEMEN) COA UT23040011", "output": "29362600"}, {"text_input": "What is the hs code for ROCOAT RIBOFLAVIN 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB23050069", "output": "29362300"}, {"text_input": "What is the hs code for ROCOAT THIAMINE MONONITRATE 33 1/3PCT (BHN BAKU SUPPLEMEN) COA WB22050095", "output": "29362200"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT23090207", "output": "29362400"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ30612171", "output": "29362200"}, {"text_input": "What is the hs code for MIRASIL DM350 A2 (BHN BAKU KOSMETIK) COA 2412WKWB15", "output": "39100090"}, {"text_input": "What is the hs code for METHOCEL K15M PREMIUM HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2464488634", "output": "39123900"}, {"text_input": "What is the hs code for METHOCEL E6 PREMIUM LV HYDROXYPROPYL.. (BHN BAKU PEWARNA TABLET) COA 2444431986", "output": "39123900"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F48105...(BHN BAKU PEWARNA TABLET)CAS", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET)CAS", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A..(BHN BAKU PEWARNA TABLET)CAS", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-S-29019..(BHN BAKU PEWARNA TABLET)CAS", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G58923...(BHN BAKU PEWARNA TABLET)CAS", "output": "38249999"}, {"text_input": "What is the hs code for CHOLINE L-BITARTRATE (BAHAN BAKU OBAT) COA 3028961,3029009", "output": "29231000"}, {"text_input": "What is the hs code for METHYLPREDNISOLONE MICRONISED PH EUR USP (BHN BAKU OBAT) COA 2304344867", "output": "29372900"}, {"text_input": "What is the hs code for TRAMADOL HCL EP/JP (BHN BAKU OBAT) COA V7532,W7586", "output": "29225090"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM (BHN BAKU OBAT) COA M114383", "output": "29339990"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM (BHN BAKU OBAT) COA M114312", "output": "29339990"}, {"text_input": "What is the hs code for TAURINE JP8 (BHN BAKU OBAT) COA XP24034300 S/D XP24034303", "output": "29211900"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU KOSMETIK) COA TL02307101", "output": "29362400"}, {"text_input": "What is the hs code for ARGAN OIL (BHN BAKU KOSMETIK) COA AVD0046906", "output": "29362500"}, {"text_input": "What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT23070229", "output": "29362100"}, {"text_input": "What is the hs code for D-PANTHENOL 75 L (BHN BAKU KOSMETIK) COA TL02307314", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0824010056", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 1789 (BHN BAKU KOSMETIK) COA 0323021724,0323021725", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL EHS (BHN BAKU KOSMETIK) COA 0723010075", "output": "29420000"}, {"text_input": "What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COA TL02302802", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0523060047", "output": "29420000"}, {"text_input": "What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211039", "output": "29362700"}, {"text_input": "What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU KOSMETIK) COA UT23070229", "output": "29362100"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0224040015", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040129", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MAX (BHN BAKU KOSMETIK) COA 0924020002,0924020003,0924020014", "output": "29420000"}, {"text_input": "What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA 23D0916832", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0824010056", "output": "29420000"}, {"text_input": "What is the hs code for TILAMAR (R) PDO WITH NOOVISTA (BHN BAKU KOSMETIK) COA 23D0916832", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0223040129,0224040015", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL SHIELD (BHN BAKU KOSMETIK) COA 0824010056", "output": "29420000"}, {"text_input": "What is the hs code for PARSOL MCX (BHN BAKU KOSMETIK) COA 0524060009", "output": "29420000"}, {"text_input": "What is the hs code for ASCORBIC ACID FINE POWDER (BHN BAKU KOSMETIK) COA TL02306349", "output": "29362700"}, {"text_input": "What is the hs code for ETHYL PANTHENOL (BHN BAKU KOSMETIK) COATL02302802,TL02302803", "output": "29362400"}, {"text_input": "What is the hs code for PARSOL 340 (BHN BAKU KOSMETIK) COA 0224040015", "output": "29420000"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU KOSMETIK) COA UT23070253", "output": "29362800"}, {"text_input": "What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211039", "output": "29362700"}, {"text_input": "What is the hs code for STAY-C (R) 50 (BHN BAKU KOSMETIK) COA UE02211039", "output": "29362700"}, {"text_input": "What is the hs code for ETORIXOCIB (BHN BAKU OBAT) COA ETC-P/24002", "output": "29333990"}, {"text_input": "What is the hs code for KF-54HV (18KG) (BHN BAKU KOSMETIK) COA 404102", "output": "39100020"}, {"text_input": "What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6", "output": "38249999"}, {"text_input": "What is the hs code for KF-54HV (18KG) (BHN BAKU KOSMETIK) COA 404102", "output": "39100020"}, {"text_input": "What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6", "output": "38249999"}, {"text_input": "What is the hs code for KF-54 (18KG) (BHN BAKU KOSMETIK) CAS 68083-14-7", "output": "38249999"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA ROA021246,ROA023242,ROA027247,ROA3652", "output": "28363000"}, {"text_input": "What is the hs code for MECOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/0324020", "output": "29362600"}, {"text_input": "What is the hs code for DRY VITAMIN D3 100 CWS (BHN BAKU SUPPLEMEN) COA UT23010005", "output": "29362900"}, {"text_input": "What is the hs code for PHYTANTRIOL (BHN BAKU KOSMETIK) COA UQ30617006", "output": "29420000"}, {"text_input": "What is the hs code for VITAMIN B12 CRYST FOOD GRADE (BHN BAKU KOSMETIK) COA 012304026", "output": "29362600"}, {"text_input": "What is the hs code for KAOLIN SUPREME LOREAL DECONTAM (BHN BAKU KOSMETIK) COA 0000131198", "output": "25070000"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300, SAMPLE NO COMMERCIAL VALUE", "output": "29362900"}, {"text_input": "What is the hs code for 1,3-BUTYLENE GLYCOL (NATUROBG) (BHN BAKU KOSMETIK) COA BGC/L21/24", "output": "29053200"}, {"text_input": "What is the hs code for VITAMIN E (BHN BAKU KOSMETIK) COA 201202312202", "output": "29362800"}, {"text_input": "What is the hs code for CEFOPERAZONE SODIUM STERILE (BHN BAKU OBAT) COA 2304420111", "output": "29419000"}, {"text_input": "What is the hs code for ALLOPURINOL USP (BHN BAKU OBAT) COA 24007AY3ARII", "output": "29335990"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101850624", "output": "17021100"}, {"text_input": "What is the hs code for MELOXICAM BP (BHN BAKU OBAT) COA MLAH0090124", "output": "29341000"}, {"text_input": "What is the hs code for FRUCTILIANCE (BHN BAKU KOSMETIK) COA PO00043575", "output": "13021950"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-7027... (BHN BAKU PEWARNA TABLET)CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM... (BHN BAKU PEWARNA TABLET)CAS 57-50-1", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A... (BHN BAKU PEWARNA TABLET)CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229... (BHN BAKU PEWARNA TABLET)CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G62343...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING... (BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03Z59026...(BHN BAKU PEWARNA TABLET)CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 00F28484...(BHN BAKU PEWARNA TABLET)CAS 14807-96-6", "output": "38249999"}, {"text_input": "What is the hs code for JUVENTIDE (BHN BAKU KOSMETIK) COA JUVE-001-B", "output": "13021990"}, {"text_input": "What is the hs code for OMEPRAZOLE PELLETS 8.5PCT ( BHN BAKU OBAT) COA OP-13430124", "output": "30039000"}, {"text_input": "What is the hs code for CALCIUM CARBONATE DC TYPE CS90 PHARMA (BHN BAKU OBAT) COA 202400022", "output": "28365010"}, {"text_input": "What is the hs code for CALCIUM CARBONATE DC TYPE CS90 PHARMA (BHN BAKU OBAT) COA 202200760", "output": "28365010"}, {"text_input": "What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052401", "output": "47063000"}, {"text_input": "What is the hs code for SANACEL BAMBOO 1000 (BHN BAKU MAKANAN) COA G05052401", "output": "47063000"}, {"text_input": "What is the hs code for KELCOGEL CG-HA [E] (BAHAN BAKU KOSMETIK) CAS 71010-52-1", "output": "38249999"}, {"text_input": "What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2024031201", "output": "21012090"}, {"text_input": "What is the hs code for MATCHA (BHN BAKU MAKANAN) COA 2024020504", "output": "21012090"}, {"text_input": "What is the hs code for SETACIN 103/SPEZIAL OR NP - RSPO - MB (BHN BAKU KOSMETIK) COA 155", "output": "34023990"}, {"text_input": "What is the hs code for FERROUS FUMARATE (BHN BAKU OBAT) COA 2024/58", "output": "29171900"}, {"text_input": "What is the hs code for FERROUS FUMARATE (BHN BAKU OBAT) COA 2024/52", "output": "29171900"}, {"text_input": "What is the hs code for KETOROLAC TROMETHAMINE USP (BHN BAKU OBAT) COA KM0261123", "output": "29339990"}, {"text_input": "What is the hs code for MAGNOLIA BARK EXTRACT (BHN BAKU KOSMETIK) CAS 35354-74-6", "output": "38249999"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB180124", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT BLUE GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LB180124", "output": "39123900"}, {"text_input": "What is the hs code for LIGHT GREEN GLOBEADS L (70-120) (BHN BAKU KOSMETIK) COA LG010324", "output": "39123900"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B120224", "output": "39123900"}, {"text_input": "What is the hs code for BLUE GLOBEADS L (24-60) (BHN BAKU KOSMETIK) COA B120224", "output": "39123900"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101850524", "output": "17021100"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101850524", "output": "17021100"}, {"text_input": "What is the hs code for OPASPRAY (R) OPAQUE COLOR... (BHN BAKU PEWARNA TABLET) COA DT759649", "output": "32151990"}, {"text_input": "What is the hs code for TRIAMCINOLONE MICRONIZED (BHN BAKU OBAT) COA ND2275M", "output": "29372200"}, {"text_input": "What is the hs code for SOY PROTEIN ISOLATE SSPRO-90G (BHN BAKU MAKANAN) COA 202404-025", "output": "35040000"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN551287", "output": "35051010"}, {"text_input": "What is the hs code for STARCH 1500 (R) PARTIALLY PREGELATINIZED... (BHN BAKU PEWARNA TABLET) COA IN551288", "output": "35051010"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM ...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM ...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM ...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for TABCOAT TC (R) FILM COATING PRODUCT TC-GFII... (BHN BAKU PEWARNA TABLET) COA GA751571", "output": "32151990"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM ...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM ...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM ...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM ...(BHN BAKU PEWARNA TABLET) CAS 1309-37-1", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM ...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING...(BHN BAKU PEWARNA TABLET) CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM ...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE...(BHN BAKU PEWARNA TABLET) CAS 151-21-3", "output": "38249999"}, {"text_input": "What is the hs code for SPIRONOLACTONE MICRONISED (BHN BAKU OBAT) COA 2409050252", "output": "29322090"}, {"text_input": "What is the hs code for PONCE 0-1/2 D PONCE DECONTAMINEE (BHN BAKU KOSMETIK) CAS 1332-09-8", "output": "38249999"}, {"text_input": "What is the hs code for MACROCIDE-OL (BHN BAKU KOSMETIK) COA MCCPOL240404,MCCPOL240411", "output": "29094900"}, {"text_input": "What is the hs code for PARSOL TX (BHN BAKU KOSMETIK) COA P1B28QA000,P1F06QA000,P1F07QA000", "output": "29420000"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP09924,MTP10024", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA API 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP35823", "output": "28363000"}, {"text_input": "What is the hs code for BICAR PHARMA EXC 0/13 SODIUM BICARBONATE (BHN BAKU SUPPLEMEN) COA MTP10624", "output": "28363000"}, {"text_input": "What is the hs code for AMLODIPINE BESILATE BP/EP (BHN BAKU OBAT) COA AMB/019/04/24 S/D AMB/022/04/24", "output": "29333990"}, {"text_input": "What is the hs code for CURCUMINOIDS PHOSPHOLIPIDS (BHN BAKU SUPLEMEN) COA 23S0223602", "output": "13021950"}, {"text_input": "What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 23S0230600", "output": "13021950"}, {"text_input": "What is the hs code for AMITOSE R (BHN BAKU KOSMETIK) CAS 787607-61-8", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS KR-30 (BHN BAKU KOSMETIK) CAS 69430-36-0", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0", "output": "38249999"}, {"text_input": "What is the hs code for L-ARGININE LO (BHN BAKU KOSMETIK) COA 2404EF2310", "output": "29224900"}, {"text_input": "What is the hs code for PURIDROX COMPACTED (BHN BAKU OBAT) COA B340550, B340538", "output": "29419000"}, {"text_input": "What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 231761", "output": "13021950"}, {"text_input": "What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for ALPINIAWHITE (BHN BAKU KOSMETIK) COA 232597", "output": "13021950"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 240213", "output": "13021950"}, {"text_input": "What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 240559", "output": "13021950"}, {"text_input": "What is the hs code for OUGON LIQUID B(N) (BHN BAKU KOSMETIK) COA 240606", "output": "13021950"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for EUXYL PE 9010 DR 200 KG (BHN BAKU KOSMETIK) CAS 122-99-6", "output": "38249999"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300", "output": "29362900"}, {"text_input": "What is the hs code for CALCIUM D-PANTOTHENATE (BHN BAKU SUPPLEMEN) COA TL02311823", "output": "29362400"}, {"text_input": "What is the hs code for DL-A-TOCOPHERYL ACETATE (BHN BAKU SUPPLEMEN) COA UT23080260", "output": "29362800"}, {"text_input": "What is the hs code for D-PANTHENOL (BHN BAKU SUPPLEMEN) COA TL02307106", "output": "29362400"}, {"text_input": "What is the hs code for DRY VITAMIN K1 5PCT SD (BHN BAKU SUPPLEMEN) COA UT23090017", "output": "29362900"}, {"text_input": "What is the hs code for RIBOFLAVIN UNIVERSAL (BHN BAKU SUPPLEMEN) COA UQ31110828", "output": "29362300"}, {"text_input": "What is the hs code for THIAMINE HYDROCHLORIDE (BHN BAKU SUPPLEMEN) COA UQ31012217", "output": "29362200"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300", "output": "29362900"}, {"text_input": "What is the hs code for DRY VITAMIN E 50PCT CWS/S (BHN BAKU SUPPLEMEN) COA UT23050020", "output": "29362800"}, {"text_input": "What is the hs code for FOLIC ACID (BHN BAKU SUPPLEMEN) COA UT23090208", "output": "29362400"}, {"text_input": "What is the hs code for PX 103070 C (BHN BAKU MAKANAN) COA XW92403201,XW92403202", "output": "21069059"}, {"text_input": "What is the hs code for THIAMINE MONONITRATE (BHN BAKU MAKANAN) COA UQ31113164", "output": "29362200"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101851024", "output": "17021100"}, {"text_input": "What is the hs code for GRANULAC 200 (BHN BAKU OBAT) COA LC050-23-801", "output": "17021100"}, {"text_input": "What is the hs code for NG 5 PCT-1,2 PROPYLENGLYCOLE 95PCT (BAHAN BAKU OBAT) COA 2403999", "output": "30039000"}, {"text_input": "What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334941 S/D B334943", "output": "29419000"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT GRANULATION (BHN BAKU SUPPLEMEN) COA WB24039069", "output": "29362700"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-4215...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for METHOCEL K100 PREMIUM LVCR HYDROXYPROPYL... (BHN BAKU PEWARNA TABLET) COA 2464401497", "output": "39123900"}, {"text_input": "What is the hs code for 8627-650 LIPEX (R) BASSOL C (TM) VEGETABLE OIL (BHN BAKU KOSMETIK) COA 0002750724", "output": "15162049"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) CAS 8001-25-0", "output": "38249999"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for SUNFLOWER FLOWER HYDROGLYCOLIC EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX DRY HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) CAS 8001-25-0", "output": "38249999"}, {"text_input": "What is the hs code for OLIVE ORGANIC VIRGIN OIL XNE 102 (BHN BAKU KOSMETIK) CAS 8001-25-0", "output": "38249999"}, {"text_input": "What is the hs code for RICE MILK AQUEOUS EXTRACT (SB) (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for ALUMINUM HYDROXIDE GEL USP BARCROFT TM VISCO-9 (BHN BAKU OBAT) COA 102402004", "output": "28183000"}, {"text_input": "What is the hs code for CETRIMIDE (BHN BAKU KOSMETIK) CAS 1119-97-7", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-HA MIX (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND HOCOX (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND NEWAPLE (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND PF CHERRY BLOSSOM WATER (BHN BAKU KOSMETIK) COA PSSBD-010844", "output": "13021950"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SOPHORA ROOT POWDER (BHN BAKU KOSMETIK) COA SFP-N-062323", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA O3M204", "output": "28321000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND KIWI EXTRACT (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND BIO-SODIUM HYALURONATE POWDER (MMW) (BHN BAKU KOSMETIK) COA CHP1240502", "output": "39139090"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND GRAPE SEED EXTRACT (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for HYOSCINE BUTYL BROMIDE PH.EUR/BP (BHN BAKU OBAT) COA 2510124", "output": "29397900"}, {"text_input": "What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9", "output": "38249999"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT24020053", "output": "29362100"}, {"text_input": "What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT24030231", "output": "29362100"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300", "output": "29362900"}, {"text_input": "What is the hs code for ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2311221", "output": "32030010"}, {"text_input": "What is the hs code for EUXYL K 100 CAN 10 KG (BHN BAKU KOSMETIK) CAS 55965-84-9", "output": "38249999"}, {"text_input": "What is the hs code for ABYSSINE TM PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for JAGUAR HP 105 SGI 25KG CARDBOARD CARTON (BHN BAKU KOSMETIK) CAS 39421-75-5", "output": "38249999"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3292368", "output": "38210090"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT24020053", "output": "29362100"}, {"text_input": "What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT24030231", "output": "29362100"}, {"text_input": "What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA 0000084160", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000084161", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000084162", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA 0000084163, SAMPLE NO COMMERCIAL VALUE", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000084164, SAMPLE NO COMMERCIAL VALUE", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000084165, SAMPLE NO COMMERCIAL VALUE", "output": "29309090"}, {"text_input": "What is the hs code for OPASPRAY (R) OPAQUE COLOR... (BHN BAKU PEWARNA TABLET) COA DT759649", "output": "32151990"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101851024", "output": "17021100"}, {"text_input": "What is the hs code for ABYSSINE TM PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for JAGUAR HP 105 SGI 25KG CARDBOARD CARTON (BHN BAKU KOSMETIK) CAS 39421-75-5", "output": "38249999"}, {"text_input": "What is the hs code for EPA/DHA 44/37 (BHN SUPLEMEN KESEHATAN) COA EE4437-231221", "output": "29061300"}, {"text_input": "What is the hs code for EDIBLE BOVINE GELATINE 180/20 (BHN BAKU OBAT ) COA 5002301267", "output": "35030049"}, {"text_input": "What is the hs code for PARACETAMOL USP (BHN BAKU OBAT) COA 2350408,2350422,2310226,2310233", "output": "29242930"}, {"text_input": "What is the hs code for BACTO SOYTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3109006", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059", "output": "38210090"}, {"text_input": "What is the hs code for BACTO TRYPTOSE PHOSPHATE BROTH 10KG EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME) BATCH 3228039", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3338149", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASAMINO ACIDS TECHNICALS 10KG EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2137791", "output": "38210090"}, {"text_input": "What is the hs code for PHYTONE PEPTONE 454GR EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME)BATCH 2484059", "output": "38210090"}, {"text_input": "What is the hs code for BACTO CASITONE 500G EA (MEDIA UTK PENGEMBANGAN MIKROORGANISME)BATCH 2242551", "output": "38210090"}, {"text_input": "What is the hs code for BACTO PEPTONE 500G EA (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) COA 3338149", "output": "38210090"}, {"text_input": "What is the hs code for EXTRAPONE (R) ACEROLA B (BHN BAKU KOSMETIK) COA 10300067", "output": "13021950"}, {"text_input": "What is the hs code for EXTRAPONE (R) GINSENG (BHN BAKU KOSMETIK) COA 10300057", "output": "13021940"}, {"text_input": "What is the hs code for EXTRAPONE (R) LICORICE GW P (BHN BAKU KOSMETIK) COA 10300035", "output": "13021950"}, {"text_input": "What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334941 S/D B334943", "output": "29419000"}, {"text_input": "What is the hs code for CARBOWAX SENTRY PEG 1450 (BHN BAKU KOSMETIK) COA D684NCSPB2", "output": "39072990"}, {"text_input": "What is the hs code for CARBOWAX SENTRY PEG 1450 (BHN BAKU KOSMETIK) COA D684NCSPB2", "output": "39072990"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3292368", "output": "38210090"}, {"text_input": "What is the hs code for PRECIROL ATO 5 (BHN BAKU SUPPLEMEN) COA 199538", "output": "28399000"}, {"text_input": "What is the hs code for GELUCIRE 48/16 PELLETS (BHN BAKU SUPPLEMEN) COA 199069", "output": "28399000"}, {"text_input": "What is the hs code for OPACODE (R) MONOGRAMMING INK S-1-180000 WHITE (BHN BAKU PEWARNA TABLET) COA WP876966", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5287 FD&C YELLOW #6/SUNSET... (BHN BAKU PEWARNA TABLET) COA WP868324:BC3385", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5406 FD&C RED #40/ALLURA R... (BHN BAKU PEWARNA TABLET) COA WP866896:BC2990", "output": "32151990"}, {"text_input": "What is the hs code for LAKE PIGMENT HT (R) 5396 ERYTHROSINE ALUMINUM LAKE (BHN BAKU PEWARNA TABLET) COA WP860981:1", "output": "32151990"}, {"text_input": "What is the hs code for STARTAB (R) DIRECTLY COMPRESSIBLE STARCH 4001 (BHN BAKU PEWARNA TABLET) COA WP873593", "output": "35051010"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20240331", "output": "17029019"}, {"text_input": "What is the hs code for ASCORBIC ACID 90PCT GRANULATION (BHN BAKU SUPPLEMEN) COA WB24039069", "output": "29362700"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 INF OIL (BHN BAKU SUPPLEMEN) COA TS00023438", "output": "29362500"}, {"text_input": "What is the hs code for MIRASIL DM350 A2 (BHN BAKU KOSMETIK) COA 2412WKWB15", "output": "39100090"}, {"text_input": "What is the hs code for AC091KF FUCOGEL 1.5P 25KG (BHN BAKU KOSMETIK) CAS 122-99-6", "output": "38249999"}, {"text_input": "What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334941 S/D B334943", "output": "29419000"}, {"text_input": "What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334941 S/D B334943", "output": "29419000"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE PH (BHN BAKU SUPPLEMEN) COA UQ30808107, SAMPLE NO COMMERCIAL VALUE", "output": "29362500"}, {"text_input": "What is the hs code for PYRIDOXINE HYDROCHLORIDE PH (BHN BAKU SUPPLEMEN) COA UQ31008120, SAMPLE NO COMMERCIAL VALUE", "output": "29362500"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT23060024, SAMPLE NO COMMERCIAL VALUE", "output": "29362100"}, {"text_input": "What is the hs code for DRY VITAMIN A ACETATE 325 CWS/A (BHN BAKU SUPPLEMEN) COA UT23080036, SAMPLE NO COMMERCIAL VALUE", "output": "29362100"}, {"text_input": "What is the hs code for SODIUM ASCORBATE CRYSTALLINE (BHN BAKU SUPPLEMEN) COA TL02312506, SAMPLE NO COMMERCIAL VALUE", "output": "29362700"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT23090029, SAMPLE NO COMMERCIAL VALUE", "output": "32030010"}, {"text_input": "What is the hs code for FLORAGLO LUTEIN 5PCT CWS/S-TG (BHN BAKU SUPPLEMEN) COA UT23090030, SAMPLE NO COMMERCIAL VALUE", "output": "32030010"}, {"text_input": "What is the hs code for MAGNESIUM ASPARTATE DIHYDRATE,... (BHN BAKU SUPPLEMEN) COA 3118345-04", "output": "29224900"}, {"text_input": "What is the hs code for SODIUM SELENITE IN CARRIER,... (BHN BAKU SUPPLEMEN) COA 3127495", "output": "28429010"}, {"text_input": "What is the hs code for KF-6038 (16KG) (BHN BAKU KOSMETIK) CAS 1178566-90-9", "output": "38249999"}, {"text_input": "What is the hs code for REFINED COCONUT OIL - L (BHN BAKU KOSMETIK) COA 0002779650", "output": "15131990"}, {"text_input": "What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA G12101UP", "output": "29053200"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0077700", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0078000", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0078100", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 23B0010200", "output": "13021990"}, {"text_input": "What is the hs code for GINSENG DRY EXTR 2PCT COLOR (BHN BAKU SUPLEMEN) COA 24B0010300", "output": "13021990"}, {"text_input": "What is the hs code for KETOROLAC TROMETHAMINE USP (BHN BAKU OBAT) COA KM0150323", "output": "29339990"}, {"text_input": "What is the hs code for BETAMETHASONE VALERATE USP 43 (BHN BAKU OBAT) COA APL/BV/01029/A-23", "output": "29372200"}, {"text_input": "What is the hs code for BETAMETHASONE VALERATE USP 43 (BHN BAKU OBAT) COA APL/BV/01029/A-23", "output": "29372200"}, {"text_input": "What is the hs code for MAGNESIUM HYDROXIDE USP BARCROFT TM 5300 (BHN BAKU OBAT) COA 102369011,102369012", "output": "28161000"}, {"text_input": "What is the hs code for GUAR GUM TREATED AND PULVERISED IN POWDER... (B.BAKU KOSMETIK) CAS 65497-29-2", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-4215...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for BOTTLE POTATO DEXTROSE AGAR 500G (MEDIA UTK PENGEMBANGAN MIKRO ORGANISME) BATCH 3292368", "output": "38210090"}, {"text_input": "What is the hs code for SERASENSE SF 2 (BAHAN BAKU SUPLEMEN) COA SA40401058", "output": "39100090"}, {"text_input": "What is the hs code for MENTHOL PACKED IN PAPER FIBER DRUM WITH INNER POLYLINE (BHN BAKU KOSMETIK) COA MCB50555", "output": "29061100"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT24020053", "output": "29362100"}, {"text_input": "What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT24030231", "output": "29362100"}, {"text_input": "What is the hs code for OPASPRAY (R) OPAQUE COLOR... (BHN BAKU PEWARNA TABLET) COA DT759649", "output": "32151990"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300", "output": "29362900"}, {"text_input": "What is the hs code for FERRIC PYROPHOSPHATE,24PCT - 26PCT FE POWDER,FCC13 (BHN BAKU MAKANAN) COA 3141813", "output": "28353990"}, {"text_input": "What is the hs code for FERROUS FUMARATE, FINE POWDER (BHN BAKU MAKANAN) COA 3133483", "output": "29171900"}, {"text_input": "What is the hs code for FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU MAKANAN) COA 3139890", "output": "28332920"}, {"text_input": "What is the hs code for FERROUS GLUCONATE, POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3140463", "output": "29181600"}, {"text_input": "What is the hs code for SILVER CITRATE SOLUTION 2500PPM (BHN BAKU KOSMETIK) COA CPS23-0844", "output": "28432900"}, {"text_input": "What is the hs code for FERRIC PYROPHOSPHATE,24PCT - 26PCT FE POWDER,FCC13 (BHN BAKU MAKANAN) COA 3141813", "output": "28353990"}, {"text_input": "What is the hs code for FERROUS FUMARATE, FINE POWDER (BHN BAKU MAKANAN) COA 3133483", "output": "29171900"}, {"text_input": "What is the hs code for FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU MAKANAN) COA 3139890", "output": "28332920"}, {"text_input": "What is the hs code for FERROUS GLUCONATE, POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3140463", "output": "29181600"}, {"text_input": "What is the hs code for PANTOPRAZOLE SODIUM (STERILE) (BHN BAKU OBAT) COA SI/PPZ/00710324", "output": "29333990"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM (BHN BAKU OBAT) COA M114383", "output": "29339990"}, {"text_input": "What is the hs code for ATORVASTATIN CALCIUM (BHN BAKU OBAT) COA M114312", "output": "29339990"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT24020053", "output": "29362100"}, {"text_input": "What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT24030231", "output": "29362100"}, {"text_input": "What is the hs code for OPASPRAY (R) OPAQUE COLOR... (BHN BAKU PEWARNA TABLET) COA DT759649", "output": "32151990"}, {"text_input": "What is the hs code for MALTODEXTRIN DE10-12 (BHN BAKU MAKANAN) COA 20240331", "output": "17029019"}, {"text_input": "What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334941 S/D B334943", "output": "29419000"}, {"text_input": "What is the hs code for ALUMINUM HYDROXIDE GEL USP.. (BHN BAKU OBAT) COA 102402001", "output": "28183000"}, {"text_input": "What is the hs code for MAGNESIUM HYDROXIDE GEL... (BHN BAKU OBAT) COA 102323013", "output": "28161000"}, {"text_input": "What is the hs code for MAGNESIUM HYDROXIDE GEL... (BHN BAKU OBAT) COA 102323013, SAMPLE NO COMMERCIAL VALUE", "output": "28161000"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-7027... (BHN BAKU PEWARNA TABLET)CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) SGR RAPID SUGAR FILM COATING SYSTEM... (BHN BAKU PEWARNA TABLET)CAS 57-50-1", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM OY-C-7000A... (BHN BAKU PEWARNA TABLET)CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03K19229... (BHN BAKU PEWARNA TABLET)CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85G62343...(BHN BAKU PEWARNA TABLET)CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB AQUEOUS MOISTURE BARRIER COATING... (BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) 200 OPTIMIZED PERFORMANCE COATING... (BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) AMB II HIGH PERFORMANCE MOISTURE..(BHN BAKU PEWARNA TABLET)CAS 9002-89-5", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 03Z59026...(BHN BAKU PEWARNA TABLET)CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 00F28484...(BHN BAKU PEWARNA TABLET)CAS 14807-96-6", "output": "38249999"}, {"text_input": "What is the hs code for FERRIC PYROPHOSPHATE,24PCT - 26PCT FE POWDER,FCC13 (BHN BAKU MAKANAN) COA 3141813", "output": "28353990"}, {"text_input": "What is the hs code for FERROUS FUMARATE, FINE POWDER (BHN BAKU MAKANAN) COA 3133483", "output": "29171900"}, {"text_input": "What is the hs code for FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU MAKANAN) COA 3139890", "output": "28332920"}, {"text_input": "What is the hs code for FERROUS GLUCONATE, POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3140463", "output": "29181600"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300", "output": "29362900"}, {"text_input": "What is the hs code for BICAR FOOD 0/13 SODIUM BICARBONATE (BHN BAKU MAKANAN) COA MTP09924,MTP10024", "output": "28363000"}, {"text_input": "What is the hs code for TABLETTOSE (R) 80 (BHN BAKU OBAT) COA L104314023", "output": "17021100"}, {"text_input": "What is the hs code for SPHEROLAC (R) 100 (BHN BAKU OBAT) COA L103863623", "output": "17021100"}, {"text_input": "What is the hs code for MICROCELAC (R) 100 (BHN BAKU OBAT) COA L103152523", "output": "17021100"}, {"text_input": "What is the hs code for GRANULAC (R) 200 (BHN BAKU OBAT) COA L101854623", "output": "17021100"}, {"text_input": "What is the hs code for GRANULAC (R) 70 (BHN BAKU OBAT) COA L101843823", "output": "17021100"}, {"text_input": "What is the hs code for ALUMINUM HYDROXIDE GEL USP.. (BHN BAKU OBAT) COA 102402001", "output": "28183000"}, {"text_input": "What is the hs code for MAGNESIUM HYDROXIDE GEL... (BHN BAKU OBAT) COA 102323013", "output": "28161000"}, {"text_input": "What is the hs code for MAGNESIUM HYDROXIDE GEL... (BHN BAKU OBAT) COA 102323013, SAMPLE NO COMMERCIAL VALUE", "output": "28161000"}, {"text_input": "What is the hs code for DL ALPHA TOCOPHEROL (BHN BAKU KOSMETIK) COA 01231104ES", "output": "29362800"}, {"text_input": "What is the hs code for ALUMINUM HYDROXIDE GEL USP.. (BHN BAKU OBAT) COA 102402001", "output": "28183000"}, {"text_input": "What is the hs code for MAGNESIUM HYDROXIDE GEL... (BHN BAKU OBAT) COA 102323013", "output": "28161000"}, {"text_input": "What is the hs code for MAGNESIUM HYDROXIDE GEL... (BHN BAKU OBAT) COA 102323013, SAMPLE NO COMMERCIAL VALUE", "output": "28161000"}, {"text_input": "What is the hs code for FLUOROMETHOLONE MICRONISED USP BP JP (BHN BAKU OBAT) COA 2201584198", "output": "29372200"}, {"text_input": "What is the hs code for PREGABALIN (BHN BAKU OBAT) COA PU1110423", "output": "29224900"}, {"text_input": "What is the hs code for FERRIC PYROPHOSPHATE,24PCT - 26PCT FE POWDER,FCC13 (BHN BAKU MAKANAN) COA 3141813", "output": "28353990"}, {"text_input": "What is the hs code for FERROUS FUMARATE, FINE POWDER (BHN BAKU MAKANAN) COA 3133483", "output": "29171900"}, {"text_input": "What is the hs code for FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU MAKANAN) COA 3139890", "output": "28332920"}, {"text_input": "What is the hs code for FERROUS GLUCONATE, POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3140463", "output": "29181600"}, {"text_input": "What is the hs code for FERRIC PYROPHOSPHATE,24PCT - 26PCT FE POWDER,FCC13 (BHN BAKU MAKANAN) COA 3141813", "output": "28353990"}, {"text_input": "What is the hs code for FERROUS FUMARATE, FINE POWDER (BHN BAKU MAKANAN) COA 3133483", "output": "29171900"}, {"text_input": "What is the hs code for FERROUS SULFATE, DRIED, POWDER,... (BHN BAKU MAKANAN) COA 3139890", "output": "28332920"}, {"text_input": "What is the hs code for FERROUS GLUCONATE, POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3140463", "output": "29181600"}, {"text_input": "What is the hs code for MECOBALAMIN JP (BHN BAKU OBAT) COA SLL/MC/0324020", "output": "29362600"}, {"text_input": "What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512335", "output": "47069200"}, {"text_input": "What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512342,G02512345", "output": "47069200"}, {"text_input": "What is the hs code for SANACEL WHEAT 200-1 (BHN BAKU MAKANAN) COA G02512335", "output": "47069200"}, {"text_input": "What is the hs code for PEONY HALAL P118 182 (BHN BAKU KOSMETIK) COA 3512810", "output": "33029000"}, {"text_input": "What is the hs code for HPA82 PURE SENSITIVE (BHN BAKU KOSMETIK) COA 3549437", "output": "33029000"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND ALWHITE-7 (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334941 S/D B334943", "output": "29419000"}, {"text_input": "What is the hs code for PROPYPHENAZONE (CEP) (BHN BAKU OBAT UNTUK PEWARNA TABLET) COA 2210246", "output": "29331100"}, {"text_input": "What is the hs code for GRANISETRON HCL EP (BHN BAKU OBAT) COA GRH/121008", "output": "29397900"}, {"text_input": "What is the hs code for TETRAHYDROZOLINE HCL (BHN BAKU OBAT) COA 202342", "output": "29332900"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-4215...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for PG USP (BHN BAKU OBAT UTK PAKAN TERNAK) COA G12101UP", "output": "29053200"}, {"text_input": "What is the hs code for SODIUM ACETATE ANHYDROUS POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3141073", "output": "29152910"}, {"text_input": "What is the hs code for ECHINACEA ANG.DRY PURIF. EX. (BHN BAKU SUPPLEMEN) COA 21S0155200", "output": "13021990"}, {"text_input": "What is the hs code for VACCINIUM MYRTILLUS DRY EX. (BHN BAKU SUPLEMEN) COA 23S0078800", "output": "13021990"}, {"text_input": "What is the hs code for GREEN TEA DRY DEC.EX ./PHOSPHOL (BHN BAKU SUPLEMEN) COA 23S0183400", "output": "13021950"}, {"text_input": "What is the hs code for P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 23S0224200", "output": "13021990"}, {"text_input": "What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 23S0196500", "output": "13021990"}, {"text_input": "What is the hs code for EMULCIRE 61 WL 2659 (BHN BAKU SUPPLEMEN) COA 196936", "output": "28399000"}, {"text_input": "What is the hs code for TRANSCUTOL P (BHN BAKU SUPPLEMEN) COA 195556", "output": "28399000"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40\u00b0 BRIX) (BHN BAKU KOSMETIK) COA 02/22GL4", "output": "28399000"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40\u00b0 BRIX) (BHN BAKU KOSMETIK) COA 02/22GL4, SAMPLE NO COMMERCIAL VALUE", "output": "28399000"}, {"text_input": "What is the hs code for APIFIL CAR (BHN BAKU SUPPLEMEN) COA 188262", "output": "28399000"}, {"text_input": "What is the hs code for LABRAFAC LIPOPHILE WL 1349 (BHN BAKU SUPPLEMEN) COA 195981", "output": "28399000"}, {"text_input": "What is the hs code for GELEOL MONO AND DIGLYCERIDES NF (BHN BAKU SUPPLEMEN) COA 23E0304", "output": "28399000"}, {"text_input": "What is the hs code for LABRASOL BF (BHN BAKU SUPPLEMEN) COA 195283", "output": "28399000"}, {"text_input": "What is the hs code for PRECIROL ATO 5 (BHN BAKU SUPPLEMEN) COA 196484", "output": "28399000"}, {"text_input": "What is the hs code for COMPRITOL 888 PELLETS (BHN BAKU SUPPLEMEN) COA 22E4306", "output": "28399000"}, {"text_input": "What is the hs code for COMPRITOL 888 ATO (BHN BAKU SUPPLEMEN) COA 197169", "output": "28399000"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-4215...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for PURIDROX POWDER (BHN BAKU OBAT) COA B334941 S/D B334943", "output": "29419000"}, {"text_input": "What is the hs code for FERROUS FUMARATE (BHN BAKU OBAT) COA 2024/58", "output": "29171900"}, {"text_input": "What is the hs code for FERROUS FUMARATE (BHN BAKU OBAT) COA 2024/52", "output": "29171900"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 240304", "output": "13021950"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 240202,240304", "output": "13021950"}, {"text_input": "What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 230516", "output": "29061900"}, {"text_input": "What is the hs code for MELAFRESH TM T96 (BHN BAKU KOSMETIK) COA 230516", "output": "29061900"}, {"text_input": "What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 240206", "output": "13021950"}, {"text_input": "What is the hs code for OILESS'CITY TM (BHN BAKU KOSMETIK) COA 240206", "output": "13021950"}, {"text_input": "What is the hs code for SUPEROX-C TM AF (BHN BAKU KOSMETIK) COA 240202", "output": "13021950"}, {"text_input": "What is the hs code for SORBITOL SPECIAL (R) MDF 85 (BHN BAKU SUPPLEMEN) COA 122303217", "output": "29054400"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for ZORYALYS (BHN BAKU KOSMETIK) CAS 73398-61-5", "output": "38249999"}, {"text_input": "What is the hs code for PEPPERMINT ORGANIC FROM FRANCE DISTILLATE (SB) (BHN BAKU KOSMETIK) CAS 84082-70-2", "output": "38249999"}, {"text_input": "What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for GREENSIL (BHN BAKU KOSMETIK) CAS 91771-32-3", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6", "output": "38249999"}, {"text_input": "What is the hs code for RAJOL WP80/LOREAL LIGHT LIQUID PARAFFIN-BP/...(BHN BAKU KOSMETIK) COA 1000240002,1000240003", "output": "27101990"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300", "output": "29362900"}, {"text_input": "What is the hs code for M 1555 N 900/980 76 (BHN BAKU KOSMETIK) COA 267905", "output": "56039300"}, {"text_input": "What is the hs code for M 1555 N 900/980 76 (BHN BAKU KOSMETIK) COA 267905", "output": "56039300"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300", "output": "29362900"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-4215...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-4215...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for NONIVAMIDE (SYNTHETIC CAPSAICIN) (BHN BAKU KOSMETIK) COA 20231020", "output": "29241990"}, {"text_input": "What is the hs code for ABSORAGE (BHN BAKU KOSMETIK) COA 231761", "output": "13021950"}, {"text_input": "What is the hs code for ACNEBUSTERS (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for ALPINIAWHITE (BHN BAKU KOSMETIK) COA 232597", "output": "13021950"}, {"text_input": "What is the hs code for FLAVOSTERONE SB (BHN BAKU KOSMETIK) COA 240213", "output": "13021950"}, {"text_input": "What is the hs code for IZAYOI (BHN BAKU KOSMETIK) COA 240559", "output": "13021950"}, {"text_input": "What is the hs code for OUGON LIQUID B(N) (BHN BAKU KOSMETIK) COA 240606", "output": "13021950"}, {"text_input": "What is the hs code for CLAIR BLANCHE-II (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for ECHINACEA ANG.DRY PURIF. EX. (BHN BAKU SUPPLEMEN) COA 21S0155200", "output": "13021990"}, {"text_input": "What is the hs code for VACCINIUM MYRTILLUS DRY EX. (BHN BAKU SUPLEMEN) COA 23S0078800", "output": "13021990"}, {"text_input": "What is the hs code for GREEN TEA DRY DEC.EX ./PHOSPHOL (BHN BAKU SUPLEMEN) COA 23S0183400", "output": "13021950"}, {"text_input": "What is the hs code for P.GINSENG DRY EXTRACT/IDB (BHN BAKU SUPLEMEN) COA 23S0224200", "output": "13021990"}, {"text_input": "What is the hs code for CENTELLA ASIATICA TRITERPENES (BHN BAKU SUPLEMEN) COA 23S0196500", "output": "13021990"}, {"text_input": "What is the hs code for ERDOSTEINE IH (BAHAN BAKU OBAT) COA EDSF230072", "output": "29349990"}, {"text_input": "What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 23100080", "output": "29221990"}, {"text_input": "What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 23100109", "output": "29221990"}, {"text_input": "What is the hs code for DIPHENHYDRAMINE HYDROCHLORIDE (BHN BAKU OBAT) COA 23100110", "output": "29221990"}, {"text_input": "What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2024031201", "output": "21012090"}, {"text_input": "What is the hs code for MATCHA (BHN BAKU MAKANAN) COA 2024020504", "output": "21012090"}, {"text_input": "What is the hs code for ABYSSINE TM PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for KF-54HV (18KG) (BHN BAKU KOSMETIK) COA 404102", "output": "39100020"}, {"text_input": "What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6", "output": "38249999"}, {"text_input": "What is the hs code for KF-54HV (18KG) (BHN BAKU KOSMETIK) COA 404102", "output": "39100020"}, {"text_input": "What is the hs code for KSP-100 (10KG) (BHN BAKU KOSMETIK) CAS 1004791-75-6", "output": "38249999"}, {"text_input": "What is the hs code for KF-54 (18KG) (BHN BAKU KOSMETIK) CAS 68083-14-7", "output": "38249999"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 INF OIL (BHN BAKU SUPPLEMEN) COA TS00023438", "output": "29362500"}, {"text_input": "What is the hs code for ABYSSINE TM PF PRESERVATIVE-FREE (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for B-WHITE TM (BHN BAKU KOSMETIK) COA 829012074P", "output": "29224900"}, {"text_input": "What is the hs code for GREYVERSE TM (BHN BAKU KOSMETIK) COA 833012061P", "output": "29224900"}, {"text_input": "What is the hs code for HELIOGEL TM (BHN BAKU KOSMETIK) CAS 25549-84-2", "output": "38249999"}, {"text_input": "What is the hs code for LECIGEL TM (BHN BAKU KOSMETIK) CAS 37350-42-8", "output": "38249999"}, {"text_input": "What is the hs code for PROGELINE TM (BHN BAKU KOSMETIK) COA 820052242P", "output": "29224900"}, {"text_input": "What is the hs code for IMERCARE 270P SCRUB (BHN BAKU KOSMETIK) COA 12-05-23, 20-04-23, 21-04-23, 26-04-23, 05-07-23", "output": "38029090"}, {"text_input": "What is the hs code for CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) CAS 989-51-5", "output": "38249999"}, {"text_input": "What is the hs code for CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) CAS 989-51-5", "output": "38249999"}, {"text_input": "What is the hs code for CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) CAS 989-51-5", "output": "38249999"}, {"text_input": "What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 23100619,23100626,23100670", "output": "29395900"}, {"text_input": "What is the hs code for MEG-3 '30' N-3 INF OIL (BHN BAKU SUPPLEMEN) COA TS00023438", "output": "29362500"}, {"text_input": "What is the hs code for ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2311221", "output": "32030010"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300", "output": "29362900"}, {"text_input": "What is the hs code for MIAMI SCG(S) (BHN BAKU KOSMETIK) COA 240310C5,240322C5", "output": "34023990"}, {"text_input": "What is the hs code for SUNBELLIN (BHN BAKU KOSMETIK) COA F210-2311003,2311007, 2311008", "output": "29339990"}, {"text_input": "What is the hs code for SPECWHITE VCE (BHN BAKU KOSMETIK) COA 20230704, 20240108, 20240109", "output": "29362700"}, {"text_input": "What is the hs code for ADENOSINE(L) (BHN BAKU KOSMETIK) COA C01202309003L, C01202311004L", "output": "29349990"}, {"text_input": "What is the hs code for GF-B331 (BHN BAKU KOSMETIK) COA 20240118001", "output": "35051090"}, {"text_input": "What is the hs code for SPECWHITE 05 (BHN BAKU KOSMETIK) COA 20231007", "output": "29222900"}, {"text_input": "What is the hs code for SUNSIL TIN50 (BHN BAKU KOSMETIK) CAS 7631-86-9", "output": "38249999"}, {"text_input": "What is the hs code for 4-HYDROXYACETOPHENONE (BHN BAKU KOSMETIK) COA 202403014", "output": "29145000"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-4215...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for IONOL CP (BHN BAKU KOSMETIK) COA 01106523", "output": "29071900"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300", "output": "29362900"}, {"text_input": "What is the hs code for DIMENHYDRINATE (BHN BAKU OBAT) COA 23100619,23100626,23100670", "output": "29395900"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300", "output": "29362900"}, {"text_input": "What is the hs code for VITAMIN A PALMITATE/M 1.0 M.I.U./G (BHN BAKU MAKANAN) COA UT24020053", "output": "29362100"}, {"text_input": "What is the hs code for VIT. A PALM. 1.0 MIU/G (TOCO) (BHN BAKU MAKANAN) COA UT24030231", "output": "29362100"}, {"text_input": "What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA 0000084160", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000084161", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000084162", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H100L 80PCT (BHN BAKU KOSMETIK) COA 0000084163, SAMPLE NO COMMERCIAL VALUE", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H101 71PCT (BHN BAKU KOSMETIK) COA 0000084164, SAMPLE NO COMMERCIAL VALUE", "output": "29309090"}, {"text_input": "What is the hs code for THIOCARE (R) H100 99PCT (BHN BAKU KOSMETIK) COA 0000084165, SAMPLE NO COMMERCIAL VALUE", "output": "29309090"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM 06A93131...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) COMPLETE FILM COATING SYSTEM YS-1-4215...(BHN BAKU PEWARNA TABLET) CAS 9004-65-3", "output": "38249999"}, {"text_input": "What is the hs code for OPADRY (R) II COMPLETE FILM COATING SYSTEM 85F28751...(BHN BAKU PEWARNA TABLET) CAS 13463-67-7", "output": "38249999"}, {"text_input": "What is the hs code for DEXAMETHASONE BP2010/USP42 (BHN BAKU OBAT) COA NED240303,NED240409,NED240411", "output": "29372200"}, {"text_input": "What is the hs code for SODIUM ACETATE ANHYDROUS POWDER, USP-NF 2023 (BHN BAKU OBAT) COA 3141073", "output": "29152910"}, {"text_input": "What is the hs code for AMITOSE R (BHN BAKU KOSMETIK) CAS 787607-61-8", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS KR-30 (BHN BAKU KOSMETIK) CAS 69430-36-0", "output": "38249999"}, {"text_input": "What is the hs code for PROMOIS WK (BHN BAKU KOSMETIK) CAS 69430-36-0", "output": "38249999"}, {"text_input": "What is the hs code for CENTELLA ASIATICA COSMELENE (BHN BAKU KOSMETIK) COA CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX THIN AND DULL HAIR (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for ZORYALYS (BHN BAKU KOSMETIK) CAS 73398-61-5", "output": "38249999"}, {"text_input": "What is the hs code for PEPPERMINT ORGANIC FROM FRANCE DISTILLATE (SB) (BHN BAKU KOSMETIK) CAS 84082-70-2", "output": "38249999"}, {"text_input": "What is the hs code for GRAPE ORGANIC BIOGREEN (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for CHAMOMILLA COSMELENE (BHN BAKU KOSMETIK) CAS 107-88-0", "output": "38249999"}, {"text_input": "What is the hs code for COMPLEX ANTI PERSPIRANT (BHN BAKU KOSMETIK) CAS 7732-18-5", "output": "38249999"}, {"text_input": "What is the hs code for GREENSIL (BHN BAKU KOSMETIK) CAS 91771-32-3", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6", "output": "38249999"}, {"text_input": "What is the hs code for ALOE PHYTELENE COLORLESS EG 543 (BHN BAKU KOSMETIK) CAS 57-55-6", "output": "38249999"}, {"text_input": "What is the hs code for VITAMIN D3 CRYSTALLINE (BHN BAKU SUPPLEMEN) COA UE02202300", "output": "29362900"}, {"text_input": "What is the hs code for EMULCIRE 61 WL 2659 (BHN BAKU SUPPLEMEN) COA 196936", "output": "28399000"}, {"text_input": "What is the hs code for TRANSCUTOL P (BHN BAKU SUPPLEMEN) COA 195556", "output": "28399000"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40\u00b0 BRIX) (BHN BAKU KOSMETIK) COA 02/22GL4", "output": "28399000"}, {"text_input": "What is the hs code for LEMON SECRETS (LEMON 40\u00b0 BRIX) (BHN BAKU KOSMETIK) COA 02/22GL4, SAMPLE NO COMMERCIAL VALUE", "output": "28399000"}, {"text_input": "What is the hs code for APIFIL CAR (BHN BAKU SUPPLEMEN) COA 188262", "output": "28399000"}, {"text_input": "What is the hs code for LABRAFAC LIPOPHILE WL 1349 (BHN BAKU SUPPLEMEN) COA 195981", "output": "28399000"}, {"text_input": "What is the hs code for GELEOL MONO AND DIGLYCERIDES NF (BHN BAKU SUPPLEMEN) COA 23E0304", "output": "28399000"}, {"text_input": "What is the hs code for LABRASOL BF (BHN BAKU SUPPLEMEN) COA 195283", "output": "28399000"}, {"text_input": "What is the hs code for PRECIROL ATO 5 (BHN BAKU SUPPLEMEN) COA 196484", "output": "28399000"}, {"text_input": "What is the hs code for COMPRITOL 888 PELLETS (BHN BAKU SUPPLEMEN) COA 22E4306", "output": "28399000"}, {"text_input": "What is the hs code for COMPRITOL 888 ATO (BHN BAKU SUPPLEMEN) COA 197169", "output": "28399000"}, {"text_input": "What is the hs code for PEARLPURIN PH (HYDROLYZED PEARL) (BHN BAKU KOSMETIK) CAS 5743-47-5", "output": "38249999"}, {"text_input": "What is the hs code for HYDROCORTISONE ACETATE EP/USP (BHN BAKU OBAT) COA NEHAC220410 BAIK DAN BARU", "output": "29372900.0"}, {"text_input": "What is the hs code for ASTABIO AR10 (ASTAXANTHIN OIL 10PCT) (BHN BAKU OBAT) COA 2205101 BAIK DAN BARU", "output": "21069059.0"}, {"text_input": "What is the hs code for IMWITOR \u00bf 372 P (V) FLAKES", "output": "38249999.0"}, {"text_input": "What is the hs code for RAJOL WP80/BDF LIGHT LIQUID PARAFFIN-BP/LIGHT MINERAL OIL-USP", "output": "27129090.0"}, {"text_input": "What is the hs code for IMWITOR \u00bf 372 P (V) FLAKES", "output": "38249999.0"}, {"text_input": "What is the hs code for RAJOL WP80/BDF LIGHT LIQUID PARAFFIN-BP/LIGHT MINERAL OIL... (BHN BAKU KOSMETIK) COA 1000230001 BAIK DAN BARU", "output": "27129090.0"}, {"text_input": "What is the hs code for HYDROCORTISONE ACETATE EP/USP (BHN BAKU OBAT) COA NEHAC220711,NEHAC220607 BAIK DAN BARU", "output": "29372900.0"}, {"text_input": "What is the hs code for RAJOL WP80/BDF LIGHT LIQUID PARAFFIN-BP/LIGHT MINERAL OIL-USP", "output": "27129090.0"}, {"text_input": "What is the hs code for HYDROCORTISONE ACETATE EP/USP (BHN BAKU OBAT) COA NEHAC220902 BAIK DAN BARU", "output": "29372900.0"}, {"text_input": "What is the hs code for RAJOL WP80/BDF LIGHT LIQUID PARAFFIN-BP/LIGHT MINERAL OIL-USP", "output": "27129090.0"}, {"text_input": "What is the hs code for ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2205101 (POST BORDER) BAIK DAN BARU", "output": "21069059.0"}, {"text_input": "What is the hs code for RAJOL WP80/BDF LIGHT LIQUID PARAFFIN-BP/LIGHT MINERAL OIL-USP", "output": "27129090.0"}, {"text_input": "What is the hs code for RAJOL WP80/BDF LIGHT LIQUID PARAFFIN-BP/LIGHT MINERAL OIL-USP", "output": "27129090.0"}, {"text_input": "What is the hs code for HYDROCORTISONE ACETATE EP7/USP42 (BHN BAKU OBAT) COA NEHAC230606 BAIK DAN BARU", "output": "29372900.0"}, {"text_input": "What is the hs code for ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2302281 BAIK DAN BARU", "output": "21069059.0"}, {"text_input": "What is the hs code for HYDROCORTISONE ACETATE EP7/USP42 (BHN BAKU OBAT) COA NEHAC230613 BAIK DAN BARU", "output": "29372900.0"}, {"text_input": "What is the hs code for RAJOL WP80/BDF LIGHT LIQUID PARAFFIN-BP/LIGHT MINERAL OIL-USP", "output": "27129090.0"}, {"text_input": "What is the hs code for ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2302281 BAIK DAN BARU", "output": "21069059.0"}, {"text_input": "What is the hs code for RAJOL WP80/LOREAL LIGHT LIQUID PARAFFIN-BP/LIGHT... (BHN BAKU KOSMETIK) COA 1000230002 BAIK DAN BARU", "output": "27129090.0"}, {"text_input": "What is the hs code for ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2311221 BAIK DAN BARU", "output": "21069059.0"}, {"text_input": "What is the hs code for ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2311221", "output": "21069059.0"}, {"text_input": "What is the hs code for RAJOL WP80/BDF LIGHT LIQUID PARAFFIN-BP/LIGHT MINERAL OIL-USP/NF", "output": "27129090.0"}, {"text_input": "What is the hs code for RAJOL WP80/LOREAL LIGHT LIQUID PARAFFIN-BP/LIGHT... (BHN BAKU KOSMETIK) COA 1000240001", "output": "27129090.0"}, {"text_input": "What is the hs code for ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2311221", "output": "21069059.0"}, {"text_input": "What is the hs code for CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) CAS 989-51-5", "output": "21012020.0"}, {"text_input": "What is the hs code for CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) CAS 989-51-5", "output": "21012020.0"}, {"text_input": "What is the hs code for CATECHINS (TEA EXTRACT) TEAVIGO 1 KG (BHN BAKU KOSMETIK) CAS 989-51-5", "output": "21012020.0"}, {"text_input": "What is the hs code for INSTANT GREEN TEA POWDER TH-G 760P (BHN BAKU MAKANAN) COA 2023111002", "output": "21012020.0"}, {"text_input": "What is the hs code for RAJOL WP80/LOREAL LIGHT LIQUID PARAFFIN-BP/...(BHN BAKU KOSMETIK) COA 1000240002,1000240003", "output": "27129090.0"}, {"text_input": "What is the hs code for ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2311221", "output": "21069059.0"}, {"text_input": "What is the hs code for ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2404161", "output": "21069059.0"}, {"text_input": "What is the hs code for RAJOL WP80/LOREAL LIGHT LIQUID PARAFFIN-BP/...(BHN BAKU KOSMETIK) COA 1000240004", "output": "27129090.0"}, {"text_input": "What is the hs code for HYUNDAI BIOLAND SODIUM BISULFITE (BHN BAKU KOSMETIK) COA : O3M204", "output": "28321000.0"}, {"text_input": "What is the hs code for RAJOL WP80/LOREAL LIGHT LIQUID PARAFFIN-BP/...(BHN BAKU KOSMETIK) COA 1000240005", "output": "27129090.0"}, {"text_input": "What is the hs code for ASTAXANTHIN OIL 10PCT (ASTABIO AR10) (BHN BAKU OBAT) COA 2404161, 2406051", "output": "21069059.0"}, {"text_input": "What is the hs code for RAJOL WP80/BDF\nLIGHT LIQUID PARAFFIN-BP/\nLIGHT MINERAL OIL-USP/NF", "output": "27129090.0"}] \ No newline at end of file